@salesforce/lds-worker-api 1.265.0 → 1.266.0-dev10

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.
@@ -3741,10 +3741,13 @@
3741
3741
  }
3742
3742
  publishStoreMetadata(key, storeMetadataParams) {
3743
3743
  const { ttl, namespace, representationName, version } = storeMetadataParams;
3744
- const now = Date.now();
3744
+ let { ingestionTimestamp } = storeMetadataParams;
3745
+ if (ingestionTimestamp === undefined) {
3746
+ ingestionTimestamp = Date.now();
3747
+ }
3745
3748
  const storeMetadata = {
3746
- ingestionTimestamp: now,
3747
- expirationTimestamp: now + ttl,
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.6-a3a5150a
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.265.0-48248f4dd
4153
+ // version: 1.266.0-dev10-ff398791a
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.265.0-48248f4dd
15661
+ // version: 1.266.0-dev10-ff398791a
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.265.0-48248f4dd
16586
+ // version: 1.266.0-dev10-ff398791a
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.6-a3a5150a
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, QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS);
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$1e(obj, path = 'ActionRelatedListSingleBatchInputRepresentation') {
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$1e(untrustedConfig_relatedListsActionParameters_item);
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$14(obj, path = 'ListFilterByInfoInputRepresentation') {
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$13(obj, path = 'ListScopeInputRepresentation') {
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$14(untrustedConfig_filteredByInfo_item);
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$13(untrustedConfig_scope);
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$14(untrustedConfig_filteredByInfo_item);
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$13(untrustedConfig_scope);
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$Y(obj, path = 'ListOrderedByInfoInputRepresentation') {
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$Y(untrustedConfig_orderedBy_item);
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$y(obj, path = 'ListUserPreferenceInputRepresentation') {
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$Y(untrustedConfig_orderedByInfo_item);
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$y(untrustedConfig_userPreferences);
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$Y(untrustedConfig_orderedBy_item);
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$w(obj, path = 'RelatedListRecordsSingleBatchInputRepresentation') {
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$w(untrustedConfig_relatedListParameters_item);
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$l(obj, path = 'SearchDataCategoryInputRepresentation') {
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$k(obj, path = 'SearchFilterInputRepresentation') {
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$j(obj, path = 'SearchObjectOptionsRepresentation') {
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$l(obj_dataCategories_item, path_dataCategories_item);
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$k(obj_filters_item, path_filters_item);
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$j(untrustedConfig_searchObjectOptions_prop);
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$k(untrustedConfig_filters_item);
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.265.0-25488bd30
43163
+ // version: 1.266.0-dev10-3275d4bf8
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 },
@@ -54895,7 +54913,7 @@
54895
54913
  function createjsonOutput(selections, jsonInput, jsonOutput) {
54896
54914
  const keys$1 = keys$4(jsonInput);
54897
54915
  selections.filter(isFieldNode).forEach((subSelection) => {
54898
- const fieldName = subSelection.name.value;
54916
+ const fieldName = subSelection.alias ? subSelection.alias.value : subSelection.name.value;
54899
54917
  if (keys$1.includes(fieldName)) {
54900
54918
  if (isArray$2$1(jsonInput[fieldName])) {
54901
54919
  jsonOutput[fieldName] = [];
@@ -56211,7 +56229,7 @@
56211
56229
  * @param normalizedRecord Record containing normalized field links
56212
56230
  * @param recordStore a store containing referenced record fields
56213
56231
  */
56214
- function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries) {
56232
+ function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries, store) {
56215
56233
  const fields = normalizedRecord.fields;
56216
56234
  const filteredFields = {};
56217
56235
  const links = {};
@@ -56238,6 +56256,19 @@
56238
56256
  if (ref !== undefined) {
56239
56257
  filteredFields[fieldName] = ref;
56240
56258
  }
56259
+ else {
56260
+ // if we have a store to read, try to find the field there too
56261
+ // The durable ingest staging store may pass through to L1, and
56262
+ // not all fields are necessarily published every time, so it is
56263
+ // important to check L1 and not just the fields being published,
56264
+ // otherwise we risk truncating the fields on the record.
56265
+ if (store) {
56266
+ ref = store.readEntry(__ref);
56267
+ if (ref !== undefined) {
56268
+ filteredFields[fieldName] = ref;
56269
+ }
56270
+ }
56271
+ }
56241
56272
  }
56242
56273
  // we want to preserve fields that are missing nodes
56243
56274
  if (filteredFields[fieldName] !== undefined || field.isMissing === true) {
@@ -56259,7 +56290,7 @@
56259
56290
  }
56260
56291
  return keyBuilder$20(luvio, { recordId });
56261
56292
  }
56262
- function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata) {
56293
+ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata, getStore) {
56263
56294
  const getEntries = function (entries, segment) {
56264
56295
  // this HOF only inspects records in the default segment
56265
56296
  if (segment !== DefaultDurableSegment) {
@@ -56327,6 +56358,7 @@
56327
56358
  const putRecordViews = {};
56328
56359
  const storeRecords = getStoreRecords !== undefined ? getStoreRecords() : {};
56329
56360
  const storeMetadata = getStoreMetadata !== undefined ? getStoreMetadata() : {};
56361
+ const store = getStore();
56330
56362
  for (let i = 0, len = keys$1.length; i < len; i++) {
56331
56363
  const key = keys$1[i];
56332
56364
  let value = entries[key];
@@ -56373,7 +56405,7 @@
56373
56405
  metadataVersion: DURABLE_METADATA_VERSION,
56374
56406
  };
56375
56407
  }
56376
- const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries);
56408
+ const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries, store);
56377
56409
  putEntries[recordKey] = {
56378
56410
  data: denormalizedRecord,
56379
56411
  metadata,
@@ -60905,22 +60937,25 @@
60905
60937
  const internalAdapterStore = new InMemoryStore();
60906
60938
  let getIngestRecordsForInternalAdapters;
60907
60939
  let getIngestMetadataForInternalAdapters;
60940
+ let getIngestStoreInternal;
60908
60941
  const internalAdapterDurableStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => getIngestRecordsForInternalAdapters !== undefined
60909
60942
  ? getIngestRecordsForInternalAdapters()
60910
60943
  : {}, () => getIngestMetadataForInternalAdapters !== undefined
60911
60944
  ? getIngestMetadataForInternalAdapters()
60912
- : {});
60945
+ : {}, () => (getIngestStoreInternal !== undefined ? getIngestStoreInternal() : undefined));
60913
60946
  const { adapters: { getObjectInfo, getObjectInfos, getRecord, getObjectInfoDirectory }, durableEnvironment: internalAdapterDurableEnvironment, luvio: internalLuvio, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
60914
60947
  lazyInternalLuvio = internalLuvio;
60915
60948
  getIngestRecordsForInternalAdapters =
60916
60949
  internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
60917
60950
  getIngestMetadataForInternalAdapters =
60918
60951
  internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
60952
+ getIngestStoreInternal = internalAdapterDurableEnvironment.getIngestStagingStore;
60919
60953
  lazyObjectInfoService = new ObjectInfoService(getObjectInfo, getObjectInfos, getObjectInfoDirectory, lazyBaseDurableStore);
60920
60954
  // creates a durable store that denormalizes scalar fields for records
60921
60955
  let getIngestRecords;
60922
60956
  let getIngestMetadata;
60923
- const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}));
60957
+ let getIngestStore;
60958
+ const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}), () => (getIngestStore !== undefined ? getIngestStore() : undefined));
60924
60959
  const baseEnv = new Environment(store, lazyNetworkAdapter);
60925
60960
  const gqlEnv = makeEnvironmentGraphqlAware(baseEnv);
60926
60961
  const durableEnv = makeDurable(gqlEnv, {
@@ -60929,6 +60964,7 @@
60929
60964
  });
60930
60965
  getIngestRecords = durableEnv.getIngestStagingStoreRecords;
60931
60966
  getIngestMetadata = durableEnv.getIngestStagingStoreMetadata;
60967
+ getIngestStore = durableEnv.getIngestStagingStore;
60932
60968
  // draft queue
60933
60969
  lazyDraftQueue = buildLdsDraftQueue(recordDenormingStore);
60934
60970
  const draftService = new UiApiDraftRecordService(lazyDraftQueue, () => lazyLuvio, recordDenormingStore, getObjectInfo, newRecordId, userId, formatDisplayValue);
@@ -61025,7 +61061,7 @@
61025
61061
  id: '@salesforce/lds-network-adapter',
61026
61062
  instrument: instrument$2,
61027
61063
  });
61028
- // version: 1.265.0-48248f4dd
61064
+ // version: 1.266.0-dev10-ff398791a
61029
61065
 
61030
61066
  const { create: create$3, keys: keys$3 } = Object;
61031
61067
  const { stringify: stringify$1, parse: parse$1 } = JSON;
@@ -61802,7 +61838,7 @@
61802
61838
  };
61803
61839
  }
61804
61840
  function ingest$13(astNode, state) {
61805
- const { path, data, luvio } = state;
61841
+ const { path, data, timestamp, luvio } = state;
61806
61842
  const key = keyBuilder$16(luvio, path);
61807
61843
  return ingestNonCursorConnectionType(astNode, state, {
61808
61844
  key,
@@ -61816,7 +61852,8 @@
61816
61852
  ttl: TTL$1,
61817
61853
  namespace: keyPrefix$1,
61818
61854
  representationName: "DoubleValue",
61819
- version: VERSION$1c
61855
+ version: VERSION$1c,
61856
+ ingestionTimestamp: timestamp,
61820
61857
  },
61821
61858
  });
61822
61859
  }
