@salesforce/lds-worker-api 1.266.0-dev1 → 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.
@@ -3735,10 +3735,13 @@ class Luvio {
3735
3735
  }
3736
3736
  publishStoreMetadata(key, storeMetadataParams) {
3737
3737
  const { ttl, namespace, representationName, version } = storeMetadataParams;
3738
- const now = Date.now();
3738
+ let { ingestionTimestamp } = storeMetadataParams;
3739
+ if (ingestionTimestamp === undefined) {
3740
+ ingestionTimestamp = Date.now();
3741
+ }
3739
3742
  const storeMetadata = {
3740
- ingestionTimestamp: now,
3741
- expirationTimestamp: now + ttl,
3743
+ ingestionTimestamp: ingestionTimestamp,
3744
+ expirationTimestamp: ingestionTimestamp + ttl,
3742
3745
  representationName,
3743
3746
  namespace,
3744
3747
  version,
@@ -3965,6 +3968,7 @@ function ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normal
3965
3968
  namespace,
3966
3969
  version,
3967
3970
  representationName,
3971
+ ingestionTimestamp: timestamp,
3968
3972
  };
3969
3973
  luvio.publishStoreMetadata(key, storeMetadataParams);
3970
3974
  }
@@ -4012,7 +4016,7 @@ function createResourceParamsImpl(config, configMetadata) {
4012
4016
  }
4013
4017
  return resourceParams;
4014
4018
  }
4015
- // engine version: 0.154.6-a3a5150a
4019
+ // engine version: 0.154.7-dev4-96466e64
4016
4020
 
