@salesforce/lds-worker-api 1.271.0 → 1.273.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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.9-68ce3623
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.271.0-b5964d6f9
4147
+ // version: 1.273.0-f97941e01
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.271.0-b5964d6f9
15655
+ // version: 1.273.0-f97941e01
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.271.0-b5964d6f9
16580
+ // version: 1.273.0-f97941e01
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.9-68ce3623
16676
16680
 
16677
16681
  const { keys: ObjectKeys$3, create: ObjectCreate$3 } = Object;
16678
16682
 
@@ -17758,7 +17762,7 @@ function getTypeCacheKeys$W$1(rootKeySet, luvio, input, fullPathFactory) {
17758
17762
  getTypeCacheKeys$X$1(rootKeySet, luvio, input.displayColumns[i], () => '');
17759
17763
  }
17760
17764
  }
17761
- const notifyUpdateAvailableFactory$4 = (luvio) => {
17765
+ const notifyUpdateAvailableFactory$5 = (luvio) => {
17762
17766
  return function notifyListInfoUpdateAvailable(configs) {
17763
17767
  const keys = configs.map(c => keyBuilder$21(luvio, c));
17764
17768
  return luvio.notifyStoreUpdateAvailable(keys);
@@ -18371,7 +18375,7 @@ function getTypeCacheKeys$S$1(rootKeySet, luvio, input, fullPathFactory) {
18371
18375
  getTypeCacheKeys$V$1(rootKeySet, luvio, input_fields[key], () => rootKey + "__fields" + "__" + key);
18372
18376
  }
18373
18377
  }
18374
- const notifyUpdateAvailableFactory$3 = (luvio) => {
18378
+ const notifyUpdateAvailableFactory$4 = (luvio) => {
18375
18379
  return function notifyRecordUpdateAvailable(configs) {
18376
18380
  const keys = configs.map(c => keyBuilder$20(luvio, c));
18377
18381
  return luvio.notifyStoreUpdateAvailable(keys);
@@ -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
  };
@@ -21992,6 +21997,7 @@ const ingest$K$1 = function ListRecordCollectionRepresentationIngest(input, path
21992
21997
  namespace: "UiApi",
21993
21998
  version: VERSION$16$1,
21994
21999
  representationName: RepresentationType$R,
22000
+ ingestionTimestamp: timestamp,
21995
22001
  };
21996
22002
  luvio.publishStoreMetadata(key, storeMetadataParams);
21997
22003
  }
@@ -22015,6 +22021,12 @@ function getTypeCacheKeys$R$1(rootKeySet, luvio, input, fullPathFactory) {
22015
22021
  getTypeCacheKeys$U$1(rootKeySet, luvio, input.records[i]);
22016
22022
  }
22017
22023
  }
22024
+ const notifyUpdateAvailableFactory$3 = (luvio) => {
22025
+ return function notifyListRecordCollectionUpdateAvailable(configs) {
22026
+ const keys = configs.map(c => keyBuilder$1Z(luvio, c));
22027
+ return luvio.notifyStoreUpdateAvailable(keys);
22028
+ };
22029
+ };
22018
22030
 
22019
22031
  const VERSION$15$1 = "cf8d2eb042188974da26ffe6618cfd07";
22020
22032
  const RepresentationType$Q = 'ListUiRepresentation';
@@ -22961,6 +22973,7 @@ const ingest$H$1 = function ListViewSummaryCollectionRepresentationIngest(input,
22961
22973
  namespace: "UiApi",
22962
22974
  version: VERSION$13$1,
22963
22975
  representationName: RepresentationType$O,
22976
+ ingestionTimestamp: timestamp,
22964
22977
  };
22965
22978
  luvio.publishStoreMetadata(key, storeMetadataParams);
22966
22979
  }
@@ -25341,9 +25354,24 @@ function getFieldsFromLayoutMap(layoutMap, objectInfo) {
25341
25354
  }
25342
25355
  return dedupe$2(fields).sort();
25343
25356
  }
25357
+ /**
25358
+ * W-14696113
25359
+ * Merge fields into optionalFields and return the whole list.
25360
+ * @param {string[]} fields
25361
+ * @param {string[]} [optionalFields]
25362
+ */
25363
+ function convertToImplicitFields(fields, optionalFields) {
25364
+ const implicitFields = optionalFields || [];
25365
+ fields.forEach((field) => {
25366
+ if (!(field in implicitFields))
25367
+ implicitFields.push(field);
25368
+ });
25369
+ return implicitFields;
25370
+ }
25344
25371
  function getRecordForLayoutableEntities(luvio, refresh, recordId, layoutMap, objectInfo, configOptionalFields) {
25345
25372
  const fields = getFieldsFromLayoutMap(layoutMap, objectInfo);
25346
- return getRecord$1(luvio, refresh, recordId, fields, configOptionalFields);
25373
+ const implicitFields = convertToImplicitFields(fields, configOptionalFields);
25374
+ return getRecord$1(luvio, refresh, recordId, [], implicitFields);
25347
25375
  }
25348
25376
  function getRecordForNonLayoutableEntities(luvio, adapterContext, refresh, recordId, objectInfo, configOptionalFields, configFields) {
25349
25377
  const fields = keys$a(configFields ? configFields : {}).map((key) => `${objectInfo.apiName}.${key}`);
@@ -25758,7 +25786,7 @@ const factory$f = (luvio) => {
25758
25786
 
25759
25787
  const notifyUpdateAvailableFactory$1 = (luvio) => {
25760
25788
  return function notifyListInfoUpdateAvailable(configs) {
25761
- const generated_notifyUpdateAvailable = notifyUpdateAvailableFactory$4(luvio);
25789
+ const generated_notifyUpdateAvailable = notifyUpdateAvailableFactory$5(luvio);
25762
25790
  // Taken from getUiApiListInfoByListViewApiNameAndObjectApiName/keyBuilder artifact
25763
25791
  // We automatically set the type based on the listViewApiName, and we need to do the same
25764
25792
  // here for key matching and validation
@@ -27579,7 +27607,10 @@ const dynamicIngest$4 = (ingestParams) => {
27579
27607
  if (existingRecord === undefined || equals$N(existingRecord, incomingRecord) === false) {
27580
27608
  luvio.storePublish(key, incomingRecord);
27581
27609
  }
27582
- luvio.publishStoreMetadata(key, QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS);
27610
+ luvio.publishStoreMetadata(key, {
27611
+ ...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
27612
+ ingestionTimestamp: timestamp,
27613
+ });
27583
27614
  return createLink$3(key);
27584
27615
  };
27585
27616
  };
@@ -37385,6 +37416,7 @@ const ingest$8$1 = function RelatedListRecordCollectionRepresentationIngest(inpu
37385
37416
  namespace: "UiApi",
37386
37417
  version: VERSION$c$1,
37387
37418
  representationName: RepresentationType$d,
37419
+ ingestionTimestamp: timestamp,
37388
37420
  };
37389
37421
  luvio.publishStoreMetadata(key, storeMetadataParams);
37390
37422
  }
@@ -42856,7 +42888,7 @@ function bindExportsTo$1(luvio) {
42856
42888
  const getRelatedListRecordActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListRecordActions', getRelatedListRecordActionsAdapterFactory), getRelatedListRecordActionsMetadata);
42857
42889
  const getRelatedListRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListRecords', getRelatedListRecordsAdapterFactory), getRelatedListRecordsMetadata);
42858
42890
  const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListRecordsBatch', getRelatedListRecordsBatchAdapterFactory), getRelatedListRecordsBatchMetadata);
42859
- const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsActions', getRelatedListsActionsAdapterFactory), getRelatedListsActionsMetadata);
42891
+ const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsActions', getRelatedListsActionsAdapterFactory), luvio, 'getRelatedListsActions'), getRelatedListsActionsMetadata);
42860
42892
  const getRelatedListsCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsCount', getRelatedListsCountAdapterFactory), getRelatedListsCountMetadata);
42861
42893
  const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsInfo', getRelatedListsInfoAdapterFactory), getRelatedListsInfoMetadata);
42862
42894
  const getSearchFilterMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterMetadata', getSearchFilterMetadataAdapterFactory), getSearchFilterMetadataMetadata);
@@ -43135,15 +43167,16 @@ withDefaultLuvio((luvio) => {
43135
43167
  allowFunction: instrumentation$3.getRecordNotifyChangeAllowed,
43136
43168
  dropFunction: instrumentation$3.getRecordNotifyChangeDropped,
43137
43169
  });
43138
- throttle(60, 60000, createLDSAdapter(luvio, 'notifyRecordUpdateAvailable', notifyUpdateAvailableFactory$3), {
43170
+ throttle(60, 60000, createLDSAdapter(luvio, 'notifyRecordUpdateAvailable', notifyUpdateAvailableFactory$4), {
43139
43171
  allowFunction: instrumentation$3.notifyRecordUpdateAvailableAllowed,
43140
43172
  dropFunction: instrumentation$3.notifyRecordUpdateAvailableDropped,
43141
43173
  });
43142
43174
  throttle(60, 60000, createLDSAdapter(luvio, 'notifyListViewSummaryUpdateAvailable', notifyUpdateAvailableFactory$2));
43143
43175
  throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory$1));
43176
+ throttle(60, 60000, createLDSAdapter(luvio, 'notifyListRecordCollectionUpdateAvailable', notifyUpdateAvailableFactory$3));
43144
43177
  throttle(60, 60000, createLDSAdapter(luvio, 'notifyQuickActionDefaultsUpdateAvailable', notifyUpdateAvailableFactory));
43145
43178
  });
43146
- // version: 1.271.0-c2f810db8
43179
+ // version: 1.273.0-daa4f720d
43147
43180
 
43148
43181
  var ldsIdempotencyWriteDisabled = {
43149
43182
  isOpen: function (e) {
@@ -44053,7 +44086,7 @@ class DurableTTLStore {
44053
44086
  }
44054
44087
  }
44055
44088
 
44056
- function flushInMemoryStoreValuesToDurableStore(store, durableStore, durableStoreErrorHandler, redirects, additionalDurableStoreOperations = [], enableDurableMetadataRefresh = false) {
44089
+ function flushInMemoryStoreValuesToDurableStore(store, durableStore, crossEnvironmentNotifier, durableStoreErrorHandler, redirects, additionalDurableStoreOperations = [], enableDurableMetadataRefresh = false) {
44057
44090
  const durableRecords = create$6(null);
44058
44091
  const refreshedDurableRecords = create$6(null);
44059
44092
  const evictedRecords = create$6(null);
@@ -44100,6 +44133,14 @@ function flushInMemoryStoreValuesToDurableStore(store, durableStore, durableStor
44100
44133
  entries: refreshedDurableRecords,
44101
44134
  segment: DefaultDurableSegment,
44102
44135
  });
44136
+ if (crossEnvironmentNotifier !== undefined) {
44137
+ crossEnvironmentNotifier.notifyCrossEnvironments({
44138
+ data: {
44139
+ refreshedDurableRecords,
44140
+ },
44141
+ type: 'Update',
44142
+ });
44143
+ }
44103
44144
  }
44104
44145
  // redirects
44105
44146
  redirects.forEach((value, key) => {
@@ -44431,6 +44472,15 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
44431
44472
  }
44432
44473
  }
44433
44474
  });