@@ -61944,7 +61981,7 @@
61944
61981
  };
61945
61982
  }
61946
61983
  function ingest$12(astNode, state) {
61947
- const { path, data, luvio } = state;
61984
+ const { path, data, timestamp, luvio } = state;
61948
61985
  const key = keyBuilder$15(luvio, path);
61949
61986
  return ingestNonCursorConnectionType(astNode, state, {
61950
61987
  key,
@@ -61958,7 +61995,8 @@
61958
61995
  ttl: TTL$1,
61959
61996
  namespace: keyPrefix$1,
61960
61997
  representationName: "LongValue",
61961
- version: VERSION$1b
61998
+ version: VERSION$1b,
61999
+ ingestionTimestamp: timestamp,
61962
62000
  },
61963
62001
  });
61964
62002
  }
@@ -62086,7 +62124,7 @@
62086
62124
  };
62087
62125
  }
62088
62126
  function ingest$11(astNode, state) {
62089
- const { path, data, luvio } = state;
62127
+ const { path, data, timestamp, luvio } = state;
62090
62128
  const key = keyBuilder$14(luvio, path);
62091
62129
  return ingestNonCursorConnectionType(astNode, state, {
62092
62130
  key,
@@ -62100,7 +62138,8 @@
62100
62138
  ttl: TTL$1,
62101
62139
  namespace: keyPrefix$1,
62102
62140
  representationName: "PercentValue",
62103
- version: VERSION$1a
62141
+ version: VERSION$1a,
62142
+ ingestionTimestamp: timestamp,
62104
62143
  },
62105
62144
  });
62106
62145
  }
@@ -62228,7 +62267,7 @@
62228
62267
  };
62229
62268
  }
62230
62269
  function ingest$10(astNode, state) {
62231
- const { path, data, luvio } = state;
62270
+ const { path, data, timestamp, luvio } = state;
62232
62271
  const key = keyBuilder$13(luvio, path);
62233
62272
  return ingestNonCursorConnectionType(astNode, state, {
62234
62273
  key,
@@ -62242,7 +62281,8 @@
62242
62281
  ttl: TTL$1,
62243
62282
  namespace: keyPrefix$1,
62244
62283
  representationName: "PercentAggregate",
62245
- version: VERSION$19
62284
+ version: VERSION$19,
62285
+ ingestionTimestamp: timestamp,
62246
62286
  },
62247
62287
  });
62248
62288
  }
@@ -62490,7 +62530,7 @@
62490
62530
  };
62491
62531
  }
62492
62532
  function ingest$$(astNode, state) {
62493
- const { path, data, luvio } = state;
62533
+ const { path, data, timestamp, luvio } = state;
62494
62534
  const key = keyBuilder$12(luvio, path);
62495
62535
  return ingestNonCursorConnectionType(astNode, state, {
62496
62536
  key,
@@ -62504,7 +62544,8 @@
62504
62544
  ttl: TTL$1,
62505
62545
  namespace: keyPrefix$1,
62506
62546
  representationName: "IntValue",
62507
- version: VERSION$18
62547
+ version: VERSION$18,
62548
+ ingestionTimestamp: timestamp,
62508
62549
  },
62509
62550
  });
62510
62551
  }
@@ -62632,7 +62673,7 @@
62632
62673
  };
62633
62674
  }
62634
62675
  function ingest$_(astNode, state) {
62635
- const { path, data, luvio } = state;
62676
+ const { path, data, timestamp, luvio } = state;
62636
62677
  const key = keyBuilder$11(luvio, path);
62637
62678
  return ingestNonCursorConnectionType(astNode, state, {
62638
62679
  key,
@@ -62646,7 +62687,8 @@
62646
62687
  ttl: TTL$1,
62647
62688
  namespace: keyPrefix$1,
62648
62689
  representationName: "StringValue",
62649
- version: VERSION$17
62690
+ version: VERSION$17,
62691
+ ingestionTimestamp: timestamp,
62650
62692
  },
62651
62693
  });
62652
62694
  }
@@ -62765,7 +62807,7 @@
62765
62807
  };
62766
62808
  }
62767
62809
  function ingest$Z(astNode, state) {
62768
- const { path, data, luvio } = state;
62810
+ const { path, data, timestamp, luvio } = state;
62769
62811
  const key = keyBuilder$10(luvio, path);
62770
62812
  return ingestNonCursorConnectionType(astNode, state, {
62771
62813
  key,
@@ -62779,7 +62821,8 @@
62779
62821
  ttl: TTL$1,
62780
62822
  namespace: keyPrefix$1,
62781
62823
  representationName: "StringAggregate",
62782
- version: VERSION$16
62824
+ version: VERSION$16,
62825
+ ingestionTimestamp: timestamp,
62783
62826
  },
62784
62827
  });
62785
62828
  }
@@ -63007,7 +63050,7 @@
63007
63050
  };
63008
63051
  }
63009
63052
  function ingest$Y(astNode, state) {
63010
- const { path, data, luvio } = state;
63053
+ const { path, data, timestamp, luvio } = state;
63011
63054
  const key = keyBuilder$$(luvio, path);
63012
63055
  return ingestNonCursorConnectionType(astNode, state, {
63013
63056
  key,
@@ -63021,7 +63064,8 @@
63021
63064
  ttl: TTL$1,
63022
63065
  namespace: keyPrefix$1,
63023
63066
  representationName: "IDValue",
63024
- version: VERSION$15
63067
+ version: VERSION$15,
63068
+ ingestionTimestamp: timestamp,
63025
63069
  },
63026
63070
  });
63027
63071
  }
@@ -63143,7 +63187,7 @@
63143
63187
  };
63144
63188
  }
63145
63189
  function ingest$X(astNode, state) {
63146
- const { path, data, luvio } = state;
63190
+ const { path, data, timestamp, luvio } = state;
63147
63191
  const key = keyBuilder$_(luvio, path);
63148
63192
  return ingestNonCursorConnectionType(astNode, state, {
63149
63193
  key,
@@ -63157,7 +63201,8 @@
63157
63201
  ttl: TTL$1,
63158
63202
  namespace: keyPrefix$1,
63159
63203
  representationName: "DateTimeValue",
63160
- version: VERSION$14
63204
+ version: VERSION$14,
63205
+ ingestionTimestamp: timestamp,
63161
63206
  },
63162
63207
  });
63163
63208
  }
