@salesforce/lds-adapters-uiapi 1.271.0 → 1.272.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/es/es2018/types/src/generated/graphql/types/type-util.d.ts +1 -0
- package/dist/es/es2018/types/src/main.d.ts +1 -0
- package/dist/es/es2018/types/src/sfdc_rest.d.ts +1 -1
- package/dist/es/es2018/uiapi-records-service.js +206 -133
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +199 -133
- package/sfdc/index.js +11 -4
- package/sfdc/uiapi-static-functions.js +1 -1
|
@@ -5643,6 +5643,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
5643
5643
|
representationName: RepresentationType$X,
|
|
5644
5644
|
namespace: keyPrefix,
|
|
5645
5645
|
version: VERSION$2g,
|
|
5646
|
+
ingestionTimestamp: timestamp,
|
|
5646
5647
|
});
|
|
5647
5648
|
return createLink$1(key);
|
|
5648
5649
|
};
|
|
@@ -7243,6 +7244,7 @@ const ingest$1S = function ListRecordCollectionRepresentationIngest(input, path,
|
|
|
7243
7244
|
namespace: "UiApi",
|
|
7244
7245
|
version: VERSION$2e,
|
|
7245
7246
|
representationName: RepresentationType$W,
|
|
7247
|
+
ingestionTimestamp: timestamp,
|
|
7246
7248
|
};
|
|
7247
7249
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
7248
7250
|
}
|
|
@@ -8719,6 +8721,7 @@ const ingest$1P = function ListViewSummaryCollectionRepresentationIngest(input,
|
|
|
8719
8721
|
namespace: "UiApi",
|
|
8720
8722
|
version: VERSION$2b,
|
|
8721
8723
|
representationName: RepresentationType$T,
|
|
8724
|
+
ingestionTimestamp: timestamp,
|
|
8722
8725
|
};
|
|
8723
8726
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
8724
8727
|
}
|
|
@@ -15587,7 +15590,10 @@ const dynamicIngest$4 = (ingestParams) => {
|
|
|
15587
15590
|
if (existingRecord === undefined || equals$R(existingRecord, incomingRecord) === false) {
|
|
15588
15591
|
luvio.storePublish(key, incomingRecord);
|
|
15589
15592
|
}
|
|
15590
|
-
luvio.publishStoreMetadata(key,
|
|
15593
|
+
luvio.publishStoreMetadata(key, {
|
|
15594
|
+
...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
|
|
15595
|
+
ingestionTimestamp: timestamp,
|
|
15596
|
+
});
|
|
15591
15597
|
return createLink$1(key);
|
|
15592
15598
|
};
|
|
15593
15599
|
};
|
|
@@ -28817,6 +28823,7 @@ const ingest$1g = function RelatedListRecordCollectionRepresentationIngest(input
|
|
|
28817
28823
|
namespace: "UiApi",
|
|
28818
28824
|
version: VERSION$1k,
|
|
28819
28825
|
representationName: RepresentationType$i,
|
|
28826
|
+
ingestionTimestamp: timestamp,
|
|
28820
28827
|
};
|
|
28821
28828
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
28822
28829
|
}
|
|
@@ -31554,7 +31561,7 @@ function mergeData$11(existingData, newData) {
|
|
|
31554
31561
|
};
|
|
31555
31562
|
}
|
|
31556
31563
|
function ingest$1a(astNode, state) {
|
|
31557
|
-
const { path, data, luvio } = state;
|
|
31564
|
+
const { path, data, timestamp, luvio } = state;
|
|
31558
31565
|
const key = keyBuilder$1f(luvio, path);
|
|
31559
31566
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31560
31567
|
key,
|
|
@@ -31568,7 +31575,8 @@ function ingest$1a(astNode, state) {
|
|
|
31568
31575
|
ttl: TTL$6,
|
|
31569
31576
|
namespace: keyPrefix,
|
|
31570
31577
|
representationName: "DoubleValue",
|
|
31571
|
-
version: VERSION$1e
|
|
31578
|
+
version: VERSION$1e,
|
|
31579
|
+
ingestionTimestamp: timestamp,
|
|
31572
31580
|
},
|
|
31573
31581
|
});
|
|
31574
31582
|
}
|
|
@@ -31696,7 +31704,7 @@ function mergeData$10(existingData, newData) {
|
|
|
31696
31704
|
};
|
|
31697
31705
|
}
|
|
31698
31706
|
function ingest$19(astNode, state) {
|
|
31699
|
-
const { path, data, luvio } = state;
|
|
31707
|
+
const { path, data, timestamp, luvio } = state;
|
|
31700
31708
|
const key = keyBuilder$1e(luvio, path);
|
|
31701
31709
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31702
31710
|
key,
|
|
@@ -31710,7 +31718,8 @@ function ingest$19(astNode, state) {
|
|
|
31710
31718
|
ttl: TTL$6,
|
|
31711
31719
|
namespace: keyPrefix,
|
|
31712
31720
|
representationName: "LongValue",
|
|
31713
|
-
version: VERSION$1d
|
|
31721
|
+
version: VERSION$1d,
|
|
31722
|
+
ingestionTimestamp: timestamp,
|
|
31714
31723
|
},
|
|
31715
31724
|
});
|
|
31716
31725
|
}
|
|
@@ -31838,7 +31847,7 @@ function mergeData$$(existingData, newData) {
|
|
|
31838
31847
|
};
|
|
31839
31848
|
}
|
|
31840
31849
|
function ingest$18(astNode, state) {
|
|
31841
|
-
const { path, data, luvio } = state;
|
|
31850
|
+
const { path, data, timestamp, luvio } = state;
|
|
31842
31851
|
const key = keyBuilder$1d(luvio, path);
|
|
31843
31852
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31844
31853
|
key,
|
|
@@ -31852,7 +31861,8 @@ function ingest$18(astNode, state) {
|
|
|
31852
31861
|
ttl: TTL$6,
|
|
31853
31862
|
namespace: keyPrefix,
|
|
31854
31863
|
representationName: "PercentValue",
|
|
31855
|
-
version: VERSION$1c
|
|
31864
|
+
version: VERSION$1c,
|
|
31865
|
+
ingestionTimestamp: timestamp,
|
|
31856
31866
|
},
|
|
31857
31867
|
});
|
|
31858
31868
|
}
|
|
@@ -31980,7 +31990,7 @@ function mergeData$_(existingData, newData) {
|
|
|
31980
31990
|
};
|
|
31981
31991
|
}
|
|
31982
31992
|
function ingest$17(astNode, state) {
|
|
31983
|
-
const { path, data, luvio } = state;
|
|
31993
|
+
const { path, data, timestamp, luvio } = state;
|
|
31984
31994
|
const key = keyBuilder$1c(luvio, path);
|
|
31985
31995
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31986
31996
|
key,
|
|
@@ -31994,7 +32004,8 @@ function ingest$17(astNode, state) {
|
|
|
31994
32004
|
ttl: TTL$6,
|
|
31995
32005
|
namespace: keyPrefix,
|
|
31996
32006
|
representationName: "PercentAggregate",
|
|
31997
|
-
version: VERSION$1b
|
|
32007
|
+
version: VERSION$1b,
|
|
32008
|
+
ingestionTimestamp: timestamp,
|
|
31998
32009
|
},
|
|
31999
32010
|
});
|
|
32000
32011
|
}
|
|
@@ -32242,7 +32253,7 @@ function mergeData$Z(existingData, newData) {
|
|
|
32242
32253
|
};
|
|
32243
32254
|
}
|
|
32244
32255
|
function ingest$16(astNode, state) {
|
|
32245
|
-
const { path, data, luvio } = state;
|
|
32256
|
+
const { path, data, timestamp, luvio } = state;
|
|
32246
32257
|
const key = keyBuilder$1b(luvio, path);
|
|
32247
32258
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32248
32259
|
key,
|
|
@@ -32256,7 +32267,8 @@ function ingest$16(astNode, state) {
|
|
|
32256
32267
|
ttl: TTL$6,
|
|
32257
32268
|
namespace: keyPrefix,
|
|
32258
32269
|
representationName: "IntValue",
|
|
32259
|
-
version: VERSION$1a
|
|
32270
|
+
version: VERSION$1a,
|
|
32271
|
+
ingestionTimestamp: timestamp,
|
|
32260
32272
|
},
|
|
32261
32273
|
});
|
|
32262
32274
|
}
|
|
@@ -32384,7 +32396,7 @@ function mergeData$Y(existingData, newData) {
|
|
|
32384
32396
|
};
|
|
32385
32397
|
}
|
|
32386
32398
|
function ingest$15(astNode, state) {
|
|
32387
|
-
const { path, data, luvio } = state;
|
|
32399
|
+
const { path, data, timestamp, luvio } = state;
|
|
32388
32400
|
const key = keyBuilder$1a(luvio, path);
|
|
32389
32401
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32390
32402
|
key,
|
|
@@ -32398,7 +32410,8 @@ function ingest$15(astNode, state) {
|
|
|
32398
32410
|
ttl: TTL$6,
|
|
32399
32411
|
namespace: keyPrefix,
|
|
32400
32412
|
representationName: "StringValue",
|
|
32401
|
-
version: VERSION$19
|
|
32413
|
+
version: VERSION$19,
|
|
32414
|
+
ingestionTimestamp: timestamp,
|
|
32402
32415
|
},
|
|
32403
32416
|
});
|
|
32404
32417
|
}
|
|
@@ -32517,7 +32530,7 @@ function mergeData$X(existingData, newData) {
|
|
|
32517
32530
|
};
|
|
32518
32531
|
}
|
|
32519
32532
|
function ingest$14(astNode, state) {
|
|
32520
|
-
const { path, data, luvio } = state;
|
|
32533
|
+
const { path, data, timestamp, luvio } = state;
|
|
32521
32534
|
const key = keyBuilder$19(luvio, path);
|
|
32522
32535
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32523
32536
|
key,
|
|
@@ -32531,7 +32544,8 @@ function ingest$14(astNode, state) {
|
|
|
32531
32544
|
ttl: TTL$6,
|
|
32532
32545
|
namespace: keyPrefix,
|
|
32533
32546
|
representationName: "StringAggregate",
|
|
32534
|
-
version: VERSION$18
|
|
32547
|
+
version: VERSION$18,
|
|
32548
|
+
ingestionTimestamp: timestamp,
|
|
32535
32549
|
},
|
|
32536
32550
|
});
|
|
32537
32551
|
}
|
|
@@ -32759,7 +32773,7 @@ function mergeData$W(existingData, newData) {
|
|
|
32759
32773
|
};
|
|
32760
32774
|
}
|
|
32761
32775
|
function ingest$13(astNode, state) {
|
|
32762
|
-
const { path, data, luvio } = state;
|
|
32776
|
+
const { path, data, timestamp, luvio } = state;
|
|
32763
32777
|
const key = keyBuilder$18(luvio, path);
|
|
32764
32778
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32765
32779
|
key,
|
|
@@ -32773,7 +32787,8 @@ function ingest$13(astNode, state) {
|
|
|
32773
32787
|
ttl: TTL$6,
|
|
32774
32788
|
namespace: keyPrefix,
|
|
32775
32789
|
representationName: "IDValue",
|
|
32776
|
-
version: VERSION$17
|
|
32790
|
+
version: VERSION$17,
|
|
32791
|
+
ingestionTimestamp: timestamp,
|
|
32777
32792
|
},
|
|
32778
32793
|
});
|
|
32779
32794
|
}
|
|
@@ -32895,7 +32910,7 @@ function mergeData$V(existingData, newData) {
|
|
|
32895
32910
|
};
|
|
32896
32911
|
}
|
|
32897
32912
|
function ingest$12(astNode, state) {
|
|
32898
|
-
const { path, data, luvio } = state;
|
|
32913
|
+
const { path, data, timestamp, luvio } = state;
|
|
32899
32914
|
const key = keyBuilder$17(luvio, path);
|
|
32900
32915
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32901
32916
|
key,
|
|
@@ -32909,7 +32924,8 @@ function ingest$12(astNode, state) {
|
|
|
32909
32924
|
ttl: TTL$6,
|
|
32910
32925
|
namespace: keyPrefix,
|
|
32911
32926
|
representationName: "DateTimeValue",
|
|
32912
|
-
version: VERSION$16
|
|
32927
|
+
version: VERSION$16,
|
|
32928
|
+
ingestionTimestamp: timestamp,
|
|
32913
32929
|
},
|
|
32914
32930
|
});
|
|
32915
32931
|
}
|
|
@@ -33037,7 +33053,7 @@ function mergeData$U(existingData, newData) {
|
|
|
33037
33053
|
};
|
|
33038
33054
|
}
|
|
33039
33055
|
function ingest$11(astNode, state) {
|
|
33040
|
-
const { path, data, luvio } = state;
|
|
33056
|
+
const { path, data, timestamp, luvio } = state;
|
|
33041
33057
|
const key = keyBuilder$16(luvio, path);
|
|
33042
33058
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33043
33059
|
key,
|
|
@@ -33051,7 +33067,8 @@ function ingest$11(astNode, state) {
|
|
|
33051
33067
|
ttl: TTL$6,
|
|
33052
33068
|
namespace: keyPrefix,
|
|
33053
33069
|
representationName: "BooleanValue",
|
|
33054
|
-
version: VERSION$15
|
|
33070
|
+
version: VERSION$15,
|
|
33071
|
+
ingestionTimestamp: timestamp,
|
|
33055
33072
|
},
|
|
33056
33073
|
});
|
|
33057
33074
|
}
|
|
@@ -33173,7 +33190,7 @@ function mergeData$T(existingData, newData) {
|
|
|
33173
33190
|
};
|
|
33174
33191
|
}
|
|
33175
33192
|
function ingest$10(astNode, state) {
|
|
33176
|
-
const { path, data, luvio } = state;
|
|
33193
|
+
const { path, data, timestamp, luvio } = state;
|
|
33177
33194
|
const key = keyBuilder$15(luvio, path);
|
|
33178
33195
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33179
33196
|
key,
|
|
@@ -33187,7 +33204,8 @@ function ingest$10(astNode, state) {
|
|
|
33187
33204
|
ttl: TTL$6,
|
|
33188
33205
|
namespace: keyPrefix,
|
|
33189
33206
|
representationName: "TimeValue",
|
|
33190
|
-
version: VERSION$14
|
|
33207
|
+
version: VERSION$14,
|
|
33208
|
+
ingestionTimestamp: timestamp,
|
|
33191
33209
|
},
|
|
33192
33210
|
});
|
|
33193
33211
|
}
|
|
@@ -33315,7 +33333,7 @@ function mergeData$S(existingData, newData) {
|
|
|
33315
33333
|
};
|
|
33316
33334
|
}
|
|
33317
33335
|
function ingest$$(astNode, state) {
|
|
33318
|
-
const { path, data, luvio } = state;
|
|
33336
|
+
const { path, data, timestamp, luvio } = state;
|
|
33319
33337
|
const key = keyBuilder$14(luvio, path);
|
|
33320
33338
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33321
33339
|
key,
|
|
@@ -33329,7 +33347,8 @@ function ingest$$(astNode, state) {
|
|
|
33329
33347
|
ttl: TTL$6,
|
|
33330
33348
|
namespace: keyPrefix,
|
|
33331
33349
|
representationName: "DateValue",
|
|
33332
|
-
version: VERSION$13
|
|
33350
|
+
version: VERSION$13,
|
|
33351
|
+
ingestionTimestamp: timestamp,
|
|
33333
33352
|
},
|
|
33334
33353
|
});
|
|
33335
33354
|
}
|
|
@@ -33457,7 +33476,7 @@ function mergeData$R(existingData, newData) {
|
|
|
33457
33476
|
};
|
|
33458
33477
|
}
|
|
33459
33478
|
function ingest$_(astNode, state) {
|
|
33460
|
-
const { path, data, luvio } = state;
|
|
33479
|
+
const { path, data, timestamp, luvio } = state;
|
|
33461
33480
|
const key = keyBuilder$13(luvio, path);
|
|
33462
33481
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33463
33482
|
key,
|
|
@@ -33471,7 +33490,8 @@ function ingest$_(astNode, state) {
|
|
|
33471
33490
|
ttl: TTL$6,
|
|
33472
33491
|
namespace: keyPrefix,
|
|
33473
33492
|
representationName: "TextAreaValue",
|
|
33474
|
-
version: VERSION$12
|
|
33493
|
+
version: VERSION$12,
|
|
33494
|
+
ingestionTimestamp: timestamp,
|
|
33475
33495
|
},
|
|
33476
33496
|
});
|
|
33477
33497
|
}
|
|
@@ -33593,7 +33613,7 @@ function mergeData$Q(existingData, newData) {
|
|
|
33593
33613
|
};
|
|
33594
33614
|
}
|
|
33595
33615
|
function ingest$Z(astNode, state) {
|
|
33596
|
-
const { path, data, luvio } = state;
|
|
33616
|
+
const { path, data, timestamp, luvio } = state;
|
|
33597
33617
|
const key = keyBuilder$12(luvio, path);
|
|
33598
33618
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33599
33619
|
key,
|
|
@@ -33607,7 +33627,8 @@ function ingest$Z(astNode, state) {
|
|
|
33607
33627
|
ttl: TTL$6,
|
|
33608
33628
|
namespace: keyPrefix,
|
|
33609
33629
|
representationName: "LongTextAreaValue",
|
|
33610
|
-
version: VERSION$11
|
|
33630
|
+
version: VERSION$11,
|
|
33631
|
+
ingestionTimestamp: timestamp,
|
|
33611
33632
|
},
|
|
33612
33633
|
});
|
|
33613
33634
|
}
|
|
@@ -33729,7 +33750,7 @@ function mergeData$P(existingData, newData) {
|
|
|
33729
33750
|
};
|
|
33730
33751
|
}
|
|
33731
33752
|
function ingest$Y(astNode, state) {
|
|
33732
|
-
const { path, data, luvio } = state;
|
|
33753
|
+
const { path, data, timestamp, luvio } = state;
|
|
33733
33754
|
const key = keyBuilder$11(luvio, path);
|
|
33734
33755
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33735
33756
|
key,
|
|
@@ -33743,7 +33764,8 @@ function ingest$Y(astNode, state) {
|
|
|
33743
33764
|
ttl: TTL$6,
|
|
33744
33765
|
namespace: keyPrefix,
|
|
33745
33766
|
representationName: "RichTextAreaValue",
|
|
33746
|
-
version: VERSION$10
|
|
33767
|
+
version: VERSION$10,
|
|
33768
|
+
ingestionTimestamp: timestamp,
|
|
33747
33769
|
},
|
|
33748
33770
|
});
|
|
33749
33771
|
}
|
|
@@ -33865,7 +33887,7 @@ function mergeData$O(existingData, newData) {
|
|
|
33865
33887
|
};
|
|
33866
33888
|
}
|
|
33867
33889
|
function ingest$X(astNode, state) {
|
|
33868
|
-
const { path, data, luvio } = state;
|
|
33890
|
+
const { path, data, timestamp, luvio } = state;
|
|
33869
33891
|
const key = keyBuilder$10(luvio, path);
|
|
33870
33892
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33871
33893
|
key,
|
|
@@ -33879,7 +33901,8 @@ function ingest$X(astNode, state) {
|
|
|
33879
33901
|
ttl: TTL$6,
|
|
33880
33902
|
namespace: keyPrefix,
|
|
33881
33903
|
representationName: "PhoneNumberValue",
|
|
33882
|
-
version: VERSION
|
|
33904
|
+
version: VERSION$$,
|
|
33905
|
+
ingestionTimestamp: timestamp,
|
|
33883
33906
|
},
|
|
33884
33907
|
});
|
|
33885
33908
|
}
|
|
@@ -34001,7 +34024,7 @@ function mergeData$N(existingData, newData) {
|
|
|
34001
34024
|
};
|
|
34002
34025
|
}
|
|
34003
34026
|
function ingest$W(astNode, state) {
|
|
34004
|
-
const { path, data, luvio } = state;
|
|
34027
|
+
const { path, data, timestamp, luvio } = state;
|
|
34005
34028
|
const key = keyBuilder$$(luvio, path);
|
|
34006
34029
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34007
34030
|
key,
|
|
@@ -34015,7 +34038,8 @@ function ingest$W(astNode, state) {
|
|
|
34015
34038
|
ttl: TTL$6,
|
|
34016
34039
|
namespace: keyPrefix,
|
|
34017
34040
|
representationName: "EmailValue",
|
|
34018
|
-
version: VERSION$_
|
|
34041
|
+
version: VERSION$_,
|
|
34042
|
+
ingestionTimestamp: timestamp,
|
|
34019
34043
|
},
|
|
34020
34044
|
});
|
|
34021
34045
|
}
|
|
@@ -34137,7 +34161,7 @@ function mergeData$M(existingData, newData) {
|
|
|
34137
34161
|
};
|
|
34138
34162
|
}
|
|
34139
34163
|
function ingest$V(astNode, state) {
|
|
34140
|
-
const { path, data, luvio } = state;
|
|
34164
|
+
const { path, data, timestamp, luvio } = state;
|
|
34141
34165
|
const key = keyBuilder$_(luvio, path);
|
|
34142
34166
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34143
34167
|
key,
|
|
@@ -34151,7 +34175,8 @@ function ingest$V(astNode, state) {
|
|
|
34151
34175
|
ttl: TTL$6,
|
|
34152
34176
|
namespace: keyPrefix,
|
|
34153
34177
|
representationName: "UrlValue",
|
|
34154
|
-
version: VERSION$Z
|
|
34178
|
+
version: VERSION$Z,
|
|
34179
|
+
ingestionTimestamp: timestamp,
|
|
34155
34180
|
},
|
|
34156
34181
|
});
|
|
34157
34182
|
}
|
|
@@ -34273,7 +34298,7 @@ function mergeData$L(existingData, newData) {
|
|
|
34273
34298
|
};
|
|
34274
34299
|
}
|
|
34275
34300
|
function ingest$U(astNode, state) {
|
|
34276
|
-
const { path, data, luvio } = state;
|
|
34301
|
+
const { path, data, timestamp, luvio } = state;
|
|
34277
34302
|
const key = keyBuilder$Z(luvio, path);
|
|
34278
34303
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34279
34304
|
key,
|
|
@@ -34287,7 +34312,8 @@ function ingest$U(astNode, state) {
|
|
|
34287
34312
|
ttl: TTL$6,
|
|
34288
34313
|
namespace: keyPrefix,
|
|
34289
34314
|
representationName: "EncryptedStringValue",
|
|
34290
|
-
version: VERSION$Y
|
|
34315
|
+
version: VERSION$Y,
|
|
34316
|
+
ingestionTimestamp: timestamp,
|
|
34291
34317
|
},
|
|
34292
34318
|
});
|
|
34293
34319
|
}
|
|
@@ -34409,7 +34435,7 @@ function mergeData$K(existingData, newData) {
|
|
|
34409
34435
|
};
|
|
34410
34436
|
}
|
|
34411
34437
|
function ingest$T(astNode, state) {
|
|
34412
|
-
const { path, data, luvio } = state;
|
|
34438
|
+
const { path, data, timestamp, luvio } = state;
|
|
34413
34439
|
const key = keyBuilder$Y(luvio, path);
|
|
34414
34440
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34415
34441
|
key,
|
|
@@ -34423,7 +34449,8 @@ function ingest$T(astNode, state) {
|
|
|
34423
34449
|
ttl: TTL$6,
|
|
34424
34450
|
namespace: keyPrefix,
|
|
34425
34451
|
representationName: "CurrencyValue",
|
|
34426
|
-
version: VERSION$X
|
|
34452
|
+
version: VERSION$X,
|
|
34453
|
+
ingestionTimestamp: timestamp,
|
|
34427
34454
|
},
|
|
34428
34455
|
});
|
|
34429
34456
|
}
|
|
@@ -34551,7 +34578,7 @@ function mergeData$J(existingData, newData) {
|
|
|
34551
34578
|
};
|
|
34552
34579
|
}
|
|
34553
34580
|
function ingest$S(astNode, state) {
|
|
34554
|
-
const { path, data, luvio } = state;
|
|
34581
|
+
const { path, data, timestamp, luvio } = state;
|
|
34555
34582
|
const key = keyBuilder$X(luvio, path);
|
|
34556
34583
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34557
34584
|
key,
|
|
@@ -34565,7 +34592,8 @@ function ingest$S(astNode, state) {
|
|
|
34565
34592
|
ttl: TTL$6,
|
|
34566
34593
|
namespace: keyPrefix,
|
|
34567
34594
|
representationName: "LongitudeValue",
|
|
34568
|
-
version: VERSION$W
|
|
34595
|
+
version: VERSION$W,
|
|
34596
|
+
ingestionTimestamp: timestamp,
|
|
34569
34597
|
},
|
|
34570
34598
|
});
|
|
34571
34599
|
}
|
|
@@ -34687,7 +34715,7 @@ function mergeData$I(existingData, newData) {
|
|
|
34687
34715
|
};
|
|
34688
34716
|
}
|
|
34689
34717
|
function ingest$R(astNode, state) {
|
|
34690
|
-
const { path, data, luvio } = state;
|
|
34718
|
+
const { path, data, timestamp, luvio } = state;
|
|
34691
34719
|
const key = keyBuilder$W(luvio, path);
|
|
34692
34720
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34693
34721
|
key,
|
|
@@ -34701,7 +34729,8 @@ function ingest$R(astNode, state) {
|
|
|
34701
34729
|
ttl: TTL$6,
|
|
34702
34730
|
namespace: keyPrefix,
|
|
34703
34731
|
representationName: "LatitudeValue",
|
|
34704
|
-
version: VERSION$V
|
|
34732
|
+
version: VERSION$V,
|
|
34733
|
+
ingestionTimestamp: timestamp,
|
|
34705
34734
|
},
|
|
34706
34735
|
});
|
|
34707
34736
|
}
|
|
@@ -34823,7 +34852,7 @@ function mergeData$H(existingData, newData) {
|
|
|
34823
34852
|
};
|
|
34824
34853
|
}
|
|
34825
34854
|
function ingest$Q(astNode, state) {
|
|
34826
|
-
const { path, data, luvio } = state;
|
|
34855
|
+
const { path, data, timestamp, luvio } = state;
|
|
34827
34856
|
const key = keyBuilder$V(luvio, path);
|
|
34828
34857
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34829
34858
|
key,
|
|
@@ -34837,7 +34866,8 @@ function ingest$Q(astNode, state) {
|
|
|
34837
34866
|
ttl: TTL$6,
|
|
34838
34867
|
namespace: keyPrefix,
|
|
34839
34868
|
representationName: "PicklistValue",
|
|
34840
|
-
version: VERSION$U
|
|
34869
|
+
version: VERSION$U,
|
|
34870
|
+
ingestionTimestamp: timestamp,
|
|
34841
34871
|
},
|
|
34842
34872
|
});
|
|
34843
34873
|
}
|
|
@@ -34965,7 +34995,7 @@ function mergeData$G(existingData, newData) {
|
|
|
34965
34995
|
};
|
|
34966
34996
|
}
|
|
34967
34997
|
function ingest$P(astNode, state) {
|
|
34968
|
-
const { path, data, luvio } = state;
|
|
34998
|
+
const { path, data, timestamp, luvio } = state;
|
|
34969
34999
|
const key = keyBuilder$U(luvio, path);
|
|
34970
35000
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34971
35001
|
key,
|
|
@@ -34979,7 +35009,8 @@ function ingest$P(astNode, state) {
|
|
|
34979
35009
|
ttl: TTL$6,
|
|
34980
35010
|
namespace: keyPrefix,
|
|
34981
35011
|
representationName: "MultiPicklistValue",
|
|
34982
|
-
version: VERSION$T
|
|
35012
|
+
version: VERSION$T,
|
|
35013
|
+
ingestionTimestamp: timestamp,
|
|
34983
35014
|
},
|
|
34984
35015
|
});
|
|
34985
35016
|
}
|
|
@@ -35107,7 +35138,7 @@ function mergeData$F(existingData, newData) {
|
|
|
35107
35138
|
};
|
|
35108
35139
|
}
|
|
35109
35140
|
function ingest$O(astNode, state) {
|
|
35110
|
-
const { path, data, luvio } = state;
|
|
35141
|
+
const { path, data, timestamp, luvio } = state;
|
|
35111
35142
|
const key = keyBuilder$T(luvio, path);
|
|
35112
35143
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35113
35144
|
key,
|
|
@@ -35121,7 +35152,8 @@ function ingest$O(astNode, state) {
|
|
|
35121
35152
|
ttl: TTL$6,
|
|
35122
35153
|
namespace: keyPrefix,
|
|
35123
35154
|
representationName: "Base64Value",
|
|
35124
|
-
version: VERSION$S
|
|
35155
|
+
version: VERSION$S,
|
|
35156
|
+
ingestionTimestamp: timestamp,
|
|
35125
35157
|
},
|
|
35126
35158
|
});
|
|
35127
35159
|
}
|
|
@@ -35243,7 +35275,7 @@ function mergeData$E(existingData, newData) {
|
|
|
35243
35275
|
};
|
|
35244
35276
|
}
|
|
35245
35277
|
function ingest$N(astNode, state) {
|
|
35246
|
-
const { path, data, luvio } = state;
|
|
35278
|
+
const { path, data, timestamp, luvio } = state;
|
|
35247
35279
|
const key = keyBuilder$S(luvio, path);
|
|
35248
35280
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35249
35281
|
key,
|
|
@@ -35257,7 +35289,8 @@ function ingest$N(astNode, state) {
|
|
|
35257
35289
|
ttl: TTL$6,
|
|
35258
35290
|
namespace: keyPrefix,
|
|
35259
35291
|
representationName: "JSONValue",
|
|
35260
|
-
version: VERSION$R
|
|
35292
|
+
version: VERSION$R,
|
|
35293
|
+
ingestionTimestamp: timestamp,
|
|
35261
35294
|
},
|
|
35262
35295
|
});
|
|
35263
35296
|
}
|
|
@@ -35783,7 +35816,7 @@ function mergeData$D(existingData, newData) {
|
|
|
35783
35816
|
};
|
|
35784
35817
|
}
|
|
35785
35818
|
function ingest$L(astNode, state) {
|
|
35786
|
-
const { path, data, luvio } = state;
|
|
35819
|
+
const { path, data, timestamp, luvio } = state;
|
|
35787
35820
|
const key = keyBuilder$R(luvio, path);
|
|
35788
35821
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35789
35822
|
key,
|
|
@@ -35797,7 +35830,8 @@ function ingest$L(astNode, state) {
|
|
|
35797
35830
|
ttl: TTL$6,
|
|
35798
35831
|
namespace: keyPrefix,
|
|
35799
35832
|
representationName: "CompoundField",
|
|
35800
|
-
version: VERSION$P
|
|
35833
|
+
version: VERSION$P,
|
|
35834
|
+
ingestionTimestamp: timestamp,
|
|
35801
35835
|
},
|
|
35802
35836
|
});
|
|
35803
35837
|
}
|
|
@@ -36783,7 +36817,7 @@ function mergeData$C(existingData, newData) {
|
|
|
36783
36817
|
};
|
|
36784
36818
|
}
|
|
36785
36819
|
function ingest$K(astNode, state) {
|
|
36786
|
-
const { path, data, luvio } = state;
|
|
36820
|
+
const { path, data, timestamp, luvio } = state;
|
|
36787
36821
|
const key = keyBuilder$Q(luvio, path);
|
|
36788
36822
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
36789
36823
|
key,
|
|
@@ -36797,7 +36831,8 @@ function ingest$K(astNode, state) {
|
|
|
36797
36831
|
ttl: TTL$6,
|
|
36798
36832
|
namespace: keyPrefix,
|
|
36799
36833
|
representationName: "PageInfo",
|
|
36800
|
-
version: VERSION$O
|
|
36834
|
+
version: VERSION$O,
|
|
36835
|
+
ingestionTimestamp: timestamp,
|
|
36801
36836
|
},
|
|
36802
36837
|
});
|
|
36803
36838
|
}
|
|
@@ -36999,7 +37034,7 @@ function mergeData$B(existingData, newData) {
|
|
|
36999
37034
|
};
|
|
37000
37035
|
}
|
|
37001
37036
|
function ingest$J(astNode, state) {
|
|
37002
|
-
const { path, data, luvio } = state;
|
|
37037
|
+
const { path, data, timestamp, luvio } = state;
|
|
37003
37038
|
const key = keyBuilder$P(luvio, path, data);
|
|
37004
37039
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37005
37040
|
key,
|
|
@@ -37016,7 +37051,8 @@ function ingest$J(astNode, state) {
|
|
|
37016
37051
|
ttl: TTL$6,
|
|
37017
37052
|
namespace: keyPrefix,
|
|
37018
37053
|
representationName: "RecordRepresentation",
|
|
37019
|
-
version: VERSION$N
|
|
37054
|
+
version: VERSION$N,
|
|
37055
|
+
ingestionTimestamp: timestamp,
|
|
37020
37056
|
},
|
|
37021
37057
|
});
|
|
37022
37058
|
}
|
|
@@ -37538,7 +37574,7 @@ function mergeData$A(existingData, newData) {
|
|
|
37538
37574
|
};
|
|
37539
37575
|
}
|
|
37540
37576
|
function ingest$I(astNode, state) {
|
|
37541
|
-
const { path, data, luvio } = state;
|
|
37577
|
+
const { path, data, timestamp, luvio } = state;
|
|
37542
37578
|
const key = keyBuilder$O(luvio, path);
|
|
37543
37579
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37544
37580
|
key,
|
|
@@ -37552,7 +37588,8 @@ function ingest$I(astNode, state) {
|
|
|
37552
37588
|
ttl: TTL$6,
|
|
37553
37589
|
namespace: keyPrefix,
|
|
37554
37590
|
representationName: "RecordEdge",
|
|
37555
|
-
version: VERSION$M
|
|
37591
|
+
version: VERSION$M,
|
|
37592
|
+
ingestionTimestamp: timestamp,
|
|
37556
37593
|
},
|
|
37557
37594
|
});
|
|
37558
37595
|
}
|
|
@@ -37762,7 +37799,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
|
|
|
37762
37799
|
}
|
|
37763
37800
|
}
|
|
37764
37801
|
function ingest$H(astNode, state) {
|
|
37765
|
-
const { path, data, luvio } = state;
|
|
37802
|
+
const { path, data, timestamp, luvio } = state;
|
|
37766
37803
|
const key = keyBuilder$N(luvio, path);
|
|
37767
37804
|
return ingestCursorConnectionType(astNode, state, {
|
|
37768
37805
|
key,
|
|
@@ -37778,7 +37815,8 @@ function ingest$H(astNode, state) {
|
|
|
37778
37815
|
ttl: TTL$9,
|
|
37779
37816
|
namespace: keyPrefix,
|
|
37780
37817
|
representationName: "RecordConnection",
|
|
37781
|
-
version: VERSION$L
|
|
37818
|
+
version: VERSION$L,
|
|
37819
|
+
ingestionTimestamp: timestamp,
|
|
37782
37820
|
},
|
|
37783
37821
|
});
|
|
37784
37822
|
}
|
|
@@ -37947,7 +37985,7 @@ function mergeData$y(existingData, newData) {
|
|
|
37947
37985
|
};
|
|
37948
37986
|
}
|
|
37949
37987
|
function ingest$G(astNode, state) {
|
|
37950
|
-
const { path, data, luvio } = state;
|
|
37988
|
+
const { path, data, timestamp, luvio } = state;
|
|
37951
37989
|
const key = keyBuilder$M(luvio, path);
|
|
37952
37990
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37953
37991
|
key,
|
|
@@ -37961,7 +37999,8 @@ function ingest$G(astNode, state) {
|
|
|
37961
37999
|
ttl: TTL$6,
|
|
37962
38000
|
namespace: keyPrefix,
|
|
37963
38001
|
representationName: "RecordQuery",
|
|
37964
|
-
version: VERSION$K
|
|
38002
|
+
version: VERSION$K,
|
|
38003
|
+
ingestionTimestamp: timestamp,
|
|
37965
38004
|
},
|
|
37966
38005
|
});
|
|
37967
38006
|
}
|
|
@@ -38091,7 +38130,7 @@ function mergeData$x(existingData, newData) {
|
|
|
38091
38130
|
};
|
|
38092
38131
|
}
|
|
38093
38132
|
function ingest$F(astNode, state) {
|
|
38094
|
-
const { path, data, luvio } = state;
|
|
38133
|
+
const { path, data, timestamp, luvio } = state;
|
|
38095
38134
|
const key = keyBuilder$L(luvio, path);
|
|
38096
38135
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38097
38136
|
key,
|
|
@@ -38105,7 +38144,8 @@ function ingest$F(astNode, state) {
|
|
|
38105
38144
|
ttl: TTL$6,
|
|
38106
38145
|
namespace: keyPrefix,
|
|
38107
38146
|
representationName: "BooleanAggregate",
|
|
38108
|
-
version: VERSION$J
|
|
38147
|
+
version: VERSION$J,
|
|
38148
|
+
ingestionTimestamp: timestamp,
|
|
38109
38149
|
},
|
|
38110
38150
|
});
|
|
38111
38151
|
}
|
|
@@ -38274,7 +38314,7 @@ function mergeData$w(existingData, newData) {
|
|
|
38274
38314
|
};
|
|
38275
38315
|
}
|
|
38276
38316
|
function ingest$E(astNode, state) {
|
|
38277
|
-
const { path, data, luvio } = state;
|
|
38317
|
+
const { path, data, timestamp, luvio } = state;
|
|
38278
38318
|
const key = keyBuilder$K(luvio, path);
|
|
38279
38319
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38280
38320
|
key,
|
|
@@ -38288,7 +38328,8 @@ function ingest$E(astNode, state) {
|
|
|
38288
38328
|
ttl: TTL$6,
|
|
38289
38329
|
namespace: keyPrefix,
|
|
38290
38330
|
representationName: "CurrencyAggregate",
|
|
38291
|
-
version: VERSION$I
|
|
38331
|
+
version: VERSION$I,
|
|
38332
|
+
ingestionTimestamp: timestamp,
|
|
38292
38333
|
},
|
|
38293
38334
|
});
|
|
38294
38335
|
}
|
|
@@ -38536,7 +38577,7 @@ function mergeData$v(existingData, newData) {
|
|
|
38536
38577
|
};
|
|
38537
38578
|
}
|
|
38538
38579
|
function ingest$D(astNode, state) {
|
|
38539
|
-
const { path, data, luvio } = state;
|
|
38580
|
+
const { path, data, timestamp, luvio } = state;
|
|
38540
38581
|
const key = keyBuilder$J(luvio, path);
|
|
38541
38582
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38542
38583
|
key,
|
|
@@ -38550,7 +38591,8 @@ function ingest$D(astNode, state) {
|
|
|
38550
38591
|
ttl: TTL$6,
|
|
38551
38592
|
namespace: keyPrefix,
|
|
38552
38593
|
representationName: "DateFunctionAggregation",
|
|
38553
|
-
version: VERSION$H
|
|
38594
|
+
version: VERSION$H,
|
|
38595
|
+
ingestionTimestamp: timestamp,
|
|
38554
38596
|
},
|
|
38555
38597
|
});
|
|
38556
38598
|
}
|
|
@@ -38684,7 +38726,7 @@ function mergeData$u(existingData, newData) {
|
|
|
38684
38726
|
};
|
|
38685
38727
|
}
|
|
38686
38728
|
function ingest$C(astNode, state) {
|
|
38687
|
-
const { path, data, luvio } = state;
|
|
38729
|
+
const { path, data, timestamp, luvio } = state;
|
|
38688
38730
|
const key = keyBuilder$I(luvio, path);
|
|
38689
38731
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38690
38732
|
key,
|
|
@@ -38698,7 +38740,8 @@ function ingest$C(astNode, state) {
|
|
|
38698
38740
|
ttl: TTL$6,
|
|
38699
38741
|
namespace: keyPrefix,
|
|
38700
38742
|
representationName: "DateAggregate",
|
|
38701
|
-
version: VERSION$G
|
|
38743
|
+
version: VERSION$G,
|
|
38744
|
+
ingestionTimestamp: timestamp,
|
|
38702
38745
|
},
|
|
38703
38746
|
});
|
|
38704
38747
|
}
|
|
@@ -39065,7 +39108,7 @@ function mergeData$t(existingData, newData) {
|
|
|
39065
39108
|
};
|
|
39066
39109
|
}
|
|
39067
39110
|
function ingest$B(astNode, state) {
|
|
39068
|
-
const { path, data, luvio } = state;
|
|
39111
|
+
const { path, data, timestamp, luvio } = state;
|
|
39069
39112
|
const key = keyBuilder$H(luvio, path);
|
|
39070
39113
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39071
39114
|
key,
|
|
@@ -39079,7 +39122,8 @@ function ingest$B(astNode, state) {
|
|
|
39079
39122
|
ttl: TTL$6,
|
|
39080
39123
|
namespace: keyPrefix,
|
|
39081
39124
|
representationName: "DoubleAggregate",
|
|
39082
|
-
version: VERSION$F
|
|
39125
|
+
version: VERSION$F,
|
|
39126
|
+
ingestionTimestamp: timestamp,
|
|
39083
39127
|
},
|
|
39084
39128
|
});
|
|
39085
39129
|
}
|
|
@@ -39318,7 +39362,7 @@ function mergeData$s(existingData, newData) {
|
|
|
39318
39362
|
};
|
|
39319
39363
|
}
|
|
39320
39364
|
function ingest$A(astNode, state) {
|
|
39321
|
-
const { path, data, luvio } = state;
|
|
39365
|
+
const { path, data, timestamp, luvio } = state;
|
|
39322
39366
|
const key = keyBuilder$G(luvio, path);
|
|
39323
39367
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39324
39368
|
key,
|
|
@@ -39332,7 +39376,8 @@ function ingest$A(astNode, state) {
|
|
|
39332
39376
|
ttl: TTL$6,
|
|
39333
39377
|
namespace: keyPrefix,
|
|
39334
39378
|
representationName: "EmailAggregate",
|
|
39335
|
-
version: VERSION$E
|
|
39379
|
+
version: VERSION$E,
|
|
39380
|
+
ingestionTimestamp: timestamp,
|
|
39336
39381
|
},
|
|
39337
39382
|
});
|
|
39338
39383
|
}
|
|
@@ -39563,7 +39608,7 @@ function mergeData$r(existingData, newData) {
|
|
|
39563
39608
|
};
|
|
39564
39609
|
}
|
|
39565
39610
|
function ingest$z(astNode, state) {
|
|
39566
|
-
const { path, data, luvio } = state;
|
|
39611
|
+
const { path, data, timestamp, luvio } = state;
|
|
39567
39612
|
const key = keyBuilder$F(luvio, path);
|
|
39568
39613
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39569
39614
|
key,
|
|
@@ -39577,7 +39622,8 @@ function ingest$z(astNode, state) {
|
|
|
39577
39622
|
ttl: TTL$6,
|
|
39578
39623
|
namespace: keyPrefix,
|
|
39579
39624
|
representationName: "IDAggregate",
|
|
39580
|
-
version: VERSION$D
|
|
39625
|
+
version: VERSION$D,
|
|
39626
|
+
ingestionTimestamp: timestamp,
|
|
39581
39627
|
},
|
|
39582
39628
|
});
|
|
39583
39629
|
}
|
|
@@ -39808,7 +39854,7 @@ function mergeData$q(existingData, newData) {
|
|
|
39808
39854
|
};
|
|
39809
39855
|
}
|
|
39810
39856
|
function ingest$y(astNode, state) {
|
|
39811
|
-
const { path, data, luvio } = state;
|
|
39857
|
+
const { path, data, timestamp, luvio } = state;
|
|
39812
39858
|
const key = keyBuilder$E(luvio, path);
|
|
39813
39859
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39814
39860
|
key,
|
|
@@ -39822,7 +39868,8 @@ function ingest$y(astNode, state) {
|
|
|
39822
39868
|
ttl: TTL$6,
|
|
39823
39869
|
namespace: keyPrefix,
|
|
39824
39870
|
representationName: "IntAggregate",
|
|
39825
|
-
version: VERSION$C
|
|
39871
|
+
version: VERSION$C,
|
|
39872
|
+
ingestionTimestamp: timestamp,
|
|
39826
39873
|
},
|
|
39827
39874
|
});
|
|
39828
39875
|
}
|
|
@@ -40081,7 +40128,7 @@ function mergeData$p(existingData, newData) {
|
|
|
40081
40128
|
};
|
|
40082
40129
|
}
|
|
40083
40130
|
function ingest$x(astNode, state) {
|
|
40084
|
-
const { path, data, luvio } = state;
|
|
40131
|
+
const { path, data, timestamp, luvio } = state;
|
|
40085
40132
|
const key = keyBuilder$D(luvio, path);
|
|
40086
40133
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40087
40134
|
key,
|
|
@@ -40095,7 +40142,8 @@ function ingest$x(astNode, state) {
|
|
|
40095
40142
|
ttl: TTL$6,
|
|
40096
40143
|
namespace: keyPrefix,
|
|
40097
40144
|
representationName: "LatitudeAggregate",
|
|
40098
|
-
version: VERSION$B
|
|
40145
|
+
version: VERSION$B,
|
|
40146
|
+
ingestionTimestamp: timestamp,
|
|
40099
40147
|
},
|
|
40100
40148
|
});
|
|
40101
40149
|
}
|
|
@@ -40337,7 +40385,7 @@ function mergeData$o(existingData, newData) {
|
|
|
40337
40385
|
};
|
|
40338
40386
|
}
|
|
40339
40387
|
function ingest$w(astNode, state) {
|
|
40340
|
-
const { path, data, luvio } = state;
|
|
40388
|
+
const { path, data, timestamp, luvio } = state;
|
|
40341
40389
|
const key = keyBuilder$C(luvio, path);
|
|
40342
40390
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40343
40391
|
key,
|
|
@@ -40351,7 +40399,8 @@ function ingest$w(astNode, state) {
|
|
|
40351
40399
|
ttl: TTL$6,
|
|
40352
40400
|
namespace: keyPrefix,
|
|
40353
40401
|
representationName: "LongitudeAggregate",
|
|
40354
|
-
version: VERSION$A
|
|
40402
|
+
version: VERSION$A,
|
|
40403
|
+
ingestionTimestamp: timestamp,
|
|
40355
40404
|
},
|
|
40356
40405
|
});
|
|
40357
40406
|
}
|
|
@@ -40593,7 +40642,7 @@ function mergeData$n(existingData, newData) {
|
|
|
40593
40642
|
};
|
|
40594
40643
|
}
|
|
40595
40644
|
function ingest$v(astNode, state) {
|
|
40596
|
-
const { path, data, luvio } = state;
|
|
40645
|
+
const { path, data, timestamp, luvio } = state;
|
|
40597
40646
|
const key = keyBuilder$B(luvio, path);
|
|
40598
40647
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40599
40648
|
key,
|
|
@@ -40607,7 +40656,8 @@ function ingest$v(astNode, state) {
|
|
|
40607
40656
|
ttl: TTL$6,
|
|
40608
40657
|
namespace: keyPrefix,
|
|
40609
40658
|
representationName: "LongAggregate",
|
|
40610
|
-
version: VERSION$z
|
|
40659
|
+
version: VERSION$z,
|
|
40660
|
+
ingestionTimestamp: timestamp,
|
|
40611
40661
|
},
|
|
40612
40662
|
});
|
|
40613
40663
|
}
|
|
@@ -40866,7 +40916,7 @@ function mergeData$m(existingData, newData) {
|
|
|
40866
40916
|
};
|
|
40867
40917
|
}
|
|
40868
40918
|
function ingest$u(astNode, state) {
|
|
40869
|
-
const { path, data, luvio } = state;
|
|
40919
|
+
const { path, data, timestamp, luvio } = state;
|
|
40870
40920
|
const key = keyBuilder$A(luvio, path);
|
|
40871
40921
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40872
40922
|
key,
|
|
@@ -40880,7 +40930,8 @@ function ingest$u(astNode, state) {
|
|
|
40880
40930
|
ttl: TTL$6,
|
|
40881
40931
|
namespace: keyPrefix,
|
|
40882
40932
|
representationName: "PhoneNumberAggregate",
|
|
40883
|
-
version: VERSION$y
|
|
40933
|
+
version: VERSION$y,
|
|
40934
|
+
ingestionTimestamp: timestamp,
|
|
40884
40935
|
},
|
|
40885
40936
|
});
|
|
40886
40937
|
}
|
|
@@ -41111,7 +41162,7 @@ function mergeData$l(existingData, newData) {
|
|
|
41111
41162
|
};
|
|
41112
41163
|
}
|
|
41113
41164
|
function ingest$t(astNode, state) {
|
|
41114
|
-
const { path, data, luvio } = state;
|
|
41165
|
+
const { path, data, timestamp, luvio } = state;
|
|
41115
41166
|
const key = keyBuilder$z(luvio, path);
|
|
41116
41167
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41117
41168
|
key,
|
|
@@ -41125,7 +41176,8 @@ function ingest$t(astNode, state) {
|
|
|
41125
41176
|
ttl: TTL$6,
|
|
41126
41177
|
namespace: keyPrefix,
|
|
41127
41178
|
representationName: "PicklistAggregate",
|
|
41128
|
-
version: VERSION$x
|
|
41179
|
+
version: VERSION$x,
|
|
41180
|
+
ingestionTimestamp: timestamp,
|
|
41129
41181
|
},
|
|
41130
41182
|
});
|
|
41131
41183
|
}
|
|
@@ -41362,7 +41414,7 @@ function mergeData$k(existingData, newData) {
|
|
|
41362
41414
|
};
|
|
41363
41415
|
}
|
|
41364
41416
|
function ingest$s(astNode, state) {
|
|
41365
|
-
const { path, data, luvio } = state;
|
|
41417
|
+
const { path, data, timestamp, luvio } = state;
|
|
41366
41418
|
const key = keyBuilder$y(luvio, path);
|
|
41367
41419
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41368
41420
|
key,
|
|
@@ -41376,7 +41428,8 @@ function ingest$s(astNode, state) {
|
|
|
41376
41428
|
ttl: TTL$6,
|
|
41377
41429
|
namespace: keyPrefix,
|
|
41378
41430
|
representationName: "TextAreaAggregate",
|
|
41379
|
-
version: VERSION$w
|
|
41431
|
+
version: VERSION$w,
|
|
41432
|
+
ingestionTimestamp: timestamp,
|
|
41380
41433
|
},
|
|
41381
41434
|
});
|
|
41382
41435
|
}
|
|
@@ -41607,7 +41660,7 @@ function mergeData$j(existingData, newData) {
|
|
|
41607
41660
|
};
|
|
41608
41661
|
}
|
|
41609
41662
|
function ingest$r(astNode, state) {
|
|
41610
|
-
const { path, data, luvio } = state;
|
|
41663
|
+
const { path, data, timestamp, luvio } = state;
|
|
41611
41664
|
const key = keyBuilder$x(luvio, path);
|
|
41612
41665
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41613
41666
|
key,
|
|
@@ -41621,7 +41674,8 @@ function ingest$r(astNode, state) {
|
|
|
41621
41674
|
ttl: TTL$6,
|
|
41622
41675
|
namespace: keyPrefix,
|
|
41623
41676
|
representationName: "TimeAggregate",
|
|
41624
|
-
version: VERSION$v
|
|
41677
|
+
version: VERSION$v,
|
|
41678
|
+
ingestionTimestamp: timestamp,
|
|
41625
41679
|
},
|
|
41626
41680
|
});
|
|
41627
41681
|
}
|
|
@@ -41796,7 +41850,7 @@ function mergeData$i(existingData, newData) {
|
|
|
41796
41850
|
};
|
|
41797
41851
|
}
|
|
41798
41852
|
function ingest$q(astNode, state) {
|
|
41799
|
-
const { path, data, luvio } = state;
|
|
41853
|
+
const { path, data, timestamp, luvio } = state;
|
|
41800
41854
|
const key = keyBuilder$w(luvio, path);
|
|
41801
41855
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41802
41856
|
key,
|
|
@@ -41810,7 +41864,8 @@ function ingest$q(astNode, state) {
|
|
|
41810
41864
|
ttl: TTL$6,
|
|
41811
41865
|
namespace: keyPrefix,
|
|
41812
41866
|
representationName: "UrlAggregate",
|
|
41813
|
-
version: VERSION$u
|
|
41867
|
+
version: VERSION$u,
|
|
41868
|
+
ingestionTimestamp: timestamp,
|
|
41814
41869
|
},
|
|
41815
41870
|
});
|
|
41816
41871
|
}
|
|
@@ -42164,7 +42219,7 @@ function mergeData$h(existingData, newData) {
|
|
|
42164
42219
|
};
|
|
42165
42220
|
}
|
|
42166
42221
|
function ingest$p(astNode, state) {
|
|
42167
|
-
const { path, data, luvio } = state;
|
|
42222
|
+
const { path, data, timestamp, luvio } = state;
|
|
42168
42223
|
const key = keyBuilder$v(luvio, path);
|
|
42169
42224
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42170
42225
|
key,
|
|
@@ -42178,7 +42233,8 @@ function ingest$p(astNode, state) {
|
|
|
42178
42233
|
ttl: TTL$6,
|
|
42179
42234
|
namespace: keyPrefix,
|
|
42180
42235
|
representationName: "RecordAggregate",
|
|
42181
|
-
version: VERSION$t
|
|
42236
|
+
version: VERSION$t,
|
|
42237
|
+
ingestionTimestamp: timestamp,
|
|
42182
42238
|
},
|
|
42183
42239
|
});
|
|
42184
42240
|
}
|
|
@@ -42532,7 +42588,7 @@ function mergeData$g(existingData, newData) {
|
|
|
42532
42588
|
};
|
|
42533
42589
|
}
|
|
42534
42590
|
function ingest$o(astNode, state) {
|
|
42535
|
-
const { path, data, luvio } = state;
|
|
42591
|
+
const { path, data, timestamp, luvio } = state;
|
|
42536
42592
|
const key = keyBuilder$u(luvio, path);
|
|
42537
42593
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42538
42594
|
key,
|
|
@@ -42546,7 +42602,8 @@ function ingest$o(astNode, state) {
|
|
|
42546
42602
|
ttl: TTL$6,
|
|
42547
42603
|
namespace: keyPrefix,
|
|
42548
42604
|
representationName: "RecordResult",
|
|
42549
|
-
version: VERSION$s
|
|
42605
|
+
version: VERSION$s,
|
|
42606
|
+
ingestionTimestamp: timestamp,
|
|
42550
42607
|
},
|
|
42551
42608
|
});
|
|
42552
42609
|
}
|
|
@@ -42694,7 +42751,7 @@ function mergeData$f(existingData, newData) {
|
|
|
42694
42751
|
};
|
|
42695
42752
|
}
|
|
42696
42753
|
function ingest$n(astNode, state) {
|
|
42697
|
-
const { path, data, luvio } = state;
|
|
42754
|
+
const { path, data, timestamp, luvio } = state;
|
|
42698
42755
|
const key = keyBuilder$t(luvio, path);
|
|
42699
42756
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42700
42757
|
key,
|
|
@@ -42708,7 +42765,8 @@ function ingest$n(astNode, state) {
|
|
|
42708
42765
|
ttl: TTL$6,
|
|
42709
42766
|
namespace: keyPrefix,
|
|
42710
42767
|
representationName: "RecordAggregateEdge",
|
|
42711
|
-
version: VERSION$r
|
|
42768
|
+
version: VERSION$r,
|
|
42769
|
+
ingestionTimestamp: timestamp,
|
|
42712
42770
|
},
|
|
42713
42771
|
});
|
|
42714
42772
|
}
|
|
@@ -42917,7 +42975,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
|
|
|
42917
42975
|
}
|
|
42918
42976
|
}
|
|
42919
42977
|
function ingest$m(astNode, state) {
|
|
42920
|
-
const { path, data, luvio } = state;
|
|
42978
|
+
const { path, data, timestamp, luvio } = state;
|
|
42921
42979
|
const key = keyBuilder$s(luvio, path);
|
|
42922
42980
|
return ingestCursorConnectionType(astNode, state, {
|
|
42923
42981
|
key,
|
|
@@ -42933,7 +42991,8 @@ function ingest$m(astNode, state) {
|
|
|
42933
42991
|
ttl: TTL$6,
|
|
42934
42992
|
namespace: keyPrefix,
|
|
42935
42993
|
representationName: "RecordAggregateConnection",
|
|
42936
|
-
version: VERSION$q
|
|
42994
|
+
version: VERSION$q,
|
|
42995
|
+
ingestionTimestamp: timestamp,
|
|
42937
42996
|
},
|
|
42938
42997
|
});
|
|
42939
42998
|
}
|
|
@@ -43150,7 +43209,7 @@ function mergeData$d(existingData, newData) {
|
|
|
43150
43209
|
};
|
|
43151
43210
|
}
|
|
43152
43211
|
function ingest$l(astNode, state) {
|
|
43153
|
-
const { path, data, luvio } = state;
|
|
43212
|
+
const { path, data, timestamp, luvio } = state;
|
|
43154
43213
|
const key = keyBuilder$r(luvio, path);
|
|
43155
43214
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43156
43215
|
key,
|
|
@@ -43164,7 +43223,8 @@ function ingest$l(astNode, state) {
|
|
|
43164
43223
|
ttl: TTL$6,
|
|
43165
43224
|
namespace: keyPrefix,
|
|
43166
43225
|
representationName: "RecordQueryAggregate",
|
|
43167
|
-
version: VERSION$p
|
|
43226
|
+
version: VERSION$p,
|
|
43227
|
+
ingestionTimestamp: timestamp,
|
|
43168
43228
|
},
|
|
43169
43229
|
});
|
|
43170
43230
|
}
|
|
@@ -43294,7 +43354,7 @@ function mergeData$c(existingData, newData) {
|
|
|
43294
43354
|
};
|
|
43295
43355
|
}
|
|
43296
43356
|
function ingest$k(astNode, state) {
|
|
43297
|
-
const { path, data, luvio } = state;
|
|
43357
|
+
const { path, data, timestamp, luvio } = state;
|
|
43298
43358
|
const key = keyBuilder$q(luvio, path);
|
|
43299
43359
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43300
43360
|
key,
|
|
@@ -43308,7 +43368,8 @@ function ingest$k(astNode, state) {
|
|
|
43308
43368
|
ttl: TTL$6,
|
|
43309
43369
|
namespace: keyPrefix,
|
|
43310
43370
|
representationName: "ChildRelationship",
|
|
43311
|
-
version: VERSION$o
|
|
43371
|
+
version: VERSION$o,
|
|
43372
|
+
ingestionTimestamp: timestamp,
|
|
43312
43373
|
},
|
|
43313
43374
|
});
|
|
43314
43375
|
}
|
|
@@ -43486,7 +43547,7 @@ function mergeData$b(existingData, newData) {
|
|
|
43486
43547
|
};
|
|
43487
43548
|
}
|
|
43488
43549
|
function ingest$j(astNode, state) {
|
|
43489
|
-
const { path, data, luvio } = state;
|
|
43550
|
+
const { path, data, timestamp, luvio } = state;
|
|
43490
43551
|
const key = keyBuilder$p(luvio, path);
|
|
43491
43552
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43492
43553
|
key,
|
|
@@ -43500,7 +43561,8 @@ function ingest$j(astNode, state) {
|
|
|
43500
43561
|
ttl: TTL$6,
|
|
43501
43562
|
namespace: keyPrefix,
|
|
43502
43563
|
representationName: "DependentField",
|
|
43503
|
-
version: VERSION$n
|
|
43564
|
+
version: VERSION$n,
|
|
43565
|
+
ingestionTimestamp: timestamp,
|
|
43504
43566
|
},
|
|
43505
43567
|
});
|
|
43506
43568
|
}
|
|
@@ -43625,7 +43687,7 @@ function mergeData$a(existingData, newData) {
|
|
|
43625
43687
|
};
|
|
43626
43688
|
}
|
|
43627
43689
|
function ingest$i(astNode, state) {
|
|
43628
|
-
const { path, data, luvio } = state;
|
|
43690
|
+
const { path, data, timestamp, luvio } = state;
|
|
43629
43691
|
const key = keyBuilder$o(luvio, path);
|
|
43630
43692
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43631
43693
|
key,
|
|
@@ -43639,7 +43701,8 @@ function ingest$i(astNode, state) {
|
|
|
43639
43701
|
ttl: TTL$6,
|
|
43640
43702
|
namespace: keyPrefix,
|
|
43641
43703
|
representationName: "FilteredLookupInfo",
|
|
43642
|
-
version: VERSION$m
|
|
43704
|
+
version: VERSION$m,
|
|
43705
|
+
ingestionTimestamp: timestamp,
|
|
43643
43706
|
},
|
|
43644
43707
|
});
|
|
43645
43708
|
}
|
|
@@ -43779,7 +43842,7 @@ function mergeData$9(existingData, newData) {
|
|
|
43779
43842
|
};
|
|
43780
43843
|
}
|
|
43781
43844
|
function ingest$h(astNode, state) {
|
|
43782
|
-
const { path, data, luvio } = state;
|
|
43845
|
+
const { path, data, timestamp, luvio } = state;
|
|
43783
43846
|
const key = keyBuilder$n(luvio, path);
|
|
43784
43847
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43785
43848
|
key,
|
|
@@ -43793,7 +43856,8 @@ function ingest$h(astNode, state) {
|
|
|
43793
43856
|
ttl: TTL$6,
|
|
43794
43857
|
namespace: keyPrefix,
|
|
43795
43858
|
representationName: "ReferenceToInfo",
|
|
43796
|
-
version: VERSION$l
|
|
43859
|
+
version: VERSION$l,
|
|
43860
|
+
ingestionTimestamp: timestamp,
|
|
43797
43861
|
},
|
|
43798
43862
|
});
|
|
43799
43863
|
}
|
|
@@ -43953,7 +44017,7 @@ function mergeData$8(existingData, newData) {
|
|
|
43953
44017
|
};
|
|
43954
44018
|
}
|
|
43955
44019
|
function ingest$g(astNode, state) {
|
|
43956
|
-
const { path, data, luvio } = state;
|
|
44020
|
+
const { path, data, timestamp, luvio } = state;
|
|
43957
44021
|
const key = keyBuilder$m(luvio, path);
|
|
43958
44022
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43959
44023
|
key,
|
|
@@ -43967,7 +44031,8 @@ function ingest$g(astNode, state) {
|
|
|
43967
44031
|
ttl: TTL$6,
|
|
43968
44032
|
namespace: keyPrefix,
|
|
43969
44033
|
representationName: "Field",
|
|
43970
|
-
version: VERSION$k
|
|
44034
|
+
version: VERSION$k,
|
|
44035
|
+
ingestionTimestamp: timestamp,
|
|
43971
44036
|
},
|
|
43972
44037
|
});
|
|
43973
44038
|
}
|
|
@@ -44345,7 +44410,7 @@ function mergeData$7(existingData, newData) {
|
|
|
44345
44410
|
};
|
|
44346
44411
|
}
|
|
44347
44412
|
function ingest$f(astNode, state) {
|
|
44348
|
-
const { path, data, luvio } = state;
|
|
44413
|
+
const { path, data, timestamp, luvio } = state;
|
|
44349
44414
|
const key = keyBuilder$l(luvio, path);
|
|
44350
44415
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44351
44416
|
key,
|
|
@@ -44359,7 +44424,8 @@ function ingest$f(astNode, state) {
|
|
|
44359
44424
|
ttl: TTL$6,
|
|
44360
44425
|
namespace: keyPrefix,
|
|
44361
44426
|
representationName: "RecordTypeInfo",
|
|
44362
|
-
version: VERSION$j
|
|
44427
|
+
version: VERSION$j,
|
|
44428
|
+
ingestionTimestamp: timestamp,
|
|
44363
44429
|
},
|
|
44364
44430
|
});
|
|
44365
44431
|
}
|
|
@@ -44520,7 +44586,7 @@ function mergeData$6(existingData, newData) {
|
|
|
44520
44586
|
};
|
|
44521
44587
|
}
|
|
44522
44588
|
function ingest$e(astNode, state) {
|
|
44523
|
-
const { path, data, luvio } = state;
|
|
44589
|
+
const { path, data, timestamp, luvio } = state;
|
|
44524
44590
|
const key = keyBuilder$k(luvio, path);
|
|
44525
44591
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44526
44592
|
key,
|
|
@@ -44534,7 +44600,8 @@ function ingest$e(astNode, state) {
|
|
|
44534
44600
|
ttl: TTL$6,
|
|
44535
44601
|
namespace: keyPrefix,
|
|
44536
44602
|
representationName: "ThemeInfo",
|
|
44537
|
-
version: VERSION$i
|
|
44603
|
+
version: VERSION$i,
|
|
44604
|
+
ingestionTimestamp: timestamp,
|
|
44538
44605
|
},
|
|
44539
44606
|
});
|
|
44540
44607
|
}
|
|
@@ -44660,7 +44727,7 @@ function mergeData$5(existingData, newData) {
|
|
|
44660
44727
|
};
|
|
44661
44728
|
}
|
|
44662
44729
|
function ingest$d(astNode, state) {
|
|
44663
|
-
const { path, data, luvio } = state;
|
|
44730
|
+
const { path, data, timestamp, luvio } = state;
|
|
44664
44731
|
const key = keyBuilder$j(luvio, path);
|
|
44665
44732
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44666
44733
|
key,
|
|
@@ -44674,7 +44741,8 @@ function ingest$d(astNode, state) {
|
|
|
44674
44741
|
ttl: TTL$8,
|
|
44675
44742
|
namespace: keyPrefix,
|
|
44676
44743
|
representationName: "ObjectInfo",
|
|
44677
|
-
version: VERSION$h
|
|
44744
|
+
version: VERSION$h,
|
|
44745
|
+
ingestionTimestamp: timestamp,
|
|
44678
44746
|
},
|
|
44679
44747
|
});
|
|
44680
44748
|
}
|
|
@@ -45064,7 +45132,7 @@ function mergeData$4(existingData, newData) {
|
|
|
45064
45132
|
};
|
|
45065
45133
|
}
|
|
45066
45134
|
function ingest$c(astNode, state) {
|
|
45067
|
-
const { path, data, luvio } = state;
|
|
45135
|
+
const { path, data, timestamp, luvio } = state;
|
|
45068
45136
|
const key = keyBuilder$i(luvio, path);
|
|
45069
45137
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45070
45138
|
key,
|
|
@@ -45078,7 +45146,8 @@ function ingest$c(astNode, state) {
|
|
|
45078
45146
|
ttl: TTL$6,
|
|
45079
45147
|
namespace: keyPrefix,
|
|
45080
45148
|
representationName: "ListColumn",
|
|
45081
|
-
version: VERSION$g
|
|
45149
|
+
version: VERSION$g,
|
|
45150
|
+
ingestionTimestamp: timestamp,
|
|
45082
45151
|
},
|
|
45083
45152
|
});
|
|
45084
45153
|
}
|
|
@@ -45224,7 +45293,7 @@ function mergeData$3(existingData, newData) {
|
|
|
45224
45293
|
};
|
|
45225
45294
|
}
|
|
45226
45295
|
function ingest$b(astNode, state) {
|
|
45227
|
-
const { path, data, luvio } = state;
|
|
45296
|
+
const { path, data, timestamp, luvio } = state;
|
|
45228
45297
|
const key = keyBuilder$h(luvio, path);
|
|
45229
45298
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45230
45299
|
key,
|
|
@@ -45238,7 +45307,8 @@ function ingest$b(astNode, state) {
|
|
|
45238
45307
|
ttl: TTL$6,
|
|
45239
45308
|
namespace: keyPrefix,
|
|
45240
45309
|
representationName: "ListOrder",
|
|
45241
|
-
version: VERSION$f
|
|
45310
|
+
version: VERSION$f,
|
|
45311
|
+
ingestionTimestamp: timestamp,
|
|
45242
45312
|
},
|
|
45243
45313
|
});
|
|
45244
45314
|
}
|
|
@@ -45373,7 +45443,7 @@ function mergeData$2(existingData, newData) {
|
|
|
45373
45443
|
};
|
|
45374
45444
|
}
|
|
45375
45445
|
function ingest$a(astNode, state) {
|
|
45376
|
-
const { path, data, luvio } = state;
|
|
45446
|
+
const { path, data, timestamp, luvio } = state;
|
|
45377
45447
|
const key = keyBuilder$g(luvio, path);
|
|
45378
45448
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45379
45449
|
key,
|
|
@@ -45387,7 +45457,8 @@ function ingest$a(astNode, state) {
|
|
|
45387
45457
|
ttl: TTL$7,
|
|
45388
45458
|
namespace: keyPrefix,
|
|
45389
45459
|
representationName: "RelatedListInfo",
|
|
45390
|
-
version: VERSION$e
|
|
45460
|
+
version: VERSION$e,
|
|
45461
|
+
ingestionTimestamp: timestamp,
|
|
45391
45462
|
},
|
|
45392
45463
|
});
|
|
45393
45464
|
}
|
|
@@ -45609,7 +45680,7 @@ function mergeData$1(existingData, newData) {
|
|
|
45609
45680
|
};
|
|
45610
45681
|
}
|
|
45611
45682
|
function ingest$9(astNode, state) {
|
|
45612
|
-
const { path, data, luvio } = state;
|
|
45683
|
+
const { path, data, timestamp, luvio } = state;
|
|
45613
45684
|
const key = keyBuilder$f(luvio, path);
|
|
45614
45685
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45615
45686
|
key,
|
|
@@ -45623,7 +45694,8 @@ function ingest$9(astNode, state) {
|
|
|
45623
45694
|
ttl: TTL$6,
|
|
45624
45695
|
namespace: keyPrefix,
|
|
45625
45696
|
representationName: "UIAPI",
|
|
45626
|
-
version: VERSION$d
|
|
45697
|
+
version: VERSION$d,
|
|
45698
|
+
ingestionTimestamp: timestamp,
|
|
45627
45699
|
},
|
|
45628
45700
|
});
|
|
45629
45701
|
}
|
|
@@ -45847,7 +45919,7 @@ function mergeData(existingData, newData) {
|
|
|
45847
45919
|
};
|
|
45848
45920
|
}
|
|
45849
45921
|
function ingest$8(astNode, state) {
|
|
45850
|
-
const { path, data, luvio } = state;
|
|
45922
|
+
const { path, data, timestamp, luvio } = state;
|
|
45851
45923
|
const key = keyBuilder$e(luvio, astNode, state.variables, state.fragments);
|
|
45852
45924
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45853
45925
|
key,
|
|
@@ -45861,7 +45933,8 @@ function ingest$8(astNode, state) {
|
|
|
45861
45933
|
ttl: TTL$6,
|
|
45862
45934
|
namespace: keyPrefix,
|
|
45863
45935
|
representationName: "Query",
|
|
45864
|
-
version: VERSION$c
|
|
45936
|
+
version: VERSION$c,
|
|
45937
|
+
ingestionTimestamp: timestamp,
|
|
45865
45938
|
},
|
|
45866
45939
|
});
|
|
45867
45940
|
}
|