4017
4021
  /**
4018
4022
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -4140,7 +4144,7 @@ function withDefaultLuvio(callback) {
4140
4144
  }
4141
4145
  callbacks.push(callback);
4142
4146
  }
4143
- // version: 1.266.0-dev1-7286a1163
4147
+ // version: 1.266.0-dev10-ff398791a
4144
4148
 
4145
4149
  // TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
4146
4150
  function instrumentAdapter$1(createFunction, _metadata) {
@@ -15648,7 +15652,7 @@ function gql(literals, ...subs) {
15648
15652
  }
15649
15653
  return superResult;
15650
15654
  }
15651
- // version: 1.266.0-dev1-7286a1163
15655
+ // version: 1.266.0-dev10-ff398791a
15652
15656
 
15653
15657
  function unwrap(data) {
15654
15658
  // The lwc-luvio bindings import a function from lwc called "unwrap".
@@ -16573,7 +16577,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
16573
16577
  const { apiFamily, name } = metadata;
16574
16578
  return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
16575
16579
  }
16576
- // version: 1.266.0-dev1-7286a1163
16580
+ // version: 1.266.0-dev10-ff398791a
16577
16581
 
16578
16582
  /**
16579
16583
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -16672,7 +16676,7 @@ var TypeCheckShapes;
16672
16676
  TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
16673
16677
  TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
16674
16678
  })(TypeCheckShapes || (TypeCheckShapes = {}));
16675
- // engine version: 0.154.6-a3a5150a
16679
+ // engine version: 0.154.7-dev4-96466e64
16676
16680
 
16677
16681
  const { keys: ObjectKeys$3, create: ObjectCreate$3 } = Object;
16678
16682
 
@@ -20800,6 +20804,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
20800
20804
  representationName: RepresentationType$S,
20801
20805
  namespace: keyPrefix$2,
20802
20806
  version: VERSION$18$1,
20807
+ ingestionTimestamp: timestamp,
20803
20808
  });
20804
20809
  return createLink$3(key);
20805
20810
  };
@@ -21017,17 +21022,19 @@ function onResourceError(luvio, config, key, err) {
21017
21022
  function buildNetworkSnapshot$13(luvio, config, serverRequestCount = 0, options) {
21018
21023
  const { request, key, allTrackedFields, resourceParams } = prepareRequest$6(luvio, config);
21019
21024
  return luvio.dispatchResourceRequest(request, options).then((response) => {
21025
+ // W-11964675 - Condition to dedupe a very specific set of requests for
21026
+ // Komaci - a batch record request with a single record followed by a single
21027
+ // record request. The fulfill logic sends the same network response, so
21028
+ // there is some TypeScript massaging to extract the RecordRepresentation
21029
+ //
21030
+ // W-14381091 - Ensure hoisting the response body happens prior to
21031
+ // calling `luvio.handleSuccessResponse`, since both arguments capture
21032
+ // the response.
21033
+ if (isSingleBatchRecordResponse(response.body)) {
21034
+ response.body = response.body.results[0]
21035
+ .result;
21036
+ }
21020
21037
  return luvio.handleSuccessResponse(() => {
21021
- // W-11964675 - Condition to dedupe a very specific set of requests for
21022
- // Komaci - a batch record request with a single record followed by a single
21023
- // record request. The fulfill logic sends the same network response, so
21024
- // there is some TypeScript massaging to extract the RecordRepresentation
21025
- if (isSingleBatchRecordResponse(response.body)) {
21026
- let recordResponse = response;
21027
- recordResponse.body = response.body.results[0]
21028
- .result;
21029
- return onResourceSuccess(luvio, config, key, allTrackedFields, recordResponse, serverRequestCount + 1);
21030
- }
21031
21038
  return onResourceSuccess(luvio, config, key, allTrackedFields, response, serverRequestCount + 1);
21032
21039
  }, () => {
21033
21040
  const cache = new StoreKeyMap();
@@ -21990,6 +21997,7 @@ const ingest$K$1 = function ListRecordCollectionRepresentationIngest(input, path
21990
21997
  namespace: "UiApi",
21991
21998
  version: VERSION$16$1,
21992
21999
  representationName: RepresentationType$R,
22000
+ ingestionTimestamp: timestamp,
21993
22001
  };
21994
22002
  luvio.publishStoreMetadata(key, storeMetadataParams);
21995
22003
  }
@@ -22959,6 +22967,7 @@ const ingest$H$1 = function ListViewSummaryCollectionRepresentationIngest(input,
22959
22967
  namespace: "UiApi",
22960
22968
  version: VERSION$13$1,
22961
22969
  representationName: RepresentationType$O,
22970
+ ingestionTimestamp: timestamp,
22962
22971
  };
22963
22972
  luvio.publishStoreMetadata(key, storeMetadataParams);
22964
22973
  }
@@ -25283,7 +25292,7 @@ function getLayoutMapAndObjectInfo(recordId, data) {
25283
25292
  // Temp fix until we can mimic the server behavior for non-layoutable entities.
25284
25293
  let layoutMap = {};
25285
25294
  if (hasOwnProperty$1.call(layouts, apiName)) {
25286
- layoutMap = layouts[apiName][recordTypeId];
25295
+ layoutMap = layouts[apiName][recordTypeId] || {};
25287
25296
  }
25288
25297
  return {
25289
25298
  layoutMap,
@@ -27577,7 +27586,10 @@ const dynamicIngest$4 = (ingestParams) => {
27577
27586
  if (existingRecord === undefined || equals$N(existingRecord, incomingRecord) === false) {
27578
27587
  luvio.storePublish(key, incomingRecord);
27579
27588
  }
27580
- luvio.publishStoreMetadata(key, QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS);
27589
+ luvio.publishStoreMetadata(key, {
27590
+ ...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
27591
+ ingestionTimestamp: timestamp,
27592
+ });
27581
27593
  return createLink$3(key);
27582
27594
  };
27583
27595
  };
@@ -28042,7 +28054,7 @@ const getRecordEditActionsAdapterFactory = (luvio) => function UiApi__getRecordE
28042
28054
  buildCachedSnapshotCachePolicy$C, buildNetworkSnapshotCachePolicy$D);
28043
28055
  };
28044
28056
 
28045
- function validate$1e(obj, path = 'ActionRelatedListSingleBatchInputRepresentation') {
28057
+ function validate$1f(obj, path = 'ActionRelatedListSingleBatchInputRepresentation') {
28046
28058
  const v_error = (() => {
28047
28059
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
28048
28060
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -28453,7 +28465,7 @@ function typeCheckConfig$R(untrustedConfig) {
28453
28465
  const untrustedConfig_relatedListsActionParameters_array = [];
28454
28466
  for (let i = 0, arrayLength = untrustedConfig_relatedListsActionParameters.length; i < arrayLength; i++) {
28455
28467
  const untrustedConfig_relatedListsActionParameters_item = untrustedConfig_relatedListsActionParameters[i];
28456
- const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$1e(untrustedConfig_relatedListsActionParameters_item);
28468
+ const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$1f(untrustedConfig_relatedListsActionParameters_item);
28457
28469
  if (referenceActionRelatedListSingleBatchInputRepresentationValidationError === null) {
28458
28470
  untrustedConfig_relatedListsActionParameters_array.push(untrustedConfig_relatedListsActionParameters_item);
28459
28471
  }
@@ -30692,7 +30704,7 @@ const getListInfosByNameAdapterFactory = (luvio) => function UiApi__getListInfos
30692
30704
  buildCachedSnapshotCachePolicy$t, buildNetworkSnapshotCachePolicy$u);
30693
30705
  };
30694
30706
 
30695
- function validate$14(obj, path = 'ListFilterByInfoInputRepresentation') {
30707
+ function validate$15(obj, path = 'ListFilterByInfoInputRepresentation') {
30696
30708
  const v_error = (() => {
30697
30709
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
30698
30710
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -30723,7 +30735,7 @@ function validate$14(obj, path = 'ListFilterByInfoInputRepresentation') {
30723
30735
  return v_error === undefined ? null : v_error;
30724
30736
  }
30725
30737
 
30726
- function validate$13(obj, path = 'ListScopeInputRepresentation') {
30738
+ function validate$14(obj, path = 'ListScopeInputRepresentation') {
30727
30739
  const v_error = (() => {
30728
30740
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
30729
30741
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -30847,7 +30859,7 @@ function typeCheckConfig$I(untrustedConfig) {
30847
30859
  const untrustedConfig_filteredByInfo_array = [];
30848
30860
  for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
30849
30861
  const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
30850
- const referenceListFilterByInfoInputRepresentationValidationError = validate$14(untrustedConfig_filteredByInfo_item);
30862
+ const referenceListFilterByInfoInputRepresentationValidationError = validate$15(untrustedConfig_filteredByInfo_item);
30851
30863
  if (referenceListFilterByInfoInputRepresentationValidationError === null) {
30852
30864
  untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
30853
30865
  }
@@ -30855,7 +30867,7 @@ function typeCheckConfig$I(untrustedConfig) {
30855
30867
  config.filteredByInfo = untrustedConfig_filteredByInfo_array;
30856
30868
  }
30857
30869
  const untrustedConfig_scope = untrustedConfig.scope;
30858
- const referenceListScopeInputRepresentationValidationError = validate$13(untrustedConfig_scope);
30870
+ const referenceListScopeInputRepresentationValidationError = validate$14(untrustedConfig_scope);
30859
30871
  if (referenceListScopeInputRepresentationValidationError === null) {
30860
30872
  config.scope = untrustedConfig_scope;
30861
30873
  }
@@ -31123,7 +31135,7 @@ function typeCheckConfig$F(untrustedConfig) {
31123
31135
  const untrustedConfig_filteredByInfo_array = [];
31124
31136
  for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
31125
31137
  const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
31126
- const referenceListFilterByInfoInputRepresentationValidationError = validate$14(untrustedConfig_filteredByInfo_item);
31138
+ const referenceListFilterByInfoInputRepresentationValidationError = validate$15(untrustedConfig_filteredByInfo_item);
31127
31139
  if (referenceListFilterByInfoInputRepresentationValidationError === null) {
31128
31140
  untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
31129
31141
  }
@@ -31131,7 +31143,7 @@ function typeCheckConfig$F(untrustedConfig) {
31131
31143
  config.filteredByInfo = untrustedConfig_filteredByInfo_array;
31132
31144
  }
31133
31145
  const untrustedConfig_scope = untrustedConfig.scope;
31134
- const referenceListScopeInputRepresentationValidationError = validate$13(untrustedConfig_scope);
31146
+ const referenceListScopeInputRepresentationValidationError = validate$14(untrustedConfig_scope);
31135
31147
  if (referenceListScopeInputRepresentationValidationError === null) {
31136
31148
  config.scope = untrustedConfig_scope;
31137
31149
  }
@@ -31882,7 +31894,7 @@ const getListPreferencesAdapterFactory = (luvio) => function UiApi__getListPrefe
31882
31894
  buildCachedSnapshotCachePolicy$q, buildNetworkSnapshotCachePolicy$r);
31883
31895
  };
31884
31896
 
31885
- function validate$Y(obj, path = 'ListOrderedByInfoInputRepresentation') {
31897
+ function validate$Z(obj, path = 'ListOrderedByInfoInputRepresentation') {
31886
31898
  const v_error = (() => {
31887
31899
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
31888
31900
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -31985,7 +31997,7 @@ function typeCheckConfig$C(untrustedConfig) {
31985
31997
  const untrustedConfig_orderedBy_array = [];
31986
31998
  for (let i = 0, arrayLength = untrustedConfig_orderedBy.length; i < arrayLength; i++) {
31987
31999
  const untrustedConfig_orderedBy_item = untrustedConfig_orderedBy[i];
31988
- const referenceListOrderedByInfoInputRepresentationValidationError = validate$Y(untrustedConfig_orderedBy_item);
32000
+ const referenceListOrderedByInfoInputRepresentationValidationError = validate$Z(untrustedConfig_orderedBy_item);
31989
32001
  if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
31990
32002
  untrustedConfig_orderedBy_array.push(untrustedConfig_orderedBy_item);
31991
32003
  }
@@ -36047,7 +36059,7 @@ const getRelatedListInfoAdapterFactory = (luvio) => function UiApi__getRelatedLi
36047
36059
  buildCachedSnapshotCachePolicy$d, buildNetworkSnapshotCachePolicy$e);
36048
36060
  };
36049
36061
 
36050
- function validate$y(obj, path = 'ListUserPreferenceInputRepresentation') {
36062
+ function validate$z(obj, path = 'ListUserPreferenceInputRepresentation') {
36051
36063
  const v_error = (() => {
36052
36064
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
36053
36065
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -36124,7 +36136,7 @@ function typeCheckConfig$o(untrustedConfig) {
36124
36136
  const untrustedConfig_orderedByInfo_array = [];
36125
36137
  for (let i = 0, arrayLength = untrustedConfig_orderedByInfo.length; i < arrayLength; i++) {
36126
36138
  const untrustedConfig_orderedByInfo_item = untrustedConfig_orderedByInfo[i];
36127
- const referenceListOrderedByInfoInputRepresentationValidationError = validate$Y(untrustedConfig_orderedByInfo_item);
36139
+ const referenceListOrderedByInfoInputRepresentationValidationError = validate$Z(untrustedConfig_orderedByInfo_item);
36128
36140
  if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
36129
36141
  untrustedConfig_orderedByInfo_array.push(untrustedConfig_orderedByInfo_item);
36130
36142
  }
@@ -36132,7 +36144,7 @@ function typeCheckConfig$o(untrustedConfig) {
36132
36144
  config.orderedByInfo = untrustedConfig_orderedByInfo_array;
36133
36145
  }
36134
36146
  const untrustedConfig_userPreferences = untrustedConfig.userPreferences;
36135
- const referenceListUserPreferenceInputRepresentationValidationError = validate$y(untrustedConfig_userPreferences);
36147
+ const referenceListUserPreferenceInputRepresentationValidationError = validate$z(untrustedConfig_userPreferences);
36136
36148
  if (referenceListUserPreferenceInputRepresentationValidationError === null) {
36137
36149
  config.userPreferences = untrustedConfig_userPreferences;
36138
36150
  }
@@ -36787,7 +36799,7 @@ function typeCheckConfig$l(untrustedConfig) {
36787
36799
  const untrustedConfig_orderedBy_array = [];
36788
36800
  for (let i = 0, arrayLength = untrustedConfig_orderedBy.length; i < arrayLength; i++) {
36789
36801
  const untrustedConfig_orderedBy_item = untrustedConfig_orderedBy[i];
36790
- const referenceListOrderedByInfoInputRepresentationValidationError = validate$Y(untrustedConfig_orderedBy_item);
36802
+ const referenceListOrderedByInfoInputRepresentationValidationError = validate$Z(untrustedConfig_orderedBy_item);
36791
36803
  if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
36792
36804
  untrustedConfig_orderedBy_array.push(untrustedConfig_orderedBy_item);
36793
36805
  }
@@ -36835,7 +36847,7 @@ const updateRelatedListPreferencesAdapterFactory = (luvio) => {
36835
36847
  };
36836
36848
  };
36837
36849
 
36838
- function validate$w(obj, path = 'RelatedListRecordsSingleBatchInputRepresentation') {
36850
+ function validate$x(obj, path = 'RelatedListRecordsSingleBatchInputRepresentation') {
36839
36851
  const v_error = (() => {
36840
36852
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
36841
36853
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -37383,6 +37395,7 @@ const ingest$8$1 = function RelatedListRecordCollectionRepresentationIngest(inpu
37383
37395
  namespace: "UiApi",
37384
37396
  version: VERSION$c$1,
37385
37397
  representationName: RepresentationType$d,
37398
+ ingestionTimestamp: timestamp,
37386
37399
  };
37387
37400
  luvio.publishStoreMetadata(key, storeMetadataParams);
37388
37401
  }
@@ -37788,7 +37801,7 @@ function typeCheckConfig$k(untrustedConfig) {
37788
37801
  const untrustedConfig_relatedListParameters_array = [];
37789
37802
  for (let i = 0, arrayLength = untrustedConfig_relatedListParameters.length; i < arrayLength; i++) {
37790
37803
  const untrustedConfig_relatedListParameters_item = untrustedConfig_relatedListParameters[i];
37791
- const referenceRelatedListRecordsSingleBatchInputRepresentationValidationError = validate$w(untrustedConfig_relatedListParameters_item);
37804
+ const referenceRelatedListRecordsSingleBatchInputRepresentationValidationError = validate$x(untrustedConfig_relatedListParameters_item);
37792
37805
  if (referenceRelatedListRecordsSingleBatchInputRepresentationValidationError === null) {
37793
37806
  untrustedConfig_relatedListParameters_array.push(untrustedConfig_relatedListParameters_item);
37794
37807
  }
@@ -38582,7 +38595,7 @@ const getLookupMetadataAdapterFactory = (luvio) => function UiApi__getLookupMeta
38582
38595
  buildCachedSnapshotCachePolicy$6, buildNetworkSnapshotCachePolicy$7);
38583
38596
  };
38584
38597
 
38585
- function validate$l(obj, path = 'SearchDataCategoryInputRepresentation') {
38598
+ function validate$m(obj, path = 'SearchDataCategoryInputRepresentation') {
38586
38599
  const v_error = (() => {
38587
38600
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
38588
38601
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -38613,7 +38626,7 @@ function validate$l(obj, path = 'SearchDataCategoryInputRepresentation') {
38613
38626
  return v_error === undefined ? null : v_error;
38614
38627
  }
38615
38628
 
38616
- function validate$k(obj, path = 'SearchFilterInputRepresentation') {
38629
+ function validate$l(obj, path = 'SearchFilterInputRepresentation') {
38617
38630
  const v_error = (() => {
38618
38631
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
38619
38632
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -38682,7 +38695,7 @@ function validate$k(obj, path = 'SearchFilterInputRepresentation') {
38682
38695
  return v_error === undefined ? null : v_error;
38683
38696
  }
38684
38697
 
38685
- function validate$j(obj, path = 'SearchObjectOptionsRepresentation') {
38698
+ function validate$k(obj, path = 'SearchObjectOptionsRepresentation') {
38686
38699
  const v_error = (() => {
38687
38700
  if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
38688
38701
  return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
@@ -38695,7 +38708,7 @@ function validate$j(obj, path = 'SearchObjectOptionsRepresentation') {
38695
38708
  for (let i = 0; i < obj_dataCategories.length; i++) {
38696
38709
  const obj_dataCategories_item = obj_dataCategories[i];
38697
38710
  const path_dataCategories_item = path_dataCategories + '[' + i + ']';
38698
- const referencepath_dataCategories_itemValidationError = validate$l(obj_dataCategories_item, path_dataCategories_item);
38711
+ const referencepath_dataCategories_itemValidationError = validate$m(obj_dataCategories_item, path_dataCategories_item);
38699
38712
  if (referencepath_dataCategories_itemValidationError !== null) {
38700
38713
  let message = 'Object doesn\'t match SearchDataCategoryInputRepresentation (at "' + path_dataCategories_item + '")\n';
38701
38714
  message += referencepath_dataCategories_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -38710,7 +38723,7 @@ function validate$j(obj, path = 'SearchObjectOptionsRepresentation') {
38710
38723
  for (let i = 0; i < obj_filters.length; i++) {
38711
38724
  const obj_filters_item = obj_filters[i];
38712
38725
  const path_filters_item = path_filters + '[' + i + ']';
38713
- const referencepath_filters_itemValidationError = validate$k(obj_filters_item, path_filters_item);
38726
+ const referencepath_filters_itemValidationError = validate$l(obj_filters_item, path_filters_item);
38714
38727
  if (referencepath_filters_itemValidationError !== null) {
38715
38728
  let message = 'Object doesn\'t match SearchFilterInputRepresentation (at "' + path_filters_item + '")\n';
38716
38729
  message += referencepath_filters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
@@ -38841,7 +38854,7 @@ function typeCheckConfig$f(untrustedConfig) {
38841
38854
  for (let i = 0, arrayLength = untrustedConfig_searchObjectOptions_keys.length; i < arrayLength; i++) {
38842
38855
  const key = untrustedConfig_searchObjectOptions_keys[i];
38843
38856
  const untrustedConfig_searchObjectOptions_prop = untrustedConfig_searchObjectOptions[key];
38844
- const referenceSearchObjectOptionsRepresentationValidationError = validate$j(untrustedConfig_searchObjectOptions_prop);
38857
+ const referenceSearchObjectOptionsRepresentationValidationError = validate$k(untrustedConfig_searchObjectOptions_prop);
38845
38858
  if (referenceSearchObjectOptionsRepresentationValidationError === null) {
38846
38859
  if (untrustedConfig_searchObjectOptions_object !== undefined) {
38847
38860
  untrustedConfig_searchObjectOptions_object[key] = untrustedConfig_searchObjectOptions_prop;
@@ -39044,7 +39057,7 @@ function typeCheckConfig$e(untrustedConfig) {
39044
39057
  const untrustedConfig_filters_array = [];
39045
39058
  for (let i = 0, arrayLength = untrustedConfig_filters.length; i < arrayLength; i++) {
39046
39059
  const untrustedConfig_filters_item = untrustedConfig_filters[i];
39047
- const referenceSearchFilterInputRepresentationValidationError = validate$k(untrustedConfig_filters_item);
39060
+ const referenceSearchFilterInputRepresentationValidationError = validate$l(untrustedConfig_filters_item);
39048
39061
  if (referenceSearchFilterInputRepresentationValidationError === null) {
39049
39062
  untrustedConfig_filters_array.push(untrustedConfig_filters_item);
39050
39063
  }
@@ -43141,7 +43154,7 @@ withDefaultLuvio((luvio) => {
43141
43154
  throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory$1));
43142
43155
  throttle(60, 60000, createLDSAdapter(luvio, 'notifyQuickActionDefaultsUpdateAvailable', notifyUpdateAvailableFactory));
43143
43156
  });
43144
- // version: 1.266.0-dev1-0affa7d84
43157
+ // version: 1.266.0-dev10-3275d4bf8
43145
43158
 
43146
43159
  var ldsIdempotencyWriteDisabled = {
43147
43160
  isOpen: function (e) {
@@ -44650,6 +44663,10 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
44650
44663
  }
44651
44664
  return {};
44652
44665
  };
44666
+ const getIngestStagingStore = function () {
44667
+ validateNotDisposed();
44668
+ return stagingStore === null || stagingStore === void 0 ? void 0 : stagingStore.fallbackStringKeyInMemoryStore;
44669
+ };
44653
44670
  const handleSuccessResponse = async function (ingestAndBroadcastFunc, getResponseCacheKeysFunc) {
44654
44671
  validateNotDisposed();
44655
44672
  const cacheKeyMap = getResponseCacheKeysFunc();
@@ -44842,6 +44859,7 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
44842
44859
  applyCachePolicy: { value: applyCachePolicy },
44843
44860
  getIngestStagingStoreRecords: { value: getIngestStagingStoreRecords },
44844
44861
  getIngestStagingStoreMetadata: { value: getIngestStagingStoreMetadata },
44862
+ getIngestStagingStore: { value: getIngestStagingStore },
44845
44863
  handleSuccessResponse: { value: handleSuccessResponse },
44846
44864
  handleErrorResponse: { value: handleErrorResponse },
44847
44865
  getNotifyChangeStoreEntries: { value: getNotifyChangeStoreEntries },
@@ -54889,7 +54907,7 @@ function createUserJsonOutput(selection, jsonInput, jsonOutput) {
54889
54907
  function createjsonOutput(selections, jsonInput, jsonOutput) {
54890
54908
  const keys$1 = keys$4(jsonInput);
54891
54909
  selections.filter(isFieldNode).forEach((subSelection) => {
54892
- const fieldName = subSelection.name.value;
54910
+ const fieldName = subSelection.alias ? subSelection.alias.value : subSelection.name.value;
54893
54911
  if (keys$1.includes(fieldName)) {
54894
54912
  if (isArray$2$1(jsonInput[fieldName])) {
54895
54913
  jsonOutput[fieldName] = [];
@@ -56205,7 +56223,7 @@ function normalizeRecordFields(key, entry) {
56205
56223
  * @param normalizedRecord Record containing normalized field links
56206
56224
  * @param recordStore a store containing referenced record fields
56207
56225
  */
