@salesforce/lds-adapters-service-ecm 1.346.0 → 1.347.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/service-ecm.js +399 -104
- package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeInputRepresentation.d.ts +11 -1
- package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeOutputRepresentation.d.ts +11 -1
- package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/SectionInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/SectionOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +400 -105
- package/src/raml/api.raml +74 -2
package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeInputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { PicklistAttributeTypeInputRepresentation as PicklistAttributeTypeInputRepresentation_PicklistAttributeTypeInputRepresentation } from './PicklistAttributeTypeInputRepresentation';
|
|
1
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "d05b87be2609bdc48a4f219f3aa80f7d";
|
|
3
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
5
|
export declare const RepresentationType: string;
|
|
5
6
|
export declare function normalize(input: CatalogItemAttributeInputRepresentation, existing: CatalogItemAttributeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CatalogItemAttributeInputRepresentationNormalized;
|
|
@@ -26,10 +27,14 @@ export interface CatalogItemAttributeInputRepresentationNormalized {
|
|
|
26
27
|
id?: string | null;
|
|
27
28
|
/** Context Attribute Id */
|
|
28
29
|
isContextDefinitionAttribute?: boolean | null;
|
|
30
|
+
/** Is Editable Field */
|
|
31
|
+
isEditable: boolean;
|
|
29
32
|
/** is Hidden */
|
|
30
33
|
isHidden?: boolean | null;
|
|
31
34
|
/** is Mandatory */
|
|
32
35
|
isMandatory?: boolean | null;
|
|
36
|
+
/** is Mapped Anchor Field */
|
|
37
|
+
isMappedAnchorField: boolean;
|
|
33
38
|
/** is Read Only */
|
|
34
39
|
isReadOnly?: boolean | null;
|
|
35
40
|
/** Attribute Name */
|
|
@@ -38,6 +43,8 @@ export interface CatalogItemAttributeInputRepresentationNormalized {
|
|
|
38
43
|
operationType?: string | null;
|
|
39
44
|
/** Attribute Parent */
|
|
40
45
|
parent?: string | null;
|
|
46
|
+
/** Picklist Options */
|
|
47
|
+
picklistOptions: Array<PicklistAttributeTypeInputRepresentation_PicklistAttributeTypeInputRepresentation | null>;
|
|
41
48
|
/** Sequence Number */
|
|
42
49
|
sequence?: number | null;
|
|
43
50
|
}
|
|
@@ -54,11 +61,14 @@ export interface CatalogItemAttributeInputRepresentation {
|
|
|
54
61
|
description?: string | null;
|
|
55
62
|
id?: string | null;
|
|
56
63
|
isContextDefinitionAttribute?: boolean | null;
|
|
64
|
+
isEditable: boolean;
|
|
57
65
|
isHidden?: boolean | null;
|
|
58
66
|
isMandatory?: boolean | null;
|
|
67
|
+
isMappedAnchorField: boolean;
|
|
59
68
|
isReadOnly?: boolean | null;
|
|
60
69
|
name?: string | null;
|
|
61
70
|
operationType?: string | null;
|
|
62
71
|
parent?: string | null;
|
|
72
|
+
picklistOptions: Array<PicklistAttributeTypeInputRepresentation_PicklistAttributeTypeInputRepresentation | null>;
|
|
63
73
|
sequence?: number | null;
|
|
64
74
|
}
|
package/dist/es/es2018/types/src/generated/types/CatalogItemAttributeOutputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { PicklistAttributeTypeOutputRepresentation as PicklistAttributeTypeOutputRepresentation_PicklistAttributeTypeOutputRepresentation } from './PicklistAttributeTypeOutputRepresentation';
|
|
1
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "ded8b1dcf263ca20f8cd782c6237cc7d";
|
|
3
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
5
|
export declare const RepresentationType: string;
|
|
5
6
|
export declare function normalize(input: CatalogItemAttributeOutputRepresentation, existing: CatalogItemAttributeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CatalogItemAttributeOutputRepresentationNormalized;
|
|
@@ -28,10 +29,14 @@ export interface CatalogItemAttributeOutputRepresentationNormalized {
|
|
|
28
29
|
isContextDefinitionAttribute?: boolean | null;
|
|
29
30
|
/** Attribute Is Deleted */
|
|
30
31
|
isDeleted?: boolean | null;
|
|
32
|
+
/** Is Editable Field */
|
|
33
|
+
isEditable: boolean;
|
|
31
34
|
/** Attribute Is Hidden */
|
|
32
35
|
isHidden?: boolean | null;
|
|
33
36
|
/** is Mandatory */
|
|
34
37
|
isMandatory?: boolean | null;
|
|
38
|
+
/** Mapped Anchor Field */
|
|
39
|
+
isMappedAnchorField: boolean;
|
|
35
40
|
/** Attribute isReadOnly */
|
|
36
41
|
isReadOnly?: boolean | null;
|
|
37
42
|
/** Attribute Is Required */
|
|
@@ -40,6 +45,8 @@ export interface CatalogItemAttributeOutputRepresentationNormalized {
|
|
|
40
45
|
name?: string | null;
|
|
41
46
|
/** Attribute Parent */
|
|
42
47
|
parent?: string | null;
|
|
48
|
+
/** Picklist Options */
|
|
49
|
+
picklistOptions: Array<PicklistAttributeTypeOutputRepresentation_PicklistAttributeTypeOutputRepresentation | null>;
|
|
43
50
|
/** Attribute Sequence */
|
|
44
51
|
sequence?: number | null;
|
|
45
52
|
}
|
|
@@ -57,11 +64,14 @@ export interface CatalogItemAttributeOutputRepresentation {
|
|
|
57
64
|
id?: string | null;
|
|
58
65
|
isContextDefinitionAttribute?: boolean | null;
|
|
59
66
|
isDeleted?: boolean | null;
|
|
67
|
+
isEditable: boolean;
|
|
60
68
|
isHidden?: boolean | null;
|
|
61
69
|
isMandatory?: boolean | null;
|
|
70
|
+
isMappedAnchorField: boolean;
|
|
62
71
|
isReadOnly?: boolean | null;
|
|
63
72
|
isRequired?: boolean | null;
|
|
64
73
|
name?: string | null;
|
|
65
74
|
parent?: string | null;
|
|
75
|
+
picklistOptions: Array<PicklistAttributeTypeOutputRepresentation_PicklistAttributeTypeOutputRepresentation | null>;
|
|
66
76
|
sequence?: number | null;
|
|
67
77
|
}
|
package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "53c0f56742e0fdf9b85ffbcb4ead886d";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: PicklistAttributeTypeInputRepresentation, existing: PicklistAttributeTypeInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PicklistAttributeTypeInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: PicklistAttributeTypeInputRepresentationNormalized, incoming: PicklistAttributeTypeInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: PicklistAttributeTypeInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Picklist Attribute Type
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface PicklistAttributeTypeInputRepresentationNormalized {
|
|
17
|
+
/** Picklist Display Name */
|
|
18
|
+
displayName: string;
|
|
19
|
+
/** Picklist Id */
|
|
20
|
+
id: string;
|
|
21
|
+
/** Picklist Is Default */
|
|
22
|
+
isDefault: boolean;
|
|
23
|
+
/** Picklist Is Visible */
|
|
24
|
+
isVisible: boolean;
|
|
25
|
+
/** Picklist Name */
|
|
26
|
+
name: string;
|
|
27
|
+
/** Picklist Sequence Number */
|
|
28
|
+
sequenceNumber: number;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Picklist Attribute Type
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface PicklistAttributeTypeInputRepresentation {
|
|
37
|
+
displayName: string;
|
|
38
|
+
id: string;
|
|
39
|
+
isDefault: boolean;
|
|
40
|
+
isVisible: boolean;
|
|
41
|
+
name: string;
|
|
42
|
+
sequenceNumber: number;
|
|
43
|
+
}
|
package/dist/es/es2018/types/src/generated/types/PicklistAttributeTypeOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "245173b37929c2c5a2ccdf3c005e5ed9";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: PicklistAttributeTypeOutputRepresentation, existing: PicklistAttributeTypeOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PicklistAttributeTypeOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: PicklistAttributeTypeOutputRepresentationNormalized, incoming: PicklistAttributeTypeOutputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: PicklistAttributeTypeOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation class for the Picklist Attribute Type
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface PicklistAttributeTypeOutputRepresentationNormalized {
|
|
17
|
+
/** Picklist Option Display Name */
|
|
18
|
+
displayName: string;
|
|
19
|
+
/** Picklist Option Id */
|
|
20
|
+
id: string;
|
|
21
|
+
/** Picklist Option isDefault */
|
|
22
|
+
isDefault: boolean;
|
|
23
|
+
/** Picklist Option isVisible */
|
|
24
|
+
isVisible: boolean;
|
|
25
|
+
/** Picklist Option Name */
|
|
26
|
+
name: string;
|
|
27
|
+
/** Picklist Option Sequence Number */
|
|
28
|
+
sequenceNumber: number;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Output representation class for the Picklist Attribute Type
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface PicklistAttributeTypeOutputRepresentation {
|
|
37
|
+
displayName: string;
|
|
38
|
+
id: string;
|
|
39
|
+
isDefault: boolean;
|
|
40
|
+
isVisible: boolean;
|
|
41
|
+
name: string;
|
|
42
|
+
sequenceNumber: number;
|
|
43
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "71c359c9c5494f37831ff9a74fb8b01f";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: SectionInputRepresentation, existing: SectionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SectionInputRepresentationNormalized;
|
|
@@ -24,6 +24,8 @@ export interface SectionInputRepresentationNormalized {
|
|
|
24
24
|
name?: string | null;
|
|
25
25
|
/** The operation type of the section */
|
|
26
26
|
operationType?: string | null;
|
|
27
|
+
/** The sequence of Section */
|
|
28
|
+
sequence: number;
|
|
27
29
|
}
|
|
28
30
|
/**
|
|
29
31
|
* Input Representation for Sections
|
|
@@ -37,4 +39,5 @@ export interface SectionInputRepresentation {
|
|
|
37
39
|
id?: string | null;
|
|
38
40
|
name?: string | null;
|
|
39
41
|
operationType?: string | null;
|
|
42
|
+
sequence: number;
|
|
40
43
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CatalogItemAttributeOutputRepresentation as CatalogItemAttributeOutputRepresentation_CatalogItemAttributeOutputRepresentation } from './CatalogItemAttributeOutputRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "34826a646bb7b0b7c59bab61234d541a";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: SectionOutputRepresentation, existing: SectionOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SectionOutputRepresentationNormalized;
|
|
@@ -23,6 +23,8 @@ export interface SectionOutputRepresentationNormalized {
|
|
|
23
23
|
id?: string | null;
|
|
24
24
|
/** Product Name */
|
|
25
25
|
name?: string | null;
|
|
26
|
+
/** The sequence of Section */
|
|
27
|
+
sequence: number;
|
|
26
28
|
}
|
|
27
29
|
/**
|
|
28
30
|
* Output Representation for Section
|
|
@@ -35,4 +37,5 @@ export interface SectionOutputRepresentation {
|
|
|
35
37
|
description?: string | null;
|
|
36
38
|
id?: string | null;
|
|
37
39
|
name?: string | null;
|
|
40
|
+
sequence: number;
|
|
38
41
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-ecm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.347.1",
|
|
4
4
|
"description": "Service Automation Request",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/service-ecm.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.347.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.347.1"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|