@salesforce/lds-adapters-industries-interesttagging 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-interesttagging.js +40 -28
- package/dist/es/es2018/types/src/generated/resources/deleteConnectInterestTagsTags.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/deleteConnectInterestTagsTagsByTagId.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsAssignments.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsAssignmentsEntityByRecordId.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsAssignmentsTagByTagId.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsCategories.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsTags.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/getConnectInterestTagsTagsByTagId.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/postConnectInterestTagsAssignments.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/postConnectInterestTagsAssignmentsTagByTagId.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagAssignmentInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagAssignmentOutputRepresentation.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/types/InterestTagCreateCollectionOutputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagCreateInputListRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagCreateInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagCreateResult.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagListRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagUpdateInputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/InterestTagUpdateOutputRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/RecordsForTag.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/TagCategoryListRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/TagCategoryRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/TagCategoryWithParentRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/TagRecordAssignment.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/TagRecordAssignmentCollectionRepresentation.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/TagsForRecord.d.ts +2 -2
- package/package.json +1 -1
- package/sfdc/index.js +41 -29
|
@@ -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;
|
|
@@ -162,8 +162,7 @@ const ingest$3 = function InterestTagAssignmentOutputRepresentationIngest(input,
|
|
|
162
162
|
}
|
|
163
163
|
return createLink(key);
|
|
164
164
|
};
|
|
165
|
-
function getTypeCacheKeys$3(luvio, input, fullPathFactory) {
|
|
166
|
-
const rootKeySet = new StoreKeyMap();
|
|
165
|
+
function getTypeCacheKeys$3(rootKeySet, luvio, input, fullPathFactory) {
|
|
167
166
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
168
167
|
const rootKey = keyBuilderFromType(luvio, input);
|
|
169
168
|
rootKeySet.set(rootKey, {
|
|
@@ -171,14 +170,13 @@ function getTypeCacheKeys$3(luvio, input, fullPathFactory) {
|
|
|
171
170
|
representationName: RepresentationType$3,
|
|
172
171
|
mergeable: false
|
|
173
172
|
});
|
|
174
|
-
return rootKeySet;
|
|
175
173
|
}
|
|
176
174
|
|
|
177
175
|
function select$9(luvio, params) {
|
|
178
176
|
return select$a();
|
|
179
177
|
}
|
|
180
|
-
function getResponseCacheKeys$4(luvio, resourceParams, response) {
|
|
181
|
-
|
|
178
|
+
function getResponseCacheKeys$4(storeKeyMap, luvio, resourceParams, response) {
|
|
179
|
+
getTypeCacheKeys$3(storeKeyMap, luvio, response);
|
|
182
180
|
}
|
|
183
181
|
function ingestSuccess$4(luvio, resourceParams, response) {
|
|
184
182
|
const { body } = response;
|
|
@@ -295,7 +293,11 @@ function buildNetworkSnapshot$4(luvio, config, options) {
|
|
|
295
293
|
return luvio.handleSuccessResponse(() => {
|
|
296
294
|
const snapshot = ingestSuccess$4(luvio, resourceParams, response);
|
|
297
295
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
298
|
-
}, () =>
|
|
296
|
+
}, () => {
|
|
297
|
+
const cache = new StoreKeyMap();
|
|
298
|
+
getResponseCacheKeys$4(cache, luvio, resourceParams, response.body);
|
|
299
|
+
return cache;
|
|
300
|
+
});
|
|
299
301
|
}, (response) => {
|
|
300
302
|
deepFreeze(response);
|
|
301
303
|
throw response;
|
|
@@ -448,8 +450,7 @@ const ingest$2 = function InterestTagListRepresentationIngest(input, path, luvio
|
|
|
448
450
|
}
|
|
449
451
|
return createLink(key);
|
|
450
452
|
};
|
|
451
|
-
function getTypeCacheKeys$2(luvio, input, fullPathFactory) {
|
|
452
|
-
const rootKeySet = new StoreKeyMap();
|
|
453
|
+
function getTypeCacheKeys$2(rootKeySet, luvio, input, fullPathFactory) {
|
|
453
454
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
454
455
|
const rootKey = fullPathFactory();
|
|
455
456
|
rootKeySet.set(rootKey, {
|
|
@@ -457,7 +458,6 @@ function getTypeCacheKeys$2(luvio, input, fullPathFactory) {
|
|
|
457
458
|
representationName: RepresentationType$2,
|
|
458
459
|
mergeable: false
|
|
459
460
|
});
|
|
460
|
-
return rootKeySet;
|
|
461
461
|
}
|
|
462
462
|
|
|
463
463
|
function select$7(luvio, params) {
|
|
@@ -466,8 +466,8 @@ function select$7(luvio, params) {
|
|
|
466
466
|
function keyBuilder$7(luvio, params) {
|
|
467
467
|
return keyPrefix + '::InterestTagListRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'orderBy:' + params.queryParams.orderBy + ',' + 'sort:' + params.queryParams.sort + ',' + 'recordId:' + params.urlParams.recordId + ')';
|
|
468
468
|
}
|
|
469
|
-
function getResponseCacheKeys$3(luvio, resourceParams, response) {
|
|
470
|
-
|
|
469
|
+
function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
470
|
+
getTypeCacheKeys$2(storeKeyMap, luvio, response, () => keyBuilder$7(luvio, resourceParams));
|
|
471
471
|
}
|
|
472
472
|
function ingestSuccess$3(luvio, resourceParams, response, snapshotRefresh) {
|
|
473
473
|
const { body } = response;
|
|
@@ -594,7 +594,11 @@ function buildNetworkSnapshot$3(luvio, config, options) {
|
|
|
594
594
|
const request = createResourceRequest$3(resourceParams);
|
|
595
595
|
return luvio.dispatchResourceRequest(request, options)
|
|
596
596
|
.then((response) => {
|
|
597
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$3(luvio, config, resourceParams, response), () =>
|
|
597
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$3(luvio, config, resourceParams, response), () => {
|
|
598
|
+
const cache = new StoreKeyMap();
|
|
599
|
+
getResponseCacheKeys$3(cache, luvio, resourceParams, response.body);
|
|
600
|
+
return cache;
|
|
601
|
+
});
|
|
598
602
|
}, (response) => {
|
|
599
603
|
return luvio.handleErrorResponse(() => onFetchResponseError$3(luvio, config, resourceParams, response));
|
|
600
604
|
});
|
|
@@ -804,8 +808,7 @@ const ingest$1 = function TagRecordAssignmentCollectionRepresentationIngest(inpu
|
|
|
804
808
|
}
|
|
805
809
|
return createLink(key);
|
|
806
810
|
};
|
|
807
|
-
function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
808
|
-
const rootKeySet = new StoreKeyMap();
|
|
811
|
+
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
809
812
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
810
813
|
const rootKey = fullPathFactory();
|
|
811
814
|
rootKeySet.set(rootKey, {
|
|
@@ -813,7 +816,6 @@ function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
|
813
816
|
representationName: RepresentationType$1,
|
|
814
817
|
mergeable: false
|
|
815
818
|
});
|
|
816
|
-
return rootKeySet;
|
|
817
819
|
}
|
|
818
820
|
|
|
819
821
|
function select$4(luvio, params) {
|
|
@@ -822,8 +824,8 @@ function select$4(luvio, params) {
|
|
|
822
824
|
function keyBuilder$5(luvio, params) {
|
|
823
825
|
return keyPrefix + '::TagRecordAssignmentCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'orderBy:' + params.queryParams.orderBy + ',' + 'sort:' + params.queryParams.sort + ',' + 'tagId:' + params.urlParams.tagId + ')';
|
|
824
826
|
}
|
|
825
|
-
function getResponseCacheKeys$2(luvio, resourceParams, response) {
|
|
826
|
-
|
|
827
|
+
function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
828
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response, () => keyBuilder$5(luvio, resourceParams));
|
|
827
829
|
}
|
|
828
830
|
function ingestSuccess$2(luvio, resourceParams, response, snapshotRefresh) {
|
|
829
831
|
const { body } = response;
|
|
@@ -944,7 +946,11 @@ function buildNetworkSnapshot$2(luvio, config, options) {
|
|
|
944
946
|
const request = createResourceRequest$2(resourceParams);
|
|
945
947
|
return luvio.dispatchResourceRequest(request, options)
|
|
946
948
|
.then((response) => {
|
|
947
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () =>
|
|
949
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () => {
|
|
950
|
+
const cache = new StoreKeyMap();
|
|
951
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams, response.body);
|
|
952
|
+
return cache;
|
|
953
|
+
});
|
|
948
954
|
}, (response) => {
|
|
949
955
|
return luvio.handleErrorResponse(() => onFetchResponseError$2(luvio, config, resourceParams, response));
|
|
950
956
|
});
|
|
@@ -1182,8 +1188,7 @@ const ingest = function TagCategoryListRepresentationIngest(input, path, luvio,
|
|
|
1182
1188
|
}
|
|
1183
1189
|
return createLink(key);
|
|
1184
1190
|
};
|
|
1185
|
-
function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
1186
|
-
const rootKeySet = new StoreKeyMap();
|
|
1191
|
+
function getTypeCacheKeys(rootKeySet, luvio, input, fullPathFactory) {
|
|
1187
1192
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
1188
1193
|
const rootKey = fullPathFactory();
|
|
1189
1194
|
rootKeySet.set(rootKey, {
|
|
@@ -1191,7 +1196,6 @@ function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
|
1191
1196
|
representationName: RepresentationType,
|
|
1192
1197
|
mergeable: false
|
|
1193
1198
|
});
|
|
1194
|
-
return rootKeySet;
|
|
1195
1199
|
}
|
|
1196
1200
|
|
|
1197
1201
|
function select$1(luvio, params) {
|
|
@@ -1200,8 +1204,8 @@ function select$1(luvio, params) {
|
|
|
1200
1204
|
function keyBuilder$3(luvio, params) {
|
|
1201
1205
|
return keyPrefix + '::TagCategoryListRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'orderBy:' + params.queryParams.orderBy + ',' + 'sort:' + params.queryParams.sort + ',' + 'tagId:' + params.queryParams.tagId + ')';
|
|
1202
1206
|
}
|
|
1203
|
-
function getResponseCacheKeys$1(luvio, resourceParams, response) {
|
|
1204
|
-
|
|
1207
|
+
function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
1208
|
+
getTypeCacheKeys(storeKeyMap, luvio, response, () => keyBuilder$3(luvio, resourceParams));
|
|
1205
1209
|
}
|
|
1206
1210
|
function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
1207
1211
|
const { body } = response;
|
|
@@ -1319,7 +1323,11 @@ function buildNetworkSnapshot$1(luvio, config, options) {
|
|
|
1319
1323
|
const request = createResourceRequest$1(resourceParams);
|
|
1320
1324
|
return luvio.dispatchResourceRequest(request, options)
|
|
1321
1325
|
.then((response) => {
|
|
1322
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () =>
|
|
1326
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () => {
|
|
1327
|
+
const cache = new StoreKeyMap();
|
|
1328
|
+
getResponseCacheKeys$1(cache, luvio, resourceParams, response.body);
|
|
1329
|
+
return cache;
|
|
1330
|
+
});
|
|
1323
1331
|
}, (response) => {
|
|
1324
1332
|
return luvio.handleErrorResponse(() => onFetchResponseError$1(luvio, config, resourceParams, response));
|
|
1325
1333
|
});
|
|
@@ -1370,8 +1378,8 @@ function select(luvio, params) {
|
|
|
1370
1378
|
function keyBuilder$1(luvio, params) {
|
|
1371
1379
|
return keyPrefix + '::InterestTagListRepresentation:(' + 'categoryId:' + params.queryParams.categoryId + ',' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'orderBy:' + params.queryParams.orderBy + ',' + 'sort:' + params.queryParams.sort + ')';
|
|
1372
1380
|
}
|
|
1373
|
-
function getResponseCacheKeys(luvio, resourceParams, response) {
|
|
1374
|
-
|
|
1381
|
+
function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
1382
|
+
getTypeCacheKeys$2(storeKeyMap, luvio, response, () => keyBuilder$1(luvio, resourceParams));
|
|
1375
1383
|
}
|
|
1376
1384
|
function ingestSuccess(luvio, resourceParams, response, snapshotRefresh) {
|
|
1377
1385
|
const { body } = response;
|
|
@@ -1495,7 +1503,11 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
1495
1503
|
const request = createResourceRequest(resourceParams);
|
|
1496
1504
|
return luvio.dispatchResourceRequest(request, options)
|
|
1497
1505
|
.then((response) => {
|
|
1498
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () =>
|
|
1506
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () => {
|
|
1507
|
+
const cache = new StoreKeyMap();
|
|
1508
|
+
getResponseCacheKeys(cache, luvio, resourceParams, response.body);
|
|
1509
|
+
return cache;
|
|
1510
|
+
});
|
|
1499
1511
|
}, (response) => {
|
|
1500
1512
|
return luvio.handleErrorResponse(() => onFetchResponseError(luvio, config, resourceParams, response));
|
|
1501
1513
|
});
|
|
@@ -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
|
queryParams: {
|
|
4
4
|
tagIds?: Array<string>;
|
|
@@ -6,6 +6,6 @@ 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 createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
11
11
|
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/deleteConnectInterestTagsTagsByTagId.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
|
tagId: string;
|
|
@@ -9,6 +9,6 @@ export interface ResourceRequestConfig {
|
|
|
9
9
|
}
|
|
10
10
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
11
11
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig):
|
|
12
|
+
export declare function getResponseCacheKeys(cacheKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig): void;
|
|
13
13
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
14
14
|
export default createResourceRequest;
|
|
@@ -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 { TagRecordAssignmentCollectionRepresentation as types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation } from '../types/TagRecordAssignmentCollectionRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
queryParams: {
|
|
@@ -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_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation):
|
|
14
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation): void;
|
|
15
15
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation, 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_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation>): $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 { InterestTagListRepresentation as types_InterestTagListRepresentation_InterestTagListRepresentation } from '../types/InterestTagListRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
urlParams: {
|
|
@@ -14,7 +14,7 @@ export interface ResourceRequestConfig {
|
|
|
14
14
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
15
15
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
16
16
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagListRepresentation_InterestTagListRepresentation):
|
|
17
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagListRepresentation_InterestTagListRepresentation): void;
|
|
18
18
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InterestTagListRepresentation_InterestTagListRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_InterestTagListRepresentation_InterestTagListRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, any>;
|
|
19
19
|
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_InterestTagListRepresentation_InterestTagListRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
20
20
|
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 { TagRecordAssignmentCollectionRepresentation as types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation } from '../types/TagRecordAssignmentCollectionRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
urlParams: {
|
|
@@ -14,7 +14,7 @@ export interface ResourceRequestConfig {
|
|
|
14
14
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
15
15
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
16
16
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation):
|
|
17
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation): void;
|
|
18
18
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation, any>;
|
|
19
19
|
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TagRecordAssignmentCollectionRepresentation_TagRecordAssignmentCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
20
20
|
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 { TagCategoryListRepresentation as types_TagCategoryListRepresentation_TagCategoryListRepresentation } from '../types/TagCategoryListRepresentation';
|
|
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_TagCategoryListRepresentation_TagCategoryListRepresentation):
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_TagCategoryListRepresentation_TagCategoryListRepresentation): void;
|
|
16
16
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TagCategoryListRepresentation_TagCategoryListRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_TagCategoryListRepresentation_TagCategoryListRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_TagCategoryListRepresentation_TagCategoryListRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_TagCategoryListRepresentation_TagCategoryListRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_TagCategoryListRepresentation_TagCategoryListRepresentation, 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_TagCategoryListRepresentation_TagCategoryListRepresentation>): $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 { InterestTagListRepresentation as types_InterestTagListRepresentation_InterestTagListRepresentation } from '../types/InterestTagListRepresentation';
|
|
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_InterestTagListRepresentation_InterestTagListRepresentation):
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagListRepresentation_InterestTagListRepresentation): void;
|
|
16
16
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InterestTagListRepresentation_InterestTagListRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_InterestTagListRepresentation_InterestTagListRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, 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_InterestTagListRepresentation_InterestTagListRepresentation>): $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 { InterestTagListRepresentation as types_InterestTagListRepresentation_InterestTagListRepresentation } from '../types/InterestTagListRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
urlParams: {
|
|
@@ -15,7 +15,7 @@ export interface ResourceRequestConfig {
|
|
|
15
15
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
16
16
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
17
17
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
18
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagListRepresentation_InterestTagListRepresentation):
|
|
18
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagListRepresentation_InterestTagListRepresentation): void;
|
|
19
19
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InterestTagListRepresentation_InterestTagListRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_InterestTagListRepresentation_InterestTagListRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_InterestTagListRepresentation_InterestTagListRepresentation, any>;
|
|
20
20
|
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_InterestTagListRepresentation_InterestTagListRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
21
21
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
package/dist/es/es2018/types/src/generated/resources/postConnectInterestTagsAssignments.d.ts
CHANGED
|
@@ -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 { InterestTagAssignmentOutputRepresentation as types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation } from '../types/InterestTagAssignmentOutputRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
body: {
|
|
@@ -13,7 +13,7 @@ export interface ResourceRequestConfig {
|
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
15
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
16
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation):
|
|
16
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation): void;
|
|
17
17
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation, any>;
|
|
18
18
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
19
|
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 { InterestTagAssignmentOutputRepresentation as types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation } from '../types/InterestTagAssignmentOutputRepresentation';
|
|
3
3
|
export interface ResourceRequestConfig {
|
|
4
4
|
urlParams: {
|
|
@@ -16,7 +16,7 @@ export interface ResourceRequestConfig {
|
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
18
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
19
|
-
export declare function getResponseCacheKeys(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation):
|
|
19
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation): void;
|
|
20
20
|
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_InterestTagAssignmentOutputRepresentation_InterestTagAssignmentOutputRepresentation, any>;
|
|
21
21
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
22
22
|
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/types/InterestTagAssignmentInputRepresentation.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, 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 = "ee94e56a46b61d955e6a46e1745437ed";
|
|
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: InterestTagAssignmentInputRepresentatio
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: InterestTagAssignmentInputRepresentationNormalized, incoming: InterestTagAssignmentInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagAssignmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagAssignmentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Input representation for interest tag entity assignment
|
|
12
12
|
*
|
package/dist/es/es2018/types/src/generated/types/InterestTagAssignmentOutputRepresentation.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare function normalize(input: InterestTagAssignmentOutputRepresentati
|
|
|
18
18
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
19
19
|
export declare function equals(existing: InterestTagAssignmentOutputRepresentationNormalized, incoming: InterestTagAssignmentOutputRepresentationNormalized): boolean;
|
|
20
20
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
21
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagAssignmentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
21
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagAssignmentOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
22
22
|
/**
|
|
23
23
|
* Interest tag entity assignment output representation.
|
|
24
24
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InterestTagCreateResult as InterestTagCreateResult_InterestTagCreateResult } from './InterestTagCreateResult';
|
|
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 = "ad4faa1900ccb44cb5a3bd1b67d5675a";
|
|
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: InterestTagCreateCollectionOutputRepres
|
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: InterestTagCreateCollectionOutputRepresentationNormalized, incoming: InterestTagCreateCollectionOutputRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagCreateCollectionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagCreateCollectionOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
12
|
* A Collection of interest tag output representation- InterestTagCreateResult.
|
|
13
13
|
*
|
package/dist/es/es2018/types/src/generated/types/InterestTagCreateInputListRepresentation.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, 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 = "79f0e4660c9b852ee8ed74b7511c2618";
|
|
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: InterestTagCreateInputListRepresentatio
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: InterestTagCreateInputListRepresentationNormalized, incoming: InterestTagCreateInputListRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagCreateInputListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagCreateInputListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Interest Tags create input list
|
|
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 = "3a41b68d4be1549222b91c5860aa7525";
|
|
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: InterestTagCreateInputRepresentation, e
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: InterestTagCreateInputRepresentationNormalized, incoming: InterestTagCreateInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagCreateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagCreateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Input representation for creating interest tags
|
|
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 = "c0ac115777cdb3294b9acdddfee831cf";
|
|
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: InterestTagCreateResult, existing: Inte
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: InterestTagCreateResultNormalized, incoming: InterestTagCreateResultNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagCreateResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagCreateResult, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Create interest tag results representation
|
|
12
12
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InterestTagRepresentation as InterestTagRepresentation_InterestTagRepresentation } from './InterestTagRepresentation';
|
|
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 = 10000;
|
|
4
4
|
export declare const VERSION = "a7f32ea47ff9fb394c6f9e13003a5595";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
@@ -8,7 +8,7 @@ export declare function normalize(input: InterestTagListRepresentation, existing
|
|
|
8
8
|
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
9
|
export declare function equals(existing: InterestTagListRepresentationNormalized, incoming: InterestTagListRepresentationNormalized): boolean;
|
|
10
10
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
12
|
/**
|
|
13
13
|
* A list of interest tags.
|
|
14
14
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TagCategoryRepresentation as TagCategoryRepresentation_TagCategoryRepresentation } from './TagCategoryRepresentation';
|
|
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 = "c52de2b59e2e5f6049a808d60097e50f";
|
|
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: InterestTagRepresentation, existing: In
|
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: InterestTagRepresentationNormalized, incoming: InterestTagRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
12
|
* The response for an interest tag.
|
|
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 = "7a1a3585ad1537e6ea7d229ff8f5eec2";
|
|
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: InterestTagUpdateInputRepresentation, e
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: InterestTagUpdateInputRepresentationNormalized, incoming: InterestTagUpdateInputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagUpdateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagUpdateInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Interest Tags update input request
|
|
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 = "44566884c0145ca8cf13b2938e221710";
|
|
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: InterestTagUpdateOutputRepresentation,
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: InterestTagUpdateOutputRepresentationNormalized, incoming: InterestTagUpdateOutputRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: InterestTagUpdateOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: InterestTagUpdateOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* The response for interest tag update call.
|
|
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 = "3d0c40d80da456517d254e7a15c7ca06";
|
|
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: RecordsForTag, existing: RecordsForTagN
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: RecordsForTagNormalized, incoming: RecordsForTagNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: RecordsForTag, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: RecordsForTag, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Input representation for records for tag
|
|
12
12
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TagCategoryWithParentRepresentation as TagCategoryWithParentRepresentation_TagCategoryWithParentRepresentation } from './TagCategoryWithParentRepresentation';
|
|
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 = "9b56734fafb1d500056d1c1cdb6fe22d";
|
|
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: TagCategoryListRepresentation, existing
|
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: TagCategoryListRepresentationNormalized, incoming: TagCategoryListRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: TagCategoryListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TagCategoryListRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
12
|
* A list of tag categories.
|
|
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 = "1fd8e79c10ce199fc444cc445eeafbf0";
|
|
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: TagCategoryRepresentation, existing: Ta
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: TagCategoryRepresentationNormalized, incoming: TagCategoryRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: TagCategoryRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TagCategoryRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* The response for a category.
|
|
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 = "2dcce5f2b607682447018f5b9db9cd4d";
|
|
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: TagCategoryWithParentRepresentation, ex
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: TagCategoryWithParentRepresentationNormalized, incoming: TagCategoryWithParentRepresentationNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: TagCategoryWithParentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TagCategoryWithParentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* The representation of a category with its parent category.
|
|
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 = "bead7737d6de24db2005f390553ce4bf";
|
|
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: TagRecordAssignment, existing: TagRecor
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: TagRecordAssignmentNormalized, incoming: TagRecordAssignmentNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: TagRecordAssignment, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TagRecordAssignment, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Tag record assignment representation
|
|
12
12
|
*
|
package/dist/es/es2018/types/src/generated/types/TagRecordAssignmentCollectionRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TagRecordAssignment as TagRecordAssignment_TagRecordAssignment } from './TagRecordAssignment';
|
|
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 = "2c249834bed42974b83ef01b3abacb2c";
|
|
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: TagRecordAssignmentCollectionRepresenta
|
|
|
7
7
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
8
|
export declare function equals(existing: TagRecordAssignmentCollectionRepresentationNormalized, incoming: TagRecordAssignmentCollectionRepresentationNormalized): boolean;
|
|
9
9
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: TagRecordAssignmentCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TagRecordAssignmentCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
11
|
/**
|
|
12
12
|
* A Collection of record assignments for a tag.
|
|
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 = "f0f0ec98e66fc03b8c76515f8883efd2";
|
|
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: TagsForRecord, existing: TagsForRecordN
|
|
|
6
6
|
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
7
|
export declare function equals(existing: TagsForRecordNormalized, incoming: TagsForRecordNormalized): boolean;
|
|
8
8
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
-
export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: TagsForRecord, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata):
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TagsForRecord, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
10
|
/**
|
|
11
11
|
* Input representation for tags for record
|
|
12
12
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-interesttagging",
|
|
3
|
-
"version": "1.170.
|
|
3
|
+
"version": "1.170.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Connect family for interest tags APIs",
|
|
6
6
|
"main": "dist/es/es2018/industries-interesttagging.js",
|
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;
|
|
@@ -172,8 +172,7 @@ const ingest$3 = function InterestTagAssignmentOutputRepresentationIngest(input,
|
|
|
172
172
|
}
|
|
173
173
|
return createLink(key);
|
|
174
174
|
};
|
|
175
|
-
function getTypeCacheKeys$3(luvio, input, fullPathFactory) {
|
|
176
|
-
const rootKeySet = new StoreKeyMap();
|
|
175
|
+
function getTypeCacheKeys$3(rootKeySet, luvio, input, fullPathFactory) {
|
|
177
176
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
178
177
|
const rootKey = keyBuilderFromType(luvio, input);
|
|
179
178
|
rootKeySet.set(rootKey, {
|
|
@@ -181,14 +180,13 @@ function getTypeCacheKeys$3(luvio, input, fullPathFactory) {
|
|
|
181
180
|
representationName: RepresentationType$3,
|
|
182
181
|
mergeable: false
|
|
183
182
|
});
|
|
184
|
-
return rootKeySet;
|
|
185
183
|
}
|
|
186
184
|
|
|
187
185
|
function select$9(luvio, params) {
|
|
188
186
|
return select$a();
|
|
189
187
|
}
|
|
190
|
-
function getResponseCacheKeys$4(luvio, resourceParams, response) {
|
|
191
|
-
|
|
188
|
+
function getResponseCacheKeys$4(storeKeyMap, luvio, resourceParams, response) {
|
|
189
|
+
getTypeCacheKeys$3(storeKeyMap, luvio, response);
|
|
192
190
|
}
|
|
193
191
|
function ingestSuccess$4(luvio, resourceParams, response) {
|
|
194
192
|
const { body } = response;
|
|
@@ -305,7 +303,11 @@ function buildNetworkSnapshot$4(luvio, config, options) {
|
|
|
305
303
|
return luvio.handleSuccessResponse(() => {
|
|
306
304
|
const snapshot = ingestSuccess$4(luvio, resourceParams, response);
|
|
307
305
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
308
|
-
}, () =>
|
|
306
|
+
}, () => {
|
|
307
|
+
const cache = new StoreKeyMap();
|
|
308
|
+
getResponseCacheKeys$4(cache, luvio, resourceParams, response.body);
|
|
309
|
+
return cache;
|
|
310
|
+
});
|
|
309
311
|
}, (response) => {
|
|
310
312
|
deepFreeze(response);
|
|
311
313
|
throw response;
|
|
@@ -487,8 +489,7 @@ const ingest$2 = function TagRecordAssignmentCollectionRepresentationIngest(inpu
|
|
|
487
489
|
}
|
|
488
490
|
return createLink(key);
|
|
489
491
|
};
|
|
490
|
-
function getTypeCacheKeys$2(luvio, input, fullPathFactory) {
|
|
491
|
-
const rootKeySet = new StoreKeyMap();
|
|
492
|
+
function getTypeCacheKeys$2(rootKeySet, luvio, input, fullPathFactory) {
|
|
492
493
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
493
494
|
const rootKey = fullPathFactory();
|
|
494
495
|
rootKeySet.set(rootKey, {
|
|
@@ -496,7 +497,6 @@ function getTypeCacheKeys$2(luvio, input, fullPathFactory) {
|
|
|
496
497
|
representationName: RepresentationType$2,
|
|
497
498
|
mergeable: false
|
|
498
499
|
});
|
|
499
|
-
return rootKeySet;
|
|
500
500
|
}
|
|
501
501
|
|
|
502
502
|
function select$6(luvio, params) {
|
|
@@ -505,8 +505,8 @@ function select$6(luvio, params) {
|
|
|
505
505
|
function keyBuilder$7(luvio, params) {
|
|
506
506
|
return keyPrefix + '::TagRecordAssignmentCollectionRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'orderBy:' + params.queryParams.orderBy + ',' + 'sort:' + params.queryParams.sort + ',' + 'tagId:' + params.urlParams.tagId + ')';
|
|
507
507
|
}
|
|
508
|
-
function getResponseCacheKeys$3(luvio, resourceParams, response) {
|
|
509
|
-
|
|
508
|
+
function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
509
|
+
getTypeCacheKeys$2(storeKeyMap, luvio, response, () => keyBuilder$7(luvio, resourceParams));
|
|
510
510
|
}
|
|
511
511
|
function ingestSuccess$3(luvio, resourceParams, response, snapshotRefresh) {
|
|
512
512
|
const { body } = response;
|
|
@@ -627,7 +627,11 @@ function buildNetworkSnapshot$3(luvio, config, options) {
|
|
|
627
627
|
const request = createResourceRequest$3(resourceParams);
|
|
628
628
|
return luvio.dispatchResourceRequest(request, options)
|
|
629
629
|
.then((response) => {
|
|
630
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$3(luvio, config, resourceParams, response), () =>
|
|
630
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$3(luvio, config, resourceParams, response), () => {
|
|
631
|
+
const cache = new StoreKeyMap();
|
|
632
|
+
getResponseCacheKeys$3(cache, luvio, resourceParams, response.body);
|
|
633
|
+
return cache;
|
|
634
|
+
});
|
|
631
635
|
}, (response) => {
|
|
632
636
|
return luvio.handleErrorResponse(() => onFetchResponseError$3(luvio, config, resourceParams, response));
|
|
633
637
|
});
|
|
@@ -865,8 +869,7 @@ const ingest$1 = function TagCategoryListRepresentationIngest(input, path, luvio
|
|
|
865
869
|
}
|
|
866
870
|
return createLink(key);
|
|
867
871
|
};
|
|
868
|
-
function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
869
|
-
const rootKeySet = new StoreKeyMap();
|
|
872
|
+
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
870
873
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
871
874
|
const rootKey = fullPathFactory();
|
|
872
875
|
rootKeySet.set(rootKey, {
|
|
@@ -874,7 +877,6 @@ function getTypeCacheKeys$1(luvio, input, fullPathFactory) {
|
|
|
874
877
|
representationName: RepresentationType$1,
|
|
875
878
|
mergeable: false
|
|
876
879
|
});
|
|
877
|
-
return rootKeySet;
|
|
878
880
|
}
|
|
879
881
|
|
|
880
882
|
function select$3(luvio, params) {
|
|
@@ -883,8 +885,8 @@ function select$3(luvio, params) {
|
|
|
883
885
|
function keyBuilder$5(luvio, params) {
|
|
884
886
|
return keyPrefix + '::TagCategoryListRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'orderBy:' + params.queryParams.orderBy + ',' + 'sort:' + params.queryParams.sort + ',' + 'tagId:' + params.queryParams.tagId + ')';
|
|
885
887
|
}
|
|
886
|
-
function getResponseCacheKeys$2(luvio, resourceParams, response) {
|
|
887
|
-
|
|
888
|
+
function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
889
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response, () => keyBuilder$5(luvio, resourceParams));
|
|
888
890
|
}
|
|
889
891
|
function ingestSuccess$2(luvio, resourceParams, response, snapshotRefresh) {
|
|
890
892
|
const { body } = response;
|
|
@@ -1002,7 +1004,11 @@ function buildNetworkSnapshot$2(luvio, config, options) {
|
|
|
1002
1004
|
const request = createResourceRequest$2(resourceParams);
|
|
1003
1005
|
return luvio.dispatchResourceRequest(request, options)
|
|
1004
1006
|
.then((response) => {
|
|
1005
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () =>
|
|
1007
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () => {
|
|
1008
|
+
const cache = new StoreKeyMap();
|
|
1009
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams, response.body);
|
|
1010
|
+
return cache;
|
|
1011
|
+
});
|
|
1006
1012
|
}, (response) => {
|
|
1007
1013
|
return luvio.handleErrorResponse(() => onFetchResponseError$2(luvio, config, resourceParams, response));
|
|
1008
1014
|
});
|
|
@@ -1183,8 +1189,7 @@ const ingest = function InterestTagListRepresentationIngest(input, path, luvio,
|
|
|
1183
1189
|
}
|
|
1184
1190
|
return createLink(key);
|
|
1185
1191
|
};
|
|
1186
|
-
function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
1187
|
-
const rootKeySet = new StoreKeyMap();
|
|
1192
|
+
function getTypeCacheKeys(rootKeySet, luvio, input, fullPathFactory) {
|
|
1188
1193
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
1189
1194
|
const rootKey = fullPathFactory();
|
|
1190
1195
|
rootKeySet.set(rootKey, {
|
|
@@ -1192,7 +1197,6 @@ function getTypeCacheKeys(luvio, input, fullPathFactory) {
|
|
|
1192
1197
|
representationName: RepresentationType,
|
|
1193
1198
|
mergeable: false
|
|
1194
1199
|
});
|
|
1195
|
-
return rootKeySet;
|
|
1196
1200
|
}
|
|
1197
1201
|
|
|
1198
1202
|
function select$1(luvio, params) {
|
|
@@ -1201,8 +1205,8 @@ function select$1(luvio, params) {
|
|
|
1201
1205
|
function keyBuilder$3(luvio, params) {
|
|
1202
1206
|
return keyPrefix + '::InterestTagListRepresentation:(' + 'categoryId:' + params.queryParams.categoryId + ',' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'orderBy:' + params.queryParams.orderBy + ',' + 'sort:' + params.queryParams.sort + ')';
|
|
1203
1207
|
}
|
|
1204
|
-
function getResponseCacheKeys$1(luvio, resourceParams, response) {
|
|
1205
|
-
|
|
1208
|
+
function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
1209
|
+
getTypeCacheKeys(storeKeyMap, luvio, response, () => keyBuilder$3(luvio, resourceParams));
|
|
1206
1210
|
}
|
|
1207
1211
|
function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
1208
1212
|
const { body } = response;
|
|
@@ -1326,7 +1330,11 @@ function buildNetworkSnapshot$1(luvio, config, options) {
|
|
|
1326
1330
|
const request = createResourceRequest$1(resourceParams);
|
|
1327
1331
|
return luvio.dispatchResourceRequest(request, options)
|
|
1328
1332
|
.then((response) => {
|
|
1329
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () =>
|
|
1333
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () => {
|
|
1334
|
+
const cache = new StoreKeyMap();
|
|
1335
|
+
getResponseCacheKeys$1(cache, luvio, resourceParams, response.body);
|
|
1336
|
+
return cache;
|
|
1337
|
+
});
|
|
1330
1338
|
}, (response) => {
|
|
1331
1339
|
return luvio.handleErrorResponse(() => onFetchResponseError$1(luvio, config, resourceParams, response));
|
|
1332
1340
|
});
|
|
@@ -1377,8 +1385,8 @@ function select(luvio, params) {
|
|
|
1377
1385
|
function keyBuilder$1(luvio, params) {
|
|
1378
1386
|
return keyPrefix + '::InterestTagListRepresentation:(' + 'limit:' + params.queryParams.limit + ',' + 'offset:' + params.queryParams.offset + ',' + 'orderBy:' + params.queryParams.orderBy + ',' + 'sort:' + params.queryParams.sort + ',' + 'recordId:' + params.urlParams.recordId + ')';
|
|
1379
1387
|
}
|
|
1380
|
-
function getResponseCacheKeys(luvio, resourceParams, response) {
|
|
1381
|
-
|
|
1388
|
+
function getResponseCacheKeys(storeKeyMap, luvio, resourceParams, response) {
|
|
1389
|
+
getTypeCacheKeys(storeKeyMap, luvio, response, () => keyBuilder$1(luvio, resourceParams));
|
|
1382
1390
|
}
|
|
1383
1391
|
function ingestSuccess(luvio, resourceParams, response, snapshotRefresh) {
|
|
1384
1392
|
const { body } = response;
|
|
@@ -1505,7 +1513,11 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
1505
1513
|
const request = createResourceRequest(resourceParams);
|
|
1506
1514
|
return luvio.dispatchResourceRequest(request, options)
|
|
1507
1515
|
.then((response) => {
|
|
1508
|
-
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () =>
|
|
1516
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess(luvio, config, resourceParams, response), () => {
|
|
1517
|
+
const cache = new StoreKeyMap();
|
|
1518
|
+
getResponseCacheKeys(cache, luvio, resourceParams, response.body);
|
|
1519
|
+
return cache;
|
|
1520
|
+
});
|
|
1509
1521
|
}, (response) => {
|
|
1510
1522
|
return luvio.handleErrorResponse(() => onFetchResponseError(luvio, config, resourceParams, response));
|
|
1511
1523
|
});
|
|
@@ -1602,4 +1614,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1602
1614
|
});
|
|
1603
1615
|
|
|
1604
1616
|
export { createInterestTagEntityAssignment, getInterestTagEntityAssignments, getInterestTagEntityAssignments_imperative, getTagCategoriesByTagId, getTagCategoriesByTagId_imperative, getTagsByCategoryId, getTagsByCategoryId_imperative, getTagsByRecordId, getTagsByRecordId_imperative };
|
|
1605
|
-
// version: 1.170.
|
|
1617
|
+
// version: 1.170.1-5fb216cf1
|