56208
- function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries) {
56226
+ function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries, store) {
56209
56227
  const fields = normalizedRecord.fields;
56210
56228
  const filteredFields = {};
56211
56229
  const links = {};
@@ -56232,6 +56250,19 @@ function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntr
56232
56250
  if (ref !== undefined) {
56233
56251
  filteredFields[fieldName] = ref;
56234
56252
  }
56253
+ else {
56254
+ // if we have a store to read, try to find the field there too
56255
+ // The durable ingest staging store may pass through to L1, and
56256
+ // not all fields are necessarily published every time, so it is
56257
+ // important to check L1 and not just the fields being published,
56258
+ // otherwise we risk truncating the fields on the record.
56259
+ if (store) {
56260
+ ref = store.readEntry(__ref);
56261
+ if (ref !== undefined) {
56262
+ filteredFields[fieldName] = ref;
56263
+ }
56264
+ }
56265
+ }
56235
56266
  }
56236
56267
  // we want to preserve fields that are missing nodes
56237
56268
  if (filteredFields[fieldName] !== undefined || field.isMissing === true) {
@@ -56253,7 +56284,7 @@ function getDenormalizedKey(originalKey, recordId, luvio) {
56253
56284
  }
56254
56285
  return keyBuilder$20(luvio, { recordId });
56255
56286
  }
56256
- function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata) {
56287
+ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata, getStore) {
56257
56288
  const getEntries = function (entries, segment) {
56258
56289
  // this HOF only inspects records in the default segment
56259
56290
  if (segment !== DefaultDurableSegment) {
@@ -56321,6 +56352,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
56321
56352
  const putRecordViews = {};
56322
56353
  const storeRecords = getStoreRecords !== undefined ? getStoreRecords() : {};
56323
56354
  const storeMetadata = getStoreMetadata !== undefined ? getStoreMetadata() : {};
56355
+ const store = getStore();
56324
56356
  for (let i = 0, len = keys$1.length; i < len; i++) {
56325
56357
  const key = keys$1[i];
56326
56358
  let value = entries[key];
@@ -56367,7 +56399,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
56367
56399
  metadataVersion: DURABLE_METADATA_VERSION,
56368
56400
  };
56369
56401
  }
56370
- const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries);
56402
+ const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries, store);
56371
56403
  putEntries[recordKey] = {
56372
56404
  data: denormalizedRecord,
56373
56405
  metadata,
@@ -60899,22 +60931,25 @@ function getRuntime() {
60899
60931
  const internalAdapterStore = new InMemoryStore();
60900
60932
  let getIngestRecordsForInternalAdapters;
60901
60933
  let getIngestMetadataForInternalAdapters;
60934
+ let getIngestStoreInternal;
60902
60935
  const internalAdapterDurableStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => getIngestRecordsForInternalAdapters !== undefined
60903
60936
  ? getIngestRecordsForInternalAdapters()
60904
60937
  : {}, () => getIngestMetadataForInternalAdapters !== undefined
60905
60938
  ? getIngestMetadataForInternalAdapters()
60906
- : {});
60939
+ : {}, () => (getIngestStoreInternal !== undefined ? getIngestStoreInternal() : undefined));
60907
60940
  const { adapters: { getObjectInfo, getObjectInfos, getRecord, getObjectInfoDirectory }, durableEnvironment: internalAdapterDurableEnvironment, luvio: internalLuvio, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
60908
60941
  lazyInternalLuvio = internalLuvio;
60909
60942
  getIngestRecordsForInternalAdapters =
60910
60943
  internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
60911
60944
  getIngestMetadataForInternalAdapters =
60912
60945
  internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
60946
+ getIngestStoreInternal = internalAdapterDurableEnvironment.getIngestStagingStore;
60913
60947
  lazyObjectInfoService = new ObjectInfoService(getObjectInfo, getObjectInfos, getObjectInfoDirectory, lazyBaseDurableStore);
60914
60948
  // creates a durable store that denormalizes scalar fields for records
60915
60949
  let getIngestRecords;
60916
60950
  let getIngestMetadata;
60917
- const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}));
60951
+ let getIngestStore;
60952
+ const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}), () => (getIngestStore !== undefined ? getIngestStore() : undefined));
60918
60953
  const baseEnv = new Environment(store, lazyNetworkAdapter);
60919
60954
  const gqlEnv = makeEnvironmentGraphqlAware(baseEnv);
60920
60955
  const durableEnv = makeDurable(gqlEnv, {
@@ -60923,6 +60958,7 @@ function getRuntime() {
60923
60958
  });
60924
60959
  getIngestRecords = durableEnv.getIngestStagingStoreRecords;
60925
60960
  getIngestMetadata = durableEnv.getIngestStagingStoreMetadata;
60961
+ getIngestStore = durableEnv.getIngestStagingStore;
60926
60962
  // draft queue
60927
60963
  lazyDraftQueue = buildLdsDraftQueue(recordDenormingStore);
60928
60964
  const draftService = new UiApiDraftRecordService(lazyDraftQueue, () => lazyLuvio, recordDenormingStore, getObjectInfo, newRecordId, userId, formatDisplayValue);
@@ -61019,7 +61055,7 @@ register$1({
61019
61055
  id: '@salesforce/lds-network-adapter',
61020
61056
  instrument: instrument$2,
61021
61057
  });
61022
- // version: 1.266.0-dev1-7286a1163
61058
+ // version: 1.266.0-dev10-ff398791a
61023
61059
 
61024
61060
  const { create: create$3, keys: keys$3 } = Object;
61025
61061
  const { stringify: stringify$1, parse: parse$1 } = JSON;
@@ -61796,7 +61832,7 @@ function mergeData$11(existingData, newData) {
61796
61832
  };
61797
61833
  }
61798
61834
  function ingest$13(astNode, state) {
61799
- const { path, data, luvio } = state;
61835
+ const { path, data, timestamp, luvio } = state;
61800
61836
  const key = keyBuilder$16(luvio, path);
61801
61837
  return ingestNonCursorConnectionType(astNode, state, {
61802
61838
  key,
@@ -61810,7 +61846,8 @@ function ingest$13(astNode, state) {
61810
61846
  ttl: TTL$1,
61811
61847
  namespace: keyPrefix$1,
61812
61848
  representationName: "DoubleValue",
61813
- version: VERSION$1c
61849
+ version: VERSION$1c,
61850
+ ingestionTimestamp: timestamp,
61814
61851
  },
61815
61852
  });
61816
61853
  }
@@ -61938,7 +61975,7 @@ function mergeData$10(existingData, newData) {
61938
61975
  };
61939
61976
  }
61940
61977
  function ingest$12(astNode, state) {
61941
- const { path, data, luvio } = state;
61978
+ const { path, data, timestamp, luvio } = state;
61942
61979
  const key = keyBuilder$15(luvio, path);
61943
61980
  return ingestNonCursorConnectionType(astNode, state, {
61944
61981
  key,
@@ -61952,7 +61989,8 @@ function ingest$12(astNode, state) {
61952
61989
  ttl: TTL$1,
61953
61990
  namespace: keyPrefix$1,
61954
61991
  representationName: "LongValue",
61955
- version: VERSION$1b
61992
+ version: VERSION$1b,
61993
+ ingestionTimestamp: timestamp,
61956
61994
  },
61957
61995
  });
61958
61996
  }
@@ -62080,7 +62118,7 @@ function mergeData$$(existingData, newData) {
62080
62118
  };
62081
62119
  }
62082
62120
  function ingest$11(astNode, state) {
62083
- const { path, data, luvio } = state;
62121
+ const { path, data, timestamp, luvio } = state;
62084
62122
  const key = keyBuilder$14(luvio, path);
62085
62123
  return ingestNonCursorConnectionType(astNode, state, {
62086
62124
  key,
@@ -62094,7 +62132,8 @@ function ingest$11(astNode, state) {
62094
62132
  ttl: TTL$1,
62095
62133
  namespace: keyPrefix$1,
62096
62134
  representationName: "PercentValue",
62097
- version: VERSION$1a
62135
+ version: VERSION$1a,
62136
+ ingestionTimestamp: timestamp,
62098
62137
  },
62099
62138
  });
62100
62139
  }
@@ -62222,7 +62261,7 @@ function mergeData$_(existingData, newData) {
62222
62261
  };
62223
62262
  }
