@salesforce/lds-worker-api 1.266.0-dev1 → 1.266.0-dev11
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/sfdc/es/ldsWorkerApi.js +1 -1
- package/dist/standalone/es/lds-worker-api.js +311 -202
- package/dist/standalone/umd/lds-worker-api.js +311 -202
- package/package.json +10 -10
|
@@ -3741,10 +3741,13 @@
|
|
|
3741
3741
|
}
|
|
3742
3742
|
publishStoreMetadata(key, storeMetadataParams) {
|
|
3743
3743
|
const { ttl, namespace, representationName, version } = storeMetadataParams;
|
|
3744
|
-
|
|
3744
|
+
let { ingestionTimestamp } = storeMetadataParams;
|
|
3745
|
+
if (ingestionTimestamp === undefined) {
|
|
3746
|
+
ingestionTimestamp = Date.now();
|
|
3747
|
+
}
|
|
3745
3748
|
const storeMetadata = {
|
|
3746
|
-
ingestionTimestamp:
|
|
3747
|
-
expirationTimestamp:
|
|
3749
|
+
ingestionTimestamp: ingestionTimestamp,
|
|
3750
|
+
expirationTimestamp: ingestionTimestamp + ttl,
|
|
3748
3751
|
representationName,
|
|
3749
3752
|
namespace,
|
|
3750
3753
|
version,
|
|
@@ -3971,6 +3974,7 @@
|
|
|
3971
3974
|
namespace,
|
|
3972
3975
|
version,
|
|
3973
3976
|
representationName,
|
|
3977
|
+
ingestionTimestamp: timestamp,
|
|
3974
3978
|
};
|
|
3975
3979
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
3976
3980
|
}
|
|
@@ -4018,7 +4022,7 @@
|
|
|
4018
4022
|
}
|
|
4019
4023
|
return resourceParams;
|
|
4020
4024
|
}
|
|
4021
|
-
// engine version: 0.154.
|
|
4025
|
+
// engine version: 0.154.7-dev4-96466e64
|
|
4022
4026
|
|
|
4023
4027
|
/**
|
|
4024
4028
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -4146,7 +4150,7 @@
|
|
|
4146
4150
|
}
|
|
4147
4151
|
callbacks.push(callback);
|
|
4148
4152
|
}
|
|
4149
|
-
// version: 1.266.0-
|
|
4153
|
+
// version: 1.266.0-dev11-133bca5b9
|
|
4150
4154
|
|
|
4151
4155
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4152
4156
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -15654,7 +15658,7 @@
|
|
|
15654
15658
|
}
|
|
15655
15659
|
return superResult;
|
|
15656
15660
|
}
|
|
15657
|
-
// version: 1.266.0-
|
|
15661
|
+
// version: 1.266.0-dev11-133bca5b9
|
|
15658
15662
|
|
|
15659
15663
|
function unwrap(data) {
|
|
15660
15664
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16579,7 +16583,7 @@
|
|
|
16579
16583
|
const { apiFamily, name } = metadata;
|
|
16580
16584
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16581
16585
|
}
|
|
16582
|
-
// version: 1.266.0-
|
|
16586
|
+
// version: 1.266.0-dev11-133bca5b9
|
|
16583
16587
|
|
|
16584
16588
|
/**
|
|
16585
16589
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -16678,7 +16682,7 @@
|
|
|
16678
16682
|
TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
|
|
16679
16683
|
TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
|
|
16680
16684
|
})(TypeCheckShapes || (TypeCheckShapes = {}));
|
|
16681
|
-
// engine version: 0.154.
|
|
16685
|
+
// engine version: 0.154.7-dev4-96466e64
|
|
16682
16686
|
|
|
16683
16687
|
const { keys: ObjectKeys$3, create: ObjectCreate$3 } = Object;
|
|
16684
16688
|
|
|
@@ -20806,6 +20810,7 @@
|
|
|
20806
20810
|
representationName: RepresentationType$S,
|
|
20807
20811
|
namespace: keyPrefix$2,
|
|
20808
20812
|
version: VERSION$18$1,
|
|
20813
|
+
ingestionTimestamp: timestamp,
|
|
20809
20814
|
});
|
|
20810
20815
|
return createLink$3(key);
|
|
20811
20816
|
};
|
|
@@ -21023,17 +21028,19 @@
|
|
|
21023
21028
|
function buildNetworkSnapshot$13(luvio, config, serverRequestCount = 0, options) {
|
|
21024
21029
|
const { request, key, allTrackedFields, resourceParams } = prepareRequest$6(luvio, config);
|
|
21025
21030
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
21031
|
+
// W-11964675 - Condition to dedupe a very specific set of requests for
|
|
21032
|
+
// Komaci - a batch record request with a single record followed by a single
|
|
21033
|
+
// record request. The fulfill logic sends the same network response, so
|
|
21034
|
+
// there is some TypeScript massaging to extract the RecordRepresentation
|
|
21035
|
+
//
|
|
21036
|
+
// W-14381091 - Ensure hoisting the response body happens prior to
|
|
21037
|
+
// calling `luvio.handleSuccessResponse`, since both arguments capture
|
|
21038
|
+
// the response.
|
|
21039
|
+
if (isSingleBatchRecordResponse(response.body)) {
|
|
21040
|
+
response.body = response.body.results[0]
|
|
21041
|
+
.result;
|
|
21042
|
+
}
|
|
21026
21043
|
return luvio.handleSuccessResponse(() => {
|
|
21027
|
-
// W-11964675 - Condition to dedupe a very specific set of requests for
|
|
21028
|
-
// Komaci - a batch record request with a single record followed by a single
|
|
21029
|
-
// record request. The fulfill logic sends the same network response, so
|
|
21030
|
-
// there is some TypeScript massaging to extract the RecordRepresentation
|
|
21031
|
-
if (isSingleBatchRecordResponse(response.body)) {
|
|
21032
|
-
let recordResponse = response;
|
|
21033
|
-
recordResponse.body = response.body.results[0]
|
|
21034
|
-
.result;
|
|
21035
|
-
return onResourceSuccess(luvio, config, key, allTrackedFields, recordResponse, serverRequestCount + 1);
|
|
21036
|
-
}
|
|
21037
21044
|
return onResourceSuccess(luvio, config, key, allTrackedFields, response, serverRequestCount + 1);
|
|
21038
21045
|
}, () => {
|
|
21039
21046
|
const cache = new StoreKeyMap();
|
|
@@ -21996,6 +22003,7 @@
|
|
|
21996
22003
|
namespace: "UiApi",
|
|
21997
22004
|
version: VERSION$16$1,
|
|
21998
22005
|
representationName: RepresentationType$R,
|
|
22006
|
+
ingestionTimestamp: timestamp,
|
|
21999
22007
|
};
|
|
22000
22008
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
22001
22009
|
}
|
|
@@ -22965,6 +22973,7 @@
|
|
|
22965
22973
|
namespace: "UiApi",
|
|
22966
22974
|
version: VERSION$13$1,
|
|
22967
22975
|
representationName: RepresentationType$O,
|
|
22976
|
+
ingestionTimestamp: timestamp,
|
|
22968
22977
|
};
|
|
22969
22978
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
22970
22979
|
}
|
|
@@ -25289,7 +25298,7 @@
|
|
|
25289
25298
|
// Temp fix until we can mimic the server behavior for non-layoutable entities.
|
|
25290
25299
|
let layoutMap = {};
|
|
25291
25300
|
if (hasOwnProperty$1.call(layouts, apiName)) {
|
|
25292
|
-
layoutMap = layouts[apiName][recordTypeId];
|
|
25301
|
+
layoutMap = layouts[apiName][recordTypeId] || {};
|
|
25293
25302
|
}
|
|
25294
25303
|
return {
|
|
25295
25304
|
layoutMap,
|
|
@@ -27583,7 +27592,10 @@
|
|
|
27583
27592
|
if (existingRecord === undefined || equals$N(existingRecord, incomingRecord) === false) {
|
|
27584
27593
|
luvio.storePublish(key, incomingRecord);
|
|
27585
27594
|
}
|
|
27586
|
-
luvio.publishStoreMetadata(key,
|
|
27595
|
+
luvio.publishStoreMetadata(key, {
|
|
27596
|
+
...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
|
|
27597
|
+
ingestionTimestamp: timestamp,
|
|
27598
|
+
});
|
|
27587
27599
|
return createLink$3(key);
|
|
27588
27600
|
};
|
|
27589
27601
|
};
|
|
@@ -28048,7 +28060,7 @@
|
|
|
28048
28060
|
buildCachedSnapshotCachePolicy$C, buildNetworkSnapshotCachePolicy$D);
|
|
28049
28061
|
};
|
|
28050
28062
|
|
|
28051
|
-
function validate$
|
|
28063
|
+
function validate$1f(obj, path = 'ActionRelatedListSingleBatchInputRepresentation') {
|
|
28052
28064
|
const v_error = (() => {
|
|
28053
28065
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
28054
28066
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -28459,7 +28471,7 @@
|
|
|
28459
28471
|
const untrustedConfig_relatedListsActionParameters_array = [];
|
|
28460
28472
|
for (let i = 0, arrayLength = untrustedConfig_relatedListsActionParameters.length; i < arrayLength; i++) {
|
|
28461
28473
|
const untrustedConfig_relatedListsActionParameters_item = untrustedConfig_relatedListsActionParameters[i];
|
|
28462
|
-
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$
|
|
28474
|
+
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$1f(untrustedConfig_relatedListsActionParameters_item);
|
|
28463
28475
|
if (referenceActionRelatedListSingleBatchInputRepresentationValidationError === null) {
|
|
28464
28476
|
untrustedConfig_relatedListsActionParameters_array.push(untrustedConfig_relatedListsActionParameters_item);
|
|
28465
28477
|
}
|
|
@@ -30698,7 +30710,7 @@
|
|
|
30698
30710
|
buildCachedSnapshotCachePolicy$t, buildNetworkSnapshotCachePolicy$u);
|
|
30699
30711
|
};
|
|
30700
30712
|
|
|
30701
|
-
function validate$
|
|
30713
|
+
function validate$15(obj, path = 'ListFilterByInfoInputRepresentation') {
|
|
30702
30714
|
const v_error = (() => {
|
|
30703
30715
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
30704
30716
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30729,7 +30741,7 @@
|
|
|
30729
30741
|
return v_error === undefined ? null : v_error;
|
|
30730
30742
|
}
|
|
30731
30743
|
|
|
30732
|
-
function validate$
|
|
30744
|
+
function validate$14(obj, path = 'ListScopeInputRepresentation') {
|
|
30733
30745
|
const v_error = (() => {
|
|
30734
30746
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
30735
30747
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30853,7 +30865,7 @@
|
|
|
30853
30865
|
const untrustedConfig_filteredByInfo_array = [];
|
|
30854
30866
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
30855
30867
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
30856
|
-
const referenceListFilterByInfoInputRepresentationValidationError = validate$
|
|
30868
|
+
const referenceListFilterByInfoInputRepresentationValidationError = validate$15(untrustedConfig_filteredByInfo_item);
|
|
30857
30869
|
if (referenceListFilterByInfoInputRepresentationValidationError === null) {
|
|
30858
30870
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
30859
30871
|
}
|
|
@@ -30861,7 +30873,7 @@
|
|
|
30861
30873
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
30862
30874
|
}
|
|
30863
30875
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
30864
|
-
const referenceListScopeInputRepresentationValidationError = validate$
|
|
30876
|
+
const referenceListScopeInputRepresentationValidationError = validate$14(untrustedConfig_scope);
|
|
30865
30877
|
if (referenceListScopeInputRepresentationValidationError === null) {
|
|
30866
30878
|
config.scope = untrustedConfig_scope;
|
|
30867
30879
|
}
|
|
@@ -31129,7 +31141,7 @@
|
|
|
31129
31141
|
const untrustedConfig_filteredByInfo_array = [];
|
|
31130
31142
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
31131
31143
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
31132
|
-
const referenceListFilterByInfoInputRepresentationValidationError = validate$
|
|
31144
|
+
const referenceListFilterByInfoInputRepresentationValidationError = validate$15(untrustedConfig_filteredByInfo_item);
|
|
31133
31145
|
if (referenceListFilterByInfoInputRepresentationValidationError === null) {
|
|
31134
31146
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
31135
31147
|
}
|
|
@@ -31137,7 +31149,7 @@
|
|
|
31137
31149
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
31138
31150
|
}
|
|
31139
31151
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
31140
|
-
const referenceListScopeInputRepresentationValidationError = validate$
|
|
31152
|
+
const referenceListScopeInputRepresentationValidationError = validate$14(untrustedConfig_scope);
|
|
31141
31153
|
if (referenceListScopeInputRepresentationValidationError === null) {
|
|
31142
31154
|
config.scope = untrustedConfig_scope;
|
|
31143
31155
|
}
|
|
@@ -31888,7 +31900,7 @@
|
|
|
31888
31900
|
buildCachedSnapshotCachePolicy$q, buildNetworkSnapshotCachePolicy$r);
|
|
31889
31901
|
};
|
|
31890
31902
|
|
|
31891
|
-
function validate$
|
|
31903
|
+
function validate$Z(obj, path = 'ListOrderedByInfoInputRepresentation') {
|
|
31892
31904
|
const v_error = (() => {
|
|
31893
31905
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
31894
31906
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -31991,7 +32003,7 @@
|
|
|
31991
32003
|
const untrustedConfig_orderedBy_array = [];
|
|
31992
32004
|
for (let i = 0, arrayLength = untrustedConfig_orderedBy.length; i < arrayLength; i++) {
|
|
31993
32005
|
const untrustedConfig_orderedBy_item = untrustedConfig_orderedBy[i];
|
|
31994
|
-
const referenceListOrderedByInfoInputRepresentationValidationError = validate$
|
|
32006
|
+
const referenceListOrderedByInfoInputRepresentationValidationError = validate$Z(untrustedConfig_orderedBy_item);
|
|
31995
32007
|
if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
|
|
31996
32008
|
untrustedConfig_orderedBy_array.push(untrustedConfig_orderedBy_item);
|
|
31997
32009
|
}
|
|
@@ -36053,7 +36065,7 @@
|
|
|
36053
36065
|
buildCachedSnapshotCachePolicy$d, buildNetworkSnapshotCachePolicy$e);
|
|
36054
36066
|
};
|
|
36055
36067
|
|
|
36056
|
-
function validate$
|
|
36068
|
+
function validate$z(obj, path = 'ListUserPreferenceInputRepresentation') {
|
|
36057
36069
|
const v_error = (() => {
|
|
36058
36070
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
36059
36071
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36130,7 +36142,7 @@
|
|
|
36130
36142
|
const untrustedConfig_orderedByInfo_array = [];
|
|
36131
36143
|
for (let i = 0, arrayLength = untrustedConfig_orderedByInfo.length; i < arrayLength; i++) {
|
|
36132
36144
|
const untrustedConfig_orderedByInfo_item = untrustedConfig_orderedByInfo[i];
|
|
36133
|
-
const referenceListOrderedByInfoInputRepresentationValidationError = validate$
|
|
36145
|
+
const referenceListOrderedByInfoInputRepresentationValidationError = validate$Z(untrustedConfig_orderedByInfo_item);
|
|
36134
36146
|
if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
|
|
36135
36147
|
untrustedConfig_orderedByInfo_array.push(untrustedConfig_orderedByInfo_item);
|
|
36136
36148
|
}
|
|
@@ -36138,7 +36150,7 @@
|
|
|
36138
36150
|
config.orderedByInfo = untrustedConfig_orderedByInfo_array;
|
|
36139
36151
|
}
|
|
36140
36152
|
const untrustedConfig_userPreferences = untrustedConfig.userPreferences;
|
|
36141
|
-
const referenceListUserPreferenceInputRepresentationValidationError = validate$
|
|
36153
|
+
const referenceListUserPreferenceInputRepresentationValidationError = validate$z(untrustedConfig_userPreferences);
|
|
36142
36154
|
if (referenceListUserPreferenceInputRepresentationValidationError === null) {
|
|
36143
36155
|
config.userPreferences = untrustedConfig_userPreferences;
|
|
36144
36156
|
}
|
|
@@ -36793,7 +36805,7 @@
|
|
|
36793
36805
|
const untrustedConfig_orderedBy_array = [];
|
|
36794
36806
|
for (let i = 0, arrayLength = untrustedConfig_orderedBy.length; i < arrayLength; i++) {
|
|
36795
36807
|
const untrustedConfig_orderedBy_item = untrustedConfig_orderedBy[i];
|
|
36796
|
-
const referenceListOrderedByInfoInputRepresentationValidationError = validate$
|
|
36808
|
+
const referenceListOrderedByInfoInputRepresentationValidationError = validate$Z(untrustedConfig_orderedBy_item);
|
|
36797
36809
|
if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
|
|
36798
36810
|
untrustedConfig_orderedBy_array.push(untrustedConfig_orderedBy_item);
|
|
36799
36811
|
}
|
|
@@ -36841,7 +36853,7 @@
|
|
|
36841
36853
|
};
|
|
36842
36854
|
};
|
|
36843
36855
|
|
|
36844
|
-
function validate$
|
|
36856
|
+
function validate$x(obj, path = 'RelatedListRecordsSingleBatchInputRepresentation') {
|
|
36845
36857
|
const v_error = (() => {
|
|
36846
36858
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
36847
36859
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -37389,6 +37401,7 @@
|
|
|
37389
37401
|
namespace: "UiApi",
|
|
37390
37402
|
version: VERSION$c$1,
|
|
37391
37403
|
representationName: RepresentationType$d,
|
|
37404
|
+
ingestionTimestamp: timestamp,
|
|
37392
37405
|
};
|
|
37393
37406
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
37394
37407
|
}
|
|
@@ -37794,7 +37807,7 @@
|
|
|
37794
37807
|
const untrustedConfig_relatedListParameters_array = [];
|
|
37795
37808
|
for (let i = 0, arrayLength = untrustedConfig_relatedListParameters.length; i < arrayLength; i++) {
|
|
37796
37809
|
const untrustedConfig_relatedListParameters_item = untrustedConfig_relatedListParameters[i];
|
|
37797
|
-
const referenceRelatedListRecordsSingleBatchInputRepresentationValidationError = validate$
|
|
37810
|
+
const referenceRelatedListRecordsSingleBatchInputRepresentationValidationError = validate$x(untrustedConfig_relatedListParameters_item);
|
|
37798
37811
|
if (referenceRelatedListRecordsSingleBatchInputRepresentationValidationError === null) {
|
|
37799
37812
|
untrustedConfig_relatedListParameters_array.push(untrustedConfig_relatedListParameters_item);
|
|
37800
37813
|
}
|
|
@@ -38588,7 +38601,7 @@
|
|
|
38588
38601
|
buildCachedSnapshotCachePolicy$6, buildNetworkSnapshotCachePolicy$7);
|
|
38589
38602
|
};
|
|
38590
38603
|
|
|
38591
|
-
function validate$
|
|
38604
|
+
function validate$m(obj, path = 'SearchDataCategoryInputRepresentation') {
|
|
38592
38605
|
const v_error = (() => {
|
|
38593
38606
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
38594
38607
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -38619,7 +38632,7 @@
|
|
|
38619
38632
|
return v_error === undefined ? null : v_error;
|
|
38620
38633
|
}
|
|
38621
38634
|
|
|
38622
|
-
function validate$
|
|
38635
|
+
function validate$l(obj, path = 'SearchFilterInputRepresentation') {
|
|
38623
38636
|
const v_error = (() => {
|
|
38624
38637
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
38625
38638
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -38688,7 +38701,7 @@
|
|
|
38688
38701
|
return v_error === undefined ? null : v_error;
|
|
38689
38702
|
}
|
|
38690
38703
|
|
|
38691
|
-
function validate$
|
|
38704
|
+
function validate$k(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
38692
38705
|
const v_error = (() => {
|
|
38693
38706
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
38694
38707
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -38701,7 +38714,7 @@
|
|
|
38701
38714
|
for (let i = 0; i < obj_dataCategories.length; i++) {
|
|
38702
38715
|
const obj_dataCategories_item = obj_dataCategories[i];
|
|
38703
38716
|
const path_dataCategories_item = path_dataCategories + '[' + i + ']';
|
|
38704
|
-
const referencepath_dataCategories_itemValidationError = validate$
|
|
38717
|
+
const referencepath_dataCategories_itemValidationError = validate$m(obj_dataCategories_item, path_dataCategories_item);
|
|
38705
38718
|
if (referencepath_dataCategories_itemValidationError !== null) {
|
|
38706
38719
|
let message = 'Object doesn\'t match SearchDataCategoryInputRepresentation (at "' + path_dataCategories_item + '")\n';
|
|
38707
38720
|
message += referencepath_dataCategories_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -38716,7 +38729,7 @@
|
|
|
38716
38729
|
for (let i = 0; i < obj_filters.length; i++) {
|
|
38717
38730
|
const obj_filters_item = obj_filters[i];
|
|
38718
38731
|
const path_filters_item = path_filters + '[' + i + ']';
|
|
38719
|
-
const referencepath_filters_itemValidationError = validate$
|
|
38732
|
+
const referencepath_filters_itemValidationError = validate$l(obj_filters_item, path_filters_item);
|
|
38720
38733
|
if (referencepath_filters_itemValidationError !== null) {
|
|
38721
38734
|
let message = 'Object doesn\'t match SearchFilterInputRepresentation (at "' + path_filters_item + '")\n';
|
|
38722
38735
|
message += referencepath_filters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -38847,7 +38860,7 @@
|
|
|
38847
38860
|
for (let i = 0, arrayLength = untrustedConfig_searchObjectOptions_keys.length; i < arrayLength; i++) {
|
|
38848
38861
|
const key = untrustedConfig_searchObjectOptions_keys[i];
|
|
38849
38862
|
const untrustedConfig_searchObjectOptions_prop = untrustedConfig_searchObjectOptions[key];
|
|
38850
|
-
const referenceSearchObjectOptionsRepresentationValidationError = validate$
|
|
38863
|
+
const referenceSearchObjectOptionsRepresentationValidationError = validate$k(untrustedConfig_searchObjectOptions_prop);
|
|
38851
38864
|
if (referenceSearchObjectOptionsRepresentationValidationError === null) {
|
|
38852
38865
|
if (untrustedConfig_searchObjectOptions_object !== undefined) {
|
|
38853
38866
|
untrustedConfig_searchObjectOptions_object[key] = untrustedConfig_searchObjectOptions_prop;
|
|
@@ -39050,7 +39063,7 @@
|
|
|
39050
39063
|
const untrustedConfig_filters_array = [];
|
|
39051
39064
|
for (let i = 0, arrayLength = untrustedConfig_filters.length; i < arrayLength; i++) {
|
|
39052
39065
|
const untrustedConfig_filters_item = untrustedConfig_filters[i];
|
|
39053
|
-
const referenceSearchFilterInputRepresentationValidationError = validate$
|
|
39066
|
+
const referenceSearchFilterInputRepresentationValidationError = validate$l(untrustedConfig_filters_item);
|
|
39054
39067
|
if (referenceSearchFilterInputRepresentationValidationError === null) {
|
|
39055
39068
|
untrustedConfig_filters_array.push(untrustedConfig_filters_item);
|
|
39056
39069
|
}
|
|
@@ -43147,7 +43160,7 @@
|
|
|
43147
43160
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory$1));
|
|
43148
43161
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyQuickActionDefaultsUpdateAvailable', notifyUpdateAvailableFactory));
|
|
43149
43162
|
});
|
|
43150
|
-
// version: 1.266.0-
|
|
43163
|
+
// version: 1.266.0-dev11-54133651d
|
|
43151
43164
|
|
|
43152
43165
|
var ldsIdempotencyWriteDisabled = {
|
|
43153
43166
|
isOpen: function (e) {
|
|
@@ -44656,6 +44669,10 @@
|
|
|
44656
44669
|
}
|
|
44657
44670
|
return {};
|
|
44658
44671
|
};
|
|
44672
|
+
const getIngestStagingStore = function () {
|
|
44673
|
+
validateNotDisposed();
|
|
44674
|
+
return stagingStore === null || stagingStore === void 0 ? void 0 : stagingStore.fallbackStringKeyInMemoryStore;
|
|
44675
|
+
};
|
|
44659
44676
|
const handleSuccessResponse = async function (ingestAndBroadcastFunc, getResponseCacheKeysFunc) {
|
|
44660
44677
|
validateNotDisposed();
|
|
44661
44678
|
const cacheKeyMap = getResponseCacheKeysFunc();
|
|
@@ -44848,6 +44865,7 @@
|
|
|
44848
44865
|
applyCachePolicy: { value: applyCachePolicy },
|
|
44849
44866
|
getIngestStagingStoreRecords: { value: getIngestStagingStoreRecords },
|
|
44850
44867
|
getIngestStagingStoreMetadata: { value: getIngestStagingStoreMetadata },
|
|
44868
|
+
getIngestStagingStore: { value: getIngestStagingStore },
|
|
44851
44869
|
handleSuccessResponse: { value: handleSuccessResponse },
|
|
44852
44870
|
handleErrorResponse: { value: handleErrorResponse },
|
|
44853
44871
|
getNotifyChangeStoreEntries: { value: getNotifyChangeStoreEntries },
|
|
@@ -47645,9 +47663,10 @@
|
|
|
47645
47663
|
// If there is no metadata for this query or it somehow lacks a timestamp
|
|
47646
47664
|
// skip setting the root timestamp
|
|
47647
47665
|
if (queryMetadata !== undefined && queryMetadata.ingestionTimestamp !== undefined) {
|
|
47648
|
-
|
|
47649
|
-
|
|
47650
|
-
|
|
47666
|
+
const timestamp = Number(queryMetadata.ingestionTimestamp);
|
|
47667
|
+
if (!isNaN(timestamp)) {
|
|
47668
|
+
input.rootTimestamp = timestamp;
|
|
47669
|
+
}
|
|
47651
47670
|
}
|
|
47652
47671
|
}
|
|
47653
47672
|
return recordQuery(selection, alias, apiName, [], input);
|
|
@@ -52298,6 +52317,20 @@
|
|
|
52298
52317
|
return values$2(objectInfo.fields).find((field) => field.apiName === fieldName ||
|
|
52299
52318
|
(field.dataType === 'Reference' && field.relationshipName === fieldName));
|
|
52300
52319
|
}
|
|
52320
|
+
async function readIngestionTimestampForKey(key, query) {
|
|
52321
|
+
let ingestionTimestamp = 0;
|
|
52322
|
+
const sql = `SELECT json_extract(metadata, '${JSON_EXTRACT_PATH_INGESTION_TIMESTAMP}') FROM lds_data WHERE key IS ?`;
|
|
52323
|
+
const results = await query(sql, [key]);
|
|
52324
|
+
const [timestamp] = results.rows.map((row) => row[0]);
|
|
52325
|
+
if (timestamp !== null) {
|
|
52326
|
+
const numericalTimestamp = Number(timestamp);
|
|
52327
|
+
if (isNaN(numericalTimestamp)) {
|
|
52328
|
+
return ingestionTimestamp;
|
|
52329
|
+
}
|
|
52330
|
+
ingestionTimestamp = numericalTimestamp;
|
|
52331
|
+
}
|
|
52332
|
+
return ingestionTimestamp;
|
|
52333
|
+
}
|
|
52301
52334
|
|
|
52302
52335
|
function findSpanningField(name) {
|
|
52303
52336
|
return (field) => {
|
|
@@ -52817,18 +52850,7 @@
|
|
|
52817
52850
|
const key = buildKeyStringForRecordQuery(operation,
|
|
52818
52851
|
// join varables passed from query to the argument variables given from the AST
|
|
52819
52852
|
{ ...variableValues, ...args }, info.fieldNodes[0].arguments, apiName);
|
|
52820
|
-
|
|
52821
|
-
SELECT json_extract(metadata, '${JSON_EXTRACT_PATH_INGESTION_TIMESTAMP}')
|
|
52822
|
-
FROM lds_data
|
|
52823
|
-
WHERE key IS ?
|
|
52824
|
-
`;
|
|
52825
|
-
const results = await query(sql, [key]);
|
|
52826
|
-
const [timestamp] = results.rows.map((row) => row[0]);
|
|
52827
|
-
if (timestamp !== null && typeof timestamp === 'number') {
|
|
52828
|
-
// adjust the timestamp to account for ingestion processing time
|
|
52829
|
-
// 30s is used because this is the default record TTL
|
|
52830
|
-
ingestionTimestamp = timestamp - 30000;
|
|
52831
|
-
}
|
|
52853
|
+
return readIngestionTimestampForKey(key, query);
|
|
52832
52854
|
}
|
|
52833
52855
|
return ingestionTimestamp;
|
|
52834
52856
|
}
|
|
@@ -54895,7 +54917,7 @@
|
|
|
54895
54917
|
function createjsonOutput(selections, jsonInput, jsonOutput) {
|
|
54896
54918
|
const keys$1 = keys$4(jsonInput);
|
|
54897
54919
|
selections.filter(isFieldNode).forEach((subSelection) => {
|
|
54898
|
-
const fieldName = subSelection.name.value;
|
|
54920
|
+
const fieldName = subSelection.alias ? subSelection.alias.value : subSelection.name.value;
|
|
54899
54921
|
if (keys$1.includes(fieldName)) {
|
|
54900
54922
|
if (isArray$2$1(jsonInput[fieldName])) {
|
|
54901
54923
|
jsonOutput[fieldName] = [];
|
|
@@ -56211,7 +56233,7 @@
|
|
|
56211
56233
|
* @param normalizedRecord Record containing normalized field links
|
|
56212
56234
|
* @param recordStore a store containing referenced record fields
|
|
56213
56235
|
*/
|
|
56214
|
-
function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries) {
|
|
56236
|
+
function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries, store) {
|
|
56215
56237
|
const fields = normalizedRecord.fields;
|
|
56216
56238
|
const filteredFields = {};
|
|
56217
56239
|
const links = {};
|
|
@@ -56238,6 +56260,19 @@
|
|
|
56238
56260
|
if (ref !== undefined) {
|
|
56239
56261
|
filteredFields[fieldName] = ref;
|
|
56240
56262
|
}
|
|
56263
|
+
else {
|
|
56264
|
+
// if we have a store to read, try to find the field there too
|
|
56265
|
+
// The durable ingest staging store may pass through to L1, and
|
|
56266
|
+
// not all fields are necessarily published every time, so it is
|
|
56267
|
+
// important to check L1 and not just the fields being published,
|
|
56268
|
+
// otherwise we risk truncating the fields on the record.
|
|
56269
|
+
if (store) {
|
|
56270
|
+
ref = store.readEntry(__ref);
|
|
56271
|
+
if (ref !== undefined) {
|
|
56272
|
+
filteredFields[fieldName] = ref;
|
|
56273
|
+
}
|
|
56274
|
+
}
|
|
56275
|
+
}
|
|
56241
56276
|
}
|
|
56242
56277
|
// we want to preserve fields that are missing nodes
|
|
56243
56278
|
if (filteredFields[fieldName] !== undefined || field.isMissing === true) {
|
|
@@ -56259,7 +56294,7 @@
|
|
|
56259
56294
|
}
|
|
56260
56295
|
return keyBuilder$20(luvio, { recordId });
|
|
56261
56296
|
}
|
|
56262
|
-
function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata) {
|
|
56297
|
+
function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata, getStore) {
|
|
56263
56298
|
const getEntries = function (entries, segment) {
|
|
56264
56299
|
// this HOF only inspects records in the default segment
|
|
56265
56300
|
if (segment !== DefaultDurableSegment) {
|
|
@@ -56327,6 +56362,7 @@
|
|
|
56327
56362
|
const putRecordViews = {};
|
|
56328
56363
|
const storeRecords = getStoreRecords !== undefined ? getStoreRecords() : {};
|
|
56329
56364
|
const storeMetadata = getStoreMetadata !== undefined ? getStoreMetadata() : {};
|
|
56365
|
+
const store = getStore();
|
|
56330
56366
|
for (let i = 0, len = keys$1.length; i < len; i++) {
|
|
56331
56367
|
const key = keys$1[i];
|
|
56332
56368
|
let value = entries[key];
|
|
@@ -56373,7 +56409,7 @@
|
|
|
56373
56409
|
metadataVersion: DURABLE_METADATA_VERSION,
|
|
56374
56410
|
};
|
|
56375
56411
|
}
|
|
56376
|
-
const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries);
|
|
56412
|
+
const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries, store);
|
|
56377
56413
|
putEntries[recordKey] = {
|
|
56378
56414
|
data: denormalizedRecord,
|
|
56379
56415
|
metadata,
|
|
@@ -60905,22 +60941,25 @@
|
|
|
60905
60941
|
const internalAdapterStore = new InMemoryStore();
|
|
60906
60942
|
let getIngestRecordsForInternalAdapters;
|
|
60907
60943
|
let getIngestMetadataForInternalAdapters;
|
|
60944
|
+
let getIngestStoreInternal;
|
|
60908
60945
|
const internalAdapterDurableStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => getIngestRecordsForInternalAdapters !== undefined
|
|
60909
60946
|
? getIngestRecordsForInternalAdapters()
|
|
60910
60947
|
: {}, () => getIngestMetadataForInternalAdapters !== undefined
|
|
60911
60948
|
? getIngestMetadataForInternalAdapters()
|
|
60912
|
-
: {});
|
|
60949
|
+
: {}, () => (getIngestStoreInternal !== undefined ? getIngestStoreInternal() : undefined));
|
|
60913
60950
|
const { adapters: { getObjectInfo, getObjectInfos, getRecord, getObjectInfoDirectory }, durableEnvironment: internalAdapterDurableEnvironment, luvio: internalLuvio, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
|
|
60914
60951
|
lazyInternalLuvio = internalLuvio;
|
|
60915
60952
|
getIngestRecordsForInternalAdapters =
|
|
60916
60953
|
internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
|
|
60917
60954
|
getIngestMetadataForInternalAdapters =
|
|
60918
60955
|
internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
|
|
60956
|
+
getIngestStoreInternal = internalAdapterDurableEnvironment.getIngestStagingStore;
|
|
60919
60957
|
lazyObjectInfoService = new ObjectInfoService(getObjectInfo, getObjectInfos, getObjectInfoDirectory, lazyBaseDurableStore);
|
|
60920
60958
|
// creates a durable store that denormalizes scalar fields for records
|
|
60921
60959
|
let getIngestRecords;
|
|
60922
60960
|
let getIngestMetadata;
|
|
60923
|
-
|
|
60961
|
+
let getIngestStore;
|
|
60962
|
+
const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}), () => (getIngestStore !== undefined ? getIngestStore() : undefined));
|
|
60924
60963
|
const baseEnv = new Environment(store, lazyNetworkAdapter);
|
|
60925
60964
|
const gqlEnv = makeEnvironmentGraphqlAware(baseEnv);
|
|
60926
60965
|
const durableEnv = makeDurable(gqlEnv, {
|
|
@@ -60929,6 +60968,7 @@
|
|
|
60929
60968
|
});
|
|
60930
60969
|
getIngestRecords = durableEnv.getIngestStagingStoreRecords;
|
|
60931
60970
|
getIngestMetadata = durableEnv.getIngestStagingStoreMetadata;
|
|
60971
|
+
getIngestStore = durableEnv.getIngestStagingStore;
|
|
60932
60972
|
// draft queue
|
|
60933
60973
|
lazyDraftQueue = buildLdsDraftQueue(recordDenormingStore);
|
|
60934
60974
|
const draftService = new UiApiDraftRecordService(lazyDraftQueue, () => lazyLuvio, recordDenormingStore, getObjectInfo, newRecordId, userId, formatDisplayValue);
|
|
@@ -61025,7 +61065,7 @@
|
|
|
61025
61065
|
id: '@salesforce/lds-network-adapter',
|
|
61026
61066
|
instrument: instrument$2,
|
|
61027
61067
|
});
|
|
61028
|
-
// version: 1.266.0-
|
|
61068
|
+
// version: 1.266.0-dev11-133bca5b9
|
|
61029
61069
|
|
|
61030
61070
|
const { create: create$3, keys: keys$3 } = Object;
|
|
61031
61071
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -61802,7 +61842,7 @@
|
|
|
61802
61842
|
};
|
|
61803
61843
|
}
|
|
61804
61844
|
function ingest$13(astNode, state) {
|
|
61805
|
-
const { path, data, luvio } = state;
|
|
61845
|
+
const { path, data, timestamp, luvio } = state;
|
|
61806
61846
|
const key = keyBuilder$16(luvio, path);
|
|
61807
61847
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
61808
61848
|
key,
|
|
@@ -61816,7 +61856,8 @@
|
|
|
61816
61856
|
ttl: TTL$1,
|
|
61817
61857
|
namespace: keyPrefix$1,
|
|
61818
61858
|
representationName: "DoubleValue",
|
|
61819
|
-
version: VERSION$1c
|
|
61859
|
+
version: VERSION$1c,
|
|
61860
|
+
ingestionTimestamp: timestamp,
|
|
61820
61861
|
},
|
|
61821
61862
|
});
|
|
61822
61863
|
}
|
|
@@ -61944,7 +61985,7 @@
|
|
|
61944
61985
|
};
|
|
61945
61986
|
}
|
|
61946
61987
|
function ingest$12(astNode, state) {
|
|
61947
|
-
const { path, data, luvio } = state;
|
|
61988
|
+
const { path, data, timestamp, luvio } = state;
|
|
61948
61989
|
const key = keyBuilder$15(luvio, path);
|
|
61949
61990
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
61950
61991
|
key,
|
|
@@ -61958,7 +61999,8 @@
|
|
|
61958
61999
|
ttl: TTL$1,
|
|
61959
62000
|
namespace: keyPrefix$1,
|
|
61960
62001
|
representationName: "LongValue",
|
|
61961
|
-
version: VERSION$1b
|
|
62002
|
+
version: VERSION$1b,
|
|
62003
|
+
ingestionTimestamp: timestamp,
|
|
61962
62004
|
},
|
|
61963
62005
|
});
|
|
61964
62006
|
}
|
|
@@ -62086,7 +62128,7 @@
|
|
|
62086
62128
|
};
|
|
62087
62129
|
}
|
|
62088
62130
|
function ingest$11(astNode, state) {
|
|
62089
|
-
const { path, data, luvio } = state;
|
|
62131
|
+
const { path, data, timestamp, luvio } = state;
|
|
62090
62132
|
const key = keyBuilder$14(luvio, path);
|
|
62091
62133
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
62092
62134
|
key,
|
|
@@ -62100,7 +62142,8 @@
|
|
|
62100
62142
|
ttl: TTL$1,
|
|
62101
62143
|
namespace: keyPrefix$1,
|
|
62102
62144
|
representationName: "PercentValue",
|
|
62103
|
-
version: VERSION$1a
|
|
62145
|
+
version: VERSION$1a,
|
|
62146
|
+
ingestionTimestamp: timestamp,
|
|
62104
62147
|
},
|
|
62105
62148
|
});
|
|
62106
62149
|
}
|
|
@@ -62228,7 +62271,7 @@
|
|
|
62228
62271
|
};
|
|
62229
62272
|
}
|
|
62230
62273
|
function ingest$10(astNode, state) {
|
|
62231
|
-
const { path, data, luvio } = state;
|
|
62274
|
+
const { path, data, timestamp, luvio } = state;
|
|
62232
62275
|
const key = keyBuilder$13(luvio, path);
|
|
62233
62276
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
62234
62277
|
key,
|
|
@@ -62242,7 +62285,8 @@
|
|
|
62242
62285
|
ttl: TTL$1,
|
|
62243
62286
|
namespace: keyPrefix$1,
|
|
62244
62287
|
representationName: "PercentAggregate",
|
|
62245
|
-
version: VERSION$19
|
|
62288
|
+
version: VERSION$19,
|
|
62289
|
+
ingestionTimestamp: timestamp,
|
|
62246
62290
|
},
|
|
62247
62291
|
});
|
|
62248
62292
|
}
|
|
@@ -62490,7 +62534,7 @@
|
|
|
62490
62534
|
};
|
|
62491
62535
|
}
|
|
62492
62536
|
function ingest$$(astNode, state) {
|
|
62493
|
-
const { path, data, luvio } = state;
|
|
62537
|
+
const { path, data, timestamp, luvio } = state;
|
|
62494
62538
|
const key = keyBuilder$12(luvio, path);
|
|
62495
62539
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
62496
62540
|
key,
|
|
@@ -62504,7 +62548,8 @@
|
|
|
62504
62548
|
ttl: TTL$1,
|
|
62505
62549
|
namespace: keyPrefix$1,
|
|
62506
62550
|
representationName: "IntValue",
|
|
62507
|
-
version: VERSION$18
|
|
62551
|
+
version: VERSION$18,
|
|
62552
|
+
ingestionTimestamp: timestamp,
|
|
62508
62553
|
},
|
|
62509
62554
|
});
|
|
62510
62555
|
}
|
|
@@ -62632,7 +62677,7 @@
|
|
|
62632
62677
|
};
|
|
62633
62678
|
}
|
|
62634
62679
|
function ingest$_(astNode, state) {
|
|
62635
|
-
const { path, data, luvio } = state;
|
|
62680
|
+
const { path, data, timestamp, luvio } = state;
|
|
62636
62681
|
const key = keyBuilder$11(luvio, path);
|
|
62637
62682
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
62638
62683
|
key,
|
|
@@ -62646,7 +62691,8 @@
|
|
|
62646
62691
|
ttl: TTL$1,
|
|
62647
62692
|
namespace: keyPrefix$1,
|
|
62648
62693
|
representationName: "StringValue",
|
|
62649
|
-
version: VERSION$17
|
|
62694
|
+
version: VERSION$17,
|
|
62695
|
+
ingestionTimestamp: timestamp,
|
|
62650
62696
|
},
|
|
62651
62697
|
});
|
|
62652
62698
|
}
|
|
@@ -62765,7 +62811,7 @@
|
|
|
62765
62811
|
};
|
|
62766
62812
|
}
|
|
62767
62813
|
function ingest$Z(astNode, state) {
|
|
62768
|
-
const { path, data, luvio } = state;
|
|
62814
|
+
const { path, data, timestamp, luvio } = state;
|
|
62769
62815
|
const key = keyBuilder$10(luvio, path);
|
|
62770
62816
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
62771
62817
|
key,
|
|
@@ -62779,7 +62825,8 @@
|
|
|
62779
62825
|
ttl: TTL$1,
|
|
62780
62826
|
namespace: keyPrefix$1,
|
|
62781
62827
|
representationName: "StringAggregate",
|
|
62782
|
-
version: VERSION$16
|
|
62828
|
+
version: VERSION$16,
|
|
62829
|
+
ingestionTimestamp: timestamp,
|
|
62783
62830
|
},
|
|
62784
62831
|
});
|
|
62785
62832
|
}
|
|
@@ -63007,7 +63054,7 @@
|
|
|
63007
63054
|
};
|
|
63008
63055
|
}
|
|
63009
63056
|
function ingest$Y(astNode, state) {
|
|
63010
|
-
const { path, data, luvio } = state;
|
|
63057
|
+
const { path, data, timestamp, luvio } = state;
|
|
63011
63058
|
const key = keyBuilder$$(luvio, path);
|
|
63012
63059
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
63013
63060
|
key,
|
|
@@ -63021,7 +63068,8 @@
|
|
|
63021
63068
|
ttl: TTL$1,
|
|
63022
63069
|
namespace: keyPrefix$1,
|
|
63023
63070
|
representationName: "IDValue",
|
|
63024
|
-
version: VERSION$15
|
|
63071
|
+
version: VERSION$15,
|
|
63072
|
+
ingestionTimestamp: timestamp,
|
|
63025
63073
|
},
|
|
63026
63074
|
});
|
|
63027
63075
|
}
|
|
@@ -63143,7 +63191,7 @@
|
|
|
63143
63191
|
};
|
|
63144
63192
|
}
|
|
63145
63193
|
function ingest$X(astNode, state) {
|
|
63146
|
-
const { path, data, luvio } = state;
|
|
63194
|
+
const { path, data, timestamp, luvio } = state;
|
|
63147
63195
|
const key = keyBuilder$_(luvio, path);
|
|
63148
63196
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
63149
63197
|
key,
|
|
@@ -63157,7 +63205,8 @@
|
|
|
63157
63205
|
ttl: TTL$1,
|
|
63158
63206
|
namespace: keyPrefix$1,
|
|
63159
63207
|
representationName: "DateTimeValue",
|
|
63160
|
-
version: VERSION$14
|
|
63208
|
+
version: VERSION$14,
|
|
63209
|
+
ingestionTimestamp: timestamp,
|
|
63161
63210
|
},
|
|
63162
63211
|
});
|
|
63163
63212
|
}
|
|
@@ -63285,7 +63334,7 @@
|
|
|
63285
63334
|
};
|
|
63286
63335
|
}
|
|
63287
63336
|
function ingest$W(astNode, state) {
|
|
63288
|
-
const { path, data, luvio } = state;
|
|
63337
|
+
const { path, data, timestamp, luvio } = state;
|
|
63289
63338
|
const key = keyBuilder$Z(luvio, path);
|
|
63290
63339
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
63291
63340
|
key,
|
|
@@ -63299,7 +63348,8 @@
|
|
|
63299
63348
|
ttl: TTL$1,
|
|
63300
63349
|
namespace: keyPrefix$1,
|
|
63301
63350
|
representationName: "BooleanValue",
|
|
63302
|
-
version: VERSION$13
|
|
63351
|
+
version: VERSION$13,
|
|
63352
|
+
ingestionTimestamp: timestamp,
|
|
63303
63353
|
},
|
|
63304
63354
|
});
|
|
63305
63355
|
}
|
|
@@ -63421,7 +63471,7 @@
|
|
|
63421
63471
|
};
|
|
63422
63472
|
}
|
|
63423
63473
|
function ingest$V(astNode, state) {
|
|
63424
|
-
const { path, data, luvio } = state;
|
|
63474
|
+
const { path, data, timestamp, luvio } = state;
|
|
63425
63475
|
const key = keyBuilder$Y(luvio, path);
|
|
63426
63476
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
63427
63477
|
key,
|
|
@@ -63435,7 +63485,8 @@
|
|
|
63435
63485
|
ttl: TTL$1,
|
|
63436
63486
|
namespace: keyPrefix$1,
|
|
63437
63487
|
representationName: "TimeValue",
|
|
63438
|
-
version: VERSION$12
|
|
63488
|
+
version: VERSION$12,
|
|
63489
|
+
ingestionTimestamp: timestamp,
|
|
63439
63490
|
},
|
|
63440
63491
|
});
|
|
63441
63492
|
}
|
|
@@ -63563,7 +63614,7 @@
|
|
|
63563
63614
|
};
|
|
63564
63615
|
}
|
|
63565
63616
|
function ingest$U(astNode, state) {
|
|
63566
|
-
const { path, data, luvio } = state;
|
|
63617
|
+
const { path, data, timestamp, luvio } = state;
|
|
63567
63618
|
const key = keyBuilder$X(luvio, path);
|
|
63568
63619
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
63569
63620
|
key,
|
|
@@ -63577,7 +63628,8 @@
|
|
|
63577
63628
|
ttl: TTL$1,
|
|
63578
63629
|
namespace: keyPrefix$1,
|
|
63579
63630
|
representationName: "DateValue",
|
|
63580
|
-
version: VERSION$11
|
|
63631
|
+
version: VERSION$11,
|
|
63632
|
+
ingestionTimestamp: timestamp,
|
|
63581
63633
|
},
|
|
63582
63634
|
});
|
|
63583
63635
|
}
|
|
@@ -63705,7 +63757,7 @@
|
|
|
63705
63757
|
};
|
|
63706
63758
|
}
|
|
63707
63759
|
function ingest$T(astNode, state) {
|
|
63708
|
-
const { path, data, luvio } = state;
|
|
63760
|
+
const { path, data, timestamp, luvio } = state;
|
|
63709
63761
|
const key = keyBuilder$W(luvio, path);
|
|
63710
63762
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
63711
63763
|
key,
|
|
@@ -63719,7 +63771,8 @@
|
|
|
63719
63771
|
ttl: TTL$1,
|
|
63720
63772
|
namespace: keyPrefix$1,
|
|
63721
63773
|
representationName: "TextAreaValue",
|
|
63722
|
-
version: VERSION$10
|
|
63774
|
+
version: VERSION$10,
|
|
63775
|
+
ingestionTimestamp: timestamp,
|
|
63723
63776
|
},
|
|
63724
63777
|
});
|
|
63725
63778
|
}
|
|
@@ -63841,7 +63894,7 @@
|
|
|
63841
63894
|
};
|
|
63842
63895
|
}
|
|
63843
63896
|
function ingest$S(astNode, state) {
|
|
63844
|
-
const { path, data, luvio } = state;
|
|
63897
|
+
const { path, data, timestamp, luvio } = state;
|
|
63845
63898
|
const key = keyBuilder$V(luvio, path);
|
|
63846
63899
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
63847
63900
|
key,
|
|
@@ -63855,7 +63908,8 @@
|
|
|
63855
63908
|
ttl: TTL$1,
|
|
63856
63909
|
namespace: keyPrefix$1,
|
|
63857
63910
|
representationName: "LongTextAreaValue",
|
|
63858
|
-
version: VERSION
|
|
63911
|
+
version: VERSION$$,
|
|
63912
|
+
ingestionTimestamp: timestamp,
|
|
63859
63913
|
},
|
|
63860
63914
|
});
|
|
63861
63915
|
}
|
|
@@ -63977,7 +64031,7 @@
|
|
|
63977
64031
|
};
|
|
63978
64032
|
}
|
|
63979
64033
|
function ingest$R(astNode, state) {
|
|
63980
|
-
const { path, data, luvio } = state;
|
|
64034
|
+
const { path, data, timestamp, luvio } = state;
|
|
63981
64035
|
const key = keyBuilder$U(luvio, path);
|
|
63982
64036
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
63983
64037
|
key,
|
|
@@ -63991,7 +64045,8 @@
|
|
|
63991
64045
|
ttl: TTL$1,
|
|
63992
64046
|
namespace: keyPrefix$1,
|
|
63993
64047
|
representationName: "RichTextAreaValue",
|
|
63994
|
-
version: VERSION$_
|
|
64048
|
+
version: VERSION$_,
|
|
64049
|
+
ingestionTimestamp: timestamp,
|
|
63995
64050
|
},
|
|
63996
64051
|
});
|
|
63997
64052
|
}
|
|
@@ -64113,7 +64168,7 @@
|
|
|
64113
64168
|
};
|
|
64114
64169
|
}
|
|
64115
64170
|
function ingest$Q(astNode, state) {
|
|
64116
|
-
const { path, data, luvio } = state;
|
|
64171
|
+
const { path, data, timestamp, luvio } = state;
|
|
64117
64172
|
const key = keyBuilder$T(luvio, path);
|
|
64118
64173
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
64119
64174
|
key,
|
|
@@ -64127,7 +64182,8 @@
|
|
|
64127
64182
|
ttl: TTL$1,
|
|
64128
64183
|
namespace: keyPrefix$1,
|
|
64129
64184
|
representationName: "PhoneNumberValue",
|
|
64130
|
-
version: VERSION$Z
|
|
64185
|
+
version: VERSION$Z,
|
|
64186
|
+
ingestionTimestamp: timestamp,
|
|
64131
64187
|
},
|
|
64132
64188
|
});
|
|
64133
64189
|
}
|
|
@@ -64249,7 +64305,7 @@
|
|
|
64249
64305
|
};
|
|
64250
64306
|
}
|
|
64251
64307
|
function ingest$P(astNode, state) {
|
|
64252
|
-
const { path, data, luvio } = state;
|
|
64308
|
+
const { path, data, timestamp, luvio } = state;
|
|
64253
64309
|
const key = keyBuilder$S(luvio, path);
|
|
64254
64310
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
64255
64311
|
key,
|
|
@@ -64263,7 +64319,8 @@
|
|
|
64263
64319
|
ttl: TTL$1,
|
|
64264
64320
|
namespace: keyPrefix$1,
|
|
64265
64321
|
representationName: "EmailValue",
|
|
64266
|
-
version: VERSION$Y
|
|
64322
|
+
version: VERSION$Y,
|
|
64323
|
+
ingestionTimestamp: timestamp,
|
|
64267
64324
|
},
|
|
64268
64325
|
});
|
|
64269
64326
|
}
|
|
@@ -64385,7 +64442,7 @@
|
|
|
64385
64442
|
};
|
|
64386
64443
|
}
|
|
64387
64444
|
function ingest$O(astNode, state) {
|
|
64388
|
-
const { path, data, luvio } = state;
|
|
64445
|
+
const { path, data, timestamp, luvio } = state;
|
|
64389
64446
|
const key = keyBuilder$R(luvio, path);
|
|
64390
64447
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
64391
64448
|
key,
|
|
@@ -64399,7 +64456,8 @@
|
|
|
64399
64456
|
ttl: TTL$1,
|
|
64400
64457
|
namespace: keyPrefix$1,
|
|
64401
64458
|
representationName: "UrlValue",
|
|
64402
|
-
version: VERSION$X
|
|
64459
|
+
version: VERSION$X,
|
|
64460
|
+
ingestionTimestamp: timestamp,
|
|
64403
64461
|
},
|
|
64404
64462
|
});
|
|
64405
64463
|
}
|
|
@@ -64521,7 +64579,7 @@
|
|
|
64521
64579
|
};
|
|
64522
64580
|
}
|
|
64523
64581
|
function ingest$N(astNode, state) {
|
|
64524
|
-
const { path, data, luvio } = state;
|
|
64582
|
+
const { path, data, timestamp, luvio } = state;
|
|
64525
64583
|
const key = keyBuilder$Q(luvio, path);
|
|
64526
64584
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
64527
64585
|
key,
|
|
@@ -64535,7 +64593,8 @@
|
|
|
64535
64593
|
ttl: TTL$1,
|
|
64536
64594
|
namespace: keyPrefix$1,
|
|
64537
64595
|
representationName: "EncryptedStringValue",
|
|
64538
|
-
version: VERSION$W
|
|
64596
|
+
version: VERSION$W,
|
|
64597
|
+
ingestionTimestamp: timestamp,
|
|
64539
64598
|
},
|
|
64540
64599
|
});
|
|
64541
64600
|
}
|
|
@@ -64657,7 +64716,7 @@
|
|
|
64657
64716
|
};
|
|
64658
64717
|
}
|
|
64659
64718
|
function ingest$M(astNode, state) {
|
|
64660
|
-
const { path, data, luvio } = state;
|
|
64719
|
+
const { path, data, timestamp, luvio } = state;
|
|
64661
64720
|
const key = keyBuilder$P(luvio, path);
|
|
64662
64721
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
64663
64722
|
key,
|
|
@@ -64671,7 +64730,8 @@
|
|
|
64671
64730
|
ttl: TTL$1,
|
|
64672
64731
|
namespace: keyPrefix$1,
|
|
64673
64732
|
representationName: "CurrencyValue",
|
|
64674
|
-
version: VERSION$V
|
|
64733
|
+
version: VERSION$V,
|
|
64734
|
+
ingestionTimestamp: timestamp,
|
|
64675
64735
|
},
|
|
64676
64736
|
});
|
|
64677
64737
|
}
|
|
@@ -64799,7 +64859,7 @@
|
|
|
64799
64859
|
};
|
|
64800
64860
|
}
|
|
64801
64861
|
function ingest$L(astNode, state) {
|
|
64802
|
-
const { path, data, luvio } = state;
|
|
64862
|
+
const { path, data, timestamp, luvio } = state;
|
|
64803
64863
|
const key = keyBuilder$O(luvio, path);
|
|
64804
64864
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
64805
64865
|
key,
|
|
@@ -64813,7 +64873,8 @@
|
|
|
64813
64873
|
ttl: TTL$1,
|
|
64814
64874
|
namespace: keyPrefix$1,
|
|
64815
64875
|
representationName: "LongitudeValue",
|
|
64816
|
-
version: VERSION$U
|
|
64876
|
+
version: VERSION$U,
|
|
64877
|
+
ingestionTimestamp: timestamp,
|
|
64817
64878
|
},
|
|
64818
64879
|
});
|
|
64819
64880
|
}
|
|
@@ -64935,7 +64996,7 @@
|
|
|
64935
64996
|
};
|
|
64936
64997
|
}
|
|
64937
64998
|
function ingest$K(astNode, state) {
|
|
64938
|
-
const { path, data, luvio } = state;
|
|
64999
|
+
const { path, data, timestamp, luvio } = state;
|
|
64939
65000
|
const key = keyBuilder$N(luvio, path);
|
|
64940
65001
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
64941
65002
|
key,
|
|
@@ -64949,7 +65010,8 @@
|
|
|
64949
65010
|
ttl: TTL$1,
|
|
64950
65011
|
namespace: keyPrefix$1,
|
|
64951
65012
|
representationName: "LatitudeValue",
|
|
64952
|
-
version: VERSION$T
|
|
65013
|
+
version: VERSION$T,
|
|
65014
|
+
ingestionTimestamp: timestamp,
|
|
64953
65015
|
},
|
|
64954
65016
|
});
|
|
64955
65017
|
}
|
|
@@ -65071,7 +65133,7 @@
|
|
|
65071
65133
|
};
|
|
65072
65134
|
}
|
|
65073
65135
|
function ingest$J(astNode, state) {
|
|
65074
|
-
const { path, data, luvio } = state;
|
|
65136
|
+
const { path, data, timestamp, luvio } = state;
|
|
65075
65137
|
const key = keyBuilder$M(luvio, path);
|
|
65076
65138
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
65077
65139
|
key,
|
|
@@ -65085,7 +65147,8 @@
|
|
|
65085
65147
|
ttl: TTL$1,
|
|
65086
65148
|
namespace: keyPrefix$1,
|
|
65087
65149
|
representationName: "PicklistValue",
|
|
65088
|
-
version: VERSION$S
|
|
65150
|
+
version: VERSION$S,
|
|
65151
|
+
ingestionTimestamp: timestamp,
|
|
65089
65152
|
},
|
|
65090
65153
|
});
|
|
65091
65154
|
}
|
|
@@ -65213,7 +65276,7 @@
|
|
|
65213
65276
|
};
|
|
65214
65277
|
}
|
|
65215
65278
|
function ingest$I(astNode, state) {
|
|
65216
|
-
const { path, data, luvio } = state;
|
|
65279
|
+
const { path, data, timestamp, luvio } = state;
|
|
65217
65280
|
const key = keyBuilder$L(luvio, path);
|
|
65218
65281
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
65219
65282
|
key,
|
|
@@ -65227,7 +65290,8 @@
|
|
|
65227
65290
|
ttl: TTL$1,
|
|
65228
65291
|
namespace: keyPrefix$1,
|
|
65229
65292
|
representationName: "MultiPicklistValue",
|
|
65230
|
-
version: VERSION$R
|
|
65293
|
+
version: VERSION$R,
|
|
65294
|
+
ingestionTimestamp: timestamp,
|
|
65231
65295
|
},
|
|
65232
65296
|
});
|
|
65233
65297
|
}
|
|
@@ -65355,7 +65419,7 @@
|
|
|
65355
65419
|
};
|
|
65356
65420
|
}
|
|
65357
65421
|
function ingest$H(astNode, state) {
|
|
65358
|
-
const { path, data, luvio } = state;
|
|
65422
|
+
const { path, data, timestamp, luvio } = state;
|
|
65359
65423
|
const key = keyBuilder$K(luvio, path);
|
|
65360
65424
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
65361
65425
|
key,
|
|
@@ -65369,7 +65433,8 @@
|
|
|
65369
65433
|
ttl: TTL$1,
|
|
65370
65434
|
namespace: keyPrefix$1,
|
|
65371
65435
|
representationName: "Base64Value",
|
|
65372
|
-
version: VERSION$Q
|
|
65436
|
+
version: VERSION$Q,
|
|
65437
|
+
ingestionTimestamp: timestamp,
|
|
65373
65438
|
},
|
|
65374
65439
|
});
|
|
65375
65440
|
}
|
|
@@ -65491,7 +65556,7 @@
|
|
|
65491
65556
|
};
|
|
65492
65557
|
}
|
|
65493
65558
|
function ingest$G(astNode, state) {
|
|
65494
|
-
const { path, data, luvio } = state;
|
|
65559
|
+
const { path, data, timestamp, luvio } = state;
|
|
65495
65560
|
const key = keyBuilder$J(luvio, path);
|
|
65496
65561
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
65497
65562
|
key,
|
|
@@ -65505,7 +65570,8 @@
|
|
|
65505
65570
|
ttl: TTL$1,
|
|
65506
65571
|
namespace: keyPrefix$1,
|
|
65507
65572
|
representationName: "JSONValue",
|
|
65508
|
-
version: VERSION$P
|
|
65573
|
+
version: VERSION$P,
|
|
65574
|
+
ingestionTimestamp: timestamp,
|
|
65509
65575
|
},
|
|
65510
65576
|
});
|
|
65511
65577
|
}
|
|
@@ -66103,7 +66169,7 @@
|
|
|
66103
66169
|
};
|
|
66104
66170
|
}
|
|
66105
66171
|
function ingest$E(astNode, state) {
|
|
66106
|
-
const { path, data, luvio } = state;
|
|
66172
|
+
const { path, data, timestamp, luvio } = state;
|
|
66107
66173
|
const key = keyBuilder$H(luvio, path);
|
|
66108
66174
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
66109
66175
|
key,
|
|
@@ -66117,7 +66183,8 @@
|
|
|
66117
66183
|
ttl: TTL$1,
|
|
66118
66184
|
namespace: keyPrefix$1,
|
|
66119
66185
|
representationName: "CompoundField",
|
|
66120
|
-
version: VERSION$L
|
|
66186
|
+
version: VERSION$L,
|
|
66187
|
+
ingestionTimestamp: timestamp,
|
|
66121
66188
|
},
|
|
66122
66189
|
});
|
|
66123
66190
|
}
|
|
@@ -67103,7 +67170,7 @@
|
|
|
67103
67170
|
};
|
|
67104
67171
|
}
|
|
67105
67172
|
function ingest$D(astNode, state) {
|
|
67106
|
-
const { path, data, luvio } = state;
|
|
67173
|
+
const { path, data, timestamp, luvio } = state;
|
|
67107
67174
|
const key = keyBuilder$G(luvio, path);
|
|
67108
67175
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
67109
67176
|
key,
|
|
@@ -67117,7 +67184,8 @@
|
|
|
67117
67184
|
ttl: TTL$1,
|
|
67118
67185
|
namespace: keyPrefix$1,
|
|
67119
67186
|
representationName: "PageInfo",
|
|
67120
|
-
version: VERSION$K
|
|
67187
|
+
version: VERSION$K,
|
|
67188
|
+
ingestionTimestamp: timestamp,
|
|
67121
67189
|
},
|
|
67122
67190
|
});
|
|
67123
67191
|
}
|
|
@@ -67319,7 +67387,7 @@
|
|
|
67319
67387
|
};
|
|
67320
67388
|
}
|
|
67321
67389
|
function ingest$C(astNode, state) {
|
|
67322
|
-
const { path, data, luvio } = state;
|
|
67390
|
+
const { path, data, timestamp, luvio } = state;
|
|
67323
67391
|
const key = keyBuilder$F(luvio, path, data);
|
|
67324
67392
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
67325
67393
|
key,
|
|
@@ -67336,7 +67404,8 @@
|
|
|
67336
67404
|
ttl: TTL$1,
|
|
67337
67405
|
namespace: keyPrefix$1,
|
|
67338
67406
|
representationName: "RecordRepresentation",
|
|
67339
|
-
version: VERSION$J
|
|
67407
|
+
version: VERSION$J,
|
|
67408
|
+
ingestionTimestamp: timestamp,
|
|
67340
67409
|
},
|
|
67341
67410
|
});
|
|
67342
67411
|
}
|
|
@@ -67858,7 +67927,7 @@
|
|
|
67858
67927
|
};
|
|
67859
67928
|
}
|
|
67860
67929
|
function ingest$B(astNode, state) {
|
|
67861
|
-
const { path, data, luvio } = state;
|
|
67930
|
+
const { path, data, timestamp, luvio } = state;
|
|
67862
67931
|
const key = keyBuilder$E(luvio, path);
|
|
67863
67932
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
67864
67933
|
key,
|
|
@@ -67872,7 +67941,8 @@
|
|
|
67872
67941
|
ttl: TTL$1,
|
|
67873
67942
|
namespace: keyPrefix$1,
|
|
67874
67943
|
representationName: "RecordEdge",
|
|
67875
|
-
version: VERSION$I
|
|
67944
|
+
version: VERSION$I,
|
|
67945
|
+
ingestionTimestamp: timestamp,
|
|
67876
67946
|
},
|
|
67877
67947
|
});
|
|
67878
67948
|
}
|
|
@@ -68077,7 +68147,7 @@
|
|
|
68077
68147
|
}
|
|
68078
68148
|
}
|
|
68079
68149
|
function ingest$A(astNode, state) {
|
|
68080
|
-
const { path, data, luvio } = state;
|
|
68150
|
+
const { path, data, timestamp, luvio } = state;
|
|
68081
68151
|
const key = keyBuilder$D(luvio, path);
|
|
68082
68152
|
return ingestCursorConnectionType(astNode, state, {
|
|
68083
68153
|
key,
|
|
@@ -68093,7 +68163,8 @@
|
|
|
68093
68163
|
ttl: TTL$4,
|
|
68094
68164
|
namespace: keyPrefix$1,
|
|
68095
68165
|
representationName: "RecordConnection",
|
|
68096
|
-
version: VERSION$H
|
|
68166
|
+
version: VERSION$H,
|
|
68167
|
+
ingestionTimestamp: timestamp,
|
|
68097
68168
|
},
|
|
68098
68169
|
});
|
|
68099
68170
|
}
|
|
@@ -68262,7 +68333,7 @@
|
|
|
68262
68333
|
};
|
|
68263
68334
|
}
|
|
68264
68335
|
function ingest$z(astNode, state) {
|
|
68265
|
-
const { path, data, luvio } = state;
|
|
68336
|
+
const { path, data, timestamp, luvio } = state;
|
|
68266
68337
|
const key = keyBuilder$C(luvio, path);
|
|
68267
68338
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
68268
68339
|
key,
|
|
@@ -68276,7 +68347,8 @@
|
|
|
68276
68347
|
ttl: TTL$1,
|
|
68277
68348
|
namespace: keyPrefix$1,
|
|
68278
68349
|
representationName: "RecordQuery",
|
|
68279
|
-
version: VERSION$G
|
|
68350
|
+
version: VERSION$G,
|
|
68351
|
+
ingestionTimestamp: timestamp,
|
|
68280
68352
|
},
|
|
68281
68353
|
});
|
|
68282
68354
|
}
|
|
@@ -68406,7 +68478,7 @@
|
|
|
68406
68478
|
};
|
|
68407
68479
|
}
|
|
68408
68480
|
function ingest$y(astNode, state) {
|
|
68409
|
-
const { path, data, luvio } = state;
|
|
68481
|
+
const { path, data, timestamp, luvio } = state;
|
|
68410
68482
|
const key = keyBuilder$B(luvio, path);
|
|
68411
68483
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
68412
68484
|
key,
|
|
@@ -68420,7 +68492,8 @@
|
|
|
68420
68492
|
ttl: TTL$1,
|
|
68421
68493
|
namespace: keyPrefix$1,
|
|
68422
68494
|
representationName: "BooleanAggregate",
|
|
68423
|
-
version: VERSION$F
|
|
68495
|
+
version: VERSION$F,
|
|
68496
|
+
ingestionTimestamp: timestamp,
|
|
68424
68497
|
},
|
|
68425
68498
|
});
|
|
68426
68499
|
}
|
|
@@ -68589,7 +68662,7 @@
|
|
|
68589
68662
|
};
|
|
68590
68663
|
}
|
|
68591
68664
|
function ingest$x(astNode, state) {
|
|
68592
|
-
const { path, data, luvio } = state;
|
|
68665
|
+
const { path, data, timestamp, luvio } = state;
|
|
68593
68666
|
const key = keyBuilder$A(luvio, path);
|
|
68594
68667
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
68595
68668
|
key,
|
|
@@ -68603,7 +68676,8 @@
|
|
|
68603
68676
|
ttl: TTL$1,
|
|
68604
68677
|
namespace: keyPrefix$1,
|
|
68605
68678
|
representationName: "CurrencyAggregate",
|
|
68606
|
-
version: VERSION$E
|
|
68679
|
+
version: VERSION$E,
|
|
68680
|
+
ingestionTimestamp: timestamp,
|
|
68607
68681
|
},
|
|
68608
68682
|
});
|
|
68609
68683
|
}
|
|
@@ -68851,7 +68925,7 @@
|
|
|
68851
68925
|
};
|
|
68852
68926
|
}
|
|
68853
68927
|
function ingest$w(astNode, state) {
|
|
68854
|
-
const { path, data, luvio } = state;
|
|
68928
|
+
const { path, data, timestamp, luvio } = state;
|
|
68855
68929
|
const key = keyBuilder$z(luvio, path);
|
|
68856
68930
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
68857
68931
|
key,
|
|
@@ -68865,7 +68939,8 @@
|
|
|
68865
68939
|
ttl: TTL$1,
|
|
68866
68940
|
namespace: keyPrefix$1,
|
|
68867
68941
|
representationName: "DateFunctionAggregation",
|
|
68868
|
-
version: VERSION$D
|
|
68942
|
+
version: VERSION$D,
|
|
68943
|
+
ingestionTimestamp: timestamp,
|
|
68869
68944
|
},
|
|
68870
68945
|
});
|
|
68871
68946
|
}
|
|
@@ -68999,7 +69074,7 @@
|
|
|
68999
69074
|
};
|
|
69000
69075
|
}
|
|
69001
69076
|
function ingest$v(astNode, state) {
|
|
69002
|
-
const { path, data, luvio } = state;
|
|
69077
|
+
const { path, data, timestamp, luvio } = state;
|
|
69003
69078
|
const key = keyBuilder$y(luvio, path);
|
|
69004
69079
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
69005
69080
|
key,
|
|
@@ -69013,7 +69088,8 @@
|
|
|
69013
69088
|
ttl: TTL$1,
|
|
69014
69089
|
namespace: keyPrefix$1,
|
|
69015
69090
|
representationName: "DateAggregate",
|
|
69016
|
-
version: VERSION$C
|
|
69091
|
+
version: VERSION$C,
|
|
69092
|
+
ingestionTimestamp: timestamp,
|
|
69017
69093
|
},
|
|
69018
69094
|
});
|
|
69019
69095
|
}
|
|
@@ -69380,7 +69456,7 @@
|
|
|
69380
69456
|
};
|
|
69381
69457
|
}
|
|
69382
69458
|
function ingest$u(astNode, state) {
|
|
69383
|
-
const { path, data, luvio } = state;
|
|
69459
|
+
const { path, data, timestamp, luvio } = state;
|
|
69384
69460
|
const key = keyBuilder$x(luvio, path);
|
|
69385
69461
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
69386
69462
|
key,
|
|
@@ -69394,7 +69470,8 @@
|
|
|
69394
69470
|
ttl: TTL$1,
|
|
69395
69471
|
namespace: keyPrefix$1,
|
|
69396
69472
|
representationName: "DoubleAggregate",
|
|
69397
|
-
version: VERSION$B
|
|
69473
|
+
version: VERSION$B,
|
|
69474
|
+
ingestionTimestamp: timestamp,
|
|
69398
69475
|
},
|
|
69399
69476
|
});
|
|
69400
69477
|
}
|
|
@@ -69633,7 +69710,7 @@
|
|
|
69633
69710
|
};
|
|
69634
69711
|
}
|
|
69635
69712
|
function ingest$t(astNode, state) {
|
|
69636
|
-
const { path, data, luvio } = state;
|
|
69713
|
+
const { path, data, timestamp, luvio } = state;
|
|
69637
69714
|
const key = keyBuilder$w(luvio, path);
|
|
69638
69715
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
69639
69716
|
key,
|
|
@@ -69647,7 +69724,8 @@
|
|
|
69647
69724
|
ttl: TTL$1,
|
|
69648
69725
|
namespace: keyPrefix$1,
|
|
69649
69726
|
representationName: "EmailAggregate",
|
|
69650
|
-
version: VERSION$A
|
|
69727
|
+
version: VERSION$A,
|
|
69728
|
+
ingestionTimestamp: timestamp,
|
|
69651
69729
|
},
|
|
69652
69730
|
});
|
|
69653
69731
|
}
|
|
@@ -69878,7 +69956,7 @@
|
|
|
69878
69956
|
};
|
|
69879
69957
|
}
|
|
69880
69958
|
function ingest$s(astNode, state) {
|
|
69881
|
-
const { path, data, luvio } = state;
|
|
69959
|
+
const { path, data, timestamp, luvio } = state;
|
|
69882
69960
|
const key = keyBuilder$v(luvio, path);
|
|
69883
69961
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
69884
69962
|
key,
|
|
@@ -69892,7 +69970,8 @@
|
|
|
69892
69970
|
ttl: TTL$1,
|
|
69893
69971
|
namespace: keyPrefix$1,
|
|
69894
69972
|
representationName: "IDAggregate",
|
|
69895
|
-
version: VERSION$z
|
|
69973
|
+
version: VERSION$z,
|
|
69974
|
+
ingestionTimestamp: timestamp,
|
|
69896
69975
|
},
|
|
69897
69976
|
});
|
|
69898
69977
|
}
|
|
@@ -70123,7 +70202,7 @@
|
|
|
70123
70202
|
};
|
|
70124
70203
|
}
|
|
70125
70204
|
function ingest$r(astNode, state) {
|
|
70126
|
-
const { path, data, luvio } = state;
|
|
70205
|
+
const { path, data, timestamp, luvio } = state;
|
|
70127
70206
|
const key = keyBuilder$u(luvio, path);
|
|
70128
70207
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
70129
70208
|
key,
|
|
@@ -70137,7 +70216,8 @@
|
|
|
70137
70216
|
ttl: TTL$1,
|
|
70138
70217
|
namespace: keyPrefix$1,
|
|
70139
70218
|
representationName: "IntAggregate",
|
|
70140
|
-
version: VERSION$y
|
|
70219
|
+
version: VERSION$y,
|
|
70220
|
+
ingestionTimestamp: timestamp,
|
|
70141
70221
|
},
|
|
70142
70222
|
});
|
|
70143
70223
|
}
|
|
@@ -70396,7 +70476,7 @@
|
|
|
70396
70476
|
};
|
|
70397
70477
|
}
|
|
70398
70478
|
function ingest$q(astNode, state) {
|
|
70399
|
-
const { path, data, luvio } = state;
|
|
70479
|
+
const { path, data, timestamp, luvio } = state;
|
|
70400
70480
|
const key = keyBuilder$t(luvio, path);
|
|
70401
70481
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
70402
70482
|
key,
|
|
@@ -70410,7 +70490,8 @@
|
|
|
70410
70490
|
ttl: TTL$1,
|
|
70411
70491
|
namespace: keyPrefix$1,
|
|
70412
70492
|
representationName: "LatitudeAggregate",
|
|
70413
|
-
version: VERSION$x
|
|
70493
|
+
version: VERSION$x,
|
|
70494
|
+
ingestionTimestamp: timestamp,
|
|
70414
70495
|
},
|
|
70415
70496
|
});
|
|
70416
70497
|
}
|
|
@@ -70652,7 +70733,7 @@
|
|
|
70652
70733
|
};
|
|
70653
70734
|
}
|
|
70654
70735
|
function ingest$p(astNode, state) {
|
|
70655
|
-
const { path, data, luvio } = state;
|
|
70736
|
+
const { path, data, timestamp, luvio } = state;
|
|
70656
70737
|
const key = keyBuilder$s(luvio, path);
|
|
70657
70738
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
70658
70739
|
key,
|
|
@@ -70666,7 +70747,8 @@
|
|
|
70666
70747
|
ttl: TTL$1,
|
|
70667
70748
|
namespace: keyPrefix$1,
|
|
70668
70749
|
representationName: "LongitudeAggregate",
|
|
70669
|
-
version: VERSION$w
|
|
70750
|
+
version: VERSION$w,
|
|
70751
|
+
ingestionTimestamp: timestamp,
|
|
70670
70752
|
},
|
|
70671
70753
|
});
|
|
70672
70754
|
}
|
|
@@ -70908,7 +70990,7 @@
|
|
|
70908
70990
|
};
|
|
70909
70991
|
}
|
|
70910
70992
|
function ingest$o(astNode, state) {
|
|
70911
|
-
const { path, data, luvio } = state;
|
|
70993
|
+
const { path, data, timestamp, luvio } = state;
|
|
70912
70994
|
const key = keyBuilder$r(luvio, path);
|
|
70913
70995
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
70914
70996
|
key,
|
|
@@ -70922,7 +71004,8 @@
|
|
|
70922
71004
|
ttl: TTL$1,
|
|
70923
71005
|
namespace: keyPrefix$1,
|
|
70924
71006
|
representationName: "LongAggregate",
|
|
70925
|
-
version: VERSION$v
|
|
71007
|
+
version: VERSION$v,
|
|
71008
|
+
ingestionTimestamp: timestamp,
|
|
70926
71009
|
},
|
|
70927
71010
|
});
|
|
70928
71011
|
}
|
|
@@ -71181,7 +71264,7 @@
|
|
|
71181
71264
|
};
|
|
71182
71265
|
}
|
|
71183
71266
|
function ingest$n(astNode, state) {
|
|
71184
|
-
const { path, data, luvio } = state;
|
|
71267
|
+
const { path, data, timestamp, luvio } = state;
|
|
71185
71268
|
const key = keyBuilder$q(luvio, path);
|
|
71186
71269
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
71187
71270
|
key,
|
|
@@ -71195,7 +71278,8 @@
|
|
|
71195
71278
|
ttl: TTL$1,
|
|
71196
71279
|
namespace: keyPrefix$1,
|
|
71197
71280
|
representationName: "PhoneNumberAggregate",
|
|
71198
|
-
version: VERSION$u
|
|
71281
|
+
version: VERSION$u,
|
|
71282
|
+
ingestionTimestamp: timestamp,
|
|
71199
71283
|
},
|
|
71200
71284
|
});
|
|
71201
71285
|
}
|
|
@@ -71426,7 +71510,7 @@
|
|
|
71426
71510
|
};
|
|
71427
71511
|
}
|
|
71428
71512
|
function ingest$m(astNode, state) {
|
|
71429
|
-
const { path, data, luvio } = state;
|
|
71513
|
+
const { path, data, timestamp, luvio } = state;
|
|
71430
71514
|
const key = keyBuilder$p(luvio, path);
|
|
71431
71515
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
71432
71516
|
key,
|
|
@@ -71440,7 +71524,8 @@
|
|
|
71440
71524
|
ttl: TTL$1,
|
|
71441
71525
|
namespace: keyPrefix$1,
|
|
71442
71526
|
representationName: "PicklistAggregate",
|
|
71443
|
-
version: VERSION$t
|
|
71527
|
+
version: VERSION$t,
|
|
71528
|
+
ingestionTimestamp: timestamp,
|
|
71444
71529
|
},
|
|
71445
71530
|
});
|
|
71446
71531
|
}
|
|
@@ -71677,7 +71762,7 @@
|
|
|
71677
71762
|
};
|
|
71678
71763
|
}
|
|
71679
71764
|
function ingest$l(astNode, state) {
|
|
71680
|
-
const { path, data, luvio } = state;
|
|
71765
|
+
const { path, data, timestamp, luvio } = state;
|
|
71681
71766
|
const key = keyBuilder$o(luvio, path);
|
|
71682
71767
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
71683
71768
|
key,
|
|
@@ -71691,7 +71776,8 @@
|
|
|
71691
71776
|
ttl: TTL$1,
|
|
71692
71777
|
namespace: keyPrefix$1,
|
|
71693
71778
|
representationName: "TextAreaAggregate",
|
|
71694
|
-
version: VERSION$s
|
|
71779
|
+
version: VERSION$s,
|
|
71780
|
+
ingestionTimestamp: timestamp,
|
|
71695
71781
|
},
|
|
71696
71782
|
});
|
|
71697
71783
|
}
|
|
@@ -71922,7 +72008,7 @@
|
|
|
71922
72008
|
};
|
|
71923
72009
|
}
|
|
71924
72010
|
function ingest$k(astNode, state) {
|
|
71925
|
-
const { path, data, luvio } = state;
|
|
72011
|
+
const { path, data, timestamp, luvio } = state;
|
|
71926
72012
|
const key = keyBuilder$n(luvio, path);
|
|
71927
72013
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
71928
72014
|
key,
|
|
@@ -71936,7 +72022,8 @@
|
|
|
71936
72022
|
ttl: TTL$1,
|
|
71937
72023
|
namespace: keyPrefix$1,
|
|
71938
72024
|
representationName: "TimeAggregate",
|
|
71939
|
-
version: VERSION$r
|
|
72025
|
+
version: VERSION$r,
|
|
72026
|
+
ingestionTimestamp: timestamp,
|
|
71940
72027
|
},
|
|
71941
72028
|
});
|
|
71942
72029
|
}
|
|
@@ -72111,7 +72198,7 @@
|
|
|
72111
72198
|
};
|
|
72112
72199
|
}
|
|
72113
72200
|
function ingest$j(astNode, state) {
|
|
72114
|
-
const { path, data, luvio } = state;
|
|
72201
|
+
const { path, data, timestamp, luvio } = state;
|
|
72115
72202
|
const key = keyBuilder$m(luvio, path);
|
|
72116
72203
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
72117
72204
|
key,
|
|
@@ -72125,7 +72212,8 @@
|
|
|
72125
72212
|
ttl: TTL$1,
|
|
72126
72213
|
namespace: keyPrefix$1,
|
|
72127
72214
|
representationName: "UrlAggregate",
|
|
72128
|
-
version: VERSION$q
|
|
72215
|
+
version: VERSION$q,
|
|
72216
|
+
ingestionTimestamp: timestamp,
|
|
72129
72217
|
},
|
|
72130
72218
|
});
|
|
72131
72219
|
}
|
|
@@ -72479,7 +72567,7 @@
|
|
|
72479
72567
|
};
|
|
72480
72568
|
}
|
|
72481
72569
|
function ingest$i(astNode, state) {
|
|
72482
|
-
const { path, data, luvio } = state;
|
|
72570
|
+
const { path, data, timestamp, luvio } = state;
|
|
72483
72571
|
const key = keyBuilder$l(luvio, path);
|
|
72484
72572
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
72485
72573
|
key,
|
|
@@ -72493,7 +72581,8 @@
|
|
|
72493
72581
|
ttl: TTL$1,
|
|
72494
72582
|
namespace: keyPrefix$1,
|
|
72495
72583
|
representationName: "RecordAggregate",
|
|
72496
|
-
version: VERSION$p
|
|
72584
|
+
version: VERSION$p,
|
|
72585
|
+
ingestionTimestamp: timestamp,
|
|
72497
72586
|
},
|
|
72498
72587
|
});
|
|
72499
72588
|
}
|
|
@@ -72847,7 +72936,7 @@
|
|
|
72847
72936
|
};
|
|
72848
72937
|
}
|
|
72849
72938
|
function ingest$h(astNode, state) {
|
|
72850
|
-
const { path, data, luvio } = state;
|
|
72939
|
+
const { path, data, timestamp, luvio } = state;
|
|
72851
72940
|
const key = keyBuilder$k(luvio, path);
|
|
72852
72941
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
72853
72942
|
key,
|
|
@@ -72861,7 +72950,8 @@
|
|
|
72861
72950
|
ttl: TTL$1,
|
|
72862
72951
|
namespace: keyPrefix$1,
|
|
72863
72952
|
representationName: "RecordResult",
|
|
72864
|
-
version: VERSION$o
|
|
72953
|
+
version: VERSION$o,
|
|
72954
|
+
ingestionTimestamp: timestamp,
|
|
72865
72955
|
},
|
|
72866
72956
|
});
|
|
72867
72957
|
}
|
|
@@ -73009,7 +73099,7 @@
|
|
|
73009
73099
|
};
|
|
73010
73100
|
}
|
|
73011
73101
|
function ingest$g(astNode, state) {
|
|
73012
|
-
const { path, data, luvio } = state;
|
|
73102
|
+
const { path, data, timestamp, luvio } = state;
|
|
73013
73103
|
const key = keyBuilder$j(luvio, path);
|
|
73014
73104
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
73015
73105
|
key,
|
|
@@ -73023,7 +73113,8 @@
|
|
|
73023
73113
|
ttl: TTL$1,
|
|
73024
73114
|
namespace: keyPrefix$1,
|
|
73025
73115
|
representationName: "RecordAggregateEdge",
|
|
73026
|
-
version: VERSION$n
|
|
73116
|
+
version: VERSION$n,
|
|
73117
|
+
ingestionTimestamp: timestamp,
|
|
73027
73118
|
},
|
|
73028
73119
|
});
|
|
73029
73120
|
}
|
|
@@ -73227,7 +73318,7 @@
|
|
|
73227
73318
|
}
|
|
73228
73319
|
}
|
|
73229
73320
|
function ingest$f(astNode, state) {
|
|
73230
|
-
const { path, data, luvio } = state;
|
|
73321
|
+
const { path, data, timestamp, luvio } = state;
|
|
73231
73322
|
const key = keyBuilder$i(luvio, path);
|
|
73232
73323
|
return ingestCursorConnectionType(astNode, state, {
|
|
73233
73324
|
key,
|
|
@@ -73243,7 +73334,8 @@
|
|
|
73243
73334
|
ttl: TTL$1,
|
|
73244
73335
|
namespace: keyPrefix$1,
|
|
73245
73336
|
representationName: "RecordAggregateConnection",
|
|
73246
|
-
version: VERSION$m
|
|
73337
|
+
version: VERSION$m,
|
|
73338
|
+
ingestionTimestamp: timestamp,
|
|
73247
73339
|
},
|
|
73248
73340
|
});
|
|
73249
73341
|
}
|
|
@@ -73460,7 +73552,7 @@
|
|
|
73460
73552
|
};
|
|
73461
73553
|
}
|
|
73462
73554
|
function ingest$e(astNode, state) {
|
|
73463
|
-
const { path, data, luvio } = state;
|
|
73555
|
+
const { path, data, timestamp, luvio } = state;
|
|
73464
73556
|
const key = keyBuilder$h(luvio, path);
|
|
73465
73557
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
73466
73558
|
key,
|
|
@@ -73474,7 +73566,8 @@
|
|
|
73474
73566
|
ttl: TTL$1,
|
|
73475
73567
|
namespace: keyPrefix$1,
|
|
73476
73568
|
representationName: "RecordQueryAggregate",
|
|
73477
|
-
version: VERSION$l
|
|
73569
|
+
version: VERSION$l,
|
|
73570
|
+
ingestionTimestamp: timestamp,
|
|
73478
73571
|
},
|
|
73479
73572
|
});
|
|
73480
73573
|
}
|
|
@@ -73604,7 +73697,7 @@
|
|
|
73604
73697
|
};
|
|
73605
73698
|
}
|
|
73606
73699
|
function ingest$d(astNode, state) {
|
|
73607
|
-
const { path, data, luvio } = state;
|
|
73700
|
+
const { path, data, timestamp, luvio } = state;
|
|
73608
73701
|
const key = keyBuilder$g(luvio, path);
|
|
73609
73702
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
73610
73703
|
key,
|
|
@@ -73618,7 +73711,8 @@
|
|
|
73618
73711
|
ttl: TTL$1,
|
|
73619
73712
|
namespace: keyPrefix$1,
|
|
73620
73713
|
representationName: "ChildRelationship",
|
|
73621
|
-
version: VERSION$k
|
|
73714
|
+
version: VERSION$k,
|
|
73715
|
+
ingestionTimestamp: timestamp,
|
|
73622
73716
|
},
|
|
73623
73717
|
});
|
|
73624
73718
|
}
|
|
@@ -73796,7 +73890,7 @@
|
|
|
73796
73890
|
};
|
|
73797
73891
|
}
|
|
73798
73892
|
function ingest$c(astNode, state) {
|
|
73799
|
-
const { path, data, luvio } = state;
|
|
73893
|
+
const { path, data, timestamp, luvio } = state;
|
|
73800
73894
|
const key = keyBuilder$f(luvio, path);
|
|
73801
73895
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
73802
73896
|
key,
|
|
@@ -73810,7 +73904,8 @@
|
|
|
73810
73904
|
ttl: TTL$1,
|
|
73811
73905
|
namespace: keyPrefix$1,
|
|
73812
73906
|
representationName: "DependentField",
|
|
73813
|
-
version: VERSION$j
|
|
73907
|
+
version: VERSION$j,
|
|
73908
|
+
ingestionTimestamp: timestamp,
|
|
73814
73909
|
},
|
|
73815
73910
|
});
|
|
73816
73911
|
}
|
|
@@ -73935,7 +74030,7 @@
|
|
|
73935
74030
|
};
|
|
73936
74031
|
}
|
|
73937
74032
|
function ingest$b(astNode, state) {
|
|
73938
|
-
const { path, data, luvio } = state;
|
|
74033
|
+
const { path, data, timestamp, luvio } = state;
|
|
73939
74034
|
const key = keyBuilder$e(luvio, path);
|
|
73940
74035
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
73941
74036
|
key,
|
|
@@ -73949,7 +74044,8 @@
|
|
|
73949
74044
|
ttl: TTL$1,
|
|
73950
74045
|
namespace: keyPrefix$1,
|
|
73951
74046
|
representationName: "FilteredLookupInfo",
|
|
73952
|
-
version: VERSION$i
|
|
74047
|
+
version: VERSION$i,
|
|
74048
|
+
ingestionTimestamp: timestamp,
|
|
73953
74049
|
},
|
|
73954
74050
|
});
|
|
73955
74051
|
}
|
|
@@ -74089,7 +74185,7 @@
|
|
|
74089
74185
|
};
|
|
74090
74186
|
}
|
|
74091
74187
|
function ingest$a(astNode, state) {
|
|
74092
|
-
const { path, data, luvio } = state;
|
|
74188
|
+
const { path, data, timestamp, luvio } = state;
|
|
74093
74189
|
const key = keyBuilder$d(luvio, path);
|
|
74094
74190
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
74095
74191
|
key,
|
|
@@ -74103,7 +74199,8 @@
|
|
|
74103
74199
|
ttl: TTL$1,
|
|
74104
74200
|
namespace: keyPrefix$1,
|
|
74105
74201
|
representationName: "ReferenceToInfo",
|
|
74106
|
-
version: VERSION$h
|
|
74202
|
+
version: VERSION$h,
|
|
74203
|
+
ingestionTimestamp: timestamp,
|
|
74107
74204
|
},
|
|
74108
74205
|
});
|
|
74109
74206
|
}
|
|
@@ -74263,7 +74360,7 @@
|
|
|
74263
74360
|
};
|
|
74264
74361
|
}
|
|
74265
74362
|
function ingest$9(astNode, state) {
|
|
74266
|
-
const { path, data, luvio } = state;
|
|
74363
|
+
const { path, data, timestamp, luvio } = state;
|
|
74267
74364
|
const key = keyBuilder$c(luvio, path);
|
|
74268
74365
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
74269
74366
|
key,
|
|
@@ -74277,7 +74374,8 @@
|
|
|
74277
74374
|
ttl: TTL$1,
|
|
74278
74375
|
namespace: keyPrefix$1,
|
|
74279
74376
|
representationName: "Field",
|
|
74280
|
-
version: VERSION$g
|
|
74377
|
+
version: VERSION$g,
|
|
74378
|
+
ingestionTimestamp: timestamp,
|
|
74281
74379
|
},
|
|
74282
74380
|
});
|
|
74283
74381
|
}
|
|
@@ -74655,7 +74753,7 @@
|
|
|
74655
74753
|
};
|
|
74656
74754
|
}
|
|
74657
74755
|
function ingest$8(astNode, state) {
|
|
74658
|
-
const { path, data, luvio } = state;
|
|
74756
|
+
const { path, data, timestamp, luvio } = state;
|
|
74659
74757
|
const key = keyBuilder$b(luvio, path);
|
|
74660
74758
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
74661
74759
|
key,
|
|
@@ -74669,7 +74767,8 @@
|
|
|
74669
74767
|
ttl: TTL$1,
|
|
74670
74768
|
namespace: keyPrefix$1,
|
|
74671
74769
|
representationName: "RecordTypeInfo",
|
|
74672
|
-
version: VERSION$f
|
|
74770
|
+
version: VERSION$f,
|
|
74771
|
+
ingestionTimestamp: timestamp,
|
|
74673
74772
|
},
|
|
74674
74773
|
});
|
|
74675
74774
|
}
|
|
@@ -74830,7 +74929,7 @@
|
|
|
74830
74929
|
};
|
|
74831
74930
|
}
|
|
74832
74931
|
function ingest$7(astNode, state) {
|
|
74833
|
-
const { path, data, luvio } = state;
|
|
74932
|
+
const { path, data, timestamp, luvio } = state;
|
|
74834
74933
|
const key = keyBuilder$a(luvio, path);
|
|
74835
74934
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
74836
74935
|
key,
|
|
@@ -74844,7 +74943,8 @@
|
|
|
74844
74943
|
ttl: TTL$1,
|
|
74845
74944
|
namespace: keyPrefix$1,
|
|
74846
74945
|
representationName: "ThemeInfo",
|
|
74847
|
-
version: VERSION$e
|
|
74946
|
+
version: VERSION$e,
|
|
74947
|
+
ingestionTimestamp: timestamp,
|
|
74848
74948
|
},
|
|
74849
74949
|
});
|
|
74850
74950
|
}
|
|
@@ -74970,7 +75070,7 @@
|
|
|
74970
75070
|
};
|
|
74971
75071
|
}
|
|
74972
75072
|
function ingest$6(astNode, state) {
|
|
74973
|
-
const { path, data, luvio } = state;
|
|
75073
|
+
const { path, data, timestamp, luvio } = state;
|
|
74974
75074
|
const key = keyBuilder$9(luvio, path);
|
|
74975
75075
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
74976
75076
|
key,
|
|
@@ -74984,7 +75084,8 @@
|
|
|
74984
75084
|
ttl: TTL$3,
|
|
74985
75085
|
namespace: keyPrefix$1,
|
|
74986
75086
|
representationName: "ObjectInfo",
|
|
74987
|
-
version: VERSION$d
|
|
75087
|
+
version: VERSION$d,
|
|
75088
|
+
ingestionTimestamp: timestamp,
|
|
74988
75089
|
},
|
|
74989
75090
|
});
|
|
74990
75091
|
}
|
|
@@ -75374,7 +75475,7 @@
|
|
|
75374
75475
|
};
|
|
75375
75476
|
}
|
|
75376
75477
|
function ingest$5(astNode, state) {
|
|
75377
|
-
const { path, data, luvio } = state;
|
|
75478
|
+
const { path, data, timestamp, luvio } = state;
|
|
75378
75479
|
const key = keyBuilder$8(luvio, path);
|
|
75379
75480
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
75380
75481
|
key,
|
|
@@ -75388,7 +75489,8 @@
|
|
|
75388
75489
|
ttl: TTL$1,
|
|
75389
75490
|
namespace: keyPrefix$1,
|
|
75390
75491
|
representationName: "ListColumn",
|
|
75391
|
-
version: VERSION$c
|
|
75492
|
+
version: VERSION$c,
|
|
75493
|
+
ingestionTimestamp: timestamp,
|
|
75392
75494
|
},
|
|
75393
75495
|
});
|
|
75394
75496
|
}
|
|
@@ -75534,7 +75636,7 @@
|
|
|
75534
75636
|
};
|
|
75535
75637
|
}
|
|
75536
75638
|
function ingest$4(astNode, state) {
|
|
75537
|
-
const { path, data, luvio } = state;
|
|
75639
|
+
const { path, data, timestamp, luvio } = state;
|
|
75538
75640
|
const key = keyBuilder$7(luvio, path);
|
|
75539
75641
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
75540
75642
|
key,
|
|
@@ -75548,7 +75650,8 @@
|
|
|
75548
75650
|
ttl: TTL$1,
|
|
75549
75651
|
namespace: keyPrefix$1,
|
|
75550
75652
|
representationName: "ListOrder",
|
|
75551
|
-
version: VERSION$b
|
|
75653
|
+
version: VERSION$b,
|
|
75654
|
+
ingestionTimestamp: timestamp,
|
|
75552
75655
|
},
|
|
75553
75656
|
});
|
|
75554
75657
|
}
|
|
@@ -75683,7 +75786,7 @@
|
|
|
75683
75786
|
};
|
|
75684
75787
|
}
|
|
75685
75788
|
function ingest$3(astNode, state) {
|
|
75686
|
-
const { path, data, luvio } = state;
|
|
75789
|
+
const { path, data, timestamp, luvio } = state;
|
|
75687
75790
|
const key = keyBuilder$6(luvio, path);
|
|
75688
75791
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
75689
75792
|
key,
|
|
@@ -75697,7 +75800,8 @@
|
|
|
75697
75800
|
ttl: TTL$2,
|
|
75698
75801
|
namespace: keyPrefix$1,
|
|
75699
75802
|
representationName: "RelatedListInfo",
|
|
75700
|
-
version: VERSION$a
|
|
75803
|
+
version: VERSION$a,
|
|
75804
|
+
ingestionTimestamp: timestamp,
|
|
75701
75805
|
},
|
|
75702
75806
|
});
|
|
75703
75807
|
}
|
|
@@ -75919,7 +76023,7 @@
|
|
|
75919
76023
|
};
|
|
75920
76024
|
}
|
|
75921
76025
|
function ingest$2(astNode, state) {
|
|
75922
|
-
const { path, data, luvio } = state;
|
|
76026
|
+
const { path, data, timestamp, luvio } = state;
|
|
75923
76027
|
const key = keyBuilder$5(luvio, path);
|
|
75924
76028
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
75925
76029
|
key,
|
|
@@ -75933,7 +76037,8 @@
|
|
|
75933
76037
|
ttl: TTL$1,
|
|
75934
76038
|
namespace: keyPrefix$1,
|
|
75935
76039
|
representationName: "UIAPI",
|
|
75936
|
-
version: VERSION$9
|
|
76040
|
+
version: VERSION$9,
|
|
76041
|
+
ingestionTimestamp: timestamp,
|
|
75937
76042
|
},
|
|
75938
76043
|
});
|
|
75939
76044
|
}
|
|
@@ -76157,7 +76262,7 @@
|
|
|
76157
76262
|
};
|
|
76158
76263
|
}
|
|
76159
76264
|
function ingest$1(astNode, state) {
|
|
76160
|
-
const { path, data, luvio } = state;
|
|
76265
|
+
const { path, data, timestamp, luvio } = state;
|
|
76161
76266
|
const key = keyBuilder$4(luvio, astNode, state.variables, state.fragments);
|
|
76162
76267
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
76163
76268
|
key,
|
|
@@ -76171,7 +76276,8 @@
|
|
|
76171
76276
|
ttl: TTL$1,
|
|
76172
76277
|
namespace: keyPrefix$1,
|
|
76173
76278
|
representationName: "Query",
|
|
76174
|
-
version: VERSION$8
|
|
76279
|
+
version: VERSION$8,
|
|
76280
|
+
ingestionTimestamp: timestamp,
|
|
76175
76281
|
},
|
|
76176
76282
|
});
|
|
76177
76283
|
}
|
|
@@ -79354,7 +79460,7 @@
|
|
|
79354
79460
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
79355
79461
|
instrument: instrument$1,
|
|
79356
79462
|
});
|
|
79357
|
-
// version: 1.266.0-
|
|
79463
|
+
// version: 1.266.0-dev11-54133651d
|
|
79358
79464
|
|
|
79359
79465
|
// On core the unstable adapters are re-exported with different names,
|
|
79360
79466
|
// we want to match them here.
|
|
@@ -80005,6 +80111,7 @@
|
|
|
80005
80111
|
namespace: namespace,
|
|
80006
80112
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
80007
80113
|
version: GRAPHQL_INGEST_VERSION,
|
|
80114
|
+
ingestionTimestamp: timestamp,
|
|
80008
80115
|
});
|
|
80009
80116
|
}
|
|
80010
80117
|
return {
|
|
@@ -80100,6 +80207,7 @@
|
|
|
80100
80207
|
namespace: namespace,
|
|
80101
80208
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
80102
80209
|
version: GRAPHQL_INGEST_VERSION,
|
|
80210
|
+
ingestionTimestamp: timestamp,
|
|
80103
80211
|
});
|
|
80104
80212
|
return {
|
|
80105
80213
|
__ref: key,
|
|
@@ -80140,6 +80248,7 @@
|
|
|
80140
80248
|
namespace: namespace,
|
|
80141
80249
|
ttl: DEFAULT_GRAPHQL_TTL,
|
|
80142
80250
|
version: GRAPHQL_INGEST_VERSION,
|
|
80251
|
+
ingestionTimestamp: timestamp,
|
|
80143
80252
|
});
|
|
80144
80253
|
return {
|
|
80145
80254
|
__ref: key,
|
|
@@ -81605,7 +81714,7 @@
|
|
|
81605
81714
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
81606
81715
|
graphQLImperative = ldsAdapter;
|
|
81607
81716
|
});
|
|
81608
|
-
// version: 1.266.0-
|
|
81717
|
+
// version: 1.266.0-dev11-54133651d
|
|
81609
81718
|
|
|
81610
81719
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
81611
81720
|
__proto__: null,
|
|
@@ -82303,7 +82412,7 @@
|
|
|
82303
82412
|
function register(r) {
|
|
82304
82413
|
callbacks$1.forEach((callback) => callback(r));
|
|
82305
82414
|
}
|
|
82306
|
-
// version: 1.266.0-
|
|
82415
|
+
// version: 1.266.0-dev11-133bca5b9
|
|
82307
82416
|
|
|
82308
82417
|
/**
|
|
82309
82418
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -87226,4 +87335,4 @@
|
|
|
87226
87335
|
exports.subscribeToAdapter = subscribeToAdapter;
|
|
87227
87336
|
|
|
87228
87337
|
}));
|
|
87229
|
-
// version: 1.266.0-
|
|
87338
|
+
// version: 1.266.0-dev11-133bca5b9
|