44475
+ let notifier;
44476
+ const getCrossEnvironmentNotifier = function () {
44477
+ validateNotDisposed();
44478
+ return notifier;
44479
+ };
44480
+ const setCrossEnvironmentNotifier = function (crossEnvironmentNotifier) {
44481
+ validateNotDisposed();
44482
+ notifier = crossEnvironmentNotifier;
44483
+ };
44434
44484
  const dispose = function () {
44435
44485
  validateNotDisposed();
44436
44486
  disposed = true;
@@ -44483,7 +44533,7 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
44483
44533
  if (stagingStore === null) {
44484
44534
  return Promise.resolve();
44485
44535
  }
44486
- const promise = flushInMemoryStoreValuesToDurableStore(stagingStore, durableStore, durableStoreErrorHandler, new Map(pendingStoreRedirects), additionalDurableStoreOperations, enableDurableMetadataRefresh);
44536
+ const promise = flushInMemoryStoreValuesToDurableStore(stagingStore, durableStore, getCrossEnvironmentNotifier(), durableStoreErrorHandler, new Map(pendingStoreRedirects), additionalDurableStoreOperations, enableDurableMetadataRefresh);
44487
44537
  pendingStoreRedirects.clear();
44488
44538
  stagingStore = null;
44489
44539
  return promise;
@@ -44652,6 +44702,10 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
44652
44702
  }
44653
44703
  return {};
44654
44704
  };
44705
+ const getIngestStagingStore = function () {
44706
+ validateNotDisposed();
44707
+ return stagingStore === null || stagingStore === void 0 ? void 0 : stagingStore.fallbackStringKeyInMemoryStore;
44708
+ };
44655
44709
  const handleSuccessResponse = async function (ingestAndBroadcastFunc, getResponseCacheKeysFunc) {
44656
44710
  validateNotDisposed();
44657
44711
  const cacheKeyMap = getResponseCacheKeysFunc();
@@ -44844,10 +44898,13 @@ function makeDurable(environment, { durableStore, instrumentation, useRevivingSt
44844
44898
  applyCachePolicy: { value: applyCachePolicy },
44845
44899
  getIngestStagingStoreRecords: { value: getIngestStagingStoreRecords },
44846
44900
  getIngestStagingStoreMetadata: { value: getIngestStagingStoreMetadata },
44901
+ getIngestStagingStore: { value: getIngestStagingStore },
44847
44902
  handleSuccessResponse: { value: handleSuccessResponse },
44848
44903
  handleErrorResponse: { value: handleErrorResponse },
44849
44904
  getNotifyChangeStoreEntries: { value: getNotifyChangeStoreEntries },
44850
44905
  notifyStoreUpdateAvailable: { value: notifyStoreUpdateAvailable },
44906
+ getCrossEnvironmentNotifier: { value: getCrossEnvironmentNotifier },
44907
+ setCrossEnvironmentNotifier: { value: setCrossEnvironmentNotifier },
44851
44908
  });
44852
44909
  }
44853
44910
 
@@ -54903,7 +54960,7 @@ function createUserJsonOutput(selection, jsonInput, jsonOutput) {
54903
54960
  function createjsonOutput(selections, jsonInput, jsonOutput) {
54904
54961
  const keys$1 = keys$4(jsonInput);
54905
54962
  selections.filter(isFieldNode).forEach((subSelection) => {
54906
- const fieldName = subSelection.name.value;
54963
+ const fieldName = subSelection.alias ? subSelection.alias.value : subSelection.name.value;
54907
54964
  if (keys$1.includes(fieldName)) {
54908
54965
  if (isArray$2$1(jsonInput[fieldName])) {
54909
54966
  jsonOutput[fieldName] = [];
@@ -56219,7 +56276,7 @@ function normalizeRecordFields(key, entry) {
56219
56276
  * @param normalizedRecord Record containing normalized field links
56220
56277
  * @param recordStore a store containing referenced record fields
56221
56278
  */
56222
- function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries) {
56279
+ function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntries, store) {
56223
56280
  const fields = normalizedRecord.fields;
56224
56281
  const filteredFields = {};
56225
56282
  const links = {};
@@ -56246,6 +56303,19 @@ function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntr
56246
56303
  if (ref !== undefined) {
56247
56304
  filteredFields[fieldName] = ref;
56248
56305
  }
56306
+ else {
56307
+ // if we have a store to read, try to find the field there too
56308
+ // The durable ingest staging store may pass through to L1, and
56309
+ // not all fields are necessarily published every time, so it is
56310
+ // important to check L1 and not just the fields being published,
56311
+ // otherwise we risk truncating the fields on the record.
56312
+ if (store) {
56313
+ ref = store.readEntry(__ref);
56314
+ if (ref !== undefined) {
56315
+ filteredFields[fieldName] = ref;
56316
+ }
56317
+ }
56318
+ }
56249
56319
  }
56250
56320
  // we want to preserve fields that are missing nodes
56251
56321
  if (filteredFields[fieldName] !== undefined || field.isMissing === true) {
@@ -56267,7 +56337,7 @@ function getDenormalizedKey(originalKey, recordId, luvio) {
56267
56337
  }
56268
56338
  return keyBuilder$20(luvio, { recordId });
56269
56339
  }
56270
- function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata) {
56340
+ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecords, getStoreMetadata, getStore) {
56271
56341
  const getEntries = function (entries, segment) {
56272
56342
  // this HOF only inspects records in the default segment
56273
56343
  if (segment !== DefaultDurableSegment) {
@@ -56335,6 +56405,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
56335
56405
  const putRecordViews = {};
56336
56406
  const storeRecords = getStoreRecords !== undefined ? getStoreRecords() : {};
56337
56407
  const storeMetadata = getStoreMetadata !== undefined ? getStoreMetadata() : {};
56408
+ const store = getStore();
56338
56409
  for (let i = 0, len = keys$1.length; i < len; i++) {
56339
56410
  const key = keys$1[i];
56340
56411
  let value = entries[key];
@@ -56381,7 +56452,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
56381
56452
  metadataVersion: DURABLE_METADATA_VERSION,
56382
56453
  };
56383
56454
  }
56384
- const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries);
56455
+ const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries, store);
56385
56456
  putEntries[recordKey] = {
56386
56457
  data: denormalizedRecord,
56387
56458
  metadata,
@@ -60913,22 +60984,25 @@ function getRuntime() {
60913
60984
  const internalAdapterStore = new InMemoryStore();
60914
60985
  let getIngestRecordsForInternalAdapters;
60915
60986
  let getIngestMetadataForInternalAdapters;
60987
+ let getIngestStoreInternal;
60916
60988
  const internalAdapterDurableStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => getIngestRecordsForInternalAdapters !== undefined
60917
60989
  ? getIngestRecordsForInternalAdapters()
60918
60990
  : {}, () => getIngestMetadataForInternalAdapters !== undefined
60919
60991
  ? getIngestMetadataForInternalAdapters()
60920
- : {});
60992
+ : {}, () => (getIngestStoreInternal !== undefined ? getIngestStoreInternal() : undefined));
60921
60993
  const { adapters: { getObjectInfo, getObjectInfos, getRecord, getObjectInfoDirectory }, durableEnvironment: internalAdapterDurableEnvironment, luvio: internalLuvio, } = buildInternalAdapters(internalAdapterStore, lazyNetworkAdapter, internalAdapterDurableStore, (apiName, objectInfo) => lazyObjectInfoService.ensureObjectInfoCached(apiName, objectInfo));
60922
60994
  lazyInternalLuvio = internalLuvio;
60923
60995
  getIngestRecordsForInternalAdapters =
60924
60996
  internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
60925
60997
  getIngestMetadataForInternalAdapters =
60926
60998
  internalAdapterDurableEnvironment.getIngestStagingStoreRecords;
60999
+ getIngestStoreInternal = internalAdapterDurableEnvironment.getIngestStagingStore;
60927
61000
  lazyObjectInfoService = new ObjectInfoService(getObjectInfo, getObjectInfos, getObjectInfoDirectory, lazyBaseDurableStore);
60928
61001
  // creates a durable store that denormalizes scalar fields for records
60929
61002
  let getIngestRecords;
60930
61003
  let getIngestMetadata;
60931
- const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}));
61004
+ let getIngestStore;
61005
+ const recordDenormingStore = makeRecordDenormalizingDurableStore(lazyLuvio, lazyBaseDurableStore, () => (getIngestRecords !== undefined ? getIngestRecords() : {}), () => (getIngestMetadata !== undefined ? getIngestMetadata() : {}), () => (getIngestStore !== undefined ? getIngestStore() : undefined));
60932
61006
  const baseEnv = new Environment(store, lazyNetworkAdapter);
60933
61007
  const gqlEnv = makeEnvironmentGraphqlAware(baseEnv);
60934
61008
  const durableEnv = makeDurable(gqlEnv, {
@@ -60937,6 +61011,7 @@ function getRuntime() {
60937
61011
  });
60938
61012
  getIngestRecords = durableEnv.getIngestStagingStoreRecords;
60939
61013
  getIngestMetadata = durableEnv.getIngestStagingStoreMetadata;
61014
+ getIngestStore = durableEnv.getIngestStagingStore;
60940
61015
  // draft queue
60941
61016
  lazyDraftQueue = buildLdsDraftQueue(recordDenormingStore);
60942
61017
  const draftService = new UiApiDraftRecordService(lazyDraftQueue, () => lazyLuvio, recordDenormingStore, getObjectInfo, newRecordId, userId, formatDisplayValue);
@@ -61033,7 +61108,7 @@ register$1({
61033
61108
  id: '@salesforce/lds-network-adapter',
61034
61109
  instrument: instrument$2,
61035
61110
  });
61036
- // version: 1.271.0-b5964d6f9
61111
+ // version: 1.273.0-f97941e01
61037
61112
 
61038
61113
  const { create: create$3, keys: keys$3 } = Object;
61039
61114
  const { stringify: stringify$1, parse: parse$1 } = JSON;
@@ -61810,7 +61885,7 @@ function mergeData$11(existingData, newData) {
61810
61885
  };
61811
61886
  }
61812
61887
  function ingest$13(astNode, state) {
61813
- const { path, data, luvio } = state;
61888
+ const { path, data, timestamp, luvio } = state;
61814
61889
  const key = keyBuilder$16(luvio, path);
61815
61890
  return ingestNonCursorConnectionType(astNode, state, {
61816
61891
  key,
@@ -61824,7 +61899,8 @@ function ingest$13(astNode, state) {
61824
61899
  ttl: TTL$1,
61825
61900
  namespace: keyPrefix$1,
61826
61901
  representationName: "DoubleValue",
61827
- version: VERSION$1c
61902
+ version: VERSION$1c,
61903
+ ingestionTimestamp: timestamp,
61828
61904
  },
61829
61905
  });
61830
61906
  }
@@ -61952,7 +62028,7 @@ function mergeData$10(existingData, newData) {
61952
62028
  };
61953
62029
  }
61954
62030
  function ingest$12(astNode, state) {
61955
- const { path, data, luvio } = state;
62031
+ const { path, data, timestamp, luvio } = state;
61956
62032
  const key = keyBuilder$15(luvio, path);
61957
62033
  return ingestNonCursorConnectionType(astNode, state, {
61958
62034
  key,
@@ -61966,7 +62042,8 @@ function ingest$12(astNode, state) {
61966
62042
  ttl: TTL$1,
61967
62043
  namespace: keyPrefix$1,
61968
62044
  representationName: "LongValue",
61969
- version: VERSION$1b
62045
+ version: VERSION$1b,
62046
+ ingestionTimestamp: timestamp,
61970
62047
  },
61971
62048
  });
61972
62049
  }
@@ -62094,7 +62171,7 @@ function mergeData$$(existingData, newData) {
62094
62171
  };
62095
62172
  }
