@salesforce/lds-adapters-industries-context 1.436.0 → 1.438.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 +3390 -2345
- package/dist/es/es2018/types/src/generated/adapters/buildAndQueryRecordsFilter.d.ts +22 -0
- package/dist/es/es2018/types/src/generated/adapters/buildContext.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/adapters/buildContextAndQuery.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/resources/postConnectContext.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/postConnectContextQuery.d.ts +25 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectContexts.d.ts +14 -0
- package/dist/es/es2018/types/src/generated/resources/postConnectContextsFiltering.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/types/ContextAllQueriesInputRepresentation.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/types/ContextAllQueriesOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/ContextAndQueryInputRepresentation.d.ts +56 -0
- package/dist/es/es2018/types/src/generated/types/ContextAndQueryOutputRepresentation.d.ts +63 -0
- package/dist/es/es2018/types/src/generated/types/ContextAttributeTagToAttributeRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/ContextAttributeUpdateWithTagsRepresentation.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/types/ContextFilterInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/ContextFilterOutputRepresentation.d.ts +52 -0
- package/dist/es/es2018/types/src/generated/types/ContextInputRepresentation.d.ts +4 -4
- package/dist/es/es2018/types/src/generated/types/ContextMetaColumnListInputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/ContextMetaDataInputRepresentation.d.ts +10 -7
- package/dist/es/es2018/types/src/generated/types/ContextNodeTagToAttributesRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/ContextTagDataRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/FilterConditionInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/PersistContextInputRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/PersistContextOutputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/QueryContextRecordStatusAttributesResultRepresentation.d.ts +53 -0
- package/dist/es/es2018/types/src/generated/types/QueryContextRecordsAndChildrenInputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/QueryTagsInputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/QueryTagsResultRepresentation.d.ts +34 -0
- package/package.json +4 -4
- package/sfdc/index.js +2386 -1332
- package/src/raml/api.raml +389 -1
- package/src/raml/luvio.raml +21 -0
|
@@ -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 = "4a8d745fa634980f7c77623defe3fe5b";
|
|
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: ContextMetaDataInputRepresentation, existing: ContextMetaDataInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextMetaDataInputRepresentationNormalized;
|
|
@@ -15,13 +15,15 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
15
15
|
*/
|
|
16
16
|
export interface ContextMetaDataInputRepresentationNormalized {
|
|
17
17
|
/** List of BusinessObjectType Structures */
|
|
18
|
-
boStructure
|
|
18
|
+
boStructure?: Array<{}>;
|
|
19
19
|
/** Context Definition Id */
|
|
20
20
|
contextDefinitionId: string;
|
|
21
21
|
/** Context Lifecycle Customizer */
|
|
22
|
-
contextLifecycleCustomizer
|
|
22
|
+
contextLifecycleCustomizer?: string;
|
|
23
23
|
/** Context Mapping Id */
|
|
24
|
-
mappingId
|
|
24
|
+
mappingId?: string;
|
|
25
|
+
/** Context Mapping Name */
|
|
26
|
+
mappingName?: string;
|
|
25
27
|
}
|
|
26
28
|
/**
|
|
27
29
|
* Input representation of Context Metadata
|
|
@@ -30,8 +32,9 @@ export interface ContextMetaDataInputRepresentationNormalized {
|
|
|
30
32
|
* (none)
|
|
31
33
|
*/
|
|
32
34
|
export interface ContextMetaDataInputRepresentation {
|
|
33
|
-
boStructure
|
|
35
|
+
boStructure?: Array<{}>;
|
|
34
36
|
contextDefinitionId: string;
|
|
35
|
-
contextLifecycleCustomizer
|
|
36
|
-
mappingId
|
|
37
|
+
contextLifecycleCustomizer?: string;
|
|
38
|
+
mappingId?: string;
|
|
39
|
+
mappingName?: string;
|
|
37
40
|
}
|
package/dist/es/es2018/types/src/generated/types/ContextNodeTagToAttributesRepresentation.d.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ContextAttributeTagToAttributeRepresentation as ContextAttributeTagToAttributeRepresentation_ContextAttributeTagToAttributeRepresentation } from './ContextAttributeTagToAttributeRepresentation';
|
|
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 = "b86a9a280909229c6713f97ca9a57f77";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: ContextNodeTagToAttributesRepresentation, existing: ContextNodeTagToAttributesRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextNodeTagToAttributesRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: ContextNodeTagToAttributesRepresentationNormalized, incoming: ContextNodeTagToAttributesRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ContextNodeTagToAttributesRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Representation for node tag to attributes mapping
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface ContextNodeTagToAttributesRepresentationNormalized {
|
|
18
|
+
/** List of attribute tag to attribute mappings */
|
|
19
|
+
contextAttributeTagToAttributeRepresentationList: Array<ContextAttributeTagToAttributeRepresentation_ContextAttributeTagToAttributeRepresentation>;
|
|
20
|
+
/** Node tag */
|
|
21
|
+
nodeTag: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Representation for node tag to attributes mapping
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface ContextNodeTagToAttributesRepresentation {
|
|
30
|
+
contextAttributeTagToAttributeRepresentationList: Array<ContextAttributeTagToAttributeRepresentation_ContextAttributeTagToAttributeRepresentation>;
|
|
31
|
+
nodeTag: string;
|
|
32
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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 = "d84753d9b743ce893378ba5823593565";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ContextTagDataRepresentation, existing: ContextTagDataRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ContextTagDataRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ContextTagDataRepresentationNormalized, incoming: ContextTagDataRepresentationNormalized): 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: ContextTagDataRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Context Tag Data Representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ContextTagDataRepresentationNormalized {
|
|
17
|
+
/** Tag name */
|
|
18
|
+
tagName: string;
|
|
19
|
+
/** Tag value */
|
|
20
|
+
tagValue?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Context Tag Data Representation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ContextTagDataRepresentation {
|
|
29
|
+
tagName: string;
|
|
30
|
+
tagValue?: string;
|
|
31
|
+
}
|
|
@@ -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 = "1f98f55894d4c15bf0173d216983f1bf";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: FilterConditionInputRepresentation, existing: FilterConditionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FilterConditionInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: FilterConditionInputRepresentationNormalized, incoming: FilterConditionInputRepresentationNormalized): 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: FilterConditionInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation for filter condition
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface FilterConditionInputRepresentationNormalized {
|
|
17
|
+
/** Field name */
|
|
18
|
+
field: string;
|
|
19
|
+
/** Operator (e.g., EQUALS, CONTAINS) */
|
|
20
|
+
operator: string;
|
|
21
|
+
/** Filter value */
|
|
22
|
+
value: unknown;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Input representation for filter condition
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface FilterConditionInputRepresentation {
|
|
31
|
+
field: string;
|
|
32
|
+
operator: string;
|
|
33
|
+
value: unknown;
|
|
34
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 = "bc8375fef097d5ca14efa712a82f8d51";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: PersistContextInputRepresentation, existing: PersistContextInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PersistContextInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: PersistContextInputRepresentationNormalized, incoming: PersistContextInputRepresentationNormalized): 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: PersistContextInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation for persisting context
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface PersistContextInputRepresentationNormalized {
|
|
17
|
+
/** Context ID */
|
|
18
|
+
contextId: string;
|
|
19
|
+
/** Correlation ID for tracking */
|
|
20
|
+
correlationId?: string;
|
|
21
|
+
/** Target Mapping ID */
|
|
22
|
+
targetMappingId?: string;
|
|
23
|
+
/** Target Mapping Name */
|
|
24
|
+
targetMappingName?: string;
|
|
25
|
+
/** Flag to persist only transaction changes */
|
|
26
|
+
txnChangesOnly?: boolean;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Input representation for persisting context
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface PersistContextInputRepresentation {
|
|
35
|
+
contextId: string;
|
|
36
|
+
correlationId?: string;
|
|
37
|
+
targetMappingId?: string;
|
|
38
|
+
targetMappingName?: string;
|
|
39
|
+
txnChangesOnly?: boolean;
|
|
40
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 = "77b38f979e4f92d901f48c93b2cab9aa";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: PersistContextOutputRepresentation, existing: PersistContextOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PersistContextOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: PersistContextOutputRepresentationNormalized, incoming: PersistContextOutputRepresentationNormalized): 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: PersistContextOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation of Context Peristence
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface PersistContextOutputRepresentationNormalized {
|
|
17
|
+
/** Id to track processing details of the request/response */
|
|
18
|
+
referenceId: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Output representation of Context Peristence
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface PersistContextOutputRepresentation {
|
|
27
|
+
referenceId: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
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 = "1cbc763d2081b254f39e1693a29b4d57";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: QueryContextRecordStatusAttributesResultRepresentation, existing: QueryContextRecordStatusAttributesResultRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): QueryContextRecordStatusAttributesResultRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: QueryContextRecordStatusAttributesResultRepresentationNormalized, incoming: QueryContextRecordStatusAttributesResultRepresentationNormalized): 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: QueryContextRecordStatusAttributesResultRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation of QueryResult-ContextRecordStatus
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface QueryContextRecordStatusAttributesResultRepresentationNormalized {
|
|
17
|
+
/** Context Record Error List Representation */
|
|
18
|
+
contextDataPathToErrorListMap?: {
|
|
19
|
+
[key: string]: Array<string>;
|
|
20
|
+
};
|
|
21
|
+
/** Context Record Processing Status Representation */
|
|
22
|
+
contextDataPathToProcessingStatus?: {
|
|
23
|
+
[key: string]: string;
|
|
24
|
+
};
|
|
25
|
+
/** Context Record Timestamp Representation */
|
|
26
|
+
timestampMap?: {
|
|
27
|
+
[key: string]: string;
|
|
28
|
+
};
|
|
29
|
+
/** Context Record Updated Timestamp Representation */
|
|
30
|
+
updatedTimestampMap?: {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Output representation of QueryResult-ContextRecordStatus
|
|
36
|
+
*
|
|
37
|
+
* Keys:
|
|
38
|
+
* (none)
|
|
39
|
+
*/
|
|
40
|
+
export interface QueryContextRecordStatusAttributesResultRepresentation {
|
|
41
|
+
contextDataPathToErrorListMap?: {
|
|
42
|
+
[key: string]: Array<string>;
|
|
43
|
+
};
|
|
44
|
+
contextDataPathToProcessingStatus?: {
|
|
45
|
+
[key: string]: string;
|
|
46
|
+
};
|
|
47
|
+
timestampMap?: {
|
|
48
|
+
[key: string]: string;
|
|
49
|
+
};
|
|
50
|
+
updatedTimestampMap?: {
|
|
51
|
+
[key: string]: string;
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ContextDataPathInputRepresentation as ContextDataPathInputRepresentation_ContextDataPathInputRepresentation } from './ContextDataPathInputRepresentation';
|
|
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 = "da51a6ddfe59cf4c6ccbb28f9e9ac978";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: QueryContextRecordsAndChildrenInputRepresentation, existing: QueryContextRecordsAndChildrenInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): QueryContextRecordsAndChildrenInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: QueryContextRecordsAndChildrenInputRepresentationNormalized, incoming: QueryContextRecordsAndChildrenInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: QueryContextRecordsAndChildrenInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for querying context records and children
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface QueryContextRecordsAndChildrenInputRepresentationNormalized {
|
|
18
|
+
/** Context ID */
|
|
19
|
+
contextId: string;
|
|
20
|
+
/** Context Mapping ID */
|
|
21
|
+
mappingId?: string;
|
|
22
|
+
/** List of query data paths */
|
|
23
|
+
queryPaths?: Array<ContextDataPathInputRepresentation_ContextDataPathInputRepresentation>;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Input representation for querying context records and children
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface QueryContextRecordsAndChildrenInputRepresentation {
|
|
32
|
+
contextId: string;
|
|
33
|
+
mappingId?: string;
|
|
34
|
+
queryPaths?: Array<ContextDataPathInputRepresentation_ContextDataPathInputRepresentation>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { FilterConditionInputRepresentation as FilterConditionInputRepresentation_FilterConditionInputRepresentation } from './FilterConditionInputRepresentation';
|
|
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 = "361b5122e7b2d3179b8ebc6051303a1c";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: QueryTagsInputRepresentation, existing: QueryTagsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): QueryTagsInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: QueryTagsInputRepresentationNormalized, incoming: QueryTagsInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: QueryTagsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for querying tags
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface QueryTagsInputRepresentationNormalized {
|
|
18
|
+
/** Context ID */
|
|
19
|
+
contextId: string;
|
|
20
|
+
/** Filter conditions */
|
|
21
|
+
filter?: Array<FilterConditionInputRepresentation_FilterConditionInputRepresentation>;
|
|
22
|
+
/** List of tags */
|
|
23
|
+
tags?: Array<string>;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Input representation for querying tags
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface QueryTagsInputRepresentation {
|
|
32
|
+
contextId: string;
|
|
33
|
+
filter?: Array<FilterConditionInputRepresentation_FilterConditionInputRepresentation>;
|
|
34
|
+
tags?: Array<string>;
|
|
35
|
+
}
|
|
@@ -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 = "449e752b01fc57cdb93f27c309c5c417";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: QueryTagsResultRepresentation, existing: QueryTagsResultRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): QueryTagsResultRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: QueryTagsResultRepresentationNormalized, incoming: QueryTagsResultRepresentationNormalized): 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: QueryTagsResultRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Output representation of QueryResult-ContextTags
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface QueryTagsResultRepresentationNormalized {
|
|
17
|
+
/** Done */
|
|
18
|
+
isDone?: boolean;
|
|
19
|
+
/** Success */
|
|
20
|
+
isSuccess?: boolean;
|
|
21
|
+
/** Map of Tag and TagData */
|
|
22
|
+
queryResult?: unknown;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Output representation of QueryResult-ContextTags
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface QueryTagsResultRepresentation {
|
|
31
|
+
isDone?: boolean;
|
|
32
|
+
isSuccess?: boolean;
|
|
33
|
+
queryResult?: unknown;
|
|
34
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-context",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.438.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,14 +44,14 @@
|
|
|
44
44
|
"test:unit": "jest --config=./jest.config.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.438.0"
|
|
48
48
|
},
|
|
49
49
|
"volta": {
|
|
50
50
|
"extends": "../../package.json"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
54
|
-
"@salesforce/lds-karma": "^1.
|
|
53
|
+
"@salesforce/lds-compiler-plugins": "^1.438.0",
|
|
54
|
+
"@salesforce/lds-karma": "^1.438.0"
|
|
55
55
|
},
|
|
56
56
|
"nx": {
|
|
57
57
|
"targets": {
|