62224
62263
  function ingest$10(astNode, state) {
62225
- const { path, data, luvio } = state;
62264
+ const { path, data, timestamp, luvio } = state;
62226
62265
  const key = keyBuilder$13(luvio, path);
62227
62266
  return ingestNonCursorConnectionType(astNode, state, {
62228
62267
  key,
@@ -62236,7 +62275,8 @@ function ingest$10(astNode, state) {
62236
62275
  ttl: TTL$1,
62237
62276
  namespace: keyPrefix$1,
62238
62277
  representationName: "PercentAggregate",
62239
- version: VERSION$19
62278
+ version: VERSION$19,
62279
+ ingestionTimestamp: timestamp,
62240
62280
  },
62241
62281
  });
62242
62282
  }
@@ -62484,7 +62524,7 @@ function mergeData$Z(existingData, newData) {
62484
62524
  };
62485
62525
  }
62486
62526
  function ingest$$(astNode, state) {
62487
- const { path, data, luvio } = state;
62527
+ const { path, data, timestamp, luvio } = state;
62488
62528
  const key = keyBuilder$12(luvio, path);
62489
62529
  return ingestNonCursorConnectionType(astNode, state, {
62490
62530
  key,
@@ -62498,7 +62538,8 @@ function ingest$$(astNode, state) {
62498
62538
  ttl: TTL$1,
62499
62539
  namespace: keyPrefix$1,
62500
62540
  representationName: "IntValue",
62501
- version: VERSION$18
62541
+ version: VERSION$18,
62542
+ ingestionTimestamp: timestamp,
62502
62543
  },
62503
62544
  });
62504
62545
  }
@@ -62626,7 +62667,7 @@ function mergeData$Y(existingData, newData) {
62626
62667
  };
62627
62668
  }
62628
62669
  function ingest$_(astNode, state) {
62629
- const { path, data, luvio } = state;
62670
+ const { path, data, timestamp, luvio } = state;
62630
62671
  const key = keyBuilder$11(luvio, path);
62631
62672
  return ingestNonCursorConnectionType(astNode, state, {
62632
62673
  key,
@@ -62640,7 +62681,8 @@ function ingest$_(astNode, state) {
62640
62681
  ttl: TTL$1,
62641
62682
  namespace: keyPrefix$1,
62642
62683
  representationName: "StringValue",
62643
- version: VERSION$17
62684
+ version: VERSION$17,
62685
+ ingestionTimestamp: timestamp,
62644
62686
  },
62645
62687
  });
62646
62688
  }
@@ -62759,7 +62801,7 @@ function mergeData$X(existingData, newData) {
62759
62801
  };
62760
62802
  }
62761
62803
  function ingest$Z(astNode, state) {
62762
- const { path, data, luvio } = state;
62804
+ const { path, data, timestamp, luvio } = state;
62763
62805
  const key = keyBuilder$10(luvio, path);
62764
62806
  return ingestNonCursorConnectionType(astNode, state, {
62765
62807
  key,
@@ -62773,7 +62815,8 @@ function ingest$Z(astNode, state) {
62773
62815
  ttl: TTL$1,
62774
62816
  namespace: keyPrefix$1,
62775
62817
  representationName: "StringAggregate",
62776
- version: VERSION$16
62818
+ version: VERSION$16,
62819
+ ingestionTimestamp: timestamp,
62777
62820
  },
62778
62821
  });
62779
62822
  }
@@ -63001,7 +63044,7 @@ function mergeData$W(existingData, newData) {
63001
63044
  };
63002
63045
  }
63003
63046
  function ingest$Y(astNode, state) {
63004
- const { path, data, luvio } = state;
63047
+ const { path, data, timestamp, luvio } = state;
63005
63048
  const key = keyBuilder$$(luvio, path);
63006
63049
  return ingestNonCursorConnectionType(astNode, state, {
63007
63050
  key,
@@ -63015,7 +63058,8 @@ function ingest$Y(astNode, state) {
63015
63058
  ttl: TTL$1,
63016
63059
  namespace: keyPrefix$1,
63017
63060
  representationName: "IDValue",
63018
- version: VERSION$15
63061
+ version: VERSION$15,
63062
+ ingestionTimestamp: timestamp,
63019
63063
  },
63020
63064
  });
63021
63065
  }
@@ -63137,7 +63181,7 @@ function mergeData$V(existingData, newData) {
63137
63181
  };
63138
63182
  }
63139
63183
  function ingest$X(astNode, state) {
63140
- const { path, data, luvio } = state;
63184
+ const { path, data, timestamp, luvio } = state;
63141
63185
  const key = keyBuilder$_(luvio, path);
63142
63186
  return ingestNonCursorConnectionType(astNode, state, {
63143
63187
  key,
@@ -63151,7 +63195,8 @@ function ingest$X(astNode, state) {
63151
63195
  ttl: TTL$1,
63152
63196
  namespace: keyPrefix$1,
63153
63197
  representationName: "DateTimeValue",
63154
- version: VERSION$14
63198
+ version: VERSION$14,
63199
+ ingestionTimestamp: timestamp,
63155
63200
  },
63156
63201
  });
63157
63202
  }
@@ -63279,7 +63324,7 @@ function mergeData$U(existingData, newData) {
63279
63324
  };
63280
63325
  }
63281
63326
  function ingest$W(astNode, state) {
63282
- const { path, data, luvio } = state;
63327
+ const { path, data, timestamp, luvio } = state;
63283
63328
  const key = keyBuilder$Z(luvio, path);
63284
63329
  return ingestNonCursorConnectionType(astNode, state, {
63285
63330
  key,
@@ -63293,7 +63338,8 @@ function ingest$W(astNode, state) {
63293
63338
  ttl: TTL$1,
63294
63339
  namespace: keyPrefix$1,
63295
63340
  representationName: "BooleanValue",
63296
- version: VERSION$13
63341
+ version: VERSION$13,
63342
+ ingestionTimestamp: timestamp,
63297
63343
  },
63298
63344
  });
63299
63345
  }
@@ -63415,7 +63461,7 @@ function mergeData$T(existingData, newData) {
63415
63461
  };
63416
63462
  }
63417
63463
  function ingest$V(astNode, state) {
63418
- const { path, data, luvio } = state;
63464
+ const { path, data, timestamp, luvio } = state;
63419
63465
  const key = keyBuilder$Y(luvio, path);
63420
63466
  return ingestNonCursorConnectionType(astNode, state, {
63421
63467
  key,
@@ -63429,7 +63475,8 @@ function ingest$V(astNode, state) {
63429
63475
  ttl: TTL$1,
63430
63476
  namespace: keyPrefix$1,
63431
63477
  representationName: "TimeValue",
63432
- version: VERSION$12
63478
+ version: VERSION$12,
63479
+ ingestionTimestamp: timestamp,
63433
63480
  },
63434
63481
  });
63435
63482
  }
@@ -63557,7 +63604,7 @@ function mergeData$S(existingData, newData) {
63557
63604
  };
63558
63605
  }
63559
63606
  function ingest$U(astNode, state) {
63560
- const { path, data, luvio } = state;
63607
+ const { path, data, timestamp, luvio } = state;
63561
63608
  const key = keyBuilder$X(luvio, path);
63562
63609
  return ingestNonCursorConnectionType(astNode, state, {
63563
63610
  key,
@@ -63571,7 +63618,8 @@ function ingest$U(astNode, state) {
63571
63618
  ttl: TTL$1,
63572
63619
  namespace: keyPrefix$1,
63573
63620
  representationName: "DateValue",
63574
- version: VERSION$11
63621
+ version: VERSION$11,
63622
+ ingestionTimestamp: timestamp,
63575
63623
  },
63576
63624
  });
63577
63625
  }
@@ -63699,7 +63747,7 @@ function mergeData$R(existingData, newData) {
63699
63747
  };
63700
63748
  }
63701
63749
  function ingest$T(astNode, state) {
63702
- const { path, data, luvio } = state;
63750
+ const { path, data, timestamp, luvio } = state;
63703
63751
  const key = keyBuilder$W(luvio, path);
63704
63752
  return ingestNonCursorConnectionType(astNode, state, {
63705
63753
  key,
@@ -63713,7 +63761,8 @@ function ingest$T(astNode, state) {
63713
63761
  ttl: TTL$1,
63714
63762
  namespace: keyPrefix$1,
63715
63763
  representationName: "TextAreaValue",
63716
- version: VERSION$10
63764
+ version: VERSION$10,
63765
+ ingestionTimestamp: timestamp,
63717
63766
  },
63718
63767
  });
63719
63768
  }
@@ -63835,7 +63884,7 @@ function mergeData$Q(existingData, newData) {
63835
63884
  };
63836
63885
  }
63837
63886
  function ingest$S(astNode, state) {
63838
- const { path, data, luvio } = state;
63887
+ const { path, data, timestamp, luvio } = state;
63839
63888
  const key = keyBuilder$V(luvio, path);
63840
63889
  return ingestNonCursorConnectionType(astNode, state, {
63841
63890
  key,
@@ -63849,7 +63898,8 @@ function ingest$S(astNode, state) {
63849
63898
  ttl: TTL$1,
63850
63899
  namespace: keyPrefix$1,
63851
63900
  representationName: "LongTextAreaValue",
63852
- version: VERSION$$
63901
+ version: VERSION$$,
63902
+ ingestionTimestamp: timestamp,
63853
63903
  },
63854
63904
  });
63855
63905
  }
@@ -63971,7 +64021,7 @@ function mergeData$P(existingData, newData) {
63971
64021
  };
63972
64022
  }
63973
64023
  function ingest$R(astNode, state) {
63974
- const { path, data, luvio } = state;
64024
+ const { path, data, timestamp, luvio } = state;
63975
64025
  const key = keyBuilder$U(luvio, path);
63976
64026
  return ingestNonCursorConnectionType(astNode, state, {
63977
64027
  key,
@@ -63985,7 +64035,8 @@ function ingest$R(astNode, state) {
63985
64035
  ttl: TTL$1,
63986
64036
  namespace: keyPrefix$1,
63987
64037
  representationName: "RichTextAreaValue",
63988
- version: VERSION$_
64038
+ version: VERSION$_,
64039
+ ingestionTimestamp: timestamp,
63989
64040
  },
63990
64041
  });
63991
64042
  }
@@ -64107,7 +64158,7 @@ function mergeData$O(existingData, newData) {
64107
64158
  };
64108
64159
  }
64109
64160
  function ingest$Q(astNode, state) {
64110
- const { path, data, luvio } = state;
64161
+ const { path, data, timestamp, luvio } = state;
64111
64162
  const key = keyBuilder$T(luvio, path);
64112
64163
  return ingestNonCursorConnectionType(astNode, state, {
64113
64164
  key,
@@ -64121,7 +64172,8 @@ function ingest$Q(astNode, state) {
64121
64172
  ttl: TTL$1,
64122
64173
  namespace: keyPrefix$1,
64123
64174
  representationName: "PhoneNumberValue",
64124
- version: VERSION$Z
64175
+ version: VERSION$Z,
64176
+ ingestionTimestamp: timestamp,
64125
64177
  },
64126
64178
  });
64127
64179
  }
@@ -64243,7 +64295,7 @@ function mergeData$N(existingData, newData) {
64243
64295
  };
64244
64296
  }