@@ -63285,7 +63330,7 @@
63285
63330
  };
63286
63331
  }
63287
63332
  function ingest$W(astNode, state) {
63288
- const { path, data, luvio } = state;
63333
+ const { path, data, timestamp, luvio } = state;
63289
63334
  const key = keyBuilder$Z(luvio, path);
63290
63335
  return ingestNonCursorConnectionType(astNode, state, {
63291
63336
  key,
@@ -63299,7 +63344,8 @@
63299
63344
  ttl: TTL$1,
63300
63345
  namespace: keyPrefix$1,
63301
63346
  representationName: "BooleanValue",
63302
- version: VERSION$13
63347
+ version: VERSION$13,
63348
+ ingestionTimestamp: timestamp,
63303
63349
  },
63304
63350
  });
63305
63351
  }
@@ -63421,7 +63467,7 @@
63421
63467
  };
63422
63468
  }
63423
63469
  function ingest$V(astNode, state) {
63424
- const { path, data, luvio } = state;
63470
+ const { path, data, timestamp, luvio } = state;
63425
63471
  const key = keyBuilder$Y(luvio, path);
63426
63472
  return ingestNonCursorConnectionType(astNode, state, {
63427
63473
  key,
@@ -63435,7 +63481,8 @@
63435
63481
  ttl: TTL$1,
63436
63482
  namespace: keyPrefix$1,
63437
63483
  representationName: "TimeValue",
63438
- version: VERSION$12
63484
+ version: VERSION$12,
63485
+ ingestionTimestamp: timestamp,
63439
63486
  },
63440
63487
  });
63441
63488
  }
@@ -63563,7 +63610,7 @@
63563
63610
  };
63564
63611
  }
63565
63612
  function ingest$U(astNode, state) {
63566
- const { path, data, luvio } = state;
63613
+ const { path, data, timestamp, luvio } = state;
63567
63614
  const key = keyBuilder$X(luvio, path);
63568
63615
  return ingestNonCursorConnectionType(astNode, state, {
63569
63616
  key,
@@ -63577,7 +63624,8 @@
63577
63624
  ttl: TTL$1,
63578
63625
  namespace: keyPrefix$1,
63579
63626
  representationName: "DateValue",
63580
- version: VERSION$11
63627
+ version: VERSION$11,
63628
+ ingestionTimestamp: timestamp,
63581
63629
  },
63582
63630
  });
63583
63631
  }
@@ -63705,7 +63753,7 @@
63705
63753
  };
63706
63754
  }
63707
63755
  function ingest$T(astNode, state) {
63708
- const { path, data, luvio } = state;
63756
+ const { path, data, timestamp, luvio } = state;
63709
63757
  const key = keyBuilder$W(luvio, path);
63710
63758
  return ingestNonCursorConnectionType(astNode, state, {
63711
63759
  key,
@@ -63719,7 +63767,8 @@
63719
63767
  ttl: TTL$1,
63720
63768
  namespace: keyPrefix$1,
63721
63769
  representationName: "TextAreaValue",
63722
- version: VERSION$10
63770
+ version: VERSION$10,
63771
+ ingestionTimestamp: timestamp,
63723
63772
  },
63724
63773
  });
63725
63774
  }
@@ -63841,7 +63890,7 @@
63841
63890
  };
63842
63891
  }
63843
63892
  function ingest$S(astNode, state) {
63844
- const { path, data, luvio } = state;
63893
+ const { path, data, timestamp, luvio } = state;
63845
63894
  const key = keyBuilder$V(luvio, path);
63846
63895
  return ingestNonCursorConnectionType(astNode, state, {
63847
63896
  key,
@@ -63855,7 +63904,8 @@
63855
63904
  ttl: TTL$1,
63856
63905
  namespace: keyPrefix$1,
63857
63906
  representationName: "LongTextAreaValue",
63858
- version: VERSION$$
63907
+ version: VERSION$$,
63908
+ ingestionTimestamp: timestamp,
63859
63909
  },
63860
63910
  });
63861
63911
  }
@@ -63977,7 +64027,7 @@
63977
64027
  };
63978
64028
  }
63979
64029
  function ingest$R(astNode, state) {
63980
- const { path, data, luvio } = state;
64030
+ const { path, data, timestamp, luvio } = state;
63981
64031
  const key = keyBuilder$U(luvio, path);
63982
64032
  return ingestNonCursorConnectionType(astNode, state, {
63983
64033
  key,
@@ -63991,7 +64041,8 @@
63991
64041
  ttl: TTL$1,
63992
64042
  namespace: keyPrefix$1,
63993
64043
  representationName: "RichTextAreaValue",
63994
- version: VERSION$_
64044
+ version: VERSION$_,
64045
+ ingestionTimestamp: timestamp,
63995
64046
  },
63996
64047
  });
63997
64048
  }
@@ -64113,7 +64164,7 @@
64113
64164
  };
64114
64165
  }
64115
64166
  function ingest$Q(astNode, state) {
64116
- const { path, data, luvio } = state;
64167
+ const { path, data, timestamp, luvio } = state;
64117
64168
  const key = keyBuilder$T(luvio, path);
64118
64169
  return ingestNonCursorConnectionType(astNode, state, {
64119
64170
  key,
@@ -64127,7 +64178,8 @@
64127
64178
  ttl: TTL$1,
64128
64179
  namespace: keyPrefix$1,
64129
64180
  representationName: "PhoneNumberValue",
64130
- version: VERSION$Z
64181
+ version: VERSION$Z,
64182
+ ingestionTimestamp: timestamp,
64131
64183
  },
64132
64184
  });
64133
64185
  }
@@ -64249,7 +64301,7 @@
64249
64301
  };
64250
64302
  }
64251
64303
  function ingest$P(astNode, state) {
64252
- const { path, data, luvio } = state;
64304
+ const { path, data, timestamp, luvio } = state;
64253
64305
  const key = keyBuilder$S(luvio, path);
64254
64306
  return ingestNonCursorConnectionType(astNode, state, {
64255
64307
  key,
@@ -64263,7 +64315,8 @@
64263
64315
  ttl: TTL$1,
64264
64316
  namespace: keyPrefix$1,
64265
64317
  representationName: "EmailValue",
64266
- version: VERSION$Y
64318
+ version: VERSION$Y,
64319
+ ingestionTimestamp: timestamp,
64267
64320
  },
64268
64321
  });
64269
64322
  }
@@ -64385,7 +64438,7 @@
64385
64438
  };
64386
64439
  }
64387
64440
  function ingest$O(astNode, state) {
64388
- const { path, data, luvio } = state;
64441
+ const { path, data, timestamp, luvio } = state;
64389
64442
  const key = keyBuilder$R(luvio, path);
64390
64443
  return ingestNonCursorConnectionType(astNode, state, {
64391
64444
  key,
@@ -64399,7 +64452,8 @@
64399
64452
  ttl: TTL$1,
64400
64453
  namespace: keyPrefix$1,
64401
64454
  representationName: "UrlValue",
64402
- version: VERSION$X
64455
+ version: VERSION$X,
64456
+ ingestionTimestamp: timestamp,
64403
64457
  },
64404
64458
  });
64405
64459
  }
@@ -64521,7 +64575,7 @@
64521
64575
  };
64522
64576
  }
64523
64577
  function ingest$N(astNode, state) {
64524
- const { path, data, luvio } = state;
64578
+ const { path, data, timestamp, luvio } = state;
64525
64579
  const key = keyBuilder$Q(luvio, path);
64526
64580
  return ingestNonCursorConnectionType(astNode, state, {
64527
64581
  key,
@@ -64535,7 +64589,8 @@
64535
64589
  ttl: TTL$1,
64536
64590
  namespace: keyPrefix$1,
64537
64591
  representationName: "EncryptedStringValue",
64538
- version: VERSION$W
64592
+ version: VERSION$W,
64593
+ ingestionTimestamp: timestamp,
64539
64594
  },
64540
64595
  });
64541
64596
  }
