@salesforce/lds-adapters-marketing-cdp 1.169.0 → 1.170.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/marketing-cdp.js +30 -20
- package/dist/es/es2018/types/src/generated/resources/deleteSsotApplicationDataGraphsByAdgName.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getSsotApplicationDataGraphsByAdgName.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/postSsotApplicationDataGraphs.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/putSsotApplicationDataGraphsRetry.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphDataRecencyInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphFieldInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphFieldOutputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphOutputRepresentation.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphPathToParentInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphPathToParentOutputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphRecencyCriteriaOutputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphSourceInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphSourceObjectOutputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpDataGraphRetryInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpDataGraphRetryOutputRepresentation.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/CdpObjectBaseInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/CdpObjectBaseOutputRepresentation.d.ts +1 -1
- package/package.json +1 -1
- package/sfdc/index.js +36 -22
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* For full license text, see the LICENSE.txt file
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { serializeStructuredKey,
|
|
7
|
+
import { serializeStructuredKey, deepFreeze, StoreKeyMap } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
10
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -440,8 +440,7 @@ const ingest$1 = function CdpApplicationDataGraphOutputRepresentationIngest(inpu
|
|
|
440
440
|
}
|
|
441
441
|
return createLink(key);
|
|
442
442
|
};
|
|
443
|
-
function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
444
|
-
const rootKeySet = new StoreKeyMap();
|
|
443
|
+
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
445
444
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
446
445
|
const rootKey = keyBuilderFromType$1(luvio, input);
|
|
447
446
|
rootKeySet.set(rootKey, {
|
|
@@ -449,14 +448,13 @@ function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
|
449
448
|
representationName: RepresentationType$2,
|
|
450
449
|
mergeable: false
|
|
451
450
|
});
|
|
452
|
-
return rootKeySet;
|
|
453
451
|
}
|
|
454
452
|
|
|
455
453
|
function select$3(luvio, params) {
|
|
456
454
|
return select$4();
|
|
457
455
|
}
|
|
458
|
-
function getResponseCacheKeys$3(luvio, resourceParams, response) {
|
|
459
|
-
|
|
456
|
+
function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
457
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response);
|
|
460
458
|
}
|
|
461
459
|
function ingestSuccess$2(luvio, resourceParams, response) {
|
|
462
460
|
const { body } = response;
|
|
@@ -567,7 +565,11 @@ function buildNetworkSnapshot$3(luvio, config, options) {
|
|
|
567
565
|
return luvio.handleSuccessResponse(() => {
|
|
568
566
|
const snapshot = ingestSuccess$2(luvio, resourceParams, response);
|
|
569
567
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
570
|
-
}, () =>
|
|
568
|
+
}, () => {
|
|
569
|
+
const cache = new StoreKeyMap();
|
|
570
|
+
getResponseCacheKeys$3(cache, luvio, resourceParams, response.body);
|
|
571
|
+
return cache;
|
|
572
|
+
});
|
|
571
573
|
}, (response) => {
|
|
572
574
|
deepFreeze(response);
|
|
573
575
|
throw response;
|
|
@@ -592,8 +594,8 @@ function keyBuilder$3(luvio, params) {
|
|
|
592
594
|
name: params.urlParams.adgName
|
|
593
595
|
});
|
|
594
596
|
}
|
|
595
|
-
function getResponseCacheKeys$2(luvio, resourceParams, response) {
|
|
596
|
-
|
|
597
|
+
function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
598
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response);
|
|
597
599
|
}
|
|
598
600
|
function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
599
601
|
const { body } = response;
|
|
@@ -695,7 +697,11 @@ function buildNetworkSnapshot$2(luvio, config, options) {
|
|
|
695
697
|
const request = createResourceRequest$2(resourceParams);
|
|
696
698
|
return luvio.dispatchResourceRequest(request, options)
|
|
697
699
|
.then((response) => {
|
|
698
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () =>
|
|
700
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () => {
|
|
701
|
+
const cache = new StoreKeyMap();
|
|
702
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams, response.body);
|
|
703
|
+
return cache;
|
|
704
|
+
});
|
|
699
705
|
}, (response) => {
|
|
700
706
|
return luvio.handleErrorResponse(() => onFetchResponseError(luvio, config, resourceParams, response));
|
|
701
707
|
});
|
|
@@ -745,15 +751,13 @@ function keyBuilder$1(luvio, params) {
|
|
|
745
751
|
name: params.urlParams.adgName
|
|
746
752
|
});
|
|
747
753
|
}
|
|
748
|
-
function getResponseCacheKeys$1(luvio, resourceParams) {
|
|
754
|
+
function getResponseCacheKeys$1(cacheKeyMap, luvio, resourceParams) {
|
|
749
755
|
const key = keyBuilder$1(luvio, resourceParams);
|
|
750
|
-
const cacheKeyMap = new StoreKeyMap();
|
|
751
756
|
cacheKeyMap.set(key, {
|
|
752
757
|
namespace: keyPrefix,
|
|
753
758
|
representationName: RepresentationType$1,
|
|
754
759
|
mergeable: false
|
|
755
760
|
});
|
|
756
|
-
return cacheKeyMap;
|
|
757
761
|
}
|
|
758
762
|
function evictSuccess(luvio, resourceParams) {
|
|
759
763
|
const key = keyBuilder$1(luvio, resourceParams);
|
|
@@ -818,7 +822,11 @@ function buildNetworkSnapshot$1(luvio, config, options) {
|
|
|
818
822
|
return luvio.handleSuccessResponse(() => {
|
|
819
823
|
evictSuccess(luvio, resourceParams);
|
|
820
824
|
return luvio.storeBroadcast();
|
|
821
|
-
}, () =>
|
|
825
|
+
}, () => {
|
|
826
|
+
const cache = new StoreKeyMap();
|
|
827
|
+
getResponseCacheKeys$1(cache, luvio, resourceParams);
|
|
828
|
+
return cache;
|
|
829
|
+
});
|
|
822
830
|
}, (response) => {
|
|
823
831
|
deepFreeze(response);
|
|
824
832
|
throw response;
|
|
@@ -916,8 +924,7 @@ const ingest = function CdpDataGraphRetryOutputRepresentationIngest(input, path,
|
|
|
916
924
|
}
|
|
917
925
|
return createLink(key);
|
|
918
926
|
};
|
|
919
|
-
function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
920
|
-
const rootKeySet = new StoreKeyMap();
|
|
927
|
+
function getTypeCacheKeys(rootKeySet, luvio, input, fullPathFactory) {
|
|
921
928
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
922
929
|
const rootKey = keyBuilderFromType(luvio, input);
|
|
923
930
|
rootKeySet.set(rootKey, {
|
|
@@ -925,14 +932,13 @@ function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
|
925
932
|
representationName: RepresentationType,
|
|
926
933
|
mergeable: false
|
|
927
934
|
});
|
|
928
|
-
return rootKeySet;
|
|
929
935
|
}
|
|
930
936
|
|
|
931
937
|
function select(luvio, params) {
|
|
932
938
|
return select$1();
|
|
933
939
|
}
|
|
934
|
-
function getResponseCacheKeys(luvio, resourceParams, response) {
|
|
935
|
-
|
|
940
|
+
function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
941
|
+
getTypeCacheKeys(storeKeyMap, luvio, response);
|
|
936
942
|
}
|
|
937
943
|
function ingestSuccess(luvio, resourceParams, response) {
|
|
938
944
|
const { body } = response;
|
|
@@ -1009,7 +1015,11 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
1009
1015
|
return luvio.handleSuccessResponse(() => {
|
|
1010
1016
|
const snapshot = ingestSuccess(luvio, resourceParams, response);
|
|
1011
1017
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
1012
|
-
}, () =>
|
|
1018
|
+
}, () => {
|
|
1019
|
+
const cache = new StoreKeyMap();
|
|
1020
|
+
getResponseCacheKeys(cache, luvio, resourceParams, response.body);
|
|
1021
|
+
return cache;
|
|
1022
|
+
});
|
|
1013
1023
|
}, (response) => {
|
|
1014
1024
|
deepFreeze(response);
|
|
1015
1025
|
throw response;
|
package/dist/es/es2018/types/src/generated/resources/deleteSsotApplicationDataGraphsByAdgName.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata,
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
2
|
export interface ResourceRequestConfig {
|
|
3
3
|
urlParams: {
|
|
4
4
|
adgName: string;
|
|
@@ -6,7 +6,7 @@ export interface ResourceRequestConfig {
|
|
|
6
6
|
}
|
|
7
7
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
8
8
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
9
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig):
|
|
9
|
+
export declare function getResponseCacheKeys(cacheKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
|
|
10
10
|
export declare function evictSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
|
|
11
11
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
12
|
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/getSsotApplicationDataGraphsByAdgName.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata,
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
2
|
import { CdpApplicationDataGraphOutputRepresentation as types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation } from '../types/CdpApplicationDataGraphOutputRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
urlParams: {
|
|
@@ -8,7 +8,7 @@ export interface ResourceRequestConfig {
|
|
|
8
8
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
9
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
10
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation):
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation): void;
|
|
12
12
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>;
|
|
13
13
|
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
14
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment,
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
2
|
import { CdpApplicationDataGraphOutputRepresentation as types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation } from '../types/CdpApplicationDataGraphOutputRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
body: {
|
|
@@ -12,7 +12,7 @@ export interface ResourceRequestConfig {
|
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
14
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
15
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation):
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation): void;
|
|
16
16
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpApplicationDataGraphOutputRepresentation_CdpApplicationDataGraphOutputRepresentation, any>;
|
|
17
17
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
18
|
export default createResourceRequest;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment,
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
2
|
import { CdpDataGraphRetryOutputRepresentation as types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation } from '../types/CdpDataGraphRetryOutputRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
body: {
|
|
@@ -6,7 +6,7 @@ export interface ResourceRequestConfig {
|
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
8
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation):
|
|
9
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation): void;
|
|
10
10
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_CdpDataGraphRetryOutputRepresentation_CdpDataGraphRetryOutputRepresentation, any>;
|
|
11
11
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
12
|
export default createResourceRequest;
|
|
@@ -1,4 +1,4 @@
|
|
|
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,
|
|
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
2
|
export declare const VERSION = "6d4541500722f010c61d36ef25eab423";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpApplicationDataGraphDataRecencyInput
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: CdpApplicationDataGraphDataRecencyInputRepresentationNormalized, incoming: CdpApplicationDataGraphDataRecencyInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphDataRecencyInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphDataRecencyInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* ADG Recency Criteria input representation
|
|
12
12
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
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,
|
|
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
2
|
export declare const VERSION = "e3ca443a544f4139e56ecc2ecb3fda03";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpApplicationDataGraphFieldInputRepres
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: CdpApplicationDataGraphFieldInputRepresentationNormalized, incoming: CdpApplicationDataGraphFieldInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphFieldInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphFieldInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* ADG Field input representation
|
|
12
12
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest,
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
2
|
export declare const VERSION = "5ccd85bcaf66b23d82f3af541d347b3e";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpApplicationDataGraphFieldOutputRepre
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
7
7
|
export declare function equals(existing: CdpApplicationDataGraphFieldOutputRepresentationNormalized, incoming: CdpApplicationDataGraphFieldOutputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphFieldOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphFieldOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Represents Cdp Application Data Graph Field Output
|
|
12
12
|
*
|
package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphInputRepresentation.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest,
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
2
|
export declare const VERSION = "cd0031c5ca8a7c3216ce0436ed11566b";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpApplicationDataGraphInputRepresentat
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
7
7
|
export declare function equals(existing: CdpApplicationDataGraphInputRepresentationNormalized, incoming: CdpApplicationDataGraphInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Input representation for creating CDP ADG
|
|
12
12
|
*
|
package/dist/es/es2018/types/src/generated/types/CdpApplicationDataGraphOutputRepresentation.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export declare function normalize(input: CdpApplicationDataGraphOutputRepresenta
|
|
|
12
12
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
13
13
|
export declare function equals(existing: CdpApplicationDataGraphOutputRepresentationNormalized, incoming: CdpApplicationDataGraphOutputRepresentationNormalized): boolean;
|
|
14
14
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
15
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
15
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
16
16
|
/**
|
|
17
17
|
* Represents Cdp Application Data Graph Output
|
|
18
18
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
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,
|
|
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
2
|
export declare const VERSION = "508e41f135c86630b5eea6b00ecf7cff";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpApplicationDataGraphPathToParentInpu
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: CdpApplicationDataGraphPathToParentInputRepresentationNormalized, incoming: CdpApplicationDataGraphPathToParentInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphPathToParentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphPathToParentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* ADG Source Object Path input representation
|
|
12
12
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
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,
|
|
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
2
|
export declare const VERSION = "1ebb46329fb1b73ed3254dc339c1f805";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpApplicationDataGraphPathToParentOutp
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: CdpApplicationDataGraphPathToParentOutputRepresentationNormalized, incoming: CdpApplicationDataGraphPathToParentOutputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphPathToParentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphPathToParentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Represents Cdp Application Data Graph Path to Parent Output
|
|
12
12
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
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,
|
|
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
2
|
export declare const VERSION = "15caf3702bc23cdc6d330242bb483233";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpApplicationDataGraphRecencyCriteriaO
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: CdpApplicationDataGraphRecencyCriteriaOutputRepresentationNormalized, incoming: CdpApplicationDataGraphRecencyCriteriaOutputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphRecencyCriteriaOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphRecencyCriteriaOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Represents Cdp Application Data Graph Recency Output
|
|
12
12
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CdpObjectBaseInputRepresentation as CdpObjectBaseInputRepresentation_CdpObjectBaseInputRepresentation } from './CdpObjectBaseInputRepresentation';
|
|
2
2
|
import { CdpApplicationDataGraphFieldInputRepresentation as CdpApplicationDataGraphFieldInputRepresentation_CdpApplicationDataGraphFieldInputRepresentation } from './CdpApplicationDataGraphFieldInputRepresentation';
|
|
3
3
|
import { CdpApplicationDataGraphPathToParentInputRepresentation as CdpApplicationDataGraphPathToParentInputRepresentation_CdpApplicationDataGraphPathToParentInputRepresentation } from './CdpApplicationDataGraphPathToParentInputRepresentation';
|
|
4
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest,
|
|
4
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
5
5
|
export declare const VERSION = "6e89ba5bf3413349e1863e3d2d3d7bf9";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
@@ -9,7 +9,7 @@ export declare function normalize(input: CdpApplicationDataGraphSourceInputRepre
|
|
|
9
9
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
10
10
|
export declare function equals(existing: CdpApplicationDataGraphSourceInputRepresentationNormalized, incoming: CdpApplicationDataGraphSourceInputRepresentationNormalized): boolean;
|
|
11
11
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphSourceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
12
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphSourceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
13
13
|
/**
|
|
14
14
|
* ADG Source Object input representation
|
|
15
15
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CdpApplicationDataGraphFieldOutputRepresentation as CdpApplicationDataGraphFieldOutputRepresentation_CdpApplicationDataGraphFieldOutputRepresentation } from './CdpApplicationDataGraphFieldOutputRepresentation';
|
|
2
2
|
import { CdpApplicationDataGraphPathToParentOutputRepresentation as CdpApplicationDataGraphPathToParentOutputRepresentation_CdpApplicationDataGraphPathToParentOutputRepresentation } from './CdpApplicationDataGraphPathToParentOutputRepresentation';
|
|
3
3
|
import { CdpApplicationDataGraphRecencyCriteriaOutputRepresentation as CdpApplicationDataGraphRecencyCriteriaOutputRepresentation_CdpApplicationDataGraphRecencyCriteriaOutputRepresentation } from './CdpApplicationDataGraphRecencyCriteriaOutputRepresentation';
|
|
4
|
-
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink,
|
|
4
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, 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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
5
5
|
export declare const VERSION = "b02451e0d5808bb999fb27ec07ced883";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
@@ -9,7 +9,7 @@ export declare function normalize(input: CdpApplicationDataGraphSourceObjectOutp
|
|
|
9
9
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
10
10
|
export declare function equals(existing: CdpApplicationDataGraphSourceObjectOutputRepresentationNormalized, incoming: CdpApplicationDataGraphSourceObjectOutputRepresentationNormalized): boolean;
|
|
11
11
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphSourceObjectOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
12
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpApplicationDataGraphSourceObjectOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
13
13
|
/**
|
|
14
14
|
* Represents Cdp Application Data Graph Source Output
|
|
15
15
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
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,
|
|
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
2
|
export declare const VERSION = "ff9c7ef7ade8a01ba232239752160670";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpDataGraphRetryInputRepresentation, e
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: CdpDataGraphRetryInputRepresentationNormalized, incoming: CdpDataGraphRetryInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpDataGraphRetryInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpDataGraphRetryInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Input representation for retry running error state CDP Data Graph
|
|
12
12
|
*
|
|
@@ -15,7 +15,7 @@ export declare function normalize(input: CdpDataGraphRetryOutputRepresentation,
|
|
|
15
15
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
16
16
|
export declare function equals(existing: CdpDataGraphRetryOutputRepresentationNormalized, incoming: CdpDataGraphRetryOutputRepresentationNormalized): boolean;
|
|
17
17
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
18
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpDataGraphRetryOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
18
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpDataGraphRetryOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
19
19
|
/**
|
|
20
20
|
* Represents Cdp Data Graph Retry Output
|
|
21
21
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
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,
|
|
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
2
|
export declare const VERSION = "221946d1bc7d3020417982df5d0392bb";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
@@ -6,7 +6,7 @@ export declare function normalize(input: CdpObjectBaseInputRepresentation, exist
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: CdpObjectBaseInputRepresentationNormalized, incoming: CdpObjectBaseInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpObjectBaseInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpObjectBaseInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Base CDP Input representation
|
|
12
12
|
*
|
|
@@ -15,7 +15,7 @@ export declare function normalize(input: CdpObjectBaseOutputRepresentation, exis
|
|
|
15
15
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
16
16
|
export declare function equals(existing: CdpObjectBaseOutputRepresentationNormalized, incoming: CdpObjectBaseOutputRepresentationNormalized): boolean;
|
|
17
17
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
18
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: CdpObjectBaseOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
18
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpObjectBaseOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
19
19
|
/**
|
|
20
20
|
* Represents Cdp Base Output
|
|
21
21
|
*
|
package/package.json
CHANGED
package/sfdc/index.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
/* proxy-compat-disable */
|
|
15
15
|
import { createInstrumentedAdapter, createLDSAdapter, createWireAdapterConstructor, createImperativeAdapter } from 'force/ldsBindings';
|
|
16
16
|
import { withDefaultLuvio } from 'force/ldsEngine';
|
|
17
|
-
import { serializeStructuredKey,
|
|
17
|
+
import { serializeStructuredKey, deepFreeze, StoreKeyMap } from 'force/luvioEngine';
|
|
18
18
|
|
|
19
19
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
20
20
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -450,8 +450,7 @@ const ingest$1 = function CdpApplicationDataGraphOutputRepresentationIngest(inpu
|
|
|
450
450
|
}
|
|
451
451
|
return createLink(key);
|
|
452
452
|
};
|
|
453
|
-
function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
454
|
-
const rootKeySet = new StoreKeyMap();
|
|
453
|
+
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
455
454
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
456
455
|
const rootKey = keyBuilderFromType$1(luvio, input);
|
|
457
456
|
rootKeySet.set(rootKey, {
|
|
@@ -459,14 +458,13 @@ function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
|
459
458
|
representationName: RepresentationType$2,
|
|
460
459
|
mergeable: false
|
|
461
460
|
});
|
|
462
|
-
return rootKeySet;
|
|
463
461
|
}
|
|
464
462
|
|
|
465
463
|
function select$3(luvio, params) {
|
|
466
464
|
return select$4();
|
|
467
465
|
}
|
|
468
|
-
function getResponseCacheKeys$3(luvio, resourceParams, response) {
|
|
469
|
-
|
|
466
|
+
function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
467
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response);
|
|
470
468
|
}
|
|
471
469
|
function ingestSuccess$2(luvio, resourceParams, response) {
|
|
472
470
|
const { body } = response;
|
|
@@ -577,7 +575,11 @@ function buildNetworkSnapshot$3(luvio, config, options) {
|
|
|
577
575
|
return luvio.handleSuccessResponse(() => {
|
|
578
576
|
const snapshot = ingestSuccess$2(luvio, resourceParams, response);
|
|
579
577
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
580
|
-
}, () =>
|
|
578
|
+
}, () => {
|
|
579
|
+
const cache = new StoreKeyMap();
|
|
580
|
+
getResponseCacheKeys$3(cache, luvio, resourceParams, response.body);
|
|
581
|
+
return cache;
|
|
582
|
+
});
|
|
581
583
|
}, (response) => {
|
|
582
584
|
deepFreeze(response);
|
|
583
585
|
throw response;
|
|
@@ -599,15 +601,13 @@ function keyBuilder$3(luvio, params) {
|
|
|
599
601
|
name: params.urlParams.adgName
|
|
600
602
|
});
|
|
601
603
|
}
|
|
602
|
-
function getResponseCacheKeys$2(luvio, resourceParams) {
|
|
604
|
+
function getResponseCacheKeys$2(cacheKeyMap, luvio, resourceParams) {
|
|
603
605
|
const key = keyBuilder$3(luvio, resourceParams);
|
|
604
|
-
const cacheKeyMap = new StoreKeyMap();
|
|
605
606
|
cacheKeyMap.set(key, {
|
|
606
607
|
namespace: keyPrefix,
|
|
607
608
|
representationName: RepresentationType$1,
|
|
608
609
|
mergeable: false
|
|
609
610
|
});
|
|
610
|
-
return cacheKeyMap;
|
|
611
611
|
}
|
|
612
612
|
function evictSuccess(luvio, resourceParams) {
|
|
613
613
|
const key = keyBuilder$3(luvio, resourceParams);
|
|
@@ -672,7 +672,11 @@ function buildNetworkSnapshot$2(luvio, config, options) {
|
|
|
672
672
|
return luvio.handleSuccessResponse(() => {
|
|
673
673
|
evictSuccess(luvio, resourceParams);
|
|
674
674
|
return luvio.storeBroadcast();
|
|
675
|
-
}, () =>
|
|
675
|
+
}, () => {
|
|
676
|
+
const cache = new StoreKeyMap();
|
|
677
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams);
|
|
678
|
+
return cache;
|
|
679
|
+
});
|
|
676
680
|
}, (response) => {
|
|
677
681
|
deepFreeze(response);
|
|
678
682
|
throw response;
|
|
@@ -697,8 +701,8 @@ function keyBuilder$2(luvio, params) {
|
|
|
697
701
|
name: params.urlParams.adgName
|
|
698
702
|
});
|
|
699
703
|
}
|
|
700
|
-
function getResponseCacheKeys$1(luvio, resourceParams, response) {
|
|
701
|
-
|
|
704
|
+
function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
705
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response);
|
|
702
706
|
}
|
|
703
707
|
function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
704
708
|
const { body } = response;
|
|
@@ -807,7 +811,11 @@ function buildNetworkSnapshot$1(luvio, config, options) {
|
|
|
807
811
|
const request = createResourceRequest$1(resourceParams);
|
|
808
812
|
return luvio.dispatchResourceRequest(request, options)
|
|
809
813
|
.then((response) => {
|
|
810
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () =>
|
|
814
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () => {
|
|
815
|
+
const cache = new StoreKeyMap();
|
|
816
|
+
getResponseCacheKeys$1(cache, luvio, resourceParams, response.body);
|
|
817
|
+
return cache;
|
|
818
|
+
});
|
|
811
819
|
}, (response) => {
|
|
812
820
|
return luvio.handleErrorResponse(() => onFetchResponseError(luvio, config, resourceParams, response));
|
|
813
821
|
});
|
|
@@ -864,7 +872,11 @@ const notifyChangeFactory = (luvio, options) => {
|
|
|
864
872
|
const { body } = response;
|
|
865
873
|
luvio.storeIngest(key, ingest$1, body);
|
|
866
874
|
return luvio.storeBroadcast();
|
|
867
|
-
}, () =>
|
|
875
|
+
}, () => {
|
|
876
|
+
const cache = new StoreKeyMap();
|
|
877
|
+
getTypeCacheKeys$1(cache, luvio, response.body);
|
|
878
|
+
return cache;
|
|
879
|
+
});
|
|
868
880
|
}, (error) => {
|
|
869
881
|
return luvio.handleErrorResponse(() => {
|
|
870
882
|
const errorSnapshot = luvio.errorSnapshot(error);
|
|
@@ -958,8 +970,7 @@ const ingest = function CdpDataGraphRetryOutputRepresentationIngest(input, path,
|
|
|
958
970
|
}
|
|
959
971
|
return createLink(key);
|
|
960
972
|
};
|
|
961
|
-
function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
962
|
-
const rootKeySet = new StoreKeyMap();
|
|
973
|
+
function getTypeCacheKeys(rootKeySet, luvio, input, fullPathFactory) {
|
|
963
974
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
964
975
|
const rootKey = keyBuilderFromType(luvio, input);
|
|
965
976
|
rootKeySet.set(rootKey, {
|
|
@@ -967,14 +978,13 @@ function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
|
967
978
|
representationName: RepresentationType,
|
|
968
979
|
mergeable: false
|
|
969
980
|
});
|
|
970
|
-
return rootKeySet;
|
|
971
981
|
}
|
|
972
982
|
|
|
973
983
|
function select(luvio, params) {
|
|
974
984
|
return select$1();
|
|
975
985
|
}
|
|
976
|
-
function getResponseCacheKeys(luvio, resourceParams, response) {
|
|
977
|
-
|
|
986
|
+
function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
987
|
+
getTypeCacheKeys(storeKeyMap, luvio, response);
|
|
978
988
|
}
|
|
979
989
|
function ingestSuccess(luvio, resourceParams, response) {
|
|
980
990
|
const { body } = response;
|
|
@@ -1051,7 +1061,11 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
1051
1061
|
return luvio.handleSuccessResponse(() => {
|
|
1052
1062
|
const snapshot = ingestSuccess(luvio, resourceParams, response);
|
|
1053
1063
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
1054
|
-
}, () =>
|
|
1064
|
+
}, () => {
|
|
1065
|
+
const cache = new StoreKeyMap();
|
|
1066
|
+
getResponseCacheKeys(cache, luvio, resourceParams, response.body);
|
|
1067
|
+
return cache;
|
|
1068
|
+
});
|
|
1055
1069
|
}, (response) => {
|
|
1056
1070
|
deepFreeze(response);
|
|
1057
1071
|
throw response;
|
|
@@ -1105,4 +1119,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1105
1119
|
});
|
|
1106
1120
|
|
|
1107
1121
|
export { createAdg, deleteAdg, getAdg, getAdgNotifyChange, getAdg_imperative, retryDataGraph };
|
|
1108
|
-
// version: 1.
|
|
1122
|
+
// version: 1.170.1-5fb216cf1
|