@salesforce/lwc-adapters-uiapi 1.266.0-dev6 → 1.266.0-dev8
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 +231 -136
- 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.7-
|
|
573
|
+
// engine version: 0.154.7-dev4-96466e64
|
|
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
|
}
|
|
@@ -36920,8 +36928,29 @@ function validate$k(obj, path = 'AppliedSearchFilterOutputRepresentation') {
|
|
|
36920
36928
|
}
|
|
36921
36929
|
const obj_label = obj.label;
|
|
36922
36930
|
const path_label = path + '.label';
|
|
36923
|
-
|
|
36924
|
-
|
|
36931
|
+
let obj_label_union0 = null;
|
|
36932
|
+
const obj_label_union0_error = (() => {
|
|
36933
|
+
if (typeof obj_label !== 'string') {
|
|
36934
|
+
return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
36935
|
+
}
|
|
36936
|
+
})();
|
|
36937
|
+
if (obj_label_union0_error != null) {
|
|
36938
|
+
obj_label_union0 = obj_label_union0_error.message;
|
|
36939
|
+
}
|
|
36940
|
+
let obj_label_union1 = null;
|
|
36941
|
+
const obj_label_union1_error = (() => {
|
|
36942
|
+
if (obj_label !== null) {
|
|
36943
|
+
return new TypeError('Expected "null" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
36944
|
+
}
|
|
36945
|
+
})();
|
|
36946
|
+
if (obj_label_union1_error != null) {
|
|
36947
|
+
obj_label_union1 = obj_label_union1_error.message;
|
|
36948
|
+
}
|
|
36949
|
+
if (obj_label_union0 && obj_label_union1) {
|
|
36950
|
+
let message = 'Object doesn\'t match union (at "' + path_label + '")';
|
|
36951
|
+
message += '\n' + obj_label_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
36952
|
+
message += '\n' + obj_label_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
36953
|
+
return new TypeError(message);
|
|
36925
36954
|
}
|
|
36926
36955
|
const obj_operator = obj.operator;
|
|
36927
36956
|
const path_operator = path + '.operator';
|
|
@@ -37742,7 +37771,7 @@ function mergeData$11(existingData, newData) {
|
|
|
37742
37771
|
};
|
|
37743
37772
|
}
|
|
37744
37773
|
function ingest$1a(astNode, state) {
|
|
37745
|
-
const { path, data, luvio } = state;
|
|
37774
|
+
const { path, data, timestamp, luvio } = state;
|
|
37746
37775
|
const key = keyBuilder$1f(luvio, path);
|
|
37747
37776
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37748
37777
|
key,
|
|
@@ -37756,7 +37785,8 @@ function ingest$1a(astNode, state) {
|
|
|
37756
37785
|
ttl: TTL$6,
|
|
37757
37786
|
namespace: keyPrefix,
|
|
37758
37787
|
representationName: "DoubleValue",
|
|
37759
|
-
version: VERSION$1e
|
|
37788
|
+
version: VERSION$1e,
|
|
37789
|
+
ingestionTimestamp: timestamp,
|
|
37760
37790
|
},
|
|
37761
37791
|
});
|
|
37762
37792
|
}
|
|
@@ -37884,7 +37914,7 @@ function mergeData$10(existingData, newData) {
|
|
|
37884
37914
|
};
|
|
37885
37915
|
}
|
|
37886
37916
|
function ingest$19(astNode, state) {
|
|
37887
|
-
const { path, data, luvio } = state;
|
|
37917
|
+
const { path, data, timestamp, luvio } = state;
|
|
37888
37918
|
const key = keyBuilder$1e(luvio, path);
|
|
37889
37919
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37890
37920
|
key,
|
|
@@ -37898,7 +37928,8 @@ function ingest$19(astNode, state) {
|
|
|
37898
37928
|
ttl: TTL$6,
|
|
37899
37929
|
namespace: keyPrefix,
|
|
37900
37930
|
representationName: "LongValue",
|
|
37901
|
-
version: VERSION$1d
|
|
37931
|
+
version: VERSION$1d,
|
|
37932
|
+
ingestionTimestamp: timestamp,
|
|
37902
37933
|
},
|
|
37903
37934
|
});
|
|
37904
37935
|
}
|
|
@@ -38026,7 +38057,7 @@ function mergeData$$(existingData, newData) {
|
|
|
38026
38057
|
};
|
|
38027
38058
|
}
|
|
38028
38059
|
function ingest$18(astNode, state) {
|
|
38029
|
-
const { path, data, luvio } = state;
|
|
38060
|
+
const { path, data, timestamp, luvio } = state;
|
|
38030
38061
|
const key = keyBuilder$1d(luvio, path);
|
|
38031
38062
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38032
38063
|
key,
|
|
@@ -38040,7 +38071,8 @@ function ingest$18(astNode, state) {
|
|
|
38040
38071
|
ttl: TTL$6,
|
|
38041
38072
|
namespace: keyPrefix,
|
|
38042
38073
|
representationName: "PercentValue",
|
|
38043
|
-
version: VERSION$1c
|
|
38074
|
+
version: VERSION$1c,
|
|
38075
|
+
ingestionTimestamp: timestamp,
|
|
38044
38076
|
},
|
|
38045
38077
|
});
|
|
38046
38078
|
}
|
|
@@ -38168,7 +38200,7 @@ function mergeData$_(existingData, newData) {
|
|
|
38168
38200
|
};
|
|
38169
38201
|
}
|
|
38170
38202
|
function ingest$17(astNode, state) {
|
|
38171
|
-
const { path, data, luvio } = state;
|
|
38203
|
+
const { path, data, timestamp, luvio } = state;
|
|
38172
38204
|
const key = keyBuilder$1c(luvio, path);
|
|
38173
38205
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38174
38206
|
key,
|
|
@@ -38182,7 +38214,8 @@ function ingest$17(astNode, state) {
|
|
|
38182
38214
|
ttl: TTL$6,
|
|
38183
38215
|
namespace: keyPrefix,
|
|
38184
38216
|
representationName: "PercentAggregate",
|
|
38185
|
-
version: VERSION$1b
|
|
38217
|
+
version: VERSION$1b,
|
|
38218
|
+
ingestionTimestamp: timestamp,
|
|
38186
38219
|
},
|
|
38187
38220
|
});
|
|
38188
38221
|
}
|
|
@@ -38430,7 +38463,7 @@ function mergeData$Z(existingData, newData) {
|
|
|
38430
38463
|
};
|
|
38431
38464
|
}
|
|
38432
38465
|
function ingest$16(astNode, state) {
|
|
38433
|
-
const { path, data, luvio } = state;
|
|
38466
|
+
const { path, data, timestamp, luvio } = state;
|
|
38434
38467
|
const key = keyBuilder$1b(luvio, path);
|
|
38435
38468
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38436
38469
|
key,
|
|
@@ -38444,7 +38477,8 @@ function ingest$16(astNode, state) {
|
|
|
38444
38477
|
ttl: TTL$6,
|
|
38445
38478
|
namespace: keyPrefix,
|
|
38446
38479
|
representationName: "IntValue",
|
|
38447
|
-
version: VERSION$1a
|
|
38480
|
+
version: VERSION$1a,
|
|
38481
|
+
ingestionTimestamp: timestamp,
|
|
38448
38482
|
},
|
|
38449
38483
|
});
|
|
38450
38484
|
}
|
|
@@ -38572,7 +38606,7 @@ function mergeData$Y(existingData, newData) {
|
|
|
38572
38606
|
};
|
|
38573
38607
|
}
|
|
38574
38608
|
function ingest$15(astNode, state) {
|
|
38575
|
-
const { path, data, luvio } = state;
|
|
38609
|
+
const { path, data, timestamp, luvio } = state;
|
|
38576
38610
|
const key = keyBuilder$1a(luvio, path);
|
|
38577
38611
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38578
38612
|
key,
|
|
@@ -38586,7 +38620,8 @@ function ingest$15(astNode, state) {
|
|
|
38586
38620
|
ttl: TTL$6,
|
|
38587
38621
|
namespace: keyPrefix,
|
|
38588
38622
|
representationName: "StringValue",
|
|
38589
|
-
version: VERSION$19
|
|
38623
|
+
version: VERSION$19,
|
|
38624
|
+
ingestionTimestamp: timestamp,
|
|
38590
38625
|
},
|
|
38591
38626
|
});
|
|
38592
38627
|
}
|
|
@@ -38705,7 +38740,7 @@ function mergeData$X(existingData, newData) {
|
|
|
38705
38740
|
};
|
|
38706
38741
|
}
|
|
38707
38742
|
function ingest$14(astNode, state) {
|
|
38708
|
-
const { path, data, luvio } = state;
|
|
38743
|
+
const { path, data, timestamp, luvio } = state;
|
|
38709
38744
|
const key = keyBuilder$19(luvio, path);
|
|
38710
38745
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38711
38746
|
key,
|
|
@@ -38719,7 +38754,8 @@ function ingest$14(astNode, state) {
|
|
|
38719
38754
|
ttl: TTL$6,
|
|
38720
38755
|
namespace: keyPrefix,
|
|
38721
38756
|
representationName: "StringAggregate",
|
|
38722
|
-
version: VERSION$18
|
|
38757
|
+
version: VERSION$18,
|
|
38758
|
+
ingestionTimestamp: timestamp,
|
|
38723
38759
|
},
|
|
38724
38760
|
});
|
|
38725
38761
|
}
|
|
@@ -38947,7 +38983,7 @@ function mergeData$W(existingData, newData) {
|
|
|
38947
38983
|
};
|
|
38948
38984
|
}
|
|
38949
38985
|
function ingest$13(astNode, state) {
|
|
38950
|
-
const { path, data, luvio } = state;
|
|
38986
|
+
const { path, data, timestamp, luvio } = state;
|
|
38951
38987
|
const key = keyBuilder$18(luvio, path);
|
|
38952
38988
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38953
38989
|
key,
|
|
@@ -38961,7 +38997,8 @@ function ingest$13(astNode, state) {
|
|
|
38961
38997
|
ttl: TTL$6,
|
|
38962
38998
|
namespace: keyPrefix,
|
|
38963
38999
|
representationName: "IDValue",
|
|
38964
|
-
version: VERSION$17
|
|
39000
|
+
version: VERSION$17,
|
|
39001
|
+
ingestionTimestamp: timestamp,
|
|
38965
39002
|
},
|
|
38966
39003
|
});
|
|
38967
39004
|
}
|
|
@@ -39083,7 +39120,7 @@ function mergeData$V(existingData, newData) {
|
|
|
39083
39120
|
};
|
|
39084
39121
|
}
|
|
39085
39122
|
function ingest$12(astNode, state) {
|
|
39086
|
-
const { path, data, luvio } = state;
|
|
39123
|
+
const { path, data, timestamp, luvio } = state;
|
|
39087
39124
|
const key = keyBuilder$17(luvio, path);
|
|
39088
39125
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39089
39126
|
key,
|
|
@@ -39097,7 +39134,8 @@ function ingest$12(astNode, state) {
|
|
|
39097
39134
|
ttl: TTL$6,
|
|
39098
39135
|
namespace: keyPrefix,
|
|
39099
39136
|
representationName: "DateTimeValue",
|
|
39100
|
-
version: VERSION$16
|
|
39137
|
+
version: VERSION$16,
|
|
39138
|
+
ingestionTimestamp: timestamp,
|
|
39101
39139
|
},
|
|
39102
39140
|
});
|
|
39103
39141
|
}
|
|
@@ -39225,7 +39263,7 @@ function mergeData$U(existingData, newData) {
|
|
|
39225
39263
|
};
|
|
39226
39264
|
}
|
|
39227
39265
|
function ingest$11(astNode, state) {
|
|
39228
|
-
const { path, data, luvio } = state;
|
|
39266
|
+
const { path, data, timestamp, luvio } = state;
|
|
39229
39267
|
const key = keyBuilder$16(luvio, path);
|
|
39230
39268
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39231
39269
|
key,
|
|
@@ -39239,7 +39277,8 @@ function ingest$11(astNode, state) {
|
|
|
39239
39277
|
ttl: TTL$6,
|
|
39240
39278
|
namespace: keyPrefix,
|
|
39241
39279
|
representationName: "BooleanValue",
|
|
39242
|
-
version: VERSION$15
|
|
39280
|
+
version: VERSION$15,
|
|
39281
|
+
ingestionTimestamp: timestamp,
|
|
39243
39282
|
},
|
|
39244
39283
|
});
|
|
39245
39284
|
}
|
|
@@ -39361,7 +39400,7 @@ function mergeData$T(existingData, newData) {
|
|
|
39361
39400
|
};
|
|
39362
39401
|
}
|
|
39363
39402
|
function ingest$10(astNode, state) {
|
|
39364
|
-
const { path, data, luvio } = state;
|
|
39403
|
+
const { path, data, timestamp, luvio } = state;
|
|
39365
39404
|
const key = keyBuilder$15(luvio, path);
|
|
39366
39405
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39367
39406
|
key,
|
|
@@ -39375,7 +39414,8 @@ function ingest$10(astNode, state) {
|
|
|
39375
39414
|
ttl: TTL$6,
|
|
39376
39415
|
namespace: keyPrefix,
|
|
39377
39416
|
representationName: "TimeValue",
|
|
39378
|
-
version: VERSION$14
|
|
39417
|
+
version: VERSION$14,
|
|
39418
|
+
ingestionTimestamp: timestamp,
|
|
39379
39419
|
},
|
|
39380
39420
|
});
|
|
39381
39421
|
}
|
|
@@ -39503,7 +39543,7 @@ function mergeData$S(existingData, newData) {
|
|
|
39503
39543
|
};
|
|
39504
39544
|
}
|
|
39505
39545
|
function ingest$$(astNode, state) {
|
|
39506
|
-
const { path, data, luvio } = state;
|
|
39546
|
+
const { path, data, timestamp, luvio } = state;
|
|
39507
39547
|
const key = keyBuilder$14(luvio, path);
|
|
39508
39548
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39509
39549
|
key,
|
|
@@ -39517,7 +39557,8 @@ function ingest$$(astNode, state) {
|
|
|
39517
39557
|
ttl: TTL$6,
|
|
39518
39558
|
namespace: keyPrefix,
|
|
39519
39559
|
representationName: "DateValue",
|
|
39520
|
-
version: VERSION$13
|
|
39560
|
+
version: VERSION$13,
|
|
39561
|
+
ingestionTimestamp: timestamp,
|
|
39521
39562
|
},
|
|
39522
39563
|
});
|
|
39523
39564
|
}
|
|
@@ -39645,7 +39686,7 @@ function mergeData$R(existingData, newData) {
|
|
|
39645
39686
|
};
|
|
39646
39687
|
}
|
|
39647
39688
|
function ingest$_(astNode, state) {
|
|
39648
|
-
const { path, data, luvio } = state;
|
|
39689
|
+
const { path, data, timestamp, luvio } = state;
|
|
39649
39690
|
const key = keyBuilder$13(luvio, path);
|
|
39650
39691
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39651
39692
|
key,
|
|
@@ -39659,7 +39700,8 @@ function ingest$_(astNode, state) {
|
|
|
39659
39700
|
ttl: TTL$6,
|
|
39660
39701
|
namespace: keyPrefix,
|
|
39661
39702
|
representationName: "TextAreaValue",
|
|
39662
|
-
version: VERSION$12
|
|
39703
|
+
version: VERSION$12,
|
|
39704
|
+
ingestionTimestamp: timestamp,
|
|
39663
39705
|
},
|
|
39664
39706
|
});
|
|
39665
39707
|
}
|
|
@@ -39781,7 +39823,7 @@ function mergeData$Q(existingData, newData) {
|
|
|
39781
39823
|
};
|
|
39782
39824
|
}
|
|
39783
39825
|
function ingest$Z(astNode, state) {
|
|
39784
|
-
const { path, data, luvio } = state;
|
|
39826
|
+
const { path, data, timestamp, luvio } = state;
|
|
39785
39827
|
const key = keyBuilder$12(luvio, path);
|
|
39786
39828
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39787
39829
|
key,
|
|
@@ -39795,7 +39837,8 @@ function ingest$Z(astNode, state) {
|
|
|
39795
39837
|
ttl: TTL$6,
|
|
39796
39838
|
namespace: keyPrefix,
|
|
39797
39839
|
representationName: "LongTextAreaValue",
|
|
39798
|
-
version: VERSION$11
|
|
39840
|
+
version: VERSION$11,
|
|
39841
|
+
ingestionTimestamp: timestamp,
|
|
39799
39842
|
},
|
|
39800
39843
|
});
|
|
39801
39844
|
}
|
|
@@ -39917,7 +39960,7 @@ function mergeData$P(existingData, newData) {
|
|
|
39917
39960
|
};
|
|
39918
39961
|
}
|
|
39919
39962
|
function ingest$Y(astNode, state) {
|
|
39920
|
-
const { path, data, luvio } = state;
|
|
39963
|
+
const { path, data, timestamp, luvio } = state;
|
|
39921
39964
|
const key = keyBuilder$11(luvio, path);
|
|
39922
39965
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39923
39966
|
key,
|
|
@@ -39931,7 +39974,8 @@ function ingest$Y(astNode, state) {
|
|
|
39931
39974
|
ttl: TTL$6,
|
|
39932
39975
|
namespace: keyPrefix,
|
|
39933
39976
|
representationName: "RichTextAreaValue",
|
|
39934
|
-
version: VERSION$10
|
|
39977
|
+
version: VERSION$10,
|
|
39978
|
+
ingestionTimestamp: timestamp,
|
|
39935
39979
|
},
|
|
39936
39980
|
});
|
|
39937
39981
|
}
|
|
@@ -40053,7 +40097,7 @@ function mergeData$O(existingData, newData) {
|
|
|
40053
40097
|
};
|
|
40054
40098
|
}
|
|
40055
40099
|
function ingest$X(astNode, state) {
|
|
40056
|
-
const { path, data, luvio } = state;
|
|
40100
|
+
const { path, data, timestamp, luvio } = state;
|
|
40057
40101
|
const key = keyBuilder$10(luvio, path);
|
|
40058
40102
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40059
40103
|
key,
|
|
@@ -40067,7 +40111,8 @@ function ingest$X(astNode, state) {
|
|
|
40067
40111
|
ttl: TTL$6,
|
|
40068
40112
|
namespace: keyPrefix,
|
|
40069
40113
|
representationName: "PhoneNumberValue",
|
|
40070
|
-
version: VERSION
|
|
40114
|
+
version: VERSION$$,
|
|
40115
|
+
ingestionTimestamp: timestamp,
|
|
40071
40116
|
},
|
|
40072
40117
|
});
|
|
40073
40118
|
}
|
|
@@ -40189,7 +40234,7 @@ function mergeData$N(existingData, newData) {
|
|
|
40189
40234
|
};
|
|
40190
40235
|
}
|
|
40191
40236
|
function ingest$W(astNode, state) {
|
|
40192
|
-
const { path, data, luvio } = state;
|
|
40237
|
+
const { path, data, timestamp, luvio } = state;
|
|
40193
40238
|
const key = keyBuilder$$(luvio, path);
|
|
40194
40239
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40195
40240
|
key,
|
|
@@ -40203,7 +40248,8 @@ function ingest$W(astNode, state) {
|
|
|
40203
40248
|
ttl: TTL$6,
|
|
40204
40249
|
namespace: keyPrefix,
|
|
40205
40250
|
representationName: "EmailValue",
|
|
40206
|
-
version: VERSION$_
|
|
40251
|
+
version: VERSION$_,
|
|
40252
|
+
ingestionTimestamp: timestamp,
|
|
40207
40253
|
},
|
|
40208
40254
|
});
|
|
40209
40255
|
}
|
|
@@ -40325,7 +40371,7 @@ function mergeData$M(existingData, newData) {
|
|
|
40325
40371
|
};
|
|
40326
40372
|
}
|
|
40327
40373
|
function ingest$V(astNode, state) {
|
|
40328
|
-
const { path, data, luvio } = state;
|
|
40374
|
+
const { path, data, timestamp, luvio } = state;
|
|
40329
40375
|
const key = keyBuilder$_(luvio, path);
|
|
40330
40376
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40331
40377
|
key,
|
|
@@ -40339,7 +40385,8 @@ function ingest$V(astNode, state) {
|
|
|
40339
40385
|
ttl: TTL$6,
|
|
40340
40386
|
namespace: keyPrefix,
|
|
40341
40387
|
representationName: "UrlValue",
|
|
40342
|
-
version: VERSION$Z
|
|
40388
|
+
version: VERSION$Z,
|
|
40389
|
+
ingestionTimestamp: timestamp,
|
|
40343
40390
|
},
|
|
40344
40391
|
});
|
|
40345
40392
|
}
|
|
@@ -40461,7 +40508,7 @@ function mergeData$L(existingData, newData) {
|
|
|
40461
40508
|
};
|
|
40462
40509
|
}
|
|
40463
40510
|
function ingest$U(astNode, state) {
|
|
40464
|
-
const { path, data, luvio } = state;
|
|
40511
|
+
const { path, data, timestamp, luvio } = state;
|
|
40465
40512
|
const key = keyBuilder$Z(luvio, path);
|
|
40466
40513
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40467
40514
|
key,
|
|
@@ -40475,7 +40522,8 @@ function ingest$U(astNode, state) {
|
|
|
40475
40522
|
ttl: TTL$6,
|
|
40476
40523
|
namespace: keyPrefix,
|
|
40477
40524
|
representationName: "EncryptedStringValue",
|
|
40478
|
-
version: VERSION$Y
|
|
40525
|
+
version: VERSION$Y,
|
|
40526
|
+
ingestionTimestamp: timestamp,
|
|
40479
40527
|
},
|
|
40480
40528
|
});
|
|
40481
40529
|
}
|
|
@@ -40597,7 +40645,7 @@ function mergeData$K(existingData, newData) {
|
|
|
40597
40645
|
};
|
|
40598
40646
|
}
|
|
40599
40647
|
function ingest$T(astNode, state) {
|
|
40600
|
-
const { path, data, luvio } = state;
|
|
40648
|
+
const { path, data, timestamp, luvio } = state;
|
|
40601
40649
|
const key = keyBuilder$Y(luvio, path);
|
|
40602
40650
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40603
40651
|
key,
|
|
@@ -40611,7 +40659,8 @@ function ingest$T(astNode, state) {
|
|
|
40611
40659
|
ttl: TTL$6,
|
|
40612
40660
|
namespace: keyPrefix,
|
|
40613
40661
|
representationName: "CurrencyValue",
|
|
40614
|
-
version: VERSION$X
|
|
40662
|
+
version: VERSION$X,
|
|
40663
|
+
ingestionTimestamp: timestamp,
|
|
40615
40664
|
},
|
|
40616
40665
|
});
|
|
40617
40666
|
}
|
|
@@ -40739,7 +40788,7 @@ function mergeData$J(existingData, newData) {
|
|
|
40739
40788
|
};
|
|
40740
40789
|
}
|
|
40741
40790
|
function ingest$S(astNode, state) {
|
|
40742
|
-
const { path, data, luvio } = state;
|
|
40791
|
+
const { path, data, timestamp, luvio } = state;
|
|
40743
40792
|
const key = keyBuilder$X(luvio, path);
|
|
40744
40793
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40745
40794
|
key,
|
|
@@ -40753,7 +40802,8 @@ function ingest$S(astNode, state) {
|
|
|
40753
40802
|
ttl: TTL$6,
|
|
40754
40803
|
namespace: keyPrefix,
|
|
40755
40804
|
representationName: "LongitudeValue",
|
|
40756
|
-
version: VERSION$W
|
|
40805
|
+
version: VERSION$W,
|
|
40806
|
+
ingestionTimestamp: timestamp,
|
|
40757
40807
|
},
|
|
40758
40808
|
});
|
|
40759
40809
|
}
|
|
@@ -40875,7 +40925,7 @@ function mergeData$I(existingData, newData) {
|
|
|
40875
40925
|
};
|
|
40876
40926
|
}
|
|
40877
40927
|
function ingest$R(astNode, state) {
|
|
40878
|
-
const { path, data, luvio } = state;
|
|
40928
|
+
const { path, data, timestamp, luvio } = state;
|
|
40879
40929
|
const key = keyBuilder$W(luvio, path);
|
|
40880
40930
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40881
40931
|
key,
|
|
@@ -40889,7 +40939,8 @@ function ingest$R(astNode, state) {
|
|
|
40889
40939
|
ttl: TTL$6,
|
|
40890
40940
|
namespace: keyPrefix,
|
|
40891
40941
|
representationName: "LatitudeValue",
|
|
40892
|
-
version: VERSION$V
|
|
40942
|
+
version: VERSION$V,
|
|
40943
|
+
ingestionTimestamp: timestamp,
|
|
40893
40944
|
},
|
|
40894
40945
|
});
|
|
40895
40946
|
}
|
|
@@ -41011,7 +41062,7 @@ function mergeData$H(existingData, newData) {
|
|
|
41011
41062
|
};
|
|
41012
41063
|
}
|
|
41013
41064
|
function ingest$Q(astNode, state) {
|
|
41014
|
-
const { path, data, luvio } = state;
|
|
41065
|
+
const { path, data, timestamp, luvio } = state;
|
|
41015
41066
|
const key = keyBuilder$V(luvio, path);
|
|
41016
41067
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41017
41068
|
key,
|
|
@@ -41025,7 +41076,8 @@ function ingest$Q(astNode, state) {
|
|
|
41025
41076
|
ttl: TTL$6,
|
|
41026
41077
|
namespace: keyPrefix,
|
|
41027
41078
|
representationName: "PicklistValue",
|
|
41028
|
-
version: VERSION$U
|
|
41079
|
+
version: VERSION$U,
|
|
41080
|
+
ingestionTimestamp: timestamp,
|
|
41029
41081
|
},
|
|
41030
41082
|
});
|
|
41031
41083
|
}
|
|
@@ -41153,7 +41205,7 @@ function mergeData$G(existingData, newData) {
|
|
|
41153
41205
|
};
|
|
41154
41206
|
}
|
|
41155
41207
|
function ingest$P(astNode, state) {
|
|
41156
|
-
const { path, data, luvio } = state;
|
|
41208
|
+
const { path, data, timestamp, luvio } = state;
|
|
41157
41209
|
const key = keyBuilder$U(luvio, path);
|
|
41158
41210
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41159
41211
|
key,
|
|
@@ -41167,7 +41219,8 @@ function ingest$P(astNode, state) {
|
|
|
41167
41219
|
ttl: TTL$6,
|
|
41168
41220
|
namespace: keyPrefix,
|
|
41169
41221
|
representationName: "MultiPicklistValue",
|
|
41170
|
-
version: VERSION$T
|
|
41222
|
+
version: VERSION$T,
|
|
41223
|
+
ingestionTimestamp: timestamp,
|
|
41171
41224
|
},
|
|
41172
41225
|
});
|
|
41173
41226
|
}
|
|
@@ -41295,7 +41348,7 @@ function mergeData$F(existingData, newData) {
|
|
|
41295
41348
|
};
|
|
41296
41349
|
}
|
|
41297
41350
|
function ingest$O(astNode, state) {
|
|
41298
|
-
const { path, data, luvio } = state;
|
|
41351
|
+
const { path, data, timestamp, luvio } = state;
|
|
41299
41352
|
const key = keyBuilder$T(luvio, path);
|
|
41300
41353
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41301
41354
|
key,
|
|
@@ -41309,7 +41362,8 @@ function ingest$O(astNode, state) {
|
|
|
41309
41362
|
ttl: TTL$6,
|
|
41310
41363
|
namespace: keyPrefix,
|
|
41311
41364
|
representationName: "Base64Value",
|
|
41312
|
-
version: VERSION$S
|
|
41365
|
+
version: VERSION$S,
|
|
41366
|
+
ingestionTimestamp: timestamp,
|
|
41313
41367
|
},
|
|
41314
41368
|
});
|
|
41315
41369
|
}
|
|
@@ -41431,7 +41485,7 @@ function mergeData$E(existingData, newData) {
|
|
|
41431
41485
|
};
|
|
41432
41486
|
}
|
|
41433
41487
|
function ingest$N(astNode, state) {
|
|
41434
|
-
const { path, data, luvio } = state;
|
|
41488
|
+
const { path, data, timestamp, luvio } = state;
|
|
41435
41489
|
const key = keyBuilder$S(luvio, path);
|
|
41436
41490
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41437
41491
|
key,
|
|
@@ -41445,7 +41499,8 @@ function ingest$N(astNode, state) {
|
|
|
41445
41499
|
ttl: TTL$6,
|
|
41446
41500
|
namespace: keyPrefix,
|
|
41447
41501
|
representationName: "JSONValue",
|
|
41448
|
-
version: VERSION$R
|
|
41502
|
+
version: VERSION$R,
|
|
41503
|
+
ingestionTimestamp: timestamp,
|
|
41449
41504
|
},
|
|
41450
41505
|
});
|
|
41451
41506
|
}
|
|
@@ -41971,7 +42026,7 @@ function mergeData$D(existingData, newData) {
|
|
|
41971
42026
|
};
|
|
41972
42027
|
}
|
|
41973
42028
|
function ingest$L(astNode, state) {
|
|
41974
|
-
const { path, data, luvio } = state;
|
|
42029
|
+
const { path, data, timestamp, luvio } = state;
|
|
41975
42030
|
const key = keyBuilder$R(luvio, path);
|
|
41976
42031
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41977
42032
|
key,
|
|
@@ -41985,7 +42040,8 @@ function ingest$L(astNode, state) {
|
|
|
41985
42040
|
ttl: TTL$6,
|
|
41986
42041
|
namespace: keyPrefix,
|
|
41987
42042
|
representationName: "CompoundField",
|
|
41988
|
-
version: VERSION$P
|
|
42043
|
+
version: VERSION$P,
|
|
42044
|
+
ingestionTimestamp: timestamp,
|
|
41989
42045
|
},
|
|
41990
42046
|
});
|
|
41991
42047
|
}
|
|
@@ -42971,7 +43027,7 @@ function mergeData$C(existingData, newData) {
|
|
|
42971
43027
|
};
|
|
42972
43028
|
}
|
|
42973
43029
|
function ingest$K(astNode, state) {
|
|
42974
|
-
const { path, data, luvio } = state;
|
|
43030
|
+
const { path, data, timestamp, luvio } = state;
|
|
42975
43031
|
const key = keyBuilder$Q(luvio, path);
|
|
42976
43032
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42977
43033
|
key,
|
|
@@ -42985,7 +43041,8 @@ function ingest$K(astNode, state) {
|
|
|
42985
43041
|
ttl: TTL$6,
|
|
42986
43042
|
namespace: keyPrefix,
|
|
42987
43043
|
representationName: "PageInfo",
|
|
42988
|
-
version: VERSION$O
|
|
43044
|
+
version: VERSION$O,
|
|
43045
|
+
ingestionTimestamp: timestamp,
|
|
42989
43046
|
},
|
|
42990
43047
|
});
|
|
42991
43048
|
}
|
|
@@ -43187,7 +43244,7 @@ function mergeData$B(existingData, newData) {
|
|
|
43187
43244
|
};
|
|
43188
43245
|
}
|
|
43189
43246
|
function ingest$J(astNode, state) {
|
|
43190
|
-
const { path, data, luvio } = state;
|
|
43247
|
+
const { path, data, timestamp, luvio } = state;
|
|
43191
43248
|
const key = keyBuilder$P(luvio, path, data);
|
|
43192
43249
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43193
43250
|
key,
|
|
@@ -43204,7 +43261,8 @@ function ingest$J(astNode, state) {
|
|
|
43204
43261
|
ttl: TTL$6,
|
|
43205
43262
|
namespace: keyPrefix,
|
|
43206
43263
|
representationName: "RecordRepresentation",
|
|
43207
|
-
version: VERSION$N
|
|
43264
|
+
version: VERSION$N,
|
|
43265
|
+
ingestionTimestamp: timestamp,
|
|
43208
43266
|
},
|
|
43209
43267
|
});
|
|
43210
43268
|
}
|
|
@@ -43726,7 +43784,7 @@ function mergeData$A(existingData, newData) {
|
|
|
43726
43784
|
};
|
|
43727
43785
|
}
|
|
43728
43786
|
function ingest$I(astNode, state) {
|
|
43729
|
-
const { path, data, luvio } = state;
|
|
43787
|
+
const { path, data, timestamp, luvio } = state;
|
|
43730
43788
|
const key = keyBuilder$O(luvio, path);
|
|
43731
43789
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43732
43790
|
key,
|
|
@@ -43740,7 +43798,8 @@ function ingest$I(astNode, state) {
|
|
|
43740
43798
|
ttl: TTL$6,
|
|
43741
43799
|
namespace: keyPrefix,
|
|
43742
43800
|
representationName: "RecordEdge",
|
|
43743
|
-
version: VERSION$M
|
|
43801
|
+
version: VERSION$M,
|
|
43802
|
+
ingestionTimestamp: timestamp,
|
|
43744
43803
|
},
|
|
43745
43804
|
});
|
|
43746
43805
|
}
|
|
@@ -43950,7 +44009,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
|
|
|
43950
44009
|
}
|
|
43951
44010
|
}
|
|
43952
44011
|
function ingest$H(astNode, state) {
|
|
43953
|
-
const { path, data, luvio } = state;
|
|
44012
|
+
const { path, data, timestamp, luvio } = state;
|
|
43954
44013
|
const key = keyBuilder$N(luvio, path);
|
|
43955
44014
|
return ingestCursorConnectionType(astNode, state, {
|
|
43956
44015
|
key,
|
|
@@ -43966,7 +44025,8 @@ function ingest$H(astNode, state) {
|
|
|
43966
44025
|
ttl: TTL$9,
|
|
43967
44026
|
namespace: keyPrefix,
|
|
43968
44027
|
representationName: "RecordConnection",
|
|
43969
|
-
version: VERSION$L
|
|
44028
|
+
version: VERSION$L,
|
|
44029
|
+
ingestionTimestamp: timestamp,
|
|
43970
44030
|
},
|
|
43971
44031
|
});
|
|
43972
44032
|
}
|
|
@@ -44135,7 +44195,7 @@ function mergeData$y(existingData, newData) {
|
|
|
44135
44195
|
};
|
|
44136
44196
|
}
|
|
44137
44197
|
function ingest$G(astNode, state) {
|
|
44138
|
-
const { path, data, luvio } = state;
|
|
44198
|
+
const { path, data, timestamp, luvio } = state;
|
|
44139
44199
|
const key = keyBuilder$M(luvio, path);
|
|
44140
44200
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44141
44201
|
key,
|
|
@@ -44149,7 +44209,8 @@ function ingest$G(astNode, state) {
|
|
|
44149
44209
|
ttl: TTL$6,
|
|
44150
44210
|
namespace: keyPrefix,
|
|
44151
44211
|
representationName: "RecordQuery",
|
|
44152
|
-
version: VERSION$K
|
|
44212
|
+
version: VERSION$K,
|
|
44213
|
+
ingestionTimestamp: timestamp,
|
|
44153
44214
|
},
|
|
44154
44215
|
});
|
|
44155
44216
|
}
|
|
@@ -44279,7 +44340,7 @@ function mergeData$x(existingData, newData) {
|
|
|
44279
44340
|
};
|
|
44280
44341
|
}
|
|
44281
44342
|
function ingest$F(astNode, state) {
|
|
44282
|
-
const { path, data, luvio } = state;
|
|
44343
|
+
const { path, data, timestamp, luvio } = state;
|
|
44283
44344
|
const key = keyBuilder$L(luvio, path);
|
|
44284
44345
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44285
44346
|
key,
|
|
@@ -44293,7 +44354,8 @@ function ingest$F(astNode, state) {
|
|
|
44293
44354
|
ttl: TTL$6,
|
|
44294
44355
|
namespace: keyPrefix,
|
|
44295
44356
|
representationName: "BooleanAggregate",
|
|
44296
|
-
version: VERSION$J
|
|
44357
|
+
version: VERSION$J,
|
|
44358
|
+
ingestionTimestamp: timestamp,
|
|
44297
44359
|
},
|
|
44298
44360
|
});
|
|
44299
44361
|
}
|
|
@@ -44462,7 +44524,7 @@ function mergeData$w(existingData, newData) {
|
|
|
44462
44524
|
};
|
|
44463
44525
|
}
|
|
44464
44526
|
function ingest$E(astNode, state) {
|
|
44465
|
-
const { path, data, luvio } = state;
|
|
44527
|
+
const { path, data, timestamp, luvio } = state;
|
|
44466
44528
|
const key = keyBuilder$K(luvio, path);
|
|
44467
44529
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44468
44530
|
key,
|
|
@@ -44476,7 +44538,8 @@ function ingest$E(astNode, state) {
|
|
|
44476
44538
|
ttl: TTL$6,
|
|
44477
44539
|
namespace: keyPrefix,
|
|
44478
44540
|
representationName: "CurrencyAggregate",
|
|
44479
|
-
version: VERSION$I
|
|
44541
|
+
version: VERSION$I,
|
|
44542
|
+
ingestionTimestamp: timestamp,
|
|
44480
44543
|
},
|
|
44481
44544
|
});
|
|
44482
44545
|
}
|
|
@@ -44724,7 +44787,7 @@ function mergeData$v(existingData, newData) {
|
|
|
44724
44787
|
};
|
|
44725
44788
|
}
|
|
44726
44789
|
function ingest$D(astNode, state) {
|
|
44727
|
-
const { path, data, luvio } = state;
|
|
44790
|
+
const { path, data, timestamp, luvio } = state;
|
|
44728
44791
|
const key = keyBuilder$J(luvio, path);
|
|
44729
44792
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44730
44793
|
key,
|
|
@@ -44738,7 +44801,8 @@ function ingest$D(astNode, state) {
|
|
|
44738
44801
|
ttl: TTL$6,
|
|
44739
44802
|
namespace: keyPrefix,
|
|
44740
44803
|
representationName: "DateFunctionAggregation",
|
|
44741
|
-
version: VERSION$H
|
|
44804
|
+
version: VERSION$H,
|
|
44805
|
+
ingestionTimestamp: timestamp,
|
|
44742
44806
|
},
|
|
44743
44807
|
});
|
|
44744
44808
|
}
|
|
@@ -44872,7 +44936,7 @@ function mergeData$u(existingData, newData) {
|
|
|
44872
44936
|
};
|
|
44873
44937
|
}
|
|
44874
44938
|
function ingest$C(astNode, state) {
|
|
44875
|
-
const { path, data, luvio } = state;
|
|
44939
|
+
const { path, data, timestamp, luvio } = state;
|
|
44876
44940
|
const key = keyBuilder$I(luvio, path);
|
|
44877
44941
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44878
44942
|
key,
|
|
@@ -44886,7 +44950,8 @@ function ingest$C(astNode, state) {
|
|
|
44886
44950
|
ttl: TTL$6,
|
|
44887
44951
|
namespace: keyPrefix,
|
|
44888
44952
|
representationName: "DateAggregate",
|
|
44889
|
-
version: VERSION$G
|
|
44953
|
+
version: VERSION$G,
|
|
44954
|
+
ingestionTimestamp: timestamp,
|
|
44890
44955
|
},
|
|
44891
44956
|
});
|
|
44892
44957
|
}
|
|
@@ -45253,7 +45318,7 @@ function mergeData$t(existingData, newData) {
|
|
|
45253
45318
|
};
|
|
45254
45319
|
}
|
|
45255
45320
|
function ingest$B(astNode, state) {
|
|
45256
|
-
const { path, data, luvio } = state;
|
|
45321
|
+
const { path, data, timestamp, luvio } = state;
|
|
45257
45322
|
const key = keyBuilder$H(luvio, path);
|
|
45258
45323
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45259
45324
|
key,
|
|
@@ -45267,7 +45332,8 @@ function ingest$B(astNode, state) {
|
|
|
45267
45332
|
ttl: TTL$6,
|
|
45268
45333
|
namespace: keyPrefix,
|
|
45269
45334
|
representationName: "DoubleAggregate",
|
|
45270
|
-
version: VERSION$F
|
|
45335
|
+
version: VERSION$F,
|
|
45336
|
+
ingestionTimestamp: timestamp,
|
|
45271
45337
|
},
|
|
45272
45338
|
});
|
|
45273
45339
|
}
|
|
@@ -45506,7 +45572,7 @@ function mergeData$s(existingData, newData) {
|
|
|
45506
45572
|
};
|
|
45507
45573
|
}
|
|
45508
45574
|
function ingest$A(astNode, state) {
|
|
45509
|
-
const { path, data, luvio } = state;
|
|
45575
|
+
const { path, data, timestamp, luvio } = state;
|
|
45510
45576
|
const key = keyBuilder$G(luvio, path);
|
|
45511
45577
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45512
45578
|
key,
|
|
@@ -45520,7 +45586,8 @@ function ingest$A(astNode, state) {
|
|
|
45520
45586
|
ttl: TTL$6,
|
|
45521
45587
|
namespace: keyPrefix,
|
|
45522
45588
|
representationName: "EmailAggregate",
|
|
45523
|
-
version: VERSION$E
|
|
45589
|
+
version: VERSION$E,
|
|
45590
|
+
ingestionTimestamp: timestamp,
|
|
45524
45591
|
},
|
|
45525
45592
|
});
|
|
45526
45593
|
}
|
|
@@ -45751,7 +45818,7 @@ function mergeData$r(existingData, newData) {
|
|
|
45751
45818
|
};
|
|
45752
45819
|
}
|
|
45753
45820
|
function ingest$z(astNode, state) {
|
|
45754
|
-
const { path, data, luvio } = state;
|
|
45821
|
+
const { path, data, timestamp, luvio } = state;
|
|
45755
45822
|
const key = keyBuilder$F(luvio, path);
|
|
45756
45823
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45757
45824
|
key,
|
|
@@ -45765,7 +45832,8 @@ function ingest$z(astNode, state) {
|
|
|
45765
45832
|
ttl: TTL$6,
|
|
45766
45833
|
namespace: keyPrefix,
|
|
45767
45834
|
representationName: "IDAggregate",
|
|
45768
|
-
version: VERSION$D
|
|
45835
|
+
version: VERSION$D,
|
|
45836
|
+
ingestionTimestamp: timestamp,
|
|
45769
45837
|
},
|
|
45770
45838
|
});
|
|
45771
45839
|
}
|
|
@@ -45996,7 +46064,7 @@ function mergeData$q(existingData, newData) {
|
|
|
45996
46064
|
};
|
|
45997
46065
|
}
|
|
45998
46066
|
function ingest$y(astNode, state) {
|
|
45999
|
-
const { path, data, luvio } = state;
|
|
46067
|
+
const { path, data, timestamp, luvio } = state;
|
|
46000
46068
|
const key = keyBuilder$E(luvio, path);
|
|
46001
46069
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46002
46070
|
key,
|
|
@@ -46010,7 +46078,8 @@ function ingest$y(astNode, state) {
|
|
|
46010
46078
|
ttl: TTL$6,
|
|
46011
46079
|
namespace: keyPrefix,
|
|
46012
46080
|
representationName: "IntAggregate",
|
|
46013
|
-
version: VERSION$C
|
|
46081
|
+
version: VERSION$C,
|
|
46082
|
+
ingestionTimestamp: timestamp,
|
|
46014
46083
|
},
|
|
46015
46084
|
});
|
|
46016
46085
|
}
|
|
@@ -46269,7 +46338,7 @@ function mergeData$p(existingData, newData) {
|
|
|
46269
46338
|
};
|
|
46270
46339
|
}
|
|
46271
46340
|
function ingest$x(astNode, state) {
|
|
46272
|
-
const { path, data, luvio } = state;
|
|
46341
|
+
const { path, data, timestamp, luvio } = state;
|
|
46273
46342
|
const key = keyBuilder$D(luvio, path);
|
|
46274
46343
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46275
46344
|
key,
|
|
@@ -46283,7 +46352,8 @@ function ingest$x(astNode, state) {
|
|
|
46283
46352
|
ttl: TTL$6,
|
|
46284
46353
|
namespace: keyPrefix,
|
|
46285
46354
|
representationName: "LatitudeAggregate",
|
|
46286
|
-
version: VERSION$B
|
|
46355
|
+
version: VERSION$B,
|
|
46356
|
+
ingestionTimestamp: timestamp,
|
|
46287
46357
|
},
|
|
46288
46358
|
});
|
|
46289
46359
|
}
|
|
@@ -46525,7 +46595,7 @@ function mergeData$o(existingData, newData) {
|
|
|
46525
46595
|
};
|
|
46526
46596
|
}
|
|
46527
46597
|
function ingest$w(astNode, state) {
|
|
46528
|
-
const { path, data, luvio } = state;
|
|
46598
|
+
const { path, data, timestamp, luvio } = state;
|
|
46529
46599
|
const key = keyBuilder$C(luvio, path);
|
|
46530
46600
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46531
46601
|
key,
|
|
@@ -46539,7 +46609,8 @@ function ingest$w(astNode, state) {
|
|
|
46539
46609
|
ttl: TTL$6,
|
|
46540
46610
|
namespace: keyPrefix,
|
|
46541
46611
|
representationName: "LongitudeAggregate",
|
|
46542
|
-
version: VERSION$A
|
|
46612
|
+
version: VERSION$A,
|
|
46613
|
+
ingestionTimestamp: timestamp,
|
|
46543
46614
|
},
|
|
46544
46615
|
});
|
|
46545
46616
|
}
|
|
@@ -46781,7 +46852,7 @@ function mergeData$n(existingData, newData) {
|
|
|
46781
46852
|
};
|
|
46782
46853
|
}
|
|
46783
46854
|
function ingest$v(astNode, state) {
|
|
46784
|
-
const { path, data, luvio } = state;
|
|
46855
|
+
const { path, data, timestamp, luvio } = state;
|
|
46785
46856
|
const key = keyBuilder$B(luvio, path);
|
|
46786
46857
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46787
46858
|
key,
|
|
@@ -46795,7 +46866,8 @@ function ingest$v(astNode, state) {
|
|
|
46795
46866
|
ttl: TTL$6,
|
|
46796
46867
|
namespace: keyPrefix,
|
|
46797
46868
|
representationName: "LongAggregate",
|
|
46798
|
-
version: VERSION$z
|
|
46869
|
+
version: VERSION$z,
|
|
46870
|
+
ingestionTimestamp: timestamp,
|
|
46799
46871
|
},
|
|
46800
46872
|
});
|
|
46801
46873
|
}
|
|
@@ -47054,7 +47126,7 @@ function mergeData$m(existingData, newData) {
|
|
|
47054
47126
|
};
|
|
47055
47127
|
}
|
|
47056
47128
|
function ingest$u(astNode, state) {
|
|
47057
|
-
const { path, data, luvio } = state;
|
|
47129
|
+
const { path, data, timestamp, luvio } = state;
|
|
47058
47130
|
const key = keyBuilder$A(luvio, path);
|
|
47059
47131
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47060
47132
|
key,
|
|
@@ -47068,7 +47140,8 @@ function ingest$u(astNode, state) {
|
|
|
47068
47140
|
ttl: TTL$6,
|
|
47069
47141
|
namespace: keyPrefix,
|
|
47070
47142
|
representationName: "PhoneNumberAggregate",
|
|
47071
|
-
version: VERSION$y
|
|
47143
|
+
version: VERSION$y,
|
|
47144
|
+
ingestionTimestamp: timestamp,
|
|
47072
47145
|
},
|
|
47073
47146
|
});
|
|
47074
47147
|
}
|
|
@@ -47299,7 +47372,7 @@ function mergeData$l(existingData, newData) {
|
|
|
47299
47372
|
};
|
|
47300
47373
|
}
|
|
47301
47374
|
function ingest$t(astNode, state) {
|
|
47302
|
-
const { path, data, luvio } = state;
|
|
47375
|
+
const { path, data, timestamp, luvio } = state;
|
|
47303
47376
|
const key = keyBuilder$z(luvio, path);
|
|
47304
47377
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47305
47378
|
key,
|
|
@@ -47313,7 +47386,8 @@ function ingest$t(astNode, state) {
|
|
|
47313
47386
|
ttl: TTL$6,
|
|
47314
47387
|
namespace: keyPrefix,
|
|
47315
47388
|
representationName: "PicklistAggregate",
|
|
47316
|
-
version: VERSION$x
|
|
47389
|
+
version: VERSION$x,
|
|
47390
|
+
ingestionTimestamp: timestamp,
|
|
47317
47391
|
},
|
|
47318
47392
|
});
|
|
47319
47393
|
}
|
|
@@ -47550,7 +47624,7 @@ function mergeData$k(existingData, newData) {
|
|
|
47550
47624
|
};
|
|
47551
47625
|
}
|
|
47552
47626
|
function ingest$s(astNode, state) {
|
|
47553
|
-
const { path, data, luvio } = state;
|
|
47627
|
+
const { path, data, timestamp, luvio } = state;
|
|
47554
47628
|
const key = keyBuilder$y(luvio, path);
|
|
47555
47629
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47556
47630
|
key,
|
|
@@ -47564,7 +47638,8 @@ function ingest$s(astNode, state) {
|
|
|
47564
47638
|
ttl: TTL$6,
|
|
47565
47639
|
namespace: keyPrefix,
|
|
47566
47640
|
representationName: "TextAreaAggregate",
|
|
47567
|
-
version: VERSION$w
|
|
47641
|
+
version: VERSION$w,
|
|
47642
|
+
ingestionTimestamp: timestamp,
|
|
47568
47643
|
},
|
|
47569
47644
|
});
|
|
47570
47645
|
}
|
|
@@ -47795,7 +47870,7 @@ function mergeData$j(existingData, newData) {
|
|
|
47795
47870
|
};
|
|
47796
47871
|
}
|
|
47797
47872
|
function ingest$r(astNode, state) {
|
|
47798
|
-
const { path, data, luvio } = state;
|
|
47873
|
+
const { path, data, timestamp, luvio } = state;
|
|
47799
47874
|
const key = keyBuilder$x(luvio, path);
|
|
47800
47875
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47801
47876
|
key,
|
|
@@ -47809,7 +47884,8 @@ function ingest$r(astNode, state) {
|
|
|
47809
47884
|
ttl: TTL$6,
|
|
47810
47885
|
namespace: keyPrefix,
|
|
47811
47886
|
representationName: "TimeAggregate",
|
|
47812
|
-
version: VERSION$v
|
|
47887
|
+
version: VERSION$v,
|
|
47888
|
+
ingestionTimestamp: timestamp,
|
|
47813
47889
|
},
|
|
47814
47890
|
});
|
|
47815
47891
|
}
|
|
@@ -47984,7 +48060,7 @@ function mergeData$i(existingData, newData) {
|
|
|
47984
48060
|
};
|
|
47985
48061
|
}
|
|
47986
48062
|
function ingest$q(astNode, state) {
|
|
47987
|
-
const { path, data, luvio } = state;
|
|
48063
|
+
const { path, data, timestamp, luvio } = state;
|
|
47988
48064
|
const key = keyBuilder$w(luvio, path);
|
|
47989
48065
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47990
48066
|
key,
|
|
@@ -47998,7 +48074,8 @@ function ingest$q(astNode, state) {
|
|
|
47998
48074
|
ttl: TTL$6,
|
|
47999
48075
|
namespace: keyPrefix,
|
|
48000
48076
|
representationName: "UrlAggregate",
|
|
48001
|
-
version: VERSION$u
|
|
48077
|
+
version: VERSION$u,
|
|
48078
|
+
ingestionTimestamp: timestamp,
|
|
48002
48079
|
},
|
|
48003
48080
|
});
|
|
48004
48081
|
}
|
|
@@ -48352,7 +48429,7 @@ function mergeData$h(existingData, newData) {
|
|
|
48352
48429
|
};
|
|
48353
48430
|
}
|
|
48354
48431
|
function ingest$p(astNode, state) {
|
|
48355
|
-
const { path, data, luvio } = state;
|
|
48432
|
+
const { path, data, timestamp, luvio } = state;
|
|
48356
48433
|
const key = keyBuilder$v(luvio, path);
|
|
48357
48434
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48358
48435
|
key,
|
|
@@ -48366,7 +48443,8 @@ function ingest$p(astNode, state) {
|
|
|
48366
48443
|
ttl: TTL$6,
|
|
48367
48444
|
namespace: keyPrefix,
|
|
48368
48445
|
representationName: "RecordAggregate",
|
|
48369
|
-
version: VERSION$t
|
|
48446
|
+
version: VERSION$t,
|
|
48447
|
+
ingestionTimestamp: timestamp,
|
|
48370
48448
|
},
|
|
48371
48449
|
});
|
|
48372
48450
|
}
|
|
@@ -48720,7 +48798,7 @@ function mergeData$g(existingData, newData) {
|
|
|
48720
48798
|
};
|
|
48721
48799
|
}
|
|
48722
48800
|
function ingest$o(astNode, state) {
|
|
48723
|
-
const { path, data, luvio } = state;
|
|
48801
|
+
const { path, data, timestamp, luvio } = state;
|
|
48724
48802
|
const key = keyBuilder$u(luvio, path);
|
|
48725
48803
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48726
48804
|
key,
|
|
@@ -48734,7 +48812,8 @@ function ingest$o(astNode, state) {
|
|
|
48734
48812
|
ttl: TTL$6,
|
|
48735
48813
|
namespace: keyPrefix,
|
|
48736
48814
|
representationName: "RecordResult",
|
|
48737
|
-
version: VERSION$s
|
|
48815
|
+
version: VERSION$s,
|
|
48816
|
+
ingestionTimestamp: timestamp,
|
|
48738
48817
|
},
|
|
48739
48818
|
});
|
|
48740
48819
|
}
|
|
@@ -48882,7 +48961,7 @@ function mergeData$f(existingData, newData) {
|
|
|
48882
48961
|
};
|
|
48883
48962
|
}
|
|
48884
48963
|
function ingest$n(astNode, state) {
|
|
48885
|
-
const { path, data, luvio } = state;
|
|
48964
|
+
const { path, data, timestamp, luvio } = state;
|
|
48886
48965
|
const key = keyBuilder$t(luvio, path);
|
|
48887
48966
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48888
48967
|
key,
|
|
@@ -48896,7 +48975,8 @@ function ingest$n(astNode, state) {
|
|
|
48896
48975
|
ttl: TTL$6,
|
|
48897
48976
|
namespace: keyPrefix,
|
|
48898
48977
|
representationName: "RecordAggregateEdge",
|
|
48899
|
-
version: VERSION$r
|
|
48978
|
+
version: VERSION$r,
|
|
48979
|
+
ingestionTimestamp: timestamp,
|
|
48900
48980
|
},
|
|
48901
48981
|
});
|
|
48902
48982
|
}
|
|
@@ -49105,7 +49185,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
|
|
|
49105
49185
|
}
|
|
49106
49186
|
}
|
|
49107
49187
|
function ingest$m(astNode, state) {
|
|
49108
|
-
const { path, data, luvio } = state;
|
|
49188
|
+
const { path, data, timestamp, luvio } = state;
|
|
49109
49189
|
const key = keyBuilder$s(luvio, path);
|
|
49110
49190
|
return ingestCursorConnectionType(astNode, state, {
|
|
49111
49191
|
key,
|
|
@@ -49121,7 +49201,8 @@ function ingest$m(astNode, state) {
|
|
|
49121
49201
|
ttl: TTL$6,
|
|
49122
49202
|
namespace: keyPrefix,
|
|
49123
49203
|
representationName: "RecordAggregateConnection",
|
|
49124
|
-
version: VERSION$q
|
|
49204
|
+
version: VERSION$q,
|
|
49205
|
+
ingestionTimestamp: timestamp,
|
|
49125
49206
|
},
|
|
49126
49207
|
});
|
|
49127
49208
|
}
|
|
@@ -49338,7 +49419,7 @@ function mergeData$d(existingData, newData) {
|
|
|
49338
49419
|
};
|
|
49339
49420
|
}
|
|
49340
49421
|
function ingest$l(astNode, state) {
|
|
49341
|
-
const { path, data, luvio } = state;
|
|
49422
|
+
const { path, data, timestamp, luvio } = state;
|
|
49342
49423
|
const key = keyBuilder$r(luvio, path);
|
|
49343
49424
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49344
49425
|
key,
|
|
@@ -49352,7 +49433,8 @@ function ingest$l(astNode, state) {
|
|
|
49352
49433
|
ttl: TTL$6,
|
|
49353
49434
|
namespace: keyPrefix,
|
|
49354
49435
|
representationName: "RecordQueryAggregate",
|
|
49355
|
-
version: VERSION$p
|
|
49436
|
+
version: VERSION$p,
|
|
49437
|
+
ingestionTimestamp: timestamp,
|
|
49356
49438
|
},
|
|
49357
49439
|
});
|
|
49358
49440
|
}
|
|
@@ -49482,7 +49564,7 @@ function mergeData$c(existingData, newData) {
|
|
|
49482
49564
|
};
|
|
49483
49565
|
}
|
|
49484
49566
|
function ingest$k(astNode, state) {
|
|
49485
|
-
const { path, data, luvio } = state;
|
|
49567
|
+
const { path, data, timestamp, luvio } = state;
|
|
49486
49568
|
const key = keyBuilder$q(luvio, path);
|
|
49487
49569
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49488
49570
|
key,
|
|
@@ -49496,7 +49578,8 @@ function ingest$k(astNode, state) {
|
|
|
49496
49578
|
ttl: TTL$6,
|
|
49497
49579
|
namespace: keyPrefix,
|
|
49498
49580
|
representationName: "ChildRelationship",
|
|
49499
|
-
version: VERSION$o
|
|
49581
|
+
version: VERSION$o,
|
|
49582
|
+
ingestionTimestamp: timestamp,
|
|
49500
49583
|
},
|
|
49501
49584
|
});
|
|
49502
49585
|
}
|
|
@@ -49674,7 +49757,7 @@ function mergeData$b(existingData, newData) {
|
|
|
49674
49757
|
};
|
|
49675
49758
|
}
|
|
49676
49759
|
function ingest$j(astNode, state) {
|
|
49677
|
-
const { path, data, luvio } = state;
|
|
49760
|
+
const { path, data, timestamp, luvio } = state;
|
|
49678
49761
|
const key = keyBuilder$p(luvio, path);
|
|
49679
49762
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49680
49763
|
key,
|
|
@@ -49688,7 +49771,8 @@ function ingest$j(astNode, state) {
|
|
|
49688
49771
|
ttl: TTL$6,
|
|
49689
49772
|
namespace: keyPrefix,
|
|
49690
49773
|
representationName: "DependentField",
|
|
49691
|
-
version: VERSION$n
|
|
49774
|
+
version: VERSION$n,
|
|
49775
|
+
ingestionTimestamp: timestamp,
|
|
49692
49776
|
},
|
|
49693
49777
|
});
|
|
49694
49778
|
}
|
|
@@ -49813,7 +49897,7 @@ function mergeData$a(existingData, newData) {
|
|
|
49813
49897
|
};
|
|
49814
49898
|
}
|
|
49815
49899
|
function ingest$i(astNode, state) {
|
|
49816
|
-
const { path, data, luvio } = state;
|
|
49900
|
+
const { path, data, timestamp, luvio } = state;
|
|
49817
49901
|
const key = keyBuilder$o(luvio, path);
|
|
49818
49902
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49819
49903
|
key,
|
|
@@ -49827,7 +49911,8 @@ function ingest$i(astNode, state) {
|
|
|
49827
49911
|
ttl: TTL$6,
|
|
49828
49912
|
namespace: keyPrefix,
|
|
49829
49913
|
representationName: "FilteredLookupInfo",
|
|
49830
|
-
version: VERSION$m
|
|
49914
|
+
version: VERSION$m,
|
|
49915
|
+
ingestionTimestamp: timestamp,
|
|
49831
49916
|
},
|
|
49832
49917
|
});
|
|
49833
49918
|
}
|
|
@@ -49967,7 +50052,7 @@ function mergeData$9(existingData, newData) {
|
|
|
49967
50052
|
};
|
|
49968
50053
|
}
|
|
49969
50054
|
function ingest$h(astNode, state) {
|
|
49970
|
-
const { path, data, luvio } = state;
|
|
50055
|
+
const { path, data, timestamp, luvio } = state;
|
|
49971
50056
|
const key = keyBuilder$n(luvio, path);
|
|
49972
50057
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49973
50058
|
key,
|
|
@@ -49981,7 +50066,8 @@ function ingest$h(astNode, state) {
|
|
|
49981
50066
|
ttl: TTL$6,
|
|
49982
50067
|
namespace: keyPrefix,
|
|
49983
50068
|
representationName: "ReferenceToInfo",
|
|
49984
|
-
version: VERSION$l
|
|
50069
|
+
version: VERSION$l,
|
|
50070
|
+
ingestionTimestamp: timestamp,
|
|
49985
50071
|
},
|
|
49986
50072
|
});
|
|
49987
50073
|
}
|
|
@@ -50141,7 +50227,7 @@ function mergeData$8(existingData, newData) {
|
|
|
50141
50227
|
};
|
|
50142
50228
|
}
|
|
50143
50229
|
function ingest$g(astNode, state) {
|
|
50144
|
-
const { path, data, luvio } = state;
|
|
50230
|
+
const { path, data, timestamp, luvio } = state;
|
|
50145
50231
|
const key = keyBuilder$m(luvio, path);
|
|
50146
50232
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50147
50233
|
key,
|
|
@@ -50155,7 +50241,8 @@ function ingest$g(astNode, state) {
|
|
|
50155
50241
|
ttl: TTL$6,
|
|
50156
50242
|
namespace: keyPrefix,
|
|
50157
50243
|
representationName: "Field",
|
|
50158
|
-
version: VERSION$k
|
|
50244
|
+
version: VERSION$k,
|
|
50245
|
+
ingestionTimestamp: timestamp,
|
|
50159
50246
|
},
|
|
50160
50247
|
});
|
|
50161
50248
|
}
|
|
@@ -50533,7 +50620,7 @@ function mergeData$7(existingData, newData) {
|
|
|
50533
50620
|
};
|
|
50534
50621
|
}
|
|
50535
50622
|
function ingest$f(astNode, state) {
|
|
50536
|
-
const { path, data, luvio } = state;
|
|
50623
|
+
const { path, data, timestamp, luvio } = state;
|
|
50537
50624
|
const key = keyBuilder$l(luvio, path);
|
|
50538
50625
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50539
50626
|
key,
|
|
@@ -50547,7 +50634,8 @@ function ingest$f(astNode, state) {
|
|
|
50547
50634
|
ttl: TTL$6,
|
|
50548
50635
|
namespace: keyPrefix,
|
|
50549
50636
|
representationName: "RecordTypeInfo",
|
|
50550
|
-
version: VERSION$j
|
|
50637
|
+
version: VERSION$j,
|
|
50638
|
+
ingestionTimestamp: timestamp,
|
|
50551
50639
|
},
|
|
50552
50640
|
});
|
|
50553
50641
|
}
|
|
@@ -50708,7 +50796,7 @@ function mergeData$6(existingData, newData) {
|
|
|
50708
50796
|
};
|
|
50709
50797
|
}
|
|
50710
50798
|
function ingest$e(astNode, state) {
|
|
50711
|
-
const { path, data, luvio } = state;
|
|
50799
|
+
const { path, data, timestamp, luvio } = state;
|
|
50712
50800
|
const key = keyBuilder$k(luvio, path);
|
|
50713
50801
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50714
50802
|
key,
|
|
@@ -50722,7 +50810,8 @@ function ingest$e(astNode, state) {
|
|
|
50722
50810
|
ttl: TTL$6,
|
|
50723
50811
|
namespace: keyPrefix,
|
|
50724
50812
|
representationName: "ThemeInfo",
|
|
50725
|
-
version: VERSION$i
|
|
50813
|
+
version: VERSION$i,
|
|
50814
|
+
ingestionTimestamp: timestamp,
|
|
50726
50815
|
},
|
|
50727
50816
|
});
|
|
50728
50817
|
}
|
|
@@ -50848,7 +50937,7 @@ function mergeData$5(existingData, newData) {
|
|
|
50848
50937
|
};
|
|
50849
50938
|
}
|
|
50850
50939
|
function ingest$d(astNode, state) {
|
|
50851
|
-
const { path, data, luvio } = state;
|
|
50940
|
+
const { path, data, timestamp, luvio } = state;
|
|
50852
50941
|
const key = keyBuilder$j(luvio, path);
|
|
50853
50942
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50854
50943
|
key,
|
|
@@ -50862,7 +50951,8 @@ function ingest$d(astNode, state) {
|
|
|
50862
50951
|
ttl: TTL$8,
|
|
50863
50952
|
namespace: keyPrefix,
|
|
50864
50953
|
representationName: "ObjectInfo",
|
|
50865
|
-
version: VERSION$h
|
|
50954
|
+
version: VERSION$h,
|
|
50955
|
+
ingestionTimestamp: timestamp,
|
|
50866
50956
|
},
|
|
50867
50957
|
});
|
|
50868
50958
|
}
|
|
@@ -51252,7 +51342,7 @@ function mergeData$4(existingData, newData) {
|
|
|
51252
51342
|
};
|
|
51253
51343
|
}
|
|
51254
51344
|
function ingest$c(astNode, state) {
|
|
51255
|
-
const { path, data, luvio } = state;
|
|
51345
|
+
const { path, data, timestamp, luvio } = state;
|
|
51256
51346
|
const key = keyBuilder$i(luvio, path);
|
|
51257
51347
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51258
51348
|
key,
|
|
@@ -51266,7 +51356,8 @@ function ingest$c(astNode, state) {
|
|
|
51266
51356
|
ttl: TTL$6,
|
|
51267
51357
|
namespace: keyPrefix,
|
|
51268
51358
|
representationName: "ListColumn",
|
|
51269
|
-
version: VERSION$g
|
|
51359
|
+
version: VERSION$g,
|
|
51360
|
+
ingestionTimestamp: timestamp,
|
|
51270
51361
|
},
|
|
51271
51362
|
});
|
|
51272
51363
|
}
|
|
@@ -51412,7 +51503,7 @@ function mergeData$3(existingData, newData) {
|
|
|
51412
51503
|
};
|
|
51413
51504
|
}
|
|
51414
51505
|
function ingest$b(astNode, state) {
|
|
51415
|
-
const { path, data, luvio } = state;
|
|
51506
|
+
const { path, data, timestamp, luvio } = state;
|
|
51416
51507
|
const key = keyBuilder$h(luvio, path);
|
|
51417
51508
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51418
51509
|
key,
|
|
@@ -51426,7 +51517,8 @@ function ingest$b(astNode, state) {
|
|
|
51426
51517
|
ttl: TTL$6,
|
|
51427
51518
|
namespace: keyPrefix,
|
|
51428
51519
|
representationName: "ListOrder",
|
|
51429
|
-
version: VERSION$f
|
|
51520
|
+
version: VERSION$f,
|
|
51521
|
+
ingestionTimestamp: timestamp,
|
|
51430
51522
|
},
|
|
51431
51523
|
});
|
|
51432
51524
|
}
|
|
@@ -51561,7 +51653,7 @@ function mergeData$2(existingData, newData) {
|
|
|
51561
51653
|
};
|
|
51562
51654
|
}
|
|
51563
51655
|
function ingest$a(astNode, state) {
|
|
51564
|
-
const { path, data, luvio } = state;
|
|
51656
|
+
const { path, data, timestamp, luvio } = state;
|
|
51565
51657
|
const key = keyBuilder$g(luvio, path);
|
|
51566
51658
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51567
51659
|
key,
|
|
@@ -51575,7 +51667,8 @@ function ingest$a(astNode, state) {
|
|
|
51575
51667
|
ttl: TTL$7,
|
|
51576
51668
|
namespace: keyPrefix,
|
|
51577
51669
|
representationName: "RelatedListInfo",
|
|
51578
|
-
version: VERSION$e
|
|
51670
|
+
version: VERSION$e,
|
|
51671
|
+
ingestionTimestamp: timestamp,
|
|
51579
51672
|
},
|
|
51580
51673
|
});
|
|
51581
51674
|
}
|
|
@@ -51797,7 +51890,7 @@ function mergeData$1(existingData, newData) {
|
|
|
51797
51890
|
};
|
|
51798
51891
|
}
|
|
51799
51892
|
function ingest$9(astNode, state) {
|
|
51800
|
-
const { path, data, luvio } = state;
|
|
51893
|
+
const { path, data, timestamp, luvio } = state;
|
|
51801
51894
|
const key = keyBuilder$f(luvio, path);
|
|
51802
51895
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51803
51896
|
key,
|
|
@@ -51811,7 +51904,8 @@ function ingest$9(astNode, state) {
|
|
|
51811
51904
|
ttl: TTL$6,
|
|
51812
51905
|
namespace: keyPrefix,
|
|
51813
51906
|
representationName: "UIAPI",
|
|
51814
|
-
version: VERSION$d
|
|
51907
|
+
version: VERSION$d,
|
|
51908
|
+
ingestionTimestamp: timestamp,
|
|
51815
51909
|
},
|
|
51816
51910
|
});
|
|
51817
51911
|
}
|
|
@@ -52035,7 +52129,7 @@ function mergeData(existingData, newData) {
|
|
|
52035
52129
|
};
|
|
52036
52130
|
}
|
|
52037
52131
|
function ingest$8(astNode, state) {
|
|
52038
|
-
const { path, data, luvio } = state;
|
|
52132
|
+
const { path, data, timestamp, luvio } = state;
|
|
52039
52133
|
const key = keyBuilder$e(luvio, astNode, state.variables, state.fragments);
|
|
52040
52134
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
52041
52135
|
key,
|
|
@@ -52049,7 +52143,8 @@ function ingest$8(astNode, state) {
|
|
|
52049
52143
|
ttl: TTL$6,
|
|
52050
52144
|
namespace: keyPrefix,
|
|
52051
52145
|
representationName: "Query",
|
|
52052
|
-
version: VERSION$c
|
|
52146
|
+
version: VERSION$c,
|
|
52147
|
+
ingestionTimestamp: timestamp,
|
|
52053
52148
|
},
|
|
52054
52149
|
});
|
|
52055
52150
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.266.0-
|
|
3
|
+
"version": "1.266.0-dev8",
|
|
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.266.0-
|
|
34
|
+
"@salesforce/lds-adapters-uiapi": "^1.266.0-dev8"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@luvio/lwc-luvio": "0.154.7-
|
|
38
|
-
"@salesforce/lds-default-luvio": "^1.266.0-
|
|
37
|
+
"@luvio/lwc-luvio": "0.154.7-dev4",
|
|
38
|
+
"@salesforce/lds-default-luvio": "^1.266.0-dev8"
|
|
39
39
|
}
|
|
40
40
|
}
|