62096
62173
  function ingest$11(astNode, state) {
62097
- const { path, data, luvio } = state;
62174
+ const { path, data, timestamp, luvio } = state;
62098
62175
  const key = keyBuilder$14(luvio, path);
62099
62176
  return ingestNonCursorConnectionType(astNode, state, {
62100
62177
  key,
@@ -62108,7 +62185,8 @@ function ingest$11(astNode, state) {
62108
62185
  ttl: TTL$1,
62109
62186
  namespace: keyPrefix$1,
62110
62187
  representationName: "PercentValue",
62111
- version: VERSION$1a
62188
+ version: VERSION$1a,
62189
+ ingestionTimestamp: timestamp,
62112
62190
  },
62113
62191
  });
62114
62192
  }
@@ -62236,7 +62314,7 @@ function mergeData$_(existingData, newData) {
62236
62314
  };
62237
62315
  }
62238
62316
  function ingest$10(astNode, state) {
62239
- const { path, data, luvio } = state;
62317
+ const { path, data, timestamp, luvio } = state;
62240
62318
  const key = keyBuilder$13(luvio, path);
62241
62319
  return ingestNonCursorConnectionType(astNode, state, {
62242
62320
  key,
@@ -62250,7 +62328,8 @@ function ingest$10(astNode, state) {
62250
62328
  ttl: TTL$1,
62251
62329
  namespace: keyPrefix$1,
62252
62330
  representationName: "PercentAggregate",
62253
- version: VERSION$19
62331
+ version: VERSION$19,
62332
+ ingestionTimestamp: timestamp,
62254
62333
  },
62255
62334
  });
62256
62335
  }
@@ -62498,7 +62577,7 @@ function mergeData$Z(existingData, newData) {
62498
62577
  };
62499
62578
  }
62500
62579
  function ingest$$(astNode, state) {
62501
- const { path, data, luvio } = state;
62580
+ const { path, data, timestamp, luvio } = state;
62502
62581
  const key = keyBuilder$12(luvio, path);
62503
62582
  return ingestNonCursorConnectionType(astNode, state, {
62504
62583
  key,
@@ -62512,7 +62591,8 @@ function ingest$$(astNode, state) {
62512
62591
  ttl: TTL$1,
62513
62592
  namespace: keyPrefix$1,
62514
62593
  representationName: "IntValue",
62515
- version: VERSION$18
62594
+ version: VERSION$18,
62595
+ ingestionTimestamp: timestamp,
62516
62596
  },
62517
62597
  });
62518
62598
  }
@@ -62640,7 +62720,7 @@ function mergeData$Y(existingData, newData) {
62640
62720
  };
62641
62721
  }
62642
62722
  function ingest$_(astNode, state) {
62643
- const { path, data, luvio } = state;
62723
+ const { path, data, timestamp, luvio } = state;
62644
62724
  const key = keyBuilder$11(luvio, path);
62645
62725
  return ingestNonCursorConnectionType(astNode, state, {
62646
62726
  key,
@@ -62654,7 +62734,8 @@ function ingest$_(astNode, state) {
62654
62734
  ttl: TTL$1,
62655
62735
  namespace: keyPrefix$1,
62656
62736
  representationName: "StringValue",
62657
- version: VERSION$17
62737
+ version: VERSION$17,
62738
+ ingestionTimestamp: timestamp,
62658
62739
  },
62659
62740
  });
62660
62741
  }
@@ -62773,7 +62854,7 @@ function mergeData$X(existingData, newData) {
62773
62854
  };
62774
62855
  }
62775
62856
  function ingest$Z(astNode, state) {
62776
- const { path, data, luvio } = state;
62857
+ const { path, data, timestamp, luvio } = state;
62777
62858
  const key = keyBuilder$10(luvio, path);
62778
62859
  return ingestNonCursorConnectionType(astNode, state, {
62779
62860
  key,
@@ -62787,7 +62868,8 @@ function ingest$Z(astNode, state) {
62787
62868
  ttl: TTL$1,
62788
62869
  namespace: keyPrefix$1,
62789
62870
  representationName: "StringAggregate",
62790
- version: VERSION$16
62871
+ version: VERSION$16,
62872
+ ingestionTimestamp: timestamp,
62791
62873
  },
62792
62874
  });
62793
62875
  }
@@ -63015,7 +63097,7 @@ function mergeData$W(existingData, newData) {
63015
63097
  };
63016
63098
  }
63017
63099
  function ingest$Y(astNode, state) {
63018
- const { path, data, luvio } = state;
63100
+ const { path, data, timestamp, luvio } = state;
63019
63101
  const key = keyBuilder$$(luvio, path);
63020
63102
  return ingestNonCursorConnectionType(astNode, state, {
63021
63103
  key,
@@ -63029,7 +63111,8 @@ function ingest$Y(astNode, state) {
63029
63111
  ttl: TTL$1,
63030
63112
  namespace: keyPrefix$1,
63031
63113
  representationName: "IDValue",
63032
- version: VERSION$15
63114
+ version: VERSION$15,
63115
+ ingestionTimestamp: timestamp,
63033
63116
  },
63034
63117
  });
63035
63118
  }
@@ -63151,7 +63234,7 @@ function mergeData$V(existingData, newData) {
63151
63234
  };
63152
63235
  }
63153
63236
  function ingest$X(astNode, state) {
63154
- const { path, data, luvio } = state;
63237
+ const { path, data, timestamp, luvio } = state;
63155
63238
  const key = keyBuilder$_(luvio, path);
63156
63239
  return ingestNonCursorConnectionType(astNode, state, {
63157
63240
  key,
@@ -63165,7 +63248,8 @@ function ingest$X(astNode, state) {
63165
63248
  ttl: TTL$1,
63166
63249
  namespace: keyPrefix$1,
63167
63250
  representationName: "DateTimeValue",
63168
- version: VERSION$14
63251
+ version: VERSION$14,
63252
+ ingestionTimestamp: timestamp,
63169
63253
  },
63170
63254
  });
63171
63255
  }
@@ -63293,7 +63377,7 @@ function mergeData$U(existingData, newData) {
63293
63377
  };
63294
63378
  }
63295
63379
  function ingest$W(astNode, state) {
63296
- const { path, data, luvio } = state;
63380
+ const { path, data, timestamp, luvio } = state;
63297
63381
  const key = keyBuilder$Z(luvio, path);
63298
63382
  return ingestNonCursorConnectionType(astNode, state, {
63299
63383
  key,
@@ -63307,7 +63391,8 @@ function ingest$W(astNode, state) {
63307
63391
  ttl: TTL$1,
63308
63392
  namespace: keyPrefix$1,
63309
63393
  representationName: "BooleanValue",
63310
- version: VERSION$13
63394
+ version: VERSION$13,
63395
+ ingestionTimestamp: timestamp,
63311
63396
  },
63312
63397
  });
63313
63398
  }
@@ -63429,7 +63514,7 @@ function mergeData$T(existingData, newData) {
63429
63514
  };
63430
63515
  }
63431
63516
  function ingest$V(astNode, state) {
63432
- const { path, data, luvio } = state;
63517
+ const { path, data, timestamp, luvio } = state;
63433
63518
  const key = keyBuilder$Y(luvio, path);
63434
63519
  return ingestNonCursorConnectionType(astNode, state, {
63435
63520
  key,
@@ -63443,7 +63528,8 @@ function ingest$V(astNode, state) {
63443
63528
  ttl: TTL$1,
63444
63529
  namespace: keyPrefix$1,
63445
63530
  representationName: "TimeValue",
63446
- version: VERSION$12
63531
+ version: VERSION$12,
63532
+ ingestionTimestamp: timestamp,
63447
63533
  },
63448
63534
  });
63449
63535
  }