@@ -64657,7 +64712,7 @@
64657
64712
  };
64658
64713
  }
64659
64714
  function ingest$M(astNode, state) {
64660
- const { path, data, luvio } = state;
64715
+ const { path, data, timestamp, luvio } = state;
64661
64716
  const key = keyBuilder$P(luvio, path);
64662
64717
  return ingestNonCursorConnectionType(astNode, state, {
64663
64718
  key,
@@ -64671,7 +64726,8 @@
64671
64726
  ttl: TTL$1,
64672
64727
  namespace: keyPrefix$1,
64673
64728
  representationName: "CurrencyValue",
64674
- version: VERSION$V
64729
+ version: VERSION$V,
64730
+ ingestionTimestamp: timestamp,
64675
64731
  },
64676
64732
  });
64677
64733
  }
@@ -64799,7 +64855,7 @@
64799
64855
  };
64800
64856
  }
64801
64857
  function ingest$L(astNode, state) {
64802
- const { path, data, luvio } = state;
64858
+ const { path, data, timestamp, luvio } = state;
64803
64859
  const key = keyBuilder$O(luvio, path);
64804
64860
  return ingestNonCursorConnectionType(astNode, state, {
64805
64861
  key,
@@ -64813,7 +64869,8 @@
64813
64869
  ttl: TTL$1,
64814
64870
  namespace: keyPrefix$1,
64815
64871
  representationName: "LongitudeValue",
64816
- version: VERSION$U
64872
+ version: VERSION$U,
64873
+ ingestionTimestamp: timestamp,
64817
64874
  },
64818
64875
  });
64819
64876
  }
@@ -64935,7 +64992,7 @@
64935
64992
  };
64936
64993
  }
64937
64994
  function ingest$K(astNode, state) {
64938
- const { path, data, luvio } = state;
64995
+ const { path, data, timestamp, luvio } = state;
64939
64996
  const key = keyBuilder$N(luvio, path);
64940
64997
  return ingestNonCursorConnectionType(astNode, state, {
64941
64998
  key,
@@ -64949,7 +65006,8 @@
64949
65006
  ttl: TTL$1,
64950
65007
  namespace: keyPrefix$1,
64951
65008
  representationName: "LatitudeValue",
64952
- version: VERSION$T
65009
+ version: VERSION$T,
65010
+ ingestionTimestamp: timestamp,
64953
65011
  },
64954
65012
  });
64955
65013
  }
@@ -65071,7 +65129,7 @@
65071
65129
  };
65072
65130
  }
65073
65131
  function ingest$J(astNode, state) {
65074
- const { path, data, luvio } = state;
65132
+ const { path, data, timestamp, luvio } = state;
65075
65133
  const key = keyBuilder$M(luvio, path);
65076
65134
  return ingestNonCursorConnectionType(astNode, state, {
65077
65135
  key,
@@ -65085,7 +65143,8 @@
65085
65143
  ttl: TTL$1,
65086
65144
  namespace: keyPrefix$1,
65087
65145
  representationName: "PicklistValue",
65088
- version: VERSION$S
65146
+ version: VERSION$S,
65147
+ ingestionTimestamp: timestamp,
65089
65148
  },
65090
65149
  });
65091
65150
  }
@@ -65213,7 +65272,7 @@
65213
65272
  };
65214
65273
  }
65215
65274
  function ingest$I(astNode, state) {
65216
- const { path, data, luvio } = state;
65275
+ const { path, data, timestamp, luvio } = state;
65217
65276
  const key = keyBuilder$L(luvio, path);
65218
65277
  return ingestNonCursorConnectionType(astNode, state, {
65219
65278
  key,
@@ -65227,7 +65286,8 @@
65227
65286
  ttl: TTL$1,
65228
65287
  namespace: keyPrefix$1,
65229
65288
  representationName: "MultiPicklistValue",
65230
- version: VERSION$R
65289
+ version: VERSION$R,
65290
+ ingestionTimestamp: timestamp,
65231
65291
  },
65232
65292
  });
65233
65293
  }
@@ -65355,7 +65415,7 @@
65355
65415
  };
65356
65416
  }
65357
65417
  function ingest$H(astNode, state) {
65358
- const { path, data, luvio } = state;
65418
+ const { path, data, timestamp, luvio } = state;
65359
65419
  const key = keyBuilder$K(luvio, path);
65360
65420
  return ingestNonCursorConnectionType(astNode, state, {
65361
65421
  key,
@@ -65369,7 +65429,8 @@
65369
65429
  ttl: TTL$1,
65370
65430
  namespace: keyPrefix$1,
65371
65431
  representationName: "Base64Value",
65372
- version: VERSION$Q
65432
+ version: VERSION$Q,
65433
+ ingestionTimestamp: timestamp,
65373
65434
  },
65374
65435
  });
65375
65436
  }
@@ -65491,7 +65552,7 @@
65491
65552
  };
65492
65553
  }
65493
65554
  function ingest$G(astNode, state) {
65494
- const { path, data, luvio } = state;
65555
+ const { path, data, timestamp, luvio } = state;
65495
65556
  const key = keyBuilder$J(luvio, path);
65496
65557
  return ingestNonCursorConnectionType(astNode, state, {
65497
65558
  key,
@@ -65505,7 +65566,8 @@
65505
65566
  ttl: TTL$1,
65506
65567
  namespace: keyPrefix$1,
65507
65568
  representationName: "JSONValue",
65508
- version: VERSION$P
65569
+ version: VERSION$P,
65570
+ ingestionTimestamp: timestamp,
65509
65571
  },
65510
65572
  });
65511
65573
  }
@@ -66103,7 +66165,7 @@
66103
66165
  };
66104
66166
  }
66105
66167
  function ingest$E(astNode, state) {
66106
- const { path, data, luvio } = state;
66168
+ const { path, data, timestamp, luvio } = state;
66107
66169
  const key = keyBuilder$H(luvio, path);
66108
66170
  return ingestNonCursorConnectionType(astNode, state, {
66109
66171
  key,
@@ -66117,7 +66179,8 @@
66117
66179
  ttl: TTL$1,
66118
66180
  namespace: keyPrefix$1,
66119
66181
  representationName: "CompoundField",
66120
- version: VERSION$L
66182
+ version: VERSION$L,
66183
+ ingestionTimestamp: timestamp,
66121
66184
  },
66122
66185
  });
66123
66186
  }
@@ -67103,7 +67166,7 @@
67103
67166
  };
67104
67167
  }
67105
67168
  function ingest$D(astNode, state) {
67106
- const { path, data, luvio } = state;
67169
+ const { path, data, timestamp, luvio } = state;
67107
67170
  const key = keyBuilder$G(luvio, path);
67108
67171
  return ingestNonCursorConnectionType(astNode, state, {
67109
67172
  key,
@@ -67117,7 +67180,8 @@
67117
67180
  ttl: TTL$1,
67118
67181
  namespace: keyPrefix$1,
67119
67182
  representationName: "PageInfo",
67120
- version: VERSION$K
67183
+ version: VERSION$K,
67184
+ ingestionTimestamp: timestamp,
67121
67185
  },
67122
67186
  });
67123
67187
  }
@@ -67319,7 +67383,7 @@
67319
67383
  };
67320
67384
  }
67321
67385
  function ingest$C(astNode, state) {
67322
- const { path, data, luvio } = state;
67386
+ const { path, data, timestamp, luvio } = state;
67323
67387
  const key = keyBuilder$F(luvio, path, data);
67324
67388
  return ingestNonCursorConnectionType(astNode, state, {
67325
67389
  key,
@@ -67336,7 +67400,8 @@
67336
67400
  ttl: TTL$1,
67337
67401
  namespace: keyPrefix$1,
67338
67402
  representationName: "RecordRepresentation",
67339
- version: VERSION$J
67403
+ version: VERSION$J,
67404
+ ingestionTimestamp: timestamp,
67340
67405
  },
67341
67406
  });
67342
67407
  }
@@ -67858,7 +67923,7 @@
67858
67923
  };
