@salesforce/lds-adapters-industries-actionplan 1.170.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/industries-actionplan.js +25 -19
- package/dist/es/es2018/types/src/generated/resources/getConnectActionPlan.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getConnectActionPlanActionPlanItemsByActionPlanId.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getConnectActionPlanStatusInfoByActionPlanId.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemCollectionRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemDetailedRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemListRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemTaskRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanItemsWrapperRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanListRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlanStatusInfoOutputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ActionPlansWrapperOutputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/ComputedFieldsWrapperRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/FieldRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/TaskProgressRepresentation.d.ts +2 -2
- package/package.json +1 -1
- package/sfdc/index.js +26 -20
|
@@ -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$1, create: ObjectCreate$1 } = Object;
|
|
@@ -182,8 +182,7 @@ const ingest$2 = function ActionPlansWrapperOutputRepresentationIngest(input, pa
|
|
|
182
182
|
}
|
|
183
183
|
return createLink(key);
|
|
184
184
|
};
|
|
185
|
-
function getTypeCacheKeys$2(luvio, input, fullPathFactory) {
|
|
186
|
-
const rootKeySet = new StoreKeyMap();
|
|
185
|
+
function getTypeCacheKeys$2(rootKeySet, luvio, input, fullPathFactory) {
|
|
187
186
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
188
187
|
const rootKey = fullPathFactory();
|
|
189
188
|
rootKeySet.set(rootKey, {
|
|
@@ -191,7 +190,6 @@ function getTypeCacheKeys$2(luvio, input, fullPathFactory) {
|
|
|
191
190
|
representationName: RepresentationType$2,
|
|
192
191
|
mergeable: false
|
|
193
192
|
});
|
|
194
|
-
return rootKeySet;
|
|
195
193
|
}
|
|
196
194
|
|
|
197
195
|
function select$4(luvio, params) {
|
|
@@ -200,8 +198,8 @@ function select$4(luvio, params) {
|
|
|
200
198
|
function keyBuilder$5(luvio, params) {
|
|
201
199
|
return keyPrefix + '::ActionPlansWrapperOutputRepresentation:(' + 'actionPlanType:' + params.queryParams.actionPlanType + ',' + 'limit:' + params.queryParams.limit + ',' + 'order:' + params.queryParams.order + ',' + 'orderingParam:' + params.queryParams.orderingParam + ',' + 'targetId:' + params.queryParams.targetId + ')';
|
|
202
200
|
}
|
|
203
|
-
function getResponseCacheKeys$2(luvio, resourceParams, response) {
|
|
204
|
-
|
|
201
|
+
function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
202
|
+
getTypeCacheKeys$2(storeKeyMap, luvio, response, () => keyBuilder$5(luvio, resourceParams));
|
|
205
203
|
}
|
|
206
204
|
function ingestSuccess$2(luvio, resourceParams, response, snapshotRefresh) {
|
|
207
205
|
const { body } = response;
|
|
@@ -325,7 +323,11 @@ function buildNetworkSnapshot$2(luvio, config, options) {
|
|
|
325
323
|
const request = createResourceRequest$2(resourceParams);
|
|
326
324
|
return luvio.dispatchResourceRequest(request, options)
|
|
327
325
|
.then((response) => {
|
|
328
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () =>
|
|
326
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () => {
|
|
327
|
+
const cache = new StoreKeyMap();
|
|
328
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams, response.body);
|
|
329
|
+
return cache;
|
|
330
|
+
});
|
|
329
331
|
}, (response) => {
|
|
330
332
|
return luvio.handleErrorResponse(() => onFetchResponseError$2(luvio, config, resourceParams, response));
|
|
331
333
|
});
|
|
@@ -616,8 +618,7 @@ const ingest$1 = function ActionPlanItemsWrapperRepresentationIngest(input, path
|
|
|
616
618
|
}
|
|
617
619
|
return createLink(key);
|
|
618
620
|
};
|
|
619
|
-
function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
620
|
-
const rootKeySet = new StoreKeyMap();
|
|
621
|
+
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
621
622
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
622
623
|
const rootKey = fullPathFactory();
|
|
623
624
|
rootKeySet.set(rootKey, {
|
|
@@ -625,7 +626,6 @@ function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
|
625
626
|
representationName: RepresentationType$1,
|
|
626
627
|
mergeable: false
|
|
627
628
|
});
|
|
628
|
-
return rootKeySet;
|
|
629
629
|
}
|
|
630
630
|
|
|
631
631
|
function select$2(luvio, params) {
|
|
@@ -634,8 +634,8 @@ function select$2(luvio, params) {
|
|
|
634
634
|
function keyBuilder$3(luvio, params) {
|
|
635
635
|
return keyPrefix + '::ActionPlanItemsWrapperRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'actionPlanId:' + params.urlParams.actionPlanId + ')';
|
|
636
636
|
}
|
|
637
|
-
function getResponseCacheKeys$1(luvio, resourceParams, response) {
|
|
638
|
-
|
|
637
|
+
function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
638
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response, () => keyBuilder$3(luvio, resourceParams));
|
|
639
639
|
}
|
|
640
640
|
function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
641
641
|
const { body } = response;
|
|
@@ -750,7 +750,11 @@ function buildNetworkSnapshot$1(luvio, config, options) {
|
|
|
750
750
|
const request = createResourceRequest$1(resourceParams);
|
|
751
751
|
return luvio.dispatchResourceRequest(request, options)
|
|
752
752
|
.then((response) => {
|
|
753
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () =>
|
|
753
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () => {
|
|
754
|
+
const cache = new StoreKeyMap();
|
|
755
|
+
getResponseCacheKeys$1(cache, luvio, resourceParams, response.body);
|
|
756
|
+
return cache;
|
|
757
|
+
});
|
|
754
758
|
}, (response) => {
|
|
755
759
|
return luvio.handleErrorResponse(() => onFetchResponseError$1(luvio, config, resourceParams, response));
|
|
756
760
|
});
|
|
@@ -918,8 +922,7 @@ const ingest = function ActionPlanStatusInfoOutputRepresentationIngest(input, pa
|
|
|
918
922
|
}
|
|
919
923
|
return createLink(key);
|
|
920
924
|
};
|
|
921
|
-
function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
922
|
-
const rootKeySet = new StoreKeyMap();
|
|
925
|
+
function getTypeCacheKeys(rootKeySet, luvio, input, fullPathFactory) {
|
|
923
926
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
924
927
|
const rootKey = fullPathFactory();
|
|
925
928
|
rootKeySet.set(rootKey, {
|
|
@@ -927,7 +930,6 @@ function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
|
927
930
|
representationName: RepresentationType,
|
|
928
931
|
mergeable: false
|
|
929
932
|
});
|
|
930
|
-
return rootKeySet;
|
|
931
933
|
}
|
|
932
934
|
|
|
933
935
|
function select(luvio, params) {
|
|
@@ -936,8 +938,8 @@ function select(luvio, params) {
|
|
|
936
938
|
function keyBuilder$1(luvio, params) {
|
|
937
939
|
return keyPrefix + '::ActionPlanStatusInfoOutputRepresentation:(' + 'actionPlanId:' + params.urlParams.actionPlanId + ')';
|
|
938
940
|
}
|
|
939
|
-
function getResponseCacheKeys(luvio, resourceParams, response) {
|
|
940
|
-
|
|
941
|
+
function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
942
|
+
getTypeCacheKeys(storeKeyMap, luvio, response, () => keyBuilder$1(luvio, resourceParams));
|
|
941
943
|
}
|
|
942
944
|
function ingestSuccess(luvio, resourceParams, response, snapshotRefresh) {
|
|
943
945
|
const { body } = response;
|
|
@@ -1045,7 +1047,11 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
1045
1047
|
const request = createResourceRequest(resourceParams);
|
|
1046
1048
|
return luvio.dispatchResourceRequest(request, options)
|
|
1047
1049
|
.then((response) => {
|
|
1048
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () =>
|
|
1050
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () => {
|
|
1051
|
+
const cache = new StoreKeyMap();
|
|
1052
|
+
getResponseCacheKeys(cache, luvio, resourceParams, response.body);
|
|
1053
|
+
return cache;
|
|
1054
|
+
});
|
|
1049
1055
|
}, (response) => {
|
|
1050
1056
|
return luvio.handleErrorResponse(() => onFetchResponseError(luvio, config, resourceParams, response));
|
|
1051
1057
|
});
|
|
@@ -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 { ActionPlansWrapperOutputRepresentation as types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation } from '../types/ActionPlansWrapperOutputRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
queryParams: {
|
|
@@ -12,7 +12,7 @@ export interface ResourceRequestConfig {
|
|
|
12
12
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
13
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
14
14
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation):
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation): void;
|
|
16
16
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation, any>;
|
|
17
17
|
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlansWrapperOutputRepresentation_ActionPlansWrapperOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
18
18
|
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, 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 { ActionPlanItemsWrapperRepresentation as types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation } from '../types/ActionPlanItemsWrapperRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
urlParams: {
|
|
@@ -11,7 +11,7 @@ export interface ResourceRequestConfig {
|
|
|
11
11
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
12
12
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
13
13
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation):
|
|
14
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation): void;
|
|
15
15
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation, any>;
|
|
16
16
|
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlanItemsWrapperRepresentation_ActionPlanItemsWrapperRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
17
17
|
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, 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 { ActionPlanStatusInfoOutputRepresentation as types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation } from '../types/ActionPlanStatusInfoOutputRepresentation';
|
|
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_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation):
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation): void;
|
|
12
12
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation, 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_ActionPlanStatusInfoOutputRepresentation_ActionPlanStatusInfoOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
14
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
package/dist/es/es2018/types/src/generated/types/ActionPlanItemCollectionRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionPlanItemDetailedRepresentation as ActionPlanItemDetailedRepresentation_ActionPlanItemDetailedRepresentation } from './ActionPlanItemDetailedRepresentation';
|
|
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,
|
|
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
3
|
export declare const VERSION = "d1ceccf690b553566994e6a7881d37b7";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
@@ -7,7 +7,7 @@ export declare function normalize(input: ActionPlanItemCollectionRepresentation,
|
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: ActionPlanItemCollectionRepresentationNormalized, incoming: ActionPlanItemCollectionRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanItemCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
12
|
* Record Representation of Collection of ActionPlanItems
|
|
13
13
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionPlanItemTaskRepresentation as ActionPlanItemTaskRepresentation_ActionPlanItemTaskRepresentation } from './ActionPlanItemTaskRepresentation';
|
|
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,
|
|
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
3
|
export declare const VERSION = "83edfb6bebbcebd5f3f3c4f1d486a7b4";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
@@ -7,7 +7,7 @@ export declare function normalize(input: ActionPlanItemDetailedRepresentation, e
|
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: ActionPlanItemDetailedRepresentationNormalized, incoming: ActionPlanItemDetailedRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemDetailedRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanItemDetailedRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
12
|
* Record Representation of ActionPlanItem
|
|
13
13
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionPlanItemRepresentation as ActionPlanItemRepresentation_ActionPlanItemRepresentation } from './ActionPlanItemRepresentation';
|
|
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,
|
|
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
3
|
export declare const VERSION = "8ab927b9fab7062d2921dfde74fbee76";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
@@ -7,7 +7,7 @@ export declare function normalize(input: ActionPlanItemListRepresentation, exist
|
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: ActionPlanItemListRepresentationNormalized, incoming: ActionPlanItemListRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanItemListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
12
|
* Representation for list of mandatory Action Plan Items that are pending
|
|
13
13
|
*
|
|
@@ -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 = "8aeaa3fead4123554df295b53be96919";
|
|
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: ActionPlanItemRepresentation, existing:
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: ActionPlanItemRepresentationNormalized, incoming: ActionPlanItemRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanItemRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Representation of Action Plan Item
|
|
12
12
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComputedFieldsWrapperRepresentation as ComputedFieldsWrapperRepresentation_ComputedFieldsWrapperRepresentation } from './ComputedFieldsWrapperRepresentation';
|
|
2
2
|
import { FieldRepresentation as FieldRepresentation_FieldRepresentation } from './FieldRepresentation';
|
|
3
3
|
import { TaskProgressRepresentation as TaskProgressRepresentation_TaskProgressRepresentation } from './TaskProgressRepresentation';
|
|
4
|
-
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,
|
|
4
|
+
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';
|
|
5
5
|
export declare const VERSION = "9278fc2539f1657efd47c4c4c8b2b305";
|
|
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: ActionPlanItemTaskRepresentation, exist
|
|
|
9
9
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
10
10
|
export declare function equals(existing: ActionPlanItemTaskRepresentationNormalized, incoming: ActionPlanItemTaskRepresentationNormalized): boolean;
|
|
11
11
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
12
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemTaskRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
12
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanItemTaskRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
13
13
|
/**
|
|
14
14
|
* Record Representation of ActionPlanItemTask
|
|
15
15
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionPlanItemCollectionRepresentation as ActionPlanItemCollectionRepresentation_ActionPlanItemCollectionRepresentation } from './ActionPlanItemCollectionRepresentation';
|
|
2
|
-
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,
|
|
2
|
+
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';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
4
|
export declare const VERSION = "01f1998519e78c50e1b67804b6fcb652";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
@@ -8,7 +8,7 @@ export declare function normalize(input: ActionPlanItemsWrapperRepresentation, e
|
|
|
8
8
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
9
|
export declare function equals(existing: ActionPlanItemsWrapperRepresentationNormalized, incoming: ActionPlanItemsWrapperRepresentationNormalized): boolean;
|
|
10
10
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanItemsWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanItemsWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
12
|
/**
|
|
13
13
|
* Record Representation of ActionPlanItemsWrapper
|
|
14
14
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionPlanRepresentation as ActionPlanRepresentation_ActionPlanRepresentation } from './ActionPlanRepresentation';
|
|
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,
|
|
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
3
|
export declare const VERSION = "caa14bb8a47a6551000c3a888ed201ac";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
@@ -7,7 +7,7 @@ export declare function normalize(input: ActionPlanListRepresentation, existing:
|
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: ActionPlanListRepresentationNormalized, incoming: ActionPlanListRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
12
|
* Representation of Action Plan List
|
|
13
13
|
*
|
|
@@ -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 = "c3b9765da8aaf3ca71fd8168149aa2f6";
|
|
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: ActionPlanRepresentation, existing: Act
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: ActionPlanRepresentationNormalized, incoming: ActionPlanRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Representation of Action Plan
|
|
12
12
|
*
|
package/dist/es/es2018/types/src/generated/types/ActionPlanStatusInfoOutputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionPlanItemListRepresentation as ActionPlanItemListRepresentation_ActionPlanItemListRepresentation } from './ActionPlanItemListRepresentation';
|
|
2
|
-
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,
|
|
2
|
+
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';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
4
|
export declare const VERSION = "8d866f38a882381bbdafb2496aa6f6b8";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
@@ -8,7 +8,7 @@ export declare function normalize(input: ActionPlanStatusInfoOutputRepresentatio
|
|
|
8
8
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
9
|
export declare function equals(existing: ActionPlanStatusInfoOutputRepresentationNormalized, incoming: ActionPlanStatusInfoOutputRepresentationNormalized): boolean;
|
|
10
10
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlanStatusInfoOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlanStatusInfoOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
12
|
/**
|
|
13
13
|
* Representation for Action Plan Status which tells whether all mandatory tasks are completed
|
|
14
14
|
*
|
package/dist/es/es2018/types/src/generated/types/ActionPlansWrapperOutputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionPlanListRepresentation as ActionPlanListRepresentation_ActionPlanListRepresentation } from './ActionPlanListRepresentation';
|
|
2
|
-
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,
|
|
2
|
+
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';
|
|
3
3
|
export declare const TTL = 1000;
|
|
4
4
|
export declare const VERSION = "0ec040ec594b42ffdf6182e2b338e7ff";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
@@ -8,7 +8,7 @@ export declare function normalize(input: ActionPlansWrapperOutputRepresentation,
|
|
|
8
8
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
9
|
export declare function equals(existing: ActionPlansWrapperOutputRepresentationNormalized, incoming: ActionPlansWrapperOutputRepresentationNormalized): boolean;
|
|
10
10
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ActionPlansWrapperOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ActionPlansWrapperOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
12
|
/**
|
|
13
13
|
* Representation of Action Plans List Api Output
|
|
14
14
|
*
|
|
@@ -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 = "42390976209f8b1ddbb43caf8fcd4f6d";
|
|
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: ComputedFieldsWrapperRepresentation, ex
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: ComputedFieldsWrapperRepresentationNormalized, incoming: ComputedFieldsWrapperRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ComputedFieldsWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: ComputedFieldsWrapperRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Record Representation of ComputedFieldsWrapper
|
|
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 = "aa223c6e600c4d9572e829708e04ae3d";
|
|
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: FieldRepresentation, existing: FieldRep
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: FieldRepresentationNormalized, incoming: FieldRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: FieldRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: FieldRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Output representation of a single field
|
|
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 = "368d9dc1ae78231e0bb4056e268aaa3a";
|
|
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: TaskProgressRepresentation, existing: T
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: TaskProgressRepresentationNormalized, incoming: TaskProgressRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: TaskProgressRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TaskProgressRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Output represenation of a task progress
|
|
12
12
|
*
|
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$1, create: ObjectCreate$1 } = Object;
|
|
@@ -315,8 +315,7 @@ const ingest$2 = function ActionPlanItemsWrapperRepresentationIngest(input, path
|
|
|
315
315
|
}
|
|
316
316
|
return createLink(key);
|
|
317
317
|
};
|
|
318
|
-
function getTypeCacheKeys$2(luvio, input, fullPathFactory) {
|
|
319
|
-
const rootKeySet = new StoreKeyMap();
|
|
318
|
+
function getTypeCacheKeys$2(rootKeySet, luvio, input, fullPathFactory) {
|
|
320
319
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
321
320
|
const rootKey = fullPathFactory();
|
|
322
321
|
rootKeySet.set(rootKey, {
|
|
@@ -324,7 +323,6 @@ function getTypeCacheKeys$2(luvio, input, fullPathFactory) {
|
|
|
324
323
|
representationName: RepresentationType$2,
|
|
325
324
|
mergeable: false
|
|
326
325
|
});
|
|
327
|
-
return rootKeySet;
|
|
328
326
|
}
|
|
329
327
|
|
|
330
328
|
function select$4(luvio, params) {
|
|
@@ -333,8 +331,8 @@ function select$4(luvio, params) {
|
|
|
333
331
|
function keyBuilder$5(luvio, params) {
|
|
334
332
|
return keyPrefix + '::ActionPlanItemsWrapperRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'actionPlanId:' + params.urlParams.actionPlanId + ')';
|
|
335
333
|
}
|
|
336
|
-
function getResponseCacheKeys$2(luvio, resourceParams, response) {
|
|
337
|
-
|
|
334
|
+
function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
335
|
+
getTypeCacheKeys$2(storeKeyMap, luvio, response, () => keyBuilder$5(luvio, resourceParams));
|
|
338
336
|
}
|
|
339
337
|
function ingestSuccess$2(luvio, resourceParams, response, snapshotRefresh) {
|
|
340
338
|
const { body } = response;
|
|
@@ -449,7 +447,11 @@ function buildNetworkSnapshot$2(luvio, config, options) {
|
|
|
449
447
|
const request = createResourceRequest$2(resourceParams);
|
|
450
448
|
return luvio.dispatchResourceRequest(request, options)
|
|
451
449
|
.then((response) => {
|
|
452
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () =>
|
|
450
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () => {
|
|
451
|
+
const cache = new StoreKeyMap();
|
|
452
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams, response.body);
|
|
453
|
+
return cache;
|
|
454
|
+
});
|
|
453
455
|
}, (response) => {
|
|
454
456
|
return luvio.handleErrorResponse(() => onFetchResponseError$2(luvio, config, resourceParams, response));
|
|
455
457
|
});
|
|
@@ -617,8 +619,7 @@ const ingest$1 = function ActionPlanStatusInfoOutputRepresentationIngest(input,
|
|
|
617
619
|
}
|
|
618
620
|
return createLink(key);
|
|
619
621
|
};
|
|
620
|
-
function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
621
|
-
const rootKeySet = new StoreKeyMap();
|
|
622
|
+
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
622
623
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
623
624
|
const rootKey = fullPathFactory();
|
|
624
625
|
rootKeySet.set(rootKey, {
|
|
@@ -626,7 +627,6 @@ function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
|
626
627
|
representationName: RepresentationType$1,
|
|
627
628
|
mergeable: false
|
|
628
629
|
});
|
|
629
|
-
return rootKeySet;
|
|
630
630
|
}
|
|
631
631
|
|
|
632
632
|
function select$2(luvio, params) {
|
|
@@ -635,8 +635,8 @@ function select$2(luvio, params) {
|
|
|
635
635
|
function keyBuilder$3(luvio, params) {
|
|
636
636
|
return keyPrefix + '::ActionPlanStatusInfoOutputRepresentation:(' + 'actionPlanId:' + params.urlParams.actionPlanId + ')';
|
|
637
637
|
}
|
|
638
|
-
function getResponseCacheKeys$1(luvio, resourceParams, response) {
|
|
639
|
-
|
|
638
|
+
function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
639
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response, () => keyBuilder$3(luvio, resourceParams));
|
|
640
640
|
}
|
|
641
641
|
function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
642
642
|
const { body } = response;
|
|
@@ -744,7 +744,11 @@ function buildNetworkSnapshot$1(luvio, config, options) {
|
|
|
744
744
|
const request = createResourceRequest$1(resourceParams);
|
|
745
745
|
return luvio.dispatchResourceRequest(request, options)
|
|
746
746
|
.then((response) => {
|
|
747
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () =>
|
|
747
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () => {
|
|
748
|
+
const cache = new StoreKeyMap();
|
|
749
|
+
getResponseCacheKeys$1(cache, luvio, resourceParams, response.body);
|
|
750
|
+
return cache;
|
|
751
|
+
});
|
|
748
752
|
}, (response) => {
|
|
749
753
|
return luvio.handleErrorResponse(() => onFetchResponseError$1(luvio, config, resourceParams, response));
|
|
750
754
|
});
|
|
@@ -912,8 +916,7 @@ const ingest = function ActionPlansWrapperOutputRepresentationIngest(input, path
|
|
|
912
916
|
}
|
|
913
917
|
return createLink(key);
|
|
914
918
|
};
|
|
915
|
-
function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
916
|
-
const rootKeySet = new StoreKeyMap();
|
|
919
|
+
function getTypeCacheKeys(rootKeySet, luvio, input, fullPathFactory) {
|
|
917
920
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
918
921
|
const rootKey = fullPathFactory();
|
|
919
922
|
rootKeySet.set(rootKey, {
|
|
@@ -921,7 +924,6 @@ function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
|
921
924
|
representationName: RepresentationType,
|
|
922
925
|
mergeable: false
|
|
923
926
|
});
|
|
924
|
-
return rootKeySet;
|
|
925
927
|
}
|
|
926
928
|
|
|
927
929
|
function select(luvio, params) {
|
|
@@ -930,8 +932,8 @@ function select(luvio, params) {
|
|
|
930
932
|
function keyBuilder$1(luvio, params) {
|
|
931
933
|
return keyPrefix + '::ActionPlansWrapperOutputRepresentation:(' + 'actionPlanType:' + params.queryParams.actionPlanType + ',' + 'limit:' + params.queryParams.limit + ',' + 'order:' + params.queryParams.order + ',' + 'orderingParam:' + params.queryParams.orderingParam + ',' + 'targetId:' + params.queryParams.targetId + ')';
|
|
932
934
|
}
|
|
933
|
-
function getResponseCacheKeys(luvio, resourceParams, response) {
|
|
934
|
-
|
|
935
|
+
function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
936
|
+
getTypeCacheKeys(storeKeyMap, luvio, response, () => keyBuilder$1(luvio, resourceParams));
|
|
935
937
|
}
|
|
936
938
|
function ingestSuccess(luvio, resourceParams, response, snapshotRefresh) {
|
|
937
939
|
const { body } = response;
|
|
@@ -1055,7 +1057,11 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
1055
1057
|
const request = createResourceRequest(resourceParams);
|
|
1056
1058
|
return luvio.dispatchResourceRequest(request, options)
|
|
1057
1059
|
.then((response) => {
|
|
1058
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () =>
|
|
1060
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () => {
|
|
1061
|
+
const cache = new StoreKeyMap();
|
|
1062
|
+
getResponseCacheKeys(cache, luvio, resourceParams, response.body);
|
|
1063
|
+
return cache;
|
|
1064
|
+
});
|
|
1059
1065
|
}, (response) => {
|
|
1060
1066
|
return luvio.handleErrorResponse(() => onFetchResponseError(luvio, config, resourceParams, response));
|
|
1061
1067
|
});
|
|
@@ -1138,4 +1144,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1138
1144
|
});
|
|
1139
1145
|
|
|
1140
1146
|
export { getActionPlanItems, getActionPlanItems_imperative, getActionPlanStatusInfo, getActionPlanStatusInfo_imperative, getActionPlans, getActionPlans_imperative };
|
|
1141
|
-
// version: 1.170.
|
|
1147
|
+
// version: 1.170.1-5fb216cf1
|