@@ -63571,7 +63657,7 @@ function mergeData$S(existingData, newData) {
63571
63657
  };
63572
63658
  }
63573
63659
  function ingest$U(astNode, state) {
63574
- const { path, data, luvio } = state;
63660
+ const { path, data, timestamp, luvio } = state;
63575
63661
  const key = keyBuilder$X(luvio, path);
63576
63662
  return ingestNonCursorConnectionType(astNode, state, {
63577
63663
  key,
@@ -63585,7 +63671,8 @@ function ingest$U(astNode, state) {
63585
63671
  ttl: TTL$1,
63586
63672
  namespace: keyPrefix$1,
63587
63673
  representationName: "DateValue",
63588
- version: VERSION$11
63674
+ version: VERSION$11,
63675
+ ingestionTimestamp: timestamp,
63589
63676
  },
63590
63677
  });
63591
63678
  }
@@ -63713,7 +63800,7 @@ function mergeData$R(existingData, newData) {
63713
63800
  };
63714
63801
  }
63715
63802
  function ingest$T(astNode, state) {
63716
- const { path, data, luvio } = state;
63803
+ const { path, data, timestamp, luvio } = state;
63717
63804
  const key = keyBuilder$W(luvio, path);
63718
63805
  return ingestNonCursorConnectionType(astNode, state, {
63719
63806
  key,
@@ -63727,7 +63814,8 @@ function ingest$T(astNode, state) {
63727
63814
  ttl: TTL$1,
63728
63815
  namespace: keyPrefix$1,
63729
63816
  representationName: "TextAreaValue",
63730
- version: VERSION$10
63817
+ version: VERSION$10,
63818
+ ingestionTimestamp: timestamp,
63731
63819
  },
63732
63820
  });
63733
63821
  }
@@ -63849,7 +63937,7 @@ function mergeData$Q(existingData, newData) {
63849
63937
  };
63850
63938
  }
63851
63939
  function ingest$S(astNode, state) {
63852
- const { path, data, luvio } = state;
63940
+ const { path, data, timestamp, luvio } = state;
63853
63941
  const key = keyBuilder$V(luvio, path);
63854
63942
  return ingestNonCursorConnectionType(astNode, state, {
63855
63943
  key,
@@ -63863,7 +63951,8 @@ function ingest$S(astNode, state) {
63863
63951
  ttl: TTL$1,
63864
63952
  namespace: keyPrefix$1,
63865
63953
  representationName: "LongTextAreaValue",
63866
- version: VERSION$$
63954
+ version: VERSION$$,
63955
+ ingestionTimestamp: timestamp,
63867
63956
  },
63868
63957
  });
63869
63958
  }
@@ -63985,7 +64074,7 @@ function mergeData$P(existingData, newData) {
63985
64074
  };
63986
64075
  }
63987
64076
  function ingest$R(astNode, state) {
63988
- const { path, data, luvio } = state;
64077
+ const { path, data, timestamp, luvio } = state;
63989
64078
  const key = keyBuilder$U(luvio, path);
63990
64079
  return ingestNonCursorConnectionType(astNode, state, {
63991
64080
  key,
@@ -63999,7 +64088,8 @@ function ingest$R(astNode, state) {
63999
64088
  ttl: TTL$1,
64000
64089
  namespace: keyPrefix$1,
64001
64090
  representationName: "RichTextAreaValue",
64002
- version: VERSION$_
64091
+ version: VERSION$_,
64092
+ ingestionTimestamp: timestamp,
64003
64093
  },
64004
64094
  });
64005
64095
  }
@@ -64121,7 +64211,7 @@ function mergeData$O(existingData, newData) {
64121
64211
  };
64122
64212
  }
64123
64213
  function ingest$Q(astNode, state) {
64124
- const { path, data, luvio } = state;
64214
+ const { path, data, timestamp, luvio } = state;
64125
64215
  const key = keyBuilder$T(luvio, path);
64126
64216
  return ingestNonCursorConnectionType(astNode, state, {
64127
64217
  key,
@@ -64135,7 +64225,8 @@ function ingest$Q(astNode, state) {
64135
64225
  ttl: TTL$1,
64136
64226
  namespace: keyPrefix$1,
64137
64227
  representationName: "PhoneNumberValue",
64138
- version: VERSION$Z
64228
+ version: VERSION$Z,
64229
+ ingestionTimestamp: timestamp,
64139
64230
  },
64140
64231
  });
64141
64232
  }
@@ -64257,7 +64348,7 @@ function mergeData$N(existingData, newData) {
64257
64348
  };
64258
64349
  }
64259
64350
  function ingest$P(astNode, state) {
64260
- const { path, data, luvio } = state;
64351
+ const { path, data, timestamp, luvio } = state;
64261
64352
  const key = keyBuilder$S(luvio, path);
64262
64353
  return ingestNonCursorConnectionType(astNode, state, {
64263
64354
  key,
@@ -64271,7 +64362,8 @@ function ingest$P(astNode, state) {
64271
64362
  ttl: TTL$1,
64272
64363
  namespace: keyPrefix$1,
64273
64364
  representationName: "EmailValue",
64274
- version: VERSION$Y
64365
+ version: VERSION$Y,
64366
+ ingestionTimestamp: timestamp,
64275
64367
  },
64276
64368
  });
64277
64369
  }
@@ -64393,7 +64485,7 @@ function mergeData$M(existingData, newData) {
64393
64485
  };
64394
64486
  }
64395
64487
  function ingest$O(astNode, state) {
64396
- const { path, data, luvio } = state;
64488
+ const { path, data, timestamp, luvio } = state;
64397
64489
  const key = keyBuilder$R(luvio, path);
64398
64490
  return ingestNonCursorConnectionType(astNode, state, {
64399
64491
  key,
@@ -64407,7 +64499,8 @@ function ingest$O(astNode, state) {
64407
64499
  ttl: TTL$1,
64408
64500
  namespace: keyPrefix$1,
64409
64501
  representationName: "UrlValue",
64410
- version: VERSION$X
64502
+ version: VERSION$X,
64503
+ ingestionTimestamp: timestamp,
64411
64504
  },
64412
64505
  });
64413
64506
  }
@@ -64529,7 +64622,7 @@ function mergeData$L(existingData, newData) {
64529
64622
  };
64530
64623
  }
64531
64624
  function ingest$N(astNode, state) {
64532
- const { path, data, luvio } = state;
64625
+ const { path, data, timestamp, luvio } = state;
64533
64626
  const key = keyBuilder$Q(luvio, path);
64534
64627
  return ingestNonCursorConnectionType(astNode, state, {
64535
64628
  key,
@@ -64543,7 +64636,8 @@ function ingest$N(astNode, state) {
64543
64636
  ttl: TTL$1,
64544
64637
  namespace: keyPrefix$1,
64545
64638
  representationName: "EncryptedStringValue",
64546
- version: VERSION$W
64639
+ version: VERSION$W,
64640
+ ingestionTimestamp: timestamp,
64547
64641
  },
64548
64642
  });
64549
64643
  }
@@ -64665,7 +64759,7 @@ function mergeData$K(existingData, newData) {
64665
64759
  };
64666
64760
  }
64667
64761
  function ingest$M(astNode, state) {
64668
- const { path, data, luvio } = state;
64762
+ const { path, data, timestamp, luvio } = state;
64669
64763
  const key = keyBuilder$P(luvio, path);
64670
64764
  return ingestNonCursorConnectionType(astNode, state, {
64671
64765
  key,
@@ -64679,7 +64773,8 @@ function ingest$M(astNode, state) {
64679
64773
  ttl: TTL$1,
64680
64774
  namespace: keyPrefix$1,
64681
64775
  representationName: "CurrencyValue",
64682
- version: VERSION$V
64776
+ version: VERSION$V,
64777
+ ingestionTimestamp: timestamp,
64683
64778
  },
64684
64779
  });
64685
64780
  }
@@ -64807,7 +64902,7 @@ function mergeData$J(existingData, newData) {
64807
64902
  };
64808
64903
  }
64809
64904
  function ingest$L(astNode, state) {
64810
- const { path, data, luvio } = state;
64905
+ const { path, data, timestamp, luvio } = state;
64811
64906
  const key = keyBuilder$O(luvio, path);
64812
64907
  return ingestNonCursorConnectionType(astNode, state, {
64813
64908
  key,
@@ -64821,7 +64916,8 @@ function ingest$L(astNode, state) {
64821
64916
  ttl: TTL$1,
64822
64917
  namespace: keyPrefix$1,
64823
64918
  representationName: "LongitudeValue",
64824
- version: VERSION$U
64919
+ version: VERSION$U,
64920
+ ingestionTimestamp: timestamp,
64825
64921
  },
64826
64922
  });
64827
64923
  }
@@ -64943,7 +65039,7 @@ function mergeData$I(existingData, newData) {
64943
65039
  };
64944
65040
  }
64945
65041
  function ingest$K(astNode, state) {
64946
- const { path, data, luvio } = state;
65042
+ const { path, data, timestamp, luvio } = state;
64947
65043
  const key = keyBuilder$N(luvio, path);
64948
65044
  return ingestNonCursorConnectionType(astNode, state, {
64949
65045
  key,
@@ -64957,7 +65053,8 @@ function ingest$K(astNode, state) {
64957
65053
  ttl: TTL$1,
64958
65054
  namespace: keyPrefix$1,
64959
65055
  representationName: "LatitudeValue",
64960
- version: VERSION$T
65056
+ version: VERSION$T,
65057
+ ingestionTimestamp: timestamp,
64961
65058
  },
64962
65059
  });
64963
65060
  }
@@ -65079,7 +65176,7 @@ function mergeData$H(existingData, newData) {
65079
65176
  };
65080
65177
  }