67859
67924
  }
67860
67925
  function ingest$B(astNode, state) {
67861
- const { path, data, luvio } = state;
67926
+ const { path, data, timestamp, luvio } = state;
67862
67927
  const key = keyBuilder$E(luvio, path);
67863
67928
  return ingestNonCursorConnectionType(astNode, state, {
67864
67929
  key,
@@ -67872,7 +67937,8 @@
67872
67937
  ttl: TTL$1,
67873
67938
  namespace: keyPrefix$1,
67874
67939
  representationName: "RecordEdge",
67875
- version: VERSION$I
67940
+ version: VERSION$I,
67941
+ ingestionTimestamp: timestamp,
67876
67942
  },
67877
67943
  });
67878
67944
  }
@@ -68077,7 +68143,7 @@
68077
68143
  }
68078
68144
  }
68079
68145
  function ingest$A(astNode, state) {
68080
- const { path, data, luvio } = state;
68146
+ const { path, data, timestamp, luvio } = state;
68081
68147
  const key = keyBuilder$D(luvio, path);
68082
68148
  return ingestCursorConnectionType(astNode, state, {
68083
68149
  key,
@@ -68093,7 +68159,8 @@
68093
68159
  ttl: TTL$4,
68094
68160
  namespace: keyPrefix$1,
68095
68161
  representationName: "RecordConnection",
68096
- version: VERSION$H
68162
+ version: VERSION$H,
68163
+ ingestionTimestamp: timestamp,
68097
68164
  },
68098
68165
  });
68099
68166
  }
@@ -68262,7 +68329,7 @@
68262
68329
  };
68263
68330
  }
68264
68331
  function ingest$z(astNode, state) {
68265
- const { path, data, luvio } = state;
68332
+ const { path, data, timestamp, luvio } = state;
68266
68333
  const key = keyBuilder$C(luvio, path);
68267
68334
  return ingestNonCursorConnectionType(astNode, state, {
68268
68335
  key,
@@ -68276,7 +68343,8 @@
68276
68343
  ttl: TTL$1,
68277
68344
  namespace: keyPrefix$1,
68278
68345
  representationName: "RecordQuery",
68279
- version: VERSION$G
68346
+ version: VERSION$G,
68347
+ ingestionTimestamp: timestamp,
68280
68348
  },
68281
68349
  });
68282
68350
  }
@@ -68406,7 +68474,7 @@
68406
68474
  };
68407
68475
  }
68408
68476
  function ingest$y(astNode, state) {
68409
- const { path, data, luvio } = state;
68477
+ const { path, data, timestamp, luvio } = state;
68410
68478
  const key = keyBuilder$B(luvio, path);
68411
68479
  return ingestNonCursorConnectionType(astNode, state, {
68412
68480
  key,
@@ -68420,7 +68488,8 @@
68420
68488
  ttl: TTL$1,
68421
68489
  namespace: keyPrefix$1,
68422
68490
  representationName: "BooleanAggregate",
68423
- version: VERSION$F
68491
+ version: VERSION$F,
68492
+ ingestionTimestamp: timestamp,
68424
68493
  },
68425
68494
  });
68426
68495
  }
@@ -68589,7 +68658,7 @@
68589
68658
  };
68590
68659
  }
68591
68660
  function ingest$x(astNode, state) {
68592
- const { path, data, luvio } = state;
68661
+ const { path, data, timestamp, luvio } = state;
68593
68662
  const key = keyBuilder$A(luvio, path);
68594
68663
  return ingestNonCursorConnectionType(astNode, state, {
68595
68664
  key,
@@ -68603,7 +68672,8 @@
68603
68672
  ttl: TTL$1,
68604
68673
  namespace: keyPrefix$1,
68605
68674
  representationName: "CurrencyAggregate",
68606
- version: VERSION$E
68675
+ version: VERSION$E,
68676
+ ingestionTimestamp: timestamp,
68607
68677
  },
68608
68678
  });
68609
68679
  }
@@ -68851,7 +68921,7 @@
68851
68921
  };
68852
68922
  }
68853
68923
  function ingest$w(astNode, state) {
68854
- const { path, data, luvio } = state;
68924
+ const { path, data, timestamp, luvio } = state;
68855
68925
  const key = keyBuilder$z(luvio, path);
68856
68926
  return ingestNonCursorConnectionType(astNode, state, {
68857
68927
  key,
@@ -68865,7 +68935,8 @@
68865
68935
  ttl: TTL$1,
68866
68936
  namespace: keyPrefix$1,
68867
68937
  representationName: "DateFunctionAggregation",
68868
- version: VERSION$D
68938
+ version: VERSION$D,
68939
+ ingestionTimestamp: timestamp,
68869
68940
  },
68870
68941
  });
68871
68942
  }
@@ -68999,7 +69070,7 @@
68999
69070
  };
69000
69071
  }
69001
69072
  function ingest$v(astNode, state) {
69002
- const { path, data, luvio } = state;
69073
+ const { path, data, timestamp, luvio } = state;
69003
69074
  const key = keyBuilder$y(luvio, path);
69004
69075
  return ingestNonCursorConnectionType(astNode, state, {
69005
69076
  key,
@@ -69013,7 +69084,8 @@
69013
69084
  ttl: TTL$1,
69014
69085
  namespace: keyPrefix$1,
69015
69086
  representationName: "DateAggregate",
69016
- version: VERSION$C
69087
+ version: VERSION$C,
69088
+ ingestionTimestamp: timestamp,
69017
69089
  },
69018
69090
  });
69019
69091
  }
@@ -69380,7 +69452,7 @@
69380
69452
  };
69381
69453
  }
69382
69454
  function ingest$u(astNode, state) {
69383
- const { path, data, luvio } = state;
69455
+ const { path, data, timestamp, luvio } = state;
69384
69456
  const key = keyBuilder$x(luvio, path);
69385
69457
  return ingestNonCursorConnectionType(astNode, state, {
69386
69458
  key,
@@ -69394,7 +69466,8 @@
69394
69466
  ttl: TTL$1,
69395
69467
  namespace: keyPrefix$1,
69396
69468
  representationName: "DoubleAggregate",
69397
- version: VERSION$B
69469
+ version: VERSION$B,
69470
+ ingestionTimestamp: timestamp,
69398
69471
  },
69399
69472
  });
69400
69473
  }
@@ -69633,7 +69706,7 @@
69633
69706
  };
69634
69707
  }
69635
69708
  function ingest$t(astNode, state) {
69636
- const { path, data, luvio } = state;
69709
+ const { path, data, timestamp, luvio } = state;
69637
69710
  const key = keyBuilder$w(luvio, path);
69638
69711
  return ingestNonCursorConnectionType(astNode, state, {
69639
69712
  key,
@@ -69647,7 +69720,8 @@
69647
69720
  ttl: TTL$1,
69648
69721
  namespace: keyPrefix$1,
69649
69722
  representationName: "EmailAggregate",
69650
- version: VERSION$A
69723
+ version: VERSION$A,
69724
+ ingestionTimestamp: timestamp,
69651
69725
  },
69652
69726
  });
69653
69727
  }
@@ -69878,7 +69952,7 @@
69878
69952
  };
69879
69953
  }
69880
69954
  function ingest$s(astNode, state) {
69881
- const { path, data, luvio } = state;
69955
+ const { path, data, timestamp, luvio } = state;
69882
69956
  const key = keyBuilder$v(luvio, path);
69883
69957
  return ingestNonCursorConnectionType(astNode, state, {
69884
69958
  key,
@@ -69892,7 +69966,8 @@
69892
69966
  ttl: TTL$1,
69893
69967
  namespace: keyPrefix$1,
69894
69968
  representationName: "IDAggregate",
69895
- version: VERSION$z
69969
+ version: VERSION$z,
69970
+ ingestionTimestamp: timestamp,
69896
69971
  },
69897
69972
  });
69898
69973
  }
@@ -70123,7 +70198,7 @@
70123
70198
  };
70124
70199
  }
