@salesforce/lwc-adapters-uiapi 1.444.0 → 1.446.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +380 -355
- package/package.json +3 -3
package/dist/main.js
CHANGED
|
@@ -11357,7 +11357,7 @@ function mergeAndRefreshLowerVersionRecord(luvio, incoming, existing, incomingTr
|
|
|
11357
11357
|
};
|
|
11358
11358
|
}
|
|
11359
11359
|
else {
|
|
11360
|
-
buildNetworkSnapshot$
|
|
11360
|
+
buildNetworkSnapshot$1f(luvio, {
|
|
11361
11361
|
recordId: incoming.id,
|
|
11362
11362
|
optionalFields: convertTrieToFields(incomingTrackedFieldsTrieRoot),
|
|
11363
11363
|
});
|
|
@@ -11841,7 +11841,7 @@ function buildRecordSelector(luvio, recordId, fields, optionalFields) {
|
|
|
11841
11841
|
function buildSnapshotRefresh$5(luvio, config) {
|
|
11842
11842
|
return {
|
|
11843
11843
|
config,
|
|
11844
|
-
resolve: () => buildNetworkSnapshot$
|
|
11844
|
+
resolve: () => buildNetworkSnapshot$1f(luvio, config),
|
|
11845
11845
|
};
|
|
11846
11846
|
}
|
|
11847
11847
|
function prepareRequest$7(luvio, config) {
|
|
@@ -11886,7 +11886,7 @@ function onResourceError(luvio, config, key, err) {
|
|
|
11886
11886
|
const errorSnapshot = ingestError$R(luvio, config, key, err);
|
|
11887
11887
|
return luvio.storeBroadcast().then(() => errorSnapshot);
|
|
11888
11888
|
}
|
|
11889
|
-
function buildNetworkSnapshot$
|
|
11889
|
+
function buildNetworkSnapshot$1f(luvio, config, serverRequestCount = 0, options) {
|
|
11890
11890
|
const { request, key, allTrackedFields, resourceParams } = prepareRequest$7(luvio, config);
|
|
11891
11891
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
11892
11892
|
// W-11964675 - Condition to dedupe a very specific set of requests for
|
|
@@ -11943,7 +11943,7 @@ function buildNetworkSnapshotCachePolicy$W(context, coercedAdapterRequestContext
|
|
|
11943
11943
|
priority: networkPriority,
|
|
11944
11944
|
};
|
|
11945
11945
|
}
|
|
11946
|
-
return buildNetworkSnapshot$
|
|
11946
|
+
return buildNetworkSnapshot$1f(luvio, config, 0, dispatchOptions);
|
|
11947
11947
|
}
|
|
11948
11948
|
function getRecordByFields(luvio, config, requestContext) {
|
|
11949
11949
|
return luvio.applyCachePolicy(requestContext || {}, { config, luvio }, buildCachedSnapshotCachePolicy$V, buildNetworkSnapshotCachePolicy$W);
|
|
@@ -12306,7 +12306,7 @@ function onFetchResponseSuccess$S(luvio, config, resourceParams, response, serve
|
|
|
12306
12306
|
},
|
|
12307
12307
|
refresh: {
|
|
12308
12308
|
config,
|
|
12309
|
-
resolve: () => buildNetworkSnapshot$
|
|
12309
|
+
resolve: () => buildNetworkSnapshot$1e(luvio, config, serverRequestCount, snapshotRefreshOptions),
|
|
12310
12310
|
},
|
|
12311
12311
|
variables: {},
|
|
12312
12312
|
};
|
|
@@ -12316,11 +12316,11 @@ function onFetchResponseSuccess$S(luvio, config, resourceParams, response, serve
|
|
|
12316
12316
|
function onFetchResponseError$T(luvio, config, resourceParams, response) {
|
|
12317
12317
|
const snapshot = ingestError$Q(luvio, resourceParams, response, {
|
|
12318
12318
|
config,
|
|
12319
|
-
resolve: () => buildNetworkSnapshot$
|
|
12319
|
+
resolve: () => buildNetworkSnapshot$1e(luvio, config, 0, snapshotRefreshOptions),
|
|
12320
12320
|
});
|
|
12321
12321
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
12322
12322
|
}
|
|
12323
|
-
function buildNetworkSnapshot$
|
|
12323
|
+
function buildNetworkSnapshot$1e(luvio, config, serverRequestCount = 0, options) {
|
|
12324
12324
|
const resourceParams = createResourceParams$14(config);
|
|
12325
12325
|
const request = createResourceRequest$1f(resourceParams);
|
|
12326
12326
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
@@ -12347,7 +12347,7 @@ function resolveConflict(luvio, map) {
|
|
|
12347
12347
|
recordId,
|
|
12348
12348
|
optionalFields: convertTrieToFields(map.conflicts[recordId].trackedFields),
|
|
12349
12349
|
};
|
|
12350
|
-
buildNetworkSnapshot$
|
|
12350
|
+
buildNetworkSnapshot$1f(luvio, config, map.serverRequestCount);
|
|
12351
12351
|
}
|
|
12352
12352
|
else {
|
|
12353
12353
|
const records = reduce.call(ids, (acc, id) => {
|
|
@@ -12359,7 +12359,7 @@ function resolveConflict(luvio, map) {
|
|
|
12359
12359
|
return acc;
|
|
12360
12360
|
}, []);
|
|
12361
12361
|
const config = { records };
|
|
12362
|
-
buildNetworkSnapshot$
|
|
12362
|
+
buildNetworkSnapshot$1e(luvio, config, map.serverRequestCount);
|
|
12363
12363
|
}
|
|
12364
12364
|
}
|
|
12365
12365
|
|
|
@@ -15316,14 +15316,14 @@ function adapterFragment$L(luvio, config) {
|
|
|
15316
15316
|
function onFetchResponseSuccess$P(luvio, config, resourceParams, response) {
|
|
15317
15317
|
const snapshot = ingestSuccess$T(luvio, resourceParams, response, {
|
|
15318
15318
|
config,
|
|
15319
|
-
resolve: () => buildNetworkSnapshot$
|
|
15319
|
+
resolve: () => buildNetworkSnapshot$1b(luvio, config, snapshotRefreshOptions)
|
|
15320
15320
|
});
|
|
15321
15321
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
15322
15322
|
}
|
|
15323
15323
|
function onFetchResponseError$Q(luvio, config, resourceParams, response) {
|
|
15324
15324
|
const snapshot = ingestError$M(luvio, resourceParams, response, {
|
|
15325
15325
|
config,
|
|
15326
|
-
resolve: () => buildNetworkSnapshot$
|
|
15326
|
+
resolve: () => buildNetworkSnapshot$1b(luvio, config, snapshotRefreshOptions)
|
|
15327
15327
|
});
|
|
15328
15328
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
15329
15329
|
}
|
|
@@ -15402,7 +15402,7 @@ function getPaginationMetadata$3(luvio, resourceParams) {
|
|
|
15402
15402
|
}
|
|
15403
15403
|
return node.data.__metadata;
|
|
15404
15404
|
}
|
|
15405
|
-
function buildNetworkSnapshot$
|
|
15405
|
+
function buildNetworkSnapshot$1b(luvio, config, options, cacheSnapshot) {
|
|
15406
15406
|
const resourceParams = createResourceParams$11(config);
|
|
15407
15407
|
const request = prepareRequest$6(luvio, config, resourceParams, cacheSnapshot);
|
|
15408
15408
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -15417,7 +15417,7 @@ function buildNetworkSnapshot$17(luvio, config, options, cacheSnapshot) {
|
|
|
15417
15417
|
});
|
|
15418
15418
|
}
|
|
15419
15419
|
function buildNetworkSnapshotCachePolicy$T(context, coercedAdapterRequestContext) {
|
|
15420
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
15420
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$1b, undefined, true);
|
|
15421
15421
|
}
|
|
15422
15422
|
function buildCachedSnapshotCachePolicy$S(context, storeLookup) {
|
|
15423
15423
|
const { luvio, config } = context;
|
|
@@ -15428,7 +15428,7 @@ function buildCachedSnapshotCachePolicy$S(context, storeLookup) {
|
|
|
15428
15428
|
};
|
|
15429
15429
|
const cacheSnapshot = storeLookup(selector, {
|
|
15430
15430
|
config,
|
|
15431
|
-
resolve: () => buildNetworkSnapshot$
|
|
15431
|
+
resolve: () => buildNetworkSnapshot$1b(luvio, config, snapshotRefreshOptions)
|
|
15432
15432
|
});
|
|
15433
15433
|
if (isUnfulfilledSnapshot$1(cacheSnapshot) && cacheSnapshot.data !== undefined) {
|
|
15434
15434
|
context.cacheSnapshot = cacheSnapshot;
|
|
@@ -17360,18 +17360,18 @@ function adapterFragment$K(luvio, config) {
|
|
|
17360
17360
|
function onFetchResponseSuccess$O(luvio, config, resourceParams, response) {
|
|
17361
17361
|
const snapshot = ingestSuccess$S(luvio, resourceParams, response, {
|
|
17362
17362
|
config,
|
|
17363
|
-
resolve: () => buildNetworkSnapshot$
|
|
17363
|
+
resolve: () => buildNetworkSnapshot$1a(luvio, config, snapshotRefreshOptions)
|
|
17364
17364
|
});
|
|
17365
17365
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
17366
17366
|
}
|
|
17367
17367
|
function onFetchResponseError$P(luvio, config, resourceParams, response) {
|
|
17368
17368
|
const snapshot = ingestError$L(luvio, resourceParams, response, {
|
|
17369
17369
|
config,
|
|
17370
|
-
resolve: () => buildNetworkSnapshot$
|
|
17370
|
+
resolve: () => buildNetworkSnapshot$1a(luvio, config, snapshotRefreshOptions)
|
|
17371
17371
|
});
|
|
17372
17372
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
17373
17373
|
}
|
|
17374
|
-
function buildNetworkSnapshot$
|
|
17374
|
+
function buildNetworkSnapshot$1a(luvio, config, options) {
|
|
17375
17375
|
const resourceParams = createResourceParams$$(config);
|
|
17376
17376
|
const request = createResourceRequest$17(resourceParams);
|
|
17377
17377
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -17386,7 +17386,7 @@ function buildNetworkSnapshot$16(luvio, config, options) {
|
|
|
17386
17386
|
});
|
|
17387
17387
|
}
|
|
17388
17388
|
function buildNetworkSnapshotCachePolicy$S(context, coercedAdapterRequestContext) {
|
|
17389
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
17389
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$1a, undefined, false);
|
|
17390
17390
|
}
|
|
17391
17391
|
function buildCachedSnapshotCachePolicy$R(context, storeLookup) {
|
|
17392
17392
|
const { luvio, config } = context;
|
|
@@ -17397,7 +17397,7 @@ function buildCachedSnapshotCachePolicy$R(context, storeLookup) {
|
|
|
17397
17397
|
};
|
|
17398
17398
|
const cacheSnapshot = storeLookup(selector, {
|
|
17399
17399
|
config,
|
|
17400
|
-
resolve: () => buildNetworkSnapshot$
|
|
17400
|
+
resolve: () => buildNetworkSnapshot$1a(luvio, config, snapshotRefreshOptions)
|
|
17401
17401
|
});
|
|
17402
17402
|
return cacheSnapshot;
|
|
17403
17403
|
}
|
|
@@ -18683,7 +18683,7 @@ function keyBuilder$3y(recordIds, layoutTypes, modes, optionalFields) {
|
|
|
18683
18683
|
function buildSnapshotRefresh$4(luvio, config) {
|
|
18684
18684
|
return {
|
|
18685
18685
|
config,
|
|
18686
|
-
resolve: () => buildNetworkSnapshot$
|
|
18686
|
+
resolve: () => buildNetworkSnapshot$19(luvio, config),
|
|
18687
18687
|
};
|
|
18688
18688
|
}
|
|
18689
18689
|
function markRecordUiNulledOutLookupFields(recordLookupFields, recordNodes) {
|
|
@@ -18837,7 +18837,7 @@ function onFetchResponseError$O(luvio, config, selectorKey, key, err) {
|
|
|
18837
18837
|
return errorSnapshot;
|
|
18838
18838
|
});
|
|
18839
18839
|
}
|
|
18840
|
-
function buildNetworkSnapshot$
|
|
18840
|
+
function buildNetworkSnapshot$19(luvio, config, dispatchContext) {
|
|
18841
18841
|
const { key, resourceRequest, selectorKey } = prepareRequest$5(luvio, config);
|
|
18842
18842
|
return luvio
|
|
18843
18843
|
.dispatchResourceRequest(resourceRequest, dispatchContext)
|
|
@@ -18905,7 +18905,7 @@ function buildNetworkRecordUiRepresentationSnapshot(context, coercedAdapterReque
|
|
|
18905
18905
|
priority: networkPriority,
|
|
18906
18906
|
};
|
|
18907
18907
|
}
|
|
18908
|
-
return buildNetworkSnapshot$
|
|
18908
|
+
return buildNetworkSnapshot$19(context.luvio, context.config, dispatchOptions);
|
|
18909
18909
|
}
|
|
18910
18910
|
function coerceConfigWithDefaults$3(untrustedConfig) {
|
|
18911
18911
|
const config = validateAdapterConfig$16(untrustedConfig, GET_RECORDUI_ADAPTER_CONFIG);
|
|
@@ -18972,7 +18972,7 @@ function refresh$1(luvio, config) {
|
|
|
18972
18972
|
modes,
|
|
18973
18973
|
optionalFields,
|
|
18974
18974
|
};
|
|
18975
|
-
return buildNetworkSnapshot$
|
|
18975
|
+
return buildNetworkSnapshot$19(luvio, recordUiConfig).then((snapshot) => {
|
|
18976
18976
|
const refresh = buildSnapshotRefresh$3(luvio, config);
|
|
18977
18977
|
if (isErrorSnapshot(snapshot)) {
|
|
18978
18978
|
var recordKey = keyBuilder$3U(luvio, { recordId });
|
|
@@ -19128,7 +19128,7 @@ function getRecord$1(luvio, refresh, recordId, fields, configOptionalFields) {
|
|
|
19128
19128
|
}
|
|
19129
19129
|
return recordSnapshotOrPromise;
|
|
19130
19130
|
}
|
|
19131
|
-
function buildNetworkSnapshot$
|
|
19131
|
+
function buildNetworkSnapshot$18(context, coercedAdapterRequestContext) {
|
|
19132
19132
|
const { config, luvio, adapterContext } = context;
|
|
19133
19133
|
const { recordId } = config;
|
|
19134
19134
|
const optionalFields = config.optionalFields === undefined ? [] : dedupe(config.optionalFields).sort();
|
|
@@ -19154,7 +19154,7 @@ function buildNetworkSnapshot$14(context, coercedAdapterRequestContext) {
|
|
|
19154
19154
|
fields: context.fields,
|
|
19155
19155
|
optionalFields,
|
|
19156
19156
|
};
|
|
19157
|
-
return buildNetworkSnapshot$
|
|
19157
|
+
return buildNetworkSnapshot$1f(luvio, recordConfig, 0, coercedAdapterRequestContext).then((snapshot) => {
|
|
19158
19158
|
snapshot.refresh = refresh;
|
|
19159
19159
|
return snapshot;
|
|
19160
19160
|
});
|
|
@@ -19167,7 +19167,7 @@ function buildNetworkSnapshot$14(context, coercedAdapterRequestContext) {
|
|
|
19167
19167
|
modes,
|
|
19168
19168
|
optionalFields,
|
|
19169
19169
|
};
|
|
19170
|
-
return buildNetworkSnapshot$
|
|
19170
|
+
return buildNetworkSnapshot$19(luvio, recordUiConfig, dispatchOptions).then((snapshot) => processRecordUiRepresentation(luvio, refresh, recordId, modes, snapshot, adapterContext, optionalFields));
|
|
19171
19171
|
}
|
|
19172
19172
|
function buildRecordLayoutCachedSnapshot(context, storeLookup) {
|
|
19173
19173
|
const { config, luvio } = context;
|
|
@@ -19251,7 +19251,7 @@ function makeCacheOnlySnapshot(luvio, config, adapterContext, cachedSnapshot) {
|
|
|
19251
19251
|
function makeNetworkOnlySnapshot(luvio, config, adapterContext, requestContext) {
|
|
19252
19252
|
return luvio.applyCachePolicy(requestContext || {}, { config, luvio, adapterContext }, () => {
|
|
19253
19253
|
return undefined;
|
|
19254
|
-
}, buildNetworkSnapshot$
|
|
19254
|
+
}, buildNetworkSnapshot$18);
|
|
19255
19255
|
}
|
|
19256
19256
|
function getRecordLayoutType(luvio, config, adapterContext, requestContext) {
|
|
19257
19257
|
// lookup record layout
|
|
@@ -19288,10 +19288,10 @@ function getRecordLayoutType(luvio, config, adapterContext, requestContext) {
|
|
|
19288
19288
|
if (!fields) {
|
|
19289
19289
|
return makeNetworkOnlySnapshot(luvio, config, adapterContext, requestContext);
|
|
19290
19290
|
}
|
|
19291
|
-
return luvio.applyCachePolicy(requestContext || {}, { config, luvio, adapterContext }, buildRecordSnapshot(luvio, config, recordLayoutSnapshot, objectInfoSnapshot, fields), buildNetworkSnapshot$
|
|
19291
|
+
return luvio.applyCachePolicy(requestContext || {}, { config, luvio, adapterContext }, buildRecordSnapshot(luvio, config, recordLayoutSnapshot, objectInfoSnapshot, fields), buildNetworkSnapshot$18);
|
|
19292
19292
|
}
|
|
19293
19293
|
return makeRecordLayoutMap(luvio, config, objectInfoSnapshot.data.apiName, recordTypeId, layoutTypes, modes, adapterContext).then((recordLayoutMap) => {
|
|
19294
|
-
return luvio.applyCachePolicy(requestContext || {}, { config, luvio, adapterContext }, buildRecordLayoutSnapshot(recordLayoutMap, luvio, config, recordLayoutSnapshot, objectInfoSnapshot), buildNetworkSnapshot$
|
|
19294
|
+
return luvio.applyCachePolicy(requestContext || {}, { config, luvio, adapterContext }, buildRecordLayoutSnapshot(recordLayoutMap, luvio, config, recordLayoutSnapshot, objectInfoSnapshot), buildNetworkSnapshot$18);
|
|
19295
19295
|
});
|
|
19296
19296
|
});
|
|
19297
19297
|
});
|
|
@@ -20858,18 +20858,18 @@ function adapterFragment$J(luvio, config) {
|
|
|
20858
20858
|
function onFetchResponseSuccess$M(luvio, config, resourceParams, response) {
|
|
20859
20859
|
const snapshot = ingestSuccess$R(luvio, resourceParams, response, {
|
|
20860
20860
|
config,
|
|
20861
|
-
resolve: () => buildNetworkSnapshot$
|
|
20861
|
+
resolve: () => buildNetworkSnapshot$17(luvio, config, snapshotRefreshOptions)
|
|
20862
20862
|
});
|
|
20863
20863
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
20864
20864
|
}
|
|
20865
20865
|
function onFetchResponseError$N(luvio, config, resourceParams, response) {
|
|
20866
20866
|
const snapshot = ingestError$K(luvio, resourceParams, response, {
|
|
20867
20867
|
config,
|
|
20868
|
-
resolve: () => buildNetworkSnapshot$
|
|
20868
|
+
resolve: () => buildNetworkSnapshot$17(luvio, config, snapshotRefreshOptions)
|
|
20869
20869
|
});
|
|
20870
20870
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
20871
20871
|
}
|
|
20872
|
-
function buildNetworkSnapshot$
|
|
20872
|
+
function buildNetworkSnapshot$17(luvio, config, options) {
|
|
20873
20873
|
const resourceParams = createResourceParams$_(config);
|
|
20874
20874
|
const request = createResourceRequest$15(resourceParams);
|
|
20875
20875
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -20884,7 +20884,7 @@ function buildNetworkSnapshot$13(luvio, config, options) {
|
|
|
20884
20884
|
});
|
|
20885
20885
|
}
|
|
20886
20886
|
function buildNetworkSnapshotCachePolicy$R(context, coercedAdapterRequestContext) {
|
|
20887
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
20887
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$17, undefined, false);
|
|
20888
20888
|
}
|
|
20889
20889
|
function buildCachedSnapshotCachePolicy$Q(context, storeLookup) {
|
|
20890
20890
|
const { luvio, config } = context;
|
|
@@ -20895,7 +20895,7 @@ function buildCachedSnapshotCachePolicy$Q(context, storeLookup) {
|
|
|
20895
20895
|
};
|
|
20896
20896
|
const cacheSnapshot = storeLookup(selector, {
|
|
20897
20897
|
config,
|
|
20898
|
-
resolve: () => buildNetworkSnapshot$
|
|
20898
|
+
resolve: () => buildNetworkSnapshot$17(luvio, config, snapshotRefreshOptions)
|
|
20899
20899
|
});
|
|
20900
20900
|
return cacheSnapshot;
|
|
20901
20901
|
}
|
|
@@ -21089,18 +21089,18 @@ function adapterFragment$I(luvio, config) {
|
|
|
21089
21089
|
function onFetchResponseSuccess$L(luvio, config, resourceParams, response) {
|
|
21090
21090
|
const snapshot = ingestSuccess$Q(luvio, resourceParams, response, {
|
|
21091
21091
|
config,
|
|
21092
|
-
resolve: () => buildNetworkSnapshot$
|
|
21092
|
+
resolve: () => buildNetworkSnapshot$16(luvio, config, snapshotRefreshOptions)
|
|
21093
21093
|
});
|
|
21094
21094
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21095
21095
|
}
|
|
21096
21096
|
function onFetchResponseError$M(luvio, config, resourceParams, response) {
|
|
21097
21097
|
const snapshot = ingestError$J(luvio, resourceParams, response, {
|
|
21098
21098
|
config,
|
|
21099
|
-
resolve: () => buildNetworkSnapshot$
|
|
21099
|
+
resolve: () => buildNetworkSnapshot$16(luvio, config, snapshotRefreshOptions)
|
|
21100
21100
|
});
|
|
21101
21101
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21102
21102
|
}
|
|
21103
|
-
function buildNetworkSnapshot$
|
|
21103
|
+
function buildNetworkSnapshot$16(luvio, config, options) {
|
|
21104
21104
|
const resourceParams = createResourceParams$Z(config);
|
|
21105
21105
|
const request = createResourceRequest$14(resourceParams);
|
|
21106
21106
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -21115,7 +21115,7 @@ function buildNetworkSnapshot$12(luvio, config, options) {
|
|
|
21115
21115
|
});
|
|
21116
21116
|
}
|
|
21117
21117
|
function buildNetworkSnapshotCachePolicy$Q(context, coercedAdapterRequestContext) {
|
|
21118
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
21118
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$16, undefined, false);
|
|
21119
21119
|
}
|
|
21120
21120
|
function buildCachedSnapshotCachePolicy$P(context, storeLookup) {
|
|
21121
21121
|
const { luvio, config } = context;
|
|
@@ -21126,7 +21126,7 @@ function buildCachedSnapshotCachePolicy$P(context, storeLookup) {
|
|
|
21126
21126
|
};
|
|
21127
21127
|
const cacheSnapshot = storeLookup(selector, {
|
|
21128
21128
|
config,
|
|
21129
|
-
resolve: () => buildNetworkSnapshot$
|
|
21129
|
+
resolve: () => buildNetworkSnapshot$16(luvio, config, snapshotRefreshOptions)
|
|
21130
21130
|
});
|
|
21131
21131
|
return cacheSnapshot;
|
|
21132
21132
|
}
|
|
@@ -21263,18 +21263,18 @@ function adapterFragment$H(luvio, config) {
|
|
|
21263
21263
|
function onFetchResponseSuccess$K(luvio, config, resourceParams, response) {
|
|
21264
21264
|
const snapshot = ingestSuccess$P(luvio, resourceParams, response, {
|
|
21265
21265
|
config,
|
|
21266
|
-
resolve: () => buildNetworkSnapshot$
|
|
21266
|
+
resolve: () => buildNetworkSnapshot$15(luvio, config, snapshotRefreshOptions)
|
|
21267
21267
|
});
|
|
21268
21268
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21269
21269
|
}
|
|
21270
21270
|
function onFetchResponseError$L(luvio, config, resourceParams, response) {
|
|
21271
21271
|
const snapshot = ingestError$I(luvio, resourceParams, response, {
|
|
21272
21272
|
config,
|
|
21273
|
-
resolve: () => buildNetworkSnapshot$
|
|
21273
|
+
resolve: () => buildNetworkSnapshot$15(luvio, config, snapshotRefreshOptions)
|
|
21274
21274
|
});
|
|
21275
21275
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21276
21276
|
}
|
|
21277
|
-
function buildNetworkSnapshot$
|
|
21277
|
+
function buildNetworkSnapshot$15(luvio, config, options) {
|
|
21278
21278
|
const resourceParams = createResourceParams$Y(config);
|
|
21279
21279
|
const request = createResourceRequest$13(resourceParams);
|
|
21280
21280
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -21289,7 +21289,7 @@ function buildNetworkSnapshot$11(luvio, config, options) {
|
|
|
21289
21289
|
});
|
|
21290
21290
|
}
|
|
21291
21291
|
function buildNetworkSnapshotCachePolicy$P(context, coercedAdapterRequestContext) {
|
|
21292
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
21292
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$15, undefined, false);
|
|
21293
21293
|
}
|
|
21294
21294
|
function buildCachedSnapshotCachePolicy$O(context, storeLookup) {
|
|
21295
21295
|
const { luvio, config } = context;
|
|
@@ -21300,7 +21300,7 @@ function buildCachedSnapshotCachePolicy$O(context, storeLookup) {
|
|
|
21300
21300
|
};
|
|
21301
21301
|
const cacheSnapshot = storeLookup(selector, {
|
|
21302
21302
|
config,
|
|
21303
|
-
resolve: () => buildNetworkSnapshot$
|
|
21303
|
+
resolve: () => buildNetworkSnapshot$15(luvio, config, snapshotRefreshOptions)
|
|
21304
21304
|
});
|
|
21305
21305
|
return cacheSnapshot;
|
|
21306
21306
|
}
|
|
@@ -21405,18 +21405,18 @@ function adapterFragment$G(luvio, config) {
|
|
|
21405
21405
|
function onFetchResponseSuccess$J(luvio, config, resourceParams, response) {
|
|
21406
21406
|
const snapshot = ingestSuccess$O(luvio, resourceParams, response, {
|
|
21407
21407
|
config,
|
|
21408
|
-
resolve: () => buildNetworkSnapshot$
|
|
21408
|
+
resolve: () => buildNetworkSnapshot$14(luvio, config, snapshotRefreshOptions)
|
|
21409
21409
|
});
|
|
21410
21410
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21411
21411
|
}
|
|
21412
21412
|
function onFetchResponseError$K(luvio, config, resourceParams, response) {
|
|
21413
21413
|
const snapshot = ingestError$H(luvio, resourceParams, response, {
|
|
21414
21414
|
config,
|
|
21415
|
-
resolve: () => buildNetworkSnapshot$
|
|
21415
|
+
resolve: () => buildNetworkSnapshot$14(luvio, config, snapshotRefreshOptions)
|
|
21416
21416
|
});
|
|
21417
21417
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21418
21418
|
}
|
|
21419
|
-
function buildNetworkSnapshot$
|
|
21419
|
+
function buildNetworkSnapshot$14(luvio, config, options) {
|
|
21420
21420
|
const resourceParams = createResourceParams$X(config);
|
|
21421
21421
|
const request = createResourceRequest$12(resourceParams);
|
|
21422
21422
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -21431,7 +21431,7 @@ function buildNetworkSnapshot$10(luvio, config, options) {
|
|
|
21431
21431
|
});
|
|
21432
21432
|
}
|
|
21433
21433
|
function buildNetworkSnapshotCachePolicy$O(context, coercedAdapterRequestContext) {
|
|
21434
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
21434
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$14, undefined, false);
|
|
21435
21435
|
}
|
|
21436
21436
|
function buildCachedSnapshotCachePolicy$N(context, storeLookup) {
|
|
21437
21437
|
const { luvio, config } = context;
|
|
@@ -21442,7 +21442,7 @@ function buildCachedSnapshotCachePolicy$N(context, storeLookup) {
|
|
|
21442
21442
|
};
|
|
21443
21443
|
const cacheSnapshot = storeLookup(selector, {
|
|
21444
21444
|
config,
|
|
21445
|
-
resolve: () => buildNetworkSnapshot$
|
|
21445
|
+
resolve: () => buildNetworkSnapshot$14(luvio, config, snapshotRefreshOptions)
|
|
21446
21446
|
});
|
|
21447
21447
|
return cacheSnapshot;
|
|
21448
21448
|
}
|
|
@@ -21594,18 +21594,18 @@ function adapterFragment$F(luvio, config) {
|
|
|
21594
21594
|
function onFetchResponseSuccess$I(luvio, config, resourceParams, response) {
|
|
21595
21595
|
const snapshot = ingestSuccess$N(luvio, resourceParams, response, {
|
|
21596
21596
|
config,
|
|
21597
|
-
resolve: () => buildNetworkSnapshot
|
|
21597
|
+
resolve: () => buildNetworkSnapshot$13(luvio, config, snapshotRefreshOptions)
|
|
21598
21598
|
});
|
|
21599
21599
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21600
21600
|
}
|
|
21601
21601
|
function onFetchResponseError$J(luvio, config, resourceParams, response) {
|
|
21602
21602
|
const snapshot = ingestError$G(luvio, resourceParams, response, {
|
|
21603
21603
|
config,
|
|
21604
|
-
resolve: () => buildNetworkSnapshot
|
|
21604
|
+
resolve: () => buildNetworkSnapshot$13(luvio, config, snapshotRefreshOptions)
|
|
21605
21605
|
});
|
|
21606
21606
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21607
21607
|
}
|
|
21608
|
-
function buildNetworkSnapshot
|
|
21608
|
+
function buildNetworkSnapshot$13(luvio, config, options) {
|
|
21609
21609
|
const resourceParams = createResourceParams$W(config);
|
|
21610
21610
|
const request = createResourceRequest$11(resourceParams);
|
|
21611
21611
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -21620,7 +21620,7 @@ function buildNetworkSnapshot$$(luvio, config, options) {
|
|
|
21620
21620
|
});
|
|
21621
21621
|
}
|
|
21622
21622
|
function buildNetworkSnapshotCachePolicy$N(context, coercedAdapterRequestContext) {
|
|
21623
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot
|
|
21623
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$13, undefined, false);
|
|
21624
21624
|
}
|
|
21625
21625
|
function buildCachedSnapshotCachePolicy$M(context, storeLookup) {
|
|
21626
21626
|
const { luvio, config } = context;
|
|
@@ -21631,7 +21631,7 @@ function buildCachedSnapshotCachePolicy$M(context, storeLookup) {
|
|
|
21631
21631
|
};
|
|
21632
21632
|
const cacheSnapshot = storeLookup(selector, {
|
|
21633
21633
|
config,
|
|
21634
|
-
resolve: () => buildNetworkSnapshot
|
|
21634
|
+
resolve: () => buildNetworkSnapshot$13(luvio, config, snapshotRefreshOptions)
|
|
21635
21635
|
});
|
|
21636
21636
|
return cacheSnapshot;
|
|
21637
21637
|
}
|
|
@@ -21858,18 +21858,18 @@ function adapterFragment$E(luvio, config) {
|
|
|
21858
21858
|
function onFetchResponseSuccess$H(luvio, config, resourceParams, response) {
|
|
21859
21859
|
const snapshot = ingestSuccess$M(luvio, resourceParams, response, {
|
|
21860
21860
|
config,
|
|
21861
|
-
resolve: () => buildNetworkSnapshot$
|
|
21861
|
+
resolve: () => buildNetworkSnapshot$12(luvio, config, snapshotRefreshOptions)
|
|
21862
21862
|
});
|
|
21863
21863
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21864
21864
|
}
|
|
21865
21865
|
function onFetchResponseError$I(luvio, config, resourceParams, response) {
|
|
21866
21866
|
const snapshot = ingestError$F(luvio, resourceParams, response, {
|
|
21867
21867
|
config,
|
|
21868
|
-
resolve: () => buildNetworkSnapshot$
|
|
21868
|
+
resolve: () => buildNetworkSnapshot$12(luvio, config, snapshotRefreshOptions)
|
|
21869
21869
|
});
|
|
21870
21870
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
21871
21871
|
}
|
|
21872
|
-
function buildNetworkSnapshot$
|
|
21872
|
+
function buildNetworkSnapshot$12(luvio, config, options) {
|
|
21873
21873
|
const resourceParams = createResourceParams$V(config);
|
|
21874
21874
|
const request = createResourceRequest$10(resourceParams);
|
|
21875
21875
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -21884,7 +21884,7 @@ function buildNetworkSnapshot$_(luvio, config, options) {
|
|
|
21884
21884
|
});
|
|
21885
21885
|
}
|
|
21886
21886
|
function buildNetworkSnapshotCachePolicy$M(context, coercedAdapterRequestContext) {
|
|
21887
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
21887
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$12, undefined, false);
|
|
21888
21888
|
}
|
|
21889
21889
|
function buildCachedSnapshotCachePolicy$L(context, storeLookup) {
|
|
21890
21890
|
const { luvio, config } = context;
|
|
@@ -21895,7 +21895,7 @@ function buildCachedSnapshotCachePolicy$L(context, storeLookup) {
|
|
|
21895
21895
|
};
|
|
21896
21896
|
const cacheSnapshot = storeLookup(selector, {
|
|
21897
21897
|
config,
|
|
21898
|
-
resolve: () => buildNetworkSnapshot$
|
|
21898
|
+
resolve: () => buildNetworkSnapshot$12(luvio, config, snapshotRefreshOptions)
|
|
21899
21899
|
});
|
|
21900
21900
|
return cacheSnapshot;
|
|
21901
21901
|
}
|
|
@@ -23068,18 +23068,18 @@ function adapterFragment$D(luvio, config) {
|
|
|
23068
23068
|
function onFetchResponseSuccess$G(luvio, config, resourceParams, response) {
|
|
23069
23069
|
const snapshot = ingestSuccess$L(luvio, resourceParams, response, {
|
|
23070
23070
|
config,
|
|
23071
|
-
resolve: () => buildNetworkSnapshot$
|
|
23071
|
+
resolve: () => buildNetworkSnapshot$11(luvio, config, snapshotRefreshOptions)
|
|
23072
23072
|
});
|
|
23073
23073
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
23074
23074
|
}
|
|
23075
23075
|
function onFetchResponseError$H(luvio, config, resourceParams, response) {
|
|
23076
23076
|
const snapshot = ingestError$E(luvio, resourceParams, response, {
|
|
23077
23077
|
config,
|
|
23078
|
-
resolve: () => buildNetworkSnapshot$
|
|
23078
|
+
resolve: () => buildNetworkSnapshot$11(luvio, config, snapshotRefreshOptions)
|
|
23079
23079
|
});
|
|
23080
23080
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
23081
23081
|
}
|
|
23082
|
-
function buildNetworkSnapshot$
|
|
23082
|
+
function buildNetworkSnapshot$11(luvio, config, options) {
|
|
23083
23083
|
const resourceParams = createResourceParams$U(config);
|
|
23084
23084
|
const request = createResourceRequest$$(resourceParams);
|
|
23085
23085
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -23094,7 +23094,7 @@ function buildNetworkSnapshot$Z(luvio, config, options) {
|
|
|
23094
23094
|
});
|
|
23095
23095
|
}
|
|
23096
23096
|
function buildNetworkSnapshotCachePolicy$L(context, coercedAdapterRequestContext) {
|
|
23097
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
23097
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$11, undefined, false);
|
|
23098
23098
|
}
|
|
23099
23099
|
function buildCachedSnapshotCachePolicy$K(context, storeLookup) {
|
|
23100
23100
|
const { luvio, config } = context;
|
|
@@ -23105,7 +23105,7 @@ function buildCachedSnapshotCachePolicy$K(context, storeLookup) {
|
|
|
23105
23105
|
};
|
|
23106
23106
|
const cacheSnapshot = storeLookup(selector, {
|
|
23107
23107
|
config,
|
|
23108
|
-
resolve: () => buildNetworkSnapshot$
|
|
23108
|
+
resolve: () => buildNetworkSnapshot$11(luvio, config, snapshotRefreshOptions)
|
|
23109
23109
|
});
|
|
23110
23110
|
return cacheSnapshot;
|
|
23111
23111
|
}
|
|
@@ -23246,7 +23246,7 @@ function adapterFragment$C(luvio, config) {
|
|
|
23246
23246
|
const resourceParams = createResourceParams$T(config);
|
|
23247
23247
|
return selectFields$6(luvio, resourceParams);
|
|
23248
23248
|
}
|
|
23249
|
-
function buildNetworkSnapshot$
|
|
23249
|
+
function buildNetworkSnapshot$10(luvio, config, options) {
|
|
23250
23250
|
const resourceParams = createResourceParams$T(config);
|
|
23251
23251
|
const request = createResourceRequest$_(resourceParams);
|
|
23252
23252
|
const key = keyBuilder$3b(luvio, config);
|
|
@@ -23322,18 +23322,18 @@ function buildCachedSnapshot$6(luvio, config) {
|
|
|
23322
23322
|
};
|
|
23323
23323
|
return luvio.storeLookup(selector, {
|
|
23324
23324
|
config,
|
|
23325
|
-
resolve: () => buildNetworkSnapshot$
|
|
23325
|
+
resolve: () => buildNetworkSnapshot$10(luvio, config, snapshotRefreshOptions)
|
|
23326
23326
|
});
|
|
23327
23327
|
}
|
|
23328
23328
|
function onFetchResponseError$G(luvio, config, resourceParams, response) {
|
|
23329
23329
|
const snapshot = ingestError$D(luvio, resourceParams, response, {
|
|
23330
23330
|
config,
|
|
23331
|
-
resolve: () => buildNetworkSnapshot$
|
|
23331
|
+
resolve: () => buildNetworkSnapshot$10(luvio, config, snapshotRefreshOptions)
|
|
23332
23332
|
});
|
|
23333
23333
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
23334
23334
|
}
|
|
23335
23335
|
function buildNetworkSnapshotCachePolicy$K(context, coercedAdapterRequestContext) {
|
|
23336
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
23336
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$10, undefined, false);
|
|
23337
23337
|
}
|
|
23338
23338
|
function buildCachedSnapshotCachePolicy$J(context, storeLookup) {
|
|
23339
23339
|
const { luvio, config } = context;
|
|
@@ -23344,7 +23344,7 @@ function buildCachedSnapshotCachePolicy$J(context, storeLookup) {
|
|
|
23344
23344
|
};
|
|
23345
23345
|
const cacheSnapshot = storeLookup(selector, {
|
|
23346
23346
|
config,
|
|
23347
|
-
resolve: () => buildNetworkSnapshot$
|
|
23347
|
+
resolve: () => buildNetworkSnapshot$10(luvio, config, snapshotRefreshOptions)
|
|
23348
23348
|
});
|
|
23349
23349
|
return cacheSnapshot;
|
|
23350
23350
|
}
|
|
@@ -23459,18 +23459,18 @@ function adapterFragment$B(luvio, config) {
|
|
|
23459
23459
|
function onFetchResponseSuccess$F(luvio, config, resourceParams, response) {
|
|
23460
23460
|
const snapshot = ingestSuccess$K(luvio, resourceParams, response, {
|
|
23461
23461
|
config,
|
|
23462
|
-
resolve: () => buildNetworkSnapshot
|
|
23462
|
+
resolve: () => buildNetworkSnapshot$$(luvio, config, snapshotRefreshOptions)
|
|
23463
23463
|
});
|
|
23464
23464
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
23465
23465
|
}
|
|
23466
23466
|
function onFetchResponseError$F(luvio, config, resourceParams, response) {
|
|
23467
23467
|
const snapshot = ingestError$C(luvio, resourceParams, response, {
|
|
23468
23468
|
config,
|
|
23469
|
-
resolve: () => buildNetworkSnapshot
|
|
23469
|
+
resolve: () => buildNetworkSnapshot$$(luvio, config, snapshotRefreshOptions)
|
|
23470
23470
|
});
|
|
23471
23471
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
23472
23472
|
}
|
|
23473
|
-
function buildNetworkSnapshot
|
|
23473
|
+
function buildNetworkSnapshot$$(luvio, config, options) {
|
|
23474
23474
|
const resourceParams = createResourceParams$S(config);
|
|
23475
23475
|
const request = createResourceRequest$Z(resourceParams);
|
|
23476
23476
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -23485,7 +23485,7 @@ function buildNetworkSnapshot$X(luvio, config, options) {
|
|
|
23485
23485
|
});
|
|
23486
23486
|
}
|
|
23487
23487
|
function buildNetworkSnapshotCachePolicy$J(context, coercedAdapterRequestContext) {
|
|
23488
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot
|
|
23488
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$$, undefined, false);
|
|
23489
23489
|
}
|
|
23490
23490
|
function buildCachedSnapshotCachePolicy$I(context, storeLookup) {
|
|
23491
23491
|
const { luvio, config } = context;
|
|
@@ -23496,7 +23496,7 @@ function buildCachedSnapshotCachePolicy$I(context, storeLookup) {
|
|
|
23496
23496
|
};
|
|
23497
23497
|
const cacheSnapshot = storeLookup(selector, {
|
|
23498
23498
|
config,
|
|
23499
|
-
resolve: () => buildNetworkSnapshot
|
|
23499
|
+
resolve: () => buildNetworkSnapshot$$(luvio, config, snapshotRefreshOptions)
|
|
23500
23500
|
});
|
|
23501
23501
|
return cacheSnapshot;
|
|
23502
23502
|
}
|
|
@@ -23601,18 +23601,18 @@ function adapterFragment$A(luvio, config) {
|
|
|
23601
23601
|
function onFetchResponseSuccess$E(luvio, config, resourceParams, response) {
|
|
23602
23602
|
const snapshot = ingestSuccess$J(luvio, resourceParams, response, {
|
|
23603
23603
|
config,
|
|
23604
|
-
resolve: () => buildNetworkSnapshot$
|
|
23604
|
+
resolve: () => buildNetworkSnapshot$_(luvio, config, snapshotRefreshOptions)
|
|
23605
23605
|
});
|
|
23606
23606
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
23607
23607
|
}
|
|
23608
23608
|
function onFetchResponseError$E(luvio, config, resourceParams, response) {
|
|
23609
23609
|
const snapshot = ingestError$B(luvio, resourceParams, response, {
|
|
23610
23610
|
config,
|
|
23611
|
-
resolve: () => buildNetworkSnapshot$
|
|
23611
|
+
resolve: () => buildNetworkSnapshot$_(luvio, config, snapshotRefreshOptions)
|
|
23612
23612
|
});
|
|
23613
23613
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
23614
23614
|
}
|
|
23615
|
-
function buildNetworkSnapshot$
|
|
23615
|
+
function buildNetworkSnapshot$_(luvio, config, options) {
|
|
23616
23616
|
const resourceParams = createResourceParams$R(config);
|
|
23617
23617
|
const request = createResourceRequest$Y(resourceParams);
|
|
23618
23618
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -23627,7 +23627,7 @@ function buildNetworkSnapshot$W(luvio, config, options) {
|
|
|
23627
23627
|
});
|
|
23628
23628
|
}
|
|
23629
23629
|
function buildNetworkSnapshotCachePolicy$I(context, coercedAdapterRequestContext) {
|
|
23630
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
23630
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$_, undefined, false);
|
|
23631
23631
|
}
|
|
23632
23632
|
function buildCachedSnapshotCachePolicy$H(context, storeLookup) {
|
|
23633
23633
|
const { luvio, config } = context;
|
|
@@ -23638,7 +23638,7 @@ function buildCachedSnapshotCachePolicy$H(context, storeLookup) {
|
|
|
23638
23638
|
};
|
|
23639
23639
|
const cacheSnapshot = storeLookup(selector, {
|
|
23640
23640
|
config,
|
|
23641
|
-
resolve: () => buildNetworkSnapshot$
|
|
23641
|
+
resolve: () => buildNetworkSnapshot$_(luvio, config, snapshotRefreshOptions)
|
|
23642
23642
|
});
|
|
23643
23643
|
return cacheSnapshot;
|
|
23644
23644
|
}
|
|
@@ -24108,18 +24108,18 @@ function adapterFragment$z(luvio, config) {
|
|
|
24108
24108
|
function onFetchResponseSuccess$D(luvio, config, resourceParams, response) {
|
|
24109
24109
|
const snapshot = ingestSuccess$H(luvio, resourceParams, response, {
|
|
24110
24110
|
config,
|
|
24111
|
-
resolve: () => buildNetworkSnapshot$
|
|
24111
|
+
resolve: () => buildNetworkSnapshot$Z(luvio, config, snapshotRefreshOptions)
|
|
24112
24112
|
});
|
|
24113
24113
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
24114
24114
|
}
|
|
24115
24115
|
function onFetchResponseError$D(luvio, config, resourceParams, response) {
|
|
24116
24116
|
const snapshot = ingestError$z(luvio, resourceParams, response, {
|
|
24117
24117
|
config,
|
|
24118
|
-
resolve: () => buildNetworkSnapshot$
|
|
24118
|
+
resolve: () => buildNetworkSnapshot$Z(luvio, config, snapshotRefreshOptions)
|
|
24119
24119
|
});
|
|
24120
24120
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
24121
24121
|
}
|
|
24122
|
-
function buildNetworkSnapshot$
|
|
24122
|
+
function buildNetworkSnapshot$Z(luvio, config, options) {
|
|
24123
24123
|
const resourceParams = createResourceParams$Q(config);
|
|
24124
24124
|
const request = createResourceRequest$W(resourceParams);
|
|
24125
24125
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -24134,7 +24134,7 @@ function buildNetworkSnapshot$V(luvio, config, options) {
|
|
|
24134
24134
|
});
|
|
24135
24135
|
}
|
|
24136
24136
|
function buildNetworkSnapshotCachePolicy$H(context, coercedAdapterRequestContext) {
|
|
24137
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
24137
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$Z, 'get', false);
|
|
24138
24138
|
}
|
|
24139
24139
|
function buildCachedSnapshotCachePolicy$G(context, storeLookup) {
|
|
24140
24140
|
const { luvio, config } = context;
|
|
@@ -24145,7 +24145,7 @@ function buildCachedSnapshotCachePolicy$G(context, storeLookup) {
|
|
|
24145
24145
|
};
|
|
24146
24146
|
const cacheSnapshot = storeLookup(selector, {
|
|
24147
24147
|
config,
|
|
24148
|
-
resolve: () => buildNetworkSnapshot$
|
|
24148
|
+
resolve: () => buildNetworkSnapshot$Z(luvio, config, snapshotRefreshOptions)
|
|
24149
24149
|
});
|
|
24150
24150
|
return cacheSnapshot;
|
|
24151
24151
|
}
|
|
@@ -24201,18 +24201,18 @@ function adapterFragment$y(luvio, config) {
|
|
|
24201
24201
|
function onFetchResponseSuccess$C(luvio, config, resourceParams, response) {
|
|
24202
24202
|
const snapshot = ingestSuccess$I(luvio, resourceParams, response, {
|
|
24203
24203
|
config,
|
|
24204
|
-
resolve: () => buildNetworkSnapshot$
|
|
24204
|
+
resolve: () => buildNetworkSnapshot$Y(luvio, config, snapshotRefreshOptions)
|
|
24205
24205
|
});
|
|
24206
24206
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
24207
24207
|
}
|
|
24208
24208
|
function onFetchResponseError$C(luvio, config, resourceParams, response) {
|
|
24209
24209
|
const snapshot = ingestError$A(luvio, resourceParams, response, {
|
|
24210
24210
|
config,
|
|
24211
|
-
resolve: () => buildNetworkSnapshot$
|
|
24211
|
+
resolve: () => buildNetworkSnapshot$Y(luvio, config, snapshotRefreshOptions)
|
|
24212
24212
|
});
|
|
24213
24213
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
24214
24214
|
}
|
|
24215
|
-
function buildNetworkSnapshot$
|
|
24215
|
+
function buildNetworkSnapshot$Y(luvio, config, options) {
|
|
24216
24216
|
const resourceParams = createResourceParams$P(config);
|
|
24217
24217
|
const request = createResourceRequest$X(resourceParams);
|
|
24218
24218
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -24227,7 +24227,7 @@ function buildNetworkSnapshot$U(luvio, config, options) {
|
|
|
24227
24227
|
});
|
|
24228
24228
|
}
|
|
24229
24229
|
function buildNetworkSnapshotCachePolicy$G(context, coercedAdapterRequestContext) {
|
|
24230
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
24230
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$Y, 'get', false);
|
|
24231
24231
|
}
|
|
24232
24232
|
function buildCachedSnapshotCachePolicy$F(context, storeLookup) {
|
|
24233
24233
|
const { luvio, config } = context;
|
|
@@ -24238,7 +24238,7 @@ function buildCachedSnapshotCachePolicy$F(context, storeLookup) {
|
|
|
24238
24238
|
};
|
|
24239
24239
|
const cacheSnapshot = storeLookup(selector, {
|
|
24240
24240
|
config,
|
|
24241
|
-
resolve: () => buildNetworkSnapshot$
|
|
24241
|
+
resolve: () => buildNetworkSnapshot$Y(luvio, config, snapshotRefreshOptions)
|
|
24242
24242
|
});
|
|
24243
24243
|
return cacheSnapshot;
|
|
24244
24244
|
}
|
|
@@ -24344,18 +24344,18 @@ function adapterFragment$x(luvio, config) {
|
|
|
24344
24344
|
function onFetchResponseSuccess$B(luvio, config, resourceParams, response) {
|
|
24345
24345
|
const snapshot = ingestSuccess$G(luvio, resourceParams, response, {
|
|
24346
24346
|
config,
|
|
24347
|
-
resolve: () => buildNetworkSnapshot$
|
|
24347
|
+
resolve: () => buildNetworkSnapshot$X(luvio, config, snapshotRefreshOptions)
|
|
24348
24348
|
});
|
|
24349
24349
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
24350
24350
|
}
|
|
24351
24351
|
function onFetchResponseError$B(luvio, config, resourceParams, response) {
|
|
24352
24352
|
const snapshot = ingestError$y(luvio, resourceParams, response, {
|
|
24353
24353
|
config,
|
|
24354
|
-
resolve: () => buildNetworkSnapshot$
|
|
24354
|
+
resolve: () => buildNetworkSnapshot$X(luvio, config, snapshotRefreshOptions)
|
|
24355
24355
|
});
|
|
24356
24356
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
24357
24357
|
}
|
|
24358
|
-
function buildNetworkSnapshot$
|
|
24358
|
+
function buildNetworkSnapshot$X(luvio, config, options) {
|
|
24359
24359
|
const resourceParams = createResourceParams$O(config);
|
|
24360
24360
|
const request = createResourceRequest$V(resourceParams);
|
|
24361
24361
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -24370,7 +24370,7 @@ function buildNetworkSnapshot$T(luvio, config, options) {
|
|
|
24370
24370
|
});
|
|
24371
24371
|
}
|
|
24372
24372
|
function buildNetworkSnapshotCachePolicy$F(context, coercedAdapterRequestContext) {
|
|
24373
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
24373
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$X, undefined, false);
|
|
24374
24374
|
}
|
|
24375
24375
|
function buildCachedSnapshotCachePolicy$E(context, storeLookup) {
|
|
24376
24376
|
const { luvio, config } = context;
|
|
@@ -24381,7 +24381,7 @@ function buildCachedSnapshotCachePolicy$E(context, storeLookup) {
|
|
|
24381
24381
|
};
|
|
24382
24382
|
const cacheSnapshot = storeLookup(selector, {
|
|
24383
24383
|
config,
|
|
24384
|
-
resolve: () => buildNetworkSnapshot$
|
|
24384
|
+
resolve: () => buildNetworkSnapshot$X(luvio, config, snapshotRefreshOptions)
|
|
24385
24385
|
});
|
|
24386
24386
|
return cacheSnapshot;
|
|
24387
24387
|
}
|
|
@@ -25598,18 +25598,18 @@ function adapterFragment$w(luvio, config) {
|
|
|
25598
25598
|
function onFetchResponseSuccess$A(luvio, config, resourceParams, response) {
|
|
25599
25599
|
const snapshot = ingestSuccess$F(luvio, resourceParams, response, {
|
|
25600
25600
|
config,
|
|
25601
|
-
resolve: () => buildNetworkSnapshot$
|
|
25601
|
+
resolve: () => buildNetworkSnapshot$W(luvio, config, snapshotRefreshOptions)
|
|
25602
25602
|
});
|
|
25603
25603
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
25604
25604
|
}
|
|
25605
25605
|
function onFetchResponseError$A(luvio, config, resourceParams, response) {
|
|
25606
25606
|
const snapshot = ingestError$x(luvio, resourceParams, response, {
|
|
25607
25607
|
config,
|
|
25608
|
-
resolve: () => buildNetworkSnapshot$
|
|
25608
|
+
resolve: () => buildNetworkSnapshot$W(luvio, config, snapshotRefreshOptions)
|
|
25609
25609
|
});
|
|
25610
25610
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
25611
25611
|
}
|
|
25612
|
-
function buildNetworkSnapshot$
|
|
25612
|
+
function buildNetworkSnapshot$W(luvio, config, options) {
|
|
25613
25613
|
const resourceParams = createResourceParams$N(config);
|
|
25614
25614
|
const request = createResourceRequest$U(resourceParams);
|
|
25615
25615
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -25624,7 +25624,7 @@ function buildNetworkSnapshot$S(luvio, config, options) {
|
|
|
25624
25624
|
});
|
|
25625
25625
|
}
|
|
25626
25626
|
function buildNetworkSnapshotCachePolicy$E(context, coercedAdapterRequestContext) {
|
|
25627
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
25627
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$W, undefined, false);
|
|
25628
25628
|
}
|
|
25629
25629
|
function buildCachedSnapshotCachePolicy$D(context, storeLookup) {
|
|
25630
25630
|
const { luvio, config } = context;
|
|
@@ -25635,7 +25635,7 @@ function buildCachedSnapshotCachePolicy$D(context, storeLookup) {
|
|
|
25635
25635
|
};
|
|
25636
25636
|
const cacheSnapshot = storeLookup(selector, {
|
|
25637
25637
|
config,
|
|
25638
|
-
resolve: () => buildNetworkSnapshot$
|
|
25638
|
+
resolve: () => buildNetworkSnapshot$W(luvio, config, snapshotRefreshOptions)
|
|
25639
25639
|
});
|
|
25640
25640
|
return cacheSnapshot;
|
|
25641
25641
|
}
|
|
@@ -25741,18 +25741,18 @@ function adapterFragment$u(luvio, config) {
|
|
|
25741
25741
|
function onFetchResponseSuccess$y(luvio, config, resourceParams, response) {
|
|
25742
25742
|
const snapshot = ingestSuccess$D(luvio, resourceParams, response, {
|
|
25743
25743
|
config,
|
|
25744
|
-
resolve: () => buildNetworkSnapshot$
|
|
25744
|
+
resolve: () => buildNetworkSnapshot$U(luvio, config, snapshotRefreshOptions)
|
|
25745
25745
|
});
|
|
25746
25746
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
25747
25747
|
}
|
|
25748
25748
|
function onFetchResponseError$y(luvio, config, resourceParams, response) {
|
|
25749
25749
|
const snapshot = ingestError$v(luvio, resourceParams, response, {
|
|
25750
25750
|
config,
|
|
25751
|
-
resolve: () => buildNetworkSnapshot$
|
|
25751
|
+
resolve: () => buildNetworkSnapshot$U(luvio, config, snapshotRefreshOptions)
|
|
25752
25752
|
});
|
|
25753
25753
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
25754
25754
|
}
|
|
25755
|
-
function buildNetworkSnapshot$
|
|
25755
|
+
function buildNetworkSnapshot$U(luvio, config, options) {
|
|
25756
25756
|
const resourceParams = createResourceParams$L(config);
|
|
25757
25757
|
const request = createResourceRequest$S(resourceParams);
|
|
25758
25758
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -25767,7 +25767,7 @@ function buildNetworkSnapshot$Q(luvio, config, options) {
|
|
|
25767
25767
|
});
|
|
25768
25768
|
}
|
|
25769
25769
|
function buildNetworkSnapshotCachePolicy$C(context, coercedAdapterRequestContext) {
|
|
25770
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
25770
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$U, undefined, false);
|
|
25771
25771
|
}
|
|
25772
25772
|
function buildCachedSnapshotCachePolicy$B(context, storeLookup) {
|
|
25773
25773
|
const { luvio, config } = context;
|
|
@@ -25778,7 +25778,7 @@ function buildCachedSnapshotCachePolicy$B(context, storeLookup) {
|
|
|
25778
25778
|
};
|
|
25779
25779
|
const cacheSnapshot = storeLookup(selector, {
|
|
25780
25780
|
config,
|
|
25781
|
-
resolve: () => buildNetworkSnapshot$
|
|
25781
|
+
resolve: () => buildNetworkSnapshot$U(luvio, config, snapshotRefreshOptions)
|
|
25782
25782
|
});
|
|
25783
25783
|
return cacheSnapshot;
|
|
25784
25784
|
}
|
|
@@ -26342,18 +26342,18 @@ function adapterFragment$t(luvio, config) {
|
|
|
26342
26342
|
function onFetchResponseSuccess$x(luvio, config, resourceParams, response) {
|
|
26343
26343
|
const snapshot = ingestSuccess$C(luvio, resourceParams, response, {
|
|
26344
26344
|
config,
|
|
26345
|
-
resolve: () => buildNetworkSnapshot$
|
|
26345
|
+
resolve: () => buildNetworkSnapshot$T(luvio, config, snapshotRefreshOptions)
|
|
26346
26346
|
});
|
|
26347
26347
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
26348
26348
|
}
|
|
26349
26349
|
function onFetchResponseError$x(luvio, config, resourceParams, response) {
|
|
26350
26350
|
const snapshot = ingestError$u(luvio, resourceParams, response, {
|
|
26351
26351
|
config,
|
|
26352
|
-
resolve: () => buildNetworkSnapshot$
|
|
26352
|
+
resolve: () => buildNetworkSnapshot$T(luvio, config, snapshotRefreshOptions)
|
|
26353
26353
|
});
|
|
26354
26354
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
26355
26355
|
}
|
|
26356
|
-
function buildNetworkSnapshot$
|
|
26356
|
+
function buildNetworkSnapshot$T(luvio, config, options) {
|
|
26357
26357
|
const resourceParams = createResourceParams$K(config);
|
|
26358
26358
|
const request = createResourceRequest$R(resourceParams);
|
|
26359
26359
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -26368,7 +26368,7 @@ function buildNetworkSnapshot$P(luvio, config, options) {
|
|
|
26368
26368
|
});
|
|
26369
26369
|
}
|
|
26370
26370
|
function buildNetworkSnapshotCachePolicy$B(context, coercedAdapterRequestContext) {
|
|
26371
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
26371
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$T, undefined, false);
|
|
26372
26372
|
}
|
|
26373
26373
|
function buildCachedSnapshotCachePolicy$A(context, storeLookup) {
|
|
26374
26374
|
const { luvio, config } = context;
|
|
@@ -26379,7 +26379,7 @@ function buildCachedSnapshotCachePolicy$A(context, storeLookup) {
|
|
|
26379
26379
|
};
|
|
26380
26380
|
const cacheSnapshot = storeLookup(selector, {
|
|
26381
26381
|
config,
|
|
26382
|
-
resolve: () => buildNetworkSnapshot$
|
|
26382
|
+
resolve: () => buildNetworkSnapshot$T(luvio, config, snapshotRefreshOptions)
|
|
26383
26383
|
});
|
|
26384
26384
|
return cacheSnapshot;
|
|
26385
26385
|
}
|
|
@@ -26455,7 +26455,7 @@ function onFetchResponseSuccess$w(luvio, config, resourceParams, response) {
|
|
|
26455
26455
|
variables: {},
|
|
26456
26456
|
}, {
|
|
26457
26457
|
config,
|
|
26458
|
-
resolve: () => buildNetworkSnapshot$
|
|
26458
|
+
resolve: () => buildNetworkSnapshot$S(luvio, config, snapshotRefreshOptions),
|
|
26459
26459
|
});
|
|
26460
26460
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
26461
26461
|
}
|
|
@@ -26502,7 +26502,7 @@ function buildCachedSnapshotCachePolicy$z(context, storeLookup) {
|
|
|
26502
26502
|
};
|
|
26503
26503
|
return storeLookup(selector, {
|
|
26504
26504
|
config,
|
|
26505
|
-
resolve: () => buildNetworkSnapshot$
|
|
26505
|
+
resolve: () => buildNetworkSnapshot$S(luvio, config, snapshotRefreshOptions),
|
|
26506
26506
|
});
|
|
26507
26507
|
}
|
|
26508
26508
|
|
|
@@ -26536,11 +26536,11 @@ function validateAdapterConfig$P(untrustedConfig, configPropertyNames) {
|
|
|
26536
26536
|
function onFetchResponseError$w(luvio, config, resourceParams, response) {
|
|
26537
26537
|
const snapshot = ingestError$t(luvio, resourceParams, response, {
|
|
26538
26538
|
config,
|
|
26539
|
-
resolve: () => buildNetworkSnapshot$
|
|
26539
|
+
resolve: () => buildNetworkSnapshot$S(luvio, config, snapshotRefreshOptions)
|
|
26540
26540
|
});
|
|
26541
26541
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
26542
26542
|
}
|
|
26543
|
-
function buildNetworkSnapshot$
|
|
26543
|
+
function buildNetworkSnapshot$S(luvio, config, options) {
|
|
26544
26544
|
const resourceParams = createResourceParams$J(config);
|
|
26545
26545
|
const request = createResourceRequest$Q(resourceParams);
|
|
26546
26546
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -26555,7 +26555,7 @@ function buildNetworkSnapshot$O(luvio, config, options) {
|
|
|
26555
26555
|
});
|
|
26556
26556
|
}
|
|
26557
26557
|
function buildNetworkSnapshotCachePolicy$A(context, coercedAdapterRequestContext) {
|
|
26558
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
26558
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$S, undefined, false);
|
|
26559
26559
|
}
|
|
26560
26560
|
const getLayoutAdapterFactory = (luvio) => function UiApi__getLayout(untrustedConfig, requestContext) {
|
|
26561
26561
|
const config = validateAdapterConfig$Q(untrustedConfig);
|
|
@@ -26599,11 +26599,11 @@ function buildCachedSnapshot$5(luvio, config) {
|
|
|
26599
26599
|
};
|
|
26600
26600
|
return luvio.storeLookup(selector, {
|
|
26601
26601
|
config,
|
|
26602
|
-
resolve: () => buildNetworkSnapshot$
|
|
26602
|
+
resolve: () => buildNetworkSnapshot$R(luvio, config),
|
|
26603
26603
|
});
|
|
26604
26604
|
}
|
|
26605
26605
|
|
|
26606
|
-
function buildNetworkSnapshot$
|
|
26606
|
+
function buildNetworkSnapshot$R(luvio, config, context) {
|
|
26607
26607
|
const { resourceParams, request, key } = prepareRequest$4(luvio, config);
|
|
26608
26608
|
return luvio
|
|
26609
26609
|
.dispatchResourceRequest(request, context)
|
|
@@ -26634,7 +26634,7 @@ function onFetchResponseSuccess$v(luvio, config, key, response) {
|
|
|
26634
26634
|
function onFetchResponseError$v(luvio, config, key, error) {
|
|
26635
26635
|
const errorSnapshot = luvio.errorSnapshot(error, {
|
|
26636
26636
|
config,
|
|
26637
|
-
resolve: () => buildNetworkSnapshot$
|
|
26637
|
+
resolve: () => buildNetworkSnapshot$R(luvio, config),
|
|
26638
26638
|
});
|
|
26639
26639
|
luvio.storeIngestError(key, errorSnapshot);
|
|
26640
26640
|
return luvio.storeBroadcast().then(() => errorSnapshot);
|
|
@@ -26717,7 +26717,7 @@ function buildCachedSnapshotCachePolicy$y(context, storeLookup) {
|
|
|
26717
26717
|
};
|
|
26718
26718
|
return storeLookup(selector, {
|
|
26719
26719
|
config,
|
|
26720
|
-
resolve: () => buildNetworkSnapshot$
|
|
26720
|
+
resolve: () => buildNetworkSnapshot$R(luvio, config),
|
|
26721
26721
|
});
|
|
26722
26722
|
}
|
|
26723
26723
|
|
|
@@ -26748,7 +26748,7 @@ function validateAdapterConfig$N(untrustedConfig, configPropertyNames) {
|
|
|
26748
26748
|
return config;
|
|
26749
26749
|
}
|
|
26750
26750
|
function buildNetworkSnapshotCachePolicy$z(context, coercedAdapterRequestContext) {
|
|
26751
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
26751
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$R, undefined, false);
|
|
26752
26752
|
}
|
|
26753
26753
|
const getLayoutUserStateAdapterFactory = (luvio) => function UiApi__getLayoutUserState(untrustedConfig, requestContext) {
|
|
26754
26754
|
const config = validateAdapterConfig$O(untrustedConfig, getLayoutUserState_ConfigPropertyNames);
|
|
@@ -27122,18 +27122,18 @@ function adapterFragment$s(luvio, config) {
|
|
|
27122
27122
|
function onFetchResponseSuccess$u(luvio, config, resourceParams, response) {
|
|
27123
27123
|
const snapshot = ingestSuccess$A(luvio, resourceParams, response, {
|
|
27124
27124
|
config,
|
|
27125
|
-
resolve: () => buildNetworkSnapshot$
|
|
27125
|
+
resolve: () => buildNetworkSnapshot$Q(luvio, config, snapshotRefreshOptions)
|
|
27126
27126
|
});
|
|
27127
27127
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
27128
27128
|
}
|
|
27129
27129
|
function onFetchResponseError$u(luvio, config, resourceParams, response) {
|
|
27130
27130
|
const snapshot = ingestError$r(luvio, resourceParams, response, {
|
|
27131
27131
|
config,
|
|
27132
|
-
resolve: () => buildNetworkSnapshot$
|
|
27132
|
+
resolve: () => buildNetworkSnapshot$Q(luvio, config, snapshotRefreshOptions)
|
|
27133
27133
|
});
|
|
27134
27134
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
27135
27135
|
}
|
|
27136
|
-
function buildNetworkSnapshot$
|
|
27136
|
+
function buildNetworkSnapshot$Q(luvio, config, options) {
|
|
27137
27137
|
const resourceParams = createResourceParams$I(config);
|
|
27138
27138
|
const request = createResourceRequest$N(resourceParams);
|
|
27139
27139
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -27148,7 +27148,7 @@ function buildNetworkSnapshot$M(luvio, config, options) {
|
|
|
27148
27148
|
});
|
|
27149
27149
|
}
|
|
27150
27150
|
function buildNetworkSnapshotCachePolicy$y(context, coercedAdapterRequestContext) {
|
|
27151
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
27151
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$Q, undefined, false);
|
|
27152
27152
|
}
|
|
27153
27153
|
function buildCachedSnapshotCachePolicy$x(context, storeLookup) {
|
|
27154
27154
|
const { luvio, config } = context;
|
|
@@ -27159,7 +27159,7 @@ function buildCachedSnapshotCachePolicy$x(context, storeLookup) {
|
|
|
27159
27159
|
};
|
|
27160
27160
|
const cacheSnapshot = storeLookup(selector, {
|
|
27161
27161
|
config,
|
|
27162
|
-
resolve: () => buildNetworkSnapshot$
|
|
27162
|
+
resolve: () => buildNetworkSnapshot$Q(luvio, config, snapshotRefreshOptions)
|
|
27163
27163
|
});
|
|
27164
27164
|
return cacheSnapshot;
|
|
27165
27165
|
}
|
|
@@ -27270,14 +27270,14 @@ function adapterFragment$r(luvio, config) {
|
|
|
27270
27270
|
function onFetchResponseSuccess$t(luvio, config, resourceParams, response) {
|
|
27271
27271
|
const snapshot = ingestSuccess$z(luvio, resourceParams, response, {
|
|
27272
27272
|
config,
|
|
27273
|
-
resolve: () => buildNetworkSnapshot$
|
|
27273
|
+
resolve: () => buildNetworkSnapshot$P(luvio, config, snapshotRefreshOptions)
|
|
27274
27274
|
});
|
|
27275
27275
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
27276
27276
|
}
|
|
27277
27277
|
function onFetchResponseError$t(luvio, config, resourceParams, response) {
|
|
27278
27278
|
const snapshot = ingestError$q(luvio, resourceParams, response, {
|
|
27279
27279
|
config,
|
|
27280
|
-
resolve: () => buildNetworkSnapshot$
|
|
27280
|
+
resolve: () => buildNetworkSnapshot$P(luvio, config, snapshotRefreshOptions)
|
|
27281
27281
|
});
|
|
27282
27282
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
27283
27283
|
}
|
|
@@ -27356,7 +27356,7 @@ function getPaginationMetadata$2(luvio, resourceParams) {
|
|
|
27356
27356
|
}
|
|
27357
27357
|
return node.data.__metadata;
|
|
27358
27358
|
}
|
|
27359
|
-
function buildNetworkSnapshot$
|
|
27359
|
+
function buildNetworkSnapshot$P(luvio, config, options, cacheSnapshot) {
|
|
27360
27360
|
const resourceParams = createResourceParams$H(config);
|
|
27361
27361
|
const request = prepareRequest$3(luvio, config, resourceParams, cacheSnapshot);
|
|
27362
27362
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -27371,7 +27371,7 @@ function buildNetworkSnapshot$L(luvio, config, options, cacheSnapshot) {
|
|
|
27371
27371
|
});
|
|
27372
27372
|
}
|
|
27373
27373
|
function buildNetworkSnapshotCachePolicy$x(context, coercedAdapterRequestContext) {
|
|
27374
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
27374
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$P, undefined, true);
|
|
27375
27375
|
}
|
|
27376
27376
|
function buildCachedSnapshotCachePolicy$w(context, storeLookup) {
|
|
27377
27377
|
const { luvio, config } = context;
|
|
@@ -27382,7 +27382,7 @@ function buildCachedSnapshotCachePolicy$w(context, storeLookup) {
|
|
|
27382
27382
|
};
|
|
27383
27383
|
const cacheSnapshot = storeLookup(selector, {
|
|
27384
27384
|
config,
|
|
27385
|
-
resolve: () => buildNetworkSnapshot$
|
|
27385
|
+
resolve: () => buildNetworkSnapshot$P(luvio, config, snapshotRefreshOptions)
|
|
27386
27386
|
});
|
|
27387
27387
|
if (isUnfulfilledSnapshot$1(cacheSnapshot) && cacheSnapshot.data !== undefined) {
|
|
27388
27388
|
context.cacheSnapshot = cacheSnapshot;
|
|
@@ -27588,7 +27588,7 @@ function validateAdapterConfig$K(untrustedConfig, configPropertyNames) {
|
|
|
27588
27588
|
}
|
|
27589
27589
|
return config;
|
|
27590
27590
|
}
|
|
27591
|
-
function buildNetworkSnapshot$
|
|
27591
|
+
function buildNetworkSnapshot$O(luvio, config, options) {
|
|
27592
27592
|
const resourceParams = createResourceParams$G(config);
|
|
27593
27593
|
const request = createResourceRequest$L(resourceParams);
|
|
27594
27594
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -27613,7 +27613,7 @@ const createListInfoAdapterFactory = (luvio) => {
|
|
|
27613
27613
|
if (config === null) {
|
|
27614
27614
|
throw new Error('Invalid config for "createListInfo"');
|
|
27615
27615
|
}
|
|
27616
|
-
return buildNetworkSnapshot$
|
|
27616
|
+
return buildNetworkSnapshot$O(luvio, config);
|
|
27617
27617
|
};
|
|
27618
27618
|
};
|
|
27619
27619
|
|
|
@@ -27675,7 +27675,7 @@ function validateAdapterConfig$J(untrustedConfig, configPropertyNames) {
|
|
|
27675
27675
|
}
|
|
27676
27676
|
return config;
|
|
27677
27677
|
}
|
|
27678
|
-
function buildNetworkSnapshot$
|
|
27678
|
+
function buildNetworkSnapshot$N(luvio, config, options) {
|
|
27679
27679
|
const resourceParams = createResourceParams$F(config);
|
|
27680
27680
|
const request = createResourceRequest$K(resourceParams);
|
|
27681
27681
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -27700,7 +27700,7 @@ const deleteListInfoAdapterFactory = (luvio) => {
|
|
|
27700
27700
|
if (config === null) {
|
|
27701
27701
|
throw new Error(`Invalid config for "${adapterName$B}"`);
|
|
27702
27702
|
}
|
|
27703
|
-
return buildNetworkSnapshot$
|
|
27703
|
+
return buildNetworkSnapshot$N(luvio, config);
|
|
27704
27704
|
};
|
|
27705
27705
|
};
|
|
27706
27706
|
|
|
@@ -27740,18 +27740,18 @@ function adapterFragment$q(luvio, config) {
|
|
|
27740
27740
|
function onFetchResponseSuccess$s(luvio, config, resourceParams, response) {
|
|
27741
27741
|
const snapshot = ingestSuccess$B(luvio, resourceParams, response, {
|
|
27742
27742
|
config,
|
|
27743
|
-
resolve: () => buildNetworkSnapshot$
|
|
27743
|
+
resolve: () => buildNetworkSnapshot$M(luvio, config, snapshotRefreshOptions)
|
|
27744
27744
|
});
|
|
27745
27745
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
27746
27746
|
}
|
|
27747
27747
|
function onFetchResponseError$s(luvio, config, resourceParams, response) {
|
|
27748
27748
|
const snapshot = ingestError$s(luvio, resourceParams, response, {
|
|
27749
27749
|
config,
|
|
27750
|
-
resolve: () => buildNetworkSnapshot$
|
|
27750
|
+
resolve: () => buildNetworkSnapshot$M(luvio, config, snapshotRefreshOptions)
|
|
27751
27751
|
});
|
|
27752
27752
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
27753
27753
|
}
|
|
27754
|
-
function buildNetworkSnapshot$
|
|
27754
|
+
function buildNetworkSnapshot$M(luvio, config, options) {
|
|
27755
27755
|
const resourceParams = createResourceParams$E(config);
|
|
27756
27756
|
const request = createResourceRequest$O(resourceParams);
|
|
27757
27757
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -27766,7 +27766,7 @@ function buildNetworkSnapshot$I(luvio, config, options) {
|
|
|
27766
27766
|
});
|
|
27767
27767
|
}
|
|
27768
27768
|
function buildNetworkSnapshotCachePolicy$w(context, coercedAdapterRequestContext) {
|
|
27769
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
27769
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$M, undefined, false);
|
|
27770
27770
|
}
|
|
27771
27771
|
function buildCachedSnapshotCachePolicy$v(context, storeLookup) {
|
|
27772
27772
|
const { luvio, config } = context;
|
|
@@ -27777,7 +27777,7 @@ function buildCachedSnapshotCachePolicy$v(context, storeLookup) {
|
|
|
27777
27777
|
};
|
|
27778
27778
|
const cacheSnapshot = storeLookup(selector, {
|
|
27779
27779
|
config,
|
|
27780
|
-
resolve: () => buildNetworkSnapshot$
|
|
27780
|
+
resolve: () => buildNetworkSnapshot$M(luvio, config, snapshotRefreshOptions)
|
|
27781
27781
|
});
|
|
27782
27782
|
return cacheSnapshot;
|
|
27783
27783
|
}
|
|
@@ -27878,7 +27878,7 @@ function validateAdapterConfig$H(untrustedConfig, configPropertyNames) {
|
|
|
27878
27878
|
}
|
|
27879
27879
|
return config;
|
|
27880
27880
|
}
|
|
27881
|
-
function buildNetworkSnapshot$
|
|
27881
|
+
function buildNetworkSnapshot$L(luvio, config, options) {
|
|
27882
27882
|
const resourceParams = createResourceParams$D(config);
|
|
27883
27883
|
const request = createResourceRequest$J(resourceParams);
|
|
27884
27884
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -27903,7 +27903,7 @@ const updateListInfoByNameAdapterFactory = (luvio) => {
|
|
|
27903
27903
|
if (config === null) {
|
|
27904
27904
|
throw new Error('Invalid config for "updateListInfoByName"');
|
|
27905
27905
|
}
|
|
27906
|
-
return buildNetworkSnapshot$
|
|
27906
|
+
return buildNetworkSnapshot$L(luvio, config);
|
|
27907
27907
|
};
|
|
27908
27908
|
};
|
|
27909
27909
|
|
|
@@ -28810,18 +28810,18 @@ function adapterFragment$p(luvio, config) {
|
|
|
28810
28810
|
function onFetchResponseSuccess$r(luvio, config, resourceParams, response) {
|
|
28811
28811
|
const snapshot = ingestSuccess$w(luvio, resourceParams, response, {
|
|
28812
28812
|
config,
|
|
28813
|
-
resolve: () => buildNetworkSnapshot$
|
|
28813
|
+
resolve: () => buildNetworkSnapshot$K(luvio, config, snapshotRefreshOptions)
|
|
28814
28814
|
});
|
|
28815
28815
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
28816
28816
|
}
|
|
28817
28817
|
function onFetchResponseError$r(luvio, config, resourceParams, response) {
|
|
28818
28818
|
const snapshot = ingestError$p(luvio, resourceParams, response, {
|
|
28819
28819
|
config,
|
|
28820
|
-
resolve: () => buildNetworkSnapshot$
|
|
28820
|
+
resolve: () => buildNetworkSnapshot$K(luvio, config, snapshotRefreshOptions)
|
|
28821
28821
|
});
|
|
28822
28822
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
28823
28823
|
}
|
|
28824
|
-
function buildNetworkSnapshot$
|
|
28824
|
+
function buildNetworkSnapshot$K(luvio, config, options) {
|
|
28825
28825
|
const resourceParams = createResourceParams$C(config);
|
|
28826
28826
|
const request = createResourceRequest$I(resourceParams);
|
|
28827
28827
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -28836,7 +28836,7 @@ function buildNetworkSnapshot$G(luvio, config, options) {
|
|
|
28836
28836
|
});
|
|
28837
28837
|
}
|
|
28838
28838
|
function buildNetworkSnapshotCachePolicy$v(context, coercedAdapterRequestContext) {
|
|
28839
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
28839
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$K, undefined, false);
|
|
28840
28840
|
}
|
|
28841
28841
|
function buildCachedSnapshotCachePolicy$u(context, storeLookup) {
|
|
28842
28842
|
const { luvio, config } = context;
|
|
@@ -28847,7 +28847,7 @@ function buildCachedSnapshotCachePolicy$u(context, storeLookup) {
|
|
|
28847
28847
|
};
|
|
28848
28848
|
const cacheSnapshot = storeLookup(selector, {
|
|
28849
28849
|
config,
|
|
28850
|
-
resolve: () => buildNetworkSnapshot$
|
|
28850
|
+
resolve: () => buildNetworkSnapshot$K(luvio, config, snapshotRefreshOptions)
|
|
28851
28851
|
});
|
|
28852
28852
|
return cacheSnapshot;
|
|
28853
28853
|
}
|
|
@@ -29120,18 +29120,18 @@ function adapterFragment$o(luvio, config) {
|
|
|
29120
29120
|
function onFetchResponseSuccess$q(luvio, config, resourceParams, response) {
|
|
29121
29121
|
const snapshot = ingestSuccess$v(luvio, resourceParams, response, {
|
|
29122
29122
|
config,
|
|
29123
|
-
resolve: () => buildNetworkSnapshot$
|
|
29123
|
+
resolve: () => buildNetworkSnapshot$J(luvio, config, snapshotRefreshOptions)
|
|
29124
29124
|
});
|
|
29125
29125
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
29126
29126
|
}
|
|
29127
29127
|
function onFetchResponseError$q(luvio, config, resourceParams, response) {
|
|
29128
29128
|
const snapshot = ingestError$o(luvio, resourceParams, response, {
|
|
29129
29129
|
config,
|
|
29130
|
-
resolve: () => buildNetworkSnapshot$
|
|
29130
|
+
resolve: () => buildNetworkSnapshot$J(luvio, config, snapshotRefreshOptions)
|
|
29131
29131
|
});
|
|
29132
29132
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
29133
29133
|
}
|
|
29134
|
-
function buildNetworkSnapshot$
|
|
29134
|
+
function buildNetworkSnapshot$J(luvio, config, options) {
|
|
29135
29135
|
const resourceParams = createResourceParams$B(config);
|
|
29136
29136
|
const request = createResourceRequest$H(resourceParams);
|
|
29137
29137
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -29146,7 +29146,7 @@ function buildNetworkSnapshot$F(luvio, config, options) {
|
|
|
29146
29146
|
});
|
|
29147
29147
|
}
|
|
29148
29148
|
function buildNetworkSnapshotCachePolicy$u(context, coercedAdapterRequestContext) {
|
|
29149
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
29149
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$J, undefined, false);
|
|
29150
29150
|
}
|
|
29151
29151
|
function buildCachedSnapshotCachePolicy$t(context, storeLookup) {
|
|
29152
29152
|
const { luvio, config } = context;
|
|
@@ -29157,7 +29157,7 @@ function buildCachedSnapshotCachePolicy$t(context, storeLookup) {
|
|
|
29157
29157
|
};
|
|
29158
29158
|
const cacheSnapshot = storeLookup(selector, {
|
|
29159
29159
|
config,
|
|
29160
|
-
resolve: () => buildNetworkSnapshot$
|
|
29160
|
+
resolve: () => buildNetworkSnapshot$J(luvio, config, snapshotRefreshOptions)
|
|
29161
29161
|
});
|
|
29162
29162
|
return cacheSnapshot;
|
|
29163
29163
|
}
|
|
@@ -29302,7 +29302,7 @@ function validateAdapterConfig$E(untrustedConfig, configPropertyNames) {
|
|
|
29302
29302
|
}
|
|
29303
29303
|
return config;
|
|
29304
29304
|
}
|
|
29305
|
-
function buildNetworkSnapshot$
|
|
29305
|
+
function buildNetworkSnapshot$I(luvio, config, options) {
|
|
29306
29306
|
const resourceParams = createResourceParams$A(config);
|
|
29307
29307
|
const request = createResourceRequest$G(resourceParams);
|
|
29308
29308
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -29327,7 +29327,7 @@ const updateListPreferencesAdapterFactory = (luvio) => {
|
|
|
29327
29327
|
if (config === null) {
|
|
29328
29328
|
throw new Error('Invalid config for "updateListPreferences"');
|
|
29329
29329
|
}
|
|
29330
|
-
return buildNetworkSnapshot$
|
|
29330
|
+
return buildNetworkSnapshot$I(luvio, config);
|
|
29331
29331
|
};
|
|
29332
29332
|
};
|
|
29333
29333
|
|
|
@@ -29576,18 +29576,18 @@ function adapterFragment$n(luvio, config) {
|
|
|
29576
29576
|
function onFetchResponseSuccess$p(luvio, config, resourceParams, response) {
|
|
29577
29577
|
const snapshot = ingestSuccess$t(luvio, resourceParams, response, {
|
|
29578
29578
|
config,
|
|
29579
|
-
resolve: () => buildNetworkSnapshot$
|
|
29579
|
+
resolve: () => buildNetworkSnapshot$H(luvio, config, snapshotRefreshOptions)
|
|
29580
29580
|
});
|
|
29581
29581
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
29582
29582
|
}
|
|
29583
29583
|
function onFetchResponseError$p(luvio, config, resourceParams, response) {
|
|
29584
29584
|
const snapshot = ingestError$n(luvio, resourceParams, response, {
|
|
29585
29585
|
config,
|
|
29586
|
-
resolve: () => buildNetworkSnapshot$
|
|
29586
|
+
resolve: () => buildNetworkSnapshot$H(luvio, config, snapshotRefreshOptions)
|
|
29587
29587
|
});
|
|
29588
29588
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
29589
29589
|
}
|
|
29590
|
-
function buildNetworkSnapshot$
|
|
29590
|
+
function buildNetworkSnapshot$H(luvio, config, options) {
|
|
29591
29591
|
const resourceParams = createResourceParams$z(config);
|
|
29592
29592
|
const request = createResourceRequest$F(resourceParams);
|
|
29593
29593
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -29602,7 +29602,7 @@ function buildNetworkSnapshot$D(luvio, config, options) {
|
|
|
29602
29602
|
});
|
|
29603
29603
|
}
|
|
29604
29604
|
function buildNetworkSnapshotCachePolicy$t(context, coercedAdapterRequestContext) {
|
|
29605
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
29605
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$H, undefined, false);
|
|
29606
29606
|
}
|
|
29607
29607
|
function buildCachedSnapshotCachePolicy$s(context, storeLookup) {
|
|
29608
29608
|
const { luvio, config } = context;
|
|
@@ -29613,7 +29613,7 @@ function buildCachedSnapshotCachePolicy$s(context, storeLookup) {
|
|
|
29613
29613
|
};
|
|
29614
29614
|
const cacheSnapshot = storeLookup(selector, {
|
|
29615
29615
|
config,
|
|
29616
|
-
resolve: () => buildNetworkSnapshot$
|
|
29616
|
+
resolve: () => buildNetworkSnapshot$H(luvio, config, snapshotRefreshOptions)
|
|
29617
29617
|
});
|
|
29618
29618
|
return cacheSnapshot;
|
|
29619
29619
|
}
|
|
@@ -29925,18 +29925,18 @@ function adapterFragment$l(luvio, config) {
|
|
|
29925
29925
|
function onFetchResponseSuccess$n(luvio, config, resourceParams, response) {
|
|
29926
29926
|
const snapshot = ingestSuccess$r(luvio, resourceParams, response, {
|
|
29927
29927
|
config,
|
|
29928
|
-
resolve: () => buildNetworkSnapshot$
|
|
29928
|
+
resolve: () => buildNetworkSnapshot$F(luvio, config, snapshotRefreshOptions)
|
|
29929
29929
|
});
|
|
29930
29930
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
29931
29931
|
}
|
|
29932
29932
|
function onFetchResponseError$n(luvio, config, resourceParams, response) {
|
|
29933
29933
|
const snapshot = ingestError$l(luvio, resourceParams, response, {
|
|
29934
29934
|
config,
|
|
29935
|
-
resolve: () => buildNetworkSnapshot$
|
|
29935
|
+
resolve: () => buildNetworkSnapshot$F(luvio, config, snapshotRefreshOptions)
|
|
29936
29936
|
});
|
|
29937
29937
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
29938
29938
|
}
|
|
29939
|
-
function buildNetworkSnapshot$
|
|
29939
|
+
function buildNetworkSnapshot$F(luvio, config, options) {
|
|
29940
29940
|
const resourceParams = createResourceParams$x(config);
|
|
29941
29941
|
const request = createResourceRequest$D(resourceParams);
|
|
29942
29942
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -29951,7 +29951,7 @@ function buildNetworkSnapshot$B(luvio, config, options) {
|
|
|
29951
29951
|
});
|
|
29952
29952
|
}
|
|
29953
29953
|
function buildNetworkSnapshotCachePolicy$r(context, coercedAdapterRequestContext) {
|
|
29954
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
29954
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$F, undefined, false);
|
|
29955
29955
|
}
|
|
29956
29956
|
function buildCachedSnapshotCachePolicy$q(context, storeLookup) {
|
|
29957
29957
|
const { luvio, config } = context;
|
|
@@ -29962,7 +29962,7 @@ function buildCachedSnapshotCachePolicy$q(context, storeLookup) {
|
|
|
29962
29962
|
};
|
|
29963
29963
|
const cacheSnapshot = storeLookup(selector, {
|
|
29964
29964
|
config,
|
|
29965
|
-
resolve: () => buildNetworkSnapshot$
|
|
29965
|
+
resolve: () => buildNetworkSnapshot$F(luvio, config, snapshotRefreshOptions)
|
|
29966
29966
|
});
|
|
29967
29967
|
return cacheSnapshot;
|
|
29968
29968
|
}
|
|
@@ -30566,18 +30566,18 @@ function adapterFragment$k(luvio, config) {
|
|
|
30566
30566
|
function onFetchResponseSuccess$m(luvio, config, resourceParams, response) {
|
|
30567
30567
|
const snapshot = ingestSuccess$q(luvio, resourceParams, response, {
|
|
30568
30568
|
config,
|
|
30569
|
-
resolve: () => buildNetworkSnapshot$
|
|
30569
|
+
resolve: () => buildNetworkSnapshot$E(luvio, config, snapshotRefreshOptions)
|
|
30570
30570
|
});
|
|
30571
30571
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
30572
30572
|
}
|
|
30573
30573
|
function onFetchResponseError$m(luvio, config, resourceParams, response) {
|
|
30574
30574
|
const snapshot = ingestError$k(luvio, resourceParams, response, {
|
|
30575
30575
|
config,
|
|
30576
|
-
resolve: () => buildNetworkSnapshot$
|
|
30576
|
+
resolve: () => buildNetworkSnapshot$E(luvio, config, snapshotRefreshOptions)
|
|
30577
30577
|
});
|
|
30578
30578
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
30579
30579
|
}
|
|
30580
|
-
function buildNetworkSnapshot$
|
|
30580
|
+
function buildNetworkSnapshot$E(luvio, config, options) {
|
|
30581
30581
|
const resourceParams = createResourceParams$w(config);
|
|
30582
30582
|
const request = createResourceRequest$C(resourceParams);
|
|
30583
30583
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -30592,7 +30592,7 @@ function buildNetworkSnapshot$A(luvio, config, options) {
|
|
|
30592
30592
|
});
|
|
30593
30593
|
}
|
|
30594
30594
|
function buildNetworkSnapshotCachePolicy$q(context, coercedAdapterRequestContext) {
|
|
30595
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
30595
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$E, undefined, false);
|
|
30596
30596
|
}
|
|
30597
30597
|
function buildCachedSnapshotCachePolicy$p(context, storeLookup) {
|
|
30598
30598
|
const { luvio, config } = context;
|
|
@@ -30603,7 +30603,7 @@ function buildCachedSnapshotCachePolicy$p(context, storeLookup) {
|
|
|
30603
30603
|
};
|
|
30604
30604
|
const cacheSnapshot = storeLookup(selector, {
|
|
30605
30605
|
config,
|
|
30606
|
-
resolve: () => buildNetworkSnapshot$
|
|
30606
|
+
resolve: () => buildNetworkSnapshot$E(luvio, config, snapshotRefreshOptions)
|
|
30607
30607
|
});
|
|
30608
30608
|
return cacheSnapshot;
|
|
30609
30609
|
}
|
|
@@ -30638,7 +30638,7 @@ const path = select$2t().selections;
|
|
|
30638
30638
|
function buildSnapshotRefresh$2(luvio, config) {
|
|
30639
30639
|
return {
|
|
30640
30640
|
config,
|
|
30641
|
-
resolve: () => buildNetworkSnapshot$
|
|
30641
|
+
resolve: () => buildNetworkSnapshot$D(luvio, config),
|
|
30642
30642
|
};
|
|
30643
30643
|
}
|
|
30644
30644
|
function buildRequestAndKey(luvio, config) {
|
|
@@ -30666,7 +30666,7 @@ function onResponseError(luvio, config, key, err) {
|
|
|
30666
30666
|
luvio.storeIngestError(key, errorSnapshot);
|
|
30667
30667
|
return luvio.storeBroadcast().then(() => errorSnapshot);
|
|
30668
30668
|
}
|
|
30669
|
-
function buildNetworkSnapshot$
|
|
30669
|
+
function buildNetworkSnapshot$D(luvio, config, options) {
|
|
30670
30670
|
const { resourceParams, request, key } = buildRequestAndKey(luvio, config);
|
|
30671
30671
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
30672
30672
|
return luvio.handleSuccessResponse(() => {
|
|
@@ -30718,7 +30718,7 @@ function buildNetworkSnapshotCachePolicy$p(context, coercedAdapterRequestContext
|
|
|
30718
30718
|
priority: networkPriority,
|
|
30719
30719
|
};
|
|
30720
30720
|
}
|
|
30721
|
-
return buildNetworkSnapshot$
|
|
30721
|
+
return buildNetworkSnapshot$D(luvio, config, dispatchOptions);
|
|
30722
30722
|
}
|
|
30723
30723
|
function buildCachedSnapshotCachePolicy$o(context, storeLookup) {
|
|
30724
30724
|
const { config, luvio } = context;
|
|
@@ -30892,18 +30892,18 @@ function adapterFragment$j(luvio, config) {
|
|
|
30892
30892
|
function onFetchResponseSuccess$l(luvio, config, resourceParams, response) {
|
|
30893
30893
|
const snapshot = ingestSuccess$p(luvio, resourceParams, response, {
|
|
30894
30894
|
config,
|
|
30895
|
-
resolve: () => buildNetworkSnapshot$
|
|
30895
|
+
resolve: () => buildNetworkSnapshot$C(luvio, config, snapshotRefreshOptions)
|
|
30896
30896
|
});
|
|
30897
30897
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
30898
30898
|
}
|
|
30899
30899
|
function onFetchResponseError$l(luvio, config, resourceParams, response) {
|
|
30900
30900
|
const snapshot = ingestError$j(luvio, resourceParams, response, {
|
|
30901
30901
|
config,
|
|
30902
|
-
resolve: () => buildNetworkSnapshot$
|
|
30902
|
+
resolve: () => buildNetworkSnapshot$C(luvio, config, snapshotRefreshOptions)
|
|
30903
30903
|
});
|
|
30904
30904
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
30905
30905
|
}
|
|
30906
|
-
function buildNetworkSnapshot$
|
|
30906
|
+
function buildNetworkSnapshot$C(luvio, config, options) {
|
|
30907
30907
|
const resourceParams = createResourceParams$v(config);
|
|
30908
30908
|
const request = createResourceRequest$A(resourceParams);
|
|
30909
30909
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -30918,7 +30918,7 @@ function buildNetworkSnapshot$y(luvio, config, options) {
|
|
|
30918
30918
|
});
|
|
30919
30919
|
}
|
|
30920
30920
|
function buildNetworkSnapshotCachePolicy$o(context, coercedAdapterRequestContext) {
|
|
30921
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
30921
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$C, undefined, false);
|
|
30922
30922
|
}
|
|
30923
30923
|
function buildCachedSnapshotCachePolicy$n(context, storeLookup) {
|
|
30924
30924
|
const { luvio, config } = context;
|
|
@@ -30929,7 +30929,7 @@ function buildCachedSnapshotCachePolicy$n(context, storeLookup) {
|
|
|
30929
30929
|
};
|
|
30930
30930
|
const cacheSnapshot = storeLookup(selector, {
|
|
30931
30931
|
config,
|
|
30932
|
-
resolve: () => buildNetworkSnapshot$
|
|
30932
|
+
resolve: () => buildNetworkSnapshot$C(luvio, config, snapshotRefreshOptions)
|
|
30933
30933
|
});
|
|
30934
30934
|
return cacheSnapshot;
|
|
30935
30935
|
}
|
|
@@ -31259,18 +31259,18 @@ function adapterFragment$i(luvio, config) {
|
|
|
31259
31259
|
function onFetchResponseSuccess$k(luvio, config, resourceParams, response) {
|
|
31260
31260
|
const snapshot = ingestSuccess$o(luvio, resourceParams, response, {
|
|
31261
31261
|
config,
|
|
31262
|
-
resolve: () => buildNetworkSnapshot$
|
|
31262
|
+
resolve: () => buildNetworkSnapshot$B(luvio, config, snapshotRefreshOptions)
|
|
31263
31263
|
});
|
|
31264
31264
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
31265
31265
|
}
|
|
31266
31266
|
function onFetchResponseError$k(luvio, config, resourceParams, response) {
|
|
31267
31267
|
const snapshot = ingestError$i(luvio, resourceParams, response, {
|
|
31268
31268
|
config,
|
|
31269
|
-
resolve: () => buildNetworkSnapshot$
|
|
31269
|
+
resolve: () => buildNetworkSnapshot$B(luvio, config, snapshotRefreshOptions)
|
|
31270
31270
|
});
|
|
31271
31271
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
31272
31272
|
}
|
|
31273
|
-
function buildNetworkSnapshot$
|
|
31273
|
+
function buildNetworkSnapshot$B(luvio, config, options) {
|
|
31274
31274
|
const resourceParams = createResourceParams$u(config);
|
|
31275
31275
|
const request = createResourceRequest$z(resourceParams);
|
|
31276
31276
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -31285,7 +31285,7 @@ function buildNetworkSnapshot$x(luvio, config, options) {
|
|
|
31285
31285
|
});
|
|
31286
31286
|
}
|
|
31287
31287
|
function buildNetworkSnapshotCachePolicy$n(context, coercedAdapterRequestContext) {
|
|
31288
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
31288
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$B, 'get', false);
|
|
31289
31289
|
}
|
|
31290
31290
|
function buildCachedSnapshotCachePolicy$m(context, storeLookup) {
|
|
31291
31291
|
const { luvio, config } = context;
|
|
@@ -31296,7 +31296,7 @@ function buildCachedSnapshotCachePolicy$m(context, storeLookup) {
|
|
|
31296
31296
|
};
|
|
31297
31297
|
const cacheSnapshot = storeLookup(selector, {
|
|
31298
31298
|
config,
|
|
31299
|
-
resolve: () => buildNetworkSnapshot$
|
|
31299
|
+
resolve: () => buildNetworkSnapshot$B(luvio, config, snapshotRefreshOptions)
|
|
31300
31300
|
});
|
|
31301
31301
|
return cacheSnapshot;
|
|
31302
31302
|
}
|
|
@@ -32438,7 +32438,7 @@ function buildCachedSnapshot$3(luvio, config) {
|
|
|
32438
32438
|
const { recordIds } = config;
|
|
32439
32439
|
return luvio.storeLookup(recordAvatarsSelector(recordIds), {
|
|
32440
32440
|
config,
|
|
32441
|
-
resolve: () => buildNetworkSnapshot$
|
|
32441
|
+
resolve: () => buildNetworkSnapshot$A(luvio, config, snapshotRefreshOptions),
|
|
32442
32442
|
});
|
|
32443
32443
|
}
|
|
32444
32444
|
|
|
@@ -32493,7 +32493,7 @@ function ingestFakeResponse(luvio, recordIds) {
|
|
|
32493
32493
|
function isRecordAvatarBulkMapRepresentation(response) {
|
|
32494
32494
|
return response.body.hasErrors === undefined;
|
|
32495
32495
|
}
|
|
32496
|
-
function buildNetworkSnapshot$
|
|
32496
|
+
function buildNetworkSnapshot$A(luvio, config, options) {
|
|
32497
32497
|
const { uncachedRecordIds, recordIds } = config;
|
|
32498
32498
|
const { recordIdsInFlight, recordIdsNotInFlight } = getRecordIdsFlightStatus(uncachedRecordIds || recordIds, // If uncached records were specified, only get those, otherwise, get all of them
|
|
32499
32499
|
IN_FLIGHT_REQUESTS);
|
|
@@ -32567,7 +32567,7 @@ function buildCachedSnapshotCachePolicy$l(context, storeLookup) {
|
|
|
32567
32567
|
const { recordIds } = config;
|
|
32568
32568
|
const cachedSnapshot = storeLookup(recordAvatarsSelector(recordIds), {
|
|
32569
32569
|
config,
|
|
32570
|
-
resolve: () => buildNetworkSnapshot$
|
|
32570
|
+
resolve: () => buildNetworkSnapshot$A(luvio, config, snapshotRefreshOptions),
|
|
32571
32571
|
});
|
|
32572
32572
|
// if the L1 lookup had some data but not all, then put the cache keys that were
|
|
32573
32573
|
// missing onto the context, so buildNetworkSnapshotCachePolicy only requests
|
|
@@ -32596,7 +32596,7 @@ function buildNetworkSnapshotCachePolicy$m(context, coercedAdapterRequestContext
|
|
|
32596
32596
|
priority: networkPriority,
|
|
32597
32597
|
};
|
|
32598
32598
|
}
|
|
32599
|
-
return buildNetworkSnapshot$
|
|
32599
|
+
return buildNetworkSnapshot$A(luvio, config, dispatchOptions);
|
|
32600
32600
|
}
|
|
32601
32601
|
|
|
32602
32602
|
const adapterName$p = 'getRecordAvatars';
|
|
@@ -32628,14 +32628,14 @@ function validateAdapterConfig$v(untrustedConfig, configPropertyNames) {
|
|
|
32628
32628
|
function onFetchResponseSuccess$j(luvio, config, resourceParams, response) {
|
|
32629
32629
|
const snapshot = ingestSuccess$n(luvio, resourceParams, response, {
|
|
32630
32630
|
config,
|
|
32631
|
-
resolve: () => buildNetworkSnapshot$
|
|
32631
|
+
resolve: () => buildNetworkSnapshot$A(luvio, config, snapshotRefreshOptions)
|
|
32632
32632
|
});
|
|
32633
32633
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
32634
32634
|
}
|
|
32635
32635
|
function onFetchResponseError$j(luvio, config, resourceParams, response) {
|
|
32636
32636
|
const snapshot = ingestError$h(luvio, resourceParams, response, {
|
|
32637
32637
|
config,
|
|
32638
|
-
resolve: () => buildNetworkSnapshot$
|
|
32638
|
+
resolve: () => buildNetworkSnapshot$A(luvio, config, snapshotRefreshOptions)
|
|
32639
32639
|
});
|
|
32640
32640
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
32641
32641
|
}
|
|
@@ -32804,11 +32804,11 @@ function keyBuilder$2p(luvio, config) {
|
|
|
32804
32804
|
function onFetchResponseError$i(luvio, config, resourceParams, response) {
|
|
32805
32805
|
const snapshot = ingestError$Q(luvio, resourceParams, response, {
|
|
32806
32806
|
config,
|
|
32807
|
-
resolve: () => buildNetworkSnapshot$
|
|
32807
|
+
resolve: () => buildNetworkSnapshot$z(luvio, config, snapshotRefreshOptions)
|
|
32808
32808
|
});
|
|
32809
32809
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
32810
32810
|
}
|
|
32811
|
-
function buildNetworkSnapshot$
|
|
32811
|
+
function buildNetworkSnapshot$z(luvio, config, options) {
|
|
32812
32812
|
const resourceParams = createResourceParams$14(config);
|
|
32813
32813
|
const request = createResourceRequest$1f(resourceParams);
|
|
32814
32814
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -32823,7 +32823,7 @@ function buildNetworkSnapshot$v(luvio, config, options) {
|
|
|
32823
32823
|
});
|
|
32824
32824
|
}
|
|
32825
32825
|
function buildNetworkSnapshotCachePolicy$l(context, coercedAdapterRequestContext) {
|
|
32826
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
32826
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$z, undefined, false);
|
|
32827
32827
|
}
|
|
32828
32828
|
function buildCachedSnapshotCachePolicy$k(context, storeLookup) {
|
|
32829
32829
|
const { luvio, config } = context;
|
|
@@ -32834,7 +32834,7 @@ function buildCachedSnapshotCachePolicy$k(context, storeLookup) {
|
|
|
32834
32834
|
};
|
|
32835
32835
|
const cacheSnapshot = storeLookup(selector, {
|
|
32836
32836
|
config,
|
|
32837
|
-
resolve: () => buildNetworkSnapshot$
|
|
32837
|
+
resolve: () => buildNetworkSnapshot$z(luvio, config, snapshotRefreshOptions)
|
|
32838
32838
|
});
|
|
32839
32839
|
return cacheSnapshot;
|
|
32840
32840
|
}
|
|
@@ -33576,18 +33576,18 @@ function adapterFragment$h(luvio, config) {
|
|
|
33576
33576
|
function onFetchResponseSuccess$i(luvio, config, resourceParams, response) {
|
|
33577
33577
|
const snapshot = ingestSuccess$l(luvio, resourceParams, response, {
|
|
33578
33578
|
config,
|
|
33579
|
-
resolve: () => buildNetworkSnapshot$
|
|
33579
|
+
resolve: () => buildNetworkSnapshot$y(luvio, config, snapshotRefreshOptions)
|
|
33580
33580
|
});
|
|
33581
33581
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
33582
33582
|
}
|
|
33583
33583
|
function onFetchResponseError$h(luvio, config, resourceParams, response) {
|
|
33584
33584
|
const snapshot = ingestError$f(luvio, resourceParams, response, {
|
|
33585
33585
|
config,
|
|
33586
|
-
resolve: () => buildNetworkSnapshot$
|
|
33586
|
+
resolve: () => buildNetworkSnapshot$y(luvio, config, snapshotRefreshOptions)
|
|
33587
33587
|
});
|
|
33588
33588
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
33589
33589
|
}
|
|
33590
|
-
function buildNetworkSnapshot$
|
|
33590
|
+
function buildNetworkSnapshot$y(luvio, config, options) {
|
|
33591
33591
|
const resourceParams = createResourceParams$s(config);
|
|
33592
33592
|
const request = createResourceRequest$w(resourceParams);
|
|
33593
33593
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -33602,7 +33602,7 @@ function buildNetworkSnapshot$u(luvio, config, options) {
|
|
|
33602
33602
|
});
|
|
33603
33603
|
}
|
|
33604
33604
|
function buildNetworkSnapshotCachePolicy$k(context, coercedAdapterRequestContext) {
|
|
33605
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
33605
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$y, undefined, false);
|
|
33606
33606
|
}
|
|
33607
33607
|
function buildCachedSnapshotCachePolicy$j(context, storeLookup) {
|
|
33608
33608
|
const { luvio, config } = context;
|
|
@@ -33613,7 +33613,7 @@ function buildCachedSnapshotCachePolicy$j(context, storeLookup) {
|
|
|
33613
33613
|
};
|
|
33614
33614
|
const cacheSnapshot = storeLookup(selector, {
|
|
33615
33615
|
config,
|
|
33616
|
-
resolve: () => buildNetworkSnapshot$
|
|
33616
|
+
resolve: () => buildNetworkSnapshot$y(luvio, config, snapshotRefreshOptions)
|
|
33617
33617
|
});
|
|
33618
33618
|
return cacheSnapshot;
|
|
33619
33619
|
}
|
|
@@ -33665,18 +33665,18 @@ function adapterFragment$g(luvio, config) {
|
|
|
33665
33665
|
function onFetchResponseSuccess$h(luvio, config, resourceParams, response) {
|
|
33666
33666
|
const snapshot = ingestSuccess$m(luvio, resourceParams, response, {
|
|
33667
33667
|
config,
|
|
33668
|
-
resolve: () => buildNetworkSnapshot$
|
|
33668
|
+
resolve: () => buildNetworkSnapshot$x(luvio, config, snapshotRefreshOptions)
|
|
33669
33669
|
});
|
|
33670
33670
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
33671
33671
|
}
|
|
33672
33672
|
function onFetchResponseError$g(luvio, config, resourceParams, response) {
|
|
33673
33673
|
const snapshot = ingestError$g(luvio, resourceParams, response, {
|
|
33674
33674
|
config,
|
|
33675
|
-
resolve: () => buildNetworkSnapshot$
|
|
33675
|
+
resolve: () => buildNetworkSnapshot$x(luvio, config, snapshotRefreshOptions)
|
|
33676
33676
|
});
|
|
33677
33677
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
33678
33678
|
}
|
|
33679
|
-
function buildNetworkSnapshot$
|
|
33679
|
+
function buildNetworkSnapshot$x(luvio, config, options) {
|
|
33680
33680
|
const resourceParams = createResourceParams$r(config);
|
|
33681
33681
|
const request = createResourceRequest$x(resourceParams);
|
|
33682
33682
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -33691,7 +33691,7 @@ function buildNetworkSnapshot$t(luvio, config, options) {
|
|
|
33691
33691
|
});
|
|
33692
33692
|
}
|
|
33693
33693
|
function buildNetworkSnapshotCachePolicy$j(context, coercedAdapterRequestContext) {
|
|
33694
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
33694
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$x, undefined, false);
|
|
33695
33695
|
}
|
|
33696
33696
|
function buildCachedSnapshotCachePolicy$i(context, storeLookup) {
|
|
33697
33697
|
const { luvio, config } = context;
|
|
@@ -33702,7 +33702,7 @@ function buildCachedSnapshotCachePolicy$i(context, storeLookup) {
|
|
|
33702
33702
|
};
|
|
33703
33703
|
const cacheSnapshot = storeLookup(selector, {
|
|
33704
33704
|
config,
|
|
33705
|
-
resolve: () => buildNetworkSnapshot$
|
|
33705
|
+
resolve: () => buildNetworkSnapshot$x(luvio, config, snapshotRefreshOptions)
|
|
33706
33706
|
});
|
|
33707
33707
|
return cacheSnapshot;
|
|
33708
33708
|
}
|
|
@@ -34540,18 +34540,18 @@ function adapterFragment$f(luvio, config) {
|
|
|
34540
34540
|
function onFetchResponseSuccess$g(luvio, config, resourceParams, response) {
|
|
34541
34541
|
const snapshot = ingestSuccess$j(luvio, resourceParams, response, {
|
|
34542
34542
|
config,
|
|
34543
|
-
resolve: () => buildNetworkSnapshot$
|
|
34543
|
+
resolve: () => buildNetworkSnapshot$w(luvio, config, snapshotRefreshOptions)
|
|
34544
34544
|
});
|
|
34545
34545
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
34546
34546
|
}
|
|
34547
34547
|
function onFetchResponseError$f(luvio, config, resourceParams, response) {
|
|
34548
34548
|
const snapshot = ingestError$d(luvio, resourceParams, response, {
|
|
34549
34549
|
config,
|
|
34550
|
-
resolve: () => buildNetworkSnapshot$
|
|
34550
|
+
resolve: () => buildNetworkSnapshot$w(luvio, config, snapshotRefreshOptions)
|
|
34551
34551
|
});
|
|
34552
34552
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
34553
34553
|
}
|
|
34554
|
-
function buildNetworkSnapshot$
|
|
34554
|
+
function buildNetworkSnapshot$w(luvio, config, options) {
|
|
34555
34555
|
const resourceParams = createResourceParams$q(config);
|
|
34556
34556
|
const request = createResourceRequest$u(resourceParams);
|
|
34557
34557
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -34566,7 +34566,7 @@ function buildNetworkSnapshot$s(luvio, config, options) {
|
|
|
34566
34566
|
});
|
|
34567
34567
|
}
|
|
34568
34568
|
function buildNetworkSnapshotCachePolicy$i(context, coercedAdapterRequestContext) {
|
|
34569
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
34569
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$w, undefined, false);
|
|
34570
34570
|
}
|
|
34571
34571
|
function buildCachedSnapshotCachePolicy$h(context, storeLookup) {
|
|
34572
34572
|
const { luvio, config } = context;
|
|
@@ -34577,7 +34577,7 @@ function buildCachedSnapshotCachePolicy$h(context, storeLookup) {
|
|
|
34577
34577
|
};
|
|
34578
34578
|
const cacheSnapshot = storeLookup(selector, {
|
|
34579
34579
|
config,
|
|
34580
|
-
resolve: () => buildNetworkSnapshot$
|
|
34580
|
+
resolve: () => buildNetworkSnapshot$w(luvio, config, snapshotRefreshOptions)
|
|
34581
34581
|
});
|
|
34582
34582
|
return cacheSnapshot;
|
|
34583
34583
|
}
|
|
@@ -34933,18 +34933,18 @@ function adapterFragment$e(luvio, config) {
|
|
|
34933
34933
|
function onFetchResponseSuccess$f(luvio, config, resourceParams, response) {
|
|
34934
34934
|
const snapshot = ingestSuccess$i(luvio, resourceParams, response, {
|
|
34935
34935
|
config,
|
|
34936
|
-
resolve: () => buildNetworkSnapshot$
|
|
34936
|
+
resolve: () => buildNetworkSnapshot$v(luvio, config, snapshotRefreshOptions)
|
|
34937
34937
|
});
|
|
34938
34938
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
34939
34939
|
}
|
|
34940
34940
|
function onFetchResponseError$e(luvio, config, resourceParams, response) {
|
|
34941
34941
|
const snapshot = ingestError$c(luvio, resourceParams, response, {
|
|
34942
34942
|
config,
|
|
34943
|
-
resolve: () => buildNetworkSnapshot$
|
|
34943
|
+
resolve: () => buildNetworkSnapshot$v(luvio, config, snapshotRefreshOptions)
|
|
34944
34944
|
});
|
|
34945
34945
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
34946
34946
|
}
|
|
34947
|
-
function buildNetworkSnapshot$
|
|
34947
|
+
function buildNetworkSnapshot$v(luvio, config, options) {
|
|
34948
34948
|
const resourceParams = createResourceParams$p(config);
|
|
34949
34949
|
const request = createResourceRequest$t(resourceParams);
|
|
34950
34950
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -34959,7 +34959,7 @@ function buildNetworkSnapshot$r(luvio, config, options) {
|
|
|
34959
34959
|
});
|
|
34960
34960
|
}
|
|
34961
34961
|
function buildNetworkSnapshotCachePolicy$h(context, coercedAdapterRequestContext) {
|
|
34962
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
34962
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$v, undefined, false);
|
|
34963
34963
|
}
|
|
34964
34964
|
function buildCachedSnapshotCachePolicy$g(context, storeLookup) {
|
|
34965
34965
|
const { luvio, config } = context;
|
|
@@ -34970,7 +34970,7 @@ function buildCachedSnapshotCachePolicy$g(context, storeLookup) {
|
|
|
34970
34970
|
};
|
|
34971
34971
|
const cacheSnapshot = storeLookup(selector, {
|
|
34972
34972
|
config,
|
|
34973
|
-
resolve: () => buildNetworkSnapshot$
|
|
34973
|
+
resolve: () => buildNetworkSnapshot$v(luvio, config, snapshotRefreshOptions)
|
|
34974
34974
|
});
|
|
34975
34975
|
return cacheSnapshot;
|
|
34976
34976
|
}
|
|
@@ -35025,18 +35025,18 @@ function adapterFragment$d(luvio, config) {
|
|
|
35025
35025
|
function onFetchResponseSuccess$e(luvio, config, resourceParams, response) {
|
|
35026
35026
|
const snapshot = ingestSuccess$k(luvio, resourceParams, response, {
|
|
35027
35027
|
config,
|
|
35028
|
-
resolve: () => buildNetworkSnapshot$
|
|
35028
|
+
resolve: () => buildNetworkSnapshot$u(luvio, config, snapshotRefreshOptions)
|
|
35029
35029
|
});
|
|
35030
35030
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
35031
35031
|
}
|
|
35032
35032
|
function onFetchResponseError$d(luvio, config, resourceParams, response) {
|
|
35033
35033
|
const snapshot = ingestError$e(luvio, resourceParams, response, {
|
|
35034
35034
|
config,
|
|
35035
|
-
resolve: () => buildNetworkSnapshot$
|
|
35035
|
+
resolve: () => buildNetworkSnapshot$u(luvio, config, snapshotRefreshOptions)
|
|
35036
35036
|
});
|
|
35037
35037
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
35038
35038
|
}
|
|
35039
|
-
function buildNetworkSnapshot$
|
|
35039
|
+
function buildNetworkSnapshot$u(luvio, config, options) {
|
|
35040
35040
|
const resourceParams = createResourceParams$o(config);
|
|
35041
35041
|
const request = createResourceRequest$v(resourceParams);
|
|
35042
35042
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -35051,7 +35051,7 @@ function buildNetworkSnapshot$q(luvio, config, options) {
|
|
|
35051
35051
|
});
|
|
35052
35052
|
}
|
|
35053
35053
|
function buildNetworkSnapshotCachePolicy$g(context, coercedAdapterRequestContext) {
|
|
35054
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
35054
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$u, undefined, false);
|
|
35055
35055
|
}
|
|
35056
35056
|
function buildCachedSnapshotCachePolicy$f(context, storeLookup) {
|
|
35057
35057
|
const { luvio, config } = context;
|
|
@@ -35062,7 +35062,7 @@ function buildCachedSnapshotCachePolicy$f(context, storeLookup) {
|
|
|
35062
35062
|
};
|
|
35063
35063
|
const cacheSnapshot = storeLookup(selector, {
|
|
35064
35064
|
config,
|
|
35065
|
-
resolve: () => buildNetworkSnapshot$
|
|
35065
|
+
resolve: () => buildNetworkSnapshot$u(luvio, config, snapshotRefreshOptions)
|
|
35066
35066
|
});
|
|
35067
35067
|
return cacheSnapshot;
|
|
35068
35068
|
}
|
|
@@ -35534,18 +35534,18 @@ function adapterFragment$c(luvio, config) {
|
|
|
35534
35534
|
function onFetchResponseSuccess$d(luvio, config, resourceParams, response) {
|
|
35535
35535
|
const snapshot = ingestSuccess$f(luvio, resourceParams, response, {
|
|
35536
35536
|
config,
|
|
35537
|
-
resolve: () => buildNetworkSnapshot$
|
|
35537
|
+
resolve: () => buildNetworkSnapshot$s(luvio, config, snapshotRefreshOptions)
|
|
35538
35538
|
});
|
|
35539
35539
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
35540
35540
|
}
|
|
35541
35541
|
function onFetchResponseError$c(luvio, config, resourceParams, response) {
|
|
35542
35542
|
const snapshot = ingestError$a(luvio, resourceParams, response, {
|
|
35543
35543
|
config,
|
|
35544
|
-
resolve: () => buildNetworkSnapshot$
|
|
35544
|
+
resolve: () => buildNetworkSnapshot$s(luvio, config, snapshotRefreshOptions)
|
|
35545
35545
|
});
|
|
35546
35546
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
35547
35547
|
}
|
|
35548
|
-
function buildNetworkSnapshot$
|
|
35548
|
+
function buildNetworkSnapshot$s(luvio, config, options) {
|
|
35549
35549
|
const resourceParams = createResourceParams$m(config);
|
|
35550
35550
|
const request = createResourceRequest$q(resourceParams);
|
|
35551
35551
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -35560,7 +35560,7 @@ function buildNetworkSnapshot$o(luvio, config, options) {
|
|
|
35560
35560
|
});
|
|
35561
35561
|
}
|
|
35562
35562
|
function buildNetworkSnapshotCachePolicy$f(context, coercedAdapterRequestContext) {
|
|
35563
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
35563
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$s, undefined, false);
|
|
35564
35564
|
}
|
|
35565
35565
|
function buildCachedSnapshotCachePolicy$e(context, storeLookup) {
|
|
35566
35566
|
const { luvio, config } = context;
|
|
@@ -35571,7 +35571,7 @@ function buildCachedSnapshotCachePolicy$e(context, storeLookup) {
|
|
|
35571
35571
|
};
|
|
35572
35572
|
const cacheSnapshot = storeLookup(selector, {
|
|
35573
35573
|
config,
|
|
35574
|
-
resolve: () => buildNetworkSnapshot$
|
|
35574
|
+
resolve: () => buildNetworkSnapshot$s(luvio, config, snapshotRefreshOptions)
|
|
35575
35575
|
});
|
|
35576
35576
|
return cacheSnapshot;
|
|
35577
35577
|
}
|
|
@@ -35620,18 +35620,18 @@ function adapterFragment$b(luvio, config) {
|
|
|
35620
35620
|
function onFetchResponseSuccess$c(luvio, config, resourceParams, response) {
|
|
35621
35621
|
const snapshot = ingestSuccess$g(luvio, resourceParams, response, {
|
|
35622
35622
|
config,
|
|
35623
|
-
resolve: () => buildNetworkSnapshot$
|
|
35623
|
+
resolve: () => buildNetworkSnapshot$r(luvio, config, snapshotRefreshOptions)
|
|
35624
35624
|
});
|
|
35625
35625
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
35626
35626
|
}
|
|
35627
35627
|
function onFetchResponseError$b(luvio, config, resourceParams, response) {
|
|
35628
35628
|
const snapshot = ingestError$b(luvio, resourceParams, response, {
|
|
35629
35629
|
config,
|
|
35630
|
-
resolve: () => buildNetworkSnapshot$
|
|
35630
|
+
resolve: () => buildNetworkSnapshot$r(luvio, config, snapshotRefreshOptions)
|
|
35631
35631
|
});
|
|
35632
35632
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
35633
35633
|
}
|
|
35634
|
-
function buildNetworkSnapshot$
|
|
35634
|
+
function buildNetworkSnapshot$r(luvio, config, options) {
|
|
35635
35635
|
const resourceParams = createResourceParams$l(config);
|
|
35636
35636
|
const request = createResourceRequest$r(resourceParams);
|
|
35637
35637
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -35646,7 +35646,7 @@ function buildNetworkSnapshot$n(luvio, config, options) {
|
|
|
35646
35646
|
});
|
|
35647
35647
|
}
|
|
35648
35648
|
function buildNetworkSnapshotCachePolicy$e(context, coercedAdapterRequestContext) {
|
|
35649
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
35649
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$r, undefined, false);
|
|
35650
35650
|
}
|
|
35651
35651
|
function buildCachedSnapshotCachePolicy$d(context, storeLookup) {
|
|
35652
35652
|
const { luvio, config } = context;
|
|
@@ -35657,7 +35657,7 @@ function buildCachedSnapshotCachePolicy$d(context, storeLookup) {
|
|
|
35657
35657
|
};
|
|
35658
35658
|
const cacheSnapshot = storeLookup(selector, {
|
|
35659
35659
|
config,
|
|
35660
|
-
resolve: () => buildNetworkSnapshot$
|
|
35660
|
+
resolve: () => buildNetworkSnapshot$r(luvio, config, snapshotRefreshOptions)
|
|
35661
35661
|
});
|
|
35662
35662
|
return cacheSnapshot;
|
|
35663
35663
|
}
|
|
@@ -36967,18 +36967,18 @@ function adapterFragment$a(luvio, config) {
|
|
|
36967
36967
|
function onFetchResponseSuccess$b(luvio, config, resourceParams, response) {
|
|
36968
36968
|
const snapshot = ingestSuccess$c(luvio, resourceParams, response, {
|
|
36969
36969
|
config,
|
|
36970
|
-
resolve: () => buildNetworkSnapshot$
|
|
36970
|
+
resolve: () => buildNetworkSnapshot$p(luvio, config, snapshotRefreshOptions)
|
|
36971
36971
|
});
|
|
36972
36972
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
36973
36973
|
}
|
|
36974
36974
|
function onFetchResponseError$a(luvio, config, resourceParams, response) {
|
|
36975
36975
|
const snapshot = ingestError$8(luvio, resourceParams, response, {
|
|
36976
36976
|
config,
|
|
36977
|
-
resolve: () => buildNetworkSnapshot$
|
|
36977
|
+
resolve: () => buildNetworkSnapshot$p(luvio, config, snapshotRefreshOptions)
|
|
36978
36978
|
});
|
|
36979
36979
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
36980
36980
|
}
|
|
36981
|
-
function buildNetworkSnapshot$
|
|
36981
|
+
function buildNetworkSnapshot$p(luvio, config, options) {
|
|
36982
36982
|
const resourceParams = createResourceParams$j(config);
|
|
36983
36983
|
const request = createResourceRequest$n(resourceParams);
|
|
36984
36984
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -36993,7 +36993,7 @@ function buildNetworkSnapshot$l(luvio, config, options) {
|
|
|
36993
36993
|
});
|
|
36994
36994
|
}
|
|
36995
36995
|
function buildNetworkSnapshotCachePolicy$d(context, coercedAdapterRequestContext) {
|
|
36996
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
36996
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$p, 'get', false);
|
|
36997
36997
|
}
|
|
36998
36998
|
function buildCachedSnapshotCachePolicy$c(context, storeLookup) {
|
|
36999
36999
|
const { luvio, config } = context;
|
|
@@ -37004,7 +37004,7 @@ function buildCachedSnapshotCachePolicy$c(context, storeLookup) {
|
|
|
37004
37004
|
};
|
|
37005
37005
|
const cacheSnapshot = storeLookup(selector, {
|
|
37006
37006
|
config,
|
|
37007
|
-
resolve: () => buildNetworkSnapshot$
|
|
37007
|
+
resolve: () => buildNetworkSnapshot$p(luvio, config, snapshotRefreshOptions)
|
|
37008
37008
|
});
|
|
37009
37009
|
return cacheSnapshot;
|
|
37010
37010
|
}
|
|
@@ -37062,14 +37062,14 @@ function adapterFragment$9(luvio, config) {
|
|
|
37062
37062
|
function onFetchResponseSuccess$a(luvio, config, resourceParams, response) {
|
|
37063
37063
|
const snapshot = ingestSuccess$d(luvio, resourceParams, response, {
|
|
37064
37064
|
config,
|
|
37065
|
-
resolve: () => buildNetworkSnapshot$
|
|
37065
|
+
resolve: () => buildNetworkSnapshot$o(luvio, config, snapshotRefreshOptions)
|
|
37066
37066
|
});
|
|
37067
37067
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
37068
37068
|
}
|
|
37069
37069
|
function onFetchResponseError$9(luvio, config, resourceParams, response) {
|
|
37070
37070
|
const snapshot = ingestError$9(luvio, resourceParams, response, {
|
|
37071
37071
|
config,
|
|
37072
|
-
resolve: () => buildNetworkSnapshot$
|
|
37072
|
+
resolve: () => buildNetworkSnapshot$o(luvio, config, snapshotRefreshOptions)
|
|
37073
37073
|
});
|
|
37074
37074
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
37075
37075
|
}
|
|
@@ -37140,7 +37140,7 @@ function getPaginationMetadata$1(luvio, resourceParams) {
|
|
|
37140
37140
|
}
|
|
37141
37141
|
return node.data.__metadata;
|
|
37142
37142
|
}
|
|
37143
|
-
function buildNetworkSnapshot$
|
|
37143
|
+
function buildNetworkSnapshot$o(luvio, config, options, cacheSnapshot) {
|
|
37144
37144
|
const resourceParams = createResourceParams$i(config);
|
|
37145
37145
|
const request = prepareRequest$2(luvio, config, resourceParams, cacheSnapshot);
|
|
37146
37146
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -37155,7 +37155,7 @@ function buildNetworkSnapshot$k(luvio, config, options, cacheSnapshot) {
|
|
|
37155
37155
|
});
|
|
37156
37156
|
}
|
|
37157
37157
|
function buildNetworkSnapshotCachePolicy$c(context, coercedAdapterRequestContext) {
|
|
37158
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
37158
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$o, 'get', true);
|
|
37159
37159
|
}
|
|
37160
37160
|
function buildCachedSnapshotCachePolicy$b(context, storeLookup) {
|
|
37161
37161
|
const { luvio, config } = context;
|
|
@@ -37166,7 +37166,7 @@ function buildCachedSnapshotCachePolicy$b(context, storeLookup) {
|
|
|
37166
37166
|
};
|
|
37167
37167
|
const cacheSnapshot = storeLookup(selector, {
|
|
37168
37168
|
config,
|
|
37169
|
-
resolve: () => buildNetworkSnapshot$
|
|
37169
|
+
resolve: () => buildNetworkSnapshot$o(luvio, config, snapshotRefreshOptions)
|
|
37170
37170
|
});
|
|
37171
37171
|
if (isUnfulfilledSnapshot$1(cacheSnapshot) && cacheSnapshot.data !== undefined) {
|
|
37172
37172
|
context.cacheSnapshot = cacheSnapshot;
|
|
@@ -37498,18 +37498,18 @@ function adapterFragment$8(luvio, config) {
|
|
|
37498
37498
|
function onFetchResponseSuccess$9(luvio, config, resourceParams, response) {
|
|
37499
37499
|
const snapshot = ingestSuccess$b(luvio, resourceParams, response, {
|
|
37500
37500
|
config,
|
|
37501
|
-
resolve: () => buildNetworkSnapshot$
|
|
37501
|
+
resolve: () => buildNetworkSnapshot$n(luvio, config, snapshotRefreshOptions)
|
|
37502
37502
|
});
|
|
37503
37503
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
37504
37504
|
}
|
|
37505
37505
|
function onFetchResponseError$8(luvio, config, resourceParams, response) {
|
|
37506
37506
|
const snapshot = ingestError$7(luvio, resourceParams, response, {
|
|
37507
37507
|
config,
|
|
37508
|
-
resolve: () => buildNetworkSnapshot$
|
|
37508
|
+
resolve: () => buildNetworkSnapshot$n(luvio, config, snapshotRefreshOptions)
|
|
37509
37509
|
});
|
|
37510
37510
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
37511
37511
|
}
|
|
37512
|
-
function buildNetworkSnapshot$
|
|
37512
|
+
function buildNetworkSnapshot$n(luvio, config, options) {
|
|
37513
37513
|
const resourceParams = createResourceParams$h(config);
|
|
37514
37514
|
const request = createResourceRequest$m(resourceParams);
|
|
37515
37515
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -37524,7 +37524,7 @@ function buildNetworkSnapshot$j(luvio, config, options) {
|
|
|
37524
37524
|
});
|
|
37525
37525
|
}
|
|
37526
37526
|
function buildNetworkSnapshotCachePolicy$b(context, coercedAdapterRequestContext) {
|
|
37527
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
37527
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$n, undefined, false);
|
|
37528
37528
|
}
|
|
37529
37529
|
function buildCachedSnapshotCachePolicy$a(context, storeLookup) {
|
|
37530
37530
|
const { luvio, config } = context;
|
|
@@ -37535,7 +37535,7 @@ function buildCachedSnapshotCachePolicy$a(context, storeLookup) {
|
|
|
37535
37535
|
};
|
|
37536
37536
|
const cacheSnapshot = storeLookup(selector, {
|
|
37537
37537
|
config,
|
|
37538
|
-
resolve: () => buildNetworkSnapshot$
|
|
37538
|
+
resolve: () => buildNetworkSnapshot$n(luvio, config, snapshotRefreshOptions)
|
|
37539
37539
|
});
|
|
37540
37540
|
return cacheSnapshot;
|
|
37541
37541
|
}
|
|
@@ -37754,18 +37754,18 @@ function adapterFragment$7(luvio, config) {
|
|
|
37754
37754
|
function onFetchResponseSuccess$8(luvio, config, resourceParams, response) {
|
|
37755
37755
|
const snapshot = ingestSuccess$a(luvio, resourceParams, response, {
|
|
37756
37756
|
config,
|
|
37757
|
-
resolve: () => buildNetworkSnapshot$
|
|
37757
|
+
resolve: () => buildNetworkSnapshot$m(luvio, config, snapshotRefreshOptions)
|
|
37758
37758
|
});
|
|
37759
37759
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
37760
37760
|
}
|
|
37761
37761
|
function onFetchResponseError$7(luvio, config, resourceParams, response) {
|
|
37762
37762
|
const snapshot = ingestError$6(luvio, resourceParams, response, {
|
|
37763
37763
|
config,
|
|
37764
|
-
resolve: () => buildNetworkSnapshot$
|
|
37764
|
+
resolve: () => buildNetworkSnapshot$m(luvio, config, snapshotRefreshOptions)
|
|
37765
37765
|
});
|
|
37766
37766
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
37767
37767
|
}
|
|
37768
|
-
function buildNetworkSnapshot$
|
|
37768
|
+
function buildNetworkSnapshot$m(luvio, config, options) {
|
|
37769
37769
|
const resourceParams = createResourceParams$g(config);
|
|
37770
37770
|
const request = createResourceRequest$l(resourceParams);
|
|
37771
37771
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -37780,7 +37780,7 @@ function buildNetworkSnapshot$i(luvio, config, options) {
|
|
|
37780
37780
|
});
|
|
37781
37781
|
}
|
|
37782
37782
|
function buildNetworkSnapshotCachePolicy$a(context, coercedAdapterRequestContext) {
|
|
37783
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
37783
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$m, undefined, false);
|
|
37784
37784
|
}
|
|
37785
37785
|
function buildCachedSnapshotCachePolicy$9(context, storeLookup) {
|
|
37786
37786
|
const { luvio, config } = context;
|
|
@@ -37791,7 +37791,7 @@ function buildCachedSnapshotCachePolicy$9(context, storeLookup) {
|
|
|
37791
37791
|
};
|
|
37792
37792
|
const cacheSnapshot = storeLookup(selector, {
|
|
37793
37793
|
config,
|
|
37794
|
-
resolve: () => buildNetworkSnapshot$
|
|
37794
|
+
resolve: () => buildNetworkSnapshot$m(luvio, config, snapshotRefreshOptions)
|
|
37795
37795
|
});
|
|
37796
37796
|
return cacheSnapshot;
|
|
37797
37797
|
}
|
|
@@ -38171,18 +38171,18 @@ function adapterFragment$6(luvio, config) {
|
|
|
38171
38171
|
function onFetchResponseSuccess$7(luvio, config, resourceParams, response) {
|
|
38172
38172
|
const snapshot = ingestSuccess$9(luvio, resourceParams, response, {
|
|
38173
38173
|
config,
|
|
38174
|
-
resolve: () => buildNetworkSnapshot$
|
|
38174
|
+
resolve: () => buildNetworkSnapshot$l(luvio, config, snapshotRefreshOptions)
|
|
38175
38175
|
});
|
|
38176
38176
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
38177
38177
|
}
|
|
38178
38178
|
function onFetchResponseError$6(luvio, config, resourceParams, response) {
|
|
38179
38179
|
const snapshot = ingestError$5(luvio, resourceParams, response, {
|
|
38180
38180
|
config,
|
|
38181
|
-
resolve: () => buildNetworkSnapshot$
|
|
38181
|
+
resolve: () => buildNetworkSnapshot$l(luvio, config, snapshotRefreshOptions)
|
|
38182
38182
|
});
|
|
38183
38183
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
38184
38184
|
}
|
|
38185
|
-
function buildNetworkSnapshot$
|
|
38185
|
+
function buildNetworkSnapshot$l(luvio, config, options) {
|
|
38186
38186
|
const resourceParams = createResourceParams$f(config);
|
|
38187
38187
|
const request = createResourceRequest$k(resourceParams);
|
|
38188
38188
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -38197,7 +38197,7 @@ function buildNetworkSnapshot$h(luvio, config, options) {
|
|
|
38197
38197
|
});
|
|
38198
38198
|
}
|
|
38199
38199
|
function buildNetworkSnapshotCachePolicy$9(context, coercedAdapterRequestContext) {
|
|
38200
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
38200
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$l, undefined, false);
|
|
38201
38201
|
}
|
|
38202
38202
|
function buildCachedSnapshotCachePolicy$8(context, storeLookup) {
|
|
38203
38203
|
const { luvio, config } = context;
|
|
@@ -38208,7 +38208,7 @@ function buildCachedSnapshotCachePolicy$8(context, storeLookup) {
|
|
|
38208
38208
|
};
|
|
38209
38209
|
const cacheSnapshot = storeLookup(selector, {
|
|
38210
38210
|
config,
|
|
38211
|
-
resolve: () => buildNetworkSnapshot$
|
|
38211
|
+
resolve: () => buildNetworkSnapshot$l(luvio, config, snapshotRefreshOptions)
|
|
38212
38212
|
});
|
|
38213
38213
|
return cacheSnapshot;
|
|
38214
38214
|
}
|
|
@@ -39201,18 +39201,18 @@ function adapterFragment$5(luvio, config) {
|
|
|
39201
39201
|
function onFetchResponseSuccess$6(luvio, config, resourceParams, response) {
|
|
39202
39202
|
const snapshot = ingestSuccess$8(luvio, resourceParams, response, {
|
|
39203
39203
|
config,
|
|
39204
|
-
resolve: () => buildNetworkSnapshot$
|
|
39204
|
+
resolve: () => buildNetworkSnapshot$k(luvio, config, snapshotRefreshOptions)
|
|
39205
39205
|
});
|
|
39206
39206
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
39207
39207
|
}
|
|
39208
39208
|
function onFetchResponseError$5(luvio, config, resourceParams, response) {
|
|
39209
39209
|
const snapshot = ingestError$4(luvio, resourceParams, response, {
|
|
39210
39210
|
config,
|
|
39211
|
-
resolve: () => buildNetworkSnapshot$
|
|
39211
|
+
resolve: () => buildNetworkSnapshot$k(luvio, config, snapshotRefreshOptions)
|
|
39212
39212
|
});
|
|
39213
39213
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
39214
39214
|
}
|
|
39215
|
-
function buildNetworkSnapshot$
|
|
39215
|
+
function buildNetworkSnapshot$k(luvio, config, options) {
|
|
39216
39216
|
const resourceParams = createResourceParams$e(config);
|
|
39217
39217
|
const request = createResourceRequest$j(resourceParams);
|
|
39218
39218
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -39227,7 +39227,7 @@ function buildNetworkSnapshot$g(luvio, config, options) {
|
|
|
39227
39227
|
});
|
|
39228
39228
|
}
|
|
39229
39229
|
function buildNetworkSnapshotCachePolicy$8(context, coercedAdapterRequestContext) {
|
|
39230
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
39230
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$k, 'get', false);
|
|
39231
39231
|
}
|
|
39232
39232
|
function buildCachedSnapshotCachePolicy$7(context, storeLookup) {
|
|
39233
39233
|
const { luvio, config } = context;
|
|
@@ -39238,7 +39238,7 @@ function buildCachedSnapshotCachePolicy$7(context, storeLookup) {
|
|
|
39238
39238
|
};
|
|
39239
39239
|
const cacheSnapshot = storeLookup(selector, {
|
|
39240
39240
|
config,
|
|
39241
|
-
resolve: () => buildNetworkSnapshot$
|
|
39241
|
+
resolve: () => buildNetworkSnapshot$k(luvio, config, snapshotRefreshOptions)
|
|
39242
39242
|
});
|
|
39243
39243
|
return cacheSnapshot;
|
|
39244
39244
|
}
|
|
@@ -39484,18 +39484,18 @@ function adapterFragment$4(luvio, config) {
|
|
|
39484
39484
|
function onFetchResponseSuccess$5(luvio, config, resourceParams, response) {
|
|
39485
39485
|
const snapshot = ingestSuccess$7(luvio, resourceParams, response, {
|
|
39486
39486
|
config,
|
|
39487
|
-
resolve: () => buildNetworkSnapshot$
|
|
39487
|
+
resolve: () => buildNetworkSnapshot$j(luvio, config, snapshotRefreshOptions)
|
|
39488
39488
|
});
|
|
39489
39489
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
39490
39490
|
}
|
|
39491
39491
|
function onFetchResponseError$4(luvio, config, resourceParams, response) {
|
|
39492
39492
|
const snapshot = ingestError$3(luvio, resourceParams, response, {
|
|
39493
39493
|
config,
|
|
39494
|
-
resolve: () => buildNetworkSnapshot$
|
|
39494
|
+
resolve: () => buildNetworkSnapshot$j(luvio, config, snapshotRefreshOptions)
|
|
39495
39495
|
});
|
|
39496
39496
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
39497
39497
|
}
|
|
39498
|
-
function buildNetworkSnapshot$
|
|
39498
|
+
function buildNetworkSnapshot$j(luvio, config, options) {
|
|
39499
39499
|
const resourceParams = createResourceParams$d(config);
|
|
39500
39500
|
const request = createResourceRequest$i(resourceParams);
|
|
39501
39501
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -39510,7 +39510,7 @@ function buildNetworkSnapshot$f(luvio, config, options) {
|
|
|
39510
39510
|
});
|
|
39511
39511
|
}
|
|
39512
39512
|
function buildNetworkSnapshotCachePolicy$7(context, coercedAdapterRequestContext) {
|
|
39513
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
39513
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$j, 'get', false);
|
|
39514
39514
|
}
|
|
39515
39515
|
function buildCachedSnapshotCachePolicy$6(context, storeLookup) {
|
|
39516
39516
|
const { luvio, config } = context;
|
|
@@ -39521,7 +39521,7 @@ function buildCachedSnapshotCachePolicy$6(context, storeLookup) {
|
|
|
39521
39521
|
};
|
|
39522
39522
|
const cacheSnapshot = storeLookup(selector, {
|
|
39523
39523
|
config,
|
|
39524
|
-
resolve: () => buildNetworkSnapshot$
|
|
39524
|
+
resolve: () => buildNetworkSnapshot$j(luvio, config, snapshotRefreshOptions)
|
|
39525
39525
|
});
|
|
39526
39526
|
return cacheSnapshot;
|
|
39527
39527
|
}
|
|
@@ -66927,18 +66927,18 @@ function adapterFragment$3(luvio, config) {
|
|
|
66927
66927
|
function onFetchResponseSuccess$4(luvio, config, resourceParams, response) {
|
|
66928
66928
|
const snapshot = ingestSuccess$5(luvio, resourceParams, response, {
|
|
66929
66929
|
config,
|
|
66930
|
-
resolve: () => buildNetworkSnapshot$
|
|
66930
|
+
resolve: () => buildNetworkSnapshot$i(luvio, config, snapshotRefreshOptions),
|
|
66931
66931
|
});
|
|
66932
66932
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
66933
66933
|
}
|
|
66934
66934
|
function onFetchResponseError$3(luvio, config, resourceParams, response) {
|
|
66935
66935
|
const snapshot = ingestError$1(luvio, resourceParams, response, {
|
|
66936
66936
|
config,
|
|
66937
|
-
resolve: () => buildNetworkSnapshot$
|
|
66937
|
+
resolve: () => buildNetworkSnapshot$i(luvio, config, snapshotRefreshOptions),
|
|
66938
66938
|
});
|
|
66939
66939
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
66940
66940
|
}
|
|
66941
|
-
function buildNetworkSnapshot$
|
|
66941
|
+
function buildNetworkSnapshot$i(luvio, config, options) {
|
|
66942
66942
|
const resourceParams = createResourceParams$c(transformConfiguration$1(config));
|
|
66943
66943
|
const request = createResourceRequest$f(resourceParams);
|
|
66944
66944
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
@@ -66967,7 +66967,7 @@ function buildNetworkSnapshotCachePolicy$6(context, coercedAdapterRequestContext
|
|
|
66967
66967
|
priority: networkPriority,
|
|
66968
66968
|
};
|
|
66969
66969
|
}
|
|
66970
|
-
return buildNetworkSnapshot$
|
|
66970
|
+
return buildNetworkSnapshot$i(luvio, config, dispatchOptions);
|
|
66971
66971
|
}
|
|
66972
66972
|
function buildCachedSnapshotCachePolicy$5(context, storeLookup) {
|
|
66973
66973
|
const { luvio, config } = context;
|
|
@@ -66978,7 +66978,7 @@ function buildCachedSnapshotCachePolicy$5(context, storeLookup) {
|
|
|
66978
66978
|
};
|
|
66979
66979
|
const cacheSnapshot = storeLookup(selector, {
|
|
66980
66980
|
config,
|
|
66981
|
-
resolve: () => buildNetworkSnapshot$
|
|
66981
|
+
resolve: () => buildNetworkSnapshot$i(luvio, config, snapshotRefreshOptions),
|
|
66982
66982
|
});
|
|
66983
66983
|
return cacheSnapshot;
|
|
66984
66984
|
}
|
|
@@ -67100,6 +67100,25 @@ function createResourceRequest$e(config) {
|
|
|
67100
67100
|
};
|
|
67101
67101
|
}
|
|
67102
67102
|
|
|
67103
|
+
/**
|
|
67104
|
+
* Builds the dispatch options for a DML (mutating) adapter from the caller's
|
|
67105
|
+
* narrowed request context, forwarding the `requestCorrelator` so the
|
|
67106
|
+
* originating observability context reaches the network adapter.
|
|
67107
|
+
*
|
|
67108
|
+
* Returns `undefined` when no request context was supplied, preserving the
|
|
67109
|
+
* pre-existing behavior where mutating adapters dispatched with no options.
|
|
67110
|
+
*/
|
|
67111
|
+
function createDispatchResourceRequestContext$2(requestContext) {
|
|
67112
|
+
if (requestContext === undefined) {
|
|
67113
|
+
return undefined;
|
|
67114
|
+
}
|
|
67115
|
+
return {
|
|
67116
|
+
resourceRequestContext: {
|
|
67117
|
+
requestCorrelator: requestContext.requestCorrelator,
|
|
67118
|
+
},
|
|
67119
|
+
};
|
|
67120
|
+
}
|
|
67121
|
+
|
|
67103
67122
|
const adapterName$8 = 'executeBatchRecordOperations';
|
|
67104
67123
|
const executeBatchRecordOperations_ConfigPropertyMetadata = [
|
|
67105
67124
|
generateParamConfigMetadata('allOrNone', true, 2, 1, false),
|
|
@@ -67162,7 +67181,7 @@ function validateAdapterConfig$c(untrustedConfig, configPropertyNames) {
|
|
|
67162
67181
|
}
|
|
67163
67182
|
return config;
|
|
67164
67183
|
}
|
|
67165
|
-
function buildNetworkSnapshot$
|
|
67184
|
+
function buildNetworkSnapshot$h(luvio, config, options) {
|
|
67166
67185
|
const resourceParams = batchUpdateRecordsCreateResourceParams(config);
|
|
67167
67186
|
const request = createResourceRequest$e(resourceParams);
|
|
67168
67187
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
@@ -67180,14 +67199,14 @@ function buildNetworkSnapshot$d(luvio, config, options) {
|
|
|
67180
67199
|
});
|
|
67181
67200
|
}
|
|
67182
67201
|
const factory$f = (luvio) => {
|
|
67183
|
-
return function executeBatchRecordOperations(untrustedConfig) {
|
|
67202
|
+
return function executeBatchRecordOperations(untrustedConfig, requestContext) {
|
|
67184
67203
|
const config = validateAdapterConfig$c(untrustedConfig, executeBatchRecordOperations_ConfigPropertyNames);
|
|
67185
67204
|
// Invalid or incomplete config
|
|
67186
67205
|
if (config === null) {
|
|
67187
67206
|
// eslint-disable-next-line @salesforce/lds/no-error-in-production
|
|
67188
67207
|
throw new Error('Invalid config for "executeBatchRecordOperations"');
|
|
67189
67208
|
}
|
|
67190
|
-
return buildNetworkSnapshot$
|
|
67209
|
+
return buildNetworkSnapshot$h(luvio, config, createDispatchResourceRequestContext$2(requestContext));
|
|
67191
67210
|
};
|
|
67192
67211
|
};
|
|
67193
67212
|
|
|
@@ -67260,18 +67279,18 @@ function adapterFragment$2(luvio, config) {
|
|
|
67260
67279
|
function onFetchResponseSuccess$3(luvio, config, resourceParams, response) {
|
|
67261
67280
|
const snapshot = ingestSuccess$6(luvio, config, resourceParams, response, {
|
|
67262
67281
|
config,
|
|
67263
|
-
resolve: () => buildNetworkSnapshot$
|
|
67282
|
+
resolve: () => buildNetworkSnapshot$g(luvio, config, snapshotRefreshOptions)
|
|
67264
67283
|
});
|
|
67265
67284
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
67266
67285
|
}
|
|
67267
67286
|
function onFetchResponseError$2(luvio, config, resourceParams, response) {
|
|
67268
67287
|
const snapshot = ingestError$2(luvio, config, resourceParams, response, {
|
|
67269
67288
|
config,
|
|
67270
|
-
resolve: () => buildNetworkSnapshot$
|
|
67289
|
+
resolve: () => buildNetworkSnapshot$g(luvio, config, snapshotRefreshOptions)
|
|
67271
67290
|
});
|
|
67272
67291
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
67273
67292
|
}
|
|
67274
|
-
function buildNetworkSnapshot$
|
|
67293
|
+
function buildNetworkSnapshot$g(luvio, config, options) {
|
|
67275
67294
|
const resourceParams = createResourceParams$b(transformConfiguration(config));
|
|
67276
67295
|
const request = createResourceRequest$g(resourceParams);
|
|
67277
67296
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -67295,7 +67314,7 @@ function buildNetworkSnapshot$c(luvio, config, options) {
|
|
|
67295
67314
|
});
|
|
67296
67315
|
}
|
|
67297
67316
|
function buildNetworkSnapshotCachePolicy$5(context, coercedAdapterRequestContext) {
|
|
67298
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
67317
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$g, undefined, false);
|
|
67299
67318
|
}
|
|
67300
67319
|
function buildCachedSnapshotCachePolicy$4(context, storeLookup) {
|
|
67301
67320
|
const { luvio, config } = context;
|
|
@@ -67306,7 +67325,7 @@ function buildCachedSnapshotCachePolicy$4(context, storeLookup) {
|
|
|
67306
67325
|
};
|
|
67307
67326
|
const cacheSnapshot = storeLookup(selector, {
|
|
67308
67327
|
config,
|
|
67309
|
-
resolve: () => buildNetworkSnapshot$
|
|
67328
|
+
resolve: () => buildNetworkSnapshot$g(luvio, config, snapshotRefreshOptions)
|
|
67310
67329
|
});
|
|
67311
67330
|
return cacheSnapshot;
|
|
67312
67331
|
}
|
|
@@ -67383,7 +67402,7 @@ const performUpdateRecordQuickAction_ConfigPropertyMetadata = [
|
|
|
67383
67402
|
generateParamConfigMetadata('fields', true, 2 /* Body */, 4 /* Unsupported */),
|
|
67384
67403
|
];
|
|
67385
67404
|
const createResourceParams$a = /*#__PURE__*/ createResourceParams$k(performUpdateRecordQuickAction_ConfigPropertyMetadata);
|
|
67386
|
-
function buildNetworkSnapshot$
|
|
67405
|
+
function buildNetworkSnapshot$f(luvio, config, options) {
|
|
67387
67406
|
const resourceParams = createResourceParams$a(config);
|
|
67388
67407
|
const request = createResourceRequest$d(resourceParams);
|
|
67389
67408
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -67447,7 +67466,7 @@ const performQuickAction_ConfigPropertyMetadata = [
|
|
|
67447
67466
|
generateParamConfigMetadata('fields', true, 2 /* Body */, 4 /* Unsupported */),
|
|
67448
67467
|
];
|
|
67449
67468
|
const createResourceParams$9 = /*#__PURE__*/ createResourceParams$k(performQuickAction_ConfigPropertyMetadata);
|
|
67450
|
-
function buildNetworkSnapshot$
|
|
67469
|
+
function buildNetworkSnapshot$e(luvio, config, options) {
|
|
67451
67470
|
const resourceParams = createResourceParams$9(config);
|
|
67452
67471
|
const request = createResourceRequest$c(resourceParams);
|
|
67453
67472
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -67466,35 +67485,41 @@ function buildNetworkSnapshot$a(luvio, config, options) {
|
|
|
67466
67485
|
});
|
|
67467
67486
|
}
|
|
67468
67487
|
|
|
67488
|
+
function buildNetworkSnapshot$d(luvio, config, options) {
|
|
67489
|
+
return buildNetworkSnapshot$f(luvio, config, options);
|
|
67490
|
+
}
|
|
67469
67491
|
const factory$d = (luvio) => {
|
|
67470
|
-
return function (untrustedConfig) {
|
|
67492
|
+
return function (untrustedConfig, requestContext) {
|
|
67471
67493
|
const config = untrustedConfig;
|
|
67472
67494
|
const draftAdapter = configurationForRestAdapters.getDraftAwarePerformUpdateRecordQuickActionAdapter();
|
|
67473
67495
|
if (draftAdapter !== undefined) {
|
|
67474
67496
|
return draftAdapter(config, (config) => {
|
|
67475
67497
|
const resourceParams = createResourceParams$9(config);
|
|
67476
67498
|
return createResourceRequest$d(resourceParams);
|
|
67477
|
-
});
|
|
67499
|
+
}, requestContext);
|
|
67478
67500
|
}
|
|
67479
|
-
return buildNetworkSnapshot$
|
|
67501
|
+
return buildNetworkSnapshot$d(luvio, config, createDispatchResourceRequestContext$2(requestContext));
|
|
67480
67502
|
};
|
|
67481
67503
|
};
|
|
67482
67504
|
|
|
67505
|
+
function buildNetworkSnapshot$c(luvio, config, options) {
|
|
67506
|
+
return buildNetworkSnapshot$e(luvio, config, options);
|
|
67507
|
+
}
|
|
67483
67508
|
const factory$c = (luvio) => {
|
|
67484
|
-
return function (untrustedConfig) {
|
|
67509
|
+
return function (untrustedConfig, requestContext) {
|
|
67485
67510
|
const config = untrustedConfig;
|
|
67486
67511
|
const draftAdapter = configurationForRestAdapters.getDraftAwarePerformQuickActionAdapter();
|
|
67487
67512
|
if (draftAdapter !== undefined) {
|
|
67488
67513
|
return draftAdapter(config, (config) => {
|
|
67489
67514
|
const resourceParams = createResourceParams$9(config);
|
|
67490
67515
|
return createResourceRequest$c(resourceParams);
|
|
67491
|
-
});
|
|
67516
|
+
}, requestContext);
|
|
67492
67517
|
}
|
|
67493
|
-
return buildNetworkSnapshot$
|
|
67518
|
+
return buildNetworkSnapshot$c(luvio, config, createDispatchResourceRequestContext$2(requestContext));
|
|
67494
67519
|
};
|
|
67495
67520
|
};
|
|
67496
67521
|
|
|
67497
|
-
function buildNetworkSnapshot$
|
|
67522
|
+
function buildNetworkSnapshot$b(luvio, config, options, cacheSnapshot) {
|
|
67498
67523
|
const resourceParams = createResourceParams$8(config);
|
|
67499
67524
|
const request = prepareRequest$1(luvio, config, resourceParams, cacheSnapshot);
|
|
67500
67525
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
@@ -67566,14 +67591,14 @@ function adapterFragment$1(luvio, config) {
|
|
|
67566
67591
|
function onFetchResponseSuccess$2(luvio, config, resourceParams, response) {
|
|
67567
67592
|
const snapshot = ingestSuccess$U(luvio, resourceParams, response, {
|
|
67568
67593
|
config,
|
|
67569
|
-
resolve: () => buildNetworkSnapshot$
|
|
67594
|
+
resolve: () => buildNetworkSnapshot$b(luvio, config, snapshotRefreshOptions)
|
|
67570
67595
|
});
|
|
67571
67596
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
67572
67597
|
}
|
|
67573
67598
|
function onFetchResponseError$1(luvio, config, resourceParams, response) {
|
|
67574
67599
|
const snapshot = ingestError$N(luvio, resourceParams, response, {
|
|
67575
67600
|
config,
|
|
67576
|
-
resolve: () => buildNetworkSnapshot$
|
|
67601
|
+
resolve: () => buildNetworkSnapshot$b(luvio, config, snapshotRefreshOptions)
|
|
67577
67602
|
});
|
|
67578
67603
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
67579
67604
|
}
|
|
@@ -67653,7 +67678,7 @@ function getPaginationMetadata(luvio, resourceParams) {
|
|
|
67653
67678
|
return node.data.__metadata;
|
|
67654
67679
|
}
|
|
67655
67680
|
function buildNetworkSnapshotCachePolicy$4(context, coercedAdapterRequestContext) {
|
|
67656
|
-
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$
|
|
67681
|
+
return buildNetworkSnapshotCachePolicy$s(context, coercedAdapterRequestContext, buildNetworkSnapshot$b, 'get', true);
|
|
67657
67682
|
}
|
|
67658
67683
|
function buildCachedSnapshotCachePolicy$3(context, storeLookup) {
|
|
67659
67684
|
const { luvio, config } = context;
|
|
@@ -67664,7 +67689,7 @@ function buildCachedSnapshotCachePolicy$3(context, storeLookup) {
|
|
|
67664
67689
|
};
|
|
67665
67690
|
const cacheSnapshot = storeLookup(selector, {
|
|
67666
67691
|
config,
|
|
67667
|
-
resolve: () => buildNetworkSnapshot$
|
|
67692
|
+
resolve: () => buildNetworkSnapshot$b(luvio, config, snapshotRefreshOptions)
|
|
67668
67693
|
});
|
|
67669
67694
|
if (isUnfulfilledSnapshot$1(cacheSnapshot) && cacheSnapshot.data !== undefined) {
|
|
67670
67695
|
context.cacheSnapshot = cacheSnapshot;
|
|
@@ -67966,7 +67991,7 @@ function removeEtags(recordRep) {
|
|
|
67966
67991
|
}
|
|
67967
67992
|
});
|
|
67968
67993
|
}
|
|
67969
|
-
function buildNetworkSnapshot$
|
|
67994
|
+
function buildNetworkSnapshot$a(luvio, config, options) {
|
|
67970
67995
|
const { objectApiName, fieldApiName } = config;
|
|
67971
67996
|
const resourceParams = {
|
|
67972
67997
|
/*
|
|
@@ -68044,7 +68069,7 @@ function buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext
|
|
|
68044
68069
|
priority: networkPriority,
|
|
68045
68070
|
};
|
|
68046
68071
|
}
|
|
68047
|
-
return buildNetworkSnapshot$
|
|
68072
|
+
return buildNetworkSnapshot$a(context.luvio, context.config, dispatchOptions);
|
|
68048
68073
|
}
|
|
68049
68074
|
const factory$9 = (luvio) => {
|
|
68050
68075
|
return (untrustedConfig, requestContext) => {
|
|
@@ -68054,7 +68079,7 @@ const factory$9 = (luvio) => {
|
|
|
68054
68079
|
}
|
|
68055
68080
|
const refresh = {
|
|
68056
68081
|
config,
|
|
68057
|
-
resolve: () => buildNetworkSnapshot$
|
|
68082
|
+
resolve: () => buildNetworkSnapshot$a(luvio, config),
|
|
68058
68083
|
};
|
|
68059
68084
|
const promiseOrSnapshot = luvio.applyCachePolicy(requestContext || {}, { config, luvio }, buildCachedSnapshot$2, buildNetworkSnapshotCachePolicy$3);
|
|
68060
68085
|
if (isPromise(promiseOrSnapshot)) {
|
|
@@ -68111,8 +68136,44 @@ function validateAdapterConfig$7(untrustedConfig, configPropertyNames) {
|
|
|
68111
68136
|
return config;
|
|
68112
68137
|
}
|
|
68113
68138
|
|
|
68139
|
+
function buildNetworkSnapshot$9(luvio, resourceParams, options) {
|
|
68140
|
+
const request = createResourceRequest$9(resourceParams);
|
|
68141
|
+
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
68142
|
+
const { body } = response;
|
|
68143
|
+
const key = keyBuilderFromType$f(luvio, body);
|
|
68144
|
+
return luvio.handleSuccessResponse(() => {
|
|
68145
|
+
let selectors;
|
|
68146
|
+
if (body.type === 'Theme') {
|
|
68147
|
+
selectors = select$2l;
|
|
68148
|
+
luvio.storeIngest(key, ingest$22, body);
|
|
68149
|
+
}
|
|
68150
|
+
else if (body.type === 'Photo') {
|
|
68151
|
+
selectors = select$2m;
|
|
68152
|
+
luvio.storeIngest(key, ingest$23, body);
|
|
68153
|
+
}
|
|
68154
|
+
else {
|
|
68155
|
+
// eslint-disable-next-line @salesforce/lds/no-error-in-production
|
|
68156
|
+
throw new Error('Unsupported avatar type');
|
|
68157
|
+
}
|
|
68158
|
+
// TODO [W-6804405]: support unions on fragments (only supported on links today)
|
|
68159
|
+
const snapshot = luvio.storeLookup({
|
|
68160
|
+
recordId: key,
|
|
68161
|
+
node: selectors(),
|
|
68162
|
+
variables: {},
|
|
68163
|
+
});
|
|
68164
|
+
return luvio.storeBroadcast().then(() => snapshot);
|
|
68165
|
+
}, () => {
|
|
68166
|
+
const cache = new StoreKeyMap();
|
|
68167
|
+
getTypeCacheKeys$24(cache, luvio, body);
|
|
68168
|
+
return cache;
|
|
68169
|
+
});
|
|
68170
|
+
}, (err) => {
|
|
68171
|
+
deepFreeze(err);
|
|
68172
|
+
throw err;
|
|
68173
|
+
});
|
|
68174
|
+
}
|
|
68114
68175
|
const factory$8 = (luvio) => {
|
|
68115
|
-
return (untrustedConfig) => {
|
|
68176
|
+
return (untrustedConfig, requestContext) => {
|
|
68116
68177
|
const config = validateAdapterConfig$7(untrustedConfig, updateRecordAvatar_ConfigPropertyNames);
|
|
68117
68178
|
if (config === null) {
|
|
68118
68179
|
// eslint-disable-next-line @salesforce/lds/no-error-in-production
|
|
@@ -68130,40 +68191,7 @@ const factory$8 = (luvio) => {
|
|
|
68130
68191
|
actionType: config.actionType,
|
|
68131
68192
|
},
|
|
68132
68193
|
};
|
|
68133
|
-
|
|
68134
|
-
return luvio.dispatchResourceRequest(request).then((response) => {
|
|
68135
|
-
const { body } = response;
|
|
68136
|
-
const key = keyBuilderFromType$f(luvio, body);
|
|
68137
|
-
return luvio.handleSuccessResponse(() => {
|
|
68138
|
-
let selectors;
|
|
68139
|
-
if (body.type === 'Theme') {
|
|
68140
|
-
selectors = select$2l;
|
|
68141
|
-
luvio.storeIngest(key, ingest$22, body);
|
|
68142
|
-
}
|
|
68143
|
-
else if (body.type === 'Photo') {
|
|
68144
|
-
selectors = select$2m;
|
|
68145
|
-
luvio.storeIngest(key, ingest$23, body);
|
|
68146
|
-
}
|
|
68147
|
-
else {
|
|
68148
|
-
// eslint-disable-next-line @salesforce/lds/no-error-in-production
|
|
68149
|
-
throw new Error('Unsupported avatar type');
|
|
68150
|
-
}
|
|
68151
|
-
// TODO [W-6804405]: support unions on fragments (only supported on links today)
|
|
68152
|
-
const snapshot = luvio.storeLookup({
|
|
68153
|
-
recordId: key,
|
|
68154
|
-
node: selectors(),
|
|
68155
|
-
variables: {},
|
|
68156
|
-
});
|
|
68157
|
-
return luvio.storeBroadcast().then(() => snapshot);
|
|
68158
|
-
}, () => {
|
|
68159
|
-
const cache = new StoreKeyMap();
|
|
68160
|
-
getTypeCacheKeys$24(cache, luvio, body);
|
|
68161
|
-
return cache;
|
|
68162
|
-
});
|
|
68163
|
-
}, (err) => {
|
|
68164
|
-
deepFreeze(err);
|
|
68165
|
-
throw err;
|
|
68166
|
-
});
|
|
68194
|
+
return buildNetworkSnapshot$9(luvio, resourceParams, createDispatchResourceRequestContext$2(requestContext));
|
|
68167
68195
|
};
|
|
68168
68196
|
};
|
|
68169
68197
|
|
|
@@ -68753,10 +68781,10 @@ function buildSelector(resp) {
|
|
|
68753
68781
|
function buildSnapshotRefresh$1(luvio, context, config) {
|
|
68754
68782
|
return {
|
|
68755
68783
|
config,
|
|
68756
|
-
resolve: () => buildNetworkSnapshot$
|
|
68784
|
+
resolve: () => buildNetworkSnapshot$8(luvio, context, config),
|
|
68757
68785
|
};
|
|
68758
68786
|
}
|
|
68759
|
-
function buildNetworkSnapshot$
|
|
68787
|
+
function buildNetworkSnapshot$8(luvio, context, config, options) {
|
|
68760
68788
|
const params = createResourceParams$7(config);
|
|
68761
68789
|
const request = createResourceRequest$8(params);
|
|
68762
68790
|
const key = keyBuilder$7(luvio, params);
|
|
@@ -68840,7 +68868,7 @@ function buildNetworkSnapshotCachePolicy$2(context, coercedAdapterRequestContext
|
|
|
68840
68868
|
priority: networkPriority,
|
|
68841
68869
|
};
|
|
68842
68870
|
}
|
|
68843
|
-
return buildNetworkSnapshot$
|
|
68871
|
+
return buildNetworkSnapshot$8(luvio, adapterContext, config, dispatchOptions);
|
|
68844
68872
|
}
|
|
68845
68873
|
const factory$7 = (luvio) => {
|
|
68846
68874
|
return luvio.withContext(function UiApi__getRecordCreateDefaults(untrusted, adapterContext, requestContext) {
|
|
@@ -69384,7 +69412,7 @@ function getRecordTypeId$1(adapterConfig, context) {
|
|
|
69384
69412
|
}
|
|
69385
69413
|
return contextValue;
|
|
69386
69414
|
}
|
|
69387
|
-
const buildNetworkSnapshot$
|
|
69415
|
+
const buildNetworkSnapshot$7 = (luvio, context, config, options) => {
|
|
69388
69416
|
const resourceParams = createResourceParams$6(config);
|
|
69389
69417
|
const recordTypeId = getRecordTypeId$1(config, context);
|
|
69390
69418
|
const { recordId } = config;
|
|
@@ -69447,7 +69475,7 @@ const buildNetworkSnapshot$6 = (luvio, context, config, options) => {
|
|
|
69447
69475
|
});
|
|
69448
69476
|
const errorSnapshot = luvio.errorSnapshot(response, {
|
|
69449
69477
|
config,
|
|
69450
|
-
resolve: () => buildNetworkSnapshot$
|
|
69478
|
+
resolve: () => buildNetworkSnapshot$7(luvio, context, config, snapshotRefreshOptions),
|
|
69451
69479
|
});
|
|
69452
69480
|
luvio.storeIngestError(key, errorSnapshot, RECORD_TEMPLATE_CLONE_ERROR_STORE_METADATA_PARAMS);
|
|
69453
69481
|
return Promise.resolve(errorSnapshot);
|
|
@@ -69467,7 +69495,7 @@ const buildCachedSnapshot$1 = (luvio, context, config) => {
|
|
|
69467
69495
|
};
|
|
69468
69496
|
return luvio.storeLookup(selector, {
|
|
69469
69497
|
config,
|
|
69470
|
-
resolve: () => buildNetworkSnapshot$
|
|
69498
|
+
resolve: () => buildNetworkSnapshot$7(luvio, context, config, snapshotRefreshOptions),
|
|
69471
69499
|
});
|
|
69472
69500
|
};
|
|
69473
69501
|
function buildNetworkSnapshotCachePolicy$1(context, coercedAdapterRequestContext) {
|
|
@@ -69485,7 +69513,7 @@ function buildNetworkSnapshotCachePolicy$1(context, coercedAdapterRequestContext
|
|
|
69485
69513
|
priority: networkPriority,
|
|
69486
69514
|
};
|
|
69487
69515
|
}
|
|
69488
|
-
return buildNetworkSnapshot$
|
|
69516
|
+
return buildNetworkSnapshot$7(luvio, adapterContext, config, dispatchOptions);
|
|
69489
69517
|
}
|
|
69490
69518
|
function buildCachedSnapshotCachePolicy$1(context, storeLookup) {
|
|
69491
69519
|
const { adapterContext, config, luvio, recordTypeId } = context;
|
|
@@ -69505,7 +69533,7 @@ function buildCachedSnapshotCachePolicy$1(context, storeLookup) {
|
|
|
69505
69533
|
};
|
|
69506
69534
|
return storeLookup(selector, {
|
|
69507
69535
|
config,
|
|
69508
|
-
resolve: () => buildNetworkSnapshot$
|
|
69536
|
+
resolve: () => buildNetworkSnapshot$7(luvio, adapterContext, updatedConfig, snapshotRefreshOptions),
|
|
69509
69537
|
});
|
|
69510
69538
|
}
|
|
69511
69539
|
const factory$6 = (luvio) => luvio.withContext(function getRecordTemplateClone_ContextWrapper(untrustedConfig, adapterContext, requestContext) {
|
|
@@ -70000,7 +70028,7 @@ const contextId = `${keyPrefix}__${adapterName$2}`;
|
|
|
70000
70028
|
function buildSnapshotRefresh(luvio, context, config) {
|
|
70001
70029
|
return {
|
|
70002
70030
|
config,
|
|
70003
|
-
resolve: () => buildNetworkSnapshot$
|
|
70031
|
+
resolve: () => buildNetworkSnapshot$6(luvio, context, config, snapshotRefreshOptions),
|
|
70004
70032
|
};
|
|
70005
70033
|
}
|
|
70006
70034
|
function buildRecordTypeIdContextKey(objectApiName) {
|
|
@@ -70081,7 +70109,7 @@ function onFetchResponseError(luvio, context, config, resourceParams, error) {
|
|
|
70081
70109
|
const snapshot = ingestError(luvio, resourceParams, error, buildSnapshotRefresh(luvio, context, config));
|
|
70082
70110
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
70083
70111
|
}
|
|
70084
|
-
function buildNetworkSnapshot$
|
|
70112
|
+
function buildNetworkSnapshot$6(luvio, context, config, options) {
|
|
70085
70113
|
const resourceParams = createResourceParams$5(config);
|
|
70086
70114
|
const request = prepareRequest(luvio, context, config);
|
|
70087
70115
|
return luvio
|
|
@@ -70124,7 +70152,7 @@ const buildNetworkSnapshotCachePolicy = (context, coercedAdapterRequestContext)
|
|
|
70124
70152
|
priority: networkPriority,
|
|
70125
70153
|
};
|
|
70126
70154
|
}
|
|
70127
|
-
return buildNetworkSnapshot$
|
|
70155
|
+
return buildNetworkSnapshot$6(luvio, adapterContext, config, dispatchOptions);
|
|
70128
70156
|
};
|
|
70129
70157
|
const buildCachedSnapshotCachePolicy = (context, storeLookup) => {
|
|
70130
70158
|
const { adapterContext, config, luvio, recordTypeId } = context;
|
|
@@ -70213,7 +70241,7 @@ function onResponseSuccess(luvio, response, recordIngest, conflictMap) {
|
|
|
70213
70241
|
});
|
|
70214
70242
|
return luvio.storeBroadcast().then(() => snapshot);
|
|
70215
70243
|
}
|
|
70216
|
-
function buildNetworkSnapshot$
|
|
70244
|
+
function buildNetworkSnapshot$5(luvio, config, options) {
|
|
70217
70245
|
const resourceParams = createResourceParams$4(config);
|
|
70218
70246
|
const request = createResourceRequest$5(resourceParams);
|
|
70219
70247
|
const fieldTrie = BLANK_RECORD_FIELDS_TRIE;
|
|
@@ -70223,7 +70251,7 @@ function buildNetworkSnapshot$4(luvio, config) {
|
|
|
70223
70251
|
serverRequestCount: 1,
|
|
70224
70252
|
};
|
|
70225
70253
|
const recordIngest = createRecordIngest(fieldTrie, optionalFieldTrie, conflictMap);
|
|
70226
|
-
return luvio.dispatchResourceRequest(request).then((response) => {
|
|
70254
|
+
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
70227
70255
|
return luvio.handleSuccessResponse(() => onResponseSuccess(luvio, response, recordIngest, conflictMap), () => {
|
|
70228
70256
|
const cache = new StoreKeyMap();
|
|
70229
70257
|
getResponseCacheKeys$3(cache, luvio, resourceParams, response.body);
|
|
@@ -70239,13 +70267,13 @@ function createResourceRequest$4(config) {
|
|
|
70239
70267
|
return createResourceRequest$5(resourceParams);
|
|
70240
70268
|
}
|
|
70241
70269
|
const factory$4 = (luvio) => {
|
|
70242
|
-
return function (untrustedConfig) {
|
|
70270
|
+
return function (untrustedConfig, requestContext) {
|
|
70243
70271
|
const config = untrustedConfig;
|
|
70244
70272
|
const draftAdapter = configurationForRestAdapters.getDraftAwareCreateRecordAdapter();
|
|
70245
70273
|
if (draftAdapter !== undefined) {
|
|
70246
|
-
return draftAdapter(config, createResourceRequest$4);
|
|
70274
|
+
return draftAdapter(config, createResourceRequest$4, requestContext);
|
|
70247
70275
|
}
|
|
70248
|
-
return buildNetworkSnapshot$
|
|
70276
|
+
return buildNetworkSnapshot$5(luvio, config, createDispatchResourceRequestContext$2(requestContext));
|
|
70249
70277
|
};
|
|
70250
70278
|
};
|
|
70251
70279
|
|
|
@@ -70305,7 +70333,7 @@ function validateAdapterConfig$3(untrustedConfig, configPropertyNames) {
|
|
|
70305
70333
|
}
|
|
70306
70334
|
return config;
|
|
70307
70335
|
}
|
|
70308
|
-
function buildNetworkSnapshot$
|
|
70336
|
+
function buildNetworkSnapshot$4(luvio, config, options) {
|
|
70309
70337
|
const resourceParams = createResourceParams$3(config);
|
|
70310
70338
|
const request = createResourceRequest$3(resourceParams);
|
|
70311
70339
|
return luvio.dispatchResourceRequest(request, options)
|
|
@@ -70323,29 +70351,26 @@ function buildNetworkSnapshot$3(luvio, config, options) {
|
|
|
70323
70351
|
throw response;
|
|
70324
70352
|
});
|
|
70325
70353
|
}
|
|
70326
|
-
const deleteRecordAdapterFactory = (luvio) => {
|
|
70327
|
-
return function UiApideleteRecord(untrustedConfig) {
|
|
70328
|
-
const config = validateAdapterConfig$3(untrustedConfig, deleteRecord_ConfigPropertyNames);
|
|
70329
|
-
// Invalid or incomplete config
|
|
70330
|
-
if (config === null) {
|
|
70331
|
-
throw new Error(`Invalid config for "${adapterName$1}"`);
|
|
70332
|
-
}
|
|
70333
|
-
return buildNetworkSnapshot$3(luvio, config);
|
|
70334
|
-
};
|
|
70335
|
-
};
|
|
70336
70354
|
|
|
70355
|
+
function buildNetworkSnapshot$3(luvio, config, options) {
|
|
70356
|
+
return buildNetworkSnapshot$4(luvio, config, options);
|
|
70357
|
+
}
|
|
70337
70358
|
const factory$3 = (luvio) => {
|
|
70338
|
-
|
|
70339
|
-
return (recordId) => {
|
|
70359
|
+
return (recordId, requestContext) => {
|
|
70340
70360
|
const config = { recordId };
|
|
70341
70361
|
const draftAdapter = configurationForRestAdapters.getDraftAwareDeleteRecordAdapter();
|
|
70342
70362
|
if (draftAdapter !== undefined) {
|
|
70343
70363
|
return draftAdapter(config, (config) => {
|
|
70344
70364
|
const params = createResourceParams$3(config);
|
|
70345
70365
|
return createResourceRequest$3(params);
|
|
70346
|
-
});
|
|
70366
|
+
}, requestContext);
|
|
70367
|
+
}
|
|
70368
|
+
const validatedConfig = validateAdapterConfig$3(config, deleteRecord_ConfigPropertyNames);
|
|
70369
|
+
if (validatedConfig === null) {
|
|
70370
|
+
// eslint-disable-next-line @salesforce/lds/no-error-in-production
|
|
70371
|
+
throw new Error('Invalid config for "deleteRecord"');
|
|
70347
70372
|
}
|
|
70348
|
-
return
|
|
70373
|
+
return buildNetworkSnapshot$3(luvio, validatedConfig, createDispatchResourceRequestContext$2(requestContext));
|
|
70349
70374
|
};
|
|
70350
70375
|
};
|
|
70351
70376
|
|