@salesforce/lds-adapters-industries-context 1.283.0 → 1.285.0
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 +396 -91
- package/dist/es/es2018/types/src/generated/adapters/getContextServiceDefinition.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectContextDefinitionsByContextDefinitionId.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/types/ContextAttrContextHydrationDetailRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/ContextAttrContextHydrationDetailsInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/ContextAttrHydrationDetailListInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ContextAttributeMappingRepresentation.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/types/ContextMappingRepresentation.d.ts +10 -1
- package/dist/es/es2018/types/src/generated/types/ContextMappingsInputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/ContextNodeMappingRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/ContextNodeMappingsInputRepresentation.d.ts +4 -1
- package/package.json +4 -4
- package/sfdc/index.js +314 -8
- package/src/raml/api.raml +93 -0
|
@@ -7,6 +7,8 @@ export declare const getContextServiceDefinition_ConfigPropertyMetadata: $64$luv
|
|
|
7
7
|
export declare const getContextServiceDefinition_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
8
|
export interface GetContextServiceDefinitionConfig {
|
|
9
9
|
contextDefinitionId: string;
|
|
10
|
+
isMappingRequiredExclusively?: boolean;
|
|
11
|
+
mappingIdsOrDevelopersNames?: Array<string>;
|
|
10
12
|
}
|
|
11
13
|
export declare const createResourceParams: (config: GetContextServiceDefinitionConfig) => resources_getConnectContextDefinitionsByContextDefinitionId_ResourceRequestConfig;
|
|
12
14
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetContextServiceDefinitionConfig): string;
|
|
@@ -4,6 +4,10 @@ export interface ResourceRequestConfig {
|
|
|
4
4
|
urlParams: {
|
|
5
5
|
contextDefinitionId: string;
|
|
6
6
|
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
isMappingRequiredExclusively?: boolean;
|
|
9
|
+
mappingIdsOrDevelopersNames?: Array<string>;
|
|
10
|
+
};
|
|
7
11
|
}
|
|
8
12
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
13
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
@@ -0,0 +1,37 @@
|
|
|
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 = "40b52866e6f56ae5b7cfb279bcfae6ce";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ContextAttrContextHydrationDetailRepresentation, existing: ContextAttrContextHydrationDetailRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextAttrContextHydrationDetailRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ContextAttrContextHydrationDetailRepresentationNormalized, incoming: ContextAttrContextHydrationDetailRepresentationNormalized): 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: ContextAttrContextHydrationDetailRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation of Context to Context Mapping Detail
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ContextAttrContextHydrationDetailRepresentationNormalized {
|
|
17
|
+
/** Represents inherited ContextAttrHydrationDetail in this definition. */
|
|
18
|
+
baseReference?: string;
|
|
19
|
+
/** Id of the record ContextAttrContextDetailRepresentation */
|
|
20
|
+
contextAttrContextHydrationDetailId?: string;
|
|
21
|
+
/** Success */
|
|
22
|
+
isSuccess?: boolean;
|
|
23
|
+
/** Query Attribute */
|
|
24
|
+
queryAttribute?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Output representation of Context to Context Mapping Detail
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface ContextAttrContextHydrationDetailRepresentation {
|
|
33
|
+
baseReference?: string;
|
|
34
|
+
contextAttrContextHydrationDetailId?: string;
|
|
35
|
+
isSuccess?: boolean;
|
|
36
|
+
queryAttribute?: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 = "e1cecb08ea28a98097bb7ae0fe4a70e6";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ContextAttrContextHydrationDetailsInputRepresentation, existing: ContextAttrContextHydrationDetailsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextAttrContextHydrationDetailsInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ContextAttrContextHydrationDetailsInputRepresentationNormalized, incoming: ContextAttrContextHydrationDetailsInputRepresentationNormalized): 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: ContextAttrContextHydrationDetailsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation of Context Attribute Context Hydration Detail
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ContextAttrContextHydrationDetailsInputRepresentationNormalized {
|
|
17
|
+
/** ID of this Hydration Detail - Required for Update */
|
|
18
|
+
contextAttrContextHydrationDetailId: string;
|
|
19
|
+
/** Id of (Parent) ContextAttributeMapping */
|
|
20
|
+
parentAttributeMappingId: string;
|
|
21
|
+
/** Query Attribute */
|
|
22
|
+
queryAttribute: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Input representation of Context Attribute Context Hydration Detail
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface ContextAttrContextHydrationDetailsInputRepresentation {
|
|
31
|
+
contextAttrContextHydrationDetailId: string;
|
|
32
|
+
parentAttributeMappingId: string;
|
|
33
|
+
queryAttribute: string;
|
|
34
|
+
}
|
|
@@ -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 = "c2b6f4ea2aa616b865d95c7d91f4e4d7";
|
|
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: ContextAttrHydrationDetailListInputRepresentation, existing: ContextAttrHydrationDetailListInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextAttrHydrationDetailListInputRepresentationNormalized;
|
|
@@ -14,6 +14,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
14
14
|
* (none)
|
|
15
15
|
*/
|
|
16
16
|
export interface ContextAttrHydrationDetailListInputRepresentationNormalized {
|
|
17
|
+
/** List of ContextAttributeContextHydrationDetail */
|
|
18
|
+
contextAttrContextHydrationDetails?: Array<{}>;
|
|
17
19
|
/** List of ContextAttributeHydrationDetail */
|
|
18
20
|
contextAttrHydrationDetails?: Array<{}>;
|
|
19
21
|
}
|
|
@@ -24,5 +26,6 @@ export interface ContextAttrHydrationDetailListInputRepresentationNormalized {
|
|
|
24
26
|
* (none)
|
|
25
27
|
*/
|
|
26
28
|
export interface ContextAttrHydrationDetailListInputRepresentation {
|
|
29
|
+
contextAttrContextHydrationDetails?: Array<{}>;
|
|
27
30
|
contextAttrHydrationDetails?: Array<{}>;
|
|
28
31
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { ContextAttrContextHydrationDetailRepresentation as ContextAttrContextHydrationDetailRepresentation_ContextAttrContextHydrationDetailRepresentation } from './ContextAttrContextHydrationDetailRepresentation';
|
|
1
2
|
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
3
|
import { ContextAttrHydrationDetailRepresentation as ContextAttrHydrationDetailRepresentation_ContextAttrHydrationDetailRepresentation } from './ContextAttrHydrationDetailRepresentation';
|
|
3
4
|
export declare const TTL = 1000;
|
|
4
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "539359f9069e5a51a579221aeaef8234";
|
|
5
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
7
|
export declare const RepresentationType: string;
|
|
7
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -36,12 +37,16 @@ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$lu
|
|
|
36
37
|
export interface ContextAttributeMappingRepresentationNormalized {
|
|
37
38
|
/** Represents inherited ContextAttributeMapping in this definition. */
|
|
38
39
|
baseReference?: string;
|
|
40
|
+
/** List of ContextAttrContextHydrationDetail */
|
|
41
|
+
contextAttrContextHydrationDetailList?: Array<ContextAttrContextHydrationDetailRepresentation_ContextAttrContextHydrationDetailRepresentation>;
|
|
39
42
|
/** List of ContextAttributeHydrationDetail */
|
|
40
43
|
contextAttrHydrationDetailList: Array<$64$luvio_engine_StoreLink>;
|
|
41
44
|
/** Reference to ContextAttribute */
|
|
42
45
|
contextAttributeId?: string;
|
|
43
46
|
/** Id of this ContextAttributeMapping */
|
|
44
47
|
contextAttributeMappingId: string;
|
|
48
|
+
/** Name of ContextAttribute */
|
|
49
|
+
contextAttributeName?: string;
|
|
45
50
|
/** Input Attribute Name */
|
|
46
51
|
contextInputAttributeName?: string;
|
|
47
52
|
/** Description of attribute mapping */
|
|
@@ -59,9 +64,11 @@ export interface ContextAttributeMappingRepresentationNormalized {
|
|
|
59
64
|
*/
|
|
60
65
|
export interface ContextAttributeMappingRepresentation {
|
|
61
66
|
baseReference?: string;
|
|
67
|
+
contextAttrContextHydrationDetailList?: Array<ContextAttrContextHydrationDetailRepresentation_ContextAttrContextHydrationDetailRepresentation>;
|
|
62
68
|
contextAttrHydrationDetailList: Array<ContextAttrHydrationDetailRepresentation_ContextAttrHydrationDetailRepresentation>;
|
|
63
69
|
contextAttributeId?: string;
|
|
64
70
|
contextAttributeMappingId: string;
|
|
71
|
+
contextAttributeName?: string;
|
|
65
72
|
contextInputAttributeName?: string;
|
|
66
73
|
description?: string;
|
|
67
74
|
isSuccess?: boolean;
|
|
@@ -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 { ContextNodeMappingRepresentation as ContextNodeMappingRepresentation_ContextNodeMappingRepresentation } from './ContextNodeMappingRepresentation';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "6625536779234428522beec438ddd863";
|
|
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,10 +44,16 @@ export interface ContextMappingRepresentationNormalized {
|
|
|
44
44
|
contextNodeMappings: Array<$64$luvio_engine_StoreLink>;
|
|
45
45
|
/** Description of ContextMapping */
|
|
46
46
|
description?: string;
|
|
47
|
+
/** Intents for this definition. */
|
|
48
|
+
intents?: Array<string>;
|
|
47
49
|
/** Success */
|
|
48
50
|
isDefault?: boolean;
|
|
51
|
+
/** is input mapped */
|
|
52
|
+
isInputMapped?: boolean;
|
|
49
53
|
/** Success */
|
|
50
54
|
isSuccess?: boolean;
|
|
55
|
+
/** Mapped Context definition ID */
|
|
56
|
+
mappedContextDefinitionName?: string;
|
|
51
57
|
/** Name of ContextMapping */
|
|
52
58
|
name?: string;
|
|
53
59
|
}
|
|
@@ -63,7 +69,10 @@ export interface ContextMappingRepresentation {
|
|
|
63
69
|
contextMappingId: string;
|
|
64
70
|
contextNodeMappings: Array<ContextNodeMappingRepresentation_ContextNodeMappingRepresentation>;
|
|
65
71
|
description?: string;
|
|
72
|
+
intents?: Array<string>;
|
|
66
73
|
isDefault?: boolean;
|
|
74
|
+
isInputMapped?: boolean;
|
|
67
75
|
isSuccess?: boolean;
|
|
76
|
+
mappedContextDefinitionName?: string;
|
|
68
77
|
name?: string;
|
|
69
78
|
}
|
|
@@ -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 = "2740f15d3021cd3cda92abc5fa136297";
|
|
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: ContextMappingsInputRepresentation, existing: ContextMappingsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextMappingsInputRepresentationNormalized;
|
|
@@ -20,8 +20,12 @@ export interface ContextMappingsInputRepresentationNormalized {
|
|
|
20
20
|
contextNodeMappings?: Array<{}>;
|
|
21
21
|
/** Description of ContextMapping */
|
|
22
22
|
description?: string;
|
|
23
|
+
/** Intent for this mapping */
|
|
24
|
+
intents?: Array<string>;
|
|
23
25
|
/** Is Default */
|
|
24
26
|
isDefault?: boolean;
|
|
27
|
+
/** Mapped Context Definition Id */
|
|
28
|
+
mappedContextDefinitionName?: string;
|
|
25
29
|
/** Name of ContextMapping */
|
|
26
30
|
name: string;
|
|
27
31
|
}
|
|
@@ -35,6 +39,8 @@ export interface ContextMappingsInputRepresentation {
|
|
|
35
39
|
contextMappingId?: string;
|
|
36
40
|
contextNodeMappings?: Array<{}>;
|
|
37
41
|
description?: string;
|
|
42
|
+
intents?: Array<string>;
|
|
38
43
|
isDefault?: boolean;
|
|
44
|
+
mappedContextDefinitionName?: string;
|
|
39
45
|
name: string;
|
|
40
46
|
}
|
|
@@ -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 { ContextAttributeMappingRepresentation as ContextAttributeMappingRepresentation_ContextAttributeMappingRepresentation } from './ContextAttributeMappingRepresentation';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "0f7420d3c8dbe149876b673d81e43341";
|
|
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 {
|
|
@@ -46,6 +46,8 @@ export interface ContextNodeMappingRepresentationNormalized {
|
|
|
46
46
|
contextNodeMappingId: string;
|
|
47
47
|
/** Success */
|
|
48
48
|
isSuccess?: boolean;
|
|
49
|
+
/** Represents mapped NodeId for this node mapping. */
|
|
50
|
+
mappedContextNodeId?: string;
|
|
49
51
|
/** SObject Name */
|
|
50
52
|
sObjectName?: string;
|
|
51
53
|
}
|
|
@@ -62,5 +64,6 @@ export interface ContextNodeMappingRepresentation {
|
|
|
62
64
|
contextNodeId?: string;
|
|
63
65
|
contextNodeMappingId: string;
|
|
64
66
|
isSuccess?: boolean;
|
|
67
|
+
mappedContextNodeId?: string;
|
|
65
68
|
sObjectName?: string;
|
|
66
69
|
}
|
package/dist/es/es2018/types/src/generated/types/ContextNodeMappingsInputRepresentation.d.ts
CHANGED
|
@@ -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 = "f0e64d9c7b3dd1a08097de78839762ea";
|
|
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: ContextNodeMappingsInputRepresentation, existing: ContextNodeMappingsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextNodeMappingsInputRepresentationNormalized;
|
|
@@ -20,6 +20,8 @@ export interface ContextNodeMappingsInputRepresentationNormalized {
|
|
|
20
20
|
contextNodeId: string;
|
|
21
21
|
/** ID of this Context Node Mapping - Required for Update */
|
|
22
22
|
contextNodeMappingId?: string;
|
|
23
|
+
/** Mapped Context NodeId for context to context mapping */
|
|
24
|
+
mappedContextNodeId?: string;
|
|
23
25
|
/** SObject Name */
|
|
24
26
|
sObjectName?: string;
|
|
25
27
|
}
|
|
@@ -33,5 +35,6 @@ export interface ContextNodeMappingsInputRepresentation {
|
|
|
33
35
|
attributeMappings?: Array<{}>;
|
|
34
36
|
contextNodeId: string;
|
|
35
37
|
contextNodeMappingId?: string;
|
|
38
|
+
mappedContextNodeId?: string;
|
|
36
39
|
sObjectName?: string;
|
|
37
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-context",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.285.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Normandy Context Service",
|
|
6
6
|
"main": "dist/es/es2018/industries-context.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:unit": "jest --config=./jest.config.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.285.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.285.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.285.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|