@salesforce/lwc-adapters-uiapi 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.
- package/dist/main.js +226 -137
- package/package.json +4 -4
package/dist/main.js
CHANGED
|
@@ -522,6 +522,7 @@ function ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normal
|
|
|
522
522
|
namespace,
|
|
523
523
|
version,
|
|
524
524
|
representationName,
|
|
525
|
+
ingestionTimestamp: timestamp,
|
|
525
526
|
};
|
|
526
527
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
527
528
|
}
|
|
@@ -569,7 +570,7 @@ function createResourceParamsImpl(config, configMetadata) {
|
|
|
569
570
|
}
|
|
570
571
|
return resourceParams;
|
|
571
572
|
}
|
|
572
|
-
// engine version: 0.154.
|
|
573
|
+
// engine version: 0.154.9-68ce3623
|
|
573
574
|
|
|
574
575
|
/**
|
|
575
576
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -10249,7 +10250,7 @@ function getTypeCacheKeys$1W(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
10249
10250
|
getTypeCacheKeys$1Z(rootKeySet, luvio, input_fields[key], () => rootKey + "__fields" + "__" + key);
|
|
10250
10251
|
}
|
|
10251
10252
|
}
|
|
10252
|
-
const notifyUpdateAvailableFactory$
|
|
10253
|
+
const notifyUpdateAvailableFactory$4 = (luvio) => {
|
|
10253
10254
|
return function notifyRecordUpdateAvailable(configs) {
|
|
10254
10255
|
if (process.env.NODE_ENV !== 'production') {
|
|
10255
10256
|
const requiredKeyParams = ['recordId'];
|
|
@@ -12885,6 +12886,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
12885
12886
|
representationName: RepresentationType$X,
|
|
12886
12887
|
namespace: keyPrefix,
|
|
12887
12888
|
version: VERSION$2g,
|
|
12889
|
+
ingestionTimestamp: timestamp,
|
|
12888
12890
|
});
|
|
12889
12891
|
return createLink$1(key);
|
|
12890
12892
|
};
|
|
@@ -14485,6 +14487,7 @@ const ingest$1S = function ListRecordCollectionRepresentationIngest(input, path,
|
|
|
14485
14487
|
namespace: "UiApi",
|
|
14486
14488
|
version: VERSION$2e,
|
|
14487
14489
|
representationName: RepresentationType$W,
|
|
14490
|
+
ingestionTimestamp: timestamp,
|
|
14488
14491
|
};
|
|
14489
14492
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
14490
14493
|
}
|
|
@@ -15741,6 +15744,7 @@ const ingest$1P = function ListViewSummaryCollectionRepresentationIngest(input,
|
|
|
15741
15744
|
namespace: "UiApi",
|
|
15742
15745
|
version: VERSION$2b,
|
|
15743
15746
|
representationName: RepresentationType$T,
|
|
15747
|
+
ingestionTimestamp: timestamp,
|
|
15744
15748
|
};
|
|
15745
15749
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
15746
15750
|
}
|
|
@@ -19516,9 +19520,24 @@ function getFieldsFromLayoutMap(layoutMap, objectInfo) {
|
|
|
19516
19520
|
}
|
|
19517
19521
|
return dedupe(fields).sort();
|
|
19518
19522
|
}
|
|
19523
|
+
/**
|
|
19524
|
+
* W-14696113
|
|
19525
|
+
* Merge fields into optionalFields and return the whole list.
|
|
19526
|
+
* @param {string[]} fields
|
|
19527
|
+
* @param {string[]} [optionalFields]
|
|
19528
|
+
*/
|
|
19529
|
+
function convertToImplicitFields(fields, optionalFields) {
|
|
19530
|
+
const implicitFields = optionalFields || [];
|
|
19531
|
+
fields.forEach((field) => {
|
|
19532
|
+
if (!(field in implicitFields))
|
|
19533
|
+
implicitFields.push(field);
|
|
19534
|
+
});
|
|
19535
|
+
return implicitFields;
|
|
19536
|
+
}
|
|
19519
19537
|
function getRecordForLayoutableEntities(luvio, refresh, recordId, layoutMap, objectInfo, configOptionalFields) {
|
|
19520
19538
|
const fields = getFieldsFromLayoutMap(layoutMap, objectInfo);
|
|
19521
|
-
|
|
19539
|
+
const implicitFields = convertToImplicitFields(fields, configOptionalFields);
|
|
19540
|
+
return getRecord$1(luvio, refresh, recordId, [], implicitFields);
|
|
19522
19541
|
}
|
|
19523
19542
|
function getRecordForNonLayoutableEntities(luvio, adapterContext, refresh, recordId, objectInfo, configOptionalFields, configFields) {
|
|
19524
19543
|
const fields = keys(configFields ? configFields : {}).map((key) => `${objectInfo.apiName}.${key}`);
|
|
@@ -22289,7 +22308,10 @@ const dynamicIngest$4 = (ingestParams) => {
|
|
|
22289
22308
|
if (existingRecord === undefined || equals$R(existingRecord, incomingRecord) === false) {
|
|
22290
22309
|
luvio.storePublish(key, incomingRecord);
|
|
22291
22310
|
}
|
|
22292
|
-
luvio.publishStoreMetadata(key,
|
|
22311
|
+
luvio.publishStoreMetadata(key, {
|
|
22312
|
+
...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
|
|
22313
|
+
ingestionTimestamp: timestamp,
|
|
22314
|
+
});
|
|
22293
22315
|
return createLink$1(key);
|
|
22294
22316
|
};
|
|
22295
22317
|
};
|
|
@@ -34959,6 +34981,7 @@ const ingest$1g = function RelatedListRecordCollectionRepresentationIngest(input
|
|
|
34959
34981
|
namespace: "UiApi",
|
|
34960
34982
|
version: VERSION$1k,
|
|
34961
34983
|
representationName: RepresentationType$i,
|
|
34984
|
+
ingestionTimestamp: timestamp,
|
|
34962
34985
|
};
|
|
34963
34986
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
34964
34987
|
}
|
|
@@ -37696,7 +37719,7 @@ function mergeData$11(existingData, newData) {
|
|
|
37696
37719
|
};
|
|
37697
37720
|
}
|
|
37698
37721
|
function ingest$1a(astNode, state) {
|
|
37699
|
-
const { path, data, luvio } = state;
|
|
37722
|
+
const { path, data, timestamp, luvio } = state;
|
|
37700
37723
|
const key = keyBuilder$1f(luvio, path);
|
|
37701
37724
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37702
37725
|
key,
|
|
@@ -37710,7 +37733,8 @@ function ingest$1a(astNode, state) {
|
|
|
37710
37733
|
ttl: TTL$6,
|
|
37711
37734
|
namespace: keyPrefix,
|
|
37712
37735
|
representationName: "DoubleValue",
|
|
37713
|
-
version: VERSION$1e
|
|
37736
|
+
version: VERSION$1e,
|
|
37737
|
+
ingestionTimestamp: timestamp,
|
|
37714
37738
|
},
|
|
37715
37739
|
});
|
|
37716
37740
|
}
|
|
@@ -37838,7 +37862,7 @@ function mergeData$10(existingData, newData) {
|
|
|
37838
37862
|
};
|
|
37839
37863
|
}
|
|
37840
37864
|
function ingest$19(astNode, state) {
|
|
37841
|
-
const { path, data, luvio } = state;
|
|
37865
|
+
const { path, data, timestamp, luvio } = state;
|
|
37842
37866
|
const key = keyBuilder$1e(luvio, path);
|
|
37843
37867
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37844
37868
|
key,
|
|
@@ -37852,7 +37876,8 @@ function ingest$19(astNode, state) {
|
|
|
37852
37876
|
ttl: TTL$6,
|
|
37853
37877
|
namespace: keyPrefix,
|
|
37854
37878
|
representationName: "LongValue",
|
|
37855
|
-
version: VERSION$1d
|
|
37879
|
+
version: VERSION$1d,
|
|
37880
|
+
ingestionTimestamp: timestamp,
|
|
37856
37881
|
},
|
|
37857
37882
|
});
|
|
37858
37883
|
}
|
|
@@ -37980,7 +38005,7 @@ function mergeData$$(existingData, newData) {
|
|
|
37980
38005
|
};
|
|
37981
38006
|
}
|
|
37982
38007
|
function ingest$18(astNode, state) {
|
|
37983
|
-
const { path, data, luvio } = state;
|
|
38008
|
+
const { path, data, timestamp, luvio } = state;
|
|
37984
38009
|
const key = keyBuilder$1d(luvio, path);
|
|
37985
38010
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37986
38011
|
key,
|
|
@@ -37994,7 +38019,8 @@ function ingest$18(astNode, state) {
|
|
|
37994
38019
|
ttl: TTL$6,
|
|
37995
38020
|
namespace: keyPrefix,
|
|
37996
38021
|
representationName: "PercentValue",
|
|
37997
|
-
version: VERSION$1c
|
|
38022
|
+
version: VERSION$1c,
|
|
38023
|
+
ingestionTimestamp: timestamp,
|
|
37998
38024
|
},
|
|
37999
38025
|
});
|
|
38000
38026
|
}
|
|
@@ -38122,7 +38148,7 @@ function mergeData$_(existingData, newData) {
|
|
|
38122
38148
|
};
|
|
38123
38149
|
}
|
|
38124
38150
|
function ingest$17(astNode, state) {
|
|
38125
|
-
const { path, data, luvio } = state;
|
|
38151
|
+
const { path, data, timestamp, luvio } = state;
|
|
38126
38152
|
const key = keyBuilder$1c(luvio, path);
|
|
38127
38153
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38128
38154
|
key,
|
|
@@ -38136,7 +38162,8 @@ function ingest$17(astNode, state) {
|
|
|
38136
38162
|
ttl: TTL$6,
|
|
38137
38163
|
namespace: keyPrefix,
|
|
38138
38164
|
representationName: "PercentAggregate",
|
|
38139
|
-
version: VERSION$1b
|
|
38165
|
+
version: VERSION$1b,
|
|
38166
|
+
ingestionTimestamp: timestamp,
|
|
38140
38167
|
},
|
|
38141
38168
|
});
|
|
38142
38169
|
}
|
|
@@ -38384,7 +38411,7 @@ function mergeData$Z(existingData, newData) {
|
|
|
38384
38411
|
};
|
|
38385
38412
|
}
|
|
38386
38413
|
function ingest$16(astNode, state) {
|
|
38387
|
-
const { path, data, luvio } = state;
|
|
38414
|
+
const { path, data, timestamp, luvio } = state;
|
|
38388
38415
|
const key = keyBuilder$1b(luvio, path);
|
|
38389
38416
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38390
38417
|
key,
|
|
@@ -38398,7 +38425,8 @@ function ingest$16(astNode, state) {
|
|
|
38398
38425
|
ttl: TTL$6,
|
|
38399
38426
|
namespace: keyPrefix,
|
|
38400
38427
|
representationName: "IntValue",
|
|
38401
|
-
version: VERSION$1a
|
|
38428
|
+
version: VERSION$1a,
|
|
38429
|
+
ingestionTimestamp: timestamp,
|
|
38402
38430
|
},
|
|
38403
38431
|
});
|
|
38404
38432
|
}
|
|
@@ -38526,7 +38554,7 @@ function mergeData$Y(existingData, newData) {
|
|
|
38526
38554
|
};
|
|
38527
38555
|
}
|
|
38528
38556
|
function ingest$15(astNode, state) {
|
|
38529
|
-
const { path, data, luvio } = state;
|
|
38557
|
+
const { path, data, timestamp, luvio } = state;
|
|
38530
38558
|
const key = keyBuilder$1a(luvio, path);
|
|
38531
38559
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38532
38560
|
key,
|
|
@@ -38540,7 +38568,8 @@ function ingest$15(astNode, state) {
|
|
|
38540
38568
|
ttl: TTL$6,
|
|
38541
38569
|
namespace: keyPrefix,
|
|
38542
38570
|
representationName: "StringValue",
|
|
38543
|
-
version: VERSION$19
|
|
38571
|
+
version: VERSION$19,
|
|
38572
|
+
ingestionTimestamp: timestamp,
|
|
38544
38573
|
},
|
|
38545
38574
|
});
|
|
38546
38575
|
}
|
|
@@ -38659,7 +38688,7 @@ function mergeData$X(existingData, newData) {
|
|
|
38659
38688
|
};
|
|
38660
38689
|
}
|
|
38661
38690
|
function ingest$14(astNode, state) {
|
|
38662
|
-
const { path, data, luvio } = state;
|
|
38691
|
+
const { path, data, timestamp, luvio } = state;
|
|
38663
38692
|
const key = keyBuilder$19(luvio, path);
|
|
38664
38693
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38665
38694
|
key,
|
|
@@ -38673,7 +38702,8 @@ function ingest$14(astNode, state) {
|
|
|
38673
38702
|
ttl: TTL$6,
|
|
38674
38703
|
namespace: keyPrefix,
|
|
38675
38704
|
representationName: "StringAggregate",
|
|
38676
|
-
version: VERSION$18
|
|
38705
|
+
version: VERSION$18,
|
|
38706
|
+
ingestionTimestamp: timestamp,
|
|
38677
38707
|
},
|
|
38678
38708
|
});
|
|
38679
38709
|
}
|
|
@@ -38901,7 +38931,7 @@ function mergeData$W(existingData, newData) {
|
|
|
38901
38931
|
};
|
|
38902
38932
|
}
|
|
38903
38933
|
function ingest$13(astNode, state) {
|
|
38904
|
-
const { path, data, luvio } = state;
|
|
38934
|
+
const { path, data, timestamp, luvio } = state;
|
|
38905
38935
|
const key = keyBuilder$18(luvio, path);
|
|
38906
38936
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38907
38937
|
key,
|
|
@@ -38915,7 +38945,8 @@ function ingest$13(astNode, state) {
|
|
|
38915
38945
|
ttl: TTL$6,
|
|
38916
38946
|
namespace: keyPrefix,
|
|
38917
38947
|
representationName: "IDValue",
|
|
38918
|
-
version: VERSION$17
|
|
38948
|
+
version: VERSION$17,
|
|
38949
|
+
ingestionTimestamp: timestamp,
|
|
38919
38950
|
},
|
|
38920
38951
|
});
|
|
38921
38952
|
}
|
|
@@ -39037,7 +39068,7 @@ function mergeData$V(existingData, newData) {
|
|
|
39037
39068
|
};
|
|
39038
39069
|
}
|
|
39039
39070
|
function ingest$12(astNode, state) {
|
|
39040
|
-
const { path, data, luvio } = state;
|
|
39071
|
+
const { path, data, timestamp, luvio } = state;
|
|
39041
39072
|
const key = keyBuilder$17(luvio, path);
|
|
39042
39073
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39043
39074
|
key,
|
|
@@ -39051,7 +39082,8 @@ function ingest$12(astNode, state) {
|
|
|
39051
39082
|
ttl: TTL$6,
|
|
39052
39083
|
namespace: keyPrefix,
|
|
39053
39084
|
representationName: "DateTimeValue",
|
|
39054
|
-
version: VERSION$16
|
|
39085
|
+
version: VERSION$16,
|
|
39086
|
+
ingestionTimestamp: timestamp,
|
|
39055
39087
|
},
|
|
39056
39088
|
});
|
|
39057
39089
|
}
|
|
@@ -39179,7 +39211,7 @@ function mergeData$U(existingData, newData) {
|
|
|
39179
39211
|
};
|
|
39180
39212
|
}
|
|
39181
39213
|
function ingest$11(astNode, state) {
|
|
39182
|
-
const { path, data, luvio } = state;
|
|
39214
|
+
const { path, data, timestamp, luvio } = state;
|
|
39183
39215
|
const key = keyBuilder$16(luvio, path);
|
|
39184
39216
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39185
39217
|
key,
|
|
@@ -39193,7 +39225,8 @@ function ingest$11(astNode, state) {
|
|
|
39193
39225
|
ttl: TTL$6,
|
|
39194
39226
|
namespace: keyPrefix,
|
|
39195
39227
|
representationName: "BooleanValue",
|
|
39196
|
-
version: VERSION$15
|
|
39228
|
+
version: VERSION$15,
|
|
39229
|
+
ingestionTimestamp: timestamp,
|
|
39197
39230
|
},
|
|
39198
39231
|
});
|
|
39199
39232
|
}
|
|
@@ -39315,7 +39348,7 @@ function mergeData$T(existingData, newData) {
|
|
|
39315
39348
|
};
|
|
39316
39349
|
}
|
|
39317
39350
|
function ingest$10(astNode, state) {
|
|
39318
|
-
const { path, data, luvio } = state;
|
|
39351
|
+
const { path, data, timestamp, luvio } = state;
|
|
39319
39352
|
const key = keyBuilder$15(luvio, path);
|
|
39320
39353
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39321
39354
|
key,
|
|
@@ -39329,7 +39362,8 @@ function ingest$10(astNode, state) {
|
|
|
39329
39362
|
ttl: TTL$6,
|
|
39330
39363
|
namespace: keyPrefix,
|
|
39331
39364
|
representationName: "TimeValue",
|
|
39332
|
-
version: VERSION$14
|
|
39365
|
+
version: VERSION$14,
|
|
39366
|
+
ingestionTimestamp: timestamp,
|
|
39333
39367
|
},
|
|
39334
39368
|
});
|
|
39335
39369
|
}
|
|
@@ -39457,7 +39491,7 @@ function mergeData$S(existingData, newData) {
|
|
|
39457
39491
|
};
|
|
39458
39492
|
}
|
|
39459
39493
|
function ingest$$(astNode, state) {
|
|
39460
|
-
const { path, data, luvio } = state;
|
|
39494
|
+
const { path, data, timestamp, luvio } = state;
|
|
39461
39495
|
const key = keyBuilder$14(luvio, path);
|
|
39462
39496
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39463
39497
|
key,
|
|
@@ -39471,7 +39505,8 @@ function ingest$$(astNode, state) {
|
|
|
39471
39505
|
ttl: TTL$6,
|
|
39472
39506
|
namespace: keyPrefix,
|
|
39473
39507
|
representationName: "DateValue",
|
|
39474
|
-
version: VERSION$13
|
|
39508
|
+
version: VERSION$13,
|
|
39509
|
+
ingestionTimestamp: timestamp,
|
|
39475
39510
|
},
|
|
39476
39511
|
});
|
|
39477
39512
|
}
|
|
@@ -39599,7 +39634,7 @@ function mergeData$R(existingData, newData) {
|
|
|
39599
39634
|
};
|
|
39600
39635
|
}
|
|
39601
39636
|
function ingest$_(astNode, state) {
|
|
39602
|
-
const { path, data, luvio } = state;
|
|
39637
|
+
const { path, data, timestamp, luvio } = state;
|
|
39603
39638
|
const key = keyBuilder$13(luvio, path);
|
|
39604
39639
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39605
39640
|
key,
|
|
@@ -39613,7 +39648,8 @@ function ingest$_(astNode, state) {
|
|
|
39613
39648
|
ttl: TTL$6,
|
|
39614
39649
|
namespace: keyPrefix,
|
|
39615
39650
|
representationName: "TextAreaValue",
|
|
39616
|
-
version: VERSION$12
|
|
39651
|
+
version: VERSION$12,
|
|
39652
|
+
ingestionTimestamp: timestamp,
|
|
39617
39653
|
},
|
|
39618
39654
|
});
|
|
39619
39655
|
}
|
|
@@ -39735,7 +39771,7 @@ function mergeData$Q(existingData, newData) {
|
|
|
39735
39771
|
};
|
|
39736
39772
|
}
|
|
39737
39773
|
function ingest$Z(astNode, state) {
|
|
39738
|
-
const { path, data, luvio } = state;
|
|
39774
|
+
const { path, data, timestamp, luvio } = state;
|
|
39739
39775
|
const key = keyBuilder$12(luvio, path);
|
|
39740
39776
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39741
39777
|
key,
|
|
@@ -39749,7 +39785,8 @@ function ingest$Z(astNode, state) {
|
|
|
39749
39785
|
ttl: TTL$6,
|
|
39750
39786
|
namespace: keyPrefix,
|
|
39751
39787
|
representationName: "LongTextAreaValue",
|
|
39752
|
-
version: VERSION$11
|
|
39788
|
+
version: VERSION$11,
|
|
39789
|
+
ingestionTimestamp: timestamp,
|
|
39753
39790
|
},
|
|
39754
39791
|
});
|
|
39755
39792
|
}
|
|
@@ -39871,7 +39908,7 @@ function mergeData$P(existingData, newData) {
|
|
|
39871
39908
|
};
|
|
39872
39909
|
}
|
|
39873
39910
|
function ingest$Y(astNode, state) {
|
|
39874
|
-
const { path, data, luvio } = state;
|
|
39911
|
+
const { path, data, timestamp, luvio } = state;
|
|
39875
39912
|
const key = keyBuilder$11(luvio, path);
|
|
39876
39913
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39877
39914
|
key,
|
|
@@ -39885,7 +39922,8 @@ function ingest$Y(astNode, state) {
|
|
|
39885
39922
|
ttl: TTL$6,
|
|
39886
39923
|
namespace: keyPrefix,
|
|
39887
39924
|
representationName: "RichTextAreaValue",
|
|
39888
|
-
version: VERSION$10
|
|
39925
|
+
version: VERSION$10,
|
|
39926
|
+
ingestionTimestamp: timestamp,
|
|
39889
39927
|
},
|
|
39890
39928
|
});
|
|
39891
39929
|
}
|
|
@@ -40007,7 +40045,7 @@ function mergeData$O(existingData, newData) {
|
|
|
40007
40045
|
};
|
|
40008
40046
|
}
|
|
40009
40047
|
function ingest$X(astNode, state) {
|
|
40010
|
-
const { path, data, luvio } = state;
|
|
40048
|
+
const { path, data, timestamp, luvio } = state;
|
|
40011
40049
|
const key = keyBuilder$10(luvio, path);
|
|
40012
40050
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40013
40051
|
key,
|
|
@@ -40021,7 +40059,8 @@ function ingest$X(astNode, state) {
|
|
|
40021
40059
|
ttl: TTL$6,
|
|
40022
40060
|
namespace: keyPrefix,
|
|
40023
40061
|
representationName: "PhoneNumberValue",
|
|
40024
|
-
version: VERSION
|
|
40062
|
+
version: VERSION$$,
|
|
40063
|
+
ingestionTimestamp: timestamp,
|
|
40025
40064
|
},
|
|
40026
40065
|
});
|
|
40027
40066
|
}
|
|
@@ -40143,7 +40182,7 @@ function mergeData$N(existingData, newData) {
|
|
|
40143
40182
|
};
|
|
40144
40183
|
}
|
|
40145
40184
|
function ingest$W(astNode, state) {
|
|
40146
|
-
const { path, data, luvio } = state;
|
|
40185
|
+
const { path, data, timestamp, luvio } = state;
|
|
40147
40186
|
const key = keyBuilder$$(luvio, path);
|
|
40148
40187
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40149
40188
|
key,
|
|
@@ -40157,7 +40196,8 @@ function ingest$W(astNode, state) {
|
|
|
40157
40196
|
ttl: TTL$6,
|
|
40158
40197
|
namespace: keyPrefix,
|
|
40159
40198
|
representationName: "EmailValue",
|
|
40160
|
-
version: VERSION$_
|
|
40199
|
+
version: VERSION$_,
|
|
40200
|
+
ingestionTimestamp: timestamp,
|
|
40161
40201
|
},
|
|
40162
40202
|
});
|
|
40163
40203
|
}
|
|
@@ -40279,7 +40319,7 @@ function mergeData$M(existingData, newData) {
|
|
|
40279
40319
|
};
|
|
40280
40320
|
}
|
|
40281
40321
|
function ingest$V(astNode, state) {
|
|
40282
|
-
const { path, data, luvio } = state;
|
|
40322
|
+
const { path, data, timestamp, luvio } = state;
|
|
40283
40323
|
const key = keyBuilder$_(luvio, path);
|
|
40284
40324
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40285
40325
|
key,
|
|
@@ -40293,7 +40333,8 @@ function ingest$V(astNode, state) {
|
|
|
40293
40333
|
ttl: TTL$6,
|
|
40294
40334
|
namespace: keyPrefix,
|
|
40295
40335
|
representationName: "UrlValue",
|
|
40296
|
-
version: VERSION$Z
|
|
40336
|
+
version: VERSION$Z,
|
|
40337
|
+
ingestionTimestamp: timestamp,
|
|
40297
40338
|
},
|
|
40298
40339
|
});
|
|
40299
40340
|
}
|
|
@@ -40415,7 +40456,7 @@ function mergeData$L(existingData, newData) {
|
|
|
40415
40456
|
};
|
|
40416
40457
|
}
|
|
40417
40458
|
function ingest$U(astNode, state) {
|
|
40418
|
-
const { path, data, luvio } = state;
|
|
40459
|
+
const { path, data, timestamp, luvio } = state;
|
|
40419
40460
|
const key = keyBuilder$Z(luvio, path);
|
|
40420
40461
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40421
40462
|
key,
|
|
@@ -40429,7 +40470,8 @@ function ingest$U(astNode, state) {
|
|
|
40429
40470
|
ttl: TTL$6,
|
|
40430
40471
|
namespace: keyPrefix,
|
|
40431
40472
|
representationName: "EncryptedStringValue",
|
|
40432
|
-
version: VERSION$Y
|
|
40473
|
+
version: VERSION$Y,
|
|
40474
|
+
ingestionTimestamp: timestamp,
|
|
40433
40475
|
},
|
|
40434
40476
|
});
|
|
40435
40477
|
}
|
|
@@ -40551,7 +40593,7 @@ function mergeData$K(existingData, newData) {
|
|
|
40551
40593
|
};
|
|
40552
40594
|
}
|
|
40553
40595
|
function ingest$T(astNode, state) {
|
|
40554
|
-
const { path, data, luvio } = state;
|
|
40596
|
+
const { path, data, timestamp, luvio } = state;
|
|
40555
40597
|
const key = keyBuilder$Y(luvio, path);
|
|
40556
40598
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40557
40599
|
key,
|
|
@@ -40565,7 +40607,8 @@ function ingest$T(astNode, state) {
|
|
|
40565
40607
|
ttl: TTL$6,
|
|
40566
40608
|
namespace: keyPrefix,
|
|
40567
40609
|
representationName: "CurrencyValue",
|
|
40568
|
-
version: VERSION$X
|
|
40610
|
+
version: VERSION$X,
|
|
40611
|
+
ingestionTimestamp: timestamp,
|
|
40569
40612
|
},
|
|
40570
40613
|
});
|
|
40571
40614
|
}
|
|
@@ -40693,7 +40736,7 @@ function mergeData$J(existingData, newData) {
|
|
|
40693
40736
|
};
|
|
40694
40737
|
}
|
|
40695
40738
|
function ingest$S(astNode, state) {
|
|
40696
|
-
const { path, data, luvio } = state;
|
|
40739
|
+
const { path, data, timestamp, luvio } = state;
|
|
40697
40740
|
const key = keyBuilder$X(luvio, path);
|
|
40698
40741
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40699
40742
|
key,
|
|
@@ -40707,7 +40750,8 @@ function ingest$S(astNode, state) {
|
|
|
40707
40750
|
ttl: TTL$6,
|
|
40708
40751
|
namespace: keyPrefix,
|
|
40709
40752
|
representationName: "LongitudeValue",
|
|
40710
|
-
version: VERSION$W
|
|
40753
|
+
version: VERSION$W,
|
|
40754
|
+
ingestionTimestamp: timestamp,
|
|
40711
40755
|
},
|
|
40712
40756
|
});
|
|
40713
40757
|
}
|
|
@@ -40829,7 +40873,7 @@ function mergeData$I(existingData, newData) {
|
|
|
40829
40873
|
};
|
|
40830
40874
|
}
|
|
40831
40875
|
function ingest$R(astNode, state) {
|
|
40832
|
-
const { path, data, luvio } = state;
|
|
40876
|
+
const { path, data, timestamp, luvio } = state;
|
|
40833
40877
|
const key = keyBuilder$W(luvio, path);
|
|
40834
40878
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40835
40879
|
key,
|
|
@@ -40843,7 +40887,8 @@ function ingest$R(astNode, state) {
|
|
|
40843
40887
|
ttl: TTL$6,
|
|
40844
40888
|
namespace: keyPrefix,
|
|
40845
40889
|
representationName: "LatitudeValue",
|
|
40846
|
-
version: VERSION$V
|
|
40890
|
+
version: VERSION$V,
|
|
40891
|
+
ingestionTimestamp: timestamp,
|
|
40847
40892
|
},
|
|
40848
40893
|
});
|
|
40849
40894
|
}
|
|
@@ -40965,7 +41010,7 @@ function mergeData$H(existingData, newData) {
|
|
|
40965
41010
|
};
|
|
40966
41011
|
}
|
|
40967
41012
|
function ingest$Q(astNode, state) {
|
|
40968
|
-
const { path, data, luvio } = state;
|
|
41013
|
+
const { path, data, timestamp, luvio } = state;
|
|
40969
41014
|
const key = keyBuilder$V(luvio, path);
|
|
40970
41015
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40971
41016
|
key,
|
|
@@ -40979,7 +41024,8 @@ function ingest$Q(astNode, state) {
|
|
|
40979
41024
|
ttl: TTL$6,
|
|
40980
41025
|
namespace: keyPrefix,
|
|
40981
41026
|
representationName: "PicklistValue",
|
|
40982
|
-
version: VERSION$U
|
|
41027
|
+
version: VERSION$U,
|
|
41028
|
+
ingestionTimestamp: timestamp,
|
|
40983
41029
|
},
|
|
40984
41030
|
});
|
|
40985
41031
|
}
|
|
@@ -41107,7 +41153,7 @@ function mergeData$G(existingData, newData) {
|
|
|
41107
41153
|
};
|
|
41108
41154
|
}
|
|
41109
41155
|
function ingest$P(astNode, state) {
|
|
41110
|
-
const { path, data, luvio } = state;
|
|
41156
|
+
const { path, data, timestamp, luvio } = state;
|
|
41111
41157
|
const key = keyBuilder$U(luvio, path);
|
|
41112
41158
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41113
41159
|
key,
|
|
@@ -41121,7 +41167,8 @@ function ingest$P(astNode, state) {
|
|
|
41121
41167
|
ttl: TTL$6,
|
|
41122
41168
|
namespace: keyPrefix,
|
|
41123
41169
|
representationName: "MultiPicklistValue",
|
|
41124
|
-
version: VERSION$T
|
|
41170
|
+
version: VERSION$T,
|
|
41171
|
+
ingestionTimestamp: timestamp,
|
|
41125
41172
|
},
|
|
41126
41173
|
});
|
|
41127
41174
|
}
|
|
@@ -41249,7 +41296,7 @@ function mergeData$F(existingData, newData) {
|
|
|
41249
41296
|
};
|
|
41250
41297
|
}
|
|
41251
41298
|
function ingest$O(astNode, state) {
|
|
41252
|
-
const { path, data, luvio } = state;
|
|
41299
|
+
const { path, data, timestamp, luvio } = state;
|
|
41253
41300
|
const key = keyBuilder$T(luvio, path);
|
|
41254
41301
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41255
41302
|
key,
|
|
@@ -41263,7 +41310,8 @@ function ingest$O(astNode, state) {
|
|
|
41263
41310
|
ttl: TTL$6,
|
|
41264
41311
|
namespace: keyPrefix,
|
|
41265
41312
|
representationName: "Base64Value",
|
|
41266
|
-
version: VERSION$S
|
|
41313
|
+
version: VERSION$S,
|
|
41314
|
+
ingestionTimestamp: timestamp,
|
|
41267
41315
|
},
|
|
41268
41316
|
});
|
|
41269
41317
|
}
|
|
@@ -41385,7 +41433,7 @@ function mergeData$E(existingData, newData) {
|
|
|
41385
41433
|
};
|
|
41386
41434
|
}
|
|
41387
41435
|
function ingest$N(astNode, state) {
|
|
41388
|
-
const { path, data, luvio } = state;
|
|
41436
|
+
const { path, data, timestamp, luvio } = state;
|
|
41389
41437
|
const key = keyBuilder$S(luvio, path);
|
|
41390
41438
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41391
41439
|
key,
|
|
@@ -41399,7 +41447,8 @@ function ingest$N(astNode, state) {
|
|
|
41399
41447
|
ttl: TTL$6,
|
|
41400
41448
|
namespace: keyPrefix,
|
|
41401
41449
|
representationName: "JSONValue",
|
|
41402
|
-
version: VERSION$R
|
|
41450
|
+
version: VERSION$R,
|
|
41451
|
+
ingestionTimestamp: timestamp,
|
|
41403
41452
|
},
|
|
41404
41453
|
});
|
|
41405
41454
|
}
|
|
@@ -41925,7 +41974,7 @@ function mergeData$D(existingData, newData) {
|
|
|
41925
41974
|
};
|
|
41926
41975
|
}
|
|
41927
41976
|
function ingest$L(astNode, state) {
|
|
41928
|
-
const { path, data, luvio } = state;
|
|
41977
|
+
const { path, data, timestamp, luvio } = state;
|
|
41929
41978
|
const key = keyBuilder$R(luvio, path);
|
|
41930
41979
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41931
41980
|
key,
|
|
@@ -41939,7 +41988,8 @@ function ingest$L(astNode, state) {
|
|
|
41939
41988
|
ttl: TTL$6,
|
|
41940
41989
|
namespace: keyPrefix,
|
|
41941
41990
|
representationName: "CompoundField",
|
|
41942
|
-
version: VERSION$P
|
|
41991
|
+
version: VERSION$P,
|
|
41992
|
+
ingestionTimestamp: timestamp,
|
|
41943
41993
|
},
|
|
41944
41994
|
});
|
|
41945
41995
|
}
|
|
@@ -42925,7 +42975,7 @@ function mergeData$C(existingData, newData) {
|
|
|
42925
42975
|
};
|
|
42926
42976
|
}
|
|
42927
42977
|
function ingest$K(astNode, state) {
|
|
42928
|
-
const { path, data, luvio } = state;
|
|
42978
|
+
const { path, data, timestamp, luvio } = state;
|
|
42929
42979
|
const key = keyBuilder$Q(luvio, path);
|
|
42930
42980
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42931
42981
|
key,
|
|
@@ -42939,7 +42989,8 @@ function ingest$K(astNode, state) {
|
|
|
42939
42989
|
ttl: TTL$6,
|
|
42940
42990
|
namespace: keyPrefix,
|
|
42941
42991
|
representationName: "PageInfo",
|
|
42942
|
-
version: VERSION$O
|
|
42992
|
+
version: VERSION$O,
|
|
42993
|
+
ingestionTimestamp: timestamp,
|
|
42943
42994
|
},
|
|
42944
42995
|
});
|
|
42945
42996
|
}
|
|
@@ -43141,7 +43192,7 @@ function mergeData$B(existingData, newData) {
|
|
|
43141
43192
|
};
|
|
43142
43193
|
}
|
|
43143
43194
|
function ingest$J(astNode, state) {
|
|
43144
|
-
const { path, data, luvio } = state;
|
|
43195
|
+
const { path, data, timestamp, luvio } = state;
|
|
43145
43196
|
const key = keyBuilder$P(luvio, path, data);
|
|
43146
43197
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43147
43198
|
key,
|
|
@@ -43158,7 +43209,8 @@ function ingest$J(astNode, state) {
|
|
|
43158
43209
|
ttl: TTL$6,
|
|
43159
43210
|
namespace: keyPrefix,
|
|
43160
43211
|
representationName: "RecordRepresentation",
|
|
43161
|
-
version: VERSION$N
|
|
43212
|
+
version: VERSION$N,
|
|
43213
|
+
ingestionTimestamp: timestamp,
|
|
43162
43214
|
},
|
|
43163
43215
|
});
|
|
43164
43216
|
}
|
|
@@ -43680,7 +43732,7 @@ function mergeData$A(existingData, newData) {
|
|
|
43680
43732
|
};
|
|
43681
43733
|
}
|
|
43682
43734
|
function ingest$I(astNode, state) {
|
|
43683
|
-
const { path, data, luvio } = state;
|
|
43735
|
+
const { path, data, timestamp, luvio } = state;
|
|
43684
43736
|
const key = keyBuilder$O(luvio, path);
|
|
43685
43737
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43686
43738
|
key,
|
|
@@ -43694,7 +43746,8 @@ function ingest$I(astNode, state) {
|
|
|
43694
43746
|
ttl: TTL$6,
|
|
43695
43747
|
namespace: keyPrefix,
|
|
43696
43748
|
representationName: "RecordEdge",
|
|
43697
|
-
version: VERSION$M
|
|
43749
|
+
version: VERSION$M,
|
|
43750
|
+
ingestionTimestamp: timestamp,
|
|
43698
43751
|
},
|
|
43699
43752
|
});
|
|
43700
43753
|
}
|
|
@@ -43904,7 +43957,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
|
|
|
43904
43957
|
}
|
|
43905
43958
|
}
|
|
43906
43959
|
function ingest$H(astNode, state) {
|
|
43907
|
-
const { path, data, luvio } = state;
|
|
43960
|
+
const { path, data, timestamp, luvio } = state;
|
|
43908
43961
|
const key = keyBuilder$N(luvio, path);
|
|
43909
43962
|
return ingestCursorConnectionType(astNode, state, {
|
|
43910
43963
|
key,
|
|
@@ -43920,7 +43973,8 @@ function ingest$H(astNode, state) {
|
|
|
43920
43973
|
ttl: TTL$9,
|
|
43921
43974
|
namespace: keyPrefix,
|
|
43922
43975
|
representationName: "RecordConnection",
|
|
43923
|
-
version: VERSION$L
|
|
43976
|
+
version: VERSION$L,
|
|
43977
|
+
ingestionTimestamp: timestamp,
|
|
43924
43978
|
},
|
|
43925
43979
|
});
|
|
43926
43980
|
}
|
|
@@ -44089,7 +44143,7 @@ function mergeData$y(existingData, newData) {
|
|
|
44089
44143
|
};
|
|
44090
44144
|
}
|
|
44091
44145
|
function ingest$G(astNode, state) {
|
|
44092
|
-
const { path, data, luvio } = state;
|
|
44146
|
+
const { path, data, timestamp, luvio } = state;
|
|
44093
44147
|
const key = keyBuilder$M(luvio, path);
|
|
44094
44148
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44095
44149
|
key,
|
|
@@ -44103,7 +44157,8 @@ function ingest$G(astNode, state) {
|
|
|
44103
44157
|
ttl: TTL$6,
|
|
44104
44158
|
namespace: keyPrefix,
|
|
44105
44159
|
representationName: "RecordQuery",
|
|
44106
|
-
version: VERSION$K
|
|
44160
|
+
version: VERSION$K,
|
|
44161
|
+
ingestionTimestamp: timestamp,
|
|
44107
44162
|
},
|
|
44108
44163
|
});
|
|
44109
44164
|
}
|
|
@@ -44233,7 +44288,7 @@ function mergeData$x(existingData, newData) {
|
|
|
44233
44288
|
};
|
|
44234
44289
|
}
|
|
44235
44290
|
function ingest$F(astNode, state) {
|
|
44236
|
-
const { path, data, luvio } = state;
|
|
44291
|
+
const { path, data, timestamp, luvio } = state;
|
|
44237
44292
|
const key = keyBuilder$L(luvio, path);
|
|
44238
44293
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44239
44294
|
key,
|
|
@@ -44247,7 +44302,8 @@ function ingest$F(astNode, state) {
|
|
|
44247
44302
|
ttl: TTL$6,
|
|
44248
44303
|
namespace: keyPrefix,
|
|
44249
44304
|
representationName: "BooleanAggregate",
|
|
44250
|
-
version: VERSION$J
|
|
44305
|
+
version: VERSION$J,
|
|
44306
|
+
ingestionTimestamp: timestamp,
|
|
44251
44307
|
},
|
|
44252
44308
|
});
|
|
44253
44309
|
}
|
|
@@ -44416,7 +44472,7 @@ function mergeData$w(existingData, newData) {
|
|
|
44416
44472
|
};
|
|
44417
44473
|
}
|
|
44418
44474
|
function ingest$E(astNode, state) {
|
|
44419
|
-
const { path, data, luvio } = state;
|
|
44475
|
+
const { path, data, timestamp, luvio } = state;
|
|
44420
44476
|
const key = keyBuilder$K(luvio, path);
|
|
44421
44477
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44422
44478
|
key,
|
|
@@ -44430,7 +44486,8 @@ function ingest$E(astNode, state) {
|
|
|
44430
44486
|
ttl: TTL$6,
|
|
44431
44487
|
namespace: keyPrefix,
|
|
44432
44488
|
representationName: "CurrencyAggregate",
|
|
44433
|
-
version: VERSION$I
|
|
44489
|
+
version: VERSION$I,
|
|
44490
|
+
ingestionTimestamp: timestamp,
|
|
44434
44491
|
},
|
|
44435
44492
|
});
|
|
44436
44493
|
}
|
|
@@ -44678,7 +44735,7 @@ function mergeData$v(existingData, newData) {
|
|
|
44678
44735
|
};
|
|
44679
44736
|
}
|
|
44680
44737
|
function ingest$D(astNode, state) {
|
|
44681
|
-
const { path, data, luvio } = state;
|
|
44738
|
+
const { path, data, timestamp, luvio } = state;
|
|
44682
44739
|
const key = keyBuilder$J(luvio, path);
|
|
44683
44740
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44684
44741
|
key,
|
|
@@ -44692,7 +44749,8 @@ function ingest$D(astNode, state) {
|
|
|
44692
44749
|
ttl: TTL$6,
|
|
44693
44750
|
namespace: keyPrefix,
|
|
44694
44751
|
representationName: "DateFunctionAggregation",
|
|
44695
|
-
version: VERSION$H
|
|
44752
|
+
version: VERSION$H,
|
|
44753
|
+
ingestionTimestamp: timestamp,
|
|
44696
44754
|
},
|
|
44697
44755
|
});
|
|
44698
44756
|
}
|
|
@@ -44826,7 +44884,7 @@ function mergeData$u(existingData, newData) {
|
|
|
44826
44884
|
};
|
|
44827
44885
|
}
|
|
44828
44886
|
function ingest$C(astNode, state) {
|
|
44829
|
-
const { path, data, luvio } = state;
|
|
44887
|
+
const { path, data, timestamp, luvio } = state;
|
|
44830
44888
|
const key = keyBuilder$I(luvio, path);
|
|
44831
44889
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44832
44890
|
key,
|
|
@@ -44840,7 +44898,8 @@ function ingest$C(astNode, state) {
|
|
|
44840
44898
|
ttl: TTL$6,
|
|
44841
44899
|
namespace: keyPrefix,
|
|
44842
44900
|
representationName: "DateAggregate",
|
|
44843
|
-
version: VERSION$G
|
|
44901
|
+
version: VERSION$G,
|
|
44902
|
+
ingestionTimestamp: timestamp,
|
|
44844
44903
|
},
|
|
44845
44904
|
});
|
|
44846
44905
|
}
|
|
@@ -45207,7 +45266,7 @@ function mergeData$t(existingData, newData) {
|
|
|
45207
45266
|
};
|
|
45208
45267
|
}
|
|
45209
45268
|
function ingest$B(astNode, state) {
|
|
45210
|
-
const { path, data, luvio } = state;
|
|
45269
|
+
const { path, data, timestamp, luvio } = state;
|
|
45211
45270
|
const key = keyBuilder$H(luvio, path);
|
|
45212
45271
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45213
45272
|
key,
|
|
@@ -45221,7 +45280,8 @@ function ingest$B(astNode, state) {
|
|
|
45221
45280
|
ttl: TTL$6,
|
|
45222
45281
|
namespace: keyPrefix,
|
|
45223
45282
|
representationName: "DoubleAggregate",
|
|
45224
|
-
version: VERSION$F
|
|
45283
|
+
version: VERSION$F,
|
|
45284
|
+
ingestionTimestamp: timestamp,
|
|
45225
45285
|
},
|
|
45226
45286
|
});
|
|
45227
45287
|
}
|
|
@@ -45460,7 +45520,7 @@ function mergeData$s(existingData, newData) {
|
|
|
45460
45520
|
};
|
|
45461
45521
|
}
|
|
45462
45522
|
function ingest$A(astNode, state) {
|
|
45463
|
-
const { path, data, luvio } = state;
|
|
45523
|
+
const { path, data, timestamp, luvio } = state;
|
|
45464
45524
|
const key = keyBuilder$G(luvio, path);
|
|
45465
45525
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45466
45526
|
key,
|
|
@@ -45474,7 +45534,8 @@ function ingest$A(astNode, state) {
|
|
|
45474
45534
|
ttl: TTL$6,
|
|
45475
45535
|
namespace: keyPrefix,
|
|
45476
45536
|
representationName: "EmailAggregate",
|
|
45477
|
-
version: VERSION$E
|
|
45537
|
+
version: VERSION$E,
|
|
45538
|
+
ingestionTimestamp: timestamp,
|
|
45478
45539
|
},
|
|
45479
45540
|
});
|
|
45480
45541
|
}
|
|
@@ -45705,7 +45766,7 @@ function mergeData$r(existingData, newData) {
|
|
|
45705
45766
|
};
|
|
45706
45767
|
}
|
|
45707
45768
|
function ingest$z(astNode, state) {
|
|
45708
|
-
const { path, data, luvio } = state;
|
|
45769
|
+
const { path, data, timestamp, luvio } = state;
|
|
45709
45770
|
const key = keyBuilder$F(luvio, path);
|
|
45710
45771
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45711
45772
|
key,
|
|
@@ -45719,7 +45780,8 @@ function ingest$z(astNode, state) {
|
|
|
45719
45780
|
ttl: TTL$6,
|
|
45720
45781
|
namespace: keyPrefix,
|
|
45721
45782
|
representationName: "IDAggregate",
|
|
45722
|
-
version: VERSION$D
|
|
45783
|
+
version: VERSION$D,
|
|
45784
|
+
ingestionTimestamp: timestamp,
|
|
45723
45785
|
},
|
|
45724
45786
|
});
|
|
45725
45787
|
}
|
|
@@ -45950,7 +46012,7 @@ function mergeData$q(existingData, newData) {
|
|
|
45950
46012
|
};
|
|
45951
46013
|
}
|
|
45952
46014
|
function ingest$y(astNode, state) {
|
|
45953
|
-
const { path, data, luvio } = state;
|
|
46015
|
+
const { path, data, timestamp, luvio } = state;
|
|
45954
46016
|
const key = keyBuilder$E(luvio, path);
|
|
45955
46017
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45956
46018
|
key,
|
|
@@ -45964,7 +46026,8 @@ function ingest$y(astNode, state) {
|
|
|
45964
46026
|
ttl: TTL$6,
|
|
45965
46027
|
namespace: keyPrefix,
|
|
45966
46028
|
representationName: "IntAggregate",
|
|
45967
|
-
version: VERSION$C
|
|
46029
|
+
version: VERSION$C,
|
|
46030
|
+
ingestionTimestamp: timestamp,
|
|
45968
46031
|
},
|
|
45969
46032
|
});
|
|
45970
46033
|
}
|
|
@@ -46223,7 +46286,7 @@ function mergeData$p(existingData, newData) {
|
|
|
46223
46286
|
};
|
|
46224
46287
|
}
|
|
46225
46288
|
function ingest$x(astNode, state) {
|
|
46226
|
-
const { path, data, luvio } = state;
|
|
46289
|
+
const { path, data, timestamp, luvio } = state;
|
|
46227
46290
|
const key = keyBuilder$D(luvio, path);
|
|
46228
46291
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46229
46292
|
key,
|
|
@@ -46237,7 +46300,8 @@ function ingest$x(astNode, state) {
|
|
|
46237
46300
|
ttl: TTL$6,
|
|
46238
46301
|
namespace: keyPrefix,
|
|
46239
46302
|
representationName: "LatitudeAggregate",
|
|
46240
|
-
version: VERSION$B
|
|
46303
|
+
version: VERSION$B,
|
|
46304
|
+
ingestionTimestamp: timestamp,
|
|
46241
46305
|
},
|
|
46242
46306
|
});
|
|
46243
46307
|
}
|
|
@@ -46479,7 +46543,7 @@ function mergeData$o(existingData, newData) {
|
|
|
46479
46543
|
};
|
|
46480
46544
|
}
|
|
46481
46545
|
function ingest$w(astNode, state) {
|
|
46482
|
-
const { path, data, luvio } = state;
|
|
46546
|
+
const { path, data, timestamp, luvio } = state;
|
|
46483
46547
|
const key = keyBuilder$C(luvio, path);
|
|
46484
46548
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46485
46549
|
key,
|
|
@@ -46493,7 +46557,8 @@ function ingest$w(astNode, state) {
|
|
|
46493
46557
|
ttl: TTL$6,
|
|
46494
46558
|
namespace: keyPrefix,
|
|
46495
46559
|
representationName: "LongitudeAggregate",
|
|
46496
|
-
version: VERSION$A
|
|
46560
|
+
version: VERSION$A,
|
|
46561
|
+
ingestionTimestamp: timestamp,
|
|
46497
46562
|
},
|
|
46498
46563
|
});
|
|
46499
46564
|
}
|
|
@@ -46735,7 +46800,7 @@ function mergeData$n(existingData, newData) {
|
|
|
46735
46800
|
};
|
|
46736
46801
|
}
|
|
46737
46802
|
function ingest$v(astNode, state) {
|
|
46738
|
-
const { path, data, luvio } = state;
|
|
46803
|
+
const { path, data, timestamp, luvio } = state;
|
|
46739
46804
|
const key = keyBuilder$B(luvio, path);
|
|
46740
46805
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46741
46806
|
key,
|
|
@@ -46749,7 +46814,8 @@ function ingest$v(astNode, state) {
|
|
|
46749
46814
|
ttl: TTL$6,
|
|
46750
46815
|
namespace: keyPrefix,
|
|
46751
46816
|
representationName: "LongAggregate",
|
|
46752
|
-
version: VERSION$z
|
|
46817
|
+
version: VERSION$z,
|
|
46818
|
+
ingestionTimestamp: timestamp,
|
|
46753
46819
|
},
|
|
46754
46820
|
});
|
|
46755
46821
|
}
|
|
@@ -47008,7 +47074,7 @@ function mergeData$m(existingData, newData) {
|
|
|
47008
47074
|
};
|
|
47009
47075
|
}
|
|
47010
47076
|
function ingest$u(astNode, state) {
|
|
47011
|
-
const { path, data, luvio } = state;
|
|
47077
|
+
const { path, data, timestamp, luvio } = state;
|
|
47012
47078
|
const key = keyBuilder$A(luvio, path);
|
|
47013
47079
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47014
47080
|
key,
|
|
@@ -47022,7 +47088,8 @@ function ingest$u(astNode, state) {
|
|
|
47022
47088
|
ttl: TTL$6,
|
|
47023
47089
|
namespace: keyPrefix,
|
|
47024
47090
|
representationName: "PhoneNumberAggregate",
|
|
47025
|
-
version: VERSION$y
|
|
47091
|
+
version: VERSION$y,
|
|
47092
|
+
ingestionTimestamp: timestamp,
|
|
47026
47093
|
},
|
|
47027
47094
|
});
|
|
47028
47095
|
}
|
|
@@ -47253,7 +47320,7 @@ function mergeData$l(existingData, newData) {
|
|
|
47253
47320
|
};
|
|
47254
47321
|
}
|
|
47255
47322
|
function ingest$t(astNode, state) {
|
|
47256
|
-
const { path, data, luvio } = state;
|
|
47323
|
+
const { path, data, timestamp, luvio } = state;
|
|
47257
47324
|
const key = keyBuilder$z(luvio, path);
|
|
47258
47325
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47259
47326
|
key,
|
|
@@ -47267,7 +47334,8 @@ function ingest$t(astNode, state) {
|
|
|
47267
47334
|
ttl: TTL$6,
|
|
47268
47335
|
namespace: keyPrefix,
|
|
47269
47336
|
representationName: "PicklistAggregate",
|
|
47270
|
-
version: VERSION$x
|
|
47337
|
+
version: VERSION$x,
|
|
47338
|
+
ingestionTimestamp: timestamp,
|
|
47271
47339
|
},
|
|
47272
47340
|
});
|
|
47273
47341
|
}
|
|
@@ -47504,7 +47572,7 @@ function mergeData$k(existingData, newData) {
|
|
|
47504
47572
|
};
|
|
47505
47573
|
}
|
|
47506
47574
|
function ingest$s(astNode, state) {
|
|
47507
|
-
const { path, data, luvio } = state;
|
|
47575
|
+
const { path, data, timestamp, luvio } = state;
|
|
47508
47576
|
const key = keyBuilder$y(luvio, path);
|
|
47509
47577
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47510
47578
|
key,
|
|
@@ -47518,7 +47586,8 @@ function ingest$s(astNode, state) {
|
|
|
47518
47586
|
ttl: TTL$6,
|
|
47519
47587
|
namespace: keyPrefix,
|
|
47520
47588
|
representationName: "TextAreaAggregate",
|
|
47521
|
-
version: VERSION$w
|
|
47589
|
+
version: VERSION$w,
|
|
47590
|
+
ingestionTimestamp: timestamp,
|
|
47522
47591
|
},
|
|
47523
47592
|
});
|
|
47524
47593
|
}
|
|
@@ -47749,7 +47818,7 @@ function mergeData$j(existingData, newData) {
|
|
|
47749
47818
|
};
|
|
47750
47819
|
}
|
|
47751
47820
|
function ingest$r(astNode, state) {
|
|
47752
|
-
const { path, data, luvio } = state;
|
|
47821
|
+
const { path, data, timestamp, luvio } = state;
|
|
47753
47822
|
const key = keyBuilder$x(luvio, path);
|
|
47754
47823
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47755
47824
|
key,
|
|
@@ -47763,7 +47832,8 @@ function ingest$r(astNode, state) {
|
|
|
47763
47832
|
ttl: TTL$6,
|
|
47764
47833
|
namespace: keyPrefix,
|
|
47765
47834
|
representationName: "TimeAggregate",
|
|
47766
|
-
version: VERSION$v
|
|
47835
|
+
version: VERSION$v,
|
|
47836
|
+
ingestionTimestamp: timestamp,
|
|
47767
47837
|
},
|
|
47768
47838
|
});
|
|
47769
47839
|
}
|
|
@@ -47938,7 +48008,7 @@ function mergeData$i(existingData, newData) {
|
|
|
47938
48008
|
};
|
|
47939
48009
|
}
|
|
47940
48010
|
function ingest$q(astNode, state) {
|
|
47941
|
-
const { path, data, luvio } = state;
|
|
48011
|
+
const { path, data, timestamp, luvio } = state;
|
|
47942
48012
|
const key = keyBuilder$w(luvio, path);
|
|
47943
48013
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47944
48014
|
key,
|
|
@@ -47952,7 +48022,8 @@ function ingest$q(astNode, state) {
|
|
|
47952
48022
|
ttl: TTL$6,
|
|
47953
48023
|
namespace: keyPrefix,
|
|
47954
48024
|
representationName: "UrlAggregate",
|
|
47955
|
-
version: VERSION$u
|
|
48025
|
+
version: VERSION$u,
|
|
48026
|
+
ingestionTimestamp: timestamp,
|
|
47956
48027
|
},
|
|
47957
48028
|
});
|
|
47958
48029
|
}
|
|
@@ -48306,7 +48377,7 @@ function mergeData$h(existingData, newData) {
|
|
|
48306
48377
|
};
|
|
48307
48378
|
}
|
|
48308
48379
|
function ingest$p(astNode, state) {
|
|
48309
|
-
const { path, data, luvio } = state;
|
|
48380
|
+
const { path, data, timestamp, luvio } = state;
|
|
48310
48381
|
const key = keyBuilder$v(luvio, path);
|
|
48311
48382
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48312
48383
|
key,
|
|
@@ -48320,7 +48391,8 @@ function ingest$p(astNode, state) {
|
|
|
48320
48391
|
ttl: TTL$6,
|
|
48321
48392
|
namespace: keyPrefix,
|
|
48322
48393
|
representationName: "RecordAggregate",
|
|
48323
|
-
version: VERSION$t
|
|
48394
|
+
version: VERSION$t,
|
|
48395
|
+
ingestionTimestamp: timestamp,
|
|
48324
48396
|
},
|
|
48325
48397
|
});
|
|
48326
48398
|
}
|
|
@@ -48674,7 +48746,7 @@ function mergeData$g(existingData, newData) {
|
|
|
48674
48746
|
};
|
|
48675
48747
|
}
|
|
48676
48748
|
function ingest$o(astNode, state) {
|
|
48677
|
-
const { path, data, luvio } = state;
|
|
48749
|
+
const { path, data, timestamp, luvio } = state;
|
|
48678
48750
|
const key = keyBuilder$u(luvio, path);
|
|
48679
48751
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48680
48752
|
key,
|
|
@@ -48688,7 +48760,8 @@ function ingest$o(astNode, state) {
|
|
|
48688
48760
|
ttl: TTL$6,
|
|
48689
48761
|
namespace: keyPrefix,
|
|
48690
48762
|
representationName: "RecordResult",
|
|
48691
|
-
version: VERSION$s
|
|
48763
|
+
version: VERSION$s,
|
|
48764
|
+
ingestionTimestamp: timestamp,
|
|
48692
48765
|
},
|
|
48693
48766
|
});
|
|
48694
48767
|
}
|
|
@@ -48836,7 +48909,7 @@ function mergeData$f(existingData, newData) {
|
|
|
48836
48909
|
};
|
|
48837
48910
|
}
|
|
48838
48911
|
function ingest$n(astNode, state) {
|
|
48839
|
-
const { path, data, luvio } = state;
|
|
48912
|
+
const { path, data, timestamp, luvio } = state;
|
|
48840
48913
|
const key = keyBuilder$t(luvio, path);
|
|
48841
48914
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48842
48915
|
key,
|
|
@@ -48850,7 +48923,8 @@ function ingest$n(astNode, state) {
|
|
|
48850
48923
|
ttl: TTL$6,
|
|
48851
48924
|
namespace: keyPrefix,
|
|
48852
48925
|
representationName: "RecordAggregateEdge",
|
|
48853
|
-
version: VERSION$r
|
|
48926
|
+
version: VERSION$r,
|
|
48927
|
+
ingestionTimestamp: timestamp,
|
|
48854
48928
|
},
|
|
48855
48929
|
});
|
|
48856
48930
|
}
|
|
@@ -49059,7 +49133,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
|
|
|
49059
49133
|
}
|
|
49060
49134
|
}
|
|
49061
49135
|
function ingest$m(astNode, state) {
|
|
49062
|
-
const { path, data, luvio } = state;
|
|
49136
|
+
const { path, data, timestamp, luvio } = state;
|
|
49063
49137
|
const key = keyBuilder$s(luvio, path);
|
|
49064
49138
|
return ingestCursorConnectionType(astNode, state, {
|
|
49065
49139
|
key,
|
|
@@ -49075,7 +49149,8 @@ function ingest$m(astNode, state) {
|
|
|
49075
49149
|
ttl: TTL$6,
|
|
49076
49150
|
namespace: keyPrefix,
|
|
49077
49151
|
representationName: "RecordAggregateConnection",
|
|
49078
|
-
version: VERSION$q
|
|
49152
|
+
version: VERSION$q,
|
|
49153
|
+
ingestionTimestamp: timestamp,
|
|
49079
49154
|
},
|
|
49080
49155
|
});
|
|
49081
49156
|
}
|
|
@@ -49292,7 +49367,7 @@ function mergeData$d(existingData, newData) {
|
|
|
49292
49367
|
};
|
|
49293
49368
|
}
|
|
49294
49369
|
function ingest$l(astNode, state) {
|
|
49295
|
-
const { path, data, luvio } = state;
|
|
49370
|
+
const { path, data, timestamp, luvio } = state;
|
|
49296
49371
|
const key = keyBuilder$r(luvio, path);
|
|
49297
49372
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49298
49373
|
key,
|
|
@@ -49306,7 +49381,8 @@ function ingest$l(astNode, state) {
|
|
|
49306
49381
|
ttl: TTL$6,
|
|
49307
49382
|
namespace: keyPrefix,
|
|
49308
49383
|
representationName: "RecordQueryAggregate",
|
|
49309
|
-
version: VERSION$p
|
|
49384
|
+
version: VERSION$p,
|
|
49385
|
+
ingestionTimestamp: timestamp,
|
|
49310
49386
|
},
|
|
49311
49387
|
});
|
|
49312
49388
|
}
|
|
@@ -49436,7 +49512,7 @@ function mergeData$c(existingData, newData) {
|
|
|
49436
49512
|
};
|
|
49437
49513
|
}
|
|
49438
49514
|
function ingest$k(astNode, state) {
|
|
49439
|
-
const { path, data, luvio } = state;
|
|
49515
|
+
const { path, data, timestamp, luvio } = state;
|
|
49440
49516
|
const key = keyBuilder$q(luvio, path);
|
|
49441
49517
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49442
49518
|
key,
|
|
@@ -49450,7 +49526,8 @@ function ingest$k(astNode, state) {
|
|
|
49450
49526
|
ttl: TTL$6,
|
|
49451
49527
|
namespace: keyPrefix,
|
|
49452
49528
|
representationName: "ChildRelationship",
|
|
49453
|
-
version: VERSION$o
|
|
49529
|
+
version: VERSION$o,
|
|
49530
|
+
ingestionTimestamp: timestamp,
|
|
49454
49531
|
},
|
|
49455
49532
|
});
|
|
49456
49533
|
}
|
|
@@ -49628,7 +49705,7 @@ function mergeData$b(existingData, newData) {
|
|
|
49628
49705
|
};
|
|
49629
49706
|
}
|
|
49630
49707
|
function ingest$j(astNode, state) {
|
|
49631
|
-
const { path, data, luvio } = state;
|
|
49708
|
+
const { path, data, timestamp, luvio } = state;
|
|
49632
49709
|
const key = keyBuilder$p(luvio, path);
|
|
49633
49710
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49634
49711
|
key,
|
|
@@ -49642,7 +49719,8 @@ function ingest$j(astNode, state) {
|
|
|
49642
49719
|
ttl: TTL$6,
|
|
49643
49720
|
namespace: keyPrefix,
|
|
49644
49721
|
representationName: "DependentField",
|
|
49645
|
-
version: VERSION$n
|
|
49722
|
+
version: VERSION$n,
|
|
49723
|
+
ingestionTimestamp: timestamp,
|
|
49646
49724
|
},
|
|
49647
49725
|
});
|
|
49648
49726
|
}
|
|
@@ -49767,7 +49845,7 @@ function mergeData$a(existingData, newData) {
|
|
|
49767
49845
|
};
|
|
49768
49846
|
}
|
|
49769
49847
|
function ingest$i(astNode, state) {
|
|
49770
|
-
const { path, data, luvio } = state;
|
|
49848
|
+
const { path, data, timestamp, luvio } = state;
|
|
49771
49849
|
const key = keyBuilder$o(luvio, path);
|
|
49772
49850
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49773
49851
|
key,
|
|
@@ -49781,7 +49859,8 @@ function ingest$i(astNode, state) {
|
|
|
49781
49859
|
ttl: TTL$6,
|
|
49782
49860
|
namespace: keyPrefix,
|
|
49783
49861
|
representationName: "FilteredLookupInfo",
|
|
49784
|
-
version: VERSION$m
|
|
49862
|
+
version: VERSION$m,
|
|
49863
|
+
ingestionTimestamp: timestamp,
|
|
49785
49864
|
},
|
|
49786
49865
|
});
|
|
49787
49866
|
}
|
|
@@ -49921,7 +50000,7 @@ function mergeData$9(existingData, newData) {
|
|
|
49921
50000
|
};
|
|
49922
50001
|
}
|
|
49923
50002
|
function ingest$h(astNode, state) {
|
|
49924
|
-
const { path, data, luvio } = state;
|
|
50003
|
+
const { path, data, timestamp, luvio } = state;
|
|
49925
50004
|
const key = keyBuilder$n(luvio, path);
|
|
49926
50005
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49927
50006
|
key,
|
|
@@ -49935,7 +50014,8 @@ function ingest$h(astNode, state) {
|
|
|
49935
50014
|
ttl: TTL$6,
|
|
49936
50015
|
namespace: keyPrefix,
|
|
49937
50016
|
representationName: "ReferenceToInfo",
|
|
49938
|
-
version: VERSION$l
|
|
50017
|
+
version: VERSION$l,
|
|
50018
|
+
ingestionTimestamp: timestamp,
|
|
49939
50019
|
},
|
|
49940
50020
|
});
|
|
49941
50021
|
}
|
|
@@ -50095,7 +50175,7 @@ function mergeData$8(existingData, newData) {
|
|
|
50095
50175
|
};
|
|
50096
50176
|
}
|
|
50097
50177
|
function ingest$g(astNode, state) {
|
|
50098
|
-
const { path, data, luvio } = state;
|
|
50178
|
+
const { path, data, timestamp, luvio } = state;
|
|
50099
50179
|
const key = keyBuilder$m(luvio, path);
|
|
50100
50180
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50101
50181
|
key,
|
|
@@ -50109,7 +50189,8 @@ function ingest$g(astNode, state) {
|
|
|
50109
50189
|
ttl: TTL$6,
|
|
50110
50190
|
namespace: keyPrefix,
|
|
50111
50191
|
representationName: "Field",
|
|
50112
|
-
version: VERSION$k
|
|
50192
|
+
version: VERSION$k,
|
|
50193
|
+
ingestionTimestamp: timestamp,
|
|
50113
50194
|
},
|
|
50114
50195
|
});
|
|
50115
50196
|
}
|
|
@@ -50487,7 +50568,7 @@ function mergeData$7(existingData, newData) {
|
|
|
50487
50568
|
};
|
|
50488
50569
|
}
|
|
50489
50570
|
function ingest$f(astNode, state) {
|
|
50490
|
-
const { path, data, luvio } = state;
|
|
50571
|
+
const { path, data, timestamp, luvio } = state;
|
|
50491
50572
|
const key = keyBuilder$l(luvio, path);
|
|
50492
50573
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50493
50574
|
key,
|
|
@@ -50501,7 +50582,8 @@ function ingest$f(astNode, state) {
|
|
|
50501
50582
|
ttl: TTL$6,
|
|
50502
50583
|
namespace: keyPrefix,
|
|
50503
50584
|
representationName: "RecordTypeInfo",
|
|
50504
|
-
version: VERSION$j
|
|
50585
|
+
version: VERSION$j,
|
|
50586
|
+
ingestionTimestamp: timestamp,
|
|
50505
50587
|
},
|
|
50506
50588
|
});
|
|
50507
50589
|
}
|
|
@@ -50662,7 +50744,7 @@ function mergeData$6(existingData, newData) {
|
|
|
50662
50744
|
};
|
|
50663
50745
|
}
|
|
50664
50746
|
function ingest$e(astNode, state) {
|
|
50665
|
-
const { path, data, luvio } = state;
|
|
50747
|
+
const { path, data, timestamp, luvio } = state;
|
|
50666
50748
|
const key = keyBuilder$k(luvio, path);
|
|
50667
50749
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50668
50750
|
key,
|
|
@@ -50676,7 +50758,8 @@ function ingest$e(astNode, state) {
|
|
|
50676
50758
|
ttl: TTL$6,
|
|
50677
50759
|
namespace: keyPrefix,
|
|
50678
50760
|
representationName: "ThemeInfo",
|
|
50679
|
-
version: VERSION$i
|
|
50761
|
+
version: VERSION$i,
|
|
50762
|
+
ingestionTimestamp: timestamp,
|
|
50680
50763
|
},
|
|
50681
50764
|
});
|
|
50682
50765
|
}
|
|
@@ -50802,7 +50885,7 @@ function mergeData$5(existingData, newData) {
|
|
|
50802
50885
|
};
|
|
50803
50886
|
}
|
|
50804
50887
|
function ingest$d(astNode, state) {
|
|
50805
|
-
const { path, data, luvio } = state;
|
|
50888
|
+
const { path, data, timestamp, luvio } = state;
|
|
50806
50889
|
const key = keyBuilder$j(luvio, path);
|
|
50807
50890
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50808
50891
|
key,
|
|
@@ -50816,7 +50899,8 @@ function ingest$d(astNode, state) {
|
|
|
50816
50899
|
ttl: TTL$8,
|
|
50817
50900
|
namespace: keyPrefix,
|
|
50818
50901
|
representationName: "ObjectInfo",
|
|
50819
|
-
version: VERSION$h
|
|
50902
|
+
version: VERSION$h,
|
|
50903
|
+
ingestionTimestamp: timestamp,
|
|
50820
50904
|
},
|
|
50821
50905
|
});
|
|
50822
50906
|
}
|
|
@@ -51206,7 +51290,7 @@ function mergeData$4(existingData, newData) {
|
|
|
51206
51290
|
};
|
|
51207
51291
|
}
|
|
51208
51292
|
function ingest$c(astNode, state) {
|
|
51209
|
-
const { path, data, luvio } = state;
|
|
51293
|
+
const { path, data, timestamp, luvio } = state;
|
|
51210
51294
|
const key = keyBuilder$i(luvio, path);
|
|
51211
51295
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51212
51296
|
key,
|
|
@@ -51220,7 +51304,8 @@ function ingest$c(astNode, state) {
|
|
|
51220
51304
|
ttl: TTL$6,
|
|
51221
51305
|
namespace: keyPrefix,
|
|
51222
51306
|
representationName: "ListColumn",
|
|
51223
|
-
version: VERSION$g
|
|
51307
|
+
version: VERSION$g,
|
|
51308
|
+
ingestionTimestamp: timestamp,
|
|
51224
51309
|
},
|
|
51225
51310
|
});
|
|
51226
51311
|
}
|
|
@@ -51366,7 +51451,7 @@ function mergeData$3(existingData, newData) {
|
|
|
51366
51451
|
};
|
|
51367
51452
|
}
|
|
51368
51453
|
function ingest$b(astNode, state) {
|
|
51369
|
-
const { path, data, luvio } = state;
|
|
51454
|
+
const { path, data, timestamp, luvio } = state;
|
|
51370
51455
|
const key = keyBuilder$h(luvio, path);
|
|
51371
51456
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51372
51457
|
key,
|
|
@@ -51380,7 +51465,8 @@ function ingest$b(astNode, state) {
|
|
|
51380
51465
|
ttl: TTL$6,
|
|
51381
51466
|
namespace: keyPrefix,
|
|
51382
51467
|
representationName: "ListOrder",
|
|
51383
|
-
version: VERSION$f
|
|
51468
|
+
version: VERSION$f,
|
|
51469
|
+
ingestionTimestamp: timestamp,
|
|
51384
51470
|
},
|
|
51385
51471
|
});
|
|
51386
51472
|
}
|
|
@@ -51515,7 +51601,7 @@ function mergeData$2(existingData, newData) {
|
|
|
51515
51601
|
};
|
|
51516
51602
|
}
|
|
51517
51603
|
function ingest$a(astNode, state) {
|
|
51518
|
-
const { path, data, luvio } = state;
|
|
51604
|
+
const { path, data, timestamp, luvio } = state;
|
|
51519
51605
|
const key = keyBuilder$g(luvio, path);
|
|
51520
51606
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51521
51607
|
key,
|
|
@@ -51529,7 +51615,8 @@ function ingest$a(astNode, state) {
|
|
|
51529
51615
|
ttl: TTL$7,
|
|
51530
51616
|
namespace: keyPrefix,
|
|
51531
51617
|
representationName: "RelatedListInfo",
|
|
51532
|
-
version: VERSION$e
|
|
51618
|
+
version: VERSION$e,
|
|
51619
|
+
ingestionTimestamp: timestamp,
|
|
51533
51620
|
},
|
|
51534
51621
|
});
|
|
51535
51622
|
}
|
|
@@ -51751,7 +51838,7 @@ function mergeData$1(existingData, newData) {
|
|
|
51751
51838
|
};
|
|
51752
51839
|
}
|
|
51753
51840
|
function ingest$9(astNode, state) {
|
|
51754
|
-
const { path, data, luvio } = state;
|
|
51841
|
+
const { path, data, timestamp, luvio } = state;
|
|
51755
51842
|
const key = keyBuilder$f(luvio, path);
|
|
51756
51843
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51757
51844
|
key,
|
|
@@ -51765,7 +51852,8 @@ function ingest$9(astNode, state) {
|
|
|
51765
51852
|
ttl: TTL$6,
|
|
51766
51853
|
namespace: keyPrefix,
|
|
51767
51854
|
representationName: "UIAPI",
|
|
51768
|
-
version: VERSION$d
|
|
51855
|
+
version: VERSION$d,
|
|
51856
|
+
ingestionTimestamp: timestamp,
|
|
51769
51857
|
},
|
|
51770
51858
|
});
|
|
51771
51859
|
}
|
|
@@ -51989,7 +52077,7 @@ function mergeData(existingData, newData) {
|
|
|
51989
52077
|
};
|
|
51990
52078
|
}
|
|
51991
52079
|
function ingest$8(astNode, state) {
|
|
51992
|
-
const { path, data, luvio } = state;
|
|
52080
|
+
const { path, data, timestamp, luvio } = state;
|
|
51993
52081
|
const key = keyBuilder$e(luvio, astNode, state.variables, state.fragments);
|
|
51994
52082
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51995
52083
|
key,
|
|
@@ -52003,7 +52091,8 @@ function ingest$8(astNode, state) {
|
|
|
52003
52091
|
ttl: TTL$6,
|
|
52004
52092
|
namespace: keyPrefix,
|
|
52005
52093
|
representationName: "Query",
|
|
52006
|
-
version: VERSION$c
|
|
52094
|
+
version: VERSION$c,
|
|
52095
|
+
ingestionTimestamp: timestamp,
|
|
52007
52096
|
},
|
|
52008
52097
|
});
|
|
52009
52098
|
}
|
|
@@ -58656,7 +58745,7 @@ withDefaultLuvio((luvio) => {
|
|
|
58656
58745
|
let getRecordNotifyChange, refresh, notifyRecordUpdateAvailable;
|
|
58657
58746
|
withDefaultLuvio((luvio) => {
|
|
58658
58747
|
getRecordNotifyChange = notifyChangeFactory(luvio);
|
|
58659
|
-
notifyRecordUpdateAvailable = notifyUpdateAvailableFactory$
|
|
58748
|
+
notifyRecordUpdateAvailable = notifyUpdateAvailableFactory$4(luvio);
|
|
58660
58749
|
refresh = bindWireRefresh(luvio);
|
|
58661
58750
|
});
|
|
58662
58751
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.273.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "UIAPI adapters with LWC bindings",
|
|
6
6
|
"module": "dist/main.js",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"clean": "rm -rf dist src/generated"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
34
|
+
"@salesforce/lds-adapters-uiapi": "^1.273.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@luvio/lwc-luvio": "0.154.
|
|
38
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
37
|
+
"@luvio/lwc-luvio": "0.154.9",
|
|
38
|
+
"@salesforce/lds-default-luvio": "^1.273.0"
|
|
39
39
|
}
|
|
40
40
|
}
|