64245
64297
  function ingest$P(astNode, state) {
64246
- const { path, data, luvio } = state;
64298
+ const { path, data, timestamp, luvio } = state;
64247
64299
  const key = keyBuilder$S(luvio, path);
64248
64300
  return ingestNonCursorConnectionType(astNode, state, {
64249
64301
  key,
@@ -64257,7 +64309,8 @@ function ingest$P(astNode, state) {
64257
64309
  ttl: TTL$1,
64258
64310
  namespace: keyPrefix$1,
64259
64311
  representationName: "EmailValue",
64260
- version: VERSION$Y
64312
+ version: VERSION$Y,
64313
+ ingestionTimestamp: timestamp,
64261
64314
  },
64262
64315
  });
64263
64316
  }
@@ -64379,7 +64432,7 @@ function mergeData$M(existingData, newData) {
64379
64432
  };
64380
64433
  }
64381
64434
  function ingest$O(astNode, state) {
64382
- const { path, data, luvio } = state;
64435
+ const { path, data, timestamp, luvio } = state;
64383
64436
  const key = keyBuilder$R(luvio, path);
64384
64437
  return ingestNonCursorConnectionType(astNode, state, {
64385
64438
  key,
@@ -64393,7 +64446,8 @@ function ingest$O(astNode, state) {
64393
64446
  ttl: TTL$1,
64394
64447
  namespace: keyPrefix$1,
64395
64448
  representationName: "UrlValue",
64396
- version: VERSION$X
64449
+ version: VERSION$X,
64450
+ ingestionTimestamp: timestamp,
64397
64451
  },
64398
64452
  });
64399
64453
  }
@@ -64515,7 +64569,7 @@ function mergeData$L(existingData, newData) {
64515
64569
  };
64516
64570
  }
64517
64571
  function ingest$N(astNode, state) {
64518
- const { path, data, luvio } = state;
64572
+ const { path, data, timestamp, luvio } = state;
64519
64573
  const key = keyBuilder$Q(luvio, path);
64520
64574
  return ingestNonCursorConnectionType(astNode, state, {
64521
64575
  key,
@@ -64529,7 +64583,8 @@ function ingest$N(astNode, state) {
64529
64583
  ttl: TTL$1,
64530
64584
  namespace: keyPrefix$1,
64531
64585
  representationName: "EncryptedStringValue",
64532
- version: VERSION$W
64586
+ version: VERSION$W,
64587
+ ingestionTimestamp: timestamp,
64533
64588
  },
64534
64589
  });
64535
64590
  }
@@ -64651,7 +64706,7 @@ function mergeData$K(existingData, newData) {
64651
64706
  };
64652
64707
  }
64653
64708
  function ingest$M(astNode, state) {
64654
- const { path, data, luvio } = state;
64709
+ const { path, data, timestamp, luvio } = state;
64655
64710
  const key = keyBuilder$P(luvio, path);
64656
64711
  return ingestNonCursorConnectionType(astNode, state, {
64657
64712
  key,
@@ -64665,7 +64720,8 @@ function ingest$M(astNode, state) {
64665
64720
  ttl: TTL$1,
64666
64721
  namespace: keyPrefix$1,
64667
64722
  representationName: "CurrencyValue",
64668
- version: VERSION$V
64723
+ version: VERSION$V,
64724
+ ingestionTimestamp: timestamp,
64669
64725
  },
64670
64726
  });
64671
64727
  }
@@ -64793,7 +64849,7 @@ function mergeData$J(existingData, newData) {
64793
64849
  };
64794
64850
  }
64795
64851
  function ingest$L(astNode, state) {
64796
- const { path, data, luvio } = state;
64852
+ const { path, data, timestamp, luvio } = state;
64797
64853
  const key = keyBuilder$O(luvio, path);
64798
64854
  return ingestNonCursorConnectionType(astNode, state, {
64799
64855
  key,
@@ -64807,7 +64863,8 @@ function ingest$L(astNode, state) {
64807
64863
  ttl: TTL$1,
64808
64864
  namespace: keyPrefix$1,
64809
64865
  representationName: "LongitudeValue",
64810
- version: VERSION$U
64866
+ version: VERSION$U,
64867
+ ingestionTimestamp: timestamp,
64811
64868
  },
64812
64869
  });
64813
64870
  }
@@ -64929,7 +64986,7 @@ function mergeData$I(existingData, newData) {
64929
64986
  };
64930
64987
  }
64931
64988
  function ingest$K(astNode, state) {
64932
- const { path, data, luvio } = state;
64989
+ const { path, data, timestamp, luvio } = state;
64933
64990
  const key = keyBuilder$N(luvio, path);
64934
64991
  return ingestNonCursorConnectionType(astNode, state, {
64935
64992
  key,
@@ -64943,7 +65000,8 @@ function ingest$K(astNode, state) {
64943
65000
  ttl: TTL$1,
64944
65001
  namespace: keyPrefix$1,
64945
65002
  representationName: "LatitudeValue",
64946
- version: VERSION$T
65003
+ version: VERSION$T,
65004
+ ingestionTimestamp: timestamp,
64947
65005
  },
64948
65006
  });
64949
65007
  }
@@ -65065,7 +65123,7 @@ function mergeData$H(existingData, newData) {
65065
65123
  };
65066
65124
  }
65067
65125
  function ingest$J(astNode, state) {
65068
- const { path, data, luvio } = state;
65126
+ const { path, data, timestamp, luvio } = state;
65069
65127
  const key = keyBuilder$M(luvio, path);
65070
65128
  return ingestNonCursorConnectionType(astNode, state, {
65071
65129
  key,
@@ -65079,7 +65137,8 @@ function ingest$J(astNode, state) {
65079
65137
  ttl: TTL$1,
65080
65138
  namespace: keyPrefix$1,
65081
65139
  representationName: "PicklistValue",
65082
- version: VERSION$S
65140
+ version: VERSION$S,
65141
+ ingestionTimestamp: timestamp,
65083
65142
  },
65084
65143
  });
65085
65144
  }
@@ -65207,7 +65266,7 @@ function mergeData$G(existingData, newData) {
65207
65266
  };
65208
65267
  }
65209
65268
  function ingest$I(astNode, state) {
65210
- const { path, data, luvio } = state;
65269
+ const { path, data, timestamp, luvio } = state;
65211
65270
  const key = keyBuilder$L(luvio, path);
65212
65271
  return ingestNonCursorConnectionType(astNode, state, {
65213
65272
  key,
@@ -65221,7 +65280,8 @@ function ingest$I(astNode, state) {
65221
65280
  ttl: TTL$1,
65222
65281
  namespace: keyPrefix$1,
65223
65282
  representationName: "MultiPicklistValue",
65224
- version: VERSION$R
65283
+ version: VERSION$R,
65284
+ ingestionTimestamp: timestamp,
65225
65285
  },
65226
65286
  });
65227
65287
  }
@@ -65349,7 +65409,7 @@ function mergeData$F(existingData, newData) {
65349
65409
  };
65350
65410
  }
65351
65411
  function ingest$H(astNode, state) {
65352
- const { path, data, luvio } = state;
65412
+ const { path, data, timestamp, luvio } = state;
65353
65413
  const key = keyBuilder$K(luvio, path);
65354
65414
  return ingestNonCursorConnectionType(astNode, state, {
65355
65415
  key,
@@ -65363,7 +65423,8 @@ function ingest$H(astNode, state) {
65363
65423
  ttl: TTL$1,
65364
65424
  namespace: keyPrefix$1,
65365
65425
  representationName: "Base64Value",
65366
- version: VERSION$Q
65426
+ version: VERSION$Q,
65427
+ ingestionTimestamp: timestamp,
65367
65428
  },
65368
65429
  });
65369
65430
  }
@@ -65485,7 +65546,7 @@ function mergeData$E(existingData, newData) {
65485
65546
  };
65486
65547
  }
65487
65548
  function ingest$G(astNode, state) {
65488
- const { path, data, luvio } = state;
65549
+ const { path, data, timestamp, luvio } = state;
65489
65550
  const key = keyBuilder$J(luvio, path);
65490
65551
  return ingestNonCursorConnectionType(astNode, state, {
65491
65552
  key,
@@ -65499,7 +65560,8 @@ function ingest$G(astNode, state) {
65499
65560
  ttl: TTL$1,
65500
65561
  namespace: keyPrefix$1,
65501
65562
  representationName: "JSONValue",
65502
- version: VERSION$P
65563
+ version: VERSION$P,
65564
+ ingestionTimestamp: timestamp,
65503
65565
  },
65504
65566
  });
65505
65567
  }
@@ -66097,7 +66159,7 @@ function mergeData$D(existingData, newData) {
66097
66159
  };
66098
66160
  }
66099
66161
  function ingest$E(astNode, state) {
66100
- const { path, data, luvio } = state;
66162
+ const { path, data, timestamp, luvio } = state;
66101
66163
  const key = keyBuilder$H(luvio, path);
66102
66164
  return ingestNonCursorConnectionType(astNode, state, {
66103
66165
  key,
@@ -66111,7 +66173,8 @@ function ingest$E(astNode, state) {
66111
66173
  ttl: TTL$1,
66112
66174
  namespace: keyPrefix$1,
66113
66175
  representationName: "CompoundField",
66114
- version: VERSION$L
66176
+ version: VERSION$L,
66177
+ ingestionTimestamp: timestamp,
66115
66178
  },
66116
66179
  });
66117
66180
  }
@@ -67097,7 +67160,7 @@ function mergeData$C(existingData, newData) {
67097
67160
  };
67098
67161
  }
67099
67162
  function ingest$D(astNode, state) {
67100
- const { path, data, luvio } = state;
67163
+ const { path, data, timestamp, luvio } = state;
67101
67164
  const key = keyBuilder$G(luvio, path);
67102
67165
  return ingestNonCursorConnectionType(astNode, state, {
67103
67166
  key,
@@ -67111,7 +67174,8 @@ function ingest$D(astNode, state) {
67111
67174
  ttl: TTL$1,
67112
67175
  namespace: keyPrefix$1,
67113
67176
  representationName: "PageInfo",
67114
- version: VERSION$K
67177
+ version: VERSION$K,
67178
+ ingestionTimestamp: timestamp,
67115
67179
  },
67116
67180
  });
67117
67181
  }
@@ -67313,7 +67377,7 @@ function mergeData$B(existingData, newData) {
67313
67377
  };
67314
67378
  }
67315
67379
  function ingest$C(astNode, state) {
67316
- const { path, data, luvio } = state;
67380
+ const { path, data, timestamp, luvio } = state;
67317
67381
  const key = keyBuilder$F(luvio, path, data);
67318
67382
  return ingestNonCursorConnectionType(astNode, state, {
67319
67383
  key,
@@ -67330,7 +67394,8 @@ function ingest$C(astNode, state) {
67330
67394
  ttl: TTL$1,
67331
67395
  namespace: keyPrefix$1,
67332
67396
  representationName: "RecordRepresentation",
67333
- version: VERSION$J
67397
+ version: VERSION$J,
67398
+ ingestionTimestamp: timestamp,
67334
67399
  },
67335
67400
  });
67336
67401
  }
@@ -67852,7 +67917,7 @@ function mergeData$A(existingData, newData) {
67852
67917
  };
67853
67918
  }
67854
67919
  function ingest$B(astNode, state) {
67855
- const { path, data, luvio } = state;
67920
+ const { path, data, timestamp, luvio } = state;
67856
67921
  const key = keyBuilder$E(luvio, path);
67857
67922
  return ingestNonCursorConnectionType(astNode, state, {
67858
67923
  key,
@@ -67866,7 +67931,8 @@ function ingest$B(astNode, state) {
67866
67931
  ttl: TTL$1,
67867
67932
  namespace: keyPrefix$1,
67868
67933
  representationName: "RecordEdge",
67869
- version: VERSION$I
67934
+ version: VERSION$I,
67935
+ ingestionTimestamp: timestamp,
67870
67936
  },
67871
67937
  });
67872
67938
  }
