@salesforce/lwc-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/main.js +208 -134
- 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,
|
|
@@ -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
|
}
|
|
@@ -22289,7 +22293,10 @@ const dynamicIngest$4 = (ingestParams) => {
|
|
|
22289
22293
|
if (existingRecord === undefined || equals$R(existingRecord, incomingRecord) === false) {
|
|
22290
22294
|
luvio.storePublish(key, incomingRecord);
|
|
22291
22295
|
}
|
|
22292
|
-
luvio.publishStoreMetadata(key,
|
|
22296
|
+
luvio.publishStoreMetadata(key, {
|
|
22297
|
+
...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
|
|
22298
|
+
ingestionTimestamp: timestamp,
|
|
22299
|
+
});
|
|
22293
22300
|
return createLink$1(key);
|
|
22294
22301
|
};
|
|
22295
22302
|
};
|
|
@@ -34959,6 +34966,7 @@ const ingest$1g = function RelatedListRecordCollectionRepresentationIngest(input
|
|
|
34959
34966
|
namespace: "UiApi",
|
|
34960
34967
|
version: VERSION$1k,
|
|
34961
34968
|
representationName: RepresentationType$i,
|
|
34969
|
+
ingestionTimestamp: timestamp,
|
|
34962
34970
|
};
|
|
34963
34971
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
34964
34972
|
}
|
|
@@ -37696,7 +37704,7 @@ function mergeData$11(existingData, newData) {
|
|
|
37696
37704
|
};
|
|
37697
37705
|
}
|
|
37698
37706
|
function ingest$1a(astNode, state) {
|
|
37699
|
-
const { path, data, luvio } = state;
|
|
37707
|
+
const { path, data, timestamp, luvio } = state;
|
|
37700
37708
|
const key = keyBuilder$1f(luvio, path);
|
|
37701
37709
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37702
37710
|
key,
|
|
@@ -37710,7 +37718,8 @@ function ingest$1a(astNode, state) {
|
|
|
37710
37718
|
ttl: TTL$6,
|
|
37711
37719
|
namespace: keyPrefix,
|
|
37712
37720
|
representationName: "DoubleValue",
|
|
37713
|
-
version: VERSION$1e
|
|
37721
|
+
version: VERSION$1e,
|
|
37722
|
+
ingestionTimestamp: timestamp,
|
|
37714
37723
|
},
|
|
37715
37724
|
});
|
|
37716
37725
|
}
|
|
@@ -37838,7 +37847,7 @@ function mergeData$10(existingData, newData) {
|
|
|
37838
37847
|
};
|
|
37839
37848
|
}
|
|
37840
37849
|
function ingest$19(astNode, state) {
|
|
37841
|
-
const { path, data, luvio } = state;
|
|
37850
|
+
const { path, data, timestamp, luvio } = state;
|
|
37842
37851
|
const key = keyBuilder$1e(luvio, path);
|
|
37843
37852
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37844
37853
|
key,
|
|
@@ -37852,7 +37861,8 @@ function ingest$19(astNode, state) {
|
|
|
37852
37861
|
ttl: TTL$6,
|
|
37853
37862
|
namespace: keyPrefix,
|
|
37854
37863
|
representationName: "LongValue",
|
|
37855
|
-
version: VERSION$1d
|
|
37864
|
+
version: VERSION$1d,
|
|
37865
|
+
ingestionTimestamp: timestamp,
|
|
37856
37866
|
},
|
|
37857
37867
|
});
|
|
37858
37868
|
}
|
|
@@ -37980,7 +37990,7 @@ function mergeData$$(existingData, newData) {
|
|
|
37980
37990
|
};
|
|
37981
37991
|
}
|
|
37982
37992
|
function ingest$18(astNode, state) {
|
|
37983
|
-
const { path, data, luvio } = state;
|
|
37993
|
+
const { path, data, timestamp, luvio } = state;
|
|
37984
37994
|
const key = keyBuilder$1d(luvio, path);
|
|
37985
37995
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37986
37996
|
key,
|
|
@@ -37994,7 +38004,8 @@ function ingest$18(astNode, state) {
|
|
|
37994
38004
|
ttl: TTL$6,
|
|
37995
38005
|
namespace: keyPrefix,
|
|
37996
38006
|
representationName: "PercentValue",
|
|
37997
|
-
version: VERSION$1c
|
|
38007
|
+
version: VERSION$1c,
|
|
38008
|
+
ingestionTimestamp: timestamp,
|
|
37998
38009
|
},
|
|
37999
38010
|
});
|
|
38000
38011
|
}
|
|
@@ -38122,7 +38133,7 @@ function mergeData$_(existingData, newData) {
|
|
|
38122
38133
|
};
|
|
38123
38134
|
}
|
|
38124
38135
|
function ingest$17(astNode, state) {
|
|
38125
|
-
const { path, data, luvio } = state;
|
|
38136
|
+
const { path, data, timestamp, luvio } = state;
|
|
38126
38137
|
const key = keyBuilder$1c(luvio, path);
|
|
38127
38138
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38128
38139
|
key,
|
|
@@ -38136,7 +38147,8 @@ function ingest$17(astNode, state) {
|
|
|
38136
38147
|
ttl: TTL$6,
|
|
38137
38148
|
namespace: keyPrefix,
|
|
38138
38149
|
representationName: "PercentAggregate",
|
|
38139
|
-
version: VERSION$1b
|
|
38150
|
+
version: VERSION$1b,
|
|
38151
|
+
ingestionTimestamp: timestamp,
|
|
38140
38152
|
},
|
|
38141
38153
|
});
|
|
38142
38154
|
}
|
|
@@ -38384,7 +38396,7 @@ function mergeData$Z(existingData, newData) {
|
|
|
38384
38396
|
};
|
|
38385
38397
|
}
|
|
38386
38398
|
function ingest$16(astNode, state) {
|
|
38387
|
-
const { path, data, luvio } = state;
|
|
38399
|
+
const { path, data, timestamp, luvio } = state;
|
|
38388
38400
|
const key = keyBuilder$1b(luvio, path);
|
|
38389
38401
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38390
38402
|
key,
|
|
@@ -38398,7 +38410,8 @@ function ingest$16(astNode, state) {
|
|
|
38398
38410
|
ttl: TTL$6,
|
|
38399
38411
|
namespace: keyPrefix,
|
|
38400
38412
|
representationName: "IntValue",
|
|
38401
|
-
version: VERSION$1a
|
|
38413
|
+
version: VERSION$1a,
|
|
38414
|
+
ingestionTimestamp: timestamp,
|
|
38402
38415
|
},
|
|
38403
38416
|
});
|
|
38404
38417
|
}
|
|
@@ -38526,7 +38539,7 @@ function mergeData$Y(existingData, newData) {
|
|
|
38526
38539
|
};
|
|
38527
38540
|
}
|
|
38528
38541
|
function ingest$15(astNode, state) {
|
|
38529
|
-
const { path, data, luvio } = state;
|
|
38542
|
+
const { path, data, timestamp, luvio } = state;
|
|
38530
38543
|
const key = keyBuilder$1a(luvio, path);
|
|
38531
38544
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38532
38545
|
key,
|
|
@@ -38540,7 +38553,8 @@ function ingest$15(astNode, state) {
|
|
|
38540
38553
|
ttl: TTL$6,
|
|
38541
38554
|
namespace: keyPrefix,
|
|
38542
38555
|
representationName: "StringValue",
|
|
38543
|
-
version: VERSION$19
|
|
38556
|
+
version: VERSION$19,
|
|
38557
|
+
ingestionTimestamp: timestamp,
|
|
38544
38558
|
},
|
|
38545
38559
|
});
|
|
38546
38560
|
}
|
|
@@ -38659,7 +38673,7 @@ function mergeData$X(existingData, newData) {
|
|
|
38659
38673
|
};
|
|
38660
38674
|
}
|
|
38661
38675
|
function ingest$14(astNode, state) {
|
|
38662
|
-
const { path, data, luvio } = state;
|
|
38676
|
+
const { path, data, timestamp, luvio } = state;
|
|
38663
38677
|
const key = keyBuilder$19(luvio, path);
|
|
38664
38678
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38665
38679
|
key,
|
|
@@ -38673,7 +38687,8 @@ function ingest$14(astNode, state) {
|
|
|
38673
38687
|
ttl: TTL$6,
|
|
38674
38688
|
namespace: keyPrefix,
|
|
38675
38689
|
representationName: "StringAggregate",
|
|
38676
|
-
version: VERSION$18
|
|
38690
|
+
version: VERSION$18,
|
|
38691
|
+
ingestionTimestamp: timestamp,
|
|
38677
38692
|
},
|
|
38678
38693
|
});
|
|
38679
38694
|
}
|
|
@@ -38901,7 +38916,7 @@ function mergeData$W(existingData, newData) {
|
|
|
38901
38916
|
};
|
|
38902
38917
|
}
|
|
38903
38918
|
function ingest$13(astNode, state) {
|
|
38904
|
-
const { path, data, luvio } = state;
|
|
38919
|
+
const { path, data, timestamp, luvio } = state;
|
|
38905
38920
|
const key = keyBuilder$18(luvio, path);
|
|
38906
38921
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38907
38922
|
key,
|
|
@@ -38915,7 +38930,8 @@ function ingest$13(astNode, state) {
|
|
|
38915
38930
|
ttl: TTL$6,
|
|
38916
38931
|
namespace: keyPrefix,
|
|
38917
38932
|
representationName: "IDValue",
|
|
38918
|
-
version: VERSION$17
|
|
38933
|
+
version: VERSION$17,
|
|
38934
|
+
ingestionTimestamp: timestamp,
|
|
38919
38935
|
},
|
|
38920
38936
|
});
|
|
38921
38937
|
}
|
|
@@ -39037,7 +39053,7 @@ function mergeData$V(existingData, newData) {
|
|
|
39037
39053
|
};
|
|
39038
39054
|
}
|
|
39039
39055
|
function ingest$12(astNode, state) {
|
|
39040
|
-
const { path, data, luvio } = state;
|
|
39056
|
+
const { path, data, timestamp, luvio } = state;
|
|
39041
39057
|
const key = keyBuilder$17(luvio, path);
|
|
39042
39058
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39043
39059
|
key,
|
|
@@ -39051,7 +39067,8 @@ function ingest$12(astNode, state) {
|
|
|
39051
39067
|
ttl: TTL$6,
|
|
39052
39068
|
namespace: keyPrefix,
|
|
39053
39069
|
representationName: "DateTimeValue",
|
|
39054
|
-
version: VERSION$16
|
|
39070
|
+
version: VERSION$16,
|
|
39071
|
+
ingestionTimestamp: timestamp,
|
|
39055
39072
|
},
|
|
39056
39073
|
});
|
|
39057
39074
|
}
|
|
@@ -39179,7 +39196,7 @@ function mergeData$U(existingData, newData) {
|
|
|
39179
39196
|
};
|
|
39180
39197
|
}
|
|
39181
39198
|
function ingest$11(astNode, state) {
|
|
39182
|
-
const { path, data, luvio } = state;
|
|
39199
|
+
const { path, data, timestamp, luvio } = state;
|
|
39183
39200
|
const key = keyBuilder$16(luvio, path);
|
|
39184
39201
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39185
39202
|
key,
|
|
@@ -39193,7 +39210,8 @@ function ingest$11(astNode, state) {
|
|
|
39193
39210
|
ttl: TTL$6,
|
|
39194
39211
|
namespace: keyPrefix,
|
|
39195
39212
|
representationName: "BooleanValue",
|
|
39196
|
-
version: VERSION$15
|
|
39213
|
+
version: VERSION$15,
|
|
39214
|
+
ingestionTimestamp: timestamp,
|
|
39197
39215
|
},
|
|
39198
39216
|
});
|
|
39199
39217
|
}
|
|
@@ -39315,7 +39333,7 @@ function mergeData$T(existingData, newData) {
|
|
|
39315
39333
|
};
|
|
39316
39334
|
}
|
|
39317
39335
|
function ingest$10(astNode, state) {
|
|
39318
|
-
const { path, data, luvio } = state;
|
|
39336
|
+
const { path, data, timestamp, luvio } = state;
|
|
39319
39337
|
const key = keyBuilder$15(luvio, path);
|
|
39320
39338
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39321
39339
|
key,
|
|
@@ -39329,7 +39347,8 @@ function ingest$10(astNode, state) {
|
|
|
39329
39347
|
ttl: TTL$6,
|
|
39330
39348
|
namespace: keyPrefix,
|
|
39331
39349
|
representationName: "TimeValue",
|
|
39332
|
-
version: VERSION$14
|
|
39350
|
+
version: VERSION$14,
|
|
39351
|
+
ingestionTimestamp: timestamp,
|
|
39333
39352
|
},
|
|
39334
39353
|
});
|
|
39335
39354
|
}
|
|
@@ -39457,7 +39476,7 @@ function mergeData$S(existingData, newData) {
|
|
|
39457
39476
|
};
|
|
39458
39477
|
}
|
|
39459
39478
|
function ingest$$(astNode, state) {
|
|
39460
|
-
const { path, data, luvio } = state;
|
|
39479
|
+
const { path, data, timestamp, luvio } = state;
|
|
39461
39480
|
const key = keyBuilder$14(luvio, path);
|
|
39462
39481
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39463
39482
|
key,
|
|
@@ -39471,7 +39490,8 @@ function ingest$$(astNode, state) {
|
|
|
39471
39490
|
ttl: TTL$6,
|
|
39472
39491
|
namespace: keyPrefix,
|
|
39473
39492
|
representationName: "DateValue",
|
|
39474
|
-
version: VERSION$13
|
|
39493
|
+
version: VERSION$13,
|
|
39494
|
+
ingestionTimestamp: timestamp,
|
|
39475
39495
|
},
|
|
39476
39496
|
});
|
|
39477
39497
|
}
|
|
@@ -39599,7 +39619,7 @@ function mergeData$R(existingData, newData) {
|
|
|
39599
39619
|
};
|
|
39600
39620
|
}
|
|
39601
39621
|
function ingest$_(astNode, state) {
|
|
39602
|
-
const { path, data, luvio } = state;
|
|
39622
|
+
const { path, data, timestamp, luvio } = state;
|
|
39603
39623
|
const key = keyBuilder$13(luvio, path);
|
|
39604
39624
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39605
39625
|
key,
|
|
@@ -39613,7 +39633,8 @@ function ingest$_(astNode, state) {
|
|
|
39613
39633
|
ttl: TTL$6,
|
|
39614
39634
|
namespace: keyPrefix,
|
|
39615
39635
|
representationName: "TextAreaValue",
|
|
39616
|
-
version: VERSION$12
|
|
39636
|
+
version: VERSION$12,
|
|
39637
|
+
ingestionTimestamp: timestamp,
|
|
39617
39638
|
},
|
|
39618
39639
|
});
|
|
39619
39640
|
}
|
|
@@ -39735,7 +39756,7 @@ function mergeData$Q(existingData, newData) {
|
|
|
39735
39756
|
};
|
|
39736
39757
|
}
|
|
39737
39758
|
function ingest$Z(astNode, state) {
|
|
39738
|
-
const { path, data, luvio } = state;
|
|
39759
|
+
const { path, data, timestamp, luvio } = state;
|
|
39739
39760
|
const key = keyBuilder$12(luvio, path);
|
|
39740
39761
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39741
39762
|
key,
|
|
@@ -39749,7 +39770,8 @@ function ingest$Z(astNode, state) {
|
|
|
39749
39770
|
ttl: TTL$6,
|
|
39750
39771
|
namespace: keyPrefix,
|
|
39751
39772
|
representationName: "LongTextAreaValue",
|
|
39752
|
-
version: VERSION$11
|
|
39773
|
+
version: VERSION$11,
|
|
39774
|
+
ingestionTimestamp: timestamp,
|
|
39753
39775
|
},
|
|
39754
39776
|
});
|
|
39755
39777
|
}
|
|
@@ -39871,7 +39893,7 @@ function mergeData$P(existingData, newData) {
|
|
|
39871
39893
|
};
|
|
39872
39894
|
}
|
|
39873
39895
|
function ingest$Y(astNode, state) {
|
|
39874
|
-
const { path, data, luvio } = state;
|
|
39896
|
+
const { path, data, timestamp, luvio } = state;
|
|
39875
39897
|
const key = keyBuilder$11(luvio, path);
|
|
39876
39898
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39877
39899
|
key,
|
|
@@ -39885,7 +39907,8 @@ function ingest$Y(astNode, state) {
|
|
|
39885
39907
|
ttl: TTL$6,
|
|
39886
39908
|
namespace: keyPrefix,
|
|
39887
39909
|
representationName: "RichTextAreaValue",
|
|
39888
|
-
version: VERSION$10
|
|
39910
|
+
version: VERSION$10,
|
|
39911
|
+
ingestionTimestamp: timestamp,
|
|
39889
39912
|
},
|
|
39890
39913
|
});
|
|
39891
39914
|
}
|
|
@@ -40007,7 +40030,7 @@ function mergeData$O(existingData, newData) {
|
|
|
40007
40030
|
};
|
|
40008
40031
|
}
|
|
40009
40032
|
function ingest$X(astNode, state) {
|
|
40010
|
-
const { path, data, luvio } = state;
|
|
40033
|
+
const { path, data, timestamp, luvio } = state;
|
|
40011
40034
|
const key = keyBuilder$10(luvio, path);
|
|
40012
40035
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40013
40036
|
key,
|
|
@@ -40021,7 +40044,8 @@ function ingest$X(astNode, state) {
|
|
|
40021
40044
|
ttl: TTL$6,
|
|
40022
40045
|
namespace: keyPrefix,
|
|
40023
40046
|
representationName: "PhoneNumberValue",
|
|
40024
|
-
version: VERSION
|
|
40047
|
+
version: VERSION$$,
|
|
40048
|
+
ingestionTimestamp: timestamp,
|
|
40025
40049
|
},
|
|
40026
40050
|
});
|
|
40027
40051
|
}
|
|
@@ -40143,7 +40167,7 @@ function mergeData$N(existingData, newData) {
|
|
|
40143
40167
|
};
|
|
40144
40168
|
}
|
|
40145
40169
|
function ingest$W(astNode, state) {
|
|
40146
|
-
const { path, data, luvio } = state;
|
|
40170
|
+
const { path, data, timestamp, luvio } = state;
|
|
40147
40171
|
const key = keyBuilder$$(luvio, path);
|
|
40148
40172
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40149
40173
|
key,
|
|
@@ -40157,7 +40181,8 @@ function ingest$W(astNode, state) {
|
|
|
40157
40181
|
ttl: TTL$6,
|
|
40158
40182
|
namespace: keyPrefix,
|
|
40159
40183
|
representationName: "EmailValue",
|
|
40160
|
-
version: VERSION$_
|
|
40184
|
+
version: VERSION$_,
|
|
40185
|
+
ingestionTimestamp: timestamp,
|
|
40161
40186
|
},
|
|
40162
40187
|
});
|
|
40163
40188
|
}
|
|
@@ -40279,7 +40304,7 @@ function mergeData$M(existingData, newData) {
|
|
|
40279
40304
|
};
|
|
40280
40305
|
}
|
|
40281
40306
|
function ingest$V(astNode, state) {
|
|
40282
|
-
const { path, data, luvio } = state;
|
|
40307
|
+
const { path, data, timestamp, luvio } = state;
|
|
40283
40308
|
const key = keyBuilder$_(luvio, path);
|
|
40284
40309
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40285
40310
|
key,
|
|
@@ -40293,7 +40318,8 @@ function ingest$V(astNode, state) {
|
|
|
40293
40318
|
ttl: TTL$6,
|
|
40294
40319
|
namespace: keyPrefix,
|
|
40295
40320
|
representationName: "UrlValue",
|
|
40296
|
-
version: VERSION$Z
|
|
40321
|
+
version: VERSION$Z,
|
|
40322
|
+
ingestionTimestamp: timestamp,
|
|
40297
40323
|
},
|
|
40298
40324
|
});
|
|
40299
40325
|
}
|
|
@@ -40415,7 +40441,7 @@ function mergeData$L(existingData, newData) {
|
|
|
40415
40441
|
};
|
|
40416
40442
|
}
|
|
40417
40443
|
function ingest$U(astNode, state) {
|
|
40418
|
-
const { path, data, luvio } = state;
|
|
40444
|
+
const { path, data, timestamp, luvio } = state;
|
|
40419
40445
|
const key = keyBuilder$Z(luvio, path);
|
|
40420
40446
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40421
40447
|
key,
|
|
@@ -40429,7 +40455,8 @@ function ingest$U(astNode, state) {
|
|
|
40429
40455
|
ttl: TTL$6,
|
|
40430
40456
|
namespace: keyPrefix,
|
|
40431
40457
|
representationName: "EncryptedStringValue",
|
|
40432
|
-
version: VERSION$Y
|
|
40458
|
+
version: VERSION$Y,
|
|
40459
|
+
ingestionTimestamp: timestamp,
|
|
40433
40460
|
},
|
|
40434
40461
|
});
|
|
40435
40462
|
}
|
|
@@ -40551,7 +40578,7 @@ function mergeData$K(existingData, newData) {
|
|
|
40551
40578
|
};
|
|
40552
40579
|
}
|
|
40553
40580
|
function ingest$T(astNode, state) {
|
|
40554
|
-
const { path, data, luvio } = state;
|
|
40581
|
+
const { path, data, timestamp, luvio } = state;
|
|
40555
40582
|
const key = keyBuilder$Y(luvio, path);
|
|
40556
40583
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40557
40584
|
key,
|
|
@@ -40565,7 +40592,8 @@ function ingest$T(astNode, state) {
|
|
|
40565
40592
|
ttl: TTL$6,
|
|
40566
40593
|
namespace: keyPrefix,
|
|
40567
40594
|
representationName: "CurrencyValue",
|
|
40568
|
-
version: VERSION$X
|
|
40595
|
+
version: VERSION$X,
|
|
40596
|
+
ingestionTimestamp: timestamp,
|
|
40569
40597
|
},
|
|
40570
40598
|
});
|
|
40571
40599
|
}
|
|
@@ -40693,7 +40721,7 @@ function mergeData$J(existingData, newData) {
|
|
|
40693
40721
|
};
|
|
40694
40722
|
}
|
|
40695
40723
|
function ingest$S(astNode, state) {
|
|
40696
|
-
const { path, data, luvio } = state;
|
|
40724
|
+
const { path, data, timestamp, luvio } = state;
|
|
40697
40725
|
const key = keyBuilder$X(luvio, path);
|
|
40698
40726
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40699
40727
|
key,
|
|
@@ -40707,7 +40735,8 @@ function ingest$S(astNode, state) {
|
|
|
40707
40735
|
ttl: TTL$6,
|
|
40708
40736
|
namespace: keyPrefix,
|
|
40709
40737
|
representationName: "LongitudeValue",
|
|
40710
|
-
version: VERSION$W
|
|
40738
|
+
version: VERSION$W,
|
|
40739
|
+
ingestionTimestamp: timestamp,
|
|
40711
40740
|
},
|
|
40712
40741
|
});
|
|
40713
40742
|
}
|
|
@@ -40829,7 +40858,7 @@ function mergeData$I(existingData, newData) {
|
|
|
40829
40858
|
};
|
|
40830
40859
|
}
|
|
40831
40860
|
function ingest$R(astNode, state) {
|
|
40832
|
-
const { path, data, luvio } = state;
|
|
40861
|
+
const { path, data, timestamp, luvio } = state;
|
|
40833
40862
|
const key = keyBuilder$W(luvio, path);
|
|
40834
40863
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40835
40864
|
key,
|
|
@@ -40843,7 +40872,8 @@ function ingest$R(astNode, state) {
|
|
|
40843
40872
|
ttl: TTL$6,
|
|
40844
40873
|
namespace: keyPrefix,
|
|
40845
40874
|
representationName: "LatitudeValue",
|
|
40846
|
-
version: VERSION$V
|
|
40875
|
+
version: VERSION$V,
|
|
40876
|
+
ingestionTimestamp: timestamp,
|
|
40847
40877
|
},
|
|
40848
40878
|
});
|
|
40849
40879
|
}
|
|
@@ -40965,7 +40995,7 @@ function mergeData$H(existingData, newData) {
|
|
|
40965
40995
|
};
|
|
40966
40996
|
}
|
|
40967
40997
|
function ingest$Q(astNode, state) {
|
|
40968
|
-
const { path, data, luvio } = state;
|
|
40998
|
+
const { path, data, timestamp, luvio } = state;
|
|
40969
40999
|
const key = keyBuilder$V(luvio, path);
|
|
40970
41000
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40971
41001
|
key,
|
|
@@ -40979,7 +41009,8 @@ function ingest$Q(astNode, state) {
|
|
|
40979
41009
|
ttl: TTL$6,
|
|
40980
41010
|
namespace: keyPrefix,
|
|
40981
41011
|
representationName: "PicklistValue",
|
|
40982
|
-
version: VERSION$U
|
|
41012
|
+
version: VERSION$U,
|
|
41013
|
+
ingestionTimestamp: timestamp,
|
|
40983
41014
|
},
|
|
40984
41015
|
});
|
|
40985
41016
|
}
|
|
@@ -41107,7 +41138,7 @@ function mergeData$G(existingData, newData) {
|
|
|
41107
41138
|
};
|
|
41108
41139
|
}
|
|
41109
41140
|
function ingest$P(astNode, state) {
|
|
41110
|
-
const { path, data, luvio } = state;
|
|
41141
|
+
const { path, data, timestamp, luvio } = state;
|
|
41111
41142
|
const key = keyBuilder$U(luvio, path);
|
|
41112
41143
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41113
41144
|
key,
|
|
@@ -41121,7 +41152,8 @@ function ingest$P(astNode, state) {
|
|
|
41121
41152
|
ttl: TTL$6,
|
|
41122
41153
|
namespace: keyPrefix,
|
|
41123
41154
|
representationName: "MultiPicklistValue",
|
|
41124
|
-
version: VERSION$T
|
|
41155
|
+
version: VERSION$T,
|
|
41156
|
+
ingestionTimestamp: timestamp,
|
|
41125
41157
|
},
|
|
41126
41158
|
});
|
|
41127
41159
|
}
|
|
@@ -41249,7 +41281,7 @@ function mergeData$F(existingData, newData) {
|
|
|
41249
41281
|
};
|
|
41250
41282
|
}
|
|
41251
41283
|
function ingest$O(astNode, state) {
|
|
41252
|
-
const { path, data, luvio } = state;
|
|
41284
|
+
const { path, data, timestamp, luvio } = state;
|
|
41253
41285
|
const key = keyBuilder$T(luvio, path);
|
|
41254
41286
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41255
41287
|
key,
|
|
@@ -41263,7 +41295,8 @@ function ingest$O(astNode, state) {
|
|
|
41263
41295
|
ttl: TTL$6,
|
|
41264
41296
|
namespace: keyPrefix,
|
|
41265
41297
|
representationName: "Base64Value",
|
|
41266
|
-
version: VERSION$S
|
|
41298
|
+
version: VERSION$S,
|
|
41299
|
+
ingestionTimestamp: timestamp,
|
|
41267
41300
|
},
|
|
41268
41301
|
});
|
|
41269
41302
|
}
|
|
@@ -41385,7 +41418,7 @@ function mergeData$E(existingData, newData) {
|
|
|
41385
41418
|
};
|
|
41386
41419
|
}
|
|
41387
41420
|
function ingest$N(astNode, state) {
|
|
41388
|
-
const { path, data, luvio } = state;
|
|
41421
|
+
const { path, data, timestamp, luvio } = state;
|
|
41389
41422
|
const key = keyBuilder$S(luvio, path);
|
|
41390
41423
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41391
41424
|
key,
|
|
@@ -41399,7 +41432,8 @@ function ingest$N(astNode, state) {
|
|
|
41399
41432
|
ttl: TTL$6,
|
|
41400
41433
|
namespace: keyPrefix,
|
|
41401
41434
|
representationName: "JSONValue",
|
|
41402
|
-
version: VERSION$R
|
|
41435
|
+
version: VERSION$R,
|
|
41436
|
+
ingestionTimestamp: timestamp,
|
|
41403
41437
|
},
|
|
41404
41438
|
});
|
|
41405
41439
|
}
|
|
@@ -41925,7 +41959,7 @@ function mergeData$D(existingData, newData) {
|
|
|
41925
41959
|
};
|
|
41926
41960
|
}
|
|
41927
41961
|
function ingest$L(astNode, state) {
|
|
41928
|
-
const { path, data, luvio } = state;
|
|
41962
|
+
const { path, data, timestamp, luvio } = state;
|
|
41929
41963
|
const key = keyBuilder$R(luvio, path);
|
|
41930
41964
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41931
41965
|
key,
|
|
@@ -41939,7 +41973,8 @@ function ingest$L(astNode, state) {
|
|
|
41939
41973
|
ttl: TTL$6,
|
|
41940
41974
|
namespace: keyPrefix,
|
|
41941
41975
|
representationName: "CompoundField",
|
|
41942
|
-
version: VERSION$P
|
|
41976
|
+
version: VERSION$P,
|
|
41977
|
+
ingestionTimestamp: timestamp,
|
|
41943
41978
|
},
|
|
41944
41979
|
});
|
|
41945
41980
|
}
|
|
@@ -42925,7 +42960,7 @@ function mergeData$C(existingData, newData) {
|
|
|
42925
42960
|
};
|
|
42926
42961
|
}
|
|
42927
42962
|
function ingest$K(astNode, state) {
|
|
42928
|
-
const { path, data, luvio } = state;
|
|
42963
|
+
const { path, data, timestamp, luvio } = state;
|
|
42929
42964
|
const key = keyBuilder$Q(luvio, path);
|
|
42930
42965
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42931
42966
|
key,
|
|
@@ -42939,7 +42974,8 @@ function ingest$K(astNode, state) {
|
|
|
42939
42974
|
ttl: TTL$6,
|
|
42940
42975
|
namespace: keyPrefix,
|
|
42941
42976
|
representationName: "PageInfo",
|
|
42942
|
-
version: VERSION$O
|
|
42977
|
+
version: VERSION$O,
|
|
42978
|
+
ingestionTimestamp: timestamp,
|
|
42943
42979
|
},
|
|
42944
42980
|
});
|
|
42945
42981
|
}
|
|
@@ -43141,7 +43177,7 @@ function mergeData$B(existingData, newData) {
|
|
|
43141
43177
|
};
|
|
43142
43178
|
}
|
|
43143
43179
|
function ingest$J(astNode, state) {
|
|
43144
|
-
const { path, data, luvio } = state;
|
|
43180
|
+
const { path, data, timestamp, luvio } = state;
|
|
43145
43181
|
const key = keyBuilder$P(luvio, path, data);
|
|
43146
43182
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43147
43183
|
key,
|
|
@@ -43158,7 +43194,8 @@ function ingest$J(astNode, state) {
|
|
|
43158
43194
|
ttl: TTL$6,
|
|
43159
43195
|
namespace: keyPrefix,
|
|
43160
43196
|
representationName: "RecordRepresentation",
|
|
43161
|
-
version: VERSION$N
|
|
43197
|
+
version: VERSION$N,
|
|
43198
|
+
ingestionTimestamp: timestamp,
|
|
43162
43199
|
},
|
|
43163
43200
|
});
|
|
43164
43201
|
}
|
|
@@ -43680,7 +43717,7 @@ function mergeData$A(existingData, newData) {
|
|
|
43680
43717
|
};
|
|
43681
43718
|
}
|
|
43682
43719
|
function ingest$I(astNode, state) {
|
|
43683
|
-
const { path, data, luvio } = state;
|
|
43720
|
+
const { path, data, timestamp, luvio } = state;
|
|
43684
43721
|
const key = keyBuilder$O(luvio, path);
|
|
43685
43722
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43686
43723
|
key,
|
|
@@ -43694,7 +43731,8 @@ function ingest$I(astNode, state) {
|
|
|
43694
43731
|
ttl: TTL$6,
|
|
43695
43732
|
namespace: keyPrefix,
|
|
43696
43733
|
representationName: "RecordEdge",
|
|
43697
|
-
version: VERSION$M
|
|
43734
|
+
version: VERSION$M,
|
|
43735
|
+
ingestionTimestamp: timestamp,
|
|
43698
43736
|
},
|
|
43699
43737
|
});
|
|
43700
43738
|
}
|
|
@@ -43904,7 +43942,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
|
|
|
43904
43942
|
}
|
|
43905
43943
|
}
|
|
43906
43944
|
function ingest$H(astNode, state) {
|
|
43907
|
-
const { path, data, luvio } = state;
|
|
43945
|
+
const { path, data, timestamp, luvio } = state;
|
|
43908
43946
|
const key = keyBuilder$N(luvio, path);
|
|
43909
43947
|
return ingestCursorConnectionType(astNode, state, {
|
|
43910
43948
|
key,
|
|
@@ -43920,7 +43958,8 @@ function ingest$H(astNode, state) {
|
|
|
43920
43958
|
ttl: TTL$9,
|
|
43921
43959
|
namespace: keyPrefix,
|
|
43922
43960
|
representationName: "RecordConnection",
|
|
43923
|
-
version: VERSION$L
|
|
43961
|
+
version: VERSION$L,
|
|
43962
|
+
ingestionTimestamp: timestamp,
|
|
43924
43963
|
},
|
|
43925
43964
|
});
|
|
43926
43965
|
}
|
|
@@ -44089,7 +44128,7 @@ function mergeData$y(existingData, newData) {
|
|
|
44089
44128
|
};
|
|
44090
44129
|
}
|
|
44091
44130
|
function ingest$G(astNode, state) {
|
|
44092
|
-
const { path, data, luvio } = state;
|
|
44131
|
+
const { path, data, timestamp, luvio } = state;
|
|
44093
44132
|
const key = keyBuilder$M(luvio, path);
|
|
44094
44133
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44095
44134
|
key,
|
|
@@ -44103,7 +44142,8 @@ function ingest$G(astNode, state) {
|
|
|
44103
44142
|
ttl: TTL$6,
|
|
44104
44143
|
namespace: keyPrefix,
|
|
44105
44144
|
representationName: "RecordQuery",
|
|
44106
|
-
version: VERSION$K
|
|
44145
|
+
version: VERSION$K,
|
|
44146
|
+
ingestionTimestamp: timestamp,
|
|
44107
44147
|
},
|
|
44108
44148
|
});
|
|
44109
44149
|
}
|
|
@@ -44233,7 +44273,7 @@ function mergeData$x(existingData, newData) {
|
|
|
44233
44273
|
};
|
|
44234
44274
|
}
|
|
44235
44275
|
function ingest$F(astNode, state) {
|
|
44236
|
-
const { path, data, luvio } = state;
|
|
44276
|
+
const { path, data, timestamp, luvio } = state;
|
|
44237
44277
|
const key = keyBuilder$L(luvio, path);
|
|
44238
44278
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44239
44279
|
key,
|
|
@@ -44247,7 +44287,8 @@ function ingest$F(astNode, state) {
|
|
|
44247
44287
|
ttl: TTL$6,
|
|
44248
44288
|
namespace: keyPrefix,
|
|
44249
44289
|
representationName: "BooleanAggregate",
|
|
44250
|
-
version: VERSION$J
|
|
44290
|
+
version: VERSION$J,
|
|
44291
|
+
ingestionTimestamp: timestamp,
|
|
44251
44292
|
},
|
|
44252
44293
|
});
|
|
44253
44294
|
}
|
|
@@ -44416,7 +44457,7 @@ function mergeData$w(existingData, newData) {
|
|
|
44416
44457
|
};
|
|
44417
44458
|
}
|
|
44418
44459
|
function ingest$E(astNode, state) {
|
|
44419
|
-
const { path, data, luvio } = state;
|
|
44460
|
+
const { path, data, timestamp, luvio } = state;
|
|
44420
44461
|
const key = keyBuilder$K(luvio, path);
|
|
44421
44462
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44422
44463
|
key,
|
|
@@ -44430,7 +44471,8 @@ function ingest$E(astNode, state) {
|
|
|
44430
44471
|
ttl: TTL$6,
|
|
44431
44472
|
namespace: keyPrefix,
|
|
44432
44473
|
representationName: "CurrencyAggregate",
|
|
44433
|
-
version: VERSION$I
|
|
44474
|
+
version: VERSION$I,
|
|
44475
|
+
ingestionTimestamp: timestamp,
|
|
44434
44476
|
},
|
|
44435
44477
|
});
|
|
44436
44478
|
}
|
|
@@ -44678,7 +44720,7 @@ function mergeData$v(existingData, newData) {
|
|
|
44678
44720
|
};
|
|
44679
44721
|
}
|
|
44680
44722
|
function ingest$D(astNode, state) {
|
|
44681
|
-
const { path, data, luvio } = state;
|
|
44723
|
+
const { path, data, timestamp, luvio } = state;
|
|
44682
44724
|
const key = keyBuilder$J(luvio, path);
|
|
44683
44725
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44684
44726
|
key,
|
|
@@ -44692,7 +44734,8 @@ function ingest$D(astNode, state) {
|
|
|
44692
44734
|
ttl: TTL$6,
|
|
44693
44735
|
namespace: keyPrefix,
|
|
44694
44736
|
representationName: "DateFunctionAggregation",
|
|
44695
|
-
version: VERSION$H
|
|
44737
|
+
version: VERSION$H,
|
|
44738
|
+
ingestionTimestamp: timestamp,
|
|
44696
44739
|
},
|
|
44697
44740
|
});
|
|
44698
44741
|
}
|
|
@@ -44826,7 +44869,7 @@ function mergeData$u(existingData, newData) {
|
|
|
44826
44869
|
};
|
|
44827
44870
|
}
|
|
44828
44871
|
function ingest$C(astNode, state) {
|
|
44829
|
-
const { path, data, luvio } = state;
|
|
44872
|
+
const { path, data, timestamp, luvio } = state;
|
|
44830
44873
|
const key = keyBuilder$I(luvio, path);
|
|
44831
44874
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44832
44875
|
key,
|
|
@@ -44840,7 +44883,8 @@ function ingest$C(astNode, state) {
|
|
|
44840
44883
|
ttl: TTL$6,
|
|
44841
44884
|
namespace: keyPrefix,
|
|
44842
44885
|
representationName: "DateAggregate",
|
|
44843
|
-
version: VERSION$G
|
|
44886
|
+
version: VERSION$G,
|
|
44887
|
+
ingestionTimestamp: timestamp,
|
|
44844
44888
|
},
|
|
44845
44889
|
});
|
|
44846
44890
|
}
|
|
@@ -45207,7 +45251,7 @@ function mergeData$t(existingData, newData) {
|
|
|
45207
45251
|
};
|
|
45208
45252
|
}
|
|
45209
45253
|
function ingest$B(astNode, state) {
|
|
45210
|
-
const { path, data, luvio } = state;
|
|
45254
|
+
const { path, data, timestamp, luvio } = state;
|
|
45211
45255
|
const key = keyBuilder$H(luvio, path);
|
|
45212
45256
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45213
45257
|
key,
|
|
@@ -45221,7 +45265,8 @@ function ingest$B(astNode, state) {
|
|
|
45221
45265
|
ttl: TTL$6,
|
|
45222
45266
|
namespace: keyPrefix,
|
|
45223
45267
|
representationName: "DoubleAggregate",
|
|
45224
|
-
version: VERSION$F
|
|
45268
|
+
version: VERSION$F,
|
|
45269
|
+
ingestionTimestamp: timestamp,
|
|
45225
45270
|
},
|
|
45226
45271
|
});
|
|
45227
45272
|
}
|
|
@@ -45460,7 +45505,7 @@ function mergeData$s(existingData, newData) {
|
|
|
45460
45505
|
};
|
|
45461
45506
|
}
|
|
45462
45507
|
function ingest$A(astNode, state) {
|
|
45463
|
-
const { path, data, luvio } = state;
|
|
45508
|
+
const { path, data, timestamp, luvio } = state;
|
|
45464
45509
|
const key = keyBuilder$G(luvio, path);
|
|
45465
45510
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45466
45511
|
key,
|
|
@@ -45474,7 +45519,8 @@ function ingest$A(astNode, state) {
|
|
|
45474
45519
|
ttl: TTL$6,
|
|
45475
45520
|
namespace: keyPrefix,
|
|
45476
45521
|
representationName: "EmailAggregate",
|
|
45477
|
-
version: VERSION$E
|
|
45522
|
+
version: VERSION$E,
|
|
45523
|
+
ingestionTimestamp: timestamp,
|
|
45478
45524
|
},
|
|
45479
45525
|
});
|
|
45480
45526
|
}
|
|
@@ -45705,7 +45751,7 @@ function mergeData$r(existingData, newData) {
|
|
|
45705
45751
|
};
|
|
45706
45752
|
}
|
|
45707
45753
|
function ingest$z(astNode, state) {
|
|
45708
|
-
const { path, data, luvio } = state;
|
|
45754
|
+
const { path, data, timestamp, luvio } = state;
|
|
45709
45755
|
const key = keyBuilder$F(luvio, path);
|
|
45710
45756
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45711
45757
|
key,
|
|
@@ -45719,7 +45765,8 @@ function ingest$z(astNode, state) {
|
|
|
45719
45765
|
ttl: TTL$6,
|
|
45720
45766
|
namespace: keyPrefix,
|
|
45721
45767
|
representationName: "IDAggregate",
|
|
45722
|
-
version: VERSION$D
|
|
45768
|
+
version: VERSION$D,
|
|
45769
|
+
ingestionTimestamp: timestamp,
|
|
45723
45770
|
},
|
|
45724
45771
|
});
|
|
45725
45772
|
}
|
|
@@ -45950,7 +45997,7 @@ function mergeData$q(existingData, newData) {
|
|
|
45950
45997
|
};
|
|
45951
45998
|
}
|
|
45952
45999
|
function ingest$y(astNode, state) {
|
|
45953
|
-
const { path, data, luvio } = state;
|
|
46000
|
+
const { path, data, timestamp, luvio } = state;
|
|
45954
46001
|
const key = keyBuilder$E(luvio, path);
|
|
45955
46002
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45956
46003
|
key,
|
|
@@ -45964,7 +46011,8 @@ function ingest$y(astNode, state) {
|
|
|
45964
46011
|
ttl: TTL$6,
|
|
45965
46012
|
namespace: keyPrefix,
|
|
45966
46013
|
representationName: "IntAggregate",
|
|
45967
|
-
version: VERSION$C
|
|
46014
|
+
version: VERSION$C,
|
|
46015
|
+
ingestionTimestamp: timestamp,
|
|
45968
46016
|
},
|
|
45969
46017
|
});
|
|
45970
46018
|
}
|
|
@@ -46223,7 +46271,7 @@ function mergeData$p(existingData, newData) {
|
|
|
46223
46271
|
};
|
|
46224
46272
|
}
|
|
46225
46273
|
function ingest$x(astNode, state) {
|
|
46226
|
-
const { path, data, luvio } = state;
|
|
46274
|
+
const { path, data, timestamp, luvio } = state;
|
|
46227
46275
|
const key = keyBuilder$D(luvio, path);
|
|
46228
46276
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46229
46277
|
key,
|
|
@@ -46237,7 +46285,8 @@ function ingest$x(astNode, state) {
|
|
|
46237
46285
|
ttl: TTL$6,
|
|
46238
46286
|
namespace: keyPrefix,
|
|
46239
46287
|
representationName: "LatitudeAggregate",
|
|
46240
|
-
version: VERSION$B
|
|
46288
|
+
version: VERSION$B,
|
|
46289
|
+
ingestionTimestamp: timestamp,
|
|
46241
46290
|
},
|
|
46242
46291
|
});
|
|
46243
46292
|
}
|
|
@@ -46479,7 +46528,7 @@ function mergeData$o(existingData, newData) {
|
|
|
46479
46528
|
};
|
|
46480
46529
|
}
|
|
46481
46530
|
function ingest$w(astNode, state) {
|
|
46482
|
-
const { path, data, luvio } = state;
|
|
46531
|
+
const { path, data, timestamp, luvio } = state;
|
|
46483
46532
|
const key = keyBuilder$C(luvio, path);
|
|
46484
46533
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46485
46534
|
key,
|
|
@@ -46493,7 +46542,8 @@ function ingest$w(astNode, state) {
|
|
|
46493
46542
|
ttl: TTL$6,
|
|
46494
46543
|
namespace: keyPrefix,
|
|
46495
46544
|
representationName: "LongitudeAggregate",
|
|
46496
|
-
version: VERSION$A
|
|
46545
|
+
version: VERSION$A,
|
|
46546
|
+
ingestionTimestamp: timestamp,
|
|
46497
46547
|
},
|
|
46498
46548
|
});
|
|
46499
46549
|
}
|
|
@@ -46735,7 +46785,7 @@ function mergeData$n(existingData, newData) {
|
|
|
46735
46785
|
};
|
|
46736
46786
|
}
|
|
46737
46787
|
function ingest$v(astNode, state) {
|
|
46738
|
-
const { path, data, luvio } = state;
|
|
46788
|
+
const { path, data, timestamp, luvio } = state;
|
|
46739
46789
|
const key = keyBuilder$B(luvio, path);
|
|
46740
46790
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46741
46791
|
key,
|
|
@@ -46749,7 +46799,8 @@ function ingest$v(astNode, state) {
|
|
|
46749
46799
|
ttl: TTL$6,
|
|
46750
46800
|
namespace: keyPrefix,
|
|
46751
46801
|
representationName: "LongAggregate",
|
|
46752
|
-
version: VERSION$z
|
|
46802
|
+
version: VERSION$z,
|
|
46803
|
+
ingestionTimestamp: timestamp,
|
|
46753
46804
|
},
|
|
46754
46805
|
});
|
|
46755
46806
|
}
|
|
@@ -47008,7 +47059,7 @@ function mergeData$m(existingData, newData) {
|
|
|
47008
47059
|
};
|
|
47009
47060
|
}
|
|
47010
47061
|
function ingest$u(astNode, state) {
|
|
47011
|
-
const { path, data, luvio } = state;
|
|
47062
|
+
const { path, data, timestamp, luvio } = state;
|
|
47012
47063
|
const key = keyBuilder$A(luvio, path);
|
|
47013
47064
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47014
47065
|
key,
|
|
@@ -47022,7 +47073,8 @@ function ingest$u(astNode, state) {
|
|
|
47022
47073
|
ttl: TTL$6,
|
|
47023
47074
|
namespace: keyPrefix,
|
|
47024
47075
|
representationName: "PhoneNumberAggregate",
|
|
47025
|
-
version: VERSION$y
|
|
47076
|
+
version: VERSION$y,
|
|
47077
|
+
ingestionTimestamp: timestamp,
|
|
47026
47078
|
},
|
|
47027
47079
|
});
|
|
47028
47080
|
}
|
|
@@ -47253,7 +47305,7 @@ function mergeData$l(existingData, newData) {
|
|
|
47253
47305
|
};
|
|
47254
47306
|
}
|
|
47255
47307
|
function ingest$t(astNode, state) {
|
|
47256
|
-
const { path, data, luvio } = state;
|
|
47308
|
+
const { path, data, timestamp, luvio } = state;
|
|
47257
47309
|
const key = keyBuilder$z(luvio, path);
|
|
47258
47310
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47259
47311
|
key,
|
|
@@ -47267,7 +47319,8 @@ function ingest$t(astNode, state) {
|
|
|
47267
47319
|
ttl: TTL$6,
|
|
47268
47320
|
namespace: keyPrefix,
|
|
47269
47321
|
representationName: "PicklistAggregate",
|
|
47270
|
-
version: VERSION$x
|
|
47322
|
+
version: VERSION$x,
|
|
47323
|
+
ingestionTimestamp: timestamp,
|
|
47271
47324
|
},
|
|
47272
47325
|
});
|
|
47273
47326
|
}
|
|
@@ -47504,7 +47557,7 @@ function mergeData$k(existingData, newData) {
|
|
|
47504
47557
|
};
|
|
47505
47558
|
}
|
|
47506
47559
|
function ingest$s(astNode, state) {
|
|
47507
|
-
const { path, data, luvio } = state;
|
|
47560
|
+
const { path, data, timestamp, luvio } = state;
|
|
47508
47561
|
const key = keyBuilder$y(luvio, path);
|
|
47509
47562
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47510
47563
|
key,
|
|
@@ -47518,7 +47571,8 @@ function ingest$s(astNode, state) {
|
|
|
47518
47571
|
ttl: TTL$6,
|
|
47519
47572
|
namespace: keyPrefix,
|
|
47520
47573
|
representationName: "TextAreaAggregate",
|
|
47521
|
-
version: VERSION$w
|
|
47574
|
+
version: VERSION$w,
|
|
47575
|
+
ingestionTimestamp: timestamp,
|
|
47522
47576
|
},
|
|
47523
47577
|
});
|
|
47524
47578
|
}
|
|
@@ -47749,7 +47803,7 @@ function mergeData$j(existingData, newData) {
|
|
|
47749
47803
|
};
|
|
47750
47804
|
}
|
|
47751
47805
|
function ingest$r(astNode, state) {
|
|
47752
|
-
const { path, data, luvio } = state;
|
|
47806
|
+
const { path, data, timestamp, luvio } = state;
|
|
47753
47807
|
const key = keyBuilder$x(luvio, path);
|
|
47754
47808
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47755
47809
|
key,
|
|
@@ -47763,7 +47817,8 @@ function ingest$r(astNode, state) {
|
|
|
47763
47817
|
ttl: TTL$6,
|
|
47764
47818
|
namespace: keyPrefix,
|
|
47765
47819
|
representationName: "TimeAggregate",
|
|
47766
|
-
version: VERSION$v
|
|
47820
|
+
version: VERSION$v,
|
|
47821
|
+
ingestionTimestamp: timestamp,
|
|
47767
47822
|
},
|
|
47768
47823
|
});
|
|
47769
47824
|
}
|
|
@@ -47938,7 +47993,7 @@ function mergeData$i(existingData, newData) {
|
|
|
47938
47993
|
};
|
|
47939
47994
|
}
|
|
47940
47995
|
function ingest$q(astNode, state) {
|
|
47941
|
-
const { path, data, luvio } = state;
|
|
47996
|
+
const { path, data, timestamp, luvio } = state;
|
|
47942
47997
|
const key = keyBuilder$w(luvio, path);
|
|
47943
47998
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47944
47999
|
key,
|
|
@@ -47952,7 +48007,8 @@ function ingest$q(astNode, state) {
|
|
|
47952
48007
|
ttl: TTL$6,
|
|
47953
48008
|
namespace: keyPrefix,
|
|
47954
48009
|
representationName: "UrlAggregate",
|
|
47955
|
-
version: VERSION$u
|
|
48010
|
+
version: VERSION$u,
|
|
48011
|
+
ingestionTimestamp: timestamp,
|
|
47956
48012
|
},
|
|
47957
48013
|
});
|
|
47958
48014
|
}
|
|
@@ -48306,7 +48362,7 @@ function mergeData$h(existingData, newData) {
|
|
|
48306
48362
|
};
|
|
48307
48363
|
}
|
|
48308
48364
|
function ingest$p(astNode, state) {
|
|
48309
|
-
const { path, data, luvio } = state;
|
|
48365
|
+
const { path, data, timestamp, luvio } = state;
|
|
48310
48366
|
const key = keyBuilder$v(luvio, path);
|
|
48311
48367
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48312
48368
|
key,
|
|
@@ -48320,7 +48376,8 @@ function ingest$p(astNode, state) {
|
|
|
48320
48376
|
ttl: TTL$6,
|
|
48321
48377
|
namespace: keyPrefix,
|
|
48322
48378
|
representationName: "RecordAggregate",
|
|
48323
|
-
version: VERSION$t
|
|
48379
|
+
version: VERSION$t,
|
|
48380
|
+
ingestionTimestamp: timestamp,
|
|
48324
48381
|
},
|
|
48325
48382
|
});
|
|
48326
48383
|
}
|
|
@@ -48674,7 +48731,7 @@ function mergeData$g(existingData, newData) {
|
|
|
48674
48731
|
};
|
|
48675
48732
|
}
|
|
48676
48733
|
function ingest$o(astNode, state) {
|
|
48677
|
-
const { path, data, luvio } = state;
|
|
48734
|
+
const { path, data, timestamp, luvio } = state;
|
|
48678
48735
|
const key = keyBuilder$u(luvio, path);
|
|
48679
48736
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48680
48737
|
key,
|
|
@@ -48688,7 +48745,8 @@ function ingest$o(astNode, state) {
|
|
|
48688
48745
|
ttl: TTL$6,
|
|
48689
48746
|
namespace: keyPrefix,
|
|
48690
48747
|
representationName: "RecordResult",
|
|
48691
|
-
version: VERSION$s
|
|
48748
|
+
version: VERSION$s,
|
|
48749
|
+
ingestionTimestamp: timestamp,
|
|
48692
48750
|
},
|
|
48693
48751
|
});
|
|
48694
48752
|
}
|
|
@@ -48836,7 +48894,7 @@ function mergeData$f(existingData, newData) {
|
|
|
48836
48894
|
};
|
|
48837
48895
|
}
|
|
48838
48896
|
function ingest$n(astNode, state) {
|
|
48839
|
-
const { path, data, luvio } = state;
|
|
48897
|
+
const { path, data, timestamp, luvio } = state;
|
|
48840
48898
|
const key = keyBuilder$t(luvio, path);
|
|
48841
48899
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48842
48900
|
key,
|
|
@@ -48850,7 +48908,8 @@ function ingest$n(astNode, state) {
|
|
|
48850
48908
|
ttl: TTL$6,
|
|
48851
48909
|
namespace: keyPrefix,
|
|
48852
48910
|
representationName: "RecordAggregateEdge",
|
|
48853
|
-
version: VERSION$r
|
|
48911
|
+
version: VERSION$r,
|
|
48912
|
+
ingestionTimestamp: timestamp,
|
|
48854
48913
|
},
|
|
48855
48914
|
});
|
|
48856
48915
|
}
|
|
@@ -49059,7 +49118,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
|
|
|
49059
49118
|
}
|
|
49060
49119
|
}
|
|
49061
49120
|
function ingest$m(astNode, state) {
|
|
49062
|
-
const { path, data, luvio } = state;
|
|
49121
|
+
const { path, data, timestamp, luvio } = state;
|
|
49063
49122
|
const key = keyBuilder$s(luvio, path);
|
|
49064
49123
|
return ingestCursorConnectionType(astNode, state, {
|
|
49065
49124
|
key,
|
|
@@ -49075,7 +49134,8 @@ function ingest$m(astNode, state) {
|
|
|
49075
49134
|
ttl: TTL$6,
|
|
49076
49135
|
namespace: keyPrefix,
|
|
49077
49136
|
representationName: "RecordAggregateConnection",
|
|
49078
|
-
version: VERSION$q
|
|
49137
|
+
version: VERSION$q,
|
|
49138
|
+
ingestionTimestamp: timestamp,
|
|
49079
49139
|
},
|
|
49080
49140
|
});
|
|
49081
49141
|
}
|
|
@@ -49292,7 +49352,7 @@ function mergeData$d(existingData, newData) {
|
|
|
49292
49352
|
};
|
|
49293
49353
|
}
|
|
49294
49354
|
function ingest$l(astNode, state) {
|
|
49295
|
-
const { path, data, luvio } = state;
|
|
49355
|
+
const { path, data, timestamp, luvio } = state;
|
|
49296
49356
|
const key = keyBuilder$r(luvio, path);
|
|
49297
49357
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49298
49358
|
key,
|
|
@@ -49306,7 +49366,8 @@ function ingest$l(astNode, state) {
|
|
|
49306
49366
|
ttl: TTL$6,
|
|
49307
49367
|
namespace: keyPrefix,
|
|
49308
49368
|
representationName: "RecordQueryAggregate",
|
|
49309
|
-
version: VERSION$p
|
|
49369
|
+
version: VERSION$p,
|
|
49370
|
+
ingestionTimestamp: timestamp,
|
|
49310
49371
|
},
|
|
49311
49372
|
});
|
|
49312
49373
|
}
|
|
@@ -49436,7 +49497,7 @@ function mergeData$c(existingData, newData) {
|
|
|
49436
49497
|
};
|
|
49437
49498
|
}
|
|
49438
49499
|
function ingest$k(astNode, state) {
|
|
49439
|
-
const { path, data, luvio } = state;
|
|
49500
|
+
const { path, data, timestamp, luvio } = state;
|
|
49440
49501
|
const key = keyBuilder$q(luvio, path);
|
|
49441
49502
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49442
49503
|
key,
|
|
@@ -49450,7 +49511,8 @@ function ingest$k(astNode, state) {
|
|
|
49450
49511
|
ttl: TTL$6,
|
|
49451
49512
|
namespace: keyPrefix,
|
|
49452
49513
|
representationName: "ChildRelationship",
|
|
49453
|
-
version: VERSION$o
|
|
49514
|
+
version: VERSION$o,
|
|
49515
|
+
ingestionTimestamp: timestamp,
|
|
49454
49516
|
},
|
|
49455
49517
|
});
|
|
49456
49518
|
}
|
|
@@ -49628,7 +49690,7 @@ function mergeData$b(existingData, newData) {
|
|
|
49628
49690
|
};
|
|
49629
49691
|
}
|
|
49630
49692
|
function ingest$j(astNode, state) {
|
|
49631
|
-
const { path, data, luvio } = state;
|
|
49693
|
+
const { path, data, timestamp, luvio } = state;
|
|
49632
49694
|
const key = keyBuilder$p(luvio, path);
|
|
49633
49695
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49634
49696
|
key,
|
|
@@ -49642,7 +49704,8 @@ function ingest$j(astNode, state) {
|
|
|
49642
49704
|
ttl: TTL$6,
|
|
49643
49705
|
namespace: keyPrefix,
|
|
49644
49706
|
representationName: "DependentField",
|
|
49645
|
-
version: VERSION$n
|
|
49707
|
+
version: VERSION$n,
|
|
49708
|
+
ingestionTimestamp: timestamp,
|
|
49646
49709
|
},
|
|
49647
49710
|
});
|
|
49648
49711
|
}
|
|
@@ -49767,7 +49830,7 @@ function mergeData$a(existingData, newData) {
|
|
|
49767
49830
|
};
|
|
49768
49831
|
}
|
|
49769
49832
|
function ingest$i(astNode, state) {
|
|
49770
|
-
const { path, data, luvio } = state;
|
|
49833
|
+
const { path, data, timestamp, luvio } = state;
|
|
49771
49834
|
const key = keyBuilder$o(luvio, path);
|
|
49772
49835
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49773
49836
|
key,
|
|
@@ -49781,7 +49844,8 @@ function ingest$i(astNode, state) {
|
|
|
49781
49844
|
ttl: TTL$6,
|
|
49782
49845
|
namespace: keyPrefix,
|
|
49783
49846
|
representationName: "FilteredLookupInfo",
|
|
49784
|
-
version: VERSION$m
|
|
49847
|
+
version: VERSION$m,
|
|
49848
|
+
ingestionTimestamp: timestamp,
|
|
49785
49849
|
},
|
|
49786
49850
|
});
|
|
49787
49851
|
}
|
|
@@ -49921,7 +49985,7 @@ function mergeData$9(existingData, newData) {
|
|
|
49921
49985
|
};
|
|
49922
49986
|
}
|
|
49923
49987
|
function ingest$h(astNode, state) {
|
|
49924
|
-
const { path, data, luvio } = state;
|
|
49988
|
+
const { path, data, timestamp, luvio } = state;
|
|
49925
49989
|
const key = keyBuilder$n(luvio, path);
|
|
49926
49990
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49927
49991
|
key,
|
|
@@ -49935,7 +49999,8 @@ function ingest$h(astNode, state) {
|
|
|
49935
49999
|
ttl: TTL$6,
|
|
49936
50000
|
namespace: keyPrefix,
|
|
49937
50001
|
representationName: "ReferenceToInfo",
|
|
49938
|
-
version: VERSION$l
|
|
50002
|
+
version: VERSION$l,
|
|
50003
|
+
ingestionTimestamp: timestamp,
|
|
49939
50004
|
},
|
|
49940
50005
|
});
|
|
49941
50006
|
}
|
|
@@ -50095,7 +50160,7 @@ function mergeData$8(existingData, newData) {
|
|
|
50095
50160
|
};
|
|
50096
50161
|
}
|
|
50097
50162
|
function ingest$g(astNode, state) {
|
|
50098
|
-
const { path, data, luvio } = state;
|
|
50163
|
+
const { path, data, timestamp, luvio } = state;
|
|
50099
50164
|
const key = keyBuilder$m(luvio, path);
|
|
50100
50165
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50101
50166
|
key,
|
|
@@ -50109,7 +50174,8 @@ function ingest$g(astNode, state) {
|
|
|
50109
50174
|
ttl: TTL$6,
|
|
50110
50175
|
namespace: keyPrefix,
|
|
50111
50176
|
representationName: "Field",
|
|
50112
|
-
version: VERSION$k
|
|
50177
|
+
version: VERSION$k,
|
|
50178
|
+
ingestionTimestamp: timestamp,
|
|
50113
50179
|
},
|
|
50114
50180
|
});
|
|
50115
50181
|
}
|
|
@@ -50487,7 +50553,7 @@ function mergeData$7(existingData, newData) {
|
|
|
50487
50553
|
};
|
|
50488
50554
|
}
|
|
50489
50555
|
function ingest$f(astNode, state) {
|
|
50490
|
-
const { path, data, luvio } = state;
|
|
50556
|
+
const { path, data, timestamp, luvio } = state;
|
|
50491
50557
|
const key = keyBuilder$l(luvio, path);
|
|
50492
50558
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50493
50559
|
key,
|
|
@@ -50501,7 +50567,8 @@ function ingest$f(astNode, state) {
|
|
|
50501
50567
|
ttl: TTL$6,
|
|
50502
50568
|
namespace: keyPrefix,
|
|
50503
50569
|
representationName: "RecordTypeInfo",
|
|
50504
|
-
version: VERSION$j
|
|
50570
|
+
version: VERSION$j,
|
|
50571
|
+
ingestionTimestamp: timestamp,
|
|
50505
50572
|
},
|
|
50506
50573
|
});
|
|
50507
50574
|
}
|
|
@@ -50662,7 +50729,7 @@ function mergeData$6(existingData, newData) {
|
|
|
50662
50729
|
};
|
|
50663
50730
|
}
|
|
50664
50731
|
function ingest$e(astNode, state) {
|
|
50665
|
-
const { path, data, luvio } = state;
|
|
50732
|
+
const { path, data, timestamp, luvio } = state;
|
|
50666
50733
|
const key = keyBuilder$k(luvio, path);
|
|
50667
50734
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50668
50735
|
key,
|
|
@@ -50676,7 +50743,8 @@ function ingest$e(astNode, state) {
|
|
|
50676
50743
|
ttl: TTL$6,
|
|
50677
50744
|
namespace: keyPrefix,
|
|
50678
50745
|
representationName: "ThemeInfo",
|
|
50679
|
-
version: VERSION$i
|
|
50746
|
+
version: VERSION$i,
|
|
50747
|
+
ingestionTimestamp: timestamp,
|
|
50680
50748
|
},
|
|
50681
50749
|
});
|
|
50682
50750
|
}
|
|
@@ -50802,7 +50870,7 @@ function mergeData$5(existingData, newData) {
|
|
|
50802
50870
|
};
|
|
50803
50871
|
}
|
|
50804
50872
|
function ingest$d(astNode, state) {
|
|
50805
|
-
const { path, data, luvio } = state;
|
|
50873
|
+
const { path, data, timestamp, luvio } = state;
|
|
50806
50874
|
const key = keyBuilder$j(luvio, path);
|
|
50807
50875
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50808
50876
|
key,
|
|
@@ -50816,7 +50884,8 @@ function ingest$d(astNode, state) {
|
|
|
50816
50884
|
ttl: TTL$8,
|
|
50817
50885
|
namespace: keyPrefix,
|
|
50818
50886
|
representationName: "ObjectInfo",
|
|
50819
|
-
version: VERSION$h
|
|
50887
|
+
version: VERSION$h,
|
|
50888
|
+
ingestionTimestamp: timestamp,
|
|
50820
50889
|
},
|
|
50821
50890
|
});
|
|
50822
50891
|
}
|
|
@@ -51206,7 +51275,7 @@ function mergeData$4(existingData, newData) {
|
|
|
51206
51275
|
};
|
|
51207
51276
|
}
|
|
51208
51277
|
function ingest$c(astNode, state) {
|
|
51209
|
-
const { path, data, luvio } = state;
|
|
51278
|
+
const { path, data, timestamp, luvio } = state;
|
|
51210
51279
|
const key = keyBuilder$i(luvio, path);
|
|
51211
51280
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51212
51281
|
key,
|
|
@@ -51220,7 +51289,8 @@ function ingest$c(astNode, state) {
|
|
|
51220
51289
|
ttl: TTL$6,
|
|
51221
51290
|
namespace: keyPrefix,
|
|
51222
51291
|
representationName: "ListColumn",
|
|
51223
|
-
version: VERSION$g
|
|
51292
|
+
version: VERSION$g,
|
|
51293
|
+
ingestionTimestamp: timestamp,
|
|
51224
51294
|
},
|
|
51225
51295
|
});
|
|
51226
51296
|
}
|
|
@@ -51366,7 +51436,7 @@ function mergeData$3(existingData, newData) {
|
|
|
51366
51436
|
};
|
|
51367
51437
|
}
|
|
51368
51438
|
function ingest$b(astNode, state) {
|
|
51369
|
-
const { path, data, luvio } = state;
|
|
51439
|
+
const { path, data, timestamp, luvio } = state;
|
|
51370
51440
|
const key = keyBuilder$h(luvio, path);
|
|
51371
51441
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51372
51442
|
key,
|
|
@@ -51380,7 +51450,8 @@ function ingest$b(astNode, state) {
|
|
|
51380
51450
|
ttl: TTL$6,
|
|
51381
51451
|
namespace: keyPrefix,
|
|
51382
51452
|
representationName: "ListOrder",
|
|
51383
|
-
version: VERSION$f
|
|
51453
|
+
version: VERSION$f,
|
|
51454
|
+
ingestionTimestamp: timestamp,
|
|
51384
51455
|
},
|
|
51385
51456
|
});
|
|
51386
51457
|
}
|
|
@@ -51515,7 +51586,7 @@ function mergeData$2(existingData, newData) {
|
|
|
51515
51586
|
};
|
|
51516
51587
|
}
|
|
51517
51588
|
function ingest$a(astNode, state) {
|
|
51518
|
-
const { path, data, luvio } = state;
|
|
51589
|
+
const { path, data, timestamp, luvio } = state;
|
|
51519
51590
|
const key = keyBuilder$g(luvio, path);
|
|
51520
51591
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51521
51592
|
key,
|
|
@@ -51529,7 +51600,8 @@ function ingest$a(astNode, state) {
|
|
|
51529
51600
|
ttl: TTL$7,
|
|
51530
51601
|
namespace: keyPrefix,
|
|
51531
51602
|
representationName: "RelatedListInfo",
|
|
51532
|
-
version: VERSION$e
|
|
51603
|
+
version: VERSION$e,
|
|
51604
|
+
ingestionTimestamp: timestamp,
|
|
51533
51605
|
},
|
|
51534
51606
|
});
|
|
51535
51607
|
}
|
|
@@ -51751,7 +51823,7 @@ function mergeData$1(existingData, newData) {
|
|
|
51751
51823
|
};
|
|
51752
51824
|
}
|
|
51753
51825
|
function ingest$9(astNode, state) {
|
|
51754
|
-
const { path, data, luvio } = state;
|
|
51826
|
+
const { path, data, timestamp, luvio } = state;
|
|
51755
51827
|
const key = keyBuilder$f(luvio, path);
|
|
51756
51828
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51757
51829
|
key,
|
|
@@ -51765,7 +51837,8 @@ function ingest$9(astNode, state) {
|
|
|
51765
51837
|
ttl: TTL$6,
|
|
51766
51838
|
namespace: keyPrefix,
|
|
51767
51839
|
representationName: "UIAPI",
|
|
51768
|
-
version: VERSION$d
|
|
51840
|
+
version: VERSION$d,
|
|
51841
|
+
ingestionTimestamp: timestamp,
|
|
51769
51842
|
},
|
|
51770
51843
|
});
|
|
51771
51844
|
}
|
|
@@ -51989,7 +52062,7 @@ function mergeData(existingData, newData) {
|
|
|
51989
52062
|
};
|
|
51990
52063
|
}
|
|
51991
52064
|
function ingest$8(astNode, state) {
|
|
51992
|
-
const { path, data, luvio } = state;
|
|
52065
|
+
const { path, data, timestamp, luvio } = state;
|
|
51993
52066
|
const key = keyBuilder$e(luvio, astNode, state.variables, state.fragments);
|
|
51994
52067
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51995
52068
|
key,
|
|
@@ -52003,7 +52076,8 @@ function ingest$8(astNode, state) {
|
|
|
52003
52076
|
ttl: TTL$6,
|
|
52004
52077
|
namespace: keyPrefix,
|
|
52005
52078
|
representationName: "Query",
|
|
52006
|
-
version: VERSION$c
|
|
52079
|
+
version: VERSION$c,
|
|
52080
|
+
ingestionTimestamp: timestamp,
|
|
52007
52081
|
},
|
|
52008
52082
|
});
|
|
52009
52083
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.272.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.272.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.272.0"
|
|
39
39
|
}
|
|
40
40
|
}
|