@salesforce/lds-adapters-industries-context 1.119.4 → 1.120.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/industries-context.js +335 -92
- package/dist/types/src/generated/types/ContextAttributeInputRepresentation.d.ts +1 -7
- package/dist/types/src/generated/types/ContextAttributeRepresentation.d.ts +1 -4
- package/dist/types/src/generated/types/ContextDefinitionInfoRepresentation.d.ts +29 -5
- package/dist/types/src/generated/types/ContextDefinitionInputRepresentation.d.ts +10 -1
- package/dist/types/src/generated/types/ContextDefinitionRepresentation.d.ts +9 -3
- package/dist/types/src/generated/types/ContextDefinitionVersionInputRepresentation.d.ts +1 -7
- package/dist/types/src/generated/types/ContextDefinitionVersionRepresentation.d.ts +3 -9
- package/dist/umd/es2018/industries-context.js +335 -92
- package/dist/umd/es5/industries-context.js +335 -92
- package/package.json +1 -1
- package/sfdc/index.js +336 -93
- package/src/raml/api.raml +56 -29
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
2
|
export declare const TTL = 30000;
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "05ab63159c5733f63fae9f5eb081ee89";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -29,12 +29,28 @@ export interface ContextDefinitionInfoRepresentationNormalized {
|
|
|
29
29
|
activeVersionId?: string;
|
|
30
30
|
/** Id of Context Definition */
|
|
31
31
|
contextDefinitionId: string;
|
|
32
|
+
/** Created By */
|
|
33
|
+
createdBy?: string;
|
|
34
|
+
/** Created Date */
|
|
35
|
+
createdDate?: string;
|
|
32
36
|
/** Definition */
|
|
33
|
-
definition
|
|
37
|
+
definition?: string;
|
|
34
38
|
/** Description */
|
|
35
|
-
description
|
|
39
|
+
description?: string;
|
|
40
|
+
/** Developer Name */
|
|
41
|
+
developerName?: string;
|
|
42
|
+
/** End Date */
|
|
43
|
+
endDate?: string;
|
|
44
|
+
/** Is Active */
|
|
45
|
+
isActive?: boolean;
|
|
36
46
|
/** Success */
|
|
37
47
|
isSuccess?: boolean;
|
|
48
|
+
/** Last Modified By */
|
|
49
|
+
lastModifiedBy?: string;
|
|
50
|
+
/** Last Modified Date */
|
|
51
|
+
lastModifiedDate?: string;
|
|
52
|
+
/** Start Date */
|
|
53
|
+
startDate?: string;
|
|
38
54
|
}
|
|
39
55
|
/**
|
|
40
56
|
* Output representation of Context Definition Info
|
|
@@ -45,7 +61,15 @@ export interface ContextDefinitionInfoRepresentationNormalized {
|
|
|
45
61
|
export interface ContextDefinitionInfoRepresentation {
|
|
46
62
|
activeVersionId?: string;
|
|
47
63
|
contextDefinitionId: string;
|
|
48
|
-
|
|
49
|
-
|
|
64
|
+
createdBy?: string;
|
|
65
|
+
createdDate?: string;
|
|
66
|
+
definition?: string;
|
|
67
|
+
description?: string;
|
|
68
|
+
developerName?: string;
|
|
69
|
+
endDate?: string;
|
|
70
|
+
isActive?: boolean;
|
|
50
71
|
isSuccess?: boolean;
|
|
72
|
+
lastModifiedBy?: string;
|
|
73
|
+
lastModifiedDate?: string;
|
|
74
|
+
startDate?: string;
|
|
51
75
|
}
|
|
@@ -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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "67371b03818ecbb74688949e1094801b";
|
|
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: ContextDefinitionInputRepresentation, existing: ContextDefinitionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextDefinitionInputRepresentationNormalized;
|
|
@@ -21,6 +21,12 @@ export interface ContextDefinitionInputRepresentationNormalized {
|
|
|
21
21
|
description?: string;
|
|
22
22
|
/** Developer Name */
|
|
23
23
|
developerName?: string;
|
|
24
|
+
/** End Date */
|
|
25
|
+
endDate?: string;
|
|
26
|
+
/** Is Active */
|
|
27
|
+
isActive?: boolean;
|
|
28
|
+
/** Start Date */
|
|
29
|
+
startDate?: string;
|
|
24
30
|
}
|
|
25
31
|
/**
|
|
26
32
|
* Input representation of Context Definition
|
|
@@ -32,4 +38,7 @@ export interface ContextDefinitionInputRepresentation {
|
|
|
32
38
|
definition?: string;
|
|
33
39
|
description?: string;
|
|
34
40
|
developerName?: string;
|
|
41
|
+
endDate?: string;
|
|
42
|
+
isActive?: boolean;
|
|
43
|
+
startDate?: string;
|
|
35
44
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
2
|
import { ContextDefinitionVersionRepresentation as ContextDefinitionVersionRepresentation_ContextDefinitionVersionRepresentation } from './ContextDefinitionVersionRepresentation';
|
|
3
3
|
export declare const TTL = 30000;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "1ba01f4b3eafae59f3d6860e1fe35f97";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -44,7 +44,11 @@ export interface ContextDefinitionRepresentationNormalized {
|
|
|
44
44
|
/** Definition */
|
|
45
45
|
definition: string;
|
|
46
46
|
/** Description */
|
|
47
|
-
description
|
|
47
|
+
description?: string;
|
|
48
|
+
/** Developer Name */
|
|
49
|
+
developerName?: string;
|
|
50
|
+
/** Is Active */
|
|
51
|
+
isActive?: boolean;
|
|
48
52
|
/** Success */
|
|
49
53
|
isSuccess: boolean;
|
|
50
54
|
}
|
|
@@ -59,6 +63,8 @@ export interface ContextDefinitionRepresentation {
|
|
|
59
63
|
contextDefinitionId: string;
|
|
60
64
|
contextDefinitionVersionList: Array<ContextDefinitionVersionRepresentation_ContextDefinitionVersionRepresentation>;
|
|
61
65
|
definition: string;
|
|
62
|
-
description
|
|
66
|
+
description?: string;
|
|
67
|
+
developerName?: string;
|
|
68
|
+
isActive?: boolean;
|
|
63
69
|
isSuccess: boolean;
|
|
64
70
|
}
|
|
@@ -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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "7b465b9e8b211ea4f2562c6799b6d441";
|
|
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: ContextDefinitionVersionInputRepresentation, existing: ContextDefinitionVersionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextDefinitionVersionInputRepresentationNormalized;
|
|
@@ -21,10 +21,6 @@ export interface ContextDefinitionVersionInputRepresentationNormalized {
|
|
|
21
21
|
contextMappings?: Array<{}>;
|
|
22
22
|
/** List of Context Nodes */
|
|
23
23
|
contextNodes?: Array<{}>;
|
|
24
|
-
/** Name of ContextDefinition */
|
|
25
|
-
definition?: string;
|
|
26
|
-
/** Short Description of ContextDefinition */
|
|
27
|
-
description?: string;
|
|
28
24
|
/** End Date */
|
|
29
25
|
endDate?: string;
|
|
30
26
|
/** Is Active */
|
|
@@ -42,8 +38,6 @@ export interface ContextDefinitionVersionInputRepresentation {
|
|
|
42
38
|
contextDefinitionId: string;
|
|
43
39
|
contextMappings?: Array<{}>;
|
|
44
40
|
contextNodes?: Array<{}>;
|
|
45
|
-
definition?: string;
|
|
46
|
-
description?: string;
|
|
47
41
|
endDate?: string;
|
|
48
42
|
isActive?: boolean;
|
|
49
43
|
startDate?: string;
|
|
@@ -2,7 +2,7 @@ import { ContextMappingRepresentation as ContextMappingRepresentation_ContextMap
|
|
|
2
2
|
import { ContextNodeRepresentation as ContextNodeRepresentation_ContextNodeRepresentation } from './ContextNodeRepresentation';
|
|
3
3
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
4
|
export declare const TTL = 30000;
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "3158779e25300fbcfd5a77c94e2da2d1";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -35,14 +35,10 @@ export interface ContextDefinitionVersionRepresentationNormalized {
|
|
|
35
35
|
contextMappings: Array<$64$luvio_engine_StoreLink>;
|
|
36
36
|
/** List of Context Nodes */
|
|
37
37
|
contextNodes: Array<$64$luvio_engine_StoreLink>;
|
|
38
|
-
/** Name of ContextDefinition */
|
|
39
|
-
definition?: string;
|
|
40
|
-
/** Short description of ContextDefinition */
|
|
41
|
-
description?: string;
|
|
42
38
|
/** End Date */
|
|
43
39
|
endDate?: string;
|
|
44
40
|
/** Active */
|
|
45
|
-
isActive
|
|
41
|
+
isActive?: boolean;
|
|
46
42
|
/** Success */
|
|
47
43
|
isSuccess?: boolean;
|
|
48
44
|
/** Start Date */
|
|
@@ -61,10 +57,8 @@ export interface ContextDefinitionVersionRepresentation {
|
|
|
61
57
|
contextDefinitionVersionId: string;
|
|
62
58
|
contextMappings: Array<ContextMappingRepresentation_ContextMappingRepresentation>;
|
|
63
59
|
contextNodes: Array<ContextNodeRepresentation_ContextNodeRepresentation>;
|
|
64
|
-
definition?: string;
|
|
65
|
-
description?: string;
|
|
66
60
|
endDate?: string;
|
|
67
|
-
isActive
|
|
61
|
+
isActive?: boolean;
|
|
68
62
|
isSuccess?: boolean;
|
|
69
63
|
startDate?: string;
|
|
70
64
|
versionNumber?: number;
|