65081
65178
  function ingest$J(astNode, state) {
65082
- const { path, data, luvio } = state;
65179
+ const { path, data, timestamp, luvio } = state;
65083
65180
  const key = keyBuilder$M(luvio, path);
65084
65181
  return ingestNonCursorConnectionType(astNode, state, {
65085
65182
  key,
@@ -65093,7 +65190,8 @@ function ingest$J(astNode, state) {
65093
65190
  ttl: TTL$1,
65094
65191
  namespace: keyPrefix$1,
65095
65192
  representationName: "PicklistValue",
65096
- version: VERSION$S
65193
+ version: VERSION$S,
65194
+ ingestionTimestamp: timestamp,
65097
65195
  },
65098
65196
  });
65099
65197
  }
@@ -65221,7 +65319,7 @@ function mergeData$G(existingData, newData) {
65221
65319
  };
65222
65320
  }
65223
65321
  function ingest$I(astNode, state) {
65224
- const { path, data, luvio } = state;
65322
+ const { path, data, timestamp, luvio } = state;
65225
65323
  const key = keyBuilder$L(luvio, path);
65226
65324
  return ingestNonCursorConnectionType(astNode, state, {
65227
65325
  key,
@@ -65235,7 +65333,8 @@ function ingest$I(astNode, state) {
65235
65333
  ttl: TTL$1,
65236
65334
  namespace: keyPrefix$1,
65237
65335
  representationName: "MultiPicklistValue",
65238
- version: VERSION$R
65336
+ version: VERSION$R,
65337
+ ingestionTimestamp: timestamp,
65239
65338
  },
65240
65339
  });
65241
65340
  }
@@ -65363,7 +65462,7 @@ function mergeData$F(existingData, newData) {
65363
65462
  };
65364
65463
  }
65365
65464
  function ingest$H(astNode, state) {
65366
- const { path, data, luvio } = state;
65465
+ const { path, data, timestamp, luvio } = state;
65367
65466
  const key = keyBuilder$K(luvio, path);
65368
65467
  return ingestNonCursorConnectionType(astNode, state, {
65369
65468
  key,
@@ -65377,7 +65476,8 @@ function ingest$H(astNode, state) {
65377
65476
  ttl: TTL$1,
65378
65477
  namespace: keyPrefix$1,
65379
65478
  representationName: "Base64Value",
65380
- version: VERSION$Q
65479
+ version: VERSION$Q,
65480
+ ingestionTimestamp: timestamp,
65381
65481
  },
65382
65482
  });
65383
65483
  }
@@ -65499,7 +65599,7 @@ function mergeData$E(existingData, newData) {
65499
65599
  };
65500
65600
  }
65501
65601
  function ingest$G(astNode, state) {
65502
- const { path, data, luvio } = state;
65602
+ const { path, data, timestamp, luvio } = state;
65503
65603
  const key = keyBuilder$J(luvio, path);
65504
65604
  return ingestNonCursorConnectionType(astNode, state, {
65505
65605
  key,
@@ -65513,7 +65613,8 @@ function ingest$G(astNode, state) {
65513
65613
  ttl: TTL$1,
65514
65614
  namespace: keyPrefix$1,
65515
65615
  representationName: "JSONValue",
65516
- version: VERSION$P
65616
+ version: VERSION$P,
65617
+ ingestionTimestamp: timestamp,
65517
65618
  },
65518
65619
  });
65519
65620
  }
@@ -66111,7 +66212,7 @@ function mergeData$D(existingData, newData) {
66111
66212
  };
66112
66213
  }
66113
66214
  function ingest$E(astNode, state) {
66114
- const { path, data, luvio } = state;
66215
+ const { path, data, timestamp, luvio } = state;
66115
66216
  const key = keyBuilder$H(luvio, path);
66116
66217
  return ingestNonCursorConnectionType(astNode, state, {
66117
66218
  key,
@@ -66125,7 +66226,8 @@ function ingest$E(astNode, state) {
66125
66226
  ttl: TTL$1,
66126
66227
  namespace: keyPrefix$1,
66127
66228
  representationName: "CompoundField",
66128
- version: VERSION$L
66229
+ version: VERSION$L,
66230
+ ingestionTimestamp: timestamp,
66129
66231
  },
66130
66232
  });
66131
66233
  }
@@ -67111,7 +67213,7 @@ function mergeData$C(existingData, newData) {
67111
67213
  };
67112
67214
  }
67113
67215
  function ingest$D(astNode, state) {
67114
- const { path, data, luvio } = state;
67216
+ const { path, data, timestamp, luvio } = state;
67115
67217
  const key = keyBuilder$G(luvio, path);
67116
67218
  return ingestNonCursorConnectionType(astNode, state, {
67117
67219
  key,
@@ -67125,7 +67227,8 @@ function ingest$D(astNode, state) {
67125
67227
  ttl: TTL$1,
67126
67228
  namespace: keyPrefix$1,
67127
67229
  representationName: "PageInfo",
67128
- version: VERSION$K
67230
+ version: VERSION$K,
67231
+ ingestionTimestamp: timestamp,
67129
67232
  },
67130
67233
  });
67131
67234
  }
@@ -67327,7 +67430,7 @@ function mergeData$B(existingData, newData) {
67327
67430
  };
67328
67431
  }
67329
67432
  function ingest$C(astNode, state) {
67330
- const { path, data, luvio } = state;
67433
+ const { path, data, timestamp, luvio } = state;
67331
67434
  const key = keyBuilder$F(luvio, path, data);
67332
67435
  return ingestNonCursorConnectionType(astNode, state, {
67333
67436
  key,
@@ -67344,7 +67447,8 @@ function ingest$C(astNode, state) {
67344
67447
  ttl: TTL$1,
67345
67448
  namespace: keyPrefix$1,
67346
67449
  representationName: "RecordRepresentation",
67347
- version: VERSION$J
67450
+ version: VERSION$J,
67451
+ ingestionTimestamp: timestamp,
67348
67452
  },
67349
67453
  });
67350
67454
  }
@@ -67866,7 +67970,7 @@ function mergeData$A(existingData, newData) {
67866
67970
  };
67867
67971
  }
67868
67972
  function ingest$B(astNode, state) {
67869
- const { path, data, luvio } = state;
67973
+ const { path, data, timestamp, luvio } = state;
67870
67974
  const key = keyBuilder$E(luvio, path);
67871
67975
  return ingestNonCursorConnectionType(astNode, state, {
67872
67976
  key,
@@ -67880,7 +67984,8 @@ function ingest$B(astNode, state) {
67880
67984
  ttl: TTL$1,
67881
67985
  namespace: keyPrefix$1,
67882
67986
  representationName: "RecordEdge",
67883
- version: VERSION$I
67987
+ version: VERSION$I,
67988
+ ingestionTimestamp: timestamp,
67884
67989
  },
67885
67990
  });
67886
67991
  }
@@ -68085,7 +68190,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
68085
68190
  }
68086
68191
  }
68087
68192
  function ingest$A(astNode, state) {
68088
- const { path, data, luvio } = state;
68193
+ const { path, data, timestamp, luvio } = state;
68089
68194
  const key = keyBuilder$D(luvio, path);
68090
68195
  return ingestCursorConnectionType(astNode, state, {
68091
68196
  key,
@@ -68101,7 +68206,8 @@ function ingest$A(astNode, state) {
68101
68206
  ttl: TTL$4,
68102
68207
  namespace: keyPrefix$1,
68103
68208
  representationName: "RecordConnection",
68104
- version: VERSION$H
68209
+ version: VERSION$H,
68210
+ ingestionTimestamp: timestamp,
68105
68211
  },
68106
68212
  });
68107
68213
  }
@@ -68270,7 +68376,7 @@ function mergeData$y(existingData, newData) {
68270
68376
  };
68271
68377
  }
68272
68378
  function ingest$z(astNode, state) {
68273
- const { path, data, luvio } = state;
68379
+ const { path, data, timestamp, luvio } = state;
68274
68380
  const key = keyBuilder$C(luvio, path);
68275
68381
  return ingestNonCursorConnectionType(astNode, state, {
68276
68382
  key,
@@ -68284,7 +68390,8 @@ function ingest$z(astNode, state) {
68284
68390
  ttl: TTL$1,
68285
68391
  namespace: keyPrefix$1,
68286
68392
  representationName: "RecordQuery",
68287
- version: VERSION$G
68393
+ version: VERSION$G,
68394
+ ingestionTimestamp: timestamp,
68288
68395
  },
68289
68396
  });
68290
68397
  }
@@ -68414,7 +68521,7 @@ function mergeData$x(existingData, newData) {
68414
68521
  };
68415
68522
  }
68416
68523
  function ingest$y(astNode, state) {
68417
- const { path, data, luvio } = state;
68524
+ const { path, data, timestamp, luvio } = state;
68418
68525
  const key = keyBuilder$B(luvio, path);
68419
68526
  return ingestNonCursorConnectionType(astNode, state, {
68420
68527
  key,
@@ -68428,7 +68535,8 @@ function ingest$y(astNode, state) {
68428
68535
  ttl: TTL$1,
68429
68536
  namespace: keyPrefix$1,
68430
68537
  representationName: "BooleanAggregate",
68431
- version: VERSION$F
68538
+ version: VERSION$F,
68539
+ ingestionTimestamp: timestamp,
68432
68540
  },
68433
68541
  });
68434
68542
  }
@@ -68597,7 +68705,7 @@ function mergeData$w(existingData, newData) {
68597
68705
  };
68598
68706
  }
68599
68707
  function ingest$x(astNode, state) {
68600
- const { path, data, luvio } = state;
68708
+ const { path, data, timestamp, luvio } = state;
68601
68709
  const key = keyBuilder$A(luvio, path);
68602
68710
  return ingestNonCursorConnectionType(astNode, state, {
68603
68711
  key,
@@ -68611,7 +68719,8 @@ function ingest$x(astNode, state) {
68611
68719
  ttl: TTL$1,
68612
68720
  namespace: keyPrefix$1,
68613
68721
  representationName: "CurrencyAggregate",
68614
- version: VERSION$E
68722
+ version: VERSION$E,
68723
+ ingestionTimestamp: timestamp,
68615
68724
  },
68616
68725
  });
68617
68726
  }
@@ -68859,7 +68968,7 @@ function mergeData$v(existingData, newData) {
68859
68968
  };