70125
70200
  function ingest$r(astNode, state) {
70126
- const { path, data, luvio } = state;
70201
+ const { path, data, timestamp, luvio } = state;
70127
70202
  const key = keyBuilder$u(luvio, path);
70128
70203
  return ingestNonCursorConnectionType(astNode, state, {
70129
70204
  key,
@@ -70137,7 +70212,8 @@
70137
70212
  ttl: TTL$1,
70138
70213
  namespace: keyPrefix$1,
70139
70214
  representationName: "IntAggregate",
70140
- version: VERSION$y
70215
+ version: VERSION$y,
70216
+ ingestionTimestamp: timestamp,
70141
70217
  },
70142
70218
  });
70143
70219
  }
@@ -70396,7 +70472,7 @@
70396
70472
  };
70397
70473
  }
70398
70474
  function ingest$q(astNode, state) {
70399
- const { path, data, luvio } = state;
70475
+ const { path, data, timestamp, luvio } = state;
70400
70476
  const key = keyBuilder$t(luvio, path);
70401
70477
  return ingestNonCursorConnectionType(astNode, state, {
70402
70478
  key,
@@ -70410,7 +70486,8 @@
70410
70486
  ttl: TTL$1,
70411
70487
  namespace: keyPrefix$1,
70412
70488
  representationName: "LatitudeAggregate",
70413
- version: VERSION$x
70489
+ version: VERSION$x,
70490
+ ingestionTimestamp: timestamp,
70414
70491
  },
70415
70492
  });
70416
70493
  }
@@ -70652,7 +70729,7 @@
70652
70729
  };
70653
70730
  }
70654
70731
  function ingest$p(astNode, state) {
70655
- const { path, data, luvio } = state;
70732
+ const { path, data, timestamp, luvio } = state;
70656
70733
  const key = keyBuilder$s(luvio, path);
70657
70734
  return ingestNonCursorConnectionType(astNode, state, {
70658
70735
  key,
@@ -70666,7 +70743,8 @@
70666
70743
  ttl: TTL$1,
70667
70744
  namespace: keyPrefix$1,
70668
70745
  representationName: "LongitudeAggregate",
70669
- version: VERSION$w
70746
+ version: VERSION$w,
70747
+ ingestionTimestamp: timestamp,
70670
70748
  },
70671
70749
  });
70672
70750
  }
@@ -70908,7 +70986,7 @@
70908
70986
  };
70909
70987
  }
70910
70988
  function ingest$o(astNode, state) {
70911
- const { path, data, luvio } = state;
70989
+ const { path, data, timestamp, luvio } = state;
70912
70990
  const key = keyBuilder$r(luvio, path);
70913
70991
  return ingestNonCursorConnectionType(astNode, state, {
70914
70992
  key,
@@ -70922,7 +71000,8 @@
70922
71000
  ttl: TTL$1,
70923
71001
  namespace: keyPrefix$1,
70924
71002
  representationName: "LongAggregate",
70925
- version: VERSION$v
71003
+ version: VERSION$v,
71004
+ ingestionTimestamp: timestamp,
70926
71005
  },
70927
71006
  });
70928
71007
  }
@@ -71181,7 +71260,7 @@
71181
71260
  };
71182
71261
  }
71183
71262
  function ingest$n(astNode, state) {
71184
- const { path, data, luvio } = state;
71263
+ const { path, data, timestamp, luvio } = state;
71185
71264
  const key = keyBuilder$q(luvio, path);
71186
71265
  return ingestNonCursorConnectionType(astNode, state, {
71187
71266
  key,
@@ -71195,7 +71274,8 @@
71195
71274
  ttl: TTL$1,
71196
71275
  namespace: keyPrefix$1,
71197
71276
  representationName: "PhoneNumberAggregate",
71198
- version: VERSION$u
71277
+ version: VERSION$u,
71278
+ ingestionTimestamp: timestamp,
71199
71279
  },
71200
71280
  });
71201
71281
  }
@@ -71426,7 +71506,7 @@
71426
71506
  };
71427
71507
  }
71428
71508
  function ingest$m(astNode, state) {
71429
- const { path, data, luvio } = state;
71509
+ const { path, data, timestamp, luvio } = state;
71430
71510
  const key = keyBuilder$p(luvio, path);
71431
71511
  return ingestNonCursorConnectionType(astNode, state, {
71432
71512
  key,
@@ -71440,7 +71520,8 @@
71440
71520
  ttl: TTL$1,
71441
71521
  namespace: keyPrefix$1,
71442
71522
  representationName: "PicklistAggregate",
71443
- version: VERSION$t
71523
+ version: VERSION$t,
71524
+ ingestionTimestamp: timestamp,
71444
71525
  },
71445
71526
  });
71446
71527
  }
@@ -71677,7 +71758,7 @@
71677
71758
  };
71678
71759
  }
71679
71760
  function ingest$l(astNode, state) {
71680
- const { path, data, luvio } = state;
71761
+ const { path, data, timestamp, luvio } = state;
71681
71762
  const key = keyBuilder$o(luvio, path);
71682
71763
  return ingestNonCursorConnectionType(astNode, state, {
71683
71764
  key,
@@ -71691,7 +71772,8 @@
71691
71772
  ttl: TTL$1,
71692
71773
  namespace: keyPrefix$1,
71693
71774
  representationName: "TextAreaAggregate",
71694
- version: VERSION$s
71775
+ version: VERSION$s,
71776
+ ingestionTimestamp: timestamp,
71695
71777
  },
71696
71778
  });
71697
71779
  }
@@ -71922,7 +72004,7 @@
71922
72004
  };
71923
72005
  }
71924
72006
  function ingest$k(astNode, state) {
71925
- const { path, data, luvio } = state;
72007
+ const { path, data, timestamp, luvio } = state;
71926
72008
  const key = keyBuilder$n(luvio, path);
71927
72009
  return ingestNonCursorConnectionType(astNode, state, {
71928
72010
  key,
@@ -71936,7 +72018,8 @@
71936
72018
  ttl: TTL$1,
71937
72019
  namespace: keyPrefix$1,
71938
72020
  representationName: "TimeAggregate",
71939
- version: VERSION$r
72021
+ version: VERSION$r,
72022
+ ingestionTimestamp: timestamp,
71940
72023
  },
71941
72024
  });
71942
72025
  }
@@ -72111,7 +72194,7 @@
72111
72194
  };
72112
72195
  }
72113
72196
  function ingest$j(astNode, state) {
72114
- const { path, data, luvio } = state;
72197
+ const { path, data, timestamp, luvio } = state;
72115
72198
  const key = keyBuilder$m(luvio, path);
72116
72199
  return ingestNonCursorConnectionType(astNode, state, {
72117
72200
  key,
@@ -72125,7 +72208,8 @@
72125
72208
  ttl: TTL$1,
72126
72209
  namespace: keyPrefix$1,
72127
72210
  representationName: "UrlAggregate",
72128
- version: VERSION$q
72211
+ version: VERSION$q,
72212
+ ingestionTimestamp: timestamp,
72129
72213
  },
72130
72214
  });
72131
72215
  }
@@ -72479,7 +72563,7 @@
72479
72563
  };
72480
72564
  }
72481
72565
  function ingest$i(astNode, state) {
72482
- const { path, data, luvio } = state;
72566
+ const { path, data, timestamp, luvio } = state;
72483
72567
  const key = keyBuilder$l(luvio, path);
72484
72568
  return ingestNonCursorConnectionType(astNode, state, {
72485
72569
  key,
@@ -72493,7 +72577,8 @@
72493
72577
  ttl: TTL$1,
72494
72578
  namespace: keyPrefix$1,
72495
72579
  representationName: "RecordAggregate",
72496
- version: VERSION$p
72580
+ version: VERSION$p,
72581
+ ingestionTimestamp: timestamp,
72497
72582
  },
72498
72583
  });
72499
72584
  }
@@ -72847,7 +72932,7 @@
72847
72932
  };
72848
72933
  }