@@ -68071,7 +68137,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
68071
68137
  }
68072
68138
  }
68073
68139
  function ingest$A(astNode, state) {
68074
- const { path, data, luvio } = state;
68140
+ const { path, data, timestamp, luvio } = state;
68075
68141
  const key = keyBuilder$D(luvio, path);
68076
68142
  return ingestCursorConnectionType(astNode, state, {
68077
68143
  key,
@@ -68087,7 +68153,8 @@ function ingest$A(astNode, state) {
68087
68153
  ttl: TTL$4,
68088
68154
  namespace: keyPrefix$1,
68089
68155
  representationName: "RecordConnection",
68090
- version: VERSION$H
68156
+ version: VERSION$H,
68157
+ ingestionTimestamp: timestamp,
68091
68158
  },
68092
68159
  });
68093
68160
  }
@@ -68256,7 +68323,7 @@ function mergeData$y(existingData, newData) {
68256
68323
  };
68257
68324
  }
68258
68325
  function ingest$z(astNode, state) {
68259
- const { path, data, luvio } = state;
68326
+ const { path, data, timestamp, luvio } = state;
68260
68327
  const key = keyBuilder$C(luvio, path);
68261
68328
  return ingestNonCursorConnectionType(astNode, state, {
68262
68329
  key,
@@ -68270,7 +68337,8 @@ function ingest$z(astNode, state) {
68270
68337
  ttl: TTL$1,
68271
68338
  namespace: keyPrefix$1,
68272
68339
  representationName: "RecordQuery",
68273
- version: VERSION$G
68340
+ version: VERSION$G,
68341
+ ingestionTimestamp: timestamp,
68274
68342
  },
68275
68343
  });
68276
68344
  }
@@ -68400,7 +68468,7 @@ function mergeData$x(existingData, newData) {
68400
68468
  };
68401
68469
  }
68402
68470
  function ingest$y(astNode, state) {
68403
- const { path, data, luvio } = state;
68471
+ const { path, data, timestamp, luvio } = state;
68404
68472
  const key = keyBuilder$B(luvio, path);
68405
68473
  return ingestNonCursorConnectionType(astNode, state, {
68406
68474
  key,
@@ -68414,7 +68482,8 @@ function ingest$y(astNode, state) {
68414
68482
  ttl: TTL$1,
68415
68483
  namespace: keyPrefix$1,
68416
68484
  representationName: "BooleanAggregate",
68417
- version: VERSION$F
68485
+ version: VERSION$F,
68486
+ ingestionTimestamp: timestamp,
68418
68487
  },
68419
68488
  });
68420
68489
  }
@@ -68583,7 +68652,7 @@ function mergeData$w(existingData, newData) {
68583
68652
  };
68584
68653
  }
68585
68654
  function ingest$x(astNode, state) {
68586
- const { path, data, luvio } = state;
68655
+ const { path, data, timestamp, luvio } = state;
68587
68656
  const key = keyBuilder$A(luvio, path);
68588
68657
  return ingestNonCursorConnectionType(astNode, state, {
68589
68658
  key,
@@ -68597,7 +68666,8 @@ function ingest$x(astNode, state) {
68597
68666
  ttl: TTL$1,
68598
68667
  namespace: keyPrefix$1,
68599
68668
  representationName: "CurrencyAggregate",
68600
- version: VERSION$E
68669
+ version: VERSION$E,
68670
+ ingestionTimestamp: timestamp,
68601
68671
  },
68602
68672
  });
68603
68673
  }
@@ -68845,7 +68915,7 @@ function mergeData$v(existingData, newData) {
68845
68915
  };
68846
68916
  }
68847
68917
  function ingest$w(astNode, state) {
68848
- const { path, data, luvio } = state;
68918
+ const { path, data, timestamp, luvio } = state;
68849
68919
  const key = keyBuilder$z(luvio, path);
68850
68920
  return ingestNonCursorConnectionType(astNode, state, {
68851
68921
  key,
@@ -68859,7 +68929,8 @@ function ingest$w(astNode, state) {
68859
68929
  ttl: TTL$1,
68860
68930
  namespace: keyPrefix$1,
68861
68931
  representationName: "DateFunctionAggregation",
68862
- version: VERSION$D
68932
+ version: VERSION$D,
68933
+ ingestionTimestamp: timestamp,
68863
68934
  },
68864
68935
  });
68865
68936
  }
@@ -68993,7 +69064,7 @@ function mergeData$u(existingData, newData) {
68993
69064
  };
68994
69065
  }
68995
69066
  function ingest$v(astNode, state) {
68996
- const { path, data, luvio } = state;
69067
+ const { path, data, timestamp, luvio } = state;
68997
69068
  const key = keyBuilder$y(luvio, path);
68998
69069
  return ingestNonCursorConnectionType(astNode, state, {
68999
69070
  key,
@@ -69007,7 +69078,8 @@ function ingest$v(astNode, state) {
69007
69078
  ttl: TTL$1,
69008
69079
  namespace: keyPrefix$1,
69009
69080
  representationName: "DateAggregate",
69010
- version: VERSION$C
69081
+ version: VERSION$C,
69082
+ ingestionTimestamp: timestamp,
69011
69083
  },
69012
69084
  });
69013
69085
  }
@@ -69374,7 +69446,7 @@ function mergeData$t(existingData, newData) {
69374
69446
  };
69375
69447
  }
69376
69448
  function ingest$u(astNode, state) {
69377
- const { path, data, luvio } = state;
69449
+ const { path, data, timestamp, luvio } = state;
69378
69450
  const key = keyBuilder$x(luvio, path);
69379
69451
  return ingestNonCursorConnectionType(astNode, state, {
69380
69452
  key,
@@ -69388,7 +69460,8 @@ function ingest$u(astNode, state) {
69388
69460
  ttl: TTL$1,
69389
69461
  namespace: keyPrefix$1,
69390
69462
  representationName: "DoubleAggregate",
69391
- version: VERSION$B
69463
+ version: VERSION$B,
69464
+ ingestionTimestamp: timestamp,
69392
69465
  },
69393
69466
  });
69394
69467
  }
@@ -69627,7 +69700,7 @@ function mergeData$s(existingData, newData) {
69627
69700
  };
69628
69701
  }
69629
69702
  function ingest$t(astNode, state) {
69630
- const { path, data, luvio } = state;
69703
+ const { path, data, timestamp, luvio } = state;
69631
69704
  const key = keyBuilder$w(luvio, path);
69632
69705
  return ingestNonCursorConnectionType(astNode, state, {
69633
69706
  key,
@@ -69641,7 +69714,8 @@ function ingest$t(astNode, state) {
69641
69714
  ttl: TTL$1,
69642
69715
  namespace: keyPrefix$1,
69643
69716
  representationName: "EmailAggregate",
69644
- version: VERSION$A
69717
+ version: VERSION$A,
69718
+ ingestionTimestamp: timestamp,
69645
69719
  },
69646
69720
  });
69647
69721
  }
@@ -69872,7 +69946,7 @@ function mergeData$r(existingData, newData) {
69872
69946
  };
69873
69947
  }
69874
69948
  function ingest$s(astNode, state) {
69875
- const { path, data, luvio } = state;
69949
+ const { path, data, timestamp, luvio } = state;
69876
69950
  const key = keyBuilder$v(luvio, path);
69877
69951
  return ingestNonCursorConnectionType(astNode, state, {
69878
69952
  key,
@@ -69886,7 +69960,8 @@ function ingest$s(astNode, state) {
69886
69960
  ttl: TTL$1,
69887
69961
  namespace: keyPrefix$1,
69888
69962
  representationName: "IDAggregate",
69889
- version: VERSION$z
69963
+ version: VERSION$z,
69964
+ ingestionTimestamp: timestamp,
69890
69965
  },
69891
69966
  });
69892
69967
  }
@@ -70117,7 +70192,7 @@ function mergeData$q(existingData, newData) {
70117
70192
  };
70118
70193
  }
70119
70194
  function ingest$r(astNode, state) {
70120
- const { path, data, luvio } = state;
70195
+ const { path, data, timestamp, luvio } = state;
70121
70196
  const key = keyBuilder$u(luvio, path);
70122
70197
  return ingestNonCursorConnectionType(astNode, state, {
70123
70198
  key,
@@ -70131,7 +70206,8 @@ function ingest$r(astNode, state) {
70131
70206
  ttl: TTL$1,
70132
70207
  namespace: keyPrefix$1,
70133
70208
  representationName: "IntAggregate",
70134
- version: VERSION$y
70209
+ version: VERSION$y,
70210
+ ingestionTimestamp: timestamp,
70135
70211
  },
70136
70212
  });
70137
70213
  }
@@ -70390,7 +70466,7 @@ function mergeData$p(existingData, newData) {
70390
70466
  };
70391
70467
  }
70392
70468
  function ingest$q(astNode, state) {
70393
- const { path, data, luvio } = state;
70469
+ const { path, data, timestamp, luvio } = state;
70394
70470
  const key = keyBuilder$t(luvio, path);
70395
70471
  return ingestNonCursorConnectionType(astNode, state, {
70396
70472
  key,
@@ -70404,7 +70480,8 @@ function ingest$q(astNode, state) {
70404
70480
  ttl: TTL$1,
70405
70481
  namespace: keyPrefix$1,
70406
70482
  representationName: "LatitudeAggregate",
70407
- version: VERSION$x
70483
+ version: VERSION$x,
70484
+ ingestionTimestamp: timestamp,
70408
70485
  },
70409
70486
  });
70410
70487
  }
@@ -70646,7 +70723,7 @@ function mergeData$o(existingData, newData) {
70646
70723
  };
70647
70724
  }
70648
70725
  function ingest$p(astNode, state) {
70649
- const { path, data, luvio } = state;
70726
+ const { path, data, timestamp, luvio } = state;
70650
70727
  const key = keyBuilder$s(luvio, path);
70651
70728
  return ingestNonCursorConnectionType(astNode, state, {
70652
70729
  key,
@@ -70660,7 +70737,8 @@ function ingest$p(astNode, state) {
70660
70737
  ttl: TTL$1,
70661
70738
  namespace: keyPrefix$1,
70662
70739
  representationName: "LongitudeAggregate",
70663
- version: VERSION$w
70740
+ version: VERSION$w,
70741
+ ingestionTimestamp: timestamp,
70664
70742
  },
70665
70743
  });
70666
70744
  }
@@ -70902,7 +70980,7 @@ function mergeData$n(existingData, newData) {
70902
70980
  };
70903
70981
  }
70904
70982
  function ingest$o(astNode, state) {
70905
- const { path, data, luvio } = state;
70983
+ const { path, data, timestamp, luvio } = state;
70906
70984
  const key = keyBuilder$r(luvio, path);
70907
70985
  return ingestNonCursorConnectionType(astNode, state, {
70908
70986
  key,
@@ -70916,7 +70994,8 @@ function ingest$o(astNode, state) {
70916
70994
  ttl: TTL$1,
70917
70995
  namespace: keyPrefix$1,
70918
70996
  representationName: "LongAggregate",
70919
- version: VERSION$v
70997
+ version: VERSION$v,
70998
+ ingestionTimestamp: timestamp,
70920
70999
  },
70921
71000
  });
70922
71001
  }
