@salesforce/lds-adapters-uiapi 1.266.0-dev6 → 1.266.0-dev7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/types/src/generated/graphql/types/type-util.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/AppliedSearchFilterOutputRepresentation.d.ts +3 -3
- package/dist/es/es2018/uiapi-records-service.js +229 -135
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +199 -133
- package/sfdc/index.js +32 -4
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +1 -1
|
@@ -5643,6 +5643,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
5643
5643
|
representationName: RepresentationType$X,
|
|
5644
5644
|
namespace: keyPrefix,
|
|
5645
5645
|
version: VERSION$2g,
|
|
5646
|
+
ingestionTimestamp: timestamp,
|
|
5646
5647
|
});
|
|
5647
5648
|
return createLink$1(key);
|
|
5648
5649
|
};
|
|
@@ -7243,6 +7244,7 @@ const ingest$1S = function ListRecordCollectionRepresentationIngest(input, path,
|
|
|
7243
7244
|
namespace: "UiApi",
|
|
7244
7245
|
version: VERSION$2e,
|
|
7245
7246
|
representationName: RepresentationType$W,
|
|
7247
|
+
ingestionTimestamp: timestamp,
|
|
7246
7248
|
};
|
|
7247
7249
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
7248
7250
|
}
|
|
@@ -8719,6 +8721,7 @@ const ingest$1P = function ListViewSummaryCollectionRepresentationIngest(input,
|
|
|
8719
8721
|
namespace: "UiApi",
|
|
8720
8722
|
version: VERSION$2b,
|
|
8721
8723
|
representationName: RepresentationType$T,
|
|
8724
|
+
ingestionTimestamp: timestamp,
|
|
8722
8725
|
};
|
|
8723
8726
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
8724
8727
|
}
|
|
@@ -15587,7 +15590,10 @@ const dynamicIngest$4 = (ingestParams) => {
|
|
|
15587
15590
|
if (existingRecord === undefined || equals$R(existingRecord, incomingRecord) === false) {
|
|
15588
15591
|
luvio.storePublish(key, incomingRecord);
|
|
15589
15592
|
}
|
|
15590
|
-
luvio.publishStoreMetadata(key,
|
|
15593
|
+
luvio.publishStoreMetadata(key, {
|
|
15594
|
+
...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
|
|
15595
|
+
ingestionTimestamp: timestamp,
|
|
15596
|
+
});
|
|
15591
15597
|
return createLink$1(key);
|
|
15592
15598
|
};
|
|
15593
15599
|
};
|
|
@@ -28817,6 +28823,7 @@ const ingest$1g = function RelatedListRecordCollectionRepresentationIngest(input
|
|
|
28817
28823
|
namespace: "UiApi",
|
|
28818
28824
|
version: VERSION$1k,
|
|
28819
28825
|
representationName: RepresentationType$i,
|
|
28826
|
+
ingestionTimestamp: timestamp,
|
|
28820
28827
|
};
|
|
28821
28828
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
28822
28829
|
}
|
|
@@ -30778,8 +30785,29 @@ function validate$k(obj, path = 'AppliedSearchFilterOutputRepresentation') {
|
|
|
30778
30785
|
}
|
|
30779
30786
|
const obj_label = obj.label;
|
|
30780
30787
|
const path_label = path + '.label';
|
|
30781
|
-
|
|
30782
|
-
|
|
30788
|
+
let obj_label_union0 = null;
|
|
30789
|
+
const obj_label_union0_error = (() => {
|
|
30790
|
+
if (typeof obj_label !== 'string') {
|
|
30791
|
+
return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
30792
|
+
}
|
|
30793
|
+
})();
|
|
30794
|
+
if (obj_label_union0_error != null) {
|
|
30795
|
+
obj_label_union0 = obj_label_union0_error.message;
|
|
30796
|
+
}
|
|
30797
|
+
let obj_label_union1 = null;
|
|
30798
|
+
const obj_label_union1_error = (() => {
|
|
30799
|
+
if (obj_label !== null) {
|
|
30800
|
+
return new TypeError('Expected "null" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
30801
|
+
}
|
|
30802
|
+
})();
|
|
30803
|
+
if (obj_label_union1_error != null) {
|
|
30804
|
+
obj_label_union1 = obj_label_union1_error.message;
|
|
30805
|
+
}
|
|
30806
|
+
if (obj_label_union0 && obj_label_union1) {
|
|
30807
|
+
let message = 'Object doesn\'t match union (at "' + path_label + '")';
|
|
30808
|
+
message += '\n' + obj_label_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
30809
|
+
message += '\n' + obj_label_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
30810
|
+
return new TypeError(message);
|
|
30783
30811
|
}
|
|
30784
30812
|
const obj_operator = obj.operator;
|
|
30785
30813
|
const path_operator = path + '.operator';
|
|
@@ -31600,7 +31628,7 @@ function mergeData$11(existingData, newData) {
|
|
|
31600
31628
|
};
|
|
31601
31629
|
}
|
|
31602
31630
|
function ingest$1a(astNode, state) {
|
|
31603
|
-
const { path, data, luvio } = state;
|
|
31631
|
+
const { path, data, timestamp, luvio } = state;
|
|
31604
31632
|
const key = keyBuilder$1f(luvio, path);
|
|
31605
31633
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31606
31634
|
key,
|
|
@@ -31614,7 +31642,8 @@ function ingest$1a(astNode, state) {
|
|
|
31614
31642
|
ttl: TTL$6,
|
|
31615
31643
|
namespace: keyPrefix,
|
|
31616
31644
|
representationName: "DoubleValue",
|
|
31617
|
-
version: VERSION$1e
|
|
31645
|
+
version: VERSION$1e,
|
|
31646
|
+
ingestionTimestamp: timestamp,
|
|
31618
31647
|
},
|
|
31619
31648
|
});
|
|
31620
31649
|
}
|
|
@@ -31742,7 +31771,7 @@ function mergeData$10(existingData, newData) {
|
|
|
31742
31771
|
};
|
|
31743
31772
|
}
|
|
31744
31773
|
function ingest$19(astNode, state) {
|
|
31745
|
-
const { path, data, luvio } = state;
|
|
31774
|
+
const { path, data, timestamp, luvio } = state;
|
|
31746
31775
|
const key = keyBuilder$1e(luvio, path);
|
|
31747
31776
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31748
31777
|
key,
|
|
@@ -31756,7 +31785,8 @@ function ingest$19(astNode, state) {
|
|
|
31756
31785
|
ttl: TTL$6,
|
|
31757
31786
|
namespace: keyPrefix,
|
|
31758
31787
|
representationName: "LongValue",
|
|
31759
|
-
version: VERSION$1d
|
|
31788
|
+
version: VERSION$1d,
|
|
31789
|
+
ingestionTimestamp: timestamp,
|
|
31760
31790
|
},
|
|
31761
31791
|
});
|
|
31762
31792
|
}
|
|
@@ -31884,7 +31914,7 @@ function mergeData$$(existingData, newData) {
|
|
|
31884
31914
|
};
|
|
31885
31915
|
}
|
|
31886
31916
|
function ingest$18(astNode, state) {
|
|
31887
|
-
const { path, data, luvio } = state;
|
|
31917
|
+
const { path, data, timestamp, luvio } = state;
|
|
31888
31918
|
const key = keyBuilder$1d(luvio, path);
|
|
31889
31919
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31890
31920
|
key,
|
|
@@ -31898,7 +31928,8 @@ function ingest$18(astNode, state) {
|
|
|
31898
31928
|
ttl: TTL$6,
|
|
31899
31929
|
namespace: keyPrefix,
|
|
31900
31930
|
representationName: "PercentValue",
|
|
31901
|
-
version: VERSION$1c
|
|
31931
|
+
version: VERSION$1c,
|
|
31932
|
+
ingestionTimestamp: timestamp,
|
|
31902
31933
|
},
|
|
31903
31934
|
});
|
|
31904
31935
|
}
|
|
@@ -32026,7 +32057,7 @@ function mergeData$_(existingData, newData) {
|
|
|
32026
32057
|
};
|
|
32027
32058
|
}
|
|
32028
32059
|
function ingest$17(astNode, state) {
|
|
32029
|
-
const { path, data, luvio } = state;
|
|
32060
|
+
const { path, data, timestamp, luvio } = state;
|
|
32030
32061
|
const key = keyBuilder$1c(luvio, path);
|
|
32031
32062
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32032
32063
|
key,
|
|
@@ -32040,7 +32071,8 @@ function ingest$17(astNode, state) {
|
|
|
32040
32071
|
ttl: TTL$6,
|
|
32041
32072
|
namespace: keyPrefix,
|
|
32042
32073
|
representationName: "PercentAggregate",
|
|
32043
|
-
version: VERSION$1b
|
|
32074
|
+
version: VERSION$1b,
|
|
32075
|
+
ingestionTimestamp: timestamp,
|
|
32044
32076
|
},
|
|
32045
32077
|
});
|
|
32046
32078
|
}
|
|
@@ -32288,7 +32320,7 @@ function mergeData$Z(existingData, newData) {
|
|
|
32288
32320
|
};
|
|
32289
32321
|
}
|
|
32290
32322
|
function ingest$16(astNode, state) {
|
|
32291
|
-
const { path, data, luvio } = state;
|
|
32323
|
+
const { path, data, timestamp, luvio } = state;
|
|
32292
32324
|
const key = keyBuilder$1b(luvio, path);
|
|
32293
32325
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32294
32326
|
key,
|
|
@@ -32302,7 +32334,8 @@ function ingest$16(astNode, state) {
|
|
|
32302
32334
|
ttl: TTL$6,
|
|
32303
32335
|
namespace: keyPrefix,
|
|
32304
32336
|
representationName: "IntValue",
|
|
32305
|
-
version: VERSION$1a
|
|
32337
|
+
version: VERSION$1a,
|
|
32338
|
+
ingestionTimestamp: timestamp,
|
|
32306
32339
|
},
|
|
32307
32340
|
});
|
|
32308
32341
|
}
|
|
@@ -32430,7 +32463,7 @@ function mergeData$Y(existingData, newData) {
|
|
|
32430
32463
|
};
|
|
32431
32464
|
}
|
|
32432
32465
|
function ingest$15(astNode, state) {
|
|
32433
|
-
const { path, data, luvio } = state;
|
|
32466
|
+
const { path, data, timestamp, luvio } = state;
|
|
32434
32467
|
const key = keyBuilder$1a(luvio, path);
|
|
32435
32468
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32436
32469
|
key,
|
|
@@ -32444,7 +32477,8 @@ function ingest$15(astNode, state) {
|
|
|
32444
32477
|
ttl: TTL$6,
|
|
32445
32478
|
namespace: keyPrefix,
|
|
32446
32479
|
representationName: "StringValue",
|
|
32447
|
-
version: VERSION$19
|
|
32480
|
+
version: VERSION$19,
|
|
32481
|
+
ingestionTimestamp: timestamp,
|
|
32448
32482
|
},
|
|
32449
32483
|
});
|
|
32450
32484
|
}
|
|
@@ -32563,7 +32597,7 @@ function mergeData$X(existingData, newData) {
|
|
|
32563
32597
|
};
|
|
32564
32598
|
}
|
|
32565
32599
|
function ingest$14(astNode, state) {
|
|
32566
|
-
const { path, data, luvio } = state;
|
|
32600
|
+
const { path, data, timestamp, luvio } = state;
|
|
32567
32601
|
const key = keyBuilder$19(luvio, path);
|
|
32568
32602
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32569
32603
|
key,
|
|
@@ -32577,7 +32611,8 @@ function ingest$14(astNode, state) {
|
|
|
32577
32611
|
ttl: TTL$6,
|
|
32578
32612
|
namespace: keyPrefix,
|
|
32579
32613
|
representationName: "StringAggregate",
|
|
32580
|
-
version: VERSION$18
|
|
32614
|
+
version: VERSION$18,
|
|
32615
|
+
ingestionTimestamp: timestamp,
|
|
32581
32616
|
},
|
|
32582
32617
|
});
|
|
32583
32618
|
}
|
|
@@ -32805,7 +32840,7 @@ function mergeData$W(existingData, newData) {
|
|
|
32805
32840
|
};
|
|
32806
32841
|
}
|
|
32807
32842
|
function ingest$13(astNode, state) {
|
|
32808
|
-
const { path, data, luvio } = state;
|
|
32843
|
+
const { path, data, timestamp, luvio } = state;
|
|
32809
32844
|
const key = keyBuilder$18(luvio, path);
|
|
32810
32845
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32811
32846
|
key,
|
|
@@ -32819,7 +32854,8 @@ function ingest$13(astNode, state) {
|
|
|
32819
32854
|
ttl: TTL$6,
|
|
32820
32855
|
namespace: keyPrefix,
|
|
32821
32856
|
representationName: "IDValue",
|
|
32822
|
-
version: VERSION$17
|
|
32857
|
+
version: VERSION$17,
|
|
32858
|
+
ingestionTimestamp: timestamp,
|
|
32823
32859
|
},
|
|
32824
32860
|
});
|
|
32825
32861
|
}
|
|
@@ -32941,7 +32977,7 @@ function mergeData$V(existingData, newData) {
|
|
|
32941
32977
|
};
|
|
32942
32978
|
}
|
|
32943
32979
|
function ingest$12(astNode, state) {
|
|
32944
|
-
const { path, data, luvio } = state;
|
|
32980
|
+
const { path, data, timestamp, luvio } = state;
|
|
32945
32981
|
const key = keyBuilder$17(luvio, path);
|
|
32946
32982
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32947
32983
|
key,
|
|
@@ -32955,7 +32991,8 @@ function ingest$12(astNode, state) {
|
|
|
32955
32991
|
ttl: TTL$6,
|
|
32956
32992
|
namespace: keyPrefix,
|
|
32957
32993
|
representationName: "DateTimeValue",
|
|
32958
|
-
version: VERSION$16
|
|
32994
|
+
version: VERSION$16,
|
|
32995
|
+
ingestionTimestamp: timestamp,
|
|
32959
32996
|
},
|
|
32960
32997
|
});
|
|
32961
32998
|
}
|
|
@@ -33083,7 +33120,7 @@ function mergeData$U(existingData, newData) {
|
|
|
33083
33120
|
};
|
|
33084
33121
|
}
|
|
33085
33122
|
function ingest$11(astNode, state) {
|
|
33086
|
-
const { path, data, luvio } = state;
|
|
33123
|
+
const { path, data, timestamp, luvio } = state;
|
|
33087
33124
|
const key = keyBuilder$16(luvio, path);
|
|
33088
33125
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33089
33126
|
key,
|
|
@@ -33097,7 +33134,8 @@ function ingest$11(astNode, state) {
|
|
|
33097
33134
|
ttl: TTL$6,
|
|
33098
33135
|
namespace: keyPrefix,
|
|
33099
33136
|
representationName: "BooleanValue",
|
|
33100
|
-
version: VERSION$15
|
|
33137
|
+
version: VERSION$15,
|
|
33138
|
+
ingestionTimestamp: timestamp,
|
|
33101
33139
|
},
|
|
33102
33140
|
});
|
|
33103
33141
|
}
|
|
@@ -33219,7 +33257,7 @@ function mergeData$T(existingData, newData) {
|
|
|
33219
33257
|
};
|
|
33220
33258
|
}
|
|
33221
33259
|
function ingest$10(astNode, state) {
|
|
33222
|
-
const { path, data, luvio } = state;
|
|
33260
|
+
const { path, data, timestamp, luvio } = state;
|
|
33223
33261
|
const key = keyBuilder$15(luvio, path);
|
|
33224
33262
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33225
33263
|
key,
|
|
@@ -33233,7 +33271,8 @@ function ingest$10(astNode, state) {
|
|
|
33233
33271
|
ttl: TTL$6,
|
|
33234
33272
|
namespace: keyPrefix,
|
|
33235
33273
|
representationName: "TimeValue",
|
|
33236
|
-
version: VERSION$14
|
|
33274
|
+
version: VERSION$14,
|
|
33275
|
+
ingestionTimestamp: timestamp,
|
|
33237
33276
|
},
|
|
33238
33277
|
});
|
|
33239
33278
|
}
|
|
@@ -33361,7 +33400,7 @@ function mergeData$S(existingData, newData) {
|
|
|
33361
33400
|
};
|
|
33362
33401
|
}
|
|
33363
33402
|
function ingest$$(astNode, state) {
|
|
33364
|
-
const { path, data, luvio } = state;
|
|
33403
|
+
const { path, data, timestamp, luvio } = state;
|
|
33365
33404
|
const key = keyBuilder$14(luvio, path);
|
|
33366
33405
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33367
33406
|
key,
|
|
@@ -33375,7 +33414,8 @@ function ingest$$(astNode, state) {
|
|
|
33375
33414
|
ttl: TTL$6,
|
|
33376
33415
|
namespace: keyPrefix,
|
|
33377
33416
|
representationName: "DateValue",
|
|
33378
|
-
version: VERSION$13
|
|
33417
|
+
version: VERSION$13,
|
|
33418
|
+
ingestionTimestamp: timestamp,
|
|
33379
33419
|
},
|
|
33380
33420
|
});
|
|
33381
33421
|
}
|
|
@@ -33503,7 +33543,7 @@ function mergeData$R(existingData, newData) {
|
|
|
33503
33543
|
};
|
|
33504
33544
|
}
|
|
33505
33545
|
function ingest$_(astNode, state) {
|
|
33506
|
-
const { path, data, luvio } = state;
|
|
33546
|
+
const { path, data, timestamp, luvio } = state;
|
|
33507
33547
|
const key = keyBuilder$13(luvio, path);
|
|
33508
33548
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33509
33549
|
key,
|
|
@@ -33517,7 +33557,8 @@ function ingest$_(astNode, state) {
|
|
|
33517
33557
|
ttl: TTL$6,
|
|
33518
33558
|
namespace: keyPrefix,
|
|
33519
33559
|
representationName: "TextAreaValue",
|
|
33520
|
-
version: VERSION$12
|
|
33560
|
+
version: VERSION$12,
|
|
33561
|
+
ingestionTimestamp: timestamp,
|
|
33521
33562
|
},
|
|
33522
33563
|
});
|
|
33523
33564
|
}
|
|
@@ -33639,7 +33680,7 @@ function mergeData$Q(existingData, newData) {
|
|
|
33639
33680
|
};
|
|
33640
33681
|
}
|
|
33641
33682
|
function ingest$Z(astNode, state) {
|
|
33642
|
-
const { path, data, luvio } = state;
|
|
33683
|
+
const { path, data, timestamp, luvio } = state;
|
|
33643
33684
|
const key = keyBuilder$12(luvio, path);
|
|
33644
33685
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33645
33686
|
key,
|
|
@@ -33653,7 +33694,8 @@ function ingest$Z(astNode, state) {
|
|
|
33653
33694
|
ttl: TTL$6,
|
|
33654
33695
|
namespace: keyPrefix,
|
|
33655
33696
|
representationName: "LongTextAreaValue",
|
|
33656
|
-
version: VERSION$11
|
|
33697
|
+
version: VERSION$11,
|
|
33698
|
+
ingestionTimestamp: timestamp,
|
|
33657
33699
|
},
|
|
33658
33700
|
});
|
|
33659
33701
|
}
|
|
@@ -33775,7 +33817,7 @@ function mergeData$P(existingData, newData) {
|
|
|
33775
33817
|
};
|
|
33776
33818
|
}
|
|
33777
33819
|
function ingest$Y(astNode, state) {
|
|
33778
|
-
const { path, data, luvio } = state;
|
|
33820
|
+
const { path, data, timestamp, luvio } = state;
|
|
33779
33821
|
const key = keyBuilder$11(luvio, path);
|
|
33780
33822
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33781
33823
|
key,
|
|
@@ -33789,7 +33831,8 @@ function ingest$Y(astNode, state) {
|
|
|
33789
33831
|
ttl: TTL$6,
|
|
33790
33832
|
namespace: keyPrefix,
|
|
33791
33833
|
representationName: "RichTextAreaValue",
|
|
33792
|
-
version: VERSION$10
|
|
33834
|
+
version: VERSION$10,
|
|
33835
|
+
ingestionTimestamp: timestamp,
|
|
33793
33836
|
},
|
|
33794
33837
|
});
|
|
33795
33838
|
}
|
|
@@ -33911,7 +33954,7 @@ function mergeData$O(existingData, newData) {
|
|
|
33911
33954
|
};
|
|
33912
33955
|
}
|
|
33913
33956
|
function ingest$X(astNode, state) {
|
|
33914
|
-
const { path, data, luvio } = state;
|
|
33957
|
+
const { path, data, timestamp, luvio } = state;
|
|
33915
33958
|
const key = keyBuilder$10(luvio, path);
|
|
33916
33959
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33917
33960
|
key,
|
|
@@ -33925,7 +33968,8 @@ function ingest$X(astNode, state) {
|
|
|
33925
33968
|
ttl: TTL$6,
|
|
33926
33969
|
namespace: keyPrefix,
|
|
33927
33970
|
representationName: "PhoneNumberValue",
|
|
33928
|
-
version: VERSION
|
|
33971
|
+
version: VERSION$$,
|
|
33972
|
+
ingestionTimestamp: timestamp,
|
|
33929
33973
|
},
|
|
33930
33974
|
});
|
|
33931
33975
|
}
|
|
@@ -34047,7 +34091,7 @@ function mergeData$N(existingData, newData) {
|
|
|
34047
34091
|
};
|
|
34048
34092
|
}
|
|
34049
34093
|
function ingest$W(astNode, state) {
|
|
34050
|
-
const { path, data, luvio } = state;
|
|
34094
|
+
const { path, data, timestamp, luvio } = state;
|
|
34051
34095
|
const key = keyBuilder$$(luvio, path);
|
|
34052
34096
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34053
34097
|
key,
|
|
@@ -34061,7 +34105,8 @@ function ingest$W(astNode, state) {
|
|
|
34061
34105
|
ttl: TTL$6,
|
|
34062
34106
|
namespace: keyPrefix,
|
|
34063
34107
|
representationName: "EmailValue",
|
|
34064
|
-
version: VERSION$_
|
|
34108
|
+
version: VERSION$_,
|
|
34109
|
+
ingestionTimestamp: timestamp,
|
|
34065
34110
|
},
|
|
34066
34111
|
});
|
|
34067
34112
|
}
|
|
@@ -34183,7 +34228,7 @@ function mergeData$M(existingData, newData) {
|
|
|
34183
34228
|
};
|
|
34184
34229
|
}
|
|
34185
34230
|
function ingest$V(astNode, state) {
|
|
34186
|
-
const { path, data, luvio } = state;
|
|
34231
|
+
const { path, data, timestamp, luvio } = state;
|
|
34187
34232
|
const key = keyBuilder$_(luvio, path);
|
|
34188
34233
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34189
34234
|
key,
|
|
@@ -34197,7 +34242,8 @@ function ingest$V(astNode, state) {
|
|
|
34197
34242
|
ttl: TTL$6,
|
|
34198
34243
|
namespace: keyPrefix,
|
|
34199
34244
|
representationName: "UrlValue",
|
|
34200
|
-
version: VERSION$Z
|
|
34245
|
+
version: VERSION$Z,
|
|
34246
|
+
ingestionTimestamp: timestamp,
|
|
34201
34247
|
},
|
|
34202
34248
|
});
|
|
34203
34249
|
}
|
|
@@ -34319,7 +34365,7 @@ function mergeData$L(existingData, newData) {
|
|
|
34319
34365
|
};
|
|
34320
34366
|
}
|
|
34321
34367
|
function ingest$U(astNode, state) {
|
|
34322
|
-
const { path, data, luvio } = state;
|
|
34368
|
+
const { path, data, timestamp, luvio } = state;
|
|
34323
34369
|
const key = keyBuilder$Z(luvio, path);
|
|
34324
34370
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34325
34371
|
key,
|
|
@@ -34333,7 +34379,8 @@ function ingest$U(astNode, state) {
|
|
|
34333
34379
|
ttl: TTL$6,
|
|
34334
34380
|
namespace: keyPrefix,
|
|
34335
34381
|
representationName: "EncryptedStringValue",
|
|
34336
|
-
version: VERSION$Y
|
|
34382
|
+
version: VERSION$Y,
|
|
34383
|
+
ingestionTimestamp: timestamp,
|
|
34337
34384
|
},
|
|
34338
34385
|
});
|
|
34339
34386
|
}
|
|
@@ -34455,7 +34502,7 @@ function mergeData$K(existingData, newData) {
|
|
|
34455
34502
|
};
|
|
34456
34503
|
}
|
|
34457
34504
|
function ingest$T(astNode, state) {
|
|
34458
|
-
const { path, data, luvio } = state;
|
|
34505
|
+
const { path, data, timestamp, luvio } = state;
|
|
34459
34506
|
const key = keyBuilder$Y(luvio, path);
|
|
34460
34507
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34461
34508
|
key,
|
|
@@ -34469,7 +34516,8 @@ function ingest$T(astNode, state) {
|
|
|
34469
34516
|
ttl: TTL$6,
|
|
34470
34517
|
namespace: keyPrefix,
|
|
34471
34518
|
representationName: "CurrencyValue",
|
|
34472
|
-
version: VERSION$X
|
|
34519
|
+
version: VERSION$X,
|
|
34520
|
+
ingestionTimestamp: timestamp,
|
|
34473
34521
|
},
|
|
34474
34522
|
});
|
|
34475
34523
|
}
|
|
@@ -34597,7 +34645,7 @@ function mergeData$J(existingData, newData) {
|
|
|
34597
34645
|
};
|
|
34598
34646
|
}
|
|
34599
34647
|
function ingest$S(astNode, state) {
|
|
34600
|
-
const { path, data, luvio } = state;
|
|
34648
|
+
const { path, data, timestamp, luvio } = state;
|
|
34601
34649
|
const key = keyBuilder$X(luvio, path);
|
|
34602
34650
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34603
34651
|
key,
|
|
@@ -34611,7 +34659,8 @@ function ingest$S(astNode, state) {
|
|
|
34611
34659
|
ttl: TTL$6,
|
|
34612
34660
|
namespace: keyPrefix,
|
|
34613
34661
|
representationName: "LongitudeValue",
|
|
34614
|
-
version: VERSION$W
|
|
34662
|
+
version: VERSION$W,
|
|
34663
|
+
ingestionTimestamp: timestamp,
|
|
34615
34664
|
},
|
|
34616
34665
|
});
|
|
34617
34666
|
}
|
|
@@ -34733,7 +34782,7 @@ function mergeData$I(existingData, newData) {
|
|
|
34733
34782
|
};
|
|
34734
34783
|
}
|
|
34735
34784
|
function ingest$R(astNode, state) {
|
|
34736
|
-
const { path, data, luvio } = state;
|
|
34785
|
+
const { path, data, timestamp, luvio } = state;
|
|
34737
34786
|
const key = keyBuilder$W(luvio, path);
|
|
34738
34787
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34739
34788
|
key,
|
|
@@ -34747,7 +34796,8 @@ function ingest$R(astNode, state) {
|
|
|
34747
34796
|
ttl: TTL$6,
|
|
34748
34797
|
namespace: keyPrefix,
|
|
34749
34798
|
representationName: "LatitudeValue",
|
|
34750
|
-
version: VERSION$V
|
|
34799
|
+
version: VERSION$V,
|
|
34800
|
+
ingestionTimestamp: timestamp,
|
|
34751
34801
|
},
|
|
34752
34802
|
});
|
|
34753
34803
|
}
|
|
@@ -34869,7 +34919,7 @@ function mergeData$H(existingData, newData) {
|
|
|
34869
34919
|
};
|
|
34870
34920
|
}
|
|
34871
34921
|
function ingest$Q(astNode, state) {
|
|
34872
|
-
const { path, data, luvio } = state;
|
|
34922
|
+
const { path, data, timestamp, luvio } = state;
|
|
34873
34923
|
const key = keyBuilder$V(luvio, path);
|
|
34874
34924
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34875
34925
|
key,
|
|
@@ -34883,7 +34933,8 @@ function ingest$Q(astNode, state) {
|
|
|
34883
34933
|
ttl: TTL$6,
|
|
34884
34934
|
namespace: keyPrefix,
|
|
34885
34935
|
representationName: "PicklistValue",
|
|
34886
|
-
version: VERSION$U
|
|
34936
|
+
version: VERSION$U,
|
|
34937
|
+
ingestionTimestamp: timestamp,
|
|
34887
34938
|
},
|
|
34888
34939
|
});
|
|
34889
34940
|
}
|
|
@@ -35011,7 +35062,7 @@ function mergeData$G(existingData, newData) {
|
|
|
35011
35062
|
};
|
|
35012
35063
|
}
|
|
35013
35064
|
function ingest$P(astNode, state) {
|
|
35014
|
-
const { path, data, luvio } = state;
|
|
35065
|
+
const { path, data, timestamp, luvio } = state;
|
|
35015
35066
|
const key = keyBuilder$U(luvio, path);
|
|
35016
35067
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35017
35068
|
key,
|
|
@@ -35025,7 +35076,8 @@ function ingest$P(astNode, state) {
|
|
|
35025
35076
|
ttl: TTL$6,
|
|
35026
35077
|
namespace: keyPrefix,
|
|
35027
35078
|
representationName: "MultiPicklistValue",
|
|
35028
|
-
version: VERSION$T
|
|
35079
|
+
version: VERSION$T,
|
|
35080
|
+
ingestionTimestamp: timestamp,
|
|
35029
35081
|
},
|
|
35030
35082
|
});
|
|
35031
35083
|
}
|
|
@@ -35153,7 +35205,7 @@ function mergeData$F(existingData, newData) {
|
|
|
35153
35205
|
};
|
|
35154
35206
|
}
|
|
35155
35207
|
function ingest$O(astNode, state) {
|
|
35156
|
-
const { path, data, luvio } = state;
|
|
35208
|
+
const { path, data, timestamp, luvio } = state;
|
|
35157
35209
|
const key = keyBuilder$T(luvio, path);
|
|
35158
35210
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35159
35211
|
key,
|
|
@@ -35167,7 +35219,8 @@ function ingest$O(astNode, state) {
|
|
|
35167
35219
|
ttl: TTL$6,
|
|
35168
35220
|
namespace: keyPrefix,
|
|
35169
35221
|
representationName: "Base64Value",
|
|
35170
|
-
version: VERSION$S
|
|
35222
|
+
version: VERSION$S,
|
|
35223
|
+
ingestionTimestamp: timestamp,
|
|
35171
35224
|
},
|
|
35172
35225
|
});
|
|
35173
35226
|
}
|
|
@@ -35289,7 +35342,7 @@ function mergeData$E(existingData, newData) {
|
|
|
35289
35342
|
};
|
|
35290
35343
|
}
|
|
35291
35344
|
function ingest$N(astNode, state) {
|
|
35292
|
-
const { path, data, luvio } = state;
|
|
35345
|
+
const { path, data, timestamp, luvio } = state;
|
|
35293
35346
|
const key = keyBuilder$S(luvio, path);
|
|
35294
35347
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35295
35348
|
key,
|
|
@@ -35303,7 +35356,8 @@ function ingest$N(astNode, state) {
|
|
|
35303
35356
|
ttl: TTL$6,
|
|
35304
35357
|
namespace: keyPrefix,
|
|
35305
35358
|
representationName: "JSONValue",
|
|
35306
|
-
version: VERSION$R
|
|
35359
|
+
version: VERSION$R,
|
|
35360
|
+
ingestionTimestamp: timestamp,
|
|
35307
35361
|
},
|
|
35308
35362
|
});
|
|
35309
35363
|
}
|
|
@@ -35829,7 +35883,7 @@ function mergeData$D(existingData, newData) {
|
|
|
35829
35883
|
};
|
|
35830
35884
|
}
|
|
35831
35885
|
function ingest$L(astNode, state) {
|
|
35832
|
-
const { path, data, luvio } = state;
|
|
35886
|
+
const { path, data, timestamp, luvio } = state;
|
|
35833
35887
|
const key = keyBuilder$R(luvio, path);
|
|
35834
35888
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35835
35889
|
key,
|
|
@@ -35843,7 +35897,8 @@ function ingest$L(astNode, state) {
|
|
|
35843
35897
|
ttl: TTL$6,
|
|
35844
35898
|
namespace: keyPrefix,
|
|
35845
35899
|
representationName: "CompoundField",
|
|
35846
|
-
version: VERSION$P
|
|
35900
|
+
version: VERSION$P,
|
|
35901
|
+
ingestionTimestamp: timestamp,
|
|
35847
35902
|
},
|
|
35848
35903
|
});
|
|
35849
35904
|
}
|
|
@@ -36829,7 +36884,7 @@ function mergeData$C(existingData, newData) {
|
|
|
36829
36884
|
};
|
|
36830
36885
|
}
|
|
36831
36886
|
function ingest$K(astNode, state) {
|
|
36832
|
-
const { path, data, luvio } = state;
|
|
36887
|
+
const { path, data, timestamp, luvio } = state;
|
|
36833
36888
|
const key = keyBuilder$Q(luvio, path);
|
|
36834
36889
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
36835
36890
|
key,
|
|
@@ -36843,7 +36898,8 @@ function ingest$K(astNode, state) {
|
|
|
36843
36898
|
ttl: TTL$6,
|
|
36844
36899
|
namespace: keyPrefix,
|
|
36845
36900
|
representationName: "PageInfo",
|
|
36846
|
-
version: VERSION$O
|
|
36901
|
+
version: VERSION$O,
|
|
36902
|
+
ingestionTimestamp: timestamp,
|
|
36847
36903
|
},
|
|
36848
36904
|
});
|
|
36849
36905
|
}
|
|
@@ -37045,7 +37101,7 @@ function mergeData$B(existingData, newData) {
|
|
|
37045
37101
|
};
|
|
37046
37102
|
}
|
|
37047
37103
|
function ingest$J(astNode, state) {
|
|
37048
|
-
const { path, data, luvio } = state;
|
|
37104
|
+
const { path, data, timestamp, luvio } = state;
|
|
37049
37105
|
const key = keyBuilder$P(luvio, path, data);
|
|
37050
37106
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37051
37107
|
key,
|
|
@@ -37062,7 +37118,8 @@ function ingest$J(astNode, state) {
|
|
|
37062
37118
|
ttl: TTL$6,
|
|
37063
37119
|
namespace: keyPrefix,
|
|
37064
37120
|
representationName: "RecordRepresentation",
|
|
37065
|
-
version: VERSION$N
|
|
37121
|
+
version: VERSION$N,
|
|
37122
|
+
ingestionTimestamp: timestamp,
|
|
37066
37123
|
},
|
|
37067
37124
|
});
|
|
37068
37125
|
}
|
|
@@ -37584,7 +37641,7 @@ function mergeData$A(existingData, newData) {
|
|
|
37584
37641
|
};
|
|
37585
37642
|
}
|
|
37586
37643
|
function ingest$I(astNode, state) {
|
|
37587
|
-
const { path, data, luvio } = state;
|
|
37644
|
+
const { path, data, timestamp, luvio } = state;
|
|
37588
37645
|
const key = keyBuilder$O(luvio, path);
|
|
37589
37646
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37590
37647
|
key,
|
|
@@ -37598,7 +37655,8 @@ function ingest$I(astNode, state) {
|
|
|
37598
37655
|
ttl: TTL$6,
|
|
37599
37656
|
namespace: keyPrefix,
|
|
37600
37657
|
representationName: "RecordEdge",
|
|
37601
|
-
version: VERSION$M
|
|
37658
|
+
version: VERSION$M,
|
|
37659
|
+
ingestionTimestamp: timestamp,
|
|
37602
37660
|
},
|
|
37603
37661
|
});
|
|
37604
37662
|
}
|
|
@@ -37808,7 +37866,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
|
|
|
37808
37866
|
}
|
|
37809
37867
|
}
|
|
37810
37868
|
function ingest$H(astNode, state) {
|
|
37811
|
-
const { path, data, luvio } = state;
|
|
37869
|
+
const { path, data, timestamp, luvio } = state;
|
|
37812
37870
|
const key = keyBuilder$N(luvio, path);
|
|
37813
37871
|
return ingestCursorConnectionType(astNode, state, {
|
|
37814
37872
|
key,
|
|
@@ -37824,7 +37882,8 @@ function ingest$H(astNode, state) {
|
|
|
37824
37882
|
ttl: TTL$9,
|
|
37825
37883
|
namespace: keyPrefix,
|
|
37826
37884
|
representationName: "RecordConnection",
|
|
37827
|
-
version: VERSION$L
|
|
37885
|
+
version: VERSION$L,
|
|
37886
|
+
ingestionTimestamp: timestamp,
|
|
37828
37887
|
},
|
|
37829
37888
|
});
|
|
37830
37889
|
}
|
|
@@ -37993,7 +38052,7 @@ function mergeData$y(existingData, newData) {
|
|
|
37993
38052
|
};
|
|
37994
38053
|
}
|
|
37995
38054
|
function ingest$G(astNode, state) {
|
|
37996
|
-
const { path, data, luvio } = state;
|
|
38055
|
+
const { path, data, timestamp, luvio } = state;
|
|
37997
38056
|
const key = keyBuilder$M(luvio, path);
|
|
37998
38057
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37999
38058
|
key,
|
|
@@ -38007,7 +38066,8 @@ function ingest$G(astNode, state) {
|
|
|
38007
38066
|
ttl: TTL$6,
|
|
38008
38067
|
namespace: keyPrefix,
|
|
38009
38068
|
representationName: "RecordQuery",
|
|
38010
|
-
version: VERSION$K
|
|
38069
|
+
version: VERSION$K,
|
|
38070
|
+
ingestionTimestamp: timestamp,
|
|
38011
38071
|
},
|
|
38012
38072
|
});
|
|
38013
38073
|
}
|
|
@@ -38137,7 +38197,7 @@ function mergeData$x(existingData, newData) {
|
|
|
38137
38197
|
};
|
|
38138
38198
|
}
|
|
38139
38199
|
function ingest$F(astNode, state) {
|
|
38140
|
-
const { path, data, luvio } = state;
|
|
38200
|
+
const { path, data, timestamp, luvio } = state;
|
|
38141
38201
|
const key = keyBuilder$L(luvio, path);
|
|
38142
38202
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38143
38203
|
key,
|
|
@@ -38151,7 +38211,8 @@ function ingest$F(astNode, state) {
|
|
|
38151
38211
|
ttl: TTL$6,
|
|
38152
38212
|
namespace: keyPrefix,
|
|
38153
38213
|
representationName: "BooleanAggregate",
|
|
38154
|
-
version: VERSION$J
|
|
38214
|
+
version: VERSION$J,
|
|
38215
|
+
ingestionTimestamp: timestamp,
|
|
38155
38216
|
},
|
|
38156
38217
|
});
|
|
38157
38218
|
}
|
|
@@ -38320,7 +38381,7 @@ function mergeData$w(existingData, newData) {
|
|
|
38320
38381
|
};
|
|
38321
38382
|
}
|
|
38322
38383
|
function ingest$E(astNode, state) {
|
|
38323
|
-
const { path, data, luvio } = state;
|
|
38384
|
+
const { path, data, timestamp, luvio } = state;
|
|
38324
38385
|
const key = keyBuilder$K(luvio, path);
|
|
38325
38386
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38326
38387
|
key,
|
|
@@ -38334,7 +38395,8 @@ function ingest$E(astNode, state) {
|
|
|
38334
38395
|
ttl: TTL$6,
|
|
38335
38396
|
namespace: keyPrefix,
|
|
38336
38397
|
representationName: "CurrencyAggregate",
|
|
38337
|
-
version: VERSION$I
|
|
38398
|
+
version: VERSION$I,
|
|
38399
|
+
ingestionTimestamp: timestamp,
|
|
38338
38400
|
},
|
|
38339
38401
|
});
|
|
38340
38402
|
}
|
|
@@ -38582,7 +38644,7 @@ function mergeData$v(existingData, newData) {
|
|
|
38582
38644
|
};
|
|
38583
38645
|
}
|
|
38584
38646
|
function ingest$D(astNode, state) {
|
|
38585
|
-
const { path, data, luvio } = state;
|
|
38647
|
+
const { path, data, timestamp, luvio } = state;
|
|
38586
38648
|
const key = keyBuilder$J(luvio, path);
|
|
38587
38649
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38588
38650
|
key,
|
|
@@ -38596,7 +38658,8 @@ function ingest$D(astNode, state) {
|
|
|
38596
38658
|
ttl: TTL$6,
|
|
38597
38659
|
namespace: keyPrefix,
|
|
38598
38660
|
representationName: "DateFunctionAggregation",
|
|
38599
|
-
version: VERSION$H
|
|
38661
|
+
version: VERSION$H,
|
|
38662
|
+
ingestionTimestamp: timestamp,
|
|
38600
38663
|
},
|
|
38601
38664
|
});
|
|
38602
38665
|
}
|
|
@@ -38730,7 +38793,7 @@ function mergeData$u(existingData, newData) {
|
|
|
38730
38793
|
};
|
|
38731
38794
|
}
|
|
38732
38795
|
function ingest$C(astNode, state) {
|
|
38733
|
-
const { path, data, luvio } = state;
|
|
38796
|
+
const { path, data, timestamp, luvio } = state;
|
|
38734
38797
|
const key = keyBuilder$I(luvio, path);
|
|
38735
38798
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38736
38799
|
key,
|
|
@@ -38744,7 +38807,8 @@ function ingest$C(astNode, state) {
|
|
|
38744
38807
|
ttl: TTL$6,
|
|
38745
38808
|
namespace: keyPrefix,
|
|
38746
38809
|
representationName: "DateAggregate",
|
|
38747
|
-
version: VERSION$G
|
|
38810
|
+
version: VERSION$G,
|
|
38811
|
+
ingestionTimestamp: timestamp,
|
|
38748
38812
|
},
|
|
38749
38813
|
});
|
|
38750
38814
|
}
|
|
@@ -39111,7 +39175,7 @@ function mergeData$t(existingData, newData) {
|
|
|
39111
39175
|
};
|
|
39112
39176
|
}
|
|
39113
39177
|
function ingest$B(astNode, state) {
|
|
39114
|
-
const { path, data, luvio } = state;
|
|
39178
|
+
const { path, data, timestamp, luvio } = state;
|
|
39115
39179
|
const key = keyBuilder$H(luvio, path);
|
|
39116
39180
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39117
39181
|
key,
|
|
@@ -39125,7 +39189,8 @@ function ingest$B(astNode, state) {
|
|
|
39125
39189
|
ttl: TTL$6,
|
|
39126
39190
|
namespace: keyPrefix,
|
|
39127
39191
|
representationName: "DoubleAggregate",
|
|
39128
|
-
version: VERSION$F
|
|
39192
|
+
version: VERSION$F,
|
|
39193
|
+
ingestionTimestamp: timestamp,
|
|
39129
39194
|
},
|
|
39130
39195
|
});
|
|
39131
39196
|
}
|
|
@@ -39364,7 +39429,7 @@ function mergeData$s(existingData, newData) {
|
|
|
39364
39429
|
};
|
|
39365
39430
|
}
|
|
39366
39431
|
function ingest$A(astNode, state) {
|
|
39367
|
-
const { path, data, luvio } = state;
|
|
39432
|
+
const { path, data, timestamp, luvio } = state;
|
|
39368
39433
|
const key = keyBuilder$G(luvio, path);
|
|
39369
39434
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39370
39435
|
key,
|
|
@@ -39378,7 +39443,8 @@ function ingest$A(astNode, state) {
|
|
|
39378
39443
|
ttl: TTL$6,
|
|
39379
39444
|
namespace: keyPrefix,
|
|
39380
39445
|
representationName: "EmailAggregate",
|
|
39381
|
-
version: VERSION$E
|
|
39446
|
+
version: VERSION$E,
|
|
39447
|
+
ingestionTimestamp: timestamp,
|
|
39382
39448
|
},
|
|
39383
39449
|
});
|
|
39384
39450
|
}
|
|
@@ -39609,7 +39675,7 @@ function mergeData$r(existingData, newData) {
|
|
|
39609
39675
|
};
|
|
39610
39676
|
}
|
|
39611
39677
|
function ingest$z(astNode, state) {
|
|
39612
|
-
const { path, data, luvio } = state;
|
|
39678
|
+
const { path, data, timestamp, luvio } = state;
|
|
39613
39679
|
const key = keyBuilder$F(luvio, path);
|
|
39614
39680
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39615
39681
|
key,
|
|
@@ -39623,7 +39689,8 @@ function ingest$z(astNode, state) {
|
|
|
39623
39689
|
ttl: TTL$6,
|
|
39624
39690
|
namespace: keyPrefix,
|
|
39625
39691
|
representationName: "IDAggregate",
|
|
39626
|
-
version: VERSION$D
|
|
39692
|
+
version: VERSION$D,
|
|
39693
|
+
ingestionTimestamp: timestamp,
|
|
39627
39694
|
},
|
|
39628
39695
|
});
|
|
39629
39696
|
}
|
|
@@ -39854,7 +39921,7 @@ function mergeData$q(existingData, newData) {
|
|
|
39854
39921
|
};
|
|
39855
39922
|
}
|
|
39856
39923
|
function ingest$y(astNode, state) {
|
|
39857
|
-
const { path, data, luvio } = state;
|
|
39924
|
+
const { path, data, timestamp, luvio } = state;
|
|
39858
39925
|
const key = keyBuilder$E(luvio, path);
|
|
39859
39926
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39860
39927
|
key,
|
|
@@ -39868,7 +39935,8 @@ function ingest$y(astNode, state) {
|
|
|
39868
39935
|
ttl: TTL$6,
|
|
39869
39936
|
namespace: keyPrefix,
|
|
39870
39937
|
representationName: "IntAggregate",
|
|
39871
|
-
version: VERSION$C
|
|
39938
|
+
version: VERSION$C,
|
|
39939
|
+
ingestionTimestamp: timestamp,
|
|
39872
39940
|
},
|
|
39873
39941
|
});
|
|
39874
39942
|
}
|
|
@@ -40127,7 +40195,7 @@ function mergeData$p(existingData, newData) {
|
|
|
40127
40195
|
};
|
|
40128
40196
|
}
|
|
40129
40197
|
function ingest$x(astNode, state) {
|
|
40130
|
-
const { path, data, luvio } = state;
|
|
40198
|
+
const { path, data, timestamp, luvio } = state;
|
|
40131
40199
|
const key = keyBuilder$D(luvio, path);
|
|
40132
40200
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40133
40201
|
key,
|
|
@@ -40141,7 +40209,8 @@ function ingest$x(astNode, state) {
|
|
|
40141
40209
|
ttl: TTL$6,
|
|
40142
40210
|
namespace: keyPrefix,
|
|
40143
40211
|
representationName: "LatitudeAggregate",
|
|
40144
|
-
version: VERSION$B
|
|
40212
|
+
version: VERSION$B,
|
|
40213
|
+
ingestionTimestamp: timestamp,
|
|
40145
40214
|
},
|
|
40146
40215
|
});
|
|
40147
40216
|
}
|
|
@@ -40383,7 +40452,7 @@ function mergeData$o(existingData, newData) {
|
|
|
40383
40452
|
};
|
|
40384
40453
|
}
|
|
40385
40454
|
function ingest$w(astNode, state) {
|
|
40386
|
-
const { path, data, luvio } = state;
|
|
40455
|
+
const { path, data, timestamp, luvio } = state;
|
|
40387
40456
|
const key = keyBuilder$C(luvio, path);
|
|
40388
40457
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40389
40458
|
key,
|
|
@@ -40397,7 +40466,8 @@ function ingest$w(astNode, state) {
|
|
|
40397
40466
|
ttl: TTL$6,
|
|
40398
40467
|
namespace: keyPrefix,
|
|
40399
40468
|
representationName: "LongitudeAggregate",
|
|
40400
|
-
version: VERSION$A
|
|
40469
|
+
version: VERSION$A,
|
|
40470
|
+
ingestionTimestamp: timestamp,
|
|
40401
40471
|
},
|
|
40402
40472
|
});
|
|
40403
40473
|
}
|
|
@@ -40639,7 +40709,7 @@ function mergeData$n(existingData, newData) {
|
|
|
40639
40709
|
};
|
|
40640
40710
|
}
|
|
40641
40711
|
function ingest$v(astNode, state) {
|
|
40642
|
-
const { path, data, luvio } = state;
|
|
40712
|
+
const { path, data, timestamp, luvio } = state;
|
|
40643
40713
|
const key = keyBuilder$B(luvio, path);
|
|
40644
40714
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40645
40715
|
key,
|
|
@@ -40653,7 +40723,8 @@ function ingest$v(astNode, state) {
|
|
|
40653
40723
|
ttl: TTL$6,
|
|
40654
40724
|
namespace: keyPrefix,
|
|
40655
40725
|
representationName: "LongAggregate",
|
|
40656
|
-
version: VERSION$z
|
|
40726
|
+
version: VERSION$z,
|
|
40727
|
+
ingestionTimestamp: timestamp,
|
|
40657
40728
|
},
|
|
40658
40729
|
});
|
|
40659
40730
|
}
|
|
@@ -40912,7 +40983,7 @@ function mergeData$m(existingData, newData) {
|
|
|
40912
40983
|
};
|
|
40913
40984
|
}
|
|
40914
40985
|
function ingest$u(astNode, state) {
|
|
40915
|
-
const { path, data, luvio } = state;
|
|
40986
|
+
const { path, data, timestamp, luvio } = state;
|
|
40916
40987
|
const key = keyBuilder$A(luvio, path);
|
|
40917
40988
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40918
40989
|
key,
|
|
@@ -40926,7 +40997,8 @@ function ingest$u(astNode, state) {
|
|
|
40926
40997
|
ttl: TTL$6,
|
|
40927
40998
|
namespace: keyPrefix,
|
|
40928
40999
|
representationName: "PhoneNumberAggregate",
|
|
40929
|
-
version: VERSION$y
|
|
41000
|
+
version: VERSION$y,
|
|
41001
|
+
ingestionTimestamp: timestamp,
|
|
40930
41002
|
},
|
|
40931
41003
|
});
|
|
40932
41004
|
}
|
|
@@ -41157,7 +41229,7 @@ function mergeData$l(existingData, newData) {
|
|
|
41157
41229
|
};
|
|
41158
41230
|
}
|
|
41159
41231
|
function ingest$t(astNode, state) {
|
|
41160
|
-
const { path, data, luvio } = state;
|
|
41232
|
+
const { path, data, timestamp, luvio } = state;
|
|
41161
41233
|
const key = keyBuilder$z(luvio, path);
|
|
41162
41234
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41163
41235
|
key,
|
|
@@ -41171,7 +41243,8 @@ function ingest$t(astNode, state) {
|
|
|
41171
41243
|
ttl: TTL$6,
|
|
41172
41244
|
namespace: keyPrefix,
|
|
41173
41245
|
representationName: "PicklistAggregate",
|
|
41174
|
-
version: VERSION$x
|
|
41246
|
+
version: VERSION$x,
|
|
41247
|
+
ingestionTimestamp: timestamp,
|
|
41175
41248
|
},
|
|
41176
41249
|
});
|
|
41177
41250
|
}
|
|
@@ -41408,7 +41481,7 @@ function mergeData$k(existingData, newData) {
|
|
|
41408
41481
|
};
|
|
41409
41482
|
}
|
|
41410
41483
|
function ingest$s(astNode, state) {
|
|
41411
|
-
const { path, data, luvio } = state;
|
|
41484
|
+
const { path, data, timestamp, luvio } = state;
|
|
41412
41485
|
const key = keyBuilder$y(luvio, path);
|
|
41413
41486
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41414
41487
|
key,
|
|
@@ -41422,7 +41495,8 @@ function ingest$s(astNode, state) {
|
|
|
41422
41495
|
ttl: TTL$6,
|
|
41423
41496
|
namespace: keyPrefix,
|
|
41424
41497
|
representationName: "TextAreaAggregate",
|
|
41425
|
-
version: VERSION$w
|
|
41498
|
+
version: VERSION$w,
|
|
41499
|
+
ingestionTimestamp: timestamp,
|
|
41426
41500
|
},
|
|
41427
41501
|
});
|
|
41428
41502
|
}
|
|
@@ -41653,7 +41727,7 @@ function mergeData$j(existingData, newData) {
|
|
|
41653
41727
|
};
|
|
41654
41728
|
}
|
|
41655
41729
|
function ingest$r(astNode, state) {
|
|
41656
|
-
const { path, data, luvio } = state;
|
|
41730
|
+
const { path, data, timestamp, luvio } = state;
|
|
41657
41731
|
const key = keyBuilder$x(luvio, path);
|
|
41658
41732
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41659
41733
|
key,
|
|
@@ -41667,7 +41741,8 @@ function ingest$r(astNode, state) {
|
|
|
41667
41741
|
ttl: TTL$6,
|
|
41668
41742
|
namespace: keyPrefix,
|
|
41669
41743
|
representationName: "TimeAggregate",
|
|
41670
|
-
version: VERSION$v
|
|
41744
|
+
version: VERSION$v,
|
|
41745
|
+
ingestionTimestamp: timestamp,
|
|
41671
41746
|
},
|
|
41672
41747
|
});
|
|
41673
41748
|
}
|
|
@@ -41842,7 +41917,7 @@ function mergeData$i(existingData, newData) {
|
|
|
41842
41917
|
};
|
|
41843
41918
|
}
|
|
41844
41919
|
function ingest$q(astNode, state) {
|
|
41845
|
-
const { path, data, luvio } = state;
|
|
41920
|
+
const { path, data, timestamp, luvio } = state;
|
|
41846
41921
|
const key = keyBuilder$w(luvio, path);
|
|
41847
41922
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41848
41923
|
key,
|
|
@@ -41856,7 +41931,8 @@ function ingest$q(astNode, state) {
|
|
|
41856
41931
|
ttl: TTL$6,
|
|
41857
41932
|
namespace: keyPrefix,
|
|
41858
41933
|
representationName: "UrlAggregate",
|
|
41859
|
-
version: VERSION$u
|
|
41934
|
+
version: VERSION$u,
|
|
41935
|
+
ingestionTimestamp: timestamp,
|
|
41860
41936
|
},
|
|
41861
41937
|
});
|
|
41862
41938
|
}
|
|
@@ -42210,7 +42286,7 @@ function mergeData$h(existingData, newData) {
|
|
|
42210
42286
|
};
|
|
42211
42287
|
}
|
|
42212
42288
|
function ingest$p(astNode, state) {
|
|
42213
|
-
const { path, data, luvio } = state;
|
|
42289
|
+
const { path, data, timestamp, luvio } = state;
|
|
42214
42290
|
const key = keyBuilder$v(luvio, path);
|
|
42215
42291
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42216
42292
|
key,
|
|
@@ -42224,7 +42300,8 @@ function ingest$p(astNode, state) {
|
|
|
42224
42300
|
ttl: TTL$6,
|
|
42225
42301
|
namespace: keyPrefix,
|
|
42226
42302
|
representationName: "RecordAggregate",
|
|
42227
|
-
version: VERSION$t
|
|
42303
|
+
version: VERSION$t,
|
|
42304
|
+
ingestionTimestamp: timestamp,
|
|
42228
42305
|
},
|
|
42229
42306
|
});
|
|
42230
42307
|
}
|
|
@@ -42578,7 +42655,7 @@ function mergeData$g(existingData, newData) {
|
|
|
42578
42655
|
};
|
|
42579
42656
|
}
|
|
42580
42657
|
function ingest$o(astNode, state) {
|
|
42581
|
-
const { path, data, luvio } = state;
|
|
42658
|
+
const { path, data, timestamp, luvio } = state;
|
|
42582
42659
|
const key = keyBuilder$u(luvio, path);
|
|
42583
42660
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42584
42661
|
key,
|
|
@@ -42592,7 +42669,8 @@ function ingest$o(astNode, state) {
|
|
|
42592
42669
|
ttl: TTL$6,
|
|
42593
42670
|
namespace: keyPrefix,
|
|
42594
42671
|
representationName: "RecordResult",
|
|
42595
|
-
version: VERSION$s
|
|
42672
|
+
version: VERSION$s,
|
|
42673
|
+
ingestionTimestamp: timestamp,
|
|
42596
42674
|
},
|
|
42597
42675
|
});
|
|
42598
42676
|
}
|
|
@@ -42740,7 +42818,7 @@ function mergeData$f(existingData, newData) {
|
|
|
42740
42818
|
};
|
|
42741
42819
|
}
|
|
42742
42820
|
function ingest$n(astNode, state) {
|
|
42743
|
-
const { path, data, luvio } = state;
|
|
42821
|
+
const { path, data, timestamp, luvio } = state;
|
|
42744
42822
|
const key = keyBuilder$t(luvio, path);
|
|
42745
42823
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42746
42824
|
key,
|
|
@@ -42754,7 +42832,8 @@ function ingest$n(astNode, state) {
|
|
|
42754
42832
|
ttl: TTL$6,
|
|
42755
42833
|
namespace: keyPrefix,
|
|
42756
42834
|
representationName: "RecordAggregateEdge",
|
|
42757
|
-
version: VERSION$r
|
|
42835
|
+
version: VERSION$r,
|
|
42836
|
+
ingestionTimestamp: timestamp,
|
|
42758
42837
|
},
|
|
42759
42838
|
});
|
|
42760
42839
|
}
|
|
@@ -42963,7 +43042,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
|
|
|
42963
43042
|
}
|
|
42964
43043
|
}
|
|
42965
43044
|
function ingest$m(astNode, state) {
|
|
42966
|
-
const { path, data, luvio } = state;
|
|
43045
|
+
const { path, data, timestamp, luvio } = state;
|
|
42967
43046
|
const key = keyBuilder$s(luvio, path);
|
|
42968
43047
|
return ingestCursorConnectionType(astNode, state, {
|
|
42969
43048
|
key,
|
|
@@ -42979,7 +43058,8 @@ function ingest$m(astNode, state) {
|
|
|
42979
43058
|
ttl: TTL$6,
|
|
42980
43059
|
namespace: keyPrefix,
|
|
42981
43060
|
representationName: "RecordAggregateConnection",
|
|
42982
|
-
version: VERSION$q
|
|
43061
|
+
version: VERSION$q,
|
|
43062
|
+
ingestionTimestamp: timestamp,
|
|
42983
43063
|
},
|
|
42984
43064
|
});
|
|
42985
43065
|
}
|
|
@@ -43196,7 +43276,7 @@ function mergeData$d(existingData, newData) {
|
|
|
43196
43276
|
};
|
|
43197
43277
|
}
|
|
43198
43278
|
function ingest$l(astNode, state) {
|
|
43199
|
-
const { path, data, luvio } = state;
|
|
43279
|
+
const { path, data, timestamp, luvio } = state;
|
|
43200
43280
|
const key = keyBuilder$r(luvio, path);
|
|
43201
43281
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43202
43282
|
key,
|
|
@@ -43210,7 +43290,8 @@ function ingest$l(astNode, state) {
|
|
|
43210
43290
|
ttl: TTL$6,
|
|
43211
43291
|
namespace: keyPrefix,
|
|
43212
43292
|
representationName: "RecordQueryAggregate",
|
|
43213
|
-
version: VERSION$p
|
|
43293
|
+
version: VERSION$p,
|
|
43294
|
+
ingestionTimestamp: timestamp,
|
|
43214
43295
|
},
|
|
43215
43296
|
});
|
|
43216
43297
|
}
|
|
@@ -43340,7 +43421,7 @@ function mergeData$c(existingData, newData) {
|
|
|
43340
43421
|
};
|
|
43341
43422
|
}
|
|
43342
43423
|
function ingest$k(astNode, state) {
|
|
43343
|
-
const { path, data, luvio } = state;
|
|
43424
|
+
const { path, data, timestamp, luvio } = state;
|
|
43344
43425
|
const key = keyBuilder$q(luvio, path);
|
|
43345
43426
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43346
43427
|
key,
|
|
@@ -43354,7 +43435,8 @@ function ingest$k(astNode, state) {
|
|
|
43354
43435
|
ttl: TTL$6,
|
|
43355
43436
|
namespace: keyPrefix,
|
|
43356
43437
|
representationName: "ChildRelationship",
|
|
43357
|
-
version: VERSION$o
|
|
43438
|
+
version: VERSION$o,
|
|
43439
|
+
ingestionTimestamp: timestamp,
|
|
43358
43440
|
},
|
|
43359
43441
|
});
|
|
43360
43442
|
}
|
|
@@ -43532,7 +43614,7 @@ function mergeData$b(existingData, newData) {
|
|
|
43532
43614
|
};
|
|
43533
43615
|
}
|
|
43534
43616
|
function ingest$j(astNode, state) {
|
|
43535
|
-
const { path, data, luvio } = state;
|
|
43617
|
+
const { path, data, timestamp, luvio } = state;
|
|
43536
43618
|
const key = keyBuilder$p(luvio, path);
|
|
43537
43619
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43538
43620
|
key,
|
|
@@ -43546,7 +43628,8 @@ function ingest$j(astNode, state) {
|
|
|
43546
43628
|
ttl: TTL$6,
|
|
43547
43629
|
namespace: keyPrefix,
|
|
43548
43630
|
representationName: "DependentField",
|
|
43549
|
-
version: VERSION$n
|
|
43631
|
+
version: VERSION$n,
|
|
43632
|
+
ingestionTimestamp: timestamp,
|
|
43550
43633
|
},
|
|
43551
43634
|
});
|
|
43552
43635
|
}
|
|
@@ -43671,7 +43754,7 @@ function mergeData$a(existingData, newData) {
|
|
|
43671
43754
|
};
|
|
43672
43755
|
}
|
|
43673
43756
|
function ingest$i(astNode, state) {
|
|
43674
|
-
const { path, data, luvio } = state;
|
|
43757
|
+
const { path, data, timestamp, luvio } = state;
|
|
43675
43758
|
const key = keyBuilder$o(luvio, path);
|
|
43676
43759
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43677
43760
|
key,
|
|
@@ -43685,7 +43768,8 @@ function ingest$i(astNode, state) {
|
|
|
43685
43768
|
ttl: TTL$6,
|
|
43686
43769
|
namespace: keyPrefix,
|
|
43687
43770
|
representationName: "FilteredLookupInfo",
|
|
43688
|
-
version: VERSION$m
|
|
43771
|
+
version: VERSION$m,
|
|
43772
|
+
ingestionTimestamp: timestamp,
|
|
43689
43773
|
},
|
|
43690
43774
|
});
|
|
43691
43775
|
}
|
|
@@ -43825,7 +43909,7 @@ function mergeData$9(existingData, newData) {
|
|
|
43825
43909
|
};
|
|
43826
43910
|
}
|
|
43827
43911
|
function ingest$h(astNode, state) {
|
|
43828
|
-
const { path, data, luvio } = state;
|
|
43912
|
+
const { path, data, timestamp, luvio } = state;
|
|
43829
43913
|
const key = keyBuilder$n(luvio, path);
|
|
43830
43914
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43831
43915
|
key,
|
|
@@ -43839,7 +43923,8 @@ function ingest$h(astNode, state) {
|
|
|
43839
43923
|
ttl: TTL$6,
|
|
43840
43924
|
namespace: keyPrefix,
|
|
43841
43925
|
representationName: "ReferenceToInfo",
|
|
43842
|
-
version: VERSION$l
|
|
43926
|
+
version: VERSION$l,
|
|
43927
|
+
ingestionTimestamp: timestamp,
|
|
43843
43928
|
},
|
|
43844
43929
|
});
|
|
43845
43930
|
}
|
|
@@ -43999,7 +44084,7 @@ function mergeData$8(existingData, newData) {
|
|
|
43999
44084
|
};
|
|
44000
44085
|
}
|
|
44001
44086
|
function ingest$g(astNode, state) {
|
|
44002
|
-
const { path, data, luvio } = state;
|
|
44087
|
+
const { path, data, timestamp, luvio } = state;
|
|
44003
44088
|
const key = keyBuilder$m(luvio, path);
|
|
44004
44089
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44005
44090
|
key,
|
|
@@ -44013,7 +44098,8 @@ function ingest$g(astNode, state) {
|
|
|
44013
44098
|
ttl: TTL$6,
|
|
44014
44099
|
namespace: keyPrefix,
|
|
44015
44100
|
representationName: "Field",
|
|
44016
|
-
version: VERSION$k
|
|
44101
|
+
version: VERSION$k,
|
|
44102
|
+
ingestionTimestamp: timestamp,
|
|
44017
44103
|
},
|
|
44018
44104
|
});
|
|
44019
44105
|
}
|
|
@@ -44391,7 +44477,7 @@ function mergeData$7(existingData, newData) {
|
|
|
44391
44477
|
};
|
|
44392
44478
|
}
|
|
44393
44479
|
function ingest$f(astNode, state) {
|
|
44394
|
-
const { path, data, luvio } = state;
|
|
44480
|
+
const { path, data, timestamp, luvio } = state;
|
|
44395
44481
|
const key = keyBuilder$l(luvio, path);
|
|
44396
44482
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44397
44483
|
key,
|
|
@@ -44405,7 +44491,8 @@ function ingest$f(astNode, state) {
|
|
|
44405
44491
|
ttl: TTL$6,
|
|
44406
44492
|
namespace: keyPrefix,
|
|
44407
44493
|
representationName: "RecordTypeInfo",
|
|
44408
|
-
version: VERSION$j
|
|
44494
|
+
version: VERSION$j,
|
|
44495
|
+
ingestionTimestamp: timestamp,
|
|
44409
44496
|
},
|
|
44410
44497
|
});
|
|
44411
44498
|
}
|
|
@@ -44566,7 +44653,7 @@ function mergeData$6(existingData, newData) {
|
|
|
44566
44653
|
};
|
|
44567
44654
|
}
|
|
44568
44655
|
function ingest$e(astNode, state) {
|
|
44569
|
-
const { path, data, luvio } = state;
|
|
44656
|
+
const { path, data, timestamp, luvio } = state;
|
|
44570
44657
|
const key = keyBuilder$k(luvio, path);
|
|
44571
44658
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44572
44659
|
key,
|
|
@@ -44580,7 +44667,8 @@ function ingest$e(astNode, state) {
|
|
|
44580
44667
|
ttl: TTL$6,
|
|
44581
44668
|
namespace: keyPrefix,
|
|
44582
44669
|
representationName: "ThemeInfo",
|
|
44583
|
-
version: VERSION$i
|
|
44670
|
+
version: VERSION$i,
|
|
44671
|
+
ingestionTimestamp: timestamp,
|
|
44584
44672
|
},
|
|
44585
44673
|
});
|
|
44586
44674
|
}
|
|
@@ -44706,7 +44794,7 @@ function mergeData$5(existingData, newData) {
|
|
|
44706
44794
|
};
|
|
44707
44795
|
}
|
|
44708
44796
|
function ingest$d(astNode, state) {
|
|
44709
|
-
const { path, data, luvio } = state;
|
|
44797
|
+
const { path, data, timestamp, luvio } = state;
|
|
44710
44798
|
const key = keyBuilder$j(luvio, path);
|
|
44711
44799
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44712
44800
|
key,
|
|
@@ -44720,7 +44808,8 @@ function ingest$d(astNode, state) {
|
|
|
44720
44808
|
ttl: TTL$8,
|
|
44721
44809
|
namespace: keyPrefix,
|
|
44722
44810
|
representationName: "ObjectInfo",
|
|
44723
|
-
version: VERSION$h
|
|
44811
|
+
version: VERSION$h,
|
|
44812
|
+
ingestionTimestamp: timestamp,
|
|
44724
44813
|
},
|
|
44725
44814
|
});
|
|
44726
44815
|
}
|
|
@@ -45110,7 +45199,7 @@ function mergeData$4(existingData, newData) {
|
|
|
45110
45199
|
};
|
|
45111
45200
|
}
|
|
45112
45201
|
function ingest$c(astNode, state) {
|
|
45113
|
-
const { path, data, luvio } = state;
|
|
45202
|
+
const { path, data, timestamp, luvio } = state;
|
|
45114
45203
|
const key = keyBuilder$i(luvio, path);
|
|
45115
45204
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45116
45205
|
key,
|
|
@@ -45124,7 +45213,8 @@ function ingest$c(astNode, state) {
|
|
|
45124
45213
|
ttl: TTL$6,
|
|
45125
45214
|
namespace: keyPrefix,
|
|
45126
45215
|
representationName: "ListColumn",
|
|
45127
|
-
version: VERSION$g
|
|
45216
|
+
version: VERSION$g,
|
|
45217
|
+
ingestionTimestamp: timestamp,
|
|
45128
45218
|
},
|
|
45129
45219
|
});
|
|
45130
45220
|
}
|
|
@@ -45270,7 +45360,7 @@ function mergeData$3(existingData, newData) {
|
|
|
45270
45360
|
};
|
|
45271
45361
|
}
|
|
45272
45362
|
function ingest$b(astNode, state) {
|
|
45273
|
-
const { path, data, luvio } = state;
|
|
45363
|
+
const { path, data, timestamp, luvio } = state;
|
|
45274
45364
|
const key = keyBuilder$h(luvio, path);
|
|
45275
45365
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45276
45366
|
key,
|
|
@@ -45284,7 +45374,8 @@ function ingest$b(astNode, state) {
|
|
|
45284
45374
|
ttl: TTL$6,
|
|
45285
45375
|
namespace: keyPrefix,
|
|
45286
45376
|
representationName: "ListOrder",
|
|
45287
|
-
version: VERSION$f
|
|
45377
|
+
version: VERSION$f,
|
|
45378
|
+
ingestionTimestamp: timestamp,
|
|
45288
45379
|
},
|
|
45289
45380
|
});
|
|
45290
45381
|
}
|
|
@@ -45419,7 +45510,7 @@ function mergeData$2(existingData, newData) {
|
|
|
45419
45510
|
};
|
|
45420
45511
|
}
|
|
45421
45512
|
function ingest$a(astNode, state) {
|
|
45422
|
-
const { path, data, luvio } = state;
|
|
45513
|
+
const { path, data, timestamp, luvio } = state;
|
|
45423
45514
|
const key = keyBuilder$g(luvio, path);
|
|
45424
45515
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45425
45516
|
key,
|
|
@@ -45433,7 +45524,8 @@ function ingest$a(astNode, state) {
|
|
|
45433
45524
|
ttl: TTL$7,
|
|
45434
45525
|
namespace: keyPrefix,
|
|
45435
45526
|
representationName: "RelatedListInfo",
|
|
45436
|
-
version: VERSION$e
|
|
45527
|
+
version: VERSION$e,
|
|
45528
|
+
ingestionTimestamp: timestamp,
|
|
45437
45529
|
},
|
|
45438
45530
|
});
|
|
45439
45531
|
}
|
|
@@ -45655,7 +45747,7 @@ function mergeData$1(existingData, newData) {
|
|
|
45655
45747
|
};
|
|
45656
45748
|
}
|
|
45657
45749
|
function ingest$9(astNode, state) {
|
|
45658
|
-
const { path, data, luvio } = state;
|
|
45750
|
+
const { path, data, timestamp, luvio } = state;
|
|
45659
45751
|
const key = keyBuilder$f(luvio, path);
|
|
45660
45752
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45661
45753
|
key,
|
|
@@ -45669,7 +45761,8 @@ function ingest$9(astNode, state) {
|
|
|
45669
45761
|
ttl: TTL$6,
|
|
45670
45762
|
namespace: keyPrefix,
|
|
45671
45763
|
representationName: "UIAPI",
|
|
45672
|
-
version: VERSION$d
|
|
45764
|
+
version: VERSION$d,
|
|
45765
|
+
ingestionTimestamp: timestamp,
|
|
45673
45766
|
},
|
|
45674
45767
|
});
|
|
45675
45768
|
}
|
|
@@ -45893,7 +45986,7 @@ function mergeData(existingData, newData) {
|
|
|
45893
45986
|
};
|
|
45894
45987
|
}
|
|
45895
45988
|
function ingest$8(astNode, state) {
|
|
45896
|
-
const { path, data, luvio } = state;
|
|
45989
|
+
const { path, data, timestamp, luvio } = state;
|
|
45897
45990
|
const key = keyBuilder$e(luvio, astNode, state.variables, state.fragments);
|
|
45898
45991
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45899
45992
|
key,
|
|
@@ -45907,7 +46000,8 @@ function ingest$8(astNode, state) {
|
|
|
45907
46000
|
ttl: TTL$6,
|
|
45908
46001
|
namespace: keyPrefix,
|
|
45909
46002
|
representationName: "Query",
|
|
45910
|
-
version: VERSION$c
|
|
46003
|
+
version: VERSION$c,
|
|
46004
|
+
ingestionTimestamp: timestamp,
|
|
45911
46005
|
},
|
|
45912
46006
|
});
|
|
45913
46007
|
}
|