68860
68969
  }
68861
68970
  function ingest$w(astNode, state) {
68862
- const { path, data, luvio } = state;
68971
+ const { path, data, timestamp, luvio } = state;
68863
68972
  const key = keyBuilder$z(luvio, path);
68864
68973
  return ingestNonCursorConnectionType(astNode, state, {
68865
68974
  key,
@@ -68873,7 +68982,8 @@ function ingest$w(astNode, state) {
68873
68982
  ttl: TTL$1,
68874
68983
  namespace: keyPrefix$1,
68875
68984
  representationName: "DateFunctionAggregation",
68876
- version: VERSION$D
68985
+ version: VERSION$D,
68986
+ ingestionTimestamp: timestamp,
68877
68987
  },
68878
68988
  });
68879
68989
  }
@@ -69007,7 +69117,7 @@ function mergeData$u(existingData, newData) {
69007
69117
  };
69008
69118
  }
69009
69119
  function ingest$v(astNode, state) {
69010
- const { path, data, luvio } = state;
69120
+ const { path, data, timestamp, luvio } = state;
69011
69121
  const key = keyBuilder$y(luvio, path);
69012
69122
  return ingestNonCursorConnectionType(astNode, state, {
69013
69123
  key,
@@ -69021,7 +69131,8 @@ function ingest$v(astNode, state) {
69021
69131
  ttl: TTL$1,
69022
69132
  namespace: keyPrefix$1,
69023
69133
  representationName: "DateAggregate",
69024
- version: VERSION$C
69134
+ version: VERSION$C,
69135
+ ingestionTimestamp: timestamp,
69025
69136
  },
69026
69137
  });
69027
69138
  }
@@ -69388,7 +69499,7 @@ function mergeData$t(existingData, newData) {
69388
69499
  };
69389
69500
  }
69390
69501
  function ingest$u(astNode, state) {
69391
- const { path, data, luvio } = state;
69502
+ const { path, data, timestamp, luvio } = state;
69392
69503
  const key = keyBuilder$x(luvio, path);
69393
69504
  return ingestNonCursorConnectionType(astNode, state, {
69394
69505
  key,
@@ -69402,7 +69513,8 @@ function ingest$u(astNode, state) {
69402
69513
  ttl: TTL$1,
69403
69514
  namespace: keyPrefix$1,
69404
69515
  representationName: "DoubleAggregate",
69405
- version: VERSION$B
69516
+ version: VERSION$B,
69517
+ ingestionTimestamp: timestamp,
69406
69518
  },
69407
69519
  });
69408
69520
  }
@@ -69641,7 +69753,7 @@ function mergeData$s(existingData, newData) {
69641
69753
  };
69642
69754
  }
69643
69755
  function ingest$t(astNode, state) {
69644
- const { path, data, luvio } = state;
69756
+ const { path, data, timestamp, luvio } = state;
69645
69757
  const key = keyBuilder$w(luvio, path);
69646
69758
  return ingestNonCursorConnectionType(astNode, state, {
69647
69759
  key,
@@ -69655,7 +69767,8 @@ function ingest$t(astNode, state) {
69655
69767
  ttl: TTL$1,
69656
69768
  namespace: keyPrefix$1,
69657
69769
  representationName: "EmailAggregate",
69658
- version: VERSION$A
69770
+ version: VERSION$A,
69771
+ ingestionTimestamp: timestamp,
69659
69772
  },
69660
69773
  });
69661
69774
  }
@@ -69886,7 +69999,7 @@ function mergeData$r(existingData, newData) {
69886
69999
  };
69887
70000
  }
69888
70001
  function ingest$s(astNode, state) {
69889
- const { path, data, luvio } = state;
70002
+ const { path, data, timestamp, luvio } = state;
69890
70003
  const key = keyBuilder$v(luvio, path);
69891
70004
  return ingestNonCursorConnectionType(astNode, state, {
69892
70005
  key,
@@ -69900,7 +70013,8 @@ function ingest$s(astNode, state) {
69900
70013
  ttl: TTL$1,
69901
70014
  namespace: keyPrefix$1,
69902
70015
  representationName: "IDAggregate",
69903
- version: VERSION$z
70016
+ version: VERSION$z,
70017
+ ingestionTimestamp: timestamp,
69904
70018
  },
69905
70019
  });
69906
70020
  }
@@ -70131,7 +70245,7 @@ function mergeData$q(existingData, newData) {
70131
70245
  };
70132
70246
  }
70133
70247
  function ingest$r(astNode, state) {
70134
- const { path, data, luvio } = state;
70248
+ const { path, data, timestamp, luvio } = state;
70135
70249
  const key = keyBuilder$u(luvio, path);
70136
70250
  return ingestNonCursorConnectionType(astNode, state, {
70137
70251
  key,
@@ -70145,7 +70259,8 @@ function ingest$r(astNode, state) {
70145
70259
  ttl: TTL$1,
70146
70260
  namespace: keyPrefix$1,
70147
70261
  representationName: "IntAggregate",
70148
- version: VERSION$y
70262
+ version: VERSION$y,
70263
+ ingestionTimestamp: timestamp,
70149
70264
  },
70150
70265
  });
70151
70266
  }
@@ -70404,7 +70519,7 @@ function mergeData$p(existingData, newData) {
70404
70519
  };
70405
70520
  }
70406
70521
  function ingest$q(astNode, state) {
70407
- const { path, data, luvio } = state;
70522
+ const { path, data, timestamp, luvio } = state;
70408
70523
  const key = keyBuilder$t(luvio, path);
70409
70524
  return ingestNonCursorConnectionType(astNode, state, {
70410
70525
  key,
@@ -70418,7 +70533,8 @@ function ingest$q(astNode, state) {
70418
70533
  ttl: TTL$1,
70419
70534
  namespace: keyPrefix$1,
70420
70535
  representationName: "LatitudeAggregate",
70421
- version: VERSION$x
70536
+ version: VERSION$x,
70537
+ ingestionTimestamp: timestamp,
70422
70538
  },
70423
70539
  });
70424
70540
  }
@@ -70660,7 +70776,7 @@ function mergeData$o(existingData, newData) {
70660
70776
  };
70661
70777
  }
70662
70778
  function ingest$p(astNode, state) {
70663
- const { path, data, luvio } = state;
70779
+ const { path, data, timestamp, luvio } = state;
70664
70780
  const key = keyBuilder$s(luvio, path);
70665
70781
  return ingestNonCursorConnectionType(astNode, state, {
70666
70782
  key,
@@ -70674,7 +70790,8 @@ function ingest$p(astNode, state) {
70674
70790
  ttl: TTL$1,
70675
70791
  namespace: keyPrefix$1,
70676
70792
  representationName: "LongitudeAggregate",
70677
- version: VERSION$w
70793
+ version: VERSION$w,
70794
+ ingestionTimestamp: timestamp,
70678
70795
  },
70679
70796
  });
70680
70797
  }
@@ -70916,7 +71033,7 @@ function mergeData$n(existingData, newData) {
70916
71033
  };
70917
71034
  }
70918
71035
  function ingest$o(astNode, state) {
70919
- const { path, data, luvio } = state;
71036
+ const { path, data, timestamp, luvio } = state;
70920
71037
  const key = keyBuilder$r(luvio, path);
70921
71038
  return ingestNonCursorConnectionType(astNode, state, {
70922
71039
  key,
@@ -70930,7 +71047,8 @@ function ingest$o(astNode, state) {
70930
71047
  ttl: TTL$1,
70931
71048
  namespace: keyPrefix$1,
70932
71049
  representationName: "LongAggregate",
70933
- version: VERSION$v
71050
+ version: VERSION$v,
71051
+ ingestionTimestamp: timestamp,
70934
71052
  },
70935
71053
  });
70936
71054
  }
@@ -71189,7 +71307,7 @@ function mergeData$m(existingData, newData) {
71189
71307
  };
71190
71308
  }
71191
71309
  function ingest$n(astNode, state) {
71192
- const { path, data, luvio } = state;
71310
+ const { path, data, timestamp, luvio } = state;
71193
71311
  const key = keyBuilder$q(luvio, path);
71194
71312
  return ingestNonCursorConnectionType(astNode, state, {
71195
71313
  key,
@@ -71203,7 +71321,8 @@ function ingest$n(astNode, state) {
71203
71321
  ttl: TTL$1,
71204
71322
  namespace: keyPrefix$1,
71205
71323
  representationName: "PhoneNumberAggregate",
71206
- version: VERSION$u
71324
+ version: VERSION$u,
71325
+ ingestionTimestamp: timestamp,
71207
71326
  },
71208
71327
  });
71209
71328
  }
@@ -71434,7 +71553,7 @@ function mergeData$l(existingData, newData) {
71434
71553
  };
71435
71554
  }
71436
71555
  function ingest$m(astNode, state) {
71437
- const { path, data, luvio } = state;
71556
+ const { path, data, timestamp, luvio } = state;
71438
71557
  const key = keyBuilder$p(luvio, path);
71439
71558
  return ingestNonCursorConnectionType(astNode, state, {
71440
71559
  key,
@@ -71448,7 +71567,8 @@ function ingest$m(astNode, state) {
71448
71567
  ttl: TTL$1,
71449
71568
  namespace: keyPrefix$1,
71450
71569
  representationName: "PicklistAggregate",
71451
- version: VERSION$t
71570
+ version: VERSION$t,
71571
+ ingestionTimestamp: timestamp,
71452
71572
  },
71453
71573
  });
71454
71574
  }
@@ -71685,7 +71805,7 @@ function mergeData$k(existingData, newData) {
71685
71805
  };
71686
71806
  }
71687
71807
  function ingest$l(astNode, state) {
71688
- const { path, data, luvio } = state;
71808
+ const { path, data, timestamp, luvio } = state;
71689
71809
  const key = keyBuilder$o(luvio, path);
71690
71810
  return ingestNonCursorConnectionType(astNode, state, {
71691
71811
  key,
@@ -71699,7 +71819,8 @@ function ingest$l(astNode, state) {
71699
71819
  ttl: TTL$1,
71700
71820
  namespace: keyPrefix$1,
71701
71821
  representationName: "TextAreaAggregate",
71702
- version: VERSION$s
71822
+ version: VERSION$s,
71823
+ ingestionTimestamp: timestamp,
71703
71824
  },
71704
71825
  });
71705
71826
  }