@@ -71175,7 +71254,7 @@ function mergeData$m(existingData, newData) {
71175
71254
  };
71176
71255
  }
71177
71256
  function ingest$n(astNode, state) {
71178
- const { path, data, luvio } = state;
71257
+ const { path, data, timestamp, luvio } = state;
71179
71258
  const key = keyBuilder$q(luvio, path);
71180
71259
  return ingestNonCursorConnectionType(astNode, state, {
71181
71260
  key,
@@ -71189,7 +71268,8 @@ function ingest$n(astNode, state) {
71189
71268
  ttl: TTL$1,
71190
71269
  namespace: keyPrefix$1,
71191
71270
  representationName: "PhoneNumberAggregate",
71192
- version: VERSION$u
71271
+ version: VERSION$u,
71272
+ ingestionTimestamp: timestamp,
71193
71273
  },
71194
71274
  });
71195
71275
  }
@@ -71420,7 +71500,7 @@ function mergeData$l(existingData, newData) {
71420
71500
  };
71421
71501
  }
71422
71502
  function ingest$m(astNode, state) {
71423
- const { path, data, luvio } = state;
71503
+ const { path, data, timestamp, luvio } = state;
71424
71504
  const key = keyBuilder$p(luvio, path);
71425
71505
  return ingestNonCursorConnectionType(astNode, state, {
71426
71506
  key,
@@ -71434,7 +71514,8 @@ function ingest$m(astNode, state) {
71434
71514
  ttl: TTL$1,
71435
71515
  namespace: keyPrefix$1,
71436
71516
  representationName: "PicklistAggregate",
71437
- version: VERSION$t
71517
+ version: VERSION$t,
71518
+ ingestionTimestamp: timestamp,
71438
71519
  },
71439
71520
  });
71440
71521
  }
@@ -71671,7 +71752,7 @@ function mergeData$k(existingData, newData) {
71671
71752
  };
71672
71753
  }
71673
71754
  function ingest$l(astNode, state) {
71674
- const { path, data, luvio } = state;
71755
+ const { path, data, timestamp, luvio } = state;
71675
71756
  const key = keyBuilder$o(luvio, path);
71676
71757
  return ingestNonCursorConnectionType(astNode, state, {
71677
71758
  key,
@@ -71685,7 +71766,8 @@ function ingest$l(astNode, state) {
71685
71766
  ttl: TTL$1,
71686
71767
  namespace: keyPrefix$1,
71687
71768
  representationName: "TextAreaAggregate",
71688
- version: VERSION$s
71769
+ version: VERSION$s,
71770
+ ingestionTimestamp: timestamp,
71689
71771
  },
71690
71772
  });
71691
71773
  }
@@ -71916,7 +71998,7 @@ function mergeData$j(existingData, newData) {
71916
71998
  };
71917
71999
  }
71918
72000
  function ingest$k(astNode, state) {
71919
- const { path, data, luvio } = state;
72001
+ const { path, data, timestamp, luvio } = state;
71920
72002
  const key = keyBuilder$n(luvio, path);
71921
72003
  return ingestNonCursorConnectionType(astNode, state, {
71922
72004
  key,
@@ -71930,7 +72012,8 @@ function ingest$k(astNode, state) {
71930
72012
  ttl: TTL$1,
71931
72013
  namespace: keyPrefix$1,
71932
72014
  representationName: "TimeAggregate",
71933
- version: VERSION$r
72015
+ version: VERSION$r,
72016
+ ingestionTimestamp: timestamp,
71934
72017
  },
71935
72018
  });
71936
72019
  }
@@ -72105,7 +72188,7 @@ function mergeData$i(existingData, newData) {
72105
72188
  };
72106
72189
  }
72107
72190
  function ingest$j(astNode, state) {
72108
- const { path, data, luvio } = state;
72191
+ const { path, data, timestamp, luvio } = state;
72109
72192
  const key = keyBuilder$m(luvio, path);
72110
72193
  return ingestNonCursorConnectionType(astNode, state, {
72111
72194
  key,
@@ -72119,7 +72202,8 @@ function ingest$j(astNode, state) {
72119
72202
  ttl: TTL$1,
72120
72203
  namespace: keyPrefix$1,
72121
72204
  representationName: "UrlAggregate",
72122
- version: VERSION$q
72205
+ version: VERSION$q,
72206
+ ingestionTimestamp: timestamp,
72123
72207
  },
72124
72208
  });
72125
72209
  }
@@ -72473,7 +72557,7 @@ function mergeData$h(existingData, newData) {
72473
72557
  };
72474
72558
  }
72475
72559
  function ingest$i(astNode, state) {
72476
- const { path, data, luvio } = state;
72560
+ const { path, data, timestamp, luvio } = state;
72477
72561
  const key = keyBuilder$l(luvio, path);
72478
72562
  return ingestNonCursorConnectionType(astNode, state, {
72479
72563
  key,
@@ -72487,7 +72571,8 @@ function ingest$i(astNode, state) {
72487
72571
  ttl: TTL$1,
72488
72572
  namespace: keyPrefix$1,
72489
72573
  representationName: "RecordAggregate",
72490
- version: VERSION$p
72574
+ version: VERSION$p,
72575
+ ingestionTimestamp: timestamp,
72491
72576
  },
72492
72577
  });
72493
72578
  }
@@ -72841,7 +72926,7 @@ function mergeData$g(existingData, newData) {
72841
72926
  };
72842
72927
  }
72843
72928
  function ingest$h(astNode, state) {
72844
- const { path, data, luvio } = state;
72929
+ const { path, data, timestamp, luvio } = state;
72845
72930
  const key = keyBuilder$k(luvio, path);
72846
72931
  return ingestNonCursorConnectionType(astNode, state, {
72847
72932
  key,
@@ -72855,7 +72940,8 @@ function ingest$h(astNode, state) {
72855
72940
  ttl: TTL$1,
72856
72941
  namespace: keyPrefix$1,
72857
72942
  representationName: "RecordResult",
72858
- version: VERSION$o
72943
+ version: VERSION$o,
72944
+ ingestionTimestamp: timestamp,
72859
72945
  },
72860
72946
  });
72861
72947
  }
@@ -73003,7 +73089,7 @@ function mergeData$f(existingData, newData) {
73003
73089
  };
73004
73090
  }
73005
73091
  function ingest$g(astNode, state) {
73006
- const { path, data, luvio } = state;
73092
+ const { path, data, timestamp, luvio } = state;
73007
73093
  const key = keyBuilder$j(luvio, path);
73008
73094
  return ingestNonCursorConnectionType(astNode, state, {
73009
73095
  key,
@@ -73017,7 +73103,8 @@ function ingest$g(astNode, state) {
73017
73103
  ttl: TTL$1,
73018
73104
  namespace: keyPrefix$1,
73019
73105
  representationName: "RecordAggregateEdge",
73020
- version: VERSION$n
73106
+ version: VERSION$n,
73107
+ ingestionTimestamp: timestamp,
73021
73108
  },
73022
73109
  });
73023
73110
  }
@@ -73221,7 +73308,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
73221
73308
  }
73222
73309
  }
73223
73310
  function ingest$f(astNode, state) {
73224
- const { path, data, luvio } = state;
73311
+ const { path, data, timestamp, luvio } = state;
73225
73312
  const key = keyBuilder$i(luvio, path);
73226
73313
  return ingestCursorConnectionType(astNode, state, {
73227
73314
  key,
@@ -73237,7 +73324,8 @@ function ingest$f(astNode, state) {
73237
73324
  ttl: TTL$1,
73238
73325
  namespace: keyPrefix$1,
73239
73326
  representationName: "RecordAggregateConnection",
73240
- version: VERSION$m
73327
+ version: VERSION$m,
73328
+ ingestionTimestamp: timestamp,
73241
73329
  },
73242
73330
  });
73243
73331
  }
@@ -73454,7 +73542,7 @@ function mergeData$d(existingData, newData) {
73454
73542
  };
73455
73543
  }
73456
73544
  function ingest$e(astNode, state) {
73457
- const { path, data, luvio } = state;
73545
+ const { path, data, timestamp, luvio } = state;
73458
73546
  const key = keyBuilder$h(luvio, path);
73459
73547
  return ingestNonCursorConnectionType(astNode, state, {
73460
73548
  key,
@@ -73468,7 +73556,8 @@ function ingest$e(astNode, state) {
73468
73556
  ttl: TTL$1,
73469
73557
  namespace: keyPrefix$1,
73470
73558
  representationName: "RecordQueryAggregate",
73471
- version: VERSION$l
73559
+ version: VERSION$l,
73560
+ ingestionTimestamp: timestamp,
73472
73561
  },
73473
73562
  });
73474
73563
  }
@@ -73598,7 +73687,7 @@ function mergeData$c(existingData, newData) {
73598
73687
  };
73599
73688
  }
73600
73689
  function ingest$d(astNode, state) {
73601
- const { path, data, luvio } = state;
73690
+ const { path, data, timestamp, luvio } = state;
73602
73691
  const key = keyBuilder$g(luvio, path);
73603
73692
  return ingestNonCursorConnectionType(astNode, state, {
73604
73693
  key,
@@ -73612,7 +73701,8 @@ function ingest$d(astNode, state) {
73612
73701
  ttl: TTL$1,
73613
73702
  namespace: keyPrefix$1,
73614
73703
  representationName: "ChildRelationship",
73615
- version: VERSION$k
73704
+ version: VERSION$k,
73705
+ ingestionTimestamp: timestamp,
73616
73706
  },
73617
73707
  });
73618
73708
  }
@@ -73790,7 +73880,7 @@ function mergeData$b(existingData, newData) {
73790
73880
  };
73791
73881
  }
73792
73882
  function ingest$c(astNode, state) {
73793
- const { path, data, luvio } = state;
73883
+ const { path, data, timestamp, luvio } = state;
73794
73884
  const key = keyBuilder$f(luvio, path);
73795
73885
  return ingestNonCursorConnectionType(astNode, state, {
73796
73886
  key,
@@ -73804,7 +73894,8 @@ function ingest$c(astNode, state) {
73804
73894
  ttl: TTL$1,
73805
73895
  namespace: keyPrefix$1,
73806
73896
  representationName: "DependentField",
73807
- version: VERSION$j
73897
+ version: VERSION$j,
73898
+ ingestionTimestamp: timestamp,
73808
73899
  },
73809
73900
  });
73810
73901
  }
@@ -73929,7 +74020,7 @@ function mergeData$a(existingData, newData) {
73929
74020
  };
73930
74021
  }
73931
74022
  function ingest$b(astNode, state) {
73932
- const { path, data, luvio } = state;
74023
+ const { path, data, timestamp, luvio } = state;
73933
74024
  const key = keyBuilder$e(luvio, path);
73934
74025
  return ingestNonCursorConnectionType(astNode, state, {
73935
74026
  key,
@@ -73943,7 +74034,8 @@ function ingest$b(astNode, state) {
73943
74034
  ttl: TTL$1,
73944
74035
  namespace: keyPrefix$1,
73945
74036
  representationName: "FilteredLookupInfo",
73946
- version: VERSION$i
74037
+ version: VERSION$i,
74038
+ ingestionTimestamp: timestamp,
73947
74039
  },
73948
74040
  });
73949
74041
  }
@@ -74083,7 +74175,7 @@ function mergeData$9(existingData, newData) {
74083
74175
  };