72849
72934
  function ingest$h(astNode, state) {
72850
- const { path, data, luvio } = state;
72935
+ const { path, data, timestamp, luvio } = state;
72851
72936
  const key = keyBuilder$k(luvio, path);
72852
72937
  return ingestNonCursorConnectionType(astNode, state, {
72853
72938
  key,
@@ -72861,7 +72946,8 @@
72861
72946
  ttl: TTL$1,
72862
72947
  namespace: keyPrefix$1,
72863
72948
  representationName: "RecordResult",
72864
- version: VERSION$o
72949
+ version: VERSION$o,
72950
+ ingestionTimestamp: timestamp,
72865
72951
  },
72866
72952
  });
72867
72953
  }
@@ -73009,7 +73095,7 @@
73009
73095
  };
73010
73096
  }
73011
73097
  function ingest$g(astNode, state) {
73012
- const { path, data, luvio } = state;
73098
+ const { path, data, timestamp, luvio } = state;
73013
73099
  const key = keyBuilder$j(luvio, path);
73014
73100
  return ingestNonCursorConnectionType(astNode, state, {
73015
73101
  key,
@@ -73023,7 +73109,8 @@
73023
73109
  ttl: TTL$1,
73024
73110
  namespace: keyPrefix$1,
73025
73111
  representationName: "RecordAggregateEdge",
73026
- version: VERSION$n
73112
+ version: VERSION$n,
73113
+ ingestionTimestamp: timestamp,
73027
73114
  },
73028
73115
  });
73029
73116
  }
@@ -73227,7 +73314,7 @@
73227
73314
  }
73228
73315
  }
73229
73316
  function ingest$f(astNode, state) {
73230
- const { path, data, luvio } = state;
73317
+ const { path, data, timestamp, luvio } = state;
73231
73318
  const key = keyBuilder$i(luvio, path);
73232
73319
  return ingestCursorConnectionType(astNode, state, {
73233
73320
  key,
@@ -73243,7 +73330,8 @@
73243
73330
  ttl: TTL$1,
73244
73331
  namespace: keyPrefix$1,
73245
73332
  representationName: "RecordAggregateConnection",
73246
- version: VERSION$m
73333
+ version: VERSION$m,
73334
+ ingestionTimestamp: timestamp,
73247
73335
  },
73248
73336
  });
73249
73337
  }
@@ -73460,7 +73548,7 @@
73460
73548
  };
73461
73549
  }
73462
73550
  function ingest$e(astNode, state) {
73463
- const { path, data, luvio } = state;
73551
+ const { path, data, timestamp, luvio } = state;
73464
73552
  const key = keyBuilder$h(luvio, path);
73465
73553
  return ingestNonCursorConnectionType(astNode, state, {
73466
73554
  key,
@@ -73474,7 +73562,8 @@
73474
73562
  ttl: TTL$1,
73475
73563
  namespace: keyPrefix$1,
73476
73564
  representationName: "RecordQueryAggregate",
73477
- version: VERSION$l
73565
+ version: VERSION$l,
73566
+ ingestionTimestamp: timestamp,
73478
73567
  },
73479
73568
  });
73480
73569
  }
@@ -73604,7 +73693,7 @@
73604
73693
  };
73605
73694
  }
73606
73695
  function ingest$d(astNode, state) {
73607
- const { path, data, luvio } = state;
73696
+ const { path, data, timestamp, luvio } = state;
73608
73697
  const key = keyBuilder$g(luvio, path);
73609
73698
  return ingestNonCursorConnectionType(astNode, state, {
73610
73699
  key,
@@ -73618,7 +73707,8 @@
73618
73707
  ttl: TTL$1,
73619
73708
  namespace: keyPrefix$1,
73620
73709
  representationName: "ChildRelationship",
73621
- version: VERSION$k
73710
+ version: VERSION$k,
73711
+ ingestionTimestamp: timestamp,
73622
73712
  },
73623
73713
  });
73624
73714
  }
@@ -73796,7 +73886,7 @@
73796
73886
  };
73797
73887
  }
73798
73888
  function ingest$c(astNode, state) {
73799
- const { path, data, luvio } = state;
73889
+ const { path, data, timestamp, luvio } = state;
73800
73890
  const key = keyBuilder$f(luvio, path);
73801
73891
  return ingestNonCursorConnectionType(astNode, state, {
73802
73892
  key,
@@ -73810,7 +73900,8 @@
73810
73900
  ttl: TTL$1,
73811
73901
  namespace: keyPrefix$1,
73812
73902
  representationName: "DependentField",
73813
- version: VERSION$j
73903
+ version: VERSION$j,
73904
+ ingestionTimestamp: timestamp,
73814
73905
  },
73815
73906
  });
73816
73907
  }
@@ -73935,7 +74026,7 @@
73935
74026
  };
73936
74027
  }
73937
74028
  function ingest$b(astNode, state) {
73938
- const { path, data, luvio } = state;
74029
+ const { path, data, timestamp, luvio } = state;
73939
74030
  const key = keyBuilder$e(luvio, path);
73940
74031
  return ingestNonCursorConnectionType(astNode, state, {
73941
74032
  key,
@@ -73949,7 +74040,8 @@
73949
74040
  ttl: TTL$1,
73950
74041
  namespace: keyPrefix$1,
73951
74042
  representationName: "FilteredLookupInfo",
73952
- version: VERSION$i
74043
+ version: VERSION$i,
74044
+ ingestionTimestamp: timestamp,
73953
74045
  },
73954
74046
  });
73955
74047
  }
@@ -74089,7 +74181,7 @@
74089
74181
  };
74090
74182
  }
74091
74183
  function ingest$a(astNode, state) {
74092
- const { path, data, luvio } = state;
74184
+ const { path, data, timestamp, luvio } = state;
74093
74185
  const key = keyBuilder$d(luvio, path);
74094
74186
  return ingestNonCursorConnectionType(astNode, state, {
74095
74187
  key,
@@ -74103,7 +74195,8 @@
74103
74195
  ttl: TTL$1,
74104
74196
  namespace: keyPrefix$1,
74105
74197
  representationName: "ReferenceToInfo",
74106
- version: VERSION$h
74198
+ version: VERSION$h,
74199
+ ingestionTimestamp: timestamp,
74107
74200
  },
74108
74201
  });
74109
74202
  }
@@ -74263,7 +74356,7 @@
74263
74356
  };
74264
74357
  }
74265
74358
  function ingest$9(astNode, state) {
74266
- const { path, data, luvio } = state;
74359
+ const { path, data, timestamp, luvio } = state;
74267
74360
  const key = keyBuilder$c(luvio, path);
74268
74361
  return ingestNonCursorConnectionType(astNode, state, {
74269
74362
  key,
@@ -74277,7 +74370,8 @@
74277
74370
  ttl: TTL$1,
74278
74371
  namespace: keyPrefix$1,
74279
74372
  representationName: "Field",
74280
- version: VERSION$g
74373
+ version: VERSION$g,
74374
+ ingestionTimestamp: timestamp,
74281
74375
  },
74282
74376
  });
74283
74377
  }
@@ -74655,7 +74749,7 @@
74655
74749
  };
74656
74750
  }
74657
74751
  function ingest$8(astNode, state) {
74658
- const { path, data, luvio } = state;
74752
+ const { path, data, timestamp, luvio } = state;
74659
74753
  const key = keyBuilder$b(luvio, path);
74660
74754
  return ingestNonCursorConnectionType(astNode, state, {
74661
74755
  key,
@@ -74669,7 +74763,8 @@
74669
74763
  ttl: TTL$1,
74670
74764
  namespace: keyPrefix$1,
74671
74765
  representationName: "RecordTypeInfo",
74672
- version: VERSION$f
74766
+ version: VERSION$f,
74767
+ ingestionTimestamp: timestamp,
74673
74768
  },
74674
74769
  });
74675
74770
  }
@@ -74830,7 +74925,7 @@
74830
74925
  };
74831
74926
  }