@@ -71930,7 +72051,7 @@ function mergeData$j(existingData, newData) {
71930
72051
  };
71931
72052
  }
71932
72053
  function ingest$k(astNode, state) {
71933
- const { path, data, luvio } = state;
72054
+ const { path, data, timestamp, luvio } = state;
71934
72055
  const key = keyBuilder$n(luvio, path);
71935
72056
  return ingestNonCursorConnectionType(astNode, state, {
71936
72057
  key,
@@ -71944,7 +72065,8 @@ function ingest$k(astNode, state) {
71944
72065
  ttl: TTL$1,
71945
72066
  namespace: keyPrefix$1,
71946
72067
  representationName: "TimeAggregate",
71947
- version: VERSION$r
72068
+ version: VERSION$r,
72069
+ ingestionTimestamp: timestamp,
71948
72070
  },
71949
72071
  });
71950
72072
  }
@@ -72119,7 +72241,7 @@ function mergeData$i(existingData, newData) {
72119
72241
  };
72120
72242
  }
72121
72243
  function ingest$j(astNode, state) {
72122
- const { path, data, luvio } = state;
72244
+ const { path, data, timestamp, luvio } = state;
72123
72245
  const key = keyBuilder$m(luvio, path);
72124
72246
  return ingestNonCursorConnectionType(astNode, state, {
72125
72247
  key,
@@ -72133,7 +72255,8 @@ function ingest$j(astNode, state) {
72133
72255
  ttl: TTL$1,
72134
72256
  namespace: keyPrefix$1,
72135
72257
  representationName: "UrlAggregate",
72136
- version: VERSION$q
72258
+ version: VERSION$q,
72259
+ ingestionTimestamp: timestamp,
72137
72260
  },
72138
72261
  });
72139
72262
  }
@@ -72487,7 +72610,7 @@ function mergeData$h(existingData, newData) {
72487
72610
  };
72488
72611
  }
72489
72612
  function ingest$i(astNode, state) {
72490
- const { path, data, luvio } = state;
72613
+ const { path, data, timestamp, luvio } = state;
72491
72614
  const key = keyBuilder$l(luvio, path);
72492
72615
  return ingestNonCursorConnectionType(astNode, state, {
72493
72616
  key,
@@ -72501,7 +72624,8 @@ function ingest$i(astNode, state) {
72501
72624
  ttl: TTL$1,
72502
72625
  namespace: keyPrefix$1,
72503
72626
  representationName: "RecordAggregate",
72504
- version: VERSION$p
72627
+ version: VERSION$p,
72628
+ ingestionTimestamp: timestamp,
72505
72629
  },
72506
72630
  });
72507
72631
  }
@@ -72855,7 +72979,7 @@ function mergeData$g(existingData, newData) {
72855
72979
  };
72856
72980
  }
72857
72981
  function ingest$h(astNode, state) {
72858
- const { path, data, luvio } = state;
72982
+ const { path, data, timestamp, luvio } = state;
72859
72983
  const key = keyBuilder$k(luvio, path);
72860
72984
  return ingestNonCursorConnectionType(astNode, state, {
72861
72985
  key,
@@ -72869,7 +72993,8 @@ function ingest$h(astNode, state) {
72869
72993
  ttl: TTL$1,
72870
72994
  namespace: keyPrefix$1,
72871
72995
  representationName: "RecordResult",
72872
- version: VERSION$o
72996
+ version: VERSION$o,
72997
+ ingestionTimestamp: timestamp,
72873
72998
  },
72874
72999
  });
72875
73000
  }
@@ -73017,7 +73142,7 @@ function mergeData$f(existingData, newData) {
73017
73142
  };
73018
73143
  }
73019
73144
  function ingest$g(astNode, state) {
73020
- const { path, data, luvio } = state;
73145
+ const { path, data, timestamp, luvio } = state;
73021
73146
  const key = keyBuilder$j(luvio, path);
73022
73147
  return ingestNonCursorConnectionType(astNode, state, {
73023
73148
  key,
@@ -73031,7 +73156,8 @@ function ingest$g(astNode, state) {
73031
73156
  ttl: TTL$1,
73032
73157
  namespace: keyPrefix$1,
73033
73158
  representationName: "RecordAggregateEdge",
73034
- version: VERSION$n
73159
+ version: VERSION$n,
73160
+ ingestionTimestamp: timestamp,
73035
73161
  },
73036
73162
  });
73037
73163
  }
@@ -73235,7 +73361,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
73235
73361
  }
73236
73362
  }
73237
73363
  function ingest$f(astNode, state) {
73238
- const { path, data, luvio } = state;
73364
+ const { path, data, timestamp, luvio } = state;
73239
73365
  const key = keyBuilder$i(luvio, path);
73240
73366
  return ingestCursorConnectionType(astNode, state, {
73241
73367
  key,
@@ -73251,7 +73377,8 @@ function ingest$f(astNode, state) {
73251
73377
  ttl: TTL$1,
73252
73378
  namespace: keyPrefix$1,
73253
73379
  representationName: "RecordAggregateConnection",
73254
- version: VERSION$m
73380
+ version: VERSION$m,
73381
+ ingestionTimestamp: timestamp,
73255
73382
  },
73256
73383
  });
73257
73384
  }
@@ -73468,7 +73595,7 @@ function mergeData$d(existingData, newData) {
73468
73595
  };
73469
73596
  }
73470
73597
  function ingest$e(astNode, state) {
73471
- const { path, data, luvio } = state;
73598
+ const { path, data, timestamp, luvio } = state;
73472
73599
  const key = keyBuilder$h(luvio, path);
73473
73600
  return ingestNonCursorConnectionType(astNode, state, {
73474
73601
  key,
@@ -73482,7 +73609,8 @@ function ingest$e(astNode, state) {
73482
73609
  ttl: TTL$1,
73483
73610
  namespace: keyPrefix$1,
73484
73611
  representationName: "RecordQueryAggregate",
73485
- version: VERSION$l
73612
+ version: VERSION$l,
73613
+ ingestionTimestamp: timestamp,
73486
73614
  },
73487
73615
  });
73488
73616
  }
@@ -73612,7 +73740,7 @@ function mergeData$c(existingData, newData) {
73612
73740
  };
73613
73741
  }
73614
73742
  function ingest$d(astNode, state) {
73615
- const { path, data, luvio } = state;
73743
+ const { path, data, timestamp, luvio } = state;
73616
73744
  const key = keyBuilder$g(luvio, path);
73617
73745
  return ingestNonCursorConnectionType(astNode, state, {
73618
73746
  key,
@@ -73626,7 +73754,8 @@ function ingest$d(astNode, state) {
73626
73754
  ttl: TTL$1,
73627
73755
  namespace: keyPrefix$1,
73628
73756
  representationName: "ChildRelationship",
73629
- version: VERSION$k
73757
+ version: VERSION$k,
73758
+ ingestionTimestamp: timestamp,
73630
73759
  },
73631
73760
  });
73632
73761
  }
@@ -73804,7 +73933,7 @@ function mergeData$b(existingData, newData) {
73804
73933
  };
73805
73934
  }
73806
73935
  function ingest$c(astNode, state) {
73807
- const { path, data, luvio } = state;
73936
+ const { path, data, timestamp, luvio } = state;
73808
73937
  const key = keyBuilder$f(luvio, path);
73809
73938
  return ingestNonCursorConnectionType(astNode, state, {
73810
73939
  key,
@@ -73818,7 +73947,8 @@ function ingest$c(astNode, state) {
73818
73947
  ttl: TTL$1,
73819
73948
  namespace: keyPrefix$1,
73820
73949
  representationName: "DependentField",
73821
- version: VERSION$j
73950
+ version: VERSION$j,
73951
+ ingestionTimestamp: timestamp,
73822
73952
  },
73823
73953
  });
73824
73954
  }
@@ -73943,7 +74073,7 @@ function mergeData$a(existingData, newData) {
73943
74073
  };
73944
74074
  }
73945
74075
  function ingest$b(astNode, state) {
73946
- const { path, data, luvio } = state;
74076
+ const { path, data, timestamp, luvio } = state;
73947
74077
  const key = keyBuilder$e(luvio, path);
73948
74078
  return ingestNonCursorConnectionType(astNode, state, {
73949
74079
  key,
@@ -73957,7 +74087,8 @@ function ingest$b(astNode, state) {
73957
74087
  ttl: TTL$1,
73958
74088
  namespace: keyPrefix$1,
73959
74089
  representationName: "FilteredLookupInfo",
73960
- version: VERSION$i
74090
+ version: VERSION$i,
74091
+ ingestionTimestamp: timestamp,
73961
74092
  },
73962
74093
  });
73963
74094
  }
@@ -74097,7 +74228,7 @@ function mergeData$9(existingData, newData) {
74097
74228
  };
74098
74229
  }
74099
74230
  function ingest$a(astNode, state) {
74100
- const { path, data, luvio } = state;
74231
+ const { path, data, timestamp, luvio } = state;
74101
74232
  const key = keyBuilder$d(luvio, path);
74102
74233
  return ingestNonCursorConnectionType(astNode, state, {
74103
74234
  key,
@@ -74111,7 +74242,8 @@ function ingest$a(astNode, state) {
74111
74242
  ttl: TTL$1,
74112
74243
  namespace: keyPrefix$1,
74113
74244
  representationName: "ReferenceToInfo",
74114
- version: VERSION$h
74245
+ version: VERSION$h,
74246
+ ingestionTimestamp: timestamp,
74115
74247
  },
74116
74248
  });
74117
74249
  }
@@ -74271,7 +74403,7 @@ function mergeData$8(existingData, newData) {
74271
74403
  };
74272
74404
  }