74084
74176
  }
74085
74177
  function ingest$a(astNode, state) {
74086
- const { path, data, luvio } = state;
74178
+ const { path, data, timestamp, luvio } = state;
74087
74179
  const key = keyBuilder$d(luvio, path);
74088
74180
  return ingestNonCursorConnectionType(astNode, state, {
74089
74181
  key,
@@ -74097,7 +74189,8 @@ function ingest$a(astNode, state) {
74097
74189
  ttl: TTL$1,
74098
74190
  namespace: keyPrefix$1,
74099
74191
  representationName: "ReferenceToInfo",
74100
- version: VERSION$h
74192
+ version: VERSION$h,
74193
+ ingestionTimestamp: timestamp,
74101
74194
  },
74102
74195
  });
74103
74196
  }
@@ -74257,7 +74350,7 @@ function mergeData$8(existingData, newData) {
74257
74350
  };
74258
74351
  }
74259
74352
  function ingest$9(astNode, state) {
74260
- const { path, data, luvio } = state;
74353
+ const { path, data, timestamp, luvio } = state;
74261
74354
  const key = keyBuilder$c(luvio, path);
74262
74355
  return ingestNonCursorConnectionType(astNode, state, {
74263
74356
  key,
@@ -74271,7 +74364,8 @@ function ingest$9(astNode, state) {
74271
74364
  ttl: TTL$1,
74272
74365
  namespace: keyPrefix$1,
74273
74366
  representationName: "Field",
74274
- version: VERSION$g
74367
+ version: VERSION$g,
74368
+ ingestionTimestamp: timestamp,
74275
74369
  },
74276
74370
  });
74277
74371
  }
@@ -74649,7 +74743,7 @@ function mergeData$7(existingData, newData) {
74649
74743
  };
74650
74744
  }
74651
74745
  function ingest$8(astNode, state) {
74652
- const { path, data, luvio } = state;
74746
+ const { path, data, timestamp, luvio } = state;
74653
74747
  const key = keyBuilder$b(luvio, path);
74654
74748
  return ingestNonCursorConnectionType(astNode, state, {
74655
74749
  key,
@@ -74663,7 +74757,8 @@ function ingest$8(astNode, state) {
74663
74757
  ttl: TTL$1,
74664
74758
  namespace: keyPrefix$1,
74665
74759
  representationName: "RecordTypeInfo",
74666
- version: VERSION$f
74760
+ version: VERSION$f,
74761
+ ingestionTimestamp: timestamp,
74667
74762
  },
74668
74763
  });
74669
74764
  }
@@ -74824,7 +74919,7 @@ function mergeData$6(existingData, newData) {
74824
74919
  };
74825
74920
  }
74826
74921
  function ingest$7(astNode, state) {
74827
- const { path, data, luvio } = state;
74922
+ const { path, data, timestamp, luvio } = state;
74828
74923
  const key = keyBuilder$a(luvio, path);
74829
74924
  return ingestNonCursorConnectionType(astNode, state, {
74830
74925
  key,
@@ -74838,7 +74933,8 @@ function ingest$7(astNode, state) {
74838
74933
  ttl: TTL$1,
74839
74934
  namespace: keyPrefix$1,
74840
74935
  representationName: "ThemeInfo",
74841
- version: VERSION$e
74936
+ version: VERSION$e,
74937
+ ingestionTimestamp: timestamp,
74842
74938
  },
74843
74939
  });
74844
74940
  }
@@ -74964,7 +75060,7 @@ function mergeData$5(existingData, newData) {
74964
75060
  };
74965
75061
  }
74966
75062
  function ingest$6(astNode, state) {
74967
- const { path, data, luvio } = state;
75063
+ const { path, data, timestamp, luvio } = state;
74968
75064
  const key = keyBuilder$9(luvio, path);
74969
75065
  return ingestNonCursorConnectionType(astNode, state, {
74970
75066
  key,
@@ -74978,7 +75074,8 @@ function ingest$6(astNode, state) {
74978
75074
  ttl: TTL$3,
74979
75075
  namespace: keyPrefix$1,
74980
75076
  representationName: "ObjectInfo",
74981
- version: VERSION$d
75077
+ version: VERSION$d,
75078
+ ingestionTimestamp: timestamp,
74982
75079
  },
74983
75080
  });
74984
75081
  }
@@ -75368,7 +75465,7 @@ function mergeData$4(existingData, newData) {
75368
75465
  };
75369
75466
  }
75370
75467
  function ingest$5(astNode, state) {
75371
- const { path, data, luvio } = state;
75468
+ const { path, data, timestamp, luvio } = state;
75372
75469
  const key = keyBuilder$8(luvio, path);
75373
75470
  return ingestNonCursorConnectionType(astNode, state, {
75374
75471
  key,
@@ -75382,7 +75479,8 @@ function ingest$5(astNode, state) {
75382
75479
  ttl: TTL$1,
75383
75480
  namespace: keyPrefix$1,
75384
75481
  representationName: "ListColumn",
75385
- version: VERSION$c
75482
+ version: VERSION$c,
75483
+ ingestionTimestamp: timestamp,
75386
75484
  },
75387
75485
  });
75388
75486
  }
@@ -75528,7 +75626,7 @@ function mergeData$3(existingData, newData) {
75528
75626
  };
75529
75627
  }
75530
75628
  function ingest$4(astNode, state) {
75531
- const { path, data, luvio } = state;
75629
+ const { path, data, timestamp, luvio } = state;
75532
75630
  const key = keyBuilder$7(luvio, path);
75533
75631
  return ingestNonCursorConnectionType(astNode, state, {
75534
75632
  key,
@@ -75542,7 +75640,8 @@ function ingest$4(astNode, state) {
75542
75640
  ttl: TTL$1,
75543
75641
  namespace: keyPrefix$1,
75544
75642
  representationName: "ListOrder",
75545
- version: VERSION$b
75643
+ version: VERSION$b,
75644
+ ingestionTimestamp: timestamp,
75546
75645
  },
75547
75646
  });
75548
75647
  }
@@ -75677,7 +75776,7 @@ function mergeData$2(existingData, newData) {
75677
75776
  };
75678
75777
  }
75679
75778
  function ingest$3(astNode, state) {
75680
- const { path, data, luvio } = state;
75779
+ const { path, data, timestamp, luvio } = state;
75681
75780
  const key = keyBuilder$6(luvio, path);
75682
75781
  return ingestNonCursorConnectionType(astNode, state, {
75683
75782
  key,
@@ -75691,7 +75790,8 @@ function ingest$3(astNode, state) {
75691
75790
  ttl: TTL$2,
75692
75791
  namespace: keyPrefix$1,
75693
75792
  representationName: "RelatedListInfo",
75694
- version: VERSION$a
75793
+ version: VERSION$a,
75794
+ ingestionTimestamp: timestamp,
75695
75795
  },
75696
75796
  });
75697
75797
  }
@@ -75913,7 +76013,7 @@ function mergeData$1(existingData, newData) {
75913
76013
  };
75914
76014
  }
75915
76015
  function ingest$2(astNode, state) {
75916
- const { path, data, luvio } = state;
76016
+ const { path, data, timestamp, luvio } = state;
75917
76017
  const key = keyBuilder$5(luvio, path);
75918
76018
  return ingestNonCursorConnectionType(astNode, state, {
75919
76019
  key,
@@ -75927,7 +76027,8 @@ function ingest$2(astNode, state) {
75927
76027
  ttl: TTL$1,
75928
76028
  namespace: keyPrefix$1,
75929
76029
  representationName: "UIAPI",
75930
- version: VERSION$9
76030
+ version: VERSION$9,
76031
+ ingestionTimestamp: timestamp,
75931
76032
  },
75932
76033
  });
75933
76034
  }
@@ -76151,7 +76252,7 @@ function mergeData(existingData, newData) {
76151
76252
  };
76152
76253
  }
76153
76254
  function ingest$1(astNode, state) {
76154
- const { path, data, luvio } = state;
76255
+ const { path, data, timestamp, luvio } = state;
76155
76256
  const key = keyBuilder$4(luvio, astNode, state.variables, state.fragments);
76156
76257
  return ingestNonCursorConnectionType(astNode, state, {
76157
76258
  key,
@@ -76165,7 +76266,8 @@ function ingest$1(astNode, state) {
76165
76266
  ttl: TTL$1,
76166
76267
  namespace: keyPrefix$1,
76167
76268
  representationName: "Query",
76168
- version: VERSION$8
76269
+ version: VERSION$8,
76270
+ ingestionTimestamp: timestamp,
76169
76271
  },
76170
76272
  });
76171
76273
  }
@@ -79348,7 +79450,7 @@ register$1({
79348
79450
  configuration: { ...configurationForGraphQLAdapters$1 },
79349
79451
  instrument: instrument$1,
79350
79452
  });
79351
- // version: 1.266.0-dev1-0affa7d84
79453
+ // version: 1.266.0-dev10-3275d4bf8
79352
79454
 
79353
79455
  // On core the unstable adapters are re-exported with different names,
79354
79456
  // we want to match them here.
@@ -79999,6 +80101,7 @@ function genericCreateIngest(ast, variables) {
79999
80101
  namespace: namespace,
80000
80102
  ttl: DEFAULT_GRAPHQL_TTL,
80001
80103
  version: GRAPHQL_INGEST_VERSION,
80104
+ ingestionTimestamp: timestamp,
80002
80105
  });
80003
80106
  }
80004
80107
  return {
@@ -80094,6 +80197,7 @@ function ingestConnectionEdges(sel, data, path, luvio, store, timestamp, variabl
80094
80197
  namespace: namespace,
80095
80198
  ttl: DEFAULT_GRAPHQL_TTL,
80096
80199
  version: GRAPHQL_INGEST_VERSION,
80200
+ ingestionTimestamp: timestamp,
80097
80201
  });
80098
80202
  return {
80099
80203
  __ref: key,
@@ -80134,6 +80238,7 @@ const createIngest$1 = (ast, key, variables) => {
80134
80238
  namespace: namespace,
80135
80239
  ttl: DEFAULT_GRAPHQL_TTL,
80136
80240
  version: GRAPHQL_INGEST_VERSION,
80241
+ ingestionTimestamp: timestamp,
80137
80242
  });
80138
80243
  return {
80139
80244
  __ref: key,
@@ -81599,7 +81704,7 @@ withDefaultLuvio((luvio) => {
81599
81704
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
81600
81705
  graphQLImperative = ldsAdapter;
81601
81706
  });
81602
- // version: 1.266.0-dev1-0affa7d84
81707
+ // version: 1.266.0-dev10-3275d4bf8
81603
81708
 
81604
81709
  var gqlApi = /*#__PURE__*/Object.freeze({
81605
81710
  __proto__: null,
@@ -82297,7 +82402,7 @@ const callbacks$1 = [];
82297
82402
  function register(r) {
82298
82403
  callbacks$1.forEach((callback) => callback(r));
82299
82404
  }
82300
- // version: 1.266.0-dev1-7286a1163
82405
+ // version: 1.266.0-dev10-ff398791a
82301
82406
 
82302
82407
  /**
82303
82408
  * Returns true if the value acts like a Promise, i.e. has a "then" function,
@@ -87202,4 +87307,4 @@ const { luvio } = getRuntime();
87202
87307
  setDefaultLuvio({ luvio });
87203
87308
 
87204
87309
  export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
87205
- // version: 1.266.0-dev1-7286a1163
87310
+ // version: 1.266.0-dev10-ff398791a