74832
74927
  function ingest$7(astNode, state) {
74833
- const { path, data, luvio } = state;
74928
+ const { path, data, timestamp, luvio } = state;
74834
74929
  const key = keyBuilder$a(luvio, path);
74835
74930
  return ingestNonCursorConnectionType(astNode, state, {
74836
74931
  key,
@@ -74844,7 +74939,8 @@
74844
74939
  ttl: TTL$1,
74845
74940
  namespace: keyPrefix$1,
74846
74941
  representationName: "ThemeInfo",
74847
- version: VERSION$e
74942
+ version: VERSION$e,
74943
+ ingestionTimestamp: timestamp,
74848
74944
  },
74849
74945
  });
74850
74946
  }
@@ -74970,7 +75066,7 @@
74970
75066
  };
74971
75067
  }
74972
75068
  function ingest$6(astNode, state) {
74973
- const { path, data, luvio } = state;
75069
+ const { path, data, timestamp, luvio } = state;
74974
75070
  const key = keyBuilder$9(luvio, path);
74975
75071
  return ingestNonCursorConnectionType(astNode, state, {
74976
75072
  key,
@@ -74984,7 +75080,8 @@
74984
75080
  ttl: TTL$3,
74985
75081
  namespace: keyPrefix$1,
74986
75082
  representationName: "ObjectInfo",
74987
- version: VERSION$d
75083
+ version: VERSION$d,
75084
+ ingestionTimestamp: timestamp,
74988
75085
  },
74989
75086
  });
74990
75087
  }
@@ -75374,7 +75471,7 @@
75374
75471
  };
75375
75472
  }
75376
75473
  function ingest$5(astNode, state) {
75377
- const { path, data, luvio } = state;
75474
+ const { path, data, timestamp, luvio } = state;
75378
75475
  const key = keyBuilder$8(luvio, path);
75379
75476
  return ingestNonCursorConnectionType(astNode, state, {
75380
75477
  key,
@@ -75388,7 +75485,8 @@
75388
75485
  ttl: TTL$1,
75389
75486
  namespace: keyPrefix$1,
75390
75487
  representationName: "ListColumn",
75391
- version: VERSION$c
75488
+ version: VERSION$c,
75489
+ ingestionTimestamp: timestamp,
75392
75490
  },
75393
75491
  });
75394
75492
  }
@@ -75534,7 +75632,7 @@
75534
75632
  };
75535
75633
  }
75536
75634
  function ingest$4(astNode, state) {
75537
- const { path, data, luvio } = state;
75635
+ const { path, data, timestamp, luvio } = state;
75538
75636
  const key = keyBuilder$7(luvio, path);
75539
75637
  return ingestNonCursorConnectionType(astNode, state, {
75540
75638
  key,
@@ -75548,7 +75646,8 @@
75548
75646
  ttl: TTL$1,
75549
75647
  namespace: keyPrefix$1,
75550
75648
  representationName: "ListOrder",
75551
- version: VERSION$b
75649
+ version: VERSION$b,
75650
+ ingestionTimestamp: timestamp,
75552
75651
  },
75553
75652
  });
75554
75653
  }
@@ -75683,7 +75782,7 @@
75683
75782
  };
75684
75783
  }
75685
75784
  function ingest$3(astNode, state) {
75686
- const { path, data, luvio } = state;
75785
+ const { path, data, timestamp, luvio } = state;
75687
75786
  const key = keyBuilder$6(luvio, path);
75688
75787
  return ingestNonCursorConnectionType(astNode, state, {
75689
75788
  key,
@@ -75697,7 +75796,8 @@
75697
75796
  ttl: TTL$2,
75698
75797
  namespace: keyPrefix$1,
75699
75798
  representationName: "RelatedListInfo",
75700
- version: VERSION$a
75799
+ version: VERSION$a,
75800
+ ingestionTimestamp: timestamp,
75701
75801
  },
75702
75802
  });
75703
75803
  }
@@ -75919,7 +76019,7 @@
75919
76019
  };
75920
76020
  }
75921
76021
  function ingest$2(astNode, state) {
75922
- const { path, data, luvio } = state;
76022
+ const { path, data, timestamp, luvio } = state;
75923
76023
  const key = keyBuilder$5(luvio, path);
75924
76024
  return ingestNonCursorConnectionType(astNode, state, {
75925
76025
  key,
@@ -75933,7 +76033,8 @@
75933
76033
  ttl: TTL$1,
75934
76034
  namespace: keyPrefix$1,
75935
76035
  representationName: "UIAPI",
75936
- version: VERSION$9
76036
+ version: VERSION$9,
76037
+ ingestionTimestamp: timestamp,
75937
76038
  },
75938
76039
  });
75939
76040
  }
@@ -76157,7 +76258,7 @@
76157
76258
  };
76158
76259
  }
76159
76260
  function ingest$1(astNode, state) {
76160
- const { path, data, luvio } = state;
76261
+ const { path, data, timestamp, luvio } = state;
76161
76262
  const key = keyBuilder$4(luvio, astNode, state.variables, state.fragments);
76162
76263
  return ingestNonCursorConnectionType(astNode, state, {
76163
76264
  key,
@@ -76171,7 +76272,8 @@
76171
76272
  ttl: TTL$1,
76172
76273
  namespace: keyPrefix$1,
76173
76274
  representationName: "Query",
76174
- version: VERSION$8
76275
+ version: VERSION$8,
76276
+ ingestionTimestamp: timestamp,
76175
76277
  },
76176
76278
  });
76177
76279
  }
@@ -79354,7 +79456,7 @@
79354
79456
  configuration: { ...configurationForGraphQLAdapters$1 },
79355
79457
  instrument: instrument$1,
79356
79458
  });
79357
- // version: 1.265.0-25488bd30
79459
+ // version: 1.266.0-dev10-3275d4bf8
79358
79460
 
79359
79461
  // On core the unstable adapters are re-exported with different names,
79360
79462
  // we want to match them here.
@@ -80005,6 +80107,7 @@
80005
80107
  namespace: namespace,
80006
80108
  ttl: DEFAULT_GRAPHQL_TTL,
80007
80109
  version: GRAPHQL_INGEST_VERSION,
80110
+ ingestionTimestamp: timestamp,
80008
80111
  });
80009
80112
  }
80010
80113
  return {
@@ -80100,6 +80203,7 @@
80100
80203
  namespace: namespace,
80101
80204
  ttl: DEFAULT_GRAPHQL_TTL,
80102
80205
  version: GRAPHQL_INGEST_VERSION,
80206
+ ingestionTimestamp: timestamp,
80103
80207
  });
80104
80208
  return {
80105
80209
  __ref: key,
@@ -80140,6 +80244,7 @@
80140
80244
  namespace: namespace,
80141
80245
  ttl: DEFAULT_GRAPHQL_TTL,
80142
80246
  version: GRAPHQL_INGEST_VERSION,
80247
+ ingestionTimestamp: timestamp,
80143
80248
  });
80144
80249
  return {
80145
80250
  __ref: key,
@@ -81605,7 +81710,7 @@
81605
81710
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
81606
81711
  graphQLImperative = ldsAdapter;
81607
81712
  });
81608
- // version: 1.265.0-25488bd30
81713
+ // version: 1.266.0-dev10-3275d4bf8
81609
81714
 
81610
81715
  var gqlApi = /*#__PURE__*/Object.freeze({
81611
81716
  __proto__: null,
@@ -82303,7 +82408,7 @@
82303
82408
  function register(r) {
82304
82409
  callbacks$1.forEach((callback) => callback(r));
82305
82410
  }
82306
- // version: 1.265.0-48248f4dd
82411
+ // version: 1.266.0-dev10-ff398791a
82307
82412
 
82308
82413
  /**
82309
82414
  * Returns true if the value acts like a Promise, i.e. has a "then" function,
@@ -87226,4 +87331,4 @@
87226
87331
  exports.subscribeToAdapter = subscribeToAdapter;
87227
87332
 
87228
87333
  }));
87229
- // version: 1.265.0-48248f4dd
87334
+ // version: 1.266.0-dev10-ff398791a