74273
74405
  function ingest$9(astNode, state) {
74274
- const { path, data, luvio } = state;
74406
+ const { path, data, timestamp, luvio } = state;
74275
74407
  const key = keyBuilder$c(luvio, path);
74276
74408
  return ingestNonCursorConnectionType(astNode, state, {
74277
74409
  key,
@@ -74285,7 +74417,8 @@ function ingest$9(astNode, state) {
74285
74417
  ttl: TTL$1,
74286
74418
  namespace: keyPrefix$1,
74287
74419
  representationName: "Field",
74288
- version: VERSION$g
74420
+ version: VERSION$g,
74421
+ ingestionTimestamp: timestamp,
74289
74422
  },
74290
74423
  });
74291
74424
  }
@@ -74663,7 +74796,7 @@ function mergeData$7(existingData, newData) {
74663
74796
  };
74664
74797
  }
74665
74798
  function ingest$8(astNode, state) {
74666
- const { path, data, luvio } = state;
74799
+ const { path, data, timestamp, luvio } = state;
74667
74800
  const key = keyBuilder$b(luvio, path);
74668
74801
  return ingestNonCursorConnectionType(astNode, state, {
74669
74802
  key,
@@ -74677,7 +74810,8 @@ function ingest$8(astNode, state) {
74677
74810
  ttl: TTL$1,
74678
74811
  namespace: keyPrefix$1,
74679
74812
  representationName: "RecordTypeInfo",
74680
- version: VERSION$f
74813
+ version: VERSION$f,
74814
+ ingestionTimestamp: timestamp,
74681
74815
  },
74682
74816
  });
74683
74817
  }
@@ -74838,7 +74972,7 @@ function mergeData$6(existingData, newData) {
74838
74972
  };
74839
74973
  }
74840
74974
  function ingest$7(astNode, state) {
74841
- const { path, data, luvio } = state;
74975
+ const { path, data, timestamp, luvio } = state;
74842
74976
  const key = keyBuilder$a(luvio, path);
74843
74977
  return ingestNonCursorConnectionType(astNode, state, {
74844
74978
  key,
@@ -74852,7 +74986,8 @@ function ingest$7(astNode, state) {
74852
74986
  ttl: TTL$1,
74853
74987
  namespace: keyPrefix$1,
74854
74988
  representationName: "ThemeInfo",
74855
- version: VERSION$e
74989
+ version: VERSION$e,
74990
+ ingestionTimestamp: timestamp,
74856
74991
  },
74857
74992
  });
74858
74993
  }
@@ -74978,7 +75113,7 @@ function mergeData$5(existingData, newData) {
74978
75113
  };
74979
75114
  }
74980
75115
  function ingest$6(astNode, state) {
74981
- const { path, data, luvio } = state;
75116
+ const { path, data, timestamp, luvio } = state;
74982
75117
  const key = keyBuilder$9(luvio, path);
74983
75118
  return ingestNonCursorConnectionType(astNode, state, {
74984
75119
  key,
@@ -74992,7 +75127,8 @@ function ingest$6(astNode, state) {
74992
75127
  ttl: TTL$3,
74993
75128
  namespace: keyPrefix$1,
74994
75129
  representationName: "ObjectInfo",
74995
- version: VERSION$d
75130
+ version: VERSION$d,
75131
+ ingestionTimestamp: timestamp,
74996
75132
  },
74997
75133
  });
74998
75134
  }
@@ -75382,7 +75518,7 @@ function mergeData$4(existingData, newData) {
75382
75518
  };
75383
75519
  }
75384
75520
  function ingest$5(astNode, state) {
75385
- const { path, data, luvio } = state;
75521
+ const { path, data, timestamp, luvio } = state;
75386
75522
  const key = keyBuilder$8(luvio, path);
75387
75523
  return ingestNonCursorConnectionType(astNode, state, {
75388
75524
  key,
@@ -75396,7 +75532,8 @@ function ingest$5(astNode, state) {
75396
75532
  ttl: TTL$1,
75397
75533
  namespace: keyPrefix$1,
75398
75534
  representationName: "ListColumn",
75399
- version: VERSION$c
75535
+ version: VERSION$c,
75536
+ ingestionTimestamp: timestamp,
75400
75537
  },
75401
75538
  });
75402
75539
  }
@@ -75542,7 +75679,7 @@ function mergeData$3(existingData, newData) {
75542
75679
  };
75543
75680
  }
75544
75681
  function ingest$4(astNode, state) {
75545
- const { path, data, luvio } = state;
75682
+ const { path, data, timestamp, luvio } = state;
75546
75683
  const key = keyBuilder$7(luvio, path);
75547
75684
  return ingestNonCursorConnectionType(astNode, state, {
75548
75685
  key,
@@ -75556,7 +75693,8 @@ function ingest$4(astNode, state) {
75556
75693
  ttl: TTL$1,
75557
75694
  namespace: keyPrefix$1,
75558
75695
  representationName: "ListOrder",
75559
- version: VERSION$b
75696
+ version: VERSION$b,
75697
+ ingestionTimestamp: timestamp,
75560
75698
  },
75561
75699
  });
75562
75700
  }
@@ -75691,7 +75829,7 @@ function mergeData$2(existingData, newData) {
75691
75829
  };
75692
75830
  }
75693
75831
  function ingest$3(astNode, state) {
75694
- const { path, data, luvio } = state;
75832
+ const { path, data, timestamp, luvio } = state;
75695
75833
  const key = keyBuilder$6(luvio, path);
75696
75834
  return ingestNonCursorConnectionType(astNode, state, {
75697
75835
  key,
@@ -75705,7 +75843,8 @@ function ingest$3(astNode, state) {
75705
75843
  ttl: TTL$2,
75706
75844
  namespace: keyPrefix$1,
75707
75845
  representationName: "RelatedListInfo",
75708
- version: VERSION$a
75846
+ version: VERSION$a,
75847
+ ingestionTimestamp: timestamp,
75709
75848
  },
75710
75849
  });
75711
75850
  }
@@ -75927,7 +76066,7 @@ function mergeData$1(existingData, newData) {
75927
76066
  };
75928
76067
  }
75929
76068
  function ingest$2(astNode, state) {
75930
- const { path, data, luvio } = state;
76069
+ const { path, data, timestamp, luvio } = state;
75931
76070
  const key = keyBuilder$5(luvio, path);
75932
76071
  return ingestNonCursorConnectionType(astNode, state, {
75933
76072
  key,
@@ -75941,7 +76080,8 @@ function ingest$2(astNode, state) {
75941
76080
  ttl: TTL$1,
75942
76081
  namespace: keyPrefix$1,
75943
76082
  representationName: "UIAPI",
75944
- version: VERSION$9
76083
+ version: VERSION$9,
76084
+ ingestionTimestamp: timestamp,
75945
76085
  },
75946
76086
  });
75947
76087
  }
@@ -76165,7 +76305,7 @@ function mergeData(existingData, newData) {
76165
76305
  };
76166
76306
  }
76167
76307
  function ingest$1(astNode, state) {
76168
- const { path, data, luvio } = state;
76308
+ const { path, data, timestamp, luvio } = state;
76169
76309
  const key = keyBuilder$4(luvio, astNode, state.variables, state.fragments);
76170
76310
  return ingestNonCursorConnectionType(astNode, state, {
76171
76311
  key,
@@ -76179,7 +76319,8 @@ function ingest$1(astNode, state) {
76179
76319
  ttl: TTL$1,
76180
76320
  namespace: keyPrefix$1,
76181
76321
  representationName: "Query",
76182
- version: VERSION$8
76322
+ version: VERSION$8,
76323
+ ingestionTimestamp: timestamp,
76183
76324
  },
76184
76325
  });
76185
76326
  }
@@ -79362,7 +79503,7 @@ register$1({
79362
79503
  configuration: { ...configurationForGraphQLAdapters$1 },
79363
79504
  instrument: instrument$1,
79364
79505
  });
79365
- // version: 1.271.0-c2f810db8
79506
+ // version: 1.273.0-daa4f720d
79366
79507
 
79367
79508
  // On core the unstable adapters are re-exported with different names,
79368
79509
  // we want to match them here.
@@ -80013,6 +80154,7 @@ function genericCreateIngest(ast, variables) {
80013
80154
  namespace: namespace,
80014
80155
  ttl: DEFAULT_GRAPHQL_TTL,
80015
80156
  version: GRAPHQL_INGEST_VERSION,
80157
+ ingestionTimestamp: timestamp,
80016
80158
  });
80017
80159
  }
80018
80160
  return {
@@ -80108,6 +80250,7 @@ function ingestConnectionEdges(sel, data, path, luvio, store, timestamp, variabl
80108
80250
  namespace: namespace,
80109
80251
  ttl: DEFAULT_GRAPHQL_TTL,
80110
80252
  version: GRAPHQL_INGEST_VERSION,
80253
+ ingestionTimestamp: timestamp,
80111
80254
  });
80112
80255
  return {
80113
80256
  __ref: key,
@@ -80148,6 +80291,7 @@ const createIngest$1 = (ast, key, variables) => {
80148
80291
  namespace: namespace,
80149
80292
  ttl: DEFAULT_GRAPHQL_TTL,
80150
80293
  version: GRAPHQL_INGEST_VERSION,
80294
+ ingestionTimestamp: timestamp,
80151
80295
  });
80152
80296
  return {
80153
80297
  __ref: key,
@@ -81613,7 +81757,7 @@ withDefaultLuvio((luvio) => {
81613
81757
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
81614
81758
  graphQLImperative = ldsAdapter;
81615
81759
  });
81616
- // version: 1.271.0-c2f810db8
81760
+ // version: 1.273.0-daa4f720d
81617
81761
 
81618
81762
  var gqlApi = /*#__PURE__*/Object.freeze({
81619
81763
  __proto__: null,
@@ -82311,7 +82455,7 @@ const callbacks$1 = [];
82311
82455
  function register(r) {
82312
82456
  callbacks$1.forEach((callback) => callback(r));
82313
82457
  }
82314
- // version: 1.271.0-b5964d6f9
82458
+ // version: 1.273.0-f97941e01
82315
82459
 
82316
82460
  /**
82317
82461
  * Returns true if the value acts like a Promise, i.e. has a "then" function,
@@ -87216,4 +87360,4 @@ const { luvio } = getRuntime();
87216
87360
  setDefaultLuvio({ luvio });
87217
87361
 
87218
87362
  export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
87219
- // version: 1.271.0-b5964d6f9
87363
+ // version: 1.273.0-f97941e01