@salesforce/lds-adapters-uiapi 1.266.0-dev2 → 1.266.0-dev21
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 +37 -0
- package/dist/es/es2018/types/src/generated/types/SearchAnswersResultRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/SearchFilterOutputRepresentation.d.ts +1 -4
- package/dist/es/es2018/types/src/main.d.ts +1 -0
- package/dist/es/es2018/types/src/primitives/FieldId/coerce.d.ts +2 -1
- package/dist/es/es2018/types/src/primitives/FieldIdArray/coerce.d.ts +4 -1
- package/dist/es/es2018/types/src/sfdc_rest.d.ts +1 -1
- package/dist/es/es2018/uiapi-records-service.js +551 -403
- package/package.json +7 -7
- package/sfdc/graphqlAdapters.js +210 -138
- package/sfdc/index.js +354 -272
- package/sfdc/uiapi-static-functions.js +6 -4
- package/src/raml/api.raml +23 -3
|
@@ -516,15 +516,17 @@ function splitQualifiedFieldApiName(fieldApiName) {
|
|
|
516
516
|
/**
|
|
517
517
|
* Returns the field API name, qualified with an object name if possible.
|
|
518
518
|
* @param value The value from which to get the qualified field API name.
|
|
519
|
+
* @param onlyQualifiedFieldNames - Whether or not this function should skip fieldApiName that do not include the delimiter '.'
|
|
519
520
|
* @return The qualified field API name.
|
|
520
521
|
*/
|
|
521
|
-
function getFieldApiName(value) {
|
|
522
|
+
function getFieldApiName(value, onlyQualifiedFieldNames = false) {
|
|
522
523
|
// Note: tightening validation logic changes behavior from userland getting
|
|
523
524
|
// a server-provided error to the adapter noop'ing. In 224 we decided to not
|
|
524
|
-
// change the behavior.
|
|
525
|
+
// change the behavior. In 250 we decided to add the 'onlyQualifiedFieldName' flag to tighten the logic
|
|
526
|
+
// optionally to avoid issues with persisted invalid field names.
|
|
525
527
|
if (isString(value)) {
|
|
526
528
|
const trimmed = value.trim();
|
|
527
|
-
if (trimmed.length > 0) {
|
|
529
|
+
if (trimmed.length > 0 && (onlyQualifiedFieldNames ? trimmed.indexOf('.') > -1 : true)) {
|
|
528
530
|
return trimmed;
|
|
529
531
|
}
|
|
530
532
|
}
|
|
@@ -537,15 +539,19 @@ function getFieldApiName(value) {
|
|
|
537
539
|
/**
|
|
538
540
|
* Returns the field API name.
|
|
539
541
|
* @param value The value from which to get the field API name.
|
|
542
|
+
* @param options Option bag. onlyQualifiedFieldNames is a boolean that allows this function to skip returning invalid FieldApiNames.
|
|
540
543
|
* @returns The field API name.
|
|
541
544
|
*/
|
|
542
|
-
function getFieldApiNamesArray(value) {
|
|
545
|
+
function getFieldApiNamesArray(value, options = { onlyQualifiedFieldNames: false }) {
|
|
543
546
|
const valueArray = isArray(value) ? value : [value];
|
|
544
547
|
const array = [];
|
|
545
548
|
for (let i = 0, len = valueArray.length; i < len; i += 1) {
|
|
546
549
|
const item = valueArray[i];
|
|
547
|
-
const apiName = getFieldApiName(item);
|
|
550
|
+
const apiName = getFieldApiName(item, options.onlyQualifiedFieldNames);
|
|
548
551
|
if (apiName === undefined) {
|
|
552
|
+
if (options.onlyQualifiedFieldNames) {
|
|
553
|
+
continue; // Just skips invalid field names rather than failing to return an array at all
|
|
554
|
+
}
|
|
549
555
|
return undefined;
|
|
550
556
|
}
|
|
551
557
|
push.call(array, apiName);
|
|
@@ -601,7 +607,7 @@ function assignMetadataLink(entry, metadataKey) {
|
|
|
601
607
|
}
|
|
602
608
|
|
|
603
609
|
const VERSION$2v = "623aa9ce3a11031e35faf5671a41746e";
|
|
604
|
-
function validate$
|
|
610
|
+
function validate$23(obj, path = 'ListFilterByInfoRepresentation') {
|
|
605
611
|
const v_error = (() => {
|
|
606
612
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
607
613
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -664,7 +670,7 @@ const select$37 = function ListFilterByInfoRepresentationSelect() {
|
|
|
664
670
|
};
|
|
665
671
|
|
|
666
672
|
const VERSION$2u = "f98dc7dec10408a9648ef8e5b37002a3";
|
|
667
|
-
function validate$
|
|
673
|
+
function validate$22(obj, path = 'ListInlineEditDetailsRepresentation') {
|
|
668
674
|
const v_error = (() => {
|
|
669
675
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
670
676
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -743,7 +749,7 @@ const select$36 = function ListInlineEditDetailsRepresentationSelect() {
|
|
|
743
749
|
};
|
|
744
750
|
|
|
745
751
|
const VERSION$2t = "76042ff4af603b2ac0ec69fa0bd12046";
|
|
746
|
-
function validate$
|
|
752
|
+
function validate$21(obj, path = 'ListReferenceRepresentation') {
|
|
747
753
|
const v_error = (() => {
|
|
748
754
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
749
755
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -863,7 +869,7 @@ function equals$18(existing, incoming) {
|
|
|
863
869
|
}
|
|
864
870
|
|
|
865
871
|
const VERSION$2s = "f1519bef57e70ab7c5ef160dc5ff0c47";
|
|
866
|
-
function validate$
|
|
872
|
+
function validate$20(obj, path = 'ListInfoShareRepresentation') {
|
|
867
873
|
const v_error = (() => {
|
|
868
874
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
869
875
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -900,7 +906,7 @@ const select$34 = function ListInfoShareRepresentationSelect() {
|
|
|
900
906
|
};
|
|
901
907
|
|
|
902
908
|
const VERSION$2r = "561657f32721ec1dac1601575b029640";
|
|
903
|
-
function validate$
|
|
909
|
+
function validate$1$(obj, path = 'ListInfoShareCategoryRepresentation') {
|
|
904
910
|
const v_error = (() => {
|
|
905
911
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
906
912
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -918,7 +924,7 @@ function validate$1_(obj, path = 'ListInfoShareCategoryRepresentation') {
|
|
|
918
924
|
for (let i = 0; i < obj_shares.length; i++) {
|
|
919
925
|
const obj_shares_item = obj_shares[i];
|
|
920
926
|
const path_shares_item = path_shares + '[' + i + ']';
|
|
921
|
-
const referencepath_shares_itemValidationError = validate$
|
|
927
|
+
const referencepath_shares_itemValidationError = validate$20(obj_shares_item, path_shares_item);
|
|
922
928
|
if (referencepath_shares_itemValidationError !== null) {
|
|
923
929
|
let message = 'Object doesn\'t match ListInfoShareRepresentation (at "' + path_shares_item + '")\n';
|
|
924
930
|
message += referencepath_shares_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -950,7 +956,7 @@ const select$33 = function ListInfoShareCategoryRepresentationSelect() {
|
|
|
950
956
|
};
|
|
951
957
|
|
|
952
958
|
const VERSION$2q = "32def9b631252c12b91a8209c1f49f5a";
|
|
953
|
-
function validate$
|
|
959
|
+
function validate$1_(obj, path = 'ListOrderByInfoRepresentation') {
|
|
954
960
|
const v_error = (() => {
|
|
955
961
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
956
962
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1035,7 +1041,7 @@ function equals$17(existing, incoming) {
|
|
|
1035
1041
|
}
|
|
1036
1042
|
|
|
1037
1043
|
const VERSION$2p = "2634258f216db34315c06d759a35676d";
|
|
1038
|
-
function validate$
|
|
1044
|
+
function validate$1Z(obj, path = 'ListScopeEntityRepresentation') {
|
|
1039
1045
|
const v_error = (() => {
|
|
1040
1046
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1041
1047
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1072,7 +1078,7 @@ const select$31 = function ListScopeEntityRepresentationSelect() {
|
|
|
1072
1078
|
};
|
|
1073
1079
|
|
|
1074
1080
|
const VERSION$2o = "3b85c5a08d50ce328481b9f8ab56127b";
|
|
1075
|
-
function validate$
|
|
1081
|
+
function validate$1Y(obj, path = 'ListScopeRelatedEntityRepresentation') {
|
|
1076
1082
|
const v_error = (() => {
|
|
1077
1083
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1078
1084
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1118,7 +1124,7 @@ const select$30 = function ListScopeRelatedEntityRepresentationSelect() {
|
|
|
1118
1124
|
};
|
|
1119
1125
|
|
|
1120
1126
|
const VERSION$2n = "2fe9814e7124b47f59da585483c1b3f9";
|
|
1121
|
-
function validate$
|
|
1127
|
+
function validate$1X(obj, path = 'ListScopeRepresentation') {
|
|
1122
1128
|
const v_error = (() => {
|
|
1123
1129
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1124
1130
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1132,7 +1138,7 @@ function validate$1W(obj, path = 'ListScopeRepresentation') {
|
|
|
1132
1138
|
const path_entity = path + '.entity';
|
|
1133
1139
|
let obj_entity_union0 = null;
|
|
1134
1140
|
const obj_entity_union0_error = (() => {
|
|
1135
|
-
const referencepath_entityValidationError = validate$
|
|
1141
|
+
const referencepath_entityValidationError = validate$1Z(obj_entity, path_entity);
|
|
1136
1142
|
if (referencepath_entityValidationError !== null) {
|
|
1137
1143
|
let message = 'Object doesn\'t match ListScopeEntityRepresentation (at "' + path_entity + '")\n';
|
|
1138
1144
|
message += referencepath_entityValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1187,7 +1193,7 @@ function validate$1W(obj, path = 'ListScopeRepresentation') {
|
|
|
1187
1193
|
const path_relatedEntity = path + '.relatedEntity';
|
|
1188
1194
|
let obj_relatedEntity_union0 = null;
|
|
1189
1195
|
const obj_relatedEntity_union0_error = (() => {
|
|
1190
|
-
const referencepath_relatedEntityValidationError = validate$
|
|
1196
|
+
const referencepath_relatedEntityValidationError = validate$1Y(obj_relatedEntity, path_relatedEntity);
|
|
1191
1197
|
if (referencepath_relatedEntityValidationError !== null) {
|
|
1192
1198
|
let message = 'Object doesn\'t match ListScopeRelatedEntityRepresentation (at "' + path_relatedEntity + '")\n';
|
|
1193
1199
|
message += referencepath_relatedEntityValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1248,7 +1254,7 @@ const select$2$ = function ListScopeRepresentationSelect() {
|
|
|
1248
1254
|
};
|
|
1249
1255
|
|
|
1250
1256
|
const VERSION$2m = "6506134f4d72fdfa349fe60ef1af2413";
|
|
1251
|
-
function validate$
|
|
1257
|
+
function validate$1W(obj, path = 'ListUserPreferenceRepresentation') {
|
|
1252
1258
|
const v_error = (() => {
|
|
1253
1259
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1254
1260
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1304,7 +1310,7 @@ const select$2_ = function ListUserPreferenceRepresentationSelect() {
|
|
|
1304
1310
|
};
|
|
1305
1311
|
};
|
|
1306
1312
|
|
|
1307
|
-
function validate$
|
|
1313
|
+
function validate$1V(obj, path = 'ListColumnInlineEditAttributesRepresentation') {
|
|
1308
1314
|
const v_error = (() => {
|
|
1309
1315
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1310
1316
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1323,7 +1329,7 @@ function validate$1U(obj, path = 'ListColumnInlineEditAttributesRepresentation')
|
|
|
1323
1329
|
return v_error === undefined ? null : v_error;
|
|
1324
1330
|
}
|
|
1325
1331
|
|
|
1326
|
-
function validate$
|
|
1332
|
+
function validate$1U(obj, path = 'ListColumnInlineEditAttributesRepresentationWrapper') {
|
|
1327
1333
|
const v_error = (() => {
|
|
1328
1334
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1329
1335
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1333,7 +1339,7 @@ function validate$1T(obj, path = 'ListColumnInlineEditAttributesRepresentationWr
|
|
|
1333
1339
|
const key = obj_keys[i];
|
|
1334
1340
|
const obj_prop = obj[key];
|
|
1335
1341
|
const path_prop = path + '["' + key + '"]';
|
|
1336
|
-
const referencepath_propValidationError = validate$
|
|
1342
|
+
const referencepath_propValidationError = validate$1V(obj_prop, path_prop);
|
|
1337
1343
|
if (referencepath_propValidationError !== null) {
|
|
1338
1344
|
let message = 'Object doesn\'t match ListColumnInlineEditAttributesRepresentation (at "' + path_prop + '")\n';
|
|
1339
1345
|
message += referencepath_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1345,7 +1351,7 @@ function validate$1T(obj, path = 'ListColumnInlineEditAttributesRepresentationWr
|
|
|
1345
1351
|
}
|
|
1346
1352
|
|
|
1347
1353
|
const VERSION$2l = "8aff6b0baf2e60a237e860236c4e1b70";
|
|
1348
|
-
function validate$
|
|
1354
|
+
function validate$1T(obj, path = 'ListColumnRepresentation') {
|
|
1349
1355
|
const v_error = (() => {
|
|
1350
1356
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1351
1357
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1360,7 +1366,7 @@ function validate$1S(obj, path = 'ListColumnRepresentation') {
|
|
|
1360
1366
|
const path_inlineEditAttributes = path + '.inlineEditAttributes';
|
|
1361
1367
|
let obj_inlineEditAttributes_union0 = null;
|
|
1362
1368
|
const obj_inlineEditAttributes_union0_error = (() => {
|
|
1363
|
-
const referencepath_inlineEditAttributesValidationError = validate$
|
|
1369
|
+
const referencepath_inlineEditAttributesValidationError = validate$1U(obj_inlineEditAttributes, path_inlineEditAttributes);
|
|
1364
1370
|
if (referencepath_inlineEditAttributesValidationError !== null) {
|
|
1365
1371
|
let message = 'Object doesn\'t match ListColumnInlineEditAttributesRepresentationWrapper (at "' + path_inlineEditAttributes + '")\n';
|
|
1366
1372
|
message += referencepath_inlineEditAttributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1452,7 +1458,7 @@ function equals$16(existing, incoming) {
|
|
|
1452
1458
|
}
|
|
1453
1459
|
const ingest$1X = function ListColumnRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1454
1460
|
if (process.env.NODE_ENV !== 'production') {
|
|
1455
|
-
const validateError = validate$
|
|
1461
|
+
const validateError = validate$1T(input);
|
|
1456
1462
|
if (validateError !== null) {
|
|
1457
1463
|
throw validateError;
|
|
1458
1464
|
}
|
|
@@ -1474,7 +1480,7 @@ function getTypeCacheKeys$1$(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
1474
1480
|
|
|
1475
1481
|
const TTL$F = 900000;
|
|
1476
1482
|
const VERSION$2k = "178c8b58f78e2720fe8846a667c7b294";
|
|
1477
|
-
function validate$
|
|
1483
|
+
function validate$1S(obj, path = 'ListInfoRepresentation') {
|
|
1478
1484
|
const v_error = (() => {
|
|
1479
1485
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1480
1486
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1545,7 +1551,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
1545
1551
|
for (let i = 0; i < obj_filteredByInfo.length; i++) {
|
|
1546
1552
|
const obj_filteredByInfo_item = obj_filteredByInfo[i];
|
|
1547
1553
|
const path_filteredByInfo_item = path_filteredByInfo + '[' + i + ']';
|
|
1548
|
-
const referencepath_filteredByInfo_itemValidationError = validate$
|
|
1554
|
+
const referencepath_filteredByInfo_itemValidationError = validate$23(obj_filteredByInfo_item, path_filteredByInfo_item);
|
|
1549
1555
|
if (referencepath_filteredByInfo_itemValidationError !== null) {
|
|
1550
1556
|
let message = 'Object doesn\'t match ListFilterByInfoRepresentation (at "' + path_filteredByInfo_item + '")\n';
|
|
1551
1557
|
message += referencepath_filteredByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1557,7 +1563,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
1557
1563
|
const path_inlineEditDetails = path + '.inlineEditDetails';
|
|
1558
1564
|
let obj_inlineEditDetails_union0 = null;
|
|
1559
1565
|
const obj_inlineEditDetails_union0_error = (() => {
|
|
1560
|
-
const referencepath_inlineEditDetailsValidationError = validate$
|
|
1566
|
+
const referencepath_inlineEditDetailsValidationError = validate$22(obj_inlineEditDetails, path_inlineEditDetails);
|
|
1561
1567
|
if (referencepath_inlineEditDetailsValidationError !== null) {
|
|
1562
1568
|
let message = 'Object doesn\'t match ListInlineEditDetailsRepresentation (at "' + path_inlineEditDetails + '")\n';
|
|
1563
1569
|
message += referencepath_inlineEditDetailsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1611,7 +1617,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
1611
1617
|
}
|
|
1612
1618
|
const obj_listReference = obj.listReference;
|
|
1613
1619
|
const path_listReference = path + '.listReference';
|
|
1614
|
-
const referencepath_listReferenceValidationError = validate$
|
|
1620
|
+
const referencepath_listReferenceValidationError = validate$21(obj_listReference, path_listReference);
|
|
1615
1621
|
if (referencepath_listReferenceValidationError !== null) {
|
|
1616
1622
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
1617
1623
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1626,7 +1632,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
1626
1632
|
for (let i = 0; i < obj_listShares.length; i++) {
|
|
1627
1633
|
const obj_listShares_item = obj_listShares[i];
|
|
1628
1634
|
const path_listShares_item = path_listShares + '[' + i + ']';
|
|
1629
|
-
const referencepath_listShares_itemValidationError = validate$
|
|
1635
|
+
const referencepath_listShares_itemValidationError = validate$1$(obj_listShares_item, path_listShares_item);
|
|
1630
1636
|
if (referencepath_listShares_itemValidationError !== null) {
|
|
1631
1637
|
let message = 'Object doesn\'t match ListInfoShareCategoryRepresentation (at "' + path_listShares_item + '")\n';
|
|
1632
1638
|
message += referencepath_listShares_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1656,7 +1662,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
1656
1662
|
for (let i = 0; i < obj_orderedByInfo.length; i++) {
|
|
1657
1663
|
const obj_orderedByInfo_item = obj_orderedByInfo[i];
|
|
1658
1664
|
const path_orderedByInfo_item = path_orderedByInfo + '[' + i + ']';
|
|
1659
|
-
const referencepath_orderedByInfo_itemValidationError = validate$
|
|
1665
|
+
const referencepath_orderedByInfo_itemValidationError = validate$1_(obj_orderedByInfo_item, path_orderedByInfo_item);
|
|
1660
1666
|
if (referencepath_orderedByInfo_itemValidationError !== null) {
|
|
1661
1667
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedByInfo_item + '")\n';
|
|
1662
1668
|
message += referencepath_orderedByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1668,7 +1674,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
1668
1674
|
const path_scope = path + '.scope';
|
|
1669
1675
|
let obj_scope_union0 = null;
|
|
1670
1676
|
const obj_scope_union0_error = (() => {
|
|
1671
|
-
const referencepath_scopeValidationError = validate$
|
|
1677
|
+
const referencepath_scopeValidationError = validate$1X(obj_scope, path_scope);
|
|
1672
1678
|
if (referencepath_scopeValidationError !== null) {
|
|
1673
1679
|
let message = 'Object doesn\'t match ListScopeRepresentation (at "' + path_scope + '")\n';
|
|
1674
1680
|
message += referencepath_scopeValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1708,7 +1714,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
1708
1714
|
}
|
|
1709
1715
|
const obj_userPreferences = obj.userPreferences;
|
|
1710
1716
|
const path_userPreferences = path + '.userPreferences';
|
|
1711
|
-
const referencepath_userPreferencesValidationError = validate$
|
|
1717
|
+
const referencepath_userPreferencesValidationError = validate$1W(obj_userPreferences, path_userPreferences);
|
|
1712
1718
|
if (referencepath_userPreferencesValidationError !== null) {
|
|
1713
1719
|
let message = 'Object doesn\'t match ListUserPreferenceRepresentation (at "' + path_userPreferences + '")\n';
|
|
1714
1720
|
message += referencepath_userPreferencesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1876,7 +1882,7 @@ function equals$15(existing, incoming) {
|
|
|
1876
1882
|
}
|
|
1877
1883
|
const ingest$1W = function ListInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1878
1884
|
if (process.env.NODE_ENV !== 'production') {
|
|
1879
|
-
const validateError = validate$
|
|
1885
|
+
const validateError = validate$1S(input);
|
|
1880
1886
|
if (validateError !== null) {
|
|
1881
1887
|
throw validateError;
|
|
1882
1888
|
}
|
|
@@ -1960,7 +1966,7 @@ function toSortedStringArray(value) {
|
|
|
1960
1966
|
}
|
|
1961
1967
|
|
|
1962
1968
|
const VERSION$2j = "d1e589a127fb1060c89070cdb6f500b2";
|
|
1963
|
-
function validate$
|
|
1969
|
+
function validate$1R(obj, path = 'RecordTypeInfoRepresentation') {
|
|
1964
1970
|
const v_error = (() => {
|
|
1965
1971
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1966
1972
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2052,7 +2058,7 @@ function equals$14(existing, incoming) {
|
|
|
2052
2058
|
}
|
|
2053
2059
|
|
|
2054
2060
|
const VERSION$2i = "195d918987a35f45e1aa4dce9a11d8c5";
|
|
2055
|
-
function validate$
|
|
2061
|
+
function validate$1Q(obj, path = 'FieldValueRepresentation') {
|
|
2056
2062
|
const v_error = (() => {
|
|
2057
2063
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2058
2064
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2199,7 +2205,7 @@ function equals$13(existing, incoming) {
|
|
|
2199
2205
|
}
|
|
2200
2206
|
const ingest$1V = function FieldValueRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2201
2207
|
if (process.env.NODE_ENV !== 'production') {
|
|
2202
|
-
const validateError = validate$
|
|
2208
|
+
const validateError = validate$1Q(input);
|
|
2203
2209
|
if (validateError !== null) {
|
|
2204
2210
|
throw validateError;
|
|
2205
2211
|
}
|
|
@@ -2250,7 +2256,7 @@ const getTypeCacheKeys$1Y = (rootKeySet, luvio, input, _fullPathFactory) => {
|
|
|
2250
2256
|
|
|
2251
2257
|
const TTL$E = 120000;
|
|
2252
2258
|
const VERSION$2h = "79cb5ac9f44542f683d00245fdfe500d";
|
|
2253
|
-
function validate$
|
|
2259
|
+
function validate$1P(obj, path = 'RecordCollectionRepresentation') {
|
|
2254
2260
|
const v_error = (() => {
|
|
2255
2261
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2256
2262
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2523,7 +2529,7 @@ function equals$12(existing, incoming) {
|
|
|
2523
2529
|
}
|
|
2524
2530
|
const ingest$1U = function RecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2525
2531
|
if (process.env.NODE_ENV !== 'production') {
|
|
2526
|
-
const validateError = validate$
|
|
2532
|
+
const validateError = validate$1P(input);
|
|
2527
2533
|
if (validateError !== null) {
|
|
2528
2534
|
throw validateError;
|
|
2529
2535
|
}
|
|
@@ -2559,7 +2565,7 @@ const keyBuilderFromType$B = function RecordRepresentationKeyBuilderFromType(luv
|
|
|
2559
2565
|
|
|
2560
2566
|
const TTL$D = 30000;
|
|
2561
2567
|
const VERSION$2g = "98c5b18512e48ca8d28727549507e4ba";
|
|
2562
|
-
function validate$
|
|
2568
|
+
function validate$1O(obj, path = 'RecordRepresentation') {
|
|
2563
2569
|
const v_error = (() => {
|
|
2564
2570
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2565
2571
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2689,7 +2695,7 @@ function validate$1N(obj, path = 'RecordRepresentation') {
|
|
|
2689
2695
|
const path_recordTypeInfo = path + '.recordTypeInfo';
|
|
2690
2696
|
let obj_recordTypeInfo_union0 = null;
|
|
2691
2697
|
const obj_recordTypeInfo_union0_error = (() => {
|
|
2692
|
-
const referencepath_recordTypeInfoValidationError = validate$
|
|
2698
|
+
const referencepath_recordTypeInfoValidationError = validate$1R(obj_recordTypeInfo, path_recordTypeInfo);
|
|
2693
2699
|
if (referencepath_recordTypeInfoValidationError !== null) {
|
|
2694
2700
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfo + '")\n';
|
|
2695
2701
|
message += referencepath_recordTypeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -5521,7 +5527,7 @@ function normalize$P(input, existing, path, luvio, store, timestamp, fieldsTrie,
|
|
|
5521
5527
|
function makeIngest(fieldsTrie, optionalFieldsTrie, recordConflictMap) {
|
|
5522
5528
|
return (input, path, luvio, store, timestamp) => {
|
|
5523
5529
|
if (process.env.NODE_ENV !== 'production') {
|
|
5524
|
-
const validateError = validate$
|
|
5530
|
+
const validateError = validate$1Q(input);
|
|
5525
5531
|
if (validateError !== null) {
|
|
5526
5532
|
throw validateError;
|
|
5527
5533
|
}
|
|
@@ -5614,7 +5620,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
5614
5620
|
const childNormalize = createChildRecordNormalize(fieldsTrie, optionalFieldsTrie, recordConflictMap);
|
|
5615
5621
|
return (input, path, luvio, store, timestamp) => {
|
|
5616
5622
|
if (process.env.NODE_ENV !== 'production') {
|
|
5617
|
-
const validateError = validate$
|
|
5623
|
+
const validateError = validate$1O(input);
|
|
5618
5624
|
if (validateError !== null) {
|
|
5619
5625
|
throw validateError;
|
|
5620
5626
|
}
|
|
@@ -5643,6 +5649,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
5643
5649
|
representationName: RepresentationType$X,
|
|
5644
5650
|
namespace: keyPrefix,
|
|
5645
5651
|
version: VERSION$2g,
|
|
5652
|
+
ingestionTimestamp: timestamp,
|
|
5646
5653
|
});
|
|
5647
5654
|
return createLink$1(key);
|
|
5648
5655
|
};
|
|
@@ -5868,17 +5875,19 @@ function onResourceError(luvio, config, key, err) {
|
|
|
5868
5875
|
function buildNetworkSnapshot$18(luvio, config, serverRequestCount = 0, options) {
|
|
5869
5876
|
const { request, key, allTrackedFields, resourceParams } = prepareRequest$6(luvio, config);
|
|
5870
5877
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
5878
|
+
// W-11964675 - Condition to dedupe a very specific set of requests for
|
|
5879
|
+
// Komaci - a batch record request with a single record followed by a single
|
|
5880
|
+
// record request. The fulfill logic sends the same network response, so
|
|
5881
|
+
// there is some TypeScript massaging to extract the RecordRepresentation
|
|
5882
|
+
//
|
|
5883
|
+
// W-14381091 - Ensure hoisting the response body happens prior to
|
|
5884
|
+
// calling `luvio.handleSuccessResponse`, since both arguments capture
|
|
5885
|
+
// the response.
|
|
5886
|
+
if (isSingleBatchRecordResponse(response.body)) {
|
|
5887
|
+
response.body = response.body.results[0]
|
|
5888
|
+
.result;
|
|
5889
|
+
}
|
|
5871
5890
|
return luvio.handleSuccessResponse(() => {
|
|
5872
|
-
// W-11964675 - Condition to dedupe a very specific set of requests for
|
|
5873
|
-
// Komaci - a batch record request with a single record followed by a single
|
|
5874
|
-
// record request. The fulfill logic sends the same network response, so
|
|
5875
|
-
// there is some TypeScript massaging to extract the RecordRepresentation
|
|
5876
|
-
if (isSingleBatchRecordResponse(response.body)) {
|
|
5877
|
-
let recordResponse = response;
|
|
5878
|
-
recordResponse.body = response.body.results[0]
|
|
5879
|
-
.result;
|
|
5880
|
-
return onResourceSuccess(luvio, config, key, allTrackedFields, recordResponse, serverRequestCount + 1);
|
|
5881
|
-
}
|
|
5882
5891
|
return onResourceSuccess(luvio, config, key, allTrackedFields, response, serverRequestCount + 1);
|
|
5883
5892
|
}, () => {
|
|
5884
5893
|
const cache = new StoreKeyMap();
|
|
@@ -6574,7 +6583,7 @@ function revertPaginationOptimization(variables) {
|
|
|
6574
6583
|
|
|
6575
6584
|
const TTL$C = 30000;
|
|
6576
6585
|
const VERSION$2e = "b8270d0d7a5953587f98a9625cad85db";
|
|
6577
|
-
function validate$
|
|
6586
|
+
function validate$1N(obj, path = 'ListRecordCollectionRepresentation') {
|
|
6578
6587
|
const v_error = (() => {
|
|
6579
6588
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
6580
6589
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -6634,7 +6643,7 @@ function validate$1M(obj, path = 'ListRecordCollectionRepresentation') {
|
|
|
6634
6643
|
}
|
|
6635
6644
|
const obj_listReference = obj.listReference;
|
|
6636
6645
|
const path_listReference = path + '.listReference';
|
|
6637
|
-
const referencepath_listReferenceValidationError = validate$
|
|
6646
|
+
const referencepath_listReferenceValidationError = validate$21(obj_listReference, path_listReference);
|
|
6638
6647
|
if (referencepath_listReferenceValidationError !== null) {
|
|
6639
6648
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
6640
6649
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -7173,7 +7182,7 @@ function equals$10(existing, incoming) {
|
|
|
7173
7182
|
}
|
|
7174
7183
|
const ingest$1S = function ListRecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
7175
7184
|
if (process.env.NODE_ENV !== 'production') {
|
|
7176
|
-
const validateError = validate$
|
|
7185
|
+
const validateError = validate$1N(input);
|
|
7177
7186
|
if (validateError !== null) {
|
|
7178
7187
|
throw validateError;
|
|
7179
7188
|
}
|
|
@@ -7241,6 +7250,7 @@ const ingest$1S = function ListRecordCollectionRepresentationIngest(input, path,
|
|
|
7241
7250
|
namespace: "UiApi",
|
|
7242
7251
|
version: VERSION$2e,
|
|
7243
7252
|
representationName: RepresentationType$W,
|
|
7253
|
+
ingestionTimestamp: timestamp,
|
|
7244
7254
|
};
|
|
7245
7255
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
7246
7256
|
}
|
|
@@ -7266,7 +7276,7 @@ function getTypeCacheKeys$1V(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
7266
7276
|
}
|
|
7267
7277
|
|
|
7268
7278
|
const VERSION$2d = "cf8d2eb042188974da26ffe6618cfd07";
|
|
7269
|
-
function validate$
|
|
7279
|
+
function validate$1M(obj, path = 'ListUiRepresentation') {
|
|
7270
7280
|
const v_error = (() => {
|
|
7271
7281
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
7272
7282
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -7393,7 +7403,7 @@ function equals$$(existing, incoming) {
|
|
|
7393
7403
|
}
|
|
7394
7404
|
const ingest$1R = function ListUiRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
7395
7405
|
if (process.env.NODE_ENV !== 'production') {
|
|
7396
|
-
const validateError = validate$
|
|
7406
|
+
const validateError = validate$1M(input);
|
|
7397
7407
|
if (validateError !== null) {
|
|
7398
7408
|
throw validateError;
|
|
7399
7409
|
}
|
|
@@ -8132,7 +8142,7 @@ function isErrorSnapshot(snapshot) {
|
|
|
8132
8142
|
}
|
|
8133
8143
|
|
|
8134
8144
|
const VERSION$2c = "3529c5f7d0eb2206c90a52c6d9f721d4";
|
|
8135
|
-
function validate$
|
|
8145
|
+
function validate$1L(obj, path = 'ListViewSummaryRepresentation') {
|
|
8136
8146
|
const v_error = (() => {
|
|
8137
8147
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8138
8148
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8244,7 +8254,7 @@ function equals$_(existing, incoming) {
|
|
|
8244
8254
|
}
|
|
8245
8255
|
const ingest$1Q = function ListViewSummaryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
8246
8256
|
if (process.env.NODE_ENV !== 'production') {
|
|
8247
|
-
const validateError = validate$
|
|
8257
|
+
const validateError = validate$1L(input);
|
|
8248
8258
|
if (validateError !== null) {
|
|
8249
8259
|
throw validateError;
|
|
8250
8260
|
}
|
|
@@ -8265,7 +8275,7 @@ function getTypeCacheKeys$1T(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
8265
8275
|
}
|
|
8266
8276
|
|
|
8267
8277
|
const VERSION$2b = "f4c79fe066da3558499d5ee88c72abcd";
|
|
8268
|
-
function validate$
|
|
8278
|
+
function validate$1K(obj, path = 'ListViewSummaryCollectionRepresentation') {
|
|
8269
8279
|
const v_error = (() => {
|
|
8270
8280
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8271
8281
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8649,7 +8659,7 @@ function equals$Z(existing, incoming) {
|
|
|
8649
8659
|
}
|
|
8650
8660
|
const ingest$1P = function ListViewSummaryCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
8651
8661
|
if (process.env.NODE_ENV !== 'production') {
|
|
8652
|
-
const validateError = validate$
|
|
8662
|
+
const validateError = validate$1K(input);
|
|
8653
8663
|
if (validateError !== null) {
|
|
8654
8664
|
throw validateError;
|
|
8655
8665
|
}
|
|
@@ -8717,6 +8727,7 @@ const ingest$1P = function ListViewSummaryCollectionRepresentationIngest(input,
|
|
|
8717
8727
|
namespace: "UiApi",
|
|
8718
8728
|
version: VERSION$2b,
|
|
8719
8729
|
representationName: RepresentationType$T,
|
|
8730
|
+
ingestionTimestamp: timestamp,
|
|
8720
8731
|
};
|
|
8721
8732
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
8722
8733
|
}
|
|
@@ -9813,7 +9824,7 @@ const factory$j = (luvio) => {
|
|
|
9813
9824
|
}, { contextId: contextId$5 });
|
|
9814
9825
|
};
|
|
9815
9826
|
|
|
9816
|
-
function validate$
|
|
9827
|
+
function validate$1J(obj, path = 'ChildRelationshipRepresentation') {
|
|
9817
9828
|
const v_error = (() => {
|
|
9818
9829
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9819
9830
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9861,7 +9872,7 @@ function validate$1I(obj, path = 'ChildRelationshipRepresentation') {
|
|
|
9861
9872
|
return v_error === undefined ? null : v_error;
|
|
9862
9873
|
}
|
|
9863
9874
|
|
|
9864
|
-
function validate$
|
|
9875
|
+
function validate$1I(obj, path = 'FilteredLookupInfoRepresentation') {
|
|
9865
9876
|
const v_error = (() => {
|
|
9866
9877
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9867
9878
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9892,7 +9903,7 @@ function validate$1H(obj, path = 'FilteredLookupInfoRepresentation') {
|
|
|
9892
9903
|
return v_error === undefined ? null : v_error;
|
|
9893
9904
|
}
|
|
9894
9905
|
|
|
9895
|
-
function validate$
|
|
9906
|
+
function validate$1H(obj, path = 'ReferenceToInfoRepresentation') {
|
|
9896
9907
|
const v_error = (() => {
|
|
9897
9908
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9898
9909
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9918,7 +9929,7 @@ function validate$1G(obj, path = 'ReferenceToInfoRepresentation') {
|
|
|
9918
9929
|
return v_error === undefined ? null : v_error;
|
|
9919
9930
|
}
|
|
9920
9931
|
|
|
9921
|
-
function validate$
|
|
9932
|
+
function validate$1G(obj, path = 'FieldRepresentation') {
|
|
9922
9933
|
const v_error = (() => {
|
|
9923
9934
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9924
9935
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10078,7 +10089,7 @@ function validate$1F(obj, path = 'FieldRepresentation') {
|
|
|
10078
10089
|
const path_filteredLookupInfo = path + '.filteredLookupInfo';
|
|
10079
10090
|
let obj_filteredLookupInfo_union0 = null;
|
|
10080
10091
|
const obj_filteredLookupInfo_union0_error = (() => {
|
|
10081
|
-
const referencepath_filteredLookupInfoValidationError = validate$
|
|
10092
|
+
const referencepath_filteredLookupInfoValidationError = validate$1I(obj_filteredLookupInfo, path_filteredLookupInfo);
|
|
10082
10093
|
if (referencepath_filteredLookupInfoValidationError !== null) {
|
|
10083
10094
|
let message = 'Object doesn\'t match FilteredLookupInfoRepresentation (at "' + path_filteredLookupInfo + '")\n';
|
|
10084
10095
|
message += referencepath_filteredLookupInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10203,7 +10214,7 @@ function validate$1F(obj, path = 'FieldRepresentation') {
|
|
|
10203
10214
|
for (let i = 0; i < obj_referenceToInfos.length; i++) {
|
|
10204
10215
|
const obj_referenceToInfos_item = obj_referenceToInfos[i];
|
|
10205
10216
|
const path_referenceToInfos_item = path_referenceToInfos + '[' + i + ']';
|
|
10206
|
-
const referencepath_referenceToInfos_itemValidationError = validate$
|
|
10217
|
+
const referencepath_referenceToInfos_itemValidationError = validate$1H(obj_referenceToInfos_item, path_referenceToInfos_item);
|
|
10207
10218
|
if (referencepath_referenceToInfos_itemValidationError !== null) {
|
|
10208
10219
|
let message = 'Object doesn\'t match ReferenceToInfoRepresentation (at "' + path_referenceToInfos_item + '")\n';
|
|
10209
10220
|
message += referencepath_referenceToInfos_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10270,7 +10281,7 @@ function validate$1F(obj, path = 'FieldRepresentation') {
|
|
|
10270
10281
|
return v_error === undefined ? null : v_error;
|
|
10271
10282
|
}
|
|
10272
10283
|
|
|
10273
|
-
function validate$
|
|
10284
|
+
function validate$1F(obj, path = 'ThemeInfoRepresentation') {
|
|
10274
10285
|
const v_error = (() => {
|
|
10275
10286
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10276
10287
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10312,7 +10323,7 @@ function validate$1E(obj, path = 'ThemeInfoRepresentation') {
|
|
|
10312
10323
|
|
|
10313
10324
|
const TTL$B = 900000;
|
|
10314
10325
|
const VERSION$2a = "ec9370a0cd56f4769fe9ec5cd942ff30";
|
|
10315
|
-
function validate$
|
|
10326
|
+
function validate$1E(obj, path = 'ObjectInfoRepresentation') {
|
|
10316
10327
|
const v_error = (() => {
|
|
10317
10328
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10318
10329
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10382,7 +10393,7 @@ function validate$1D(obj, path = 'ObjectInfoRepresentation') {
|
|
|
10382
10393
|
for (let i = 0; i < obj_childRelationships.length; i++) {
|
|
10383
10394
|
const obj_childRelationships_item = obj_childRelationships[i];
|
|
10384
10395
|
const path_childRelationships_item = path_childRelationships + '[' + i + ']';
|
|
10385
|
-
const referencepath_childRelationships_itemValidationError = validate$
|
|
10396
|
+
const referencepath_childRelationships_itemValidationError = validate$1J(obj_childRelationships_item, path_childRelationships_item);
|
|
10386
10397
|
if (referencepath_childRelationships_itemValidationError !== null) {
|
|
10387
10398
|
let message = 'Object doesn\'t match ChildRelationshipRepresentation (at "' + path_childRelationships_item + '")\n';
|
|
10388
10399
|
message += referencepath_childRelationships_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10464,7 +10475,7 @@ function validate$1D(obj, path = 'ObjectInfoRepresentation') {
|
|
|
10464
10475
|
const key = obj_fields_keys[i];
|
|
10465
10476
|
const obj_fields_prop = obj_fields[key];
|
|
10466
10477
|
const path_fields_prop = path_fields + '["' + key + '"]';
|
|
10467
|
-
const referencepath_fields_propValidationError = validate$
|
|
10478
|
+
const referencepath_fields_propValidationError = validate$1G(obj_fields_prop, path_fields_prop);
|
|
10468
10479
|
if (referencepath_fields_propValidationError !== null) {
|
|
10469
10480
|
let message = 'Object doesn\'t match FieldRepresentation (at "' + path_fields_prop + '")\n';
|
|
10470
10481
|
message += referencepath_fields_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10544,7 +10555,7 @@ function validate$1D(obj, path = 'ObjectInfoRepresentation') {
|
|
|
10544
10555
|
const key = obj_recordTypeInfos_keys[i];
|
|
10545
10556
|
const obj_recordTypeInfos_prop = obj_recordTypeInfos[key];
|
|
10546
10557
|
const path_recordTypeInfos_prop = path_recordTypeInfos + '["' + key + '"]';
|
|
10547
|
-
const referencepath_recordTypeInfos_propValidationError = validate$
|
|
10558
|
+
const referencepath_recordTypeInfos_propValidationError = validate$1R(obj_recordTypeInfos_prop, path_recordTypeInfos_prop);
|
|
10548
10559
|
if (referencepath_recordTypeInfos_propValidationError !== null) {
|
|
10549
10560
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfos_prop + '")\n';
|
|
10550
10561
|
message += referencepath_recordTypeInfos_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10560,7 +10571,7 @@ function validate$1D(obj, path = 'ObjectInfoRepresentation') {
|
|
|
10560
10571
|
const path_themeInfo = path + '.themeInfo';
|
|
10561
10572
|
let obj_themeInfo_union0 = null;
|
|
10562
10573
|
const obj_themeInfo_union0_error = (() => {
|
|
10563
|
-
const referencepath_themeInfoValidationError = validate$
|
|
10574
|
+
const referencepath_themeInfoValidationError = validate$1F(obj_themeInfo, path_themeInfo);
|
|
10564
10575
|
if (referencepath_themeInfoValidationError !== null) {
|
|
10565
10576
|
let message = 'Object doesn\'t match ThemeInfoRepresentation (at "' + path_themeInfo + '")\n';
|
|
10566
10577
|
message += referencepath_themeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -10719,7 +10730,7 @@ function equals$Y(existing, incoming) {
|
|
|
10719
10730
|
}
|
|
10720
10731
|
const ingest$1O = function ObjectInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
10721
10732
|
if (process.env.NODE_ENV !== 'production') {
|
|
10722
|
-
const validateError = validate$
|
|
10733
|
+
const validateError = validate$1E(input);
|
|
10723
10734
|
if (validateError !== null) {
|
|
10724
10735
|
throw validateError;
|
|
10725
10736
|
}
|
|
@@ -10880,7 +10891,7 @@ const getObjectInfoAdapterFactory = (luvio) => function UiApi__getObjectInfo(unt
|
|
|
10880
10891
|
buildCachedSnapshotCachePolicy$O, buildNetworkSnapshotCachePolicy$P);
|
|
10881
10892
|
};
|
|
10882
10893
|
|
|
10883
|
-
function validate$
|
|
10894
|
+
function validate$1D(obj, path = 'RecordLayoutSaveOptionRepresentation') {
|
|
10884
10895
|
const v_error = (() => {
|
|
10885
10896
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10886
10897
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10928,7 +10939,7 @@ var DiscriminatorValues$5;
|
|
|
10928
10939
|
DiscriminatorValues["Field"] = "Field";
|
|
10929
10940
|
DiscriminatorValues["CustomLink"] = "CustomLink";
|
|
10930
10941
|
})(DiscriminatorValues$5 || (DiscriminatorValues$5 = {}));
|
|
10931
|
-
function validate$
|
|
10942
|
+
function validate$1C(obj, path = 'AbstractRecordLayoutComponentRepresentation') {
|
|
10932
10943
|
const v_error = (() => {
|
|
10933
10944
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10934
10945
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10968,7 +10979,7 @@ function validate$1B(obj, path = 'AbstractRecordLayoutComponentRepresentation')
|
|
|
10968
10979
|
return v_error === undefined ? null : v_error;
|
|
10969
10980
|
}
|
|
10970
10981
|
|
|
10971
|
-
function validate$
|
|
10982
|
+
function validate$1B(obj, path = 'RecordLayoutItemRepresentation') {
|
|
10972
10983
|
const v_error = (() => {
|
|
10973
10984
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10974
10985
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10996,7 +11007,7 @@ function validate$1A(obj, path = 'RecordLayoutItemRepresentation') {
|
|
|
10996
11007
|
for (let i = 0; i < obj_layoutComponents.length; i++) {
|
|
10997
11008
|
const obj_layoutComponents_item = obj_layoutComponents[i];
|
|
10998
11009
|
const path_layoutComponents_item = path_layoutComponents + '[' + i + ']';
|
|
10999
|
-
const referencepath_layoutComponents_itemValidationError = validate$
|
|
11010
|
+
const referencepath_layoutComponents_itemValidationError = validate$1C(obj_layoutComponents_item, path_layoutComponents_item);
|
|
11000
11011
|
if (referencepath_layoutComponents_itemValidationError !== null) {
|
|
11001
11012
|
let message = 'Object doesn\'t match AbstractRecordLayoutComponentRepresentation (at "' + path_layoutComponents_item + '")\n';
|
|
11002
11013
|
message += referencepath_layoutComponents_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11043,7 +11054,7 @@ function validate$1A(obj, path = 'RecordLayoutItemRepresentation') {
|
|
|
11043
11054
|
return v_error === undefined ? null : v_error;
|
|
11044
11055
|
}
|
|
11045
11056
|
|
|
11046
|
-
function validate$
|
|
11057
|
+
function validate$1A(obj, path = 'RecordLayoutRowRepresentation') {
|
|
11047
11058
|
const v_error = (() => {
|
|
11048
11059
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11049
11060
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11056,7 +11067,7 @@ function validate$1z(obj, path = 'RecordLayoutRowRepresentation') {
|
|
|
11056
11067
|
for (let i = 0; i < obj_layoutItems.length; i++) {
|
|
11057
11068
|
const obj_layoutItems_item = obj_layoutItems[i];
|
|
11058
11069
|
const path_layoutItems_item = path_layoutItems + '[' + i + ']';
|
|
11059
|
-
const referencepath_layoutItems_itemValidationError = validate$
|
|
11070
|
+
const referencepath_layoutItems_itemValidationError = validate$1B(obj_layoutItems_item, path_layoutItems_item);
|
|
11060
11071
|
if (referencepath_layoutItems_itemValidationError !== null) {
|
|
11061
11072
|
let message = 'Object doesn\'t match RecordLayoutItemRepresentation (at "' + path_layoutItems_item + '")\n';
|
|
11062
11073
|
message += referencepath_layoutItems_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11067,7 +11078,7 @@ function validate$1z(obj, path = 'RecordLayoutRowRepresentation') {
|
|
|
11067
11078
|
return v_error === undefined ? null : v_error;
|
|
11068
11079
|
}
|
|
11069
11080
|
|
|
11070
|
-
function validate$
|
|
11081
|
+
function validate$1z(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
11071
11082
|
const v_error = (() => {
|
|
11072
11083
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11073
11084
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11142,7 +11153,7 @@ function validate$1y(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
|
11142
11153
|
for (let i = 0; i < obj_layoutRows.length; i++) {
|
|
11143
11154
|
const obj_layoutRows_item = obj_layoutRows[i];
|
|
11144
11155
|
const path_layoutRows_item = path_layoutRows + '[' + i + ']';
|
|
11145
|
-
const referencepath_layoutRows_itemValidationError = validate$
|
|
11156
|
+
const referencepath_layoutRows_itemValidationError = validate$1A(obj_layoutRows_item, path_layoutRows_item);
|
|
11146
11157
|
if (referencepath_layoutRows_itemValidationError !== null) {
|
|
11147
11158
|
let message = 'Object doesn\'t match RecordLayoutRowRepresentation (at "' + path_layoutRows_item + '")\n';
|
|
11148
11159
|
message += referencepath_layoutRows_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11165,7 +11176,7 @@ function validate$1y(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
|
11165
11176
|
|
|
11166
11177
|
const TTL$A = 900000;
|
|
11167
11178
|
const VERSION$29 = "fb515e25a89ca1ec154dc865e72b913a";
|
|
11168
|
-
function validate$
|
|
11179
|
+
function validate$1y(obj, path = 'RecordLayoutRepresentation') {
|
|
11169
11180
|
const v_error = (() => {
|
|
11170
11181
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11171
11182
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11271,7 +11282,7 @@ function validate$1x(obj, path = 'RecordLayoutRepresentation') {
|
|
|
11271
11282
|
for (let i = 0; i < obj_saveOptions.length; i++) {
|
|
11272
11283
|
const obj_saveOptions_item = obj_saveOptions[i];
|
|
11273
11284
|
const path_saveOptions_item = path_saveOptions + '[' + i + ']';
|
|
11274
|
-
const referencepath_saveOptions_itemValidationError = validate$
|
|
11285
|
+
const referencepath_saveOptions_itemValidationError = validate$1D(obj_saveOptions_item, path_saveOptions_item);
|
|
11275
11286
|
if (referencepath_saveOptions_itemValidationError !== null) {
|
|
11276
11287
|
let message = 'Object doesn\'t match RecordLayoutSaveOptionRepresentation (at "' + path_saveOptions_item + '")\n';
|
|
11277
11288
|
message += referencepath_saveOptions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11286,7 +11297,7 @@ function validate$1x(obj, path = 'RecordLayoutRepresentation') {
|
|
|
11286
11297
|
for (let i = 0; i < obj_sections.length; i++) {
|
|
11287
11298
|
const obj_sections_item = obj_sections[i];
|
|
11288
11299
|
const path_sections_item = path_sections + '[' + i + ']';
|
|
11289
|
-
const referencepath_sections_itemValidationError = validate$
|
|
11300
|
+
const referencepath_sections_itemValidationError = validate$1z(obj_sections_item, path_sections_item);
|
|
11290
11301
|
if (referencepath_sections_itemValidationError !== null) {
|
|
11291
11302
|
let message = 'Object doesn\'t match RecordLayoutSectionRepresentation (at "' + path_sections_item + '")\n';
|
|
11292
11303
|
message += referencepath_sections_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11361,7 +11372,7 @@ function equals$X(existing, incoming) {
|
|
|
11361
11372
|
}
|
|
11362
11373
|
const ingest$1N = function RecordLayoutRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
11363
11374
|
if (process.env.NODE_ENV !== 'production') {
|
|
11364
|
-
const validateError = validate$
|
|
11375
|
+
const validateError = validate$1y(input);
|
|
11365
11376
|
if (validateError !== null) {
|
|
11366
11377
|
throw validateError;
|
|
11367
11378
|
}
|
|
@@ -11403,7 +11414,7 @@ function getRecordId18Array(value) {
|
|
|
11403
11414
|
return dedupe(array).sort();
|
|
11404
11415
|
}
|
|
11405
11416
|
|
|
11406
|
-
function validate$
|
|
11417
|
+
function validate$1x(obj, path = 'RecordLayoutSectionUserStateRepresentation') {
|
|
11407
11418
|
const v_error = (() => {
|
|
11408
11419
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11409
11420
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11424,7 +11435,7 @@ function validate$1w(obj, path = 'RecordLayoutSectionUserStateRepresentation') {
|
|
|
11424
11435
|
|
|
11425
11436
|
const TTL$z = 900000;
|
|
11426
11437
|
const VERSION$28 = "4ba42e1fa0fb00cf78fce86082da41c9";
|
|
11427
|
-
function validate$
|
|
11438
|
+
function validate$1w(obj, path = 'RecordLayoutUserStateRepresentation') {
|
|
11428
11439
|
const v_error = (() => {
|
|
11429
11440
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11430
11441
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11464,7 +11475,7 @@ function validate$1v(obj, path = 'RecordLayoutUserStateRepresentation') {
|
|
|
11464
11475
|
const key = obj_sectionUserStates_keys[i];
|
|
11465
11476
|
const obj_sectionUserStates_prop = obj_sectionUserStates[key];
|
|
11466
11477
|
const path_sectionUserStates_prop = path_sectionUserStates + '["' + key + '"]';
|
|
11467
|
-
const referencepath_sectionUserStates_propValidationError = validate$
|
|
11478
|
+
const referencepath_sectionUserStates_propValidationError = validate$1x(obj_sectionUserStates_prop, path_sectionUserStates_prop);
|
|
11468
11479
|
if (referencepath_sectionUserStates_propValidationError !== null) {
|
|
11469
11480
|
let message = 'Object doesn\'t match RecordLayoutSectionUserStateRepresentation (at "' + path_sectionUserStates_prop + '")\n';
|
|
11470
11481
|
message += referencepath_sectionUserStates_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11521,7 +11532,7 @@ function equals$W(existing, incoming) {
|
|
|
11521
11532
|
}
|
|
11522
11533
|
const ingest$1M = function RecordLayoutUserStateRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
11523
11534
|
if (process.env.NODE_ENV !== 'production') {
|
|
11524
|
-
const validateError = validate$
|
|
11535
|
+
const validateError = validate$1w(input);
|
|
11525
11536
|
if (validateError !== null) {
|
|
11526
11537
|
throw validateError;
|
|
11527
11538
|
}
|
|
@@ -11543,7 +11554,7 @@ function getTypeCacheKeys$1P(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
11543
11554
|
|
|
11544
11555
|
const TTL$y = 900000;
|
|
11545
11556
|
const VERSION$27 = "49cdd4bc235a6094c3559cc7735b3b6d";
|
|
11546
|
-
function validate$
|
|
11557
|
+
function validate$1v(obj, path = 'RecordUiRepresentation') {
|
|
11547
11558
|
const v_error = (() => {
|
|
11548
11559
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11549
11560
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11805,7 +11816,7 @@ function equals$V(existing, incoming) {
|
|
|
11805
11816
|
}
|
|
11806
11817
|
const ingest$1L = function RecordUiRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
11807
11818
|
if (process.env.NODE_ENV !== 'production') {
|
|
11808
|
-
const validateError = validate$
|
|
11819
|
+
const validateError = validate$1v(input);
|
|
11809
11820
|
if (validateError !== null) {
|
|
11810
11821
|
throw validateError;
|
|
11811
11822
|
}
|
|
@@ -12446,7 +12457,7 @@ function getLayoutMapAndObjectInfo(recordId, data) {
|
|
|
12446
12457
|
// Temp fix until we can mimic the server behavior for non-layoutable entities.
|
|
12447
12458
|
let layoutMap = {};
|
|
12448
12459
|
if (hasOwnProperty.call(layouts, apiName)) {
|
|
12449
|
-
layoutMap = layouts[apiName][recordTypeId];
|
|
12460
|
+
layoutMap = layouts[apiName][recordTypeId] || {};
|
|
12450
12461
|
}
|
|
12451
12462
|
return {
|
|
12452
12463
|
layoutMap,
|
|
@@ -12937,7 +12948,7 @@ const notifyUpdateAvailableFactory$1 = (luvio) => {
|
|
|
12937
12948
|
};
|
|
12938
12949
|
|
|
12939
12950
|
const VERSION$26 = "4aa37812ee37c752a099b29026217c85";
|
|
12940
|
-
function validate$
|
|
12951
|
+
function validate$1u(obj, path = 'ObjectInfoDirectoryEntryRepresentation') {
|
|
12941
12952
|
const v_error = (() => {
|
|
12942
12953
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
12943
12954
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -13090,7 +13101,7 @@ function equals$U(existing, incoming) {
|
|
|
13090
13101
|
}
|
|
13091
13102
|
const ingest$1K = function ObjectInfoDirectoryEntryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
13092
13103
|
if (process.env.NODE_ENV !== 'production') {
|
|
13093
|
-
const validateError = validate$
|
|
13104
|
+
const validateError = validate$1u(input);
|
|
13094
13105
|
if (validateError !== null) {
|
|
13095
13106
|
throw validateError;
|
|
13096
13107
|
}
|
|
@@ -13111,7 +13122,7 @@ function getTypeCacheKeys$1O(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
13111
13122
|
}
|
|
13112
13123
|
|
|
13113
13124
|
const VERSION$25 = "37fd8c0154ee743c9defbf03e9b4b067";
|
|
13114
|
-
function validate$
|
|
13125
|
+
function validate$1t(obj, path = 'ObjectInfoDirectoryRepresentation') {
|
|
13115
13126
|
const v_error = (() => {
|
|
13116
13127
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
13117
13128
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -13186,7 +13197,7 @@ function equals$T(existing, incoming) {
|
|
|
13186
13197
|
}
|
|
13187
13198
|
const ingest$1J = function ObjectInfoDirectoryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
13188
13199
|
if (process.env.NODE_ENV !== 'production') {
|
|
13189
|
-
const validateError = validate$
|
|
13200
|
+
const validateError = validate$1t(input);
|
|
13190
13201
|
if (validateError !== null) {
|
|
13191
13202
|
throw validateError;
|
|
13192
13203
|
}
|
|
@@ -13214,7 +13225,7 @@ function getTypeCacheKeys$1N(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
13214
13225
|
}
|
|
13215
13226
|
|
|
13216
13227
|
const VERSION$24 = "7e00c51105cbf56a79ab8fcddf462c1e";
|
|
13217
|
-
function validate$
|
|
13228
|
+
function validate$1s(obj, path = 'QuickActionExecutionRepresentation') {
|
|
13218
13229
|
const v_error = (() => {
|
|
13219
13230
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
13220
13231
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -13387,7 +13398,7 @@ function equals$S(existing, incoming) {
|
|
|
13387
13398
|
}
|
|
13388
13399
|
const ingest$1I = function QuickActionExecutionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
13389
13400
|
if (process.env.NODE_ENV !== 'production') {
|
|
13390
|
-
const validateError = validate$
|
|
13401
|
+
const validateError = validate$1s(input);
|
|
13391
13402
|
if (validateError !== null) {
|
|
13392
13403
|
throw validateError;
|
|
13393
13404
|
}
|
|
@@ -13409,7 +13420,7 @@ function getTypeCacheKeys$1M(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
13409
13420
|
|
|
13410
13421
|
const TTL$x = 900000;
|
|
13411
13422
|
const VERSION$23 = "993b0a7bce6056c4f57ed300ec153d9c";
|
|
13412
|
-
function validate$
|
|
13423
|
+
function validate$1r(obj, path = 'QuickActionDefaultsRepresentation') {
|
|
13413
13424
|
const v_error = (() => {
|
|
13414
13425
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
13415
13426
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -13588,7 +13599,7 @@ function coerceFormFactor(form) {
|
|
|
13588
13599
|
}
|
|
13589
13600
|
|
|
13590
13601
|
const VERSION$22 = "3f49d751896cf66e6e29788d8880e2cc";
|
|
13591
|
-
function validate$
|
|
13602
|
+
function validate$1q(obj, path = 'PlatformActionRepresentation') {
|
|
13592
13603
|
const v_error = (() => {
|
|
13593
13604
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
13594
13605
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14120,7 +14131,7 @@ function equals$Q(existing, incoming) {
|
|
|
14120
14131
|
}
|
|
14121
14132
|
const ingest$1H = function PlatformActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14122
14133
|
if (process.env.NODE_ENV !== 'production') {
|
|
14123
|
-
const validateError = validate$
|
|
14134
|
+
const validateError = validate$1q(input);
|
|
14124
14135
|
if (validateError !== null) {
|
|
14125
14136
|
throw validateError;
|
|
14126
14137
|
}
|
|
@@ -14141,7 +14152,7 @@ function getTypeCacheKeys$1K(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
14141
14152
|
}
|
|
14142
14153
|
|
|
14143
14154
|
const VERSION$21 = "378d506f563a4bd724b322d440df33d1";
|
|
14144
|
-
function validate$
|
|
14155
|
+
function validate$1p(obj, path = 'EntityActionRepresentation') {
|
|
14145
14156
|
const v_error = (() => {
|
|
14146
14157
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14147
14158
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14255,7 +14266,7 @@ function equals$P(existing, incoming) {
|
|
|
14255
14266
|
}
|
|
14256
14267
|
const ingest$1G = function EntityActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14257
14268
|
if (process.env.NODE_ENV !== 'production') {
|
|
14258
|
-
const validateError = validate$
|
|
14269
|
+
const validateError = validate$1p(input);
|
|
14259
14270
|
if (validateError !== null) {
|
|
14260
14271
|
throw validateError;
|
|
14261
14272
|
}
|
|
@@ -14281,7 +14292,7 @@ function getTypeCacheKeys$1J(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
14281
14292
|
|
|
14282
14293
|
const TTL$w = 300000;
|
|
14283
14294
|
const VERSION$20 = "e485d96c1402a9ca2f56e56485af0216";
|
|
14284
|
-
function validate$
|
|
14295
|
+
function validate$1o(obj, path = 'ActionRepresentation') {
|
|
14285
14296
|
const v_error = (() => {
|
|
14286
14297
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14287
14298
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14379,7 +14390,7 @@ function equals$O(existing, incoming) {
|
|
|
14379
14390
|
}
|
|
14380
14391
|
const ingest$1F = function ActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14381
14392
|
if (process.env.NODE_ENV !== 'production') {
|
|
14382
|
-
const validateError = validate$
|
|
14393
|
+
const validateError = validate$1o(input);
|
|
14383
14394
|
if (validateError !== null) {
|
|
14384
14395
|
throw validateError;
|
|
14385
14396
|
}
|
|
@@ -14551,7 +14562,7 @@ const getGlobalActionsAdapterFactory = (luvio) => function UiApi__getGlobalActio
|
|
|
14551
14562
|
|
|
14552
14563
|
const TTL$v = 900000;
|
|
14553
14564
|
const VERSION$1$ = "35f3eec8ce7f6001c6d5d17821b75bb9";
|
|
14554
|
-
function validate$
|
|
14565
|
+
function validate$1n(obj, path = 'QuickActionLayoutRepresentation') {
|
|
14555
14566
|
const v_error = (() => {
|
|
14556
14567
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14557
14568
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14568,7 +14579,7 @@ function validate$1m(obj, path = 'QuickActionLayoutRepresentation') {
|
|
|
14568
14579
|
}
|
|
14569
14580
|
const obj_layout = obj.layout;
|
|
14570
14581
|
const path_layout = path + '.layout';
|
|
14571
|
-
const referencepath_layoutValidationError = validate$
|
|
14582
|
+
const referencepath_layoutValidationError = validate$1y(obj_layout, path_layout);
|
|
14572
14583
|
if (referencepath_layoutValidationError !== null) {
|
|
14573
14584
|
let message = 'Object doesn\'t match RecordLayoutRepresentation (at "' + path_layout + '")\n';
|
|
14574
14585
|
message += referencepath_layoutValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -14618,7 +14629,7 @@ function equals$N(existing, incoming) {
|
|
|
14618
14629
|
}
|
|
14619
14630
|
const ingest$1E = function QuickActionLayoutRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14620
14631
|
if (process.env.NODE_ENV !== 'production') {
|
|
14621
|
-
const validateError = validate$
|
|
14632
|
+
const validateError = validate$1n(input);
|
|
14622
14633
|
if (validateError !== null) {
|
|
14623
14634
|
throw validateError;
|
|
14624
14635
|
}
|
|
@@ -15095,7 +15106,7 @@ const getObjectCreateActionsAdapterFactory = (luvio) => function UiApi__getObjec
|
|
|
15095
15106
|
};
|
|
15096
15107
|
|
|
15097
15108
|
const VERSION$1_ = "fecd80e9e24a1c1e75fd5395cd34ff2e";
|
|
15098
|
-
function validate$
|
|
15109
|
+
function validate$1m(obj, path = 'ActionOverrideRepresentation') {
|
|
15099
15110
|
const v_error = (() => {
|
|
15100
15111
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
15101
15112
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15128,7 +15139,7 @@ function equals$M(existing, incoming) {
|
|
|
15128
15139
|
}
|
|
15129
15140
|
const ingest$1D = function ActionOverrideRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15130
15141
|
if (process.env.NODE_ENV !== 'production') {
|
|
15131
|
-
const validateError = validate$
|
|
15142
|
+
const validateError = validate$1m(input);
|
|
15132
15143
|
if (validateError !== null) {
|
|
15133
15144
|
throw validateError;
|
|
15134
15145
|
}
|
|
@@ -15283,7 +15294,7 @@ const getActionOverridesAdapterFactory = (luvio) => function UiApi__getActionOve
|
|
|
15283
15294
|
buildCachedSnapshotCachePolicy$J, buildNetworkSnapshotCachePolicy$K);
|
|
15284
15295
|
};
|
|
15285
15296
|
|
|
15286
|
-
function validate$
|
|
15297
|
+
function validate$1l(obj, path = 'FormulaOverridesInfoRepresentation') {
|
|
15287
15298
|
const v_error = (() => {
|
|
15288
15299
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
15289
15300
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15321,7 +15332,7 @@ function validate$1k(obj, path = 'FormulaOverridesInfoRepresentation') {
|
|
|
15321
15332
|
|
|
15322
15333
|
const TTL$u = 300000;
|
|
15323
15334
|
const VERSION$1Z = "c57b66c259b23683db7b763e132e8633";
|
|
15324
|
-
function validate$
|
|
15335
|
+
function validate$1k(obj, path = 'FlexipageFormulaActivationRepresentation') {
|
|
15325
15336
|
const v_error = (() => {
|
|
15326
15337
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
15327
15338
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15342,7 +15353,7 @@ function validate$1j(obj, path = 'FlexipageFormulaActivationRepresentation') {
|
|
|
15342
15353
|
for (let i = 0; i < obj_activations_prop.length; i++) {
|
|
15343
15354
|
const obj_activations_prop_item = obj_activations_prop[i];
|
|
15344
15355
|
const path_activations_prop_item = path_activations_prop + '[' + i + ']';
|
|
15345
|
-
const referencepath_activations_prop_itemValidationError = validate$
|
|
15356
|
+
const referencepath_activations_prop_itemValidationError = validate$1l(obj_activations_prop_item, path_activations_prop_item);
|
|
15346
15357
|
if (referencepath_activations_prop_itemValidationError !== null) {
|
|
15347
15358
|
let message = 'Object doesn\'t match FormulaOverridesInfoRepresentation (at "' + path_activations_prop_item + '")\n';
|
|
15348
15359
|
message += referencepath_activations_prop_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -15386,7 +15397,7 @@ function equals$L(existing, incoming) {
|
|
|
15386
15397
|
}
|
|
15387
15398
|
const ingest$1C = function FlexipageFormulaActivationRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15388
15399
|
if (process.env.NODE_ENV !== 'production') {
|
|
15389
|
-
const validateError = validate$
|
|
15400
|
+
const validateError = validate$1k(input);
|
|
15390
15401
|
if (validateError !== null) {
|
|
15391
15402
|
throw validateError;
|
|
15392
15403
|
}
|
|
@@ -15569,7 +15580,7 @@ function merge$1(existing, incoming) {
|
|
|
15569
15580
|
const dynamicIngest$4 = (ingestParams) => {
|
|
15570
15581
|
return function QuickActionDefaultsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15571
15582
|
if (process.env.NODE_ENV !== 'production') {
|
|
15572
|
-
const validateError = validate$
|
|
15583
|
+
const validateError = validate$1r(input);
|
|
15573
15584
|
if (validateError !== null) {
|
|
15574
15585
|
throw validateError;
|
|
15575
15586
|
}
|
|
@@ -15585,7 +15596,10 @@ const dynamicIngest$4 = (ingestParams) => {
|
|
|
15585
15596
|
if (existingRecord === undefined || equals$R(existingRecord, incomingRecord) === false) {
|
|
15586
15597
|
luvio.storePublish(key, incomingRecord);
|
|
15587
15598
|
}
|
|
15588
|
-
luvio.publishStoreMetadata(key,
|
|
15599
|
+
luvio.publishStoreMetadata(key, {
|
|
15600
|
+
...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
|
|
15601
|
+
ingestionTimestamp: timestamp,
|
|
15602
|
+
});
|
|
15589
15603
|
return createLink$1(key);
|
|
15590
15604
|
};
|
|
15591
15605
|
};
|
|
@@ -16078,7 +16092,7 @@ const getRecordEditActionsAdapterFactory = (luvio) => function UiApi__getRecordE
|
|
|
16078
16092
|
buildCachedSnapshotCachePolicy$F, buildNetworkSnapshotCachePolicy$G);
|
|
16079
16093
|
};
|
|
16080
16094
|
|
|
16081
|
-
function validate$
|
|
16095
|
+
function validate$1j(obj, path = 'ActionRelatedListSingleBatchInputRepresentation') {
|
|
16082
16096
|
const v_error = (() => {
|
|
16083
16097
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16084
16098
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16504,7 +16518,7 @@ function typeCheckConfig$U(untrustedConfig) {
|
|
|
16504
16518
|
const untrustedConfig_relatedListsActionParameters_array = [];
|
|
16505
16519
|
for (let i = 0, arrayLength = untrustedConfig_relatedListsActionParameters.length; i < arrayLength; i++) {
|
|
16506
16520
|
const untrustedConfig_relatedListsActionParameters_item = untrustedConfig_relatedListsActionParameters[i];
|
|
16507
|
-
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$
|
|
16521
|
+
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$1j(untrustedConfig_relatedListsActionParameters_item);
|
|
16508
16522
|
if (referenceActionRelatedListSingleBatchInputRepresentationValidationError === null) {
|
|
16509
16523
|
untrustedConfig_relatedListsActionParameters_array.push(untrustedConfig_relatedListsActionParameters_item);
|
|
16510
16524
|
}
|
|
@@ -16822,7 +16836,7 @@ const getRelatedListRecordActionsAdapterFactory = (luvio) => function UiApi__get
|
|
|
16822
16836
|
};
|
|
16823
16837
|
|
|
16824
16838
|
const VERSION$1Y = "a316b3bba367f54adc67d7552ed7d36d";
|
|
16825
|
-
function validate$
|
|
16839
|
+
function validate$1i(obj, path = 'PageReferenceRepresentation') {
|
|
16826
16840
|
const v_error = (() => {
|
|
16827
16841
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16828
16842
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16883,7 +16897,7 @@ function equals$K(existing, incoming) {
|
|
|
16883
16897
|
}
|
|
16884
16898
|
const ingest$1B = function PageReferenceRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
16885
16899
|
if (process.env.NODE_ENV !== 'production') {
|
|
16886
|
-
const validateError = validate$
|
|
16900
|
+
const validateError = validate$1i(input);
|
|
16887
16901
|
if (validateError !== null) {
|
|
16888
16902
|
throw validateError;
|
|
16889
16903
|
}
|
|
@@ -16905,7 +16919,7 @@ function getTypeCacheKeys$1E(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
16905
16919
|
|
|
16906
16920
|
const TTL$t = 120000;
|
|
16907
16921
|
const VERSION$1X = "09884ca5bf90ea4662092a4e48817081";
|
|
16908
|
-
function validate$
|
|
16922
|
+
function validate$1h(obj, path = 'NavItemRepresentation') {
|
|
16909
16923
|
const v_error = (() => {
|
|
16910
16924
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16911
16925
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17297,7 +17311,7 @@ function equals$J(existing, incoming) {
|
|
|
17297
17311
|
}
|
|
17298
17312
|
const ingest$1A = function NavItemRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17299
17313
|
if (process.env.NODE_ENV !== 'production') {
|
|
17300
|
-
const validateError = validate$
|
|
17314
|
+
const validateError = validate$1h(input);
|
|
17301
17315
|
if (validateError !== null) {
|
|
17302
17316
|
throw validateError;
|
|
17303
17317
|
}
|
|
@@ -17322,7 +17336,7 @@ function getTypeCacheKeys$1D(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
17322
17336
|
|
|
17323
17337
|
const TTL$s = 300000;
|
|
17324
17338
|
const VERSION$1W = "1781f2d3d4e413cf0c681774d82d02cd";
|
|
17325
|
-
function validate$
|
|
17339
|
+
function validate$1g(obj, path = 'AppRepresentation') {
|
|
17326
17340
|
const v_error = (() => {
|
|
17327
17341
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
17328
17342
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17764,7 +17778,7 @@ function equals$I(existing, incoming) {
|
|
|
17764
17778
|
}
|
|
17765
17779
|
const ingest$1z = function AppRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17766
17780
|
if (process.env.NODE_ENV !== 'production') {
|
|
17767
|
-
const validateError = validate$
|
|
17781
|
+
const validateError = validate$1g(input);
|
|
17768
17782
|
if (validateError !== null) {
|
|
17769
17783
|
throw validateError;
|
|
17770
17784
|
}
|
|
@@ -17794,7 +17808,7 @@ function getTypeCacheKeys$1C(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
17794
17808
|
|
|
17795
17809
|
const TTL$r = 300000;
|
|
17796
17810
|
const VERSION$1V = "a254babf0b6414315db7808a157fd9fc";
|
|
17797
|
-
function validate$
|
|
17811
|
+
function validate$1f(obj, path = 'AppsRepresentation') {
|
|
17798
17812
|
const v_error = (() => {
|
|
17799
17813
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
17800
17814
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17876,7 +17890,7 @@ function equals$H(existing, incoming) {
|
|
|
17876
17890
|
}
|
|
17877
17891
|
const ingest$1y = function AppsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17878
17892
|
if (process.env.NODE_ENV !== 'production') {
|
|
17879
|
-
const validateError = validate$
|
|
17893
|
+
const validateError = validate$1f(input);
|
|
17880
17894
|
if (validateError !== null) {
|
|
17881
17895
|
throw validateError;
|
|
17882
17896
|
}
|
|
@@ -18323,7 +18337,7 @@ const getAppDetailsAdapterFactory = (luvio) => function UiApi__getAppDetails(unt
|
|
|
18323
18337
|
};
|
|
18324
18338
|
|
|
18325
18339
|
const VERSION$1U = "f43ef90ffde4d488414d6868e3aaefcb";
|
|
18326
|
-
function validate$
|
|
18340
|
+
function validate$1e(obj, path = 'DuplicateRuleFilterItemRepresentation') {
|
|
18327
18341
|
const v_error = (() => {
|
|
18328
18342
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18329
18343
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18385,7 +18399,7 @@ const select$2g = function DuplicateRuleFilterItemRepresentationSelect() {
|
|
|
18385
18399
|
};
|
|
18386
18400
|
|
|
18387
18401
|
const VERSION$1T = "320d7f254687278f2763d4b490dab3fb";
|
|
18388
|
-
function validate$
|
|
18402
|
+
function validate$1d(obj, path = 'DuplicateRuleFilterRepresentation') {
|
|
18389
18403
|
const v_error = (() => {
|
|
18390
18404
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18391
18405
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18408,7 +18422,7 @@ function validate$1c(obj, path = 'DuplicateRuleFilterRepresentation') {
|
|
|
18408
18422
|
for (let i = 0; i < obj_filterItems.length; i++) {
|
|
18409
18423
|
const obj_filterItems_item = obj_filterItems[i];
|
|
18410
18424
|
const path_filterItems_item = path_filterItems + '[' + i + ']';
|
|
18411
|
-
const referencepath_filterItems_itemValidationError = validate$
|
|
18425
|
+
const referencepath_filterItems_itemValidationError = validate$1e(obj_filterItems_item, path_filterItems_item);
|
|
18412
18426
|
if (referencepath_filterItems_itemValidationError !== null) {
|
|
18413
18427
|
let message = 'Object doesn\'t match DuplicateRuleFilterItemRepresentation (at "' + path_filterItems_item + '")\n';
|
|
18414
18428
|
message += referencepath_filterItems_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18451,7 +18465,7 @@ const select$2f = function DuplicateRuleFilterRepresentationSelect() {
|
|
|
18451
18465
|
};
|
|
18452
18466
|
|
|
18453
18467
|
const VERSION$1S = "b47b44e260e5ce777beaf3da9088997c";
|
|
18454
|
-
function validate$
|
|
18468
|
+
function validate$1c(obj, path = 'MatchRuleRepresentation') {
|
|
18455
18469
|
const v_error = (() => {
|
|
18456
18470
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18457
18471
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18521,7 +18535,7 @@ const select$2e = function MatchRuleRepresentationSelect() {
|
|
|
18521
18535
|
};
|
|
18522
18536
|
|
|
18523
18537
|
const VERSION$1R = "bb83d7210bb1d7861b6188bc5f552617";
|
|
18524
|
-
function validate$
|
|
18538
|
+
function validate$1b(obj, path = 'DuplicateRuleRepresentation') {
|
|
18525
18539
|
const v_error = (() => {
|
|
18526
18540
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18527
18541
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18549,7 +18563,7 @@ function validate$1a(obj, path = 'DuplicateRuleRepresentation') {
|
|
|
18549
18563
|
for (let i = 0; i < obj_duplicateRuleFilters.length; i++) {
|
|
18550
18564
|
const obj_duplicateRuleFilters_item = obj_duplicateRuleFilters[i];
|
|
18551
18565
|
const path_duplicateRuleFilters_item = path_duplicateRuleFilters + '[' + i + ']';
|
|
18552
|
-
const referencepath_duplicateRuleFilters_itemValidationError = validate$
|
|
18566
|
+
const referencepath_duplicateRuleFilters_itemValidationError = validate$1d(obj_duplicateRuleFilters_item, path_duplicateRuleFilters_item);
|
|
18553
18567
|
if (referencepath_duplicateRuleFilters_itemValidationError !== null) {
|
|
18554
18568
|
let message = 'Object doesn\'t match DuplicateRuleFilterRepresentation (at "' + path_duplicateRuleFilters_item + '")\n';
|
|
18555
18569
|
message += referencepath_duplicateRuleFilters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18569,7 +18583,7 @@ function validate$1a(obj, path = 'DuplicateRuleRepresentation') {
|
|
|
18569
18583
|
for (let i = 0; i < obj_matchRules.length; i++) {
|
|
18570
18584
|
const obj_matchRules_item = obj_matchRules[i];
|
|
18571
18585
|
const path_matchRules_item = path_matchRules + '[' + i + ']';
|
|
18572
|
-
const referencepath_matchRules_itemValidationError = validate$
|
|
18586
|
+
const referencepath_matchRules_itemValidationError = validate$1c(obj_matchRules_item, path_matchRules_item);
|
|
18573
18587
|
if (referencepath_matchRules_itemValidationError !== null) {
|
|
18574
18588
|
let message = 'Object doesn\'t match MatchRuleRepresentation (at "' + path_matchRules_item + '")\n';
|
|
18575
18589
|
message += referencepath_matchRules_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18662,7 +18676,7 @@ const select$2d = function DuplicateRuleRepresentationSelect() {
|
|
|
18662
18676
|
|
|
18663
18677
|
const TTL$q = 900000;
|
|
18664
18678
|
const VERSION$1Q = "be27ee99dc0dc43a1f66b8fe98dc532c";
|
|
18665
|
-
function validate$
|
|
18679
|
+
function validate$1a(obj, path = 'DuplicatesConfigurationRepresentation') {
|
|
18666
18680
|
const v_error = (() => {
|
|
18667
18681
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18668
18682
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18697,7 +18711,7 @@ function validate$19(obj, path = 'DuplicatesConfigurationRepresentation') {
|
|
|
18697
18711
|
for (let i = 0; i < obj_duplicateRules.length; i++) {
|
|
18698
18712
|
const obj_duplicateRules_item = obj_duplicateRules[i];
|
|
18699
18713
|
const path_duplicateRules_item = path_duplicateRules + '[' + i + ']';
|
|
18700
|
-
const referencepath_duplicateRules_itemValidationError = validate$
|
|
18714
|
+
const referencepath_duplicateRules_itemValidationError = validate$1b(obj_duplicateRules_item, path_duplicateRules_item);
|
|
18701
18715
|
if (referencepath_duplicateRules_itemValidationError !== null) {
|
|
18702
18716
|
let message = 'Object doesn\'t match DuplicateRuleRepresentation (at "' + path_duplicateRules_item + '")\n';
|
|
18703
18717
|
message += referencepath_duplicateRules_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18764,7 +18778,7 @@ function equals$G(existing, incoming) {
|
|
|
18764
18778
|
}
|
|
18765
18779
|
const ingest$1x = function DuplicatesConfigurationRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
18766
18780
|
if (process.env.NODE_ENV !== 'production') {
|
|
18767
|
-
const validateError = validate$
|
|
18781
|
+
const validateError = validate$1a(input);
|
|
18768
18782
|
if (validateError !== null) {
|
|
18769
18783
|
throw validateError;
|
|
18770
18784
|
}
|
|
@@ -19703,7 +19717,7 @@ const getListInfosByNameAdapterFactory = (luvio) => function UiApi__getListInfos
|
|
|
19703
19717
|
buildCachedSnapshotCachePolicy$v, buildNetworkSnapshotCachePolicy$w);
|
|
19704
19718
|
};
|
|
19705
19719
|
|
|
19706
|
-
function validate$
|
|
19720
|
+
function validate$19(obj, path = 'ListFilterByInfoInputRepresentation') {
|
|
19707
19721
|
const v_error = (() => {
|
|
19708
19722
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
19709
19723
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -19734,7 +19748,7 @@ function validate$18(obj, path = 'ListFilterByInfoInputRepresentation') {
|
|
|
19734
19748
|
return v_error === undefined ? null : v_error;
|
|
19735
19749
|
}
|
|
19736
19750
|
|
|
19737
|
-
function validate$
|
|
19751
|
+
function validate$18(obj, path = 'ListScopeInputRepresentation') {
|
|
19738
19752
|
const v_error = (() => {
|
|
19739
19753
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
19740
19754
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -19863,7 +19877,7 @@ function typeCheckConfig$K(untrustedConfig) {
|
|
|
19863
19877
|
const untrustedConfig_filteredByInfo_array = [];
|
|
19864
19878
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
19865
19879
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
19866
|
-
const referenceListFilterByInfoInputRepresentationValidationError = validate$
|
|
19880
|
+
const referenceListFilterByInfoInputRepresentationValidationError = validate$19(untrustedConfig_filteredByInfo_item);
|
|
19867
19881
|
if (referenceListFilterByInfoInputRepresentationValidationError === null) {
|
|
19868
19882
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
19869
19883
|
}
|
|
@@ -19871,7 +19885,7 @@ function typeCheckConfig$K(untrustedConfig) {
|
|
|
19871
19885
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
19872
19886
|
}
|
|
19873
19887
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
19874
|
-
const referenceListScopeInputRepresentationValidationError = validate$
|
|
19888
|
+
const referenceListScopeInputRepresentationValidationError = validate$18(untrustedConfig_scope);
|
|
19875
19889
|
if (referenceListScopeInputRepresentationValidationError === null) {
|
|
19876
19890
|
config.scope = untrustedConfig_scope;
|
|
19877
19891
|
}
|
|
@@ -20153,7 +20167,7 @@ function typeCheckConfig$H(untrustedConfig) {
|
|
|
20153
20167
|
const untrustedConfig_filteredByInfo_array = [];
|
|
20154
20168
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
20155
20169
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
20156
|
-
const referenceListFilterByInfoInputRepresentationValidationError = validate$
|
|
20170
|
+
const referenceListFilterByInfoInputRepresentationValidationError = validate$19(untrustedConfig_filteredByInfo_item);
|
|
20157
20171
|
if (referenceListFilterByInfoInputRepresentationValidationError === null) {
|
|
20158
20172
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
20159
20173
|
}
|
|
@@ -20161,7 +20175,7 @@ function typeCheckConfig$H(untrustedConfig) {
|
|
|
20161
20175
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
20162
20176
|
}
|
|
20163
20177
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
20164
|
-
const referenceListScopeInputRepresentationValidationError = validate$
|
|
20178
|
+
const referenceListScopeInputRepresentationValidationError = validate$18(untrustedConfig_scope);
|
|
20165
20179
|
if (referenceListScopeInputRepresentationValidationError === null) {
|
|
20166
20180
|
config.scope = untrustedConfig_scope;
|
|
20167
20181
|
}
|
|
@@ -20211,7 +20225,7 @@ const updateListInfoByNameAdapterFactory = (luvio) => {
|
|
|
20211
20225
|
};
|
|
20212
20226
|
|
|
20213
20227
|
const VERSION$1P = "d77026c4d63ef00cdd7e3d600687a40d";
|
|
20214
|
-
function validate$
|
|
20228
|
+
function validate$17(obj, path = 'ListObjectScopeAvailableEntityRepresentation') {
|
|
20215
20229
|
const v_error = (() => {
|
|
20216
20230
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20217
20231
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20261,7 +20275,7 @@ function equals$F(existing, incoming) {
|
|
|
20261
20275
|
}
|
|
20262
20276
|
|
|
20263
20277
|
const VERSION$1O = "355933ff2970aa91a2848a94565e956a";
|
|
20264
|
-
function validate$
|
|
20278
|
+
function validate$16(obj, path = 'ListObjectScopeRepresentation') {
|
|
20265
20279
|
const v_error = (() => {
|
|
20266
20280
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20267
20281
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20279,7 +20293,7 @@ function validate$15(obj, path = 'ListObjectScopeRepresentation') {
|
|
|
20279
20293
|
for (let i = 0; i < obj_availableEntities.length; i++) {
|
|
20280
20294
|
const obj_availableEntities_item = obj_availableEntities[i];
|
|
20281
20295
|
const path_availableEntities_item = path_availableEntities + '[' + i + ']';
|
|
20282
|
-
const referencepath_availableEntities_itemValidationError = validate$
|
|
20296
|
+
const referencepath_availableEntities_itemValidationError = validate$17(obj_availableEntities_item, path_availableEntities_item);
|
|
20283
20297
|
if (referencepath_availableEntities_itemValidationError !== null) {
|
|
20284
20298
|
let message = 'Object doesn\'t match ListObjectScopeAvailableEntityRepresentation (at "' + path_availableEntities_item + '")\n';
|
|
20285
20299
|
message += referencepath_availableEntities_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -20343,7 +20357,7 @@ function equals$E(existing, incoming) {
|
|
|
20343
20357
|
}
|
|
20344
20358
|
|
|
20345
20359
|
const VERSION$1N = "c5c08ea834378670c9d6f235ff71c9f0";
|
|
20346
|
-
function validate$
|
|
20360
|
+
function validate$15(obj, path = 'ListObjectPicklistValueRepresentation') {
|
|
20347
20361
|
const v_error = (() => {
|
|
20348
20362
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20349
20363
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20393,7 +20407,7 @@ function equals$D(existing, incoming) {
|
|
|
20393
20407
|
}
|
|
20394
20408
|
|
|
20395
20409
|
const VERSION$1M = "2c35f797fead79b5c45b521e77dd6ace";
|
|
20396
|
-
function validate$
|
|
20410
|
+
function validate$14(obj, path = 'ListObjectColumnRepresentation') {
|
|
20397
20411
|
const v_error = (() => {
|
|
20398
20412
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20399
20413
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20462,7 +20476,7 @@ function validate$13(obj, path = 'ListObjectColumnRepresentation') {
|
|
|
20462
20476
|
for (let i = 0; i < obj_picklistValues.length; i++) {
|
|
20463
20477
|
const obj_picklistValues_item = obj_picklistValues[i];
|
|
20464
20478
|
const path_picklistValues_item = path_picklistValues + '[' + i + ']';
|
|
20465
|
-
const referencepath_picklistValues_itemValidationError = validate$
|
|
20479
|
+
const referencepath_picklistValues_itemValidationError = validate$15(obj_picklistValues_item, path_picklistValues_item);
|
|
20466
20480
|
if (referencepath_picklistValues_itemValidationError !== null) {
|
|
20467
20481
|
let message = 'Object doesn\'t match ListObjectPicklistValueRepresentation (at "' + path_picklistValues_item + '")\n';
|
|
20468
20482
|
message += referencepath_picklistValues_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -20608,7 +20622,7 @@ function equals$C(existing, incoming) {
|
|
|
20608
20622
|
|
|
20609
20623
|
const TTL$p = 900000;
|
|
20610
20624
|
const VERSION$1L = "84e1e3ffdfcb59f65d7b8906e33027ac";
|
|
20611
|
-
function validate$
|
|
20625
|
+
function validate$13(obj, path = 'ListObjectInfoRepresentation') {
|
|
20612
20626
|
const v_error = (() => {
|
|
20613
20627
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20614
20628
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20621,7 +20635,7 @@ function validate$12(obj, path = 'ListObjectInfoRepresentation') {
|
|
|
20621
20635
|
for (let i = 0; i < obj_availableScopes.length; i++) {
|
|
20622
20636
|
const obj_availableScopes_item = obj_availableScopes[i];
|
|
20623
20637
|
const path_availableScopes_item = path_availableScopes + '[' + i + ']';
|
|
20624
|
-
const referencepath_availableScopes_itemValidationError = validate$
|
|
20638
|
+
const referencepath_availableScopes_itemValidationError = validate$16(obj_availableScopes_item, path_availableScopes_item);
|
|
20625
20639
|
if (referencepath_availableScopes_itemValidationError !== null) {
|
|
20626
20640
|
let message = 'Object doesn\'t match ListObjectScopeRepresentation (at "' + path_availableScopes_item + '")\n';
|
|
20627
20641
|
message += referencepath_availableScopes_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -20636,7 +20650,7 @@ function validate$12(obj, path = 'ListObjectInfoRepresentation') {
|
|
|
20636
20650
|
for (let i = 0; i < obj_columns.length; i++) {
|
|
20637
20651
|
const obj_columns_item = obj_columns[i];
|
|
20638
20652
|
const path_columns_item = path_columns + '[' + i + ']';
|
|
20639
|
-
const referencepath_columns_itemValidationError = validate$
|
|
20653
|
+
const referencepath_columns_itemValidationError = validate$14(obj_columns_item, path_columns_item);
|
|
20640
20654
|
if (referencepath_columns_itemValidationError !== null) {
|
|
20641
20655
|
let message = 'Object doesn\'t match ListObjectColumnRepresentation (at "' + path_columns_item + '")\n';
|
|
20642
20656
|
message += referencepath_columns_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -20770,7 +20784,7 @@ function equals$B(existing, incoming) {
|
|
|
20770
20784
|
}
|
|
20771
20785
|
const ingest$1w = function ListObjectInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
20772
20786
|
if (process.env.NODE_ENV !== 'production') {
|
|
20773
|
-
const validateError = validate$
|
|
20787
|
+
const validateError = validate$13(input);
|
|
20774
20788
|
if (validateError !== null) {
|
|
20775
20789
|
throw validateError;
|
|
20776
20790
|
}
|
|
@@ -20933,7 +20947,7 @@ const getListObjectInfoAdapterFactory = (luvio) => function UiApi__getListObject
|
|
|
20933
20947
|
|
|
20934
20948
|
const TTL$o = 900000;
|
|
20935
20949
|
const VERSION$1K = "458d4a6a30201e422e8daec5fcb03845";
|
|
20936
|
-
function validate$
|
|
20950
|
+
function validate$12(obj, path = 'ListPreferencesRepresentation') {
|
|
20937
20951
|
const v_error = (() => {
|
|
20938
20952
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20939
20953
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20968,7 +20982,7 @@ function validate$11(obj, path = 'ListPreferencesRepresentation') {
|
|
|
20968
20982
|
}
|
|
20969
20983
|
const obj_listReference = obj.listReference;
|
|
20970
20984
|
const path_listReference = path + '.listReference';
|
|
20971
|
-
const referencepath_listReferenceValidationError = validate$
|
|
20985
|
+
const referencepath_listReferenceValidationError = validate$21(obj_listReference, path_listReference);
|
|
20972
20986
|
if (referencepath_listReferenceValidationError !== null) {
|
|
20973
20987
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
20974
20988
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -20982,7 +20996,7 @@ function validate$11(obj, path = 'ListPreferencesRepresentation') {
|
|
|
20982
20996
|
for (let i = 0; i < obj_orderedBy.length; i++) {
|
|
20983
20997
|
const obj_orderedBy_item = obj_orderedBy[i];
|
|
20984
20998
|
const path_orderedBy_item = path_orderedBy + '[' + i + ']';
|
|
20985
|
-
const referencepath_orderedBy_itemValidationError = validate$
|
|
20999
|
+
const referencepath_orderedBy_itemValidationError = validate$1_(obj_orderedBy_item, path_orderedBy_item);
|
|
20986
21000
|
if (referencepath_orderedBy_itemValidationError !== null) {
|
|
20987
21001
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedBy_item + '")\n';
|
|
20988
21002
|
message += referencepath_orderedBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -21078,7 +21092,7 @@ function equals$A(existing, incoming) {
|
|
|
21078
21092
|
}
|
|
21079
21093
|
const ingest$1v = function ListPreferencesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
21080
21094
|
if (process.env.NODE_ENV !== 'production') {
|
|
21081
|
-
const validateError = validate$
|
|
21095
|
+
const validateError = validate$12(input);
|
|
21082
21096
|
if (validateError !== null) {
|
|
21083
21097
|
throw validateError;
|
|
21084
21098
|
}
|
|
@@ -21241,7 +21255,7 @@ const getListPreferencesAdapterFactory = (luvio) => function UiApi__getListPrefe
|
|
|
21241
21255
|
buildCachedSnapshotCachePolicy$s, buildNetworkSnapshotCachePolicy$t);
|
|
21242
21256
|
};
|
|
21243
21257
|
|
|
21244
|
-
function validate$
|
|
21258
|
+
function validate$11(obj, path = 'ListOrderedByInfoInputRepresentation') {
|
|
21245
21259
|
const v_error = (() => {
|
|
21246
21260
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
21247
21261
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -21349,7 +21363,7 @@ function typeCheckConfig$E(untrustedConfig) {
|
|
|
21349
21363
|
const untrustedConfig_orderedBy_array = [];
|
|
21350
21364
|
for (let i = 0, arrayLength = untrustedConfig_orderedBy.length; i < arrayLength; i++) {
|
|
21351
21365
|
const untrustedConfig_orderedBy_item = untrustedConfig_orderedBy[i];
|
|
21352
|
-
const referenceListOrderedByInfoInputRepresentationValidationError = validate$
|
|
21366
|
+
const referenceListOrderedByInfoInputRepresentationValidationError = validate$11(untrustedConfig_orderedBy_item);
|
|
21353
21367
|
if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
|
|
21354
21368
|
untrustedConfig_orderedBy_array.push(untrustedConfig_orderedBy_item);
|
|
21355
21369
|
}
|
|
@@ -21403,7 +21417,7 @@ const updateListPreferencesAdapterFactory = (luvio) => {
|
|
|
21403
21417
|
|
|
21404
21418
|
const TTL$n = 120000;
|
|
21405
21419
|
const VERSION$1J = "756779d0d7e137dd72c743544afbad82";
|
|
21406
|
-
function validate
|
|
21420
|
+
function validate$10(obj, path = 'NavItemsRepresentation') {
|
|
21407
21421
|
const v_error = (() => {
|
|
21408
21422
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
21409
21423
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -21531,7 +21545,7 @@ function equals$z(existing, incoming) {
|
|
|
21531
21545
|
}
|
|
21532
21546
|
const ingest$1u = function NavItemsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
21533
21547
|
if (process.env.NODE_ENV !== 'production') {
|
|
21534
|
-
const validateError = validate
|
|
21548
|
+
const validateError = validate$10(input);
|
|
21535
21549
|
if (validateError !== null) {
|
|
21536
21550
|
throw validateError;
|
|
21537
21551
|
}
|
|
@@ -22267,7 +22281,7 @@ var DiscriminatorValues$4;
|
|
|
22267
22281
|
DiscriminatorValues["OpportunityStage"] = "OpportunityStage";
|
|
22268
22282
|
})(DiscriminatorValues$4 || (DiscriminatorValues$4 = {}));
|
|
22269
22283
|
const VERSION$1E = "bd523b2343366edfc25a2dbee2c4e986";
|
|
22270
|
-
function validate
|
|
22284
|
+
function validate$$(obj, path = 'AbstractPicklistValueAttributesRepresentation') {
|
|
22271
22285
|
const v_error = (() => {
|
|
22272
22286
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22273
22287
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22312,7 +22326,7 @@ const select$1R = function AbstractPicklistValueAttributesRepresentationSelect()
|
|
|
22312
22326
|
};
|
|
22313
22327
|
|
|
22314
22328
|
const VERSION$1D = "9e2a16a80378487f557124c771201cf9";
|
|
22315
|
-
function validate$
|
|
22329
|
+
function validate$_(obj, path = 'PicklistValueRepresentation') {
|
|
22316
22330
|
const v_error = (() => {
|
|
22317
22331
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22318
22332
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22321,7 +22335,7 @@ function validate$Z(obj, path = 'PicklistValueRepresentation') {
|
|
|
22321
22335
|
const path_attributes = path + '.attributes';
|
|
22322
22336
|
let obj_attributes_union0 = null;
|
|
22323
22337
|
const obj_attributes_union0_error = (() => {
|
|
22324
|
-
const referencepath_attributesValidationError = validate
|
|
22338
|
+
const referencepath_attributesValidationError = validate$$(obj_attributes, path_attributes);
|
|
22325
22339
|
if (referencepath_attributesValidationError !== null) {
|
|
22326
22340
|
let message = 'Object doesn\'t match AbstractPicklistValueAttributesRepresentation (at "' + path_attributes + '")\n';
|
|
22327
22341
|
message += referencepath_attributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -22416,7 +22430,7 @@ function PicklistValuesRepresentationKeyBuilderFromType(luvio, object) {
|
|
|
22416
22430
|
|
|
22417
22431
|
const TTL$m = 900000;
|
|
22418
22432
|
const VERSION$1C = "0a361a49370acb4c6a31721a2057649a";
|
|
22419
|
-
function validate$
|
|
22433
|
+
function validate$Z(obj, path = 'PicklistValuesRepresentation') {
|
|
22420
22434
|
const v_error = (() => {
|
|
22421
22435
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22422
22436
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22439,7 +22453,7 @@ function validate$Y(obj, path = 'PicklistValuesRepresentation') {
|
|
|
22439
22453
|
const path_defaultValue = path + '.defaultValue';
|
|
22440
22454
|
let obj_defaultValue_union0 = null;
|
|
22441
22455
|
const obj_defaultValue_union0_error = (() => {
|
|
22442
|
-
const referencepath_defaultValueValidationError = validate$
|
|
22456
|
+
const referencepath_defaultValueValidationError = validate$_(obj_defaultValue, path_defaultValue);
|
|
22443
22457
|
if (referencepath_defaultValueValidationError !== null) {
|
|
22444
22458
|
let message = 'Object doesn\'t match PicklistValueRepresentation (at "' + path_defaultValue + '")\n';
|
|
22445
22459
|
message += referencepath_defaultValueValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -22482,7 +22496,7 @@ function validate$Y(obj, path = 'PicklistValuesRepresentation') {
|
|
|
22482
22496
|
for (let i = 0; i < obj_values.length; i++) {
|
|
22483
22497
|
const obj_values_item = obj_values[i];
|
|
22484
22498
|
const path_values_item = path_values + '[' + i + ']';
|
|
22485
|
-
const referencepath_values_itemValidationError = validate$
|
|
22499
|
+
const referencepath_values_itemValidationError = validate$_(obj_values_item, path_values_item);
|
|
22486
22500
|
if (referencepath_values_itemValidationError !== null) {
|
|
22487
22501
|
let message = 'Object doesn\'t match PicklistValueRepresentation (at "' + path_values_item + '")\n';
|
|
22488
22502
|
message += referencepath_values_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -22540,7 +22554,7 @@ function equals$y(existing, incoming) {
|
|
|
22540
22554
|
}
|
|
22541
22555
|
const ingest$1t = function PicklistValuesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
22542
22556
|
if (process.env.NODE_ENV !== 'production') {
|
|
22543
|
-
const validateError = validate$
|
|
22557
|
+
const validateError = validate$Z(input);
|
|
22544
22558
|
if (validateError !== null) {
|
|
22545
22559
|
throw validateError;
|
|
22546
22560
|
}
|
|
@@ -22562,7 +22576,7 @@ function getTypeCacheKeys$1w(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
22562
22576
|
|
|
22563
22577
|
const TTL$l = 300000;
|
|
22564
22578
|
const VERSION$1B = "ec03b0f6da287c949d1ccaa904ddbfd3";
|
|
22565
|
-
function validate$
|
|
22579
|
+
function validate$Y(obj, path = 'PicklistValuesCollectionRepresentation') {
|
|
22566
22580
|
const v_error = (() => {
|
|
22567
22581
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22568
22582
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22649,7 +22663,7 @@ function equals$x(existing, incoming) {
|
|
|
22649
22663
|
}
|
|
22650
22664
|
const ingest$1s = function PicklistValuesCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
22651
22665
|
if (process.env.NODE_ENV !== 'production') {
|
|
22652
|
-
const validateError = validate$
|
|
22666
|
+
const validateError = validate$Y(input);
|
|
22653
22667
|
if (validateError !== null) {
|
|
22654
22668
|
throw validateError;
|
|
22655
22669
|
}
|
|
@@ -22986,7 +23000,7 @@ const getPicklistValuesAdapterFactory = (luvio) => function UiApi__getPicklistVa
|
|
|
22986
23000
|
buildCachedSnapshotCachePolicy$n, buildNetworkSnapshotCachePolicy$o);
|
|
22987
23001
|
};
|
|
22988
23002
|
|
|
22989
|
-
function validate$
|
|
23003
|
+
function validate$X(obj, path = 'MatchResultInfoRepresentation') {
|
|
22990
23004
|
const v_error = (() => {
|
|
22991
23005
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22992
23006
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23012,7 +23026,7 @@ function validate$W(obj, path = 'MatchResultInfoRepresentation') {
|
|
|
23012
23026
|
return v_error === undefined ? null : v_error;
|
|
23013
23027
|
}
|
|
23014
23028
|
|
|
23015
|
-
function validate$
|
|
23029
|
+
function validate$W(obj, path = 'DuplicateResultInfoRepresentation') {
|
|
23016
23030
|
const v_error = (() => {
|
|
23017
23031
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
23018
23032
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23024,7 +23038,7 @@ function validate$V(obj, path = 'DuplicateResultInfoRepresentation') {
|
|
|
23024
23038
|
}
|
|
23025
23039
|
const obj_matchResultInfo = obj.matchResultInfo;
|
|
23026
23040
|
const path_matchResultInfo = path + '.matchResultInfo';
|
|
23027
|
-
const referencepath_matchResultInfoValidationError = validate$
|
|
23041
|
+
const referencepath_matchResultInfoValidationError = validate$X(obj_matchResultInfo, path_matchResultInfo);
|
|
23028
23042
|
if (referencepath_matchResultInfoValidationError !== null) {
|
|
23029
23043
|
let message = 'Object doesn\'t match MatchResultInfoRepresentation (at "' + path_matchResultInfo + '")\n';
|
|
23030
23044
|
message += referencepath_matchResultInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -23039,7 +23053,7 @@ function validate$V(obj, path = 'DuplicateResultInfoRepresentation') {
|
|
|
23039
23053
|
return v_error === undefined ? null : v_error;
|
|
23040
23054
|
}
|
|
23041
23055
|
|
|
23042
|
-
function validate$
|
|
23056
|
+
function validate$V(obj, path = 'MatchRepresentation') {
|
|
23043
23057
|
const v_error = (() => {
|
|
23044
23058
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
23045
23059
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23054,7 +23068,7 @@ function validate$U(obj, path = 'MatchRepresentation') {
|
|
|
23054
23068
|
const key = obj_duplicateResultInfos_keys[i];
|
|
23055
23069
|
const obj_duplicateResultInfos_prop = obj_duplicateResultInfos[key];
|
|
23056
23070
|
const path_duplicateResultInfos_prop = path_duplicateResultInfos + '["' + key + '"]';
|
|
23057
|
-
const referencepath_duplicateResultInfos_propValidationError = validate$
|
|
23071
|
+
const referencepath_duplicateResultInfos_propValidationError = validate$W(obj_duplicateResultInfos_prop, path_duplicateResultInfos_prop);
|
|
23058
23072
|
if (referencepath_duplicateResultInfos_propValidationError !== null) {
|
|
23059
23073
|
let message = 'Object doesn\'t match DuplicateResultInfoRepresentation (at "' + path_duplicateResultInfos_prop + '")\n';
|
|
23060
23074
|
message += referencepath_duplicateResultInfos_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -23084,7 +23098,7 @@ function validate$U(obj, path = 'MatchRepresentation') {
|
|
|
23084
23098
|
|
|
23085
23099
|
const TTL$k = 30000;
|
|
23086
23100
|
const VERSION$1A = "583c38564fa15ce0fb3dd2807be1bdc6";
|
|
23087
|
-
function validate$
|
|
23101
|
+
function validate$U(obj, path = 'DuplicatesRepresentation') {
|
|
23088
23102
|
const v_error = (() => {
|
|
23089
23103
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
23090
23104
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23119,7 +23133,7 @@ function validate$T(obj, path = 'DuplicatesRepresentation') {
|
|
|
23119
23133
|
for (let i = 0; i < obj_matches.length; i++) {
|
|
23120
23134
|
const obj_matches_item = obj_matches[i];
|
|
23121
23135
|
const path_matches_item = path_matches + '[' + i + ']';
|
|
23122
|
-
const referencepath_matches_itemValidationError = validate$
|
|
23136
|
+
const referencepath_matches_itemValidationError = validate$V(obj_matches_item, path_matches_item);
|
|
23123
23137
|
if (referencepath_matches_itemValidationError !== null) {
|
|
23124
23138
|
let message = 'Object doesn\'t match MatchRepresentation (at "' + path_matches_item + '")\n';
|
|
23125
23139
|
message += referencepath_matches_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -23149,7 +23163,7 @@ function equals$w(existing, incoming) {
|
|
|
23149
23163
|
}
|
|
23150
23164
|
const ingest$1r = function DuplicatesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
23151
23165
|
if (process.env.NODE_ENV !== 'production') {
|
|
23152
|
-
const validateError = validate$
|
|
23166
|
+
const validateError = validate$U(input);
|
|
23153
23167
|
if (validateError !== null) {
|
|
23154
23168
|
throw validateError;
|
|
23155
23169
|
}
|
|
@@ -23342,7 +23356,7 @@ const getDuplicatesAdapterFactory = (luvio) => function UiApi__getDuplicates(unt
|
|
|
23342
23356
|
};
|
|
23343
23357
|
|
|
23344
23358
|
const VERSION$1z = "e84b9ffdeff97c411bd111f2a55cf6b6";
|
|
23345
|
-
function validate$
|
|
23359
|
+
function validate$T(obj, path = 'PhotoMetadataRepresentation') {
|
|
23346
23360
|
const v_error = (() => {
|
|
23347
23361
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
23348
23362
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23434,8 +23448,8 @@ function equals$v(existing, incoming) {
|
|
|
23434
23448
|
}
|
|
23435
23449
|
|
|
23436
23450
|
const VERSION$1y = "34ffbf4219dfebb707bff609c2d5bf89";
|
|
23437
|
-
function validate$
|
|
23438
|
-
const validateAbstractRecordAvatarRepresentation_validateError = validate$
|
|
23451
|
+
function validate$S(obj, path = 'PhotoRecordAvatarRepresentation') {
|
|
23452
|
+
const validateAbstractRecordAvatarRepresentation_validateError = validate$Q(obj, path);
|
|
23439
23453
|
if (validateAbstractRecordAvatarRepresentation_validateError !== null) {
|
|
23440
23454
|
return validateAbstractRecordAvatarRepresentation_validateError;
|
|
23441
23455
|
}
|
|
@@ -23502,7 +23516,7 @@ function validate$R(obj, path = 'PhotoRecordAvatarRepresentation') {
|
|
|
23502
23516
|
}
|
|
23503
23517
|
const obj_photoMetadata = obj.photoMetadata;
|
|
23504
23518
|
const path_photoMetadata = path + '.photoMetadata';
|
|
23505
|
-
const referencepath_photoMetadataValidationError = validate$
|
|
23519
|
+
const referencepath_photoMetadataValidationError = validate$T(obj_photoMetadata, path_photoMetadata);
|
|
23506
23520
|
if (referencepath_photoMetadataValidationError !== null) {
|
|
23507
23521
|
let message = 'Object doesn\'t match PhotoMetadataRepresentation (at "' + path_photoMetadata + '")\n';
|
|
23508
23522
|
message += referencepath_photoMetadataValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -23657,7 +23671,7 @@ function equals$u(existing, incoming) {
|
|
|
23657
23671
|
}
|
|
23658
23672
|
const ingest$1q = function PhotoRecordAvatarRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
23659
23673
|
if (process.env.NODE_ENV !== 'production') {
|
|
23660
|
-
const validateError = validate$
|
|
23674
|
+
const validateError = validate$S(input);
|
|
23661
23675
|
if (validateError !== null) {
|
|
23662
23676
|
throw validateError;
|
|
23663
23677
|
}
|
|
@@ -23678,8 +23692,8 @@ function getTypeCacheKeys$1t(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
23678
23692
|
}
|
|
23679
23693
|
|
|
23680
23694
|
const VERSION$1x = "cbdcf69a6568d41ccf155b2b95ec70e7";
|
|
23681
|
-
function validate$
|
|
23682
|
-
const validateAbstractRecordAvatarRepresentation_validateError = validate$
|
|
23695
|
+
function validate$R(obj, path = 'ThemeRecordAvatarRepresentation') {
|
|
23696
|
+
const validateAbstractRecordAvatarRepresentation_validateError = validate$Q(obj, path);
|
|
23683
23697
|
if (validateAbstractRecordAvatarRepresentation_validateError !== null) {
|
|
23684
23698
|
return validateAbstractRecordAvatarRepresentation_validateError;
|
|
23685
23699
|
}
|
|
@@ -23798,7 +23812,7 @@ function equals$t(existing, incoming) {
|
|
|
23798
23812
|
}
|
|
23799
23813
|
const ingest$1p = function ThemeRecordAvatarRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
23800
23814
|
if (process.env.NODE_ENV !== 'production') {
|
|
23801
|
-
const validateError = validate$
|
|
23815
|
+
const validateError = validate$R(input);
|
|
23802
23816
|
if (validateError !== null) {
|
|
23803
23817
|
throw validateError;
|
|
23804
23818
|
}
|
|
@@ -23824,7 +23838,7 @@ var DiscriminatorValues$3;
|
|
|
23824
23838
|
DiscriminatorValues["Theme"] = "Theme";
|
|
23825
23839
|
})(DiscriminatorValues$3 || (DiscriminatorValues$3 = {}));
|
|
23826
23840
|
const VERSION$1w = "bc05f8d1c708b6c41c9bf2fe6001aff0";
|
|
23827
|
-
function validate$
|
|
23841
|
+
function validate$Q(obj, path = 'AbstractRecordAvatarRepresentation') {
|
|
23828
23842
|
const v_error = (() => {
|
|
23829
23843
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
23830
23844
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23917,8 +23931,8 @@ function getTypeCacheKeys$1r(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
23917
23931
|
}
|
|
23918
23932
|
|
|
23919
23933
|
const VERSION$1v = "f531b44760afecfce89990fe5a5c5c29";
|
|
23920
|
-
function validate$
|
|
23921
|
-
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$
|
|
23934
|
+
function validate$P(obj, path = 'RecordAvatarBatchRepresentation') {
|
|
23935
|
+
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$L(obj, path);
|
|
23922
23936
|
if (validateAbstractRecordAvatarBatchRepresentation_validateError !== null) {
|
|
23923
23937
|
return validateAbstractRecordAvatarBatchRepresentation_validateError;
|
|
23924
23938
|
}
|
|
@@ -23979,7 +23993,7 @@ function equals$r(existing, incoming) {
|
|
|
23979
23993
|
}
|
|
23980
23994
|
const ingest$1o = function RecordAvatarBatchRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
23981
23995
|
if (process.env.NODE_ENV !== 'production') {
|
|
23982
|
-
const validateError = validate$
|
|
23996
|
+
const validateError = validate$P(input);
|
|
23983
23997
|
if (validateError !== null) {
|
|
23984
23998
|
throw validateError;
|
|
23985
23999
|
}
|
|
@@ -24000,7 +24014,7 @@ function getTypeCacheKeys$1q(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
24000
24014
|
}
|
|
24001
24015
|
|
|
24002
24016
|
const VERSION$1u = "17c20b01167dba9a81452e60bb28b2f2";
|
|
24003
|
-
function validate$
|
|
24017
|
+
function validate$O(obj, path = 'ErrorSingleRecordAvatarRepresentation') {
|
|
24004
24018
|
const v_error = (() => {
|
|
24005
24019
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
24006
24020
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -24050,8 +24064,8 @@ function equals$q(existing, incoming) {
|
|
|
24050
24064
|
}
|
|
24051
24065
|
|
|
24052
24066
|
const VERSION$1t = "e7fac2bfb5cdacc5e0f15c350f9ab8fe";
|
|
24053
|
-
function validate$
|
|
24054
|
-
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$
|
|
24067
|
+
function validate$N(obj, path = 'ErrorBadRequestRecordAvatarBatchRepresentation') {
|
|
24068
|
+
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$L(obj, path);
|
|
24055
24069
|
if (validateAbstractRecordAvatarBatchRepresentation_validateError !== null) {
|
|
24056
24070
|
return validateAbstractRecordAvatarBatchRepresentation_validateError;
|
|
24057
24071
|
}
|
|
@@ -24067,7 +24081,7 @@ function validate$M(obj, path = 'ErrorBadRequestRecordAvatarBatchRepresentation'
|
|
|
24067
24081
|
for (let i = 0; i < obj_result.length; i++) {
|
|
24068
24082
|
const obj_result_item = obj_result[i];
|
|
24069
24083
|
const path_result_item = path_result + '[' + i + ']';
|
|
24070
|
-
const referencepath_result_itemValidationError = validate$
|
|
24084
|
+
const referencepath_result_itemValidationError = validate$O(obj_result_item, path_result_item);
|
|
24071
24085
|
if (referencepath_result_itemValidationError !== null) {
|
|
24072
24086
|
let message = 'Object doesn\'t match ErrorSingleRecordAvatarRepresentation (at "' + path_result_item + '")\n';
|
|
24073
24087
|
message += referencepath_result_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -24117,7 +24131,7 @@ function equals$p(existing, incoming) {
|
|
|
24117
24131
|
}
|
|
24118
24132
|
const ingest$1n = function ErrorBadRequestRecordAvatarBatchRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
24119
24133
|
if (process.env.NODE_ENV !== 'production') {
|
|
24120
|
-
const validateError = validate$
|
|
24134
|
+
const validateError = validate$N(input);
|
|
24121
24135
|
if (validateError !== null) {
|
|
24122
24136
|
throw validateError;
|
|
24123
24137
|
}
|
|
@@ -24138,8 +24152,8 @@ function getTypeCacheKeys$1p(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
24138
24152
|
}
|
|
24139
24153
|
|
|
24140
24154
|
const VERSION$1s = "cbd48fd50d0db463fdff7b1834c22bed";
|
|
24141
|
-
function validate$
|
|
24142
|
-
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$
|
|
24155
|
+
function validate$M(obj, path = 'ErrorRecordAvatarBatchRepresentation') {
|
|
24156
|
+
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$L(obj, path);
|
|
24143
24157
|
if (validateAbstractRecordAvatarBatchRepresentation_validateError !== null) {
|
|
24144
24158
|
return validateAbstractRecordAvatarBatchRepresentation_validateError;
|
|
24145
24159
|
}
|
|
@@ -24155,7 +24169,7 @@ function validate$L(obj, path = 'ErrorRecordAvatarBatchRepresentation') {
|
|
|
24155
24169
|
for (let i = 0; i < obj_result.length; i++) {
|
|
24156
24170
|
const obj_result_item = obj_result[i];
|
|
24157
24171
|
const path_result_item = path_result + '[' + i + ']';
|
|
24158
|
-
const referencepath_result_itemValidationError = validate$
|
|
24172
|
+
const referencepath_result_itemValidationError = validate$O(obj_result_item, path_result_item);
|
|
24159
24173
|
if (referencepath_result_itemValidationError !== null) {
|
|
24160
24174
|
let message = 'Object doesn\'t match ErrorSingleRecordAvatarRepresentation (at "' + path_result_item + '")\n';
|
|
24161
24175
|
message += referencepath_result_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -24205,7 +24219,7 @@ function equals$o(existing, incoming) {
|
|
|
24205
24219
|
}
|
|
24206
24220
|
const ingest$1m = function ErrorRecordAvatarBatchRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
24207
24221
|
if (process.env.NODE_ENV !== 'production') {
|
|
24208
|
-
const validateError = validate$
|
|
24222
|
+
const validateError = validate$M(input);
|
|
24209
24223
|
if (validateError !== null) {
|
|
24210
24224
|
throw validateError;
|
|
24211
24225
|
}
|
|
@@ -24232,7 +24246,7 @@ const DiscriminatorValues$2 = {
|
|
|
24232
24246
|
};
|
|
24233
24247
|
const TTL$j = 300000;
|
|
24234
24248
|
const VERSION$1r = "8956293536e94d5ec63b274b61033d2c";
|
|
24235
|
-
function validate$
|
|
24249
|
+
function validate$L(obj, path = 'AbstractRecordAvatarBatchRepresentation') {
|
|
24236
24250
|
const v_error = (() => {
|
|
24237
24251
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
24238
24252
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -24310,7 +24324,7 @@ function getTypeCacheKeys$1n(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
24310
24324
|
|
|
24311
24325
|
const TTL$i = 300000;
|
|
24312
24326
|
const VERSION$1q = "c44c049fa6ad7cf7e932c0aab9107d86";
|
|
24313
|
-
function validate$
|
|
24327
|
+
function validate$K(obj, path = 'RecordAvatarBulkMapRepresentation') {
|
|
24314
24328
|
const v_error = (() => {
|
|
24315
24329
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
24316
24330
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -24389,7 +24403,7 @@ function merge(existing, incoming, _luvio, _path) {
|
|
|
24389
24403
|
|
|
24390
24404
|
const ingest$1l = function RecordAvatarBulkMapRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
24391
24405
|
if (process.env.NODE_ENV !== 'production') {
|
|
24392
|
-
const validateError = validate$
|
|
24406
|
+
const validateError = validate$K(input);
|
|
24393
24407
|
if (validateError !== null) {
|
|
24394
24408
|
throw validateError;
|
|
24395
24409
|
}
|
|
@@ -24880,7 +24894,7 @@ const getRecordsAdapterFactory = (luvio) => function UiApi__getRecords(untrusted
|
|
|
24880
24894
|
};
|
|
24881
24895
|
|
|
24882
24896
|
const VERSION$1p = "4d4bdab5d0aa61e365e766409c9b3a31";
|
|
24883
|
-
function validate$
|
|
24897
|
+
function validate$J(obj, path = 'RelatedListReferenceRepresentation') {
|
|
24884
24898
|
const v_error = (() => {
|
|
24885
24899
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
24886
24900
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -25119,7 +25133,7 @@ function equals$l(existing, incoming) {
|
|
|
25119
25133
|
}
|
|
25120
25134
|
|
|
25121
25135
|
const VERSION$1o = "836b875b519813e7499efc62f0f1d04b";
|
|
25122
|
-
function validate$
|
|
25136
|
+
function validate$I(obj, path = 'RelatedListRecordCountRepresentation') {
|
|
25123
25137
|
const v_error = (() => {
|
|
25124
25138
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
25125
25139
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -25162,7 +25176,7 @@ function validate$H(obj, path = 'RelatedListRecordCountRepresentation') {
|
|
|
25162
25176
|
}
|
|
25163
25177
|
const obj_listReference = obj.listReference;
|
|
25164
25178
|
const path_listReference = path + '.listReference';
|
|
25165
|
-
const referencepath_listReferenceValidationError = validate$
|
|
25179
|
+
const referencepath_listReferenceValidationError = validate$J(obj_listReference, path_listReference);
|
|
25166
25180
|
if (referencepath_listReferenceValidationError !== null) {
|
|
25167
25181
|
let message = 'Object doesn\'t match RelatedListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
25168
25182
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -25235,7 +25249,7 @@ function equals$k(existing, incoming) {
|
|
|
25235
25249
|
}
|
|
25236
25250
|
const ingest$1k = function RelatedListRecordCountRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
25237
25251
|
if (process.env.NODE_ENV !== 'production') {
|
|
25238
|
-
const validateError = validate$
|
|
25252
|
+
const validateError = validate$I(input);
|
|
25239
25253
|
if (validateError !== null) {
|
|
25240
25254
|
throw validateError;
|
|
25241
25255
|
}
|
|
@@ -25747,7 +25761,7 @@ const getRelatedListCountAdapterFactory = (luvio) => function UiApi__getRelatedL
|
|
|
25747
25761
|
buildCachedSnapshotCachePolicy$i, buildNetworkSnapshotCachePolicy$j);
|
|
25748
25762
|
};
|
|
25749
25763
|
|
|
25750
|
-
function validate$
|
|
25764
|
+
function validate$H(obj, path = 'RelatedListColumnRepresentation') {
|
|
25751
25765
|
const v_error = (() => {
|
|
25752
25766
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
25753
25767
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -25898,7 +25912,7 @@ function validate$G(obj, path = 'RelatedListColumnRepresentation') {
|
|
|
25898
25912
|
|
|
25899
25913
|
const TTL$h = 900000;
|
|
25900
25914
|
const VERSION$1n = "c977d65d153a2b4e888ddd45fb083248";
|
|
25901
|
-
function validate$
|
|
25915
|
+
function validate$G(obj, path = 'RelatedListInfoRepresentation') {
|
|
25902
25916
|
const v_error = (() => {
|
|
25903
25917
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
25904
25918
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -25926,7 +25940,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
25926
25940
|
for (let i = 0; i < obj_displayColumns.length; i++) {
|
|
25927
25941
|
const obj_displayColumns_item = obj_displayColumns[i];
|
|
25928
25942
|
const path_displayColumns_item = path_displayColumns + '[' + i + ']';
|
|
25929
|
-
const referencepath_displayColumns_itemValidationError = validate$
|
|
25943
|
+
const referencepath_displayColumns_itemValidationError = validate$H(obj_displayColumns_item, path_displayColumns_item);
|
|
25930
25944
|
if (referencepath_displayColumns_itemValidationError !== null) {
|
|
25931
25945
|
let message = 'Object doesn\'t match RelatedListColumnRepresentation (at "' + path_displayColumns_item + '")\n';
|
|
25932
25946
|
message += referencepath_displayColumns_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -25973,7 +25987,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
25973
25987
|
for (let i = 0; i < obj_filteredByInfo.length; i++) {
|
|
25974
25988
|
const obj_filteredByInfo_item = obj_filteredByInfo[i];
|
|
25975
25989
|
const path_filteredByInfo_item = path_filteredByInfo + '[' + i + ']';
|
|
25976
|
-
const referencepath_filteredByInfo_itemValidationError = validate$
|
|
25990
|
+
const referencepath_filteredByInfo_itemValidationError = validate$23(obj_filteredByInfo_item, path_filteredByInfo_item);
|
|
25977
25991
|
if (referencepath_filteredByInfo_itemValidationError !== null) {
|
|
25978
25992
|
let message = 'Object doesn\'t match ListFilterByInfoRepresentation (at "' + path_filteredByInfo_item + '")\n';
|
|
25979
25993
|
message += referencepath_filteredByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -25987,7 +26001,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
25987
26001
|
}
|
|
25988
26002
|
const obj_listReference = obj.listReference;
|
|
25989
26003
|
const path_listReference = path + '.listReference';
|
|
25990
|
-
const referencepath_listReferenceValidationError = validate$
|
|
26004
|
+
const referencepath_listReferenceValidationError = validate$J(obj_listReference, path_listReference);
|
|
25991
26005
|
if (referencepath_listReferenceValidationError !== null) {
|
|
25992
26006
|
let message = 'Object doesn\'t match RelatedListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
25993
26007
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -26025,7 +26039,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
26025
26039
|
for (let i = 0; i < obj_orderedByInfo.length; i++) {
|
|
26026
26040
|
const obj_orderedByInfo_item = obj_orderedByInfo[i];
|
|
26027
26041
|
const path_orderedByInfo_item = path_orderedByInfo + '[' + i + ']';
|
|
26028
|
-
const referencepath_orderedByInfo_itemValidationError = validate$
|
|
26042
|
+
const referencepath_orderedByInfo_itemValidationError = validate$1_(obj_orderedByInfo_item, path_orderedByInfo_item);
|
|
26029
26043
|
if (referencepath_orderedByInfo_itemValidationError !== null) {
|
|
26030
26044
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedByInfo_item + '")\n';
|
|
26031
26045
|
message += referencepath_orderedByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -26044,7 +26058,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
26044
26058
|
}
|
|
26045
26059
|
const obj_userPreferences = obj.userPreferences;
|
|
26046
26060
|
const path_userPreferences = path + '.userPreferences';
|
|
26047
|
-
const referencepath_userPreferencesValidationError = validate$
|
|
26061
|
+
const referencepath_userPreferencesValidationError = validate$1W(obj_userPreferences, path_userPreferences);
|
|
26048
26062
|
if (referencepath_userPreferencesValidationError !== null) {
|
|
26049
26063
|
let message = 'Object doesn\'t match ListUserPreferenceRepresentation (at "' + path_userPreferences + '")\n';
|
|
26050
26064
|
message += referencepath_userPreferencesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -26184,7 +26198,7 @@ function equals$j(existing, incoming) {
|
|
|
26184
26198
|
}
|
|
26185
26199
|
const ingest$1j = function RelatedListInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
26186
26200
|
if (process.env.NODE_ENV !== 'production') {
|
|
26187
|
-
const validateError = validate$
|
|
26201
|
+
const validateError = validate$G(input);
|
|
26188
26202
|
if (validateError !== null) {
|
|
26189
26203
|
throw validateError;
|
|
26190
26204
|
}
|
|
@@ -26622,7 +26636,7 @@ const getRelatedListInfoBatchAdapterFactory = (luvio) => function UiApi__getRela
|
|
|
26622
26636
|
buildCachedSnapshotCachePolicy$h, buildNetworkSnapshotCachePolicy$i);
|
|
26623
26637
|
};
|
|
26624
26638
|
|
|
26625
|
-
function validate$
|
|
26639
|
+
function validate$F(obj, path = 'RelatedListSummaryInfoRepresentation') {
|
|
26626
26640
|
const v_error = (() => {
|
|
26627
26641
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
26628
26642
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -26718,7 +26732,7 @@ function validate$E(obj, path = 'RelatedListSummaryInfoRepresentation') {
|
|
|
26718
26732
|
const path_themeInfo = path + '.themeInfo';
|
|
26719
26733
|
let obj_themeInfo_union0 = null;
|
|
26720
26734
|
const obj_themeInfo_union0_error = (() => {
|
|
26721
|
-
const referencepath_themeInfoValidationError = validate$
|
|
26735
|
+
const referencepath_themeInfoValidationError = validate$1F(obj_themeInfo, path_themeInfo);
|
|
26722
26736
|
if (referencepath_themeInfoValidationError !== null) {
|
|
26723
26737
|
let message = 'Object doesn\'t match ThemeInfoRepresentation (at "' + path_themeInfo + '")\n';
|
|
26724
26738
|
message += referencepath_themeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -26753,7 +26767,7 @@ function validate$E(obj, path = 'RelatedListSummaryInfoRepresentation') {
|
|
|
26753
26767
|
}
|
|
26754
26768
|
|
|
26755
26769
|
const VERSION$1m = "2a1722afba0e1ee52d6b7b0a25ccd9f4";
|
|
26756
|
-
function validate$
|
|
26770
|
+
function validate$E(obj, path = 'RelatedListSummaryInfoCollectionRepresentation') {
|
|
26757
26771
|
const v_error = (() => {
|
|
26758
26772
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
26759
26773
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -26802,7 +26816,7 @@ function validate$D(obj, path = 'RelatedListSummaryInfoCollectionRepresentation'
|
|
|
26802
26816
|
for (let i = 0; i < obj_relatedLists.length; i++) {
|
|
26803
26817
|
const obj_relatedLists_item = obj_relatedLists[i];
|
|
26804
26818
|
const path_relatedLists_item = path_relatedLists + '[' + i + ']';
|
|
26805
|
-
const referencepath_relatedLists_itemValidationError = validate$
|
|
26819
|
+
const referencepath_relatedLists_itemValidationError = validate$F(obj_relatedLists_item, path_relatedLists_item);
|
|
26806
26820
|
if (referencepath_relatedLists_itemValidationError !== null) {
|
|
26807
26821
|
let message = 'Object doesn\'t match RelatedListSummaryInfoRepresentation (at "' + path_relatedLists_item + '")\n';
|
|
26808
26822
|
message += referencepath_relatedLists_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -26858,7 +26872,7 @@ function equals$i(existing, incoming) {
|
|
|
26858
26872
|
}
|
|
26859
26873
|
const ingest$1i = function RelatedListSummaryInfoCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
26860
26874
|
if (process.env.NODE_ENV !== 'production') {
|
|
26861
|
-
const validateError = validate$
|
|
26875
|
+
const validateError = validate$E(input);
|
|
26862
26876
|
if (validateError !== null) {
|
|
26863
26877
|
throw validateError;
|
|
26864
26878
|
}
|
|
@@ -27107,7 +27121,7 @@ const getRelatedListInfoAdapterFactory = (luvio) => function UiApi__getRelatedLi
|
|
|
27107
27121
|
buildCachedSnapshotCachePolicy$f, buildNetworkSnapshotCachePolicy$g);
|
|
27108
27122
|
};
|
|
27109
27123
|
|
|
27110
|
-
function validate$
|
|
27124
|
+
function validate$D(obj, path = 'ListUserPreferenceInputRepresentation') {
|
|
27111
27125
|
const v_error = (() => {
|
|
27112
27126
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
27113
27127
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -27189,7 +27203,7 @@ function typeCheckConfig$q(untrustedConfig) {
|
|
|
27189
27203
|
const untrustedConfig_orderedByInfo_array = [];
|
|
27190
27204
|
for (let i = 0, arrayLength = untrustedConfig_orderedByInfo.length; i < arrayLength; i++) {
|
|
27191
27205
|
const untrustedConfig_orderedByInfo_item = untrustedConfig_orderedByInfo[i];
|
|
27192
|
-
const referenceListOrderedByInfoInputRepresentationValidationError = validate$
|
|
27206
|
+
const referenceListOrderedByInfoInputRepresentationValidationError = validate$11(untrustedConfig_orderedByInfo_item);
|
|
27193
27207
|
if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
|
|
27194
27208
|
untrustedConfig_orderedByInfo_array.push(untrustedConfig_orderedByInfo_item);
|
|
27195
27209
|
}
|
|
@@ -27197,7 +27211,7 @@ function typeCheckConfig$q(untrustedConfig) {
|
|
|
27197
27211
|
config.orderedByInfo = untrustedConfig_orderedByInfo_array;
|
|
27198
27212
|
}
|
|
27199
27213
|
const untrustedConfig_userPreferences = untrustedConfig.userPreferences;
|
|
27200
|
-
const referenceListUserPreferenceInputRepresentationValidationError = validate$
|
|
27214
|
+
const referenceListUserPreferenceInputRepresentationValidationError = validate$D(untrustedConfig_userPreferences);
|
|
27201
27215
|
if (referenceListUserPreferenceInputRepresentationValidationError === null) {
|
|
27202
27216
|
config.userPreferences = untrustedConfig_userPreferences;
|
|
27203
27217
|
}
|
|
@@ -27262,7 +27276,7 @@ const updateRelatedListInfoAdapterFactory = (luvio) => {
|
|
|
27262
27276
|
|
|
27263
27277
|
const TTL$g = 900000;
|
|
27264
27278
|
const VERSION$1l = "094cdf8e3e1f07fca02c4e51e14c528e";
|
|
27265
|
-
function validate$
|
|
27279
|
+
function validate$C(obj, path = 'RelatedListUserPreferencesRepresentation') {
|
|
27266
27280
|
const v_error = (() => {
|
|
27267
27281
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
27268
27282
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -27303,7 +27317,7 @@ function validate$B(obj, path = 'RelatedListUserPreferencesRepresentation') {
|
|
|
27303
27317
|
for (let i = 0; i < obj_orderedBy.length; i++) {
|
|
27304
27318
|
const obj_orderedBy_item = obj_orderedBy[i];
|
|
27305
27319
|
const path_orderedBy_item = path_orderedBy + '[' + i + ']';
|
|
27306
|
-
const referencepath_orderedBy_itemValidationError = validate$
|
|
27320
|
+
const referencepath_orderedBy_itemValidationError = validate$1_(obj_orderedBy_item, path_orderedBy_item);
|
|
27307
27321
|
if (referencepath_orderedBy_itemValidationError !== null) {
|
|
27308
27322
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedBy_item + '")\n';
|
|
27309
27323
|
message += referencepath_orderedBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -27347,7 +27361,7 @@ function equals$h(existing, incoming) {
|
|
|
27347
27361
|
}
|
|
27348
27362
|
const ingest$1h = function RelatedListUserPreferencesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
27349
27363
|
if (process.env.NODE_ENV !== 'production') {
|
|
27350
|
-
const validateError = validate$
|
|
27364
|
+
const validateError = validate$C(input);
|
|
27351
27365
|
if (validateError !== null) {
|
|
27352
27366
|
throw validateError;
|
|
27353
27367
|
}
|
|
@@ -27943,7 +27957,7 @@ function typeCheckConfig$n(untrustedConfig) {
|
|
|
27943
27957
|
const untrustedConfig_orderedBy_array = [];
|
|
27944
27958
|
for (let i = 0, arrayLength = untrustedConfig_orderedBy.length; i < arrayLength; i++) {
|
|
27945
27959
|
const untrustedConfig_orderedBy_item = untrustedConfig_orderedBy[i];
|
|
27946
|
-
const referenceListOrderedByInfoInputRepresentationValidationError = validate$
|
|
27960
|
+
const referenceListOrderedByInfoInputRepresentationValidationError = validate$11(untrustedConfig_orderedBy_item);
|
|
27947
27961
|
if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
|
|
27948
27962
|
untrustedConfig_orderedBy_array.push(untrustedConfig_orderedBy_item);
|
|
27949
27963
|
}
|
|
@@ -27994,7 +28008,7 @@ const updateRelatedListPreferencesAdapterFactory = (luvio) => {
|
|
|
27994
28008
|
};
|
|
27995
28009
|
};
|
|
27996
28010
|
|
|
27997
|
-
function validate$
|
|
28011
|
+
function validate$B(obj, path = 'RelatedListRecordsSingleBatchInputRepresentation') {
|
|
27998
28012
|
const v_error = (() => {
|
|
27999
28013
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
28000
28014
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -28237,7 +28251,7 @@ function equalsMetadata(existingMetadata, incomingMetadata) {
|
|
|
28237
28251
|
|
|
28238
28252
|
const TTL$f = 30000;
|
|
28239
28253
|
const VERSION$1k = "62467c27c19349b70c9db2a8d9d591d9";
|
|
28240
|
-
function validate$
|
|
28254
|
+
function validate$A(obj, path = 'RelatedListRecordCollectionRepresentation') {
|
|
28241
28255
|
const v_error = (() => {
|
|
28242
28256
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
28243
28257
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -28318,7 +28332,7 @@ function validate$z(obj, path = 'RelatedListRecordCollectionRepresentation') {
|
|
|
28318
28332
|
}
|
|
28319
28333
|
const obj_listReference = obj.listReference;
|
|
28320
28334
|
const path_listReference = path + '.listReference';
|
|
28321
|
-
const referencepath_listReferenceValidationError = validate$
|
|
28335
|
+
const referencepath_listReferenceValidationError = validate$J(obj_listReference, path_listReference);
|
|
28322
28336
|
if (referencepath_listReferenceValidationError !== null) {
|
|
28323
28337
|
let message = 'Object doesn\'t match RelatedListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
28324
28338
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -28739,7 +28753,7 @@ function equals$g(existing, incoming) {
|
|
|
28739
28753
|
}
|
|
28740
28754
|
const ingest$1g = function RelatedListRecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
28741
28755
|
if (process.env.NODE_ENV !== 'production') {
|
|
28742
|
-
const validateError = validate$
|
|
28756
|
+
const validateError = validate$A(input);
|
|
28743
28757
|
if (validateError !== null) {
|
|
28744
28758
|
throw validateError;
|
|
28745
28759
|
}
|
|
@@ -28815,6 +28829,7 @@ const ingest$1g = function RelatedListRecordCollectionRepresentationIngest(input
|
|
|
28815
28829
|
namespace: "UiApi",
|
|
28816
28830
|
version: VERSION$1k,
|
|
28817
28831
|
representationName: RepresentationType$i,
|
|
28832
|
+
ingestionTimestamp: timestamp,
|
|
28818
28833
|
};
|
|
28819
28834
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
28820
28835
|
}
|
|
@@ -29230,7 +29245,7 @@ function typeCheckConfig$m(untrustedConfig) {
|
|
|
29230
29245
|
const untrustedConfig_relatedListParameters_array = [];
|
|
29231
29246
|
for (let i = 0, arrayLength = untrustedConfig_relatedListParameters.length; i < arrayLength; i++) {
|
|
29232
29247
|
const untrustedConfig_relatedListParameters_item = untrustedConfig_relatedListParameters[i];
|
|
29233
|
-
const referenceRelatedListRecordsSingleBatchInputRepresentationValidationError = validate$
|
|
29248
|
+
const referenceRelatedListRecordsSingleBatchInputRepresentationValidationError = validate$B(untrustedConfig_relatedListParameters_item);
|
|
29234
29249
|
if (referenceRelatedListRecordsSingleBatchInputRepresentationValidationError === null) {
|
|
29235
29250
|
untrustedConfig_relatedListParameters_array.push(untrustedConfig_relatedListParameters_item);
|
|
29236
29251
|
}
|
|
@@ -29475,7 +29490,7 @@ const getRelatedListRecordsAdapterFactory = (luvio) => function UiApi__getRelate
|
|
|
29475
29490
|
buildCachedSnapshotCachePolicy$b, buildNetworkSnapshotCachePolicy$c);
|
|
29476
29491
|
};
|
|
29477
29492
|
|
|
29478
|
-
function validate$
|
|
29493
|
+
function validate$z(obj, path = 'SearchFilterOptionRepresentation') {
|
|
29479
29494
|
const v_error = (() => {
|
|
29480
29495
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29481
29496
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29505,7 +29520,7 @@ var DiscriminatorValues;
|
|
|
29505
29520
|
DiscriminatorValues["Field"] = "Field";
|
|
29506
29521
|
DiscriminatorValues["DataCategory"] = "DataCategory";
|
|
29507
29522
|
})(DiscriminatorValues || (DiscriminatorValues = {}));
|
|
29508
|
-
function validate$
|
|
29523
|
+
function validate$y(obj, path = 'SearchFilterDefinitionRepresentation') {
|
|
29509
29524
|
const v_error = (() => {
|
|
29510
29525
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29511
29526
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29566,7 +29581,7 @@ function validate$x(obj, path = 'SearchFilterDefinitionRepresentation') {
|
|
|
29566
29581
|
|
|
29567
29582
|
const TTL$e = 30000;
|
|
29568
29583
|
const VERSION$1j = "7d241c2ee7cc9b09d6bd434b33b0b5e4";
|
|
29569
|
-
function validate$
|
|
29584
|
+
function validate$x(obj, path = 'SearchFilterMetadataCollectionRepresentation') {
|
|
29570
29585
|
const v_error = (() => {
|
|
29571
29586
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29572
29587
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29605,7 +29620,7 @@ function validate$w(obj, path = 'SearchFilterMetadataCollectionRepresentation')
|
|
|
29605
29620
|
for (let i = 0; i < obj_filters.length; i++) {
|
|
29606
29621
|
const obj_filters_item = obj_filters[i];
|
|
29607
29622
|
const path_filters_item = path_filters + '[' + i + ']';
|
|
29608
|
-
const referencepath_filters_itemValidationError = validate$
|
|
29623
|
+
const referencepath_filters_itemValidationError = validate$y(obj_filters_item, path_filters_item);
|
|
29609
29624
|
if (referencepath_filters_itemValidationError !== null) {
|
|
29610
29625
|
let message = 'Object doesn\'t match SearchFilterDefinitionRepresentation (at "' + path_filters_item + '")\n';
|
|
29611
29626
|
message += referencepath_filters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -29650,7 +29665,7 @@ function equals$f(existing, incoming) {
|
|
|
29650
29665
|
}
|
|
29651
29666
|
const ingest$1f = function SearchFilterMetadataCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
29652
29667
|
if (process.env.NODE_ENV !== 'production') {
|
|
29653
|
-
const validateError = validate$
|
|
29668
|
+
const validateError = validate$x(input);
|
|
29654
29669
|
if (validateError !== null) {
|
|
29655
29670
|
throw validateError;
|
|
29656
29671
|
}
|
|
@@ -29814,7 +29829,7 @@ const getSearchFilterMetadataAdapterFactory = (luvio) => function UiApi__getSear
|
|
|
29814
29829
|
|
|
29815
29830
|
const TTL$d = 30000;
|
|
29816
29831
|
const VERSION$1i = "8d851a8d9abf0a061a8ad81d4cbb83bc";
|
|
29817
|
-
function validate$
|
|
29832
|
+
function validate$w(obj, path = 'SearchFilterOptionCollectionRepresentation') {
|
|
29818
29833
|
const v_error = (() => {
|
|
29819
29834
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29820
29835
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29837,7 +29852,7 @@ function validate$v(obj, path = 'SearchFilterOptionCollectionRepresentation') {
|
|
|
29837
29852
|
for (let i = 0; i < obj_options.length; i++) {
|
|
29838
29853
|
const obj_options_item = obj_options[i];
|
|
29839
29854
|
const path_options_item = path_options + '[' + i + ']';
|
|
29840
|
-
const referencepath_options_itemValidationError = validate$
|
|
29855
|
+
const referencepath_options_itemValidationError = validate$z(obj_options_item, path_options_item);
|
|
29841
29856
|
if (referencepath_options_itemValidationError !== null) {
|
|
29842
29857
|
let message = 'Object doesn\'t match SearchFilterOptionRepresentation (at "' + path_options_item + '")\n';
|
|
29843
29858
|
message += referencepath_options_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -29904,7 +29919,7 @@ function equals$e(existing, incoming) {
|
|
|
29904
29919
|
}
|
|
29905
29920
|
const ingest$1e = function SearchFilterOptionCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
29906
29921
|
if (process.env.NODE_ENV !== 'production') {
|
|
29907
|
-
const validateError = validate$
|
|
29922
|
+
const validateError = validate$w(input);
|
|
29908
29923
|
if (validateError !== null) {
|
|
29909
29924
|
throw validateError;
|
|
29910
29925
|
}
|
|
@@ -30068,7 +30083,7 @@ const getSearchFilterOptionsAdapterFactory = (luvio) => function UiApi__getSearc
|
|
|
30068
30083
|
buildCachedSnapshotCachePolicy$9, buildNetworkSnapshotCachePolicy$a);
|
|
30069
30084
|
};
|
|
30070
30085
|
|
|
30071
|
-
function validate$
|
|
30086
|
+
function validate$v(obj, path = 'DisplayLayoutRepresentation') {
|
|
30072
30087
|
const v_error = (() => {
|
|
30073
30088
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30074
30089
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30089,7 +30104,7 @@ function validate$u(obj, path = 'DisplayLayoutRepresentation') {
|
|
|
30089
30104
|
return v_error === undefined ? null : v_error;
|
|
30090
30105
|
}
|
|
30091
30106
|
|
|
30092
|
-
function validate$
|
|
30107
|
+
function validate$u(obj, path = 'MatchingInfoRepresentation') {
|
|
30093
30108
|
const v_error = (() => {
|
|
30094
30109
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30095
30110
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30110,14 +30125,14 @@ function validate$t(obj, path = 'MatchingInfoRepresentation') {
|
|
|
30110
30125
|
return v_error === undefined ? null : v_error;
|
|
30111
30126
|
}
|
|
30112
30127
|
|
|
30113
|
-
function validate$
|
|
30128
|
+
function validate$t(obj, path = 'DisplayLayoutAndMatchingInfoRepresentation') {
|
|
30114
30129
|
const v_error = (() => {
|
|
30115
30130
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30116
30131
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
30117
30132
|
}
|
|
30118
30133
|
const obj_displayLayout = obj.displayLayout;
|
|
30119
30134
|
const path_displayLayout = path + '.displayLayout';
|
|
30120
|
-
const referencepath_displayLayoutValidationError = validate$
|
|
30135
|
+
const referencepath_displayLayoutValidationError = validate$v(obj_displayLayout, path_displayLayout);
|
|
30121
30136
|
if (referencepath_displayLayoutValidationError !== null) {
|
|
30122
30137
|
let message = 'Object doesn\'t match DisplayLayoutRepresentation (at "' + path_displayLayout + '")\n';
|
|
30123
30138
|
message += referencepath_displayLayoutValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30125,7 +30140,7 @@ function validate$s(obj, path = 'DisplayLayoutAndMatchingInfoRepresentation') {
|
|
|
30125
30140
|
}
|
|
30126
30141
|
const obj_matchingInfo = obj.matchingInfo;
|
|
30127
30142
|
const path_matchingInfo = path + '.matchingInfo';
|
|
30128
|
-
const referencepath_matchingInfoValidationError = validate$
|
|
30143
|
+
const referencepath_matchingInfoValidationError = validate$u(obj_matchingInfo, path_matchingInfo);
|
|
30129
30144
|
if (referencepath_matchingInfoValidationError !== null) {
|
|
30130
30145
|
let message = 'Object doesn\'t match MatchingInfoRepresentation (at "' + path_matchingInfo + '")\n';
|
|
30131
30146
|
message += referencepath_matchingInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30135,14 +30150,14 @@ function validate$s(obj, path = 'DisplayLayoutAndMatchingInfoRepresentation') {
|
|
|
30135
30150
|
return v_error === undefined ? null : v_error;
|
|
30136
30151
|
}
|
|
30137
30152
|
|
|
30138
|
-
function validate$
|
|
30153
|
+
function validate$s(obj, path = 'LookupMetadataTargetInfoRepresentation') {
|
|
30139
30154
|
const v_error = (() => {
|
|
30140
30155
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30141
30156
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
30142
30157
|
}
|
|
30143
30158
|
const obj_fullSearchInfo = obj.fullSearchInfo;
|
|
30144
30159
|
const path_fullSearchInfo = path + '.fullSearchInfo';
|
|
30145
|
-
const referencepath_fullSearchInfoValidationError = validate$
|
|
30160
|
+
const referencepath_fullSearchInfoValidationError = validate$t(obj_fullSearchInfo, path_fullSearchInfo);
|
|
30146
30161
|
if (referencepath_fullSearchInfoValidationError !== null) {
|
|
30147
30162
|
let message = 'Object doesn\'t match DisplayLayoutAndMatchingInfoRepresentation (at "' + path_fullSearchInfo + '")\n';
|
|
30148
30163
|
message += referencepath_fullSearchInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30155,7 +30170,7 @@ function validate$r(obj, path = 'LookupMetadataTargetInfoRepresentation') {
|
|
|
30155
30170
|
}
|
|
30156
30171
|
const obj_suggestionsInfo = obj.suggestionsInfo;
|
|
30157
30172
|
const path_suggestionsInfo = path + '.suggestionsInfo';
|
|
30158
|
-
const referencepath_suggestionsInfoValidationError = validate$
|
|
30173
|
+
const referencepath_suggestionsInfoValidationError = validate$t(obj_suggestionsInfo, path_suggestionsInfo);
|
|
30159
30174
|
if (referencepath_suggestionsInfoValidationError !== null) {
|
|
30160
30175
|
let message = 'Object doesn\'t match DisplayLayoutAndMatchingInfoRepresentation (at "' + path_suggestionsInfo + '")\n';
|
|
30161
30176
|
message += referencepath_suggestionsInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30167,7 +30182,7 @@ function validate$r(obj, path = 'LookupMetadataTargetInfoRepresentation') {
|
|
|
30167
30182
|
|
|
30168
30183
|
const TTL$c = 30000;
|
|
30169
30184
|
const VERSION$1h = "ab99b79a5e8a78e051ec92b39d76a6bd";
|
|
30170
|
-
function validate$
|
|
30185
|
+
function validate$r(obj, path = 'LookupMetadataRepresentation') {
|
|
30171
30186
|
const v_error = (() => {
|
|
30172
30187
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30173
30188
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30218,7 +30233,7 @@ function validate$q(obj, path = 'LookupMetadataRepresentation') {
|
|
|
30218
30233
|
const key = obj_targetInfo_keys[i];
|
|
30219
30234
|
const obj_targetInfo_prop = obj_targetInfo[key];
|
|
30220
30235
|
const path_targetInfo_prop = path_targetInfo + '["' + key + '"]';
|
|
30221
|
-
const referencepath_targetInfo_propValidationError = validate$
|
|
30236
|
+
const referencepath_targetInfo_propValidationError = validate$s(obj_targetInfo_prop, path_targetInfo_prop);
|
|
30222
30237
|
if (referencepath_targetInfo_propValidationError !== null) {
|
|
30223
30238
|
let message = 'Object doesn\'t match LookupMetadataTargetInfoRepresentation (at "' + path_targetInfo_prop + '")\n';
|
|
30224
30239
|
message += referencepath_targetInfo_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30258,7 +30273,7 @@ function equals$d(existing, incoming) {
|
|
|
30258
30273
|
}
|
|
30259
30274
|
const ingest$1d = function LookupMetadataRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
30260
30275
|
if (process.env.NODE_ENV !== 'production') {
|
|
30261
|
-
const validateError = validate$
|
|
30276
|
+
const validateError = validate$r(input);
|
|
30262
30277
|
if (validateError !== null) {
|
|
30263
30278
|
throw validateError;
|
|
30264
30279
|
}
|
|
@@ -30420,7 +30435,7 @@ const getLookupMetadataAdapterFactory = (luvio) => function UiApi__getLookupMeta
|
|
|
30420
30435
|
buildCachedSnapshotCachePolicy$8, buildNetworkSnapshotCachePolicy$9);
|
|
30421
30436
|
};
|
|
30422
30437
|
|
|
30423
|
-
function validate$
|
|
30438
|
+
function validate$q(obj, path = 'SearchDataCategoryInputRepresentation') {
|
|
30424
30439
|
const v_error = (() => {
|
|
30425
30440
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30426
30441
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30451,7 +30466,7 @@ function validate$p(obj, path = 'SearchDataCategoryInputRepresentation') {
|
|
|
30451
30466
|
return v_error === undefined ? null : v_error;
|
|
30452
30467
|
}
|
|
30453
30468
|
|
|
30454
|
-
function validate$
|
|
30469
|
+
function validate$p(obj, path = 'SearchFilterInputRepresentation') {
|
|
30455
30470
|
const v_error = (() => {
|
|
30456
30471
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30457
30472
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30520,7 +30535,7 @@ function validate$o(obj, path = 'SearchFilterInputRepresentation') {
|
|
|
30520
30535
|
return v_error === undefined ? null : v_error;
|
|
30521
30536
|
}
|
|
30522
30537
|
|
|
30523
|
-
function validate$
|
|
30538
|
+
function validate$o(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
30524
30539
|
const v_error = (() => {
|
|
30525
30540
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30526
30541
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30533,7 +30548,7 @@ function validate$n(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
|
30533
30548
|
for (let i = 0; i < obj_dataCategories.length; i++) {
|
|
30534
30549
|
const obj_dataCategories_item = obj_dataCategories[i];
|
|
30535
30550
|
const path_dataCategories_item = path_dataCategories + '[' + i + ']';
|
|
30536
|
-
const referencepath_dataCategories_itemValidationError = validate$
|
|
30551
|
+
const referencepath_dataCategories_itemValidationError = validate$q(obj_dataCategories_item, path_dataCategories_item);
|
|
30537
30552
|
if (referencepath_dataCategories_itemValidationError !== null) {
|
|
30538
30553
|
let message = 'Object doesn\'t match SearchDataCategoryInputRepresentation (at "' + path_dataCategories_item + '")\n';
|
|
30539
30554
|
message += referencepath_dataCategories_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30548,7 +30563,7 @@ function validate$n(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
|
30548
30563
|
for (let i = 0; i < obj_filters.length; i++) {
|
|
30549
30564
|
const obj_filters_item = obj_filters[i];
|
|
30550
30565
|
const path_filters_item = path_filters + '[' + i + ']';
|
|
30551
|
-
const referencepath_filters_itemValidationError = validate$
|
|
30566
|
+
const referencepath_filters_itemValidationError = validate$p(obj_filters_item, path_filters_item);
|
|
30552
30567
|
if (referencepath_filters_itemValidationError !== null) {
|
|
30553
30568
|
let message = 'Object doesn\'t match SearchFilterInputRepresentation (at "' + path_filters_item + '")\n';
|
|
30554
30569
|
message += referencepath_filters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30559,7 +30574,7 @@ function validate$n(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
|
30559
30574
|
return v_error === undefined ? null : v_error;
|
|
30560
30575
|
}
|
|
30561
30576
|
|
|
30562
|
-
function validate$
|
|
30577
|
+
function validate$n(obj, path = 'ErrorMessageRepresentation') {
|
|
30563
30578
|
const v_error = (() => {
|
|
30564
30579
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30565
30580
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30599,7 +30614,7 @@ function validate$m(obj, path = 'ErrorMessageRepresentation') {
|
|
|
30599
30614
|
return v_error === undefined ? null : v_error;
|
|
30600
30615
|
}
|
|
30601
30616
|
|
|
30602
|
-
function validate$
|
|
30617
|
+
function validate$m(obj, path = 'SearchResultCollectionRepresentation') {
|
|
30603
30618
|
const v_error = (() => {
|
|
30604
30619
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30605
30620
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30613,7 +30628,7 @@ function validate$l(obj, path = 'SearchResultCollectionRepresentation') {
|
|
|
30613
30628
|
const path_error = path + '.error';
|
|
30614
30629
|
let obj_error_union0 = null;
|
|
30615
30630
|
const obj_error_union0_error = (() => {
|
|
30616
|
-
const referencepath_errorValidationError = validate$
|
|
30631
|
+
const referencepath_errorValidationError = validate$n(obj_error, path_error);
|
|
30617
30632
|
if (referencepath_errorValidationError !== null) {
|
|
30618
30633
|
let message = 'Object doesn\'t match ErrorMessageRepresentation (at "' + path_error + '")\n';
|
|
30619
30634
|
message += referencepath_errorValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30677,7 +30692,7 @@ function validate$l(obj, path = 'SearchResultCollectionRepresentation') {
|
|
|
30677
30692
|
for (let i = 0; i < obj_orderBy.length; i++) {
|
|
30678
30693
|
const obj_orderBy_item = obj_orderBy[i];
|
|
30679
30694
|
const path_orderBy_item = path_orderBy + '[' + i + ']';
|
|
30680
|
-
const referencepath_orderBy_itemValidationError = validate$
|
|
30695
|
+
const referencepath_orderBy_itemValidationError = validate$1_(obj_orderBy_item, path_orderBy_item);
|
|
30681
30696
|
if (referencepath_orderBy_itemValidationError !== null) {
|
|
30682
30697
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderBy_item + '")\n';
|
|
30683
30698
|
message += referencepath_orderBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30743,7 +30758,7 @@ function validate$l(obj, path = 'SearchResultCollectionRepresentation') {
|
|
|
30743
30758
|
return v_error === undefined ? null : v_error;
|
|
30744
30759
|
}
|
|
30745
30760
|
|
|
30746
|
-
function validate$
|
|
30761
|
+
function validate$l(obj, path = 'KeywordSearchResultsRepresentation') {
|
|
30747
30762
|
const v_error = (() => {
|
|
30748
30763
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30749
30764
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30764,6 +30779,63 @@ function validate$k(obj, path = 'KeywordSearchResultsRepresentation') {
|
|
|
30764
30779
|
return v_error === undefined ? null : v_error;
|
|
30765
30780
|
}
|
|
30766
30781
|
|
|
30782
|
+
function validate$k(obj, path = 'AppliedSearchFilterOutputRepresentation') {
|
|
30783
|
+
const v_error = (() => {
|
|
30784
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30785
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
30786
|
+
}
|
|
30787
|
+
const obj_fieldPath = obj.fieldPath;
|
|
30788
|
+
const path_fieldPath = path + '.fieldPath';
|
|
30789
|
+
if (typeof obj_fieldPath !== 'string') {
|
|
30790
|
+
return new TypeError('Expected "string" but received "' + typeof obj_fieldPath + '" (at "' + path_fieldPath + '")');
|
|
30791
|
+
}
|
|
30792
|
+
const obj_label = obj.label;
|
|
30793
|
+
const path_label = path + '.label';
|
|
30794
|
+
let obj_label_union0 = null;
|
|
30795
|
+
const obj_label_union0_error = (() => {
|
|
30796
|
+
if (typeof obj_label !== 'string') {
|
|
30797
|
+
return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
30798
|
+
}
|
|
30799
|
+
})();
|
|
30800
|
+
if (obj_label_union0_error != null) {
|
|
30801
|
+
obj_label_union0 = obj_label_union0_error.message;
|
|
30802
|
+
}
|
|
30803
|
+
let obj_label_union1 = null;
|
|
30804
|
+
const obj_label_union1_error = (() => {
|
|
30805
|
+
if (obj_label !== null) {
|
|
30806
|
+
return new TypeError('Expected "null" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
30807
|
+
}
|
|
30808
|
+
})();
|
|
30809
|
+
if (obj_label_union1_error != null) {
|
|
30810
|
+
obj_label_union1 = obj_label_union1_error.message;
|
|
30811
|
+
}
|
|
30812
|
+
if (obj_label_union0 && obj_label_union1) {
|
|
30813
|
+
let message = 'Object doesn\'t match union (at "' + path_label + '")';
|
|
30814
|
+
message += '\n' + obj_label_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
30815
|
+
message += '\n' + obj_label_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
30816
|
+
return new TypeError(message);
|
|
30817
|
+
}
|
|
30818
|
+
const obj_operator = obj.operator;
|
|
30819
|
+
const path_operator = path + '.operator';
|
|
30820
|
+
if (typeof obj_operator !== 'string') {
|
|
30821
|
+
return new TypeError('Expected "string" but received "' + typeof obj_operator + '" (at "' + path_operator + '")');
|
|
30822
|
+
}
|
|
30823
|
+
const obj_values = obj.values;
|
|
30824
|
+
const path_values = path + '.values';
|
|
30825
|
+
if (!ArrayIsArray(obj_values)) {
|
|
30826
|
+
return new TypeError('Expected "array" but received "' + typeof obj_values + '" (at "' + path_values + '")');
|
|
30827
|
+
}
|
|
30828
|
+
for (let i = 0; i < obj_values.length; i++) {
|
|
30829
|
+
const obj_values_item = obj_values[i];
|
|
30830
|
+
const path_values_item = path_values + '[' + i + ']';
|
|
30831
|
+
if (typeof obj_values_item !== 'string') {
|
|
30832
|
+
return new TypeError('Expected "string" but received "' + typeof obj_values_item + '" (at "' + path_values_item + '")');
|
|
30833
|
+
}
|
|
30834
|
+
}
|
|
30835
|
+
})();
|
|
30836
|
+
return v_error === undefined ? null : v_error;
|
|
30837
|
+
}
|
|
30838
|
+
|
|
30767
30839
|
function validate$j(obj, path = 'SearchAnswersRecordRepresentation') {
|
|
30768
30840
|
const v_error = (() => {
|
|
30769
30841
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -30803,6 +30875,21 @@ function validate$i(obj, path = 'SearchAnswersResultRepresentation') {
|
|
|
30803
30875
|
if (typeof obj_answerType !== 'string') {
|
|
30804
30876
|
return new TypeError('Expected "string" but received "' + typeof obj_answerType + '" (at "' + path_answerType + '")');
|
|
30805
30877
|
}
|
|
30878
|
+
const obj_appliedFilters = obj.appliedFilters;
|
|
30879
|
+
const path_appliedFilters = path + '.appliedFilters';
|
|
30880
|
+
if (!ArrayIsArray(obj_appliedFilters)) {
|
|
30881
|
+
return new TypeError('Expected "array" but received "' + typeof obj_appliedFilters + '" (at "' + path_appliedFilters + '")');
|
|
30882
|
+
}
|
|
30883
|
+
for (let i = 0; i < obj_appliedFilters.length; i++) {
|
|
30884
|
+
const obj_appliedFilters_item = obj_appliedFilters[i];
|
|
30885
|
+
const path_appliedFilters_item = path_appliedFilters + '[' + i + ']';
|
|
30886
|
+
const referencepath_appliedFilters_itemValidationError = validate$k(obj_appliedFilters_item, path_appliedFilters_item);
|
|
30887
|
+
if (referencepath_appliedFilters_itemValidationError !== null) {
|
|
30888
|
+
let message = 'Object doesn\'t match AppliedSearchFilterOutputRepresentation (at "' + path_appliedFilters_item + '")\n';
|
|
30889
|
+
message += referencepath_appliedFilters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
30890
|
+
return new TypeError(message);
|
|
30891
|
+
}
|
|
30892
|
+
}
|
|
30806
30893
|
const obj_passage = obj.passage;
|
|
30807
30894
|
const path_passage = path + '.passage';
|
|
30808
30895
|
if (typeof obj_passage !== 'string') {
|
|
@@ -30868,11 +30955,6 @@ function validate$g(obj, path = 'SearchFilterOutputRepresentation') {
|
|
|
30868
30955
|
if (typeof obj_fieldPath !== 'string') {
|
|
30869
30956
|
return new TypeError('Expected "string" but received "' + typeof obj_fieldPath + '" (at "' + path_fieldPath + '")');
|
|
30870
30957
|
}
|
|
30871
|
-
const obj_label = obj.label;
|
|
30872
|
-
const path_label = path + '.label';
|
|
30873
|
-
if (typeof obj_label !== 'string') {
|
|
30874
|
-
return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
30875
|
-
}
|
|
30876
30958
|
const obj_operator = obj.operator;
|
|
30877
30959
|
const path_operator = path + '.operator';
|
|
30878
30960
|
if (typeof obj_operator !== 'string') {
|
|
@@ -30970,7 +31052,7 @@ function validate$e(obj, path = 'SearchResultsSummaryRepresentation') {
|
|
|
30970
31052
|
const path_keywordSearchResults = path + '.keywordSearchResults';
|
|
30971
31053
|
let obj_keywordSearchResults_union0 = null;
|
|
30972
31054
|
const obj_keywordSearchResults_union0_error = (() => {
|
|
30973
|
-
const referencepath_keywordSearchResultsValidationError = validate$
|
|
31055
|
+
const referencepath_keywordSearchResultsValidationError = validate$l(obj_keywordSearchResults, path_keywordSearchResults);
|
|
30974
31056
|
if (referencepath_keywordSearchResultsValidationError !== null) {
|
|
30975
31057
|
let message = 'Object doesn\'t match KeywordSearchResultsRepresentation (at "' + path_keywordSearchResults + '")\n';
|
|
30976
31058
|
message += referencepath_keywordSearchResultsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -31183,7 +31265,7 @@ function typeCheckConfig$h(untrustedConfig) {
|
|
|
31183
31265
|
for (let i = 0, arrayLength = untrustedConfig_searchObjectOptions_keys.length; i < arrayLength; i++) {
|
|
31184
31266
|
const key = untrustedConfig_searchObjectOptions_keys[i];
|
|
31185
31267
|
const untrustedConfig_searchObjectOptions_prop = untrustedConfig_searchObjectOptions[key];
|
|
31186
|
-
const referenceSearchObjectOptionsRepresentationValidationError = validate$
|
|
31268
|
+
const referenceSearchObjectOptionsRepresentationValidationError = validate$o(untrustedConfig_searchObjectOptions_prop);
|
|
31187
31269
|
if (referenceSearchObjectOptionsRepresentationValidationError === null) {
|
|
31188
31270
|
if (untrustedConfig_searchObjectOptions_object !== undefined) {
|
|
31189
31271
|
untrustedConfig_searchObjectOptions_object[key] = untrustedConfig_searchObjectOptions_prop;
|
|
@@ -31302,7 +31384,7 @@ function validate$d(obj, path = 'KeywordSearchResultsSummaryRepresentation') {
|
|
|
31302
31384
|
}
|
|
31303
31385
|
const obj_keywordSearchResult = obj.keywordSearchResult;
|
|
31304
31386
|
const path_keywordSearchResult = path + '.keywordSearchResult';
|
|
31305
|
-
const referencepath_keywordSearchResultValidationError = validate$
|
|
31387
|
+
const referencepath_keywordSearchResultValidationError = validate$m(obj_keywordSearchResult, path_keywordSearchResult);
|
|
31306
31388
|
if (referencepath_keywordSearchResultValidationError !== null) {
|
|
31307
31389
|
let message = 'Object doesn\'t match SearchResultCollectionRepresentation (at "' + path_keywordSearchResult + '")\n';
|
|
31308
31390
|
message += referencepath_keywordSearchResultValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -31457,7 +31539,7 @@ function typeCheckConfig$g(untrustedConfig) {
|
|
|
31457
31539
|
const untrustedConfig_filters_array = [];
|
|
31458
31540
|
for (let i = 0, arrayLength = untrustedConfig_filters.length; i < arrayLength; i++) {
|
|
31459
31541
|
const untrustedConfig_filters_item = untrustedConfig_filters[i];
|
|
31460
|
-
const referenceSearchFilterInputRepresentationValidationError = validate$
|
|
31542
|
+
const referenceSearchFilterInputRepresentationValidationError = validate$p(untrustedConfig_filters_item);
|
|
31461
31543
|
if (referenceSearchFilterInputRepresentationValidationError === null) {
|
|
31462
31544
|
untrustedConfig_filters_array.push(untrustedConfig_filters_item);
|
|
31463
31545
|
}
|
|
@@ -31552,7 +31634,7 @@ function mergeData$11(existingData, newData) {
|
|
|
31552
31634
|
};
|
|
31553
31635
|
}
|
|
31554
31636
|
function ingest$1a(astNode, state) {
|
|
31555
|
-
const { path, data, luvio } = state;
|
|
31637
|
+
const { path, data, timestamp, luvio } = state;
|
|
31556
31638
|
const key = keyBuilder$1f(luvio, path);
|
|
31557
31639
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31558
31640
|
key,
|
|
@@ -31566,7 +31648,8 @@ function ingest$1a(astNode, state) {
|
|
|
31566
31648
|
ttl: TTL$6,
|
|
31567
31649
|
namespace: keyPrefix,
|
|
31568
31650
|
representationName: "DoubleValue",
|
|
31569
|
-
version: VERSION$1e
|
|
31651
|
+
version: VERSION$1e,
|
|
31652
|
+
ingestionTimestamp: timestamp,
|
|
31570
31653
|
},
|
|
31571
31654
|
});
|
|
31572
31655
|
}
|
|
@@ -31694,7 +31777,7 @@ function mergeData$10(existingData, newData) {
|
|
|
31694
31777
|
};
|
|
31695
31778
|
}
|
|
31696
31779
|
function ingest$19(astNode, state) {
|
|
31697
|
-
const { path, data, luvio } = state;
|
|
31780
|
+
const { path, data, timestamp, luvio } = state;
|
|
31698
31781
|
const key = keyBuilder$1e(luvio, path);
|
|
31699
31782
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31700
31783
|
key,
|
|
@@ -31708,7 +31791,8 @@ function ingest$19(astNode, state) {
|
|
|
31708
31791
|
ttl: TTL$6,
|
|
31709
31792
|
namespace: keyPrefix,
|
|
31710
31793
|
representationName: "LongValue",
|
|
31711
|
-
version: VERSION$1d
|
|
31794
|
+
version: VERSION$1d,
|
|
31795
|
+
ingestionTimestamp: timestamp,
|
|
31712
31796
|
},
|
|
31713
31797
|
});
|
|
31714
31798
|
}
|
|
@@ -31836,7 +31920,7 @@ function mergeData$$(existingData, newData) {
|
|
|
31836
31920
|
};
|
|
31837
31921
|
}
|
|
31838
31922
|
function ingest$18(astNode, state) {
|
|
31839
|
-
const { path, data, luvio } = state;
|
|
31923
|
+
const { path, data, timestamp, luvio } = state;
|
|
31840
31924
|
const key = keyBuilder$1d(luvio, path);
|
|
31841
31925
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31842
31926
|
key,
|
|
@@ -31850,7 +31934,8 @@ function ingest$18(astNode, state) {
|
|
|
31850
31934
|
ttl: TTL$6,
|
|
31851
31935
|
namespace: keyPrefix,
|
|
31852
31936
|
representationName: "PercentValue",
|
|
31853
|
-
version: VERSION$1c
|
|
31937
|
+
version: VERSION$1c,
|
|
31938
|
+
ingestionTimestamp: timestamp,
|
|
31854
31939
|
},
|
|
31855
31940
|
});
|
|
31856
31941
|
}
|
|
@@ -31978,7 +32063,7 @@ function mergeData$_(existingData, newData) {
|
|
|
31978
32063
|
};
|
|
31979
32064
|
}
|
|
31980
32065
|
function ingest$17(astNode, state) {
|
|
31981
|
-
const { path, data, luvio } = state;
|
|
32066
|
+
const { path, data, timestamp, luvio } = state;
|
|
31982
32067
|
const key = keyBuilder$1c(luvio, path);
|
|
31983
32068
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
31984
32069
|
key,
|
|
@@ -31992,7 +32077,8 @@ function ingest$17(astNode, state) {
|
|
|
31992
32077
|
ttl: TTL$6,
|
|
31993
32078
|
namespace: keyPrefix,
|
|
31994
32079
|
representationName: "PercentAggregate",
|
|
31995
|
-
version: VERSION$1b
|
|
32080
|
+
version: VERSION$1b,
|
|
32081
|
+
ingestionTimestamp: timestamp,
|
|
31996
32082
|
},
|
|
31997
32083
|
});
|
|
31998
32084
|
}
|
|
@@ -32240,7 +32326,7 @@ function mergeData$Z(existingData, newData) {
|
|
|
32240
32326
|
};
|
|
32241
32327
|
}
|
|
32242
32328
|
function ingest$16(astNode, state) {
|
|
32243
|
-
const { path, data, luvio } = state;
|
|
32329
|
+
const { path, data, timestamp, luvio } = state;
|
|
32244
32330
|
const key = keyBuilder$1b(luvio, path);
|
|
32245
32331
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32246
32332
|
key,
|
|
@@ -32254,7 +32340,8 @@ function ingest$16(astNode, state) {
|
|
|
32254
32340
|
ttl: TTL$6,
|
|
32255
32341
|
namespace: keyPrefix,
|
|
32256
32342
|
representationName: "IntValue",
|
|
32257
|
-
version: VERSION$1a
|
|
32343
|
+
version: VERSION$1a,
|
|
32344
|
+
ingestionTimestamp: timestamp,
|
|
32258
32345
|
},
|
|
32259
32346
|
});
|
|
32260
32347
|
}
|
|
@@ -32382,7 +32469,7 @@ function mergeData$Y(existingData, newData) {
|
|
|
32382
32469
|
};
|
|
32383
32470
|
}
|
|
32384
32471
|
function ingest$15(astNode, state) {
|
|
32385
|
-
const { path, data, luvio } = state;
|
|
32472
|
+
const { path, data, timestamp, luvio } = state;
|
|
32386
32473
|
const key = keyBuilder$1a(luvio, path);
|
|
32387
32474
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32388
32475
|
key,
|
|
@@ -32396,7 +32483,8 @@ function ingest$15(astNode, state) {
|
|
|
32396
32483
|
ttl: TTL$6,
|
|
32397
32484
|
namespace: keyPrefix,
|
|
32398
32485
|
representationName: "StringValue",
|
|
32399
|
-
version: VERSION$19
|
|
32486
|
+
version: VERSION$19,
|
|
32487
|
+
ingestionTimestamp: timestamp,
|
|
32400
32488
|
},
|
|
32401
32489
|
});
|
|
32402
32490
|
}
|
|
@@ -32515,7 +32603,7 @@ function mergeData$X(existingData, newData) {
|
|
|
32515
32603
|
};
|
|
32516
32604
|
}
|
|
32517
32605
|
function ingest$14(astNode, state) {
|
|
32518
|
-
const { path, data, luvio } = state;
|
|
32606
|
+
const { path, data, timestamp, luvio } = state;
|
|
32519
32607
|
const key = keyBuilder$19(luvio, path);
|
|
32520
32608
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32521
32609
|
key,
|
|
@@ -32529,7 +32617,8 @@ function ingest$14(astNode, state) {
|
|
|
32529
32617
|
ttl: TTL$6,
|
|
32530
32618
|
namespace: keyPrefix,
|
|
32531
32619
|
representationName: "StringAggregate",
|
|
32532
|
-
version: VERSION$18
|
|
32620
|
+
version: VERSION$18,
|
|
32621
|
+
ingestionTimestamp: timestamp,
|
|
32533
32622
|
},
|
|
32534
32623
|
});
|
|
32535
32624
|
}
|
|
@@ -32757,7 +32846,7 @@ function mergeData$W(existingData, newData) {
|
|
|
32757
32846
|
};
|
|
32758
32847
|
}
|
|
32759
32848
|
function ingest$13(astNode, state) {
|
|
32760
|
-
const { path, data, luvio } = state;
|
|
32849
|
+
const { path, data, timestamp, luvio } = state;
|
|
32761
32850
|
const key = keyBuilder$18(luvio, path);
|
|
32762
32851
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32763
32852
|
key,
|
|
@@ -32771,7 +32860,8 @@ function ingest$13(astNode, state) {
|
|
|
32771
32860
|
ttl: TTL$6,
|
|
32772
32861
|
namespace: keyPrefix,
|
|
32773
32862
|
representationName: "IDValue",
|
|
32774
|
-
version: VERSION$17
|
|
32863
|
+
version: VERSION$17,
|
|
32864
|
+
ingestionTimestamp: timestamp,
|
|
32775
32865
|
},
|
|
32776
32866
|
});
|
|
32777
32867
|
}
|
|
@@ -32893,7 +32983,7 @@ function mergeData$V(existingData, newData) {
|
|
|
32893
32983
|
};
|
|
32894
32984
|
}
|
|
32895
32985
|
function ingest$12(astNode, state) {
|
|
32896
|
-
const { path, data, luvio } = state;
|
|
32986
|
+
const { path, data, timestamp, luvio } = state;
|
|
32897
32987
|
const key = keyBuilder$17(luvio, path);
|
|
32898
32988
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
32899
32989
|
key,
|
|
@@ -32907,7 +32997,8 @@ function ingest$12(astNode, state) {
|
|
|
32907
32997
|
ttl: TTL$6,
|
|
32908
32998
|
namespace: keyPrefix,
|
|
32909
32999
|
representationName: "DateTimeValue",
|
|
32910
|
-
version: VERSION$16
|
|
33000
|
+
version: VERSION$16,
|
|
33001
|
+
ingestionTimestamp: timestamp,
|
|
32911
33002
|
},
|
|
32912
33003
|
});
|
|
32913
33004
|
}
|
|
@@ -33035,7 +33126,7 @@ function mergeData$U(existingData, newData) {
|
|
|
33035
33126
|
};
|
|
33036
33127
|
}
|
|
33037
33128
|
function ingest$11(astNode, state) {
|
|
33038
|
-
const { path, data, luvio } = state;
|
|
33129
|
+
const { path, data, timestamp, luvio } = state;
|
|
33039
33130
|
const key = keyBuilder$16(luvio, path);
|
|
33040
33131
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33041
33132
|
key,
|
|
@@ -33049,7 +33140,8 @@ function ingest$11(astNode, state) {
|
|
|
33049
33140
|
ttl: TTL$6,
|
|
33050
33141
|
namespace: keyPrefix,
|
|
33051
33142
|
representationName: "BooleanValue",
|
|
33052
|
-
version: VERSION$15
|
|
33143
|
+
version: VERSION$15,
|
|
33144
|
+
ingestionTimestamp: timestamp,
|
|
33053
33145
|
},
|
|
33054
33146
|
});
|
|
33055
33147
|
}
|
|
@@ -33171,7 +33263,7 @@ function mergeData$T(existingData, newData) {
|
|
|
33171
33263
|
};
|
|
33172
33264
|
}
|
|
33173
33265
|
function ingest$10(astNode, state) {
|
|
33174
|
-
const { path, data, luvio } = state;
|
|
33266
|
+
const { path, data, timestamp, luvio } = state;
|
|
33175
33267
|
const key = keyBuilder$15(luvio, path);
|
|
33176
33268
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33177
33269
|
key,
|
|
@@ -33185,7 +33277,8 @@ function ingest$10(astNode, state) {
|
|
|
33185
33277
|
ttl: TTL$6,
|
|
33186
33278
|
namespace: keyPrefix,
|
|
33187
33279
|
representationName: "TimeValue",
|
|
33188
|
-
version: VERSION$14
|
|
33280
|
+
version: VERSION$14,
|
|
33281
|
+
ingestionTimestamp: timestamp,
|
|
33189
33282
|
},
|
|
33190
33283
|
});
|
|
33191
33284
|
}
|
|
@@ -33313,7 +33406,7 @@ function mergeData$S(existingData, newData) {
|
|
|
33313
33406
|
};
|
|
33314
33407
|
}
|
|
33315
33408
|
function ingest$$(astNode, state) {
|
|
33316
|
-
const { path, data, luvio } = state;
|
|
33409
|
+
const { path, data, timestamp, luvio } = state;
|
|
33317
33410
|
const key = keyBuilder$14(luvio, path);
|
|
33318
33411
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33319
33412
|
key,
|
|
@@ -33327,7 +33420,8 @@ function ingest$$(astNode, state) {
|
|
|
33327
33420
|
ttl: TTL$6,
|
|
33328
33421
|
namespace: keyPrefix,
|
|
33329
33422
|
representationName: "DateValue",
|
|
33330
|
-
version: VERSION$13
|
|
33423
|
+
version: VERSION$13,
|
|
33424
|
+
ingestionTimestamp: timestamp,
|
|
33331
33425
|
},
|
|
33332
33426
|
});
|
|
33333
33427
|
}
|
|
@@ -33455,7 +33549,7 @@ function mergeData$R(existingData, newData) {
|
|
|
33455
33549
|
};
|
|
33456
33550
|
}
|
|
33457
33551
|
function ingest$_(astNode, state) {
|
|
33458
|
-
const { path, data, luvio } = state;
|
|
33552
|
+
const { path, data, timestamp, luvio } = state;
|
|
33459
33553
|
const key = keyBuilder$13(luvio, path);
|
|
33460
33554
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33461
33555
|
key,
|
|
@@ -33469,7 +33563,8 @@ function ingest$_(astNode, state) {
|
|
|
33469
33563
|
ttl: TTL$6,
|
|
33470
33564
|
namespace: keyPrefix,
|
|
33471
33565
|
representationName: "TextAreaValue",
|
|
33472
|
-
version: VERSION$12
|
|
33566
|
+
version: VERSION$12,
|
|
33567
|
+
ingestionTimestamp: timestamp,
|
|
33473
33568
|
},
|
|
33474
33569
|
});
|
|
33475
33570
|
}
|
|
@@ -33591,7 +33686,7 @@ function mergeData$Q(existingData, newData) {
|
|
|
33591
33686
|
};
|
|
33592
33687
|
}
|
|
33593
33688
|
function ingest$Z(astNode, state) {
|
|
33594
|
-
const { path, data, luvio } = state;
|
|
33689
|
+
const { path, data, timestamp, luvio } = state;
|
|
33595
33690
|
const key = keyBuilder$12(luvio, path);
|
|
33596
33691
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33597
33692
|
key,
|
|
@@ -33605,7 +33700,8 @@ function ingest$Z(astNode, state) {
|
|
|
33605
33700
|
ttl: TTL$6,
|
|
33606
33701
|
namespace: keyPrefix,
|
|
33607
33702
|
representationName: "LongTextAreaValue",
|
|
33608
|
-
version: VERSION$11
|
|
33703
|
+
version: VERSION$11,
|
|
33704
|
+
ingestionTimestamp: timestamp,
|
|
33609
33705
|
},
|
|
33610
33706
|
});
|
|
33611
33707
|
}
|
|
@@ -33727,7 +33823,7 @@ function mergeData$P(existingData, newData) {
|
|
|
33727
33823
|
};
|
|
33728
33824
|
}
|
|
33729
33825
|
function ingest$Y(astNode, state) {
|
|
33730
|
-
const { path, data, luvio } = state;
|
|
33826
|
+
const { path, data, timestamp, luvio } = state;
|
|
33731
33827
|
const key = keyBuilder$11(luvio, path);
|
|
33732
33828
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33733
33829
|
key,
|
|
@@ -33741,7 +33837,8 @@ function ingest$Y(astNode, state) {
|
|
|
33741
33837
|
ttl: TTL$6,
|
|
33742
33838
|
namespace: keyPrefix,
|
|
33743
33839
|
representationName: "RichTextAreaValue",
|
|
33744
|
-
version: VERSION$10
|
|
33840
|
+
version: VERSION$10,
|
|
33841
|
+
ingestionTimestamp: timestamp,
|
|
33745
33842
|
},
|
|
33746
33843
|
});
|
|
33747
33844
|
}
|
|
@@ -33863,7 +33960,7 @@ function mergeData$O(existingData, newData) {
|
|
|
33863
33960
|
};
|
|
33864
33961
|
}
|
|
33865
33962
|
function ingest$X(astNode, state) {
|
|
33866
|
-
const { path, data, luvio } = state;
|
|
33963
|
+
const { path, data, timestamp, luvio } = state;
|
|
33867
33964
|
const key = keyBuilder$10(luvio, path);
|
|
33868
33965
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
33869
33966
|
key,
|
|
@@ -33877,7 +33974,8 @@ function ingest$X(astNode, state) {
|
|
|
33877
33974
|
ttl: TTL$6,
|
|
33878
33975
|
namespace: keyPrefix,
|
|
33879
33976
|
representationName: "PhoneNumberValue",
|
|
33880
|
-
version: VERSION
|
|
33977
|
+
version: VERSION$$,
|
|
33978
|
+
ingestionTimestamp: timestamp,
|
|
33881
33979
|
},
|
|
33882
33980
|
});
|
|
33883
33981
|
}
|
|
@@ -33999,7 +34097,7 @@ function mergeData$N(existingData, newData) {
|
|
|
33999
34097
|
};
|
|
34000
34098
|
}
|
|
34001
34099
|
function ingest$W(astNode, state) {
|
|
34002
|
-
const { path, data, luvio } = state;
|
|
34100
|
+
const { path, data, timestamp, luvio } = state;
|
|
34003
34101
|
const key = keyBuilder$$(luvio, path);
|
|
34004
34102
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34005
34103
|
key,
|
|
@@ -34013,7 +34111,8 @@ function ingest$W(astNode, state) {
|
|
|
34013
34111
|
ttl: TTL$6,
|
|
34014
34112
|
namespace: keyPrefix,
|
|
34015
34113
|
representationName: "EmailValue",
|
|
34016
|
-
version: VERSION$_
|
|
34114
|
+
version: VERSION$_,
|
|
34115
|
+
ingestionTimestamp: timestamp,
|
|
34017
34116
|
},
|
|
34018
34117
|
});
|
|
34019
34118
|
}
|
|
@@ -34135,7 +34234,7 @@ function mergeData$M(existingData, newData) {
|
|
|
34135
34234
|
};
|
|
34136
34235
|
}
|
|
34137
34236
|
function ingest$V(astNode, state) {
|
|
34138
|
-
const { path, data, luvio } = state;
|
|
34237
|
+
const { path, data, timestamp, luvio } = state;
|
|
34139
34238
|
const key = keyBuilder$_(luvio, path);
|
|
34140
34239
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34141
34240
|
key,
|
|
@@ -34149,7 +34248,8 @@ function ingest$V(astNode, state) {
|
|
|
34149
34248
|
ttl: TTL$6,
|
|
34150
34249
|
namespace: keyPrefix,
|
|
34151
34250
|
representationName: "UrlValue",
|
|
34152
|
-
version: VERSION$Z
|
|
34251
|
+
version: VERSION$Z,
|
|
34252
|
+
ingestionTimestamp: timestamp,
|
|
34153
34253
|
},
|
|
34154
34254
|
});
|
|
34155
34255
|
}
|
|
@@ -34271,7 +34371,7 @@ function mergeData$L(existingData, newData) {
|
|
|
34271
34371
|
};
|
|
34272
34372
|
}
|
|
34273
34373
|
function ingest$U(astNode, state) {
|
|
34274
|
-
const { path, data, luvio } = state;
|
|
34374
|
+
const { path, data, timestamp, luvio } = state;
|
|
34275
34375
|
const key = keyBuilder$Z(luvio, path);
|
|
34276
34376
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34277
34377
|
key,
|
|
@@ -34285,7 +34385,8 @@ function ingest$U(astNode, state) {
|
|
|
34285
34385
|
ttl: TTL$6,
|
|
34286
34386
|
namespace: keyPrefix,
|
|
34287
34387
|
representationName: "EncryptedStringValue",
|
|
34288
|
-
version: VERSION$Y
|
|
34388
|
+
version: VERSION$Y,
|
|
34389
|
+
ingestionTimestamp: timestamp,
|
|
34289
34390
|
},
|
|
34290
34391
|
});
|
|
34291
34392
|
}
|
|
@@ -34407,7 +34508,7 @@ function mergeData$K(existingData, newData) {
|
|
|
34407
34508
|
};
|
|
34408
34509
|
}
|
|
34409
34510
|
function ingest$T(astNode, state) {
|
|
34410
|
-
const { path, data, luvio } = state;
|
|
34511
|
+
const { path, data, timestamp, luvio } = state;
|
|
34411
34512
|
const key = keyBuilder$Y(luvio, path);
|
|
34412
34513
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34413
34514
|
key,
|
|
@@ -34421,7 +34522,8 @@ function ingest$T(astNode, state) {
|
|
|
34421
34522
|
ttl: TTL$6,
|
|
34422
34523
|
namespace: keyPrefix,
|
|
34423
34524
|
representationName: "CurrencyValue",
|
|
34424
|
-
version: VERSION$X
|
|
34525
|
+
version: VERSION$X,
|
|
34526
|
+
ingestionTimestamp: timestamp,
|
|
34425
34527
|
},
|
|
34426
34528
|
});
|
|
34427
34529
|
}
|
|
@@ -34549,7 +34651,7 @@ function mergeData$J(existingData, newData) {
|
|
|
34549
34651
|
};
|
|
34550
34652
|
}
|
|
34551
34653
|
function ingest$S(astNode, state) {
|
|
34552
|
-
const { path, data, luvio } = state;
|
|
34654
|
+
const { path, data, timestamp, luvio } = state;
|
|
34553
34655
|
const key = keyBuilder$X(luvio, path);
|
|
34554
34656
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34555
34657
|
key,
|
|
@@ -34563,7 +34665,8 @@ function ingest$S(astNode, state) {
|
|
|
34563
34665
|
ttl: TTL$6,
|
|
34564
34666
|
namespace: keyPrefix,
|
|
34565
34667
|
representationName: "LongitudeValue",
|
|
34566
|
-
version: VERSION$W
|
|
34668
|
+
version: VERSION$W,
|
|
34669
|
+
ingestionTimestamp: timestamp,
|
|
34567
34670
|
},
|
|
34568
34671
|
});
|
|
34569
34672
|
}
|
|
@@ -34685,7 +34788,7 @@ function mergeData$I(existingData, newData) {
|
|
|
34685
34788
|
};
|
|
34686
34789
|
}
|
|
34687
34790
|
function ingest$R(astNode, state) {
|
|
34688
|
-
const { path, data, luvio } = state;
|
|
34791
|
+
const { path, data, timestamp, luvio } = state;
|
|
34689
34792
|
const key = keyBuilder$W(luvio, path);
|
|
34690
34793
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34691
34794
|
key,
|
|
@@ -34699,7 +34802,8 @@ function ingest$R(astNode, state) {
|
|
|
34699
34802
|
ttl: TTL$6,
|
|
34700
34803
|
namespace: keyPrefix,
|
|
34701
34804
|
representationName: "LatitudeValue",
|
|
34702
|
-
version: VERSION$V
|
|
34805
|
+
version: VERSION$V,
|
|
34806
|
+
ingestionTimestamp: timestamp,
|
|
34703
34807
|
},
|
|
34704
34808
|
});
|
|
34705
34809
|
}
|
|
@@ -34821,7 +34925,7 @@ function mergeData$H(existingData, newData) {
|
|
|
34821
34925
|
};
|
|
34822
34926
|
}
|
|
34823
34927
|
function ingest$Q(astNode, state) {
|
|
34824
|
-
const { path, data, luvio } = state;
|
|
34928
|
+
const { path, data, timestamp, luvio } = state;
|
|
34825
34929
|
const key = keyBuilder$V(luvio, path);
|
|
34826
34930
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34827
34931
|
key,
|
|
@@ -34835,7 +34939,8 @@ function ingest$Q(astNode, state) {
|
|
|
34835
34939
|
ttl: TTL$6,
|
|
34836
34940
|
namespace: keyPrefix,
|
|
34837
34941
|
representationName: "PicklistValue",
|
|
34838
|
-
version: VERSION$U
|
|
34942
|
+
version: VERSION$U,
|
|
34943
|
+
ingestionTimestamp: timestamp,
|
|
34839
34944
|
},
|
|
34840
34945
|
});
|
|
34841
34946
|
}
|
|
@@ -34963,7 +35068,7 @@ function mergeData$G(existingData, newData) {
|
|
|
34963
35068
|
};
|
|
34964
35069
|
}
|
|
34965
35070
|
function ingest$P(astNode, state) {
|
|
34966
|
-
const { path, data, luvio } = state;
|
|
35071
|
+
const { path, data, timestamp, luvio } = state;
|
|
34967
35072
|
const key = keyBuilder$U(luvio, path);
|
|
34968
35073
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
34969
35074
|
key,
|
|
@@ -34977,7 +35082,8 @@ function ingest$P(astNode, state) {
|
|
|
34977
35082
|
ttl: TTL$6,
|
|
34978
35083
|
namespace: keyPrefix,
|
|
34979
35084
|
representationName: "MultiPicklistValue",
|
|
34980
|
-
version: VERSION$T
|
|
35085
|
+
version: VERSION$T,
|
|
35086
|
+
ingestionTimestamp: timestamp,
|
|
34981
35087
|
},
|
|
34982
35088
|
});
|
|
34983
35089
|
}
|
|
@@ -35105,7 +35211,7 @@ function mergeData$F(existingData, newData) {
|
|
|
35105
35211
|
};
|
|
35106
35212
|
}
|
|
35107
35213
|
function ingest$O(astNode, state) {
|
|
35108
|
-
const { path, data, luvio } = state;
|
|
35214
|
+
const { path, data, timestamp, luvio } = state;
|
|
35109
35215
|
const key = keyBuilder$T(luvio, path);
|
|
35110
35216
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35111
35217
|
key,
|
|
@@ -35119,7 +35225,8 @@ function ingest$O(astNode, state) {
|
|
|
35119
35225
|
ttl: TTL$6,
|
|
35120
35226
|
namespace: keyPrefix,
|
|
35121
35227
|
representationName: "Base64Value",
|
|
35122
|
-
version: VERSION$S
|
|
35228
|
+
version: VERSION$S,
|
|
35229
|
+
ingestionTimestamp: timestamp,
|
|
35123
35230
|
},
|
|
35124
35231
|
});
|
|
35125
35232
|
}
|
|
@@ -35241,7 +35348,7 @@ function mergeData$E(existingData, newData) {
|
|
|
35241
35348
|
};
|
|
35242
35349
|
}
|
|
35243
35350
|
function ingest$N(astNode, state) {
|
|
35244
|
-
const { path, data, luvio } = state;
|
|
35351
|
+
const { path, data, timestamp, luvio } = state;
|
|
35245
35352
|
const key = keyBuilder$S(luvio, path);
|
|
35246
35353
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35247
35354
|
key,
|
|
@@ -35255,7 +35362,8 @@ function ingest$N(astNode, state) {
|
|
|
35255
35362
|
ttl: TTL$6,
|
|
35256
35363
|
namespace: keyPrefix,
|
|
35257
35364
|
representationName: "JSONValue",
|
|
35258
|
-
version: VERSION$R
|
|
35365
|
+
version: VERSION$R,
|
|
35366
|
+
ingestionTimestamp: timestamp,
|
|
35259
35367
|
},
|
|
35260
35368
|
});
|
|
35261
35369
|
}
|
|
@@ -35781,7 +35889,7 @@ function mergeData$D(existingData, newData) {
|
|
|
35781
35889
|
};
|
|
35782
35890
|
}
|
|
35783
35891
|
function ingest$L(astNode, state) {
|
|
35784
|
-
const { path, data, luvio } = state;
|
|
35892
|
+
const { path, data, timestamp, luvio } = state;
|
|
35785
35893
|
const key = keyBuilder$R(luvio, path);
|
|
35786
35894
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
35787
35895
|
key,
|
|
@@ -35795,7 +35903,8 @@ function ingest$L(astNode, state) {
|
|
|
35795
35903
|
ttl: TTL$6,
|
|
35796
35904
|
namespace: keyPrefix,
|
|
35797
35905
|
representationName: "CompoundField",
|
|
35798
|
-
version: VERSION$P
|
|
35906
|
+
version: VERSION$P,
|
|
35907
|
+
ingestionTimestamp: timestamp,
|
|
35799
35908
|
},
|
|
35800
35909
|
});
|
|
35801
35910
|
}
|
|
@@ -36781,7 +36890,7 @@ function mergeData$C(existingData, newData) {
|
|
|
36781
36890
|
};
|
|
36782
36891
|
}
|
|
36783
36892
|
function ingest$K(astNode, state) {
|
|
36784
|
-
const { path, data, luvio } = state;
|
|
36893
|
+
const { path, data, timestamp, luvio } = state;
|
|
36785
36894
|
const key = keyBuilder$Q(luvio, path);
|
|
36786
36895
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
36787
36896
|
key,
|
|
@@ -36795,7 +36904,8 @@ function ingest$K(astNode, state) {
|
|
|
36795
36904
|
ttl: TTL$6,
|
|
36796
36905
|
namespace: keyPrefix,
|
|
36797
36906
|
representationName: "PageInfo",
|
|
36798
|
-
version: VERSION$O
|
|
36907
|
+
version: VERSION$O,
|
|
36908
|
+
ingestionTimestamp: timestamp,
|
|
36799
36909
|
},
|
|
36800
36910
|
});
|
|
36801
36911
|
}
|
|
@@ -36997,7 +37107,7 @@ function mergeData$B(existingData, newData) {
|
|
|
36997
37107
|
};
|
|
36998
37108
|
}
|
|
36999
37109
|
function ingest$J(astNode, state) {
|
|
37000
|
-
const { path, data, luvio } = state;
|
|
37110
|
+
const { path, data, timestamp, luvio } = state;
|
|
37001
37111
|
const key = keyBuilder$P(luvio, path, data);
|
|
37002
37112
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37003
37113
|
key,
|
|
@@ -37014,7 +37124,8 @@ function ingest$J(astNode, state) {
|
|
|
37014
37124
|
ttl: TTL$6,
|
|
37015
37125
|
namespace: keyPrefix,
|
|
37016
37126
|
representationName: "RecordRepresentation",
|
|
37017
|
-
version: VERSION$N
|
|
37127
|
+
version: VERSION$N,
|
|
37128
|
+
ingestionTimestamp: timestamp,
|
|
37018
37129
|
},
|
|
37019
37130
|
});
|
|
37020
37131
|
}
|
|
@@ -37536,7 +37647,7 @@ function mergeData$A(existingData, newData) {
|
|
|
37536
37647
|
};
|
|
37537
37648
|
}
|
|
37538
37649
|
function ingest$I(astNode, state) {
|
|
37539
|
-
const { path, data, luvio } = state;
|
|
37650
|
+
const { path, data, timestamp, luvio } = state;
|
|
37540
37651
|
const key = keyBuilder$O(luvio, path);
|
|
37541
37652
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37542
37653
|
key,
|
|
@@ -37550,7 +37661,8 @@ function ingest$I(astNode, state) {
|
|
|
37550
37661
|
ttl: TTL$6,
|
|
37551
37662
|
namespace: keyPrefix,
|
|
37552
37663
|
representationName: "RecordEdge",
|
|
37553
|
-
version: VERSION$M
|
|
37664
|
+
version: VERSION$M,
|
|
37665
|
+
ingestionTimestamp: timestamp,
|
|
37554
37666
|
},
|
|
37555
37667
|
});
|
|
37556
37668
|
}
|
|
@@ -37760,7 +37872,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
|
|
|
37760
37872
|
}
|
|
37761
37873
|
}
|
|
37762
37874
|
function ingest$H(astNode, state) {
|
|
37763
|
-
const { path, data, luvio } = state;
|
|
37875
|
+
const { path, data, timestamp, luvio } = state;
|
|
37764
37876
|
const key = keyBuilder$N(luvio, path);
|
|
37765
37877
|
return ingestCursorConnectionType(astNode, state, {
|
|
37766
37878
|
key,
|
|
@@ -37776,7 +37888,8 @@ function ingest$H(astNode, state) {
|
|
|
37776
37888
|
ttl: TTL$9,
|
|
37777
37889
|
namespace: keyPrefix,
|
|
37778
37890
|
representationName: "RecordConnection",
|
|
37779
|
-
version: VERSION$L
|
|
37891
|
+
version: VERSION$L,
|
|
37892
|
+
ingestionTimestamp: timestamp,
|
|
37780
37893
|
},
|
|
37781
37894
|
});
|
|
37782
37895
|
}
|
|
@@ -37945,7 +38058,7 @@ function mergeData$y(existingData, newData) {
|
|
|
37945
38058
|
};
|
|
37946
38059
|
}
|
|
37947
38060
|
function ingest$G(astNode, state) {
|
|
37948
|
-
const { path, data, luvio } = state;
|
|
38061
|
+
const { path, data, timestamp, luvio } = state;
|
|
37949
38062
|
const key = keyBuilder$M(luvio, path);
|
|
37950
38063
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37951
38064
|
key,
|
|
@@ -37959,7 +38072,8 @@ function ingest$G(astNode, state) {
|
|
|
37959
38072
|
ttl: TTL$6,
|
|
37960
38073
|
namespace: keyPrefix,
|
|
37961
38074
|
representationName: "RecordQuery",
|
|
37962
|
-
version: VERSION$K
|
|
38075
|
+
version: VERSION$K,
|
|
38076
|
+
ingestionTimestamp: timestamp,
|
|
37963
38077
|
},
|
|
37964
38078
|
});
|
|
37965
38079
|
}
|
|
@@ -38089,7 +38203,7 @@ function mergeData$x(existingData, newData) {
|
|
|
38089
38203
|
};
|
|
38090
38204
|
}
|
|
38091
38205
|
function ingest$F(astNode, state) {
|
|
38092
|
-
const { path, data, luvio } = state;
|
|
38206
|
+
const { path, data, timestamp, luvio } = state;
|
|
38093
38207
|
const key = keyBuilder$L(luvio, path);
|
|
38094
38208
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38095
38209
|
key,
|
|
@@ -38103,7 +38217,8 @@ function ingest$F(astNode, state) {
|
|
|
38103
38217
|
ttl: TTL$6,
|
|
38104
38218
|
namespace: keyPrefix,
|
|
38105
38219
|
representationName: "BooleanAggregate",
|
|
38106
|
-
version: VERSION$J
|
|
38220
|
+
version: VERSION$J,
|
|
38221
|
+
ingestionTimestamp: timestamp,
|
|
38107
38222
|
},
|
|
38108
38223
|
});
|
|
38109
38224
|
}
|
|
@@ -38272,7 +38387,7 @@ function mergeData$w(existingData, newData) {
|
|
|
38272
38387
|
};
|
|
38273
38388
|
}
|
|
38274
38389
|
function ingest$E(astNode, state) {
|
|
38275
|
-
const { path, data, luvio } = state;
|
|
38390
|
+
const { path, data, timestamp, luvio } = state;
|
|
38276
38391
|
const key = keyBuilder$K(luvio, path);
|
|
38277
38392
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38278
38393
|
key,
|
|
@@ -38286,7 +38401,8 @@ function ingest$E(astNode, state) {
|
|
|
38286
38401
|
ttl: TTL$6,
|
|
38287
38402
|
namespace: keyPrefix,
|
|
38288
38403
|
representationName: "CurrencyAggregate",
|
|
38289
|
-
version: VERSION$I
|
|
38404
|
+
version: VERSION$I,
|
|
38405
|
+
ingestionTimestamp: timestamp,
|
|
38290
38406
|
},
|
|
38291
38407
|
});
|
|
38292
38408
|
}
|
|
@@ -38534,7 +38650,7 @@ function mergeData$v(existingData, newData) {
|
|
|
38534
38650
|
};
|
|
38535
38651
|
}
|
|
38536
38652
|
function ingest$D(astNode, state) {
|
|
38537
|
-
const { path, data, luvio } = state;
|
|
38653
|
+
const { path, data, timestamp, luvio } = state;
|
|
38538
38654
|
const key = keyBuilder$J(luvio, path);
|
|
38539
38655
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38540
38656
|
key,
|
|
@@ -38548,7 +38664,8 @@ function ingest$D(astNode, state) {
|
|
|
38548
38664
|
ttl: TTL$6,
|
|
38549
38665
|
namespace: keyPrefix,
|
|
38550
38666
|
representationName: "DateFunctionAggregation",
|
|
38551
|
-
version: VERSION$H
|
|
38667
|
+
version: VERSION$H,
|
|
38668
|
+
ingestionTimestamp: timestamp,
|
|
38552
38669
|
},
|
|
38553
38670
|
});
|
|
38554
38671
|
}
|
|
@@ -38682,7 +38799,7 @@ function mergeData$u(existingData, newData) {
|
|
|
38682
38799
|
};
|
|
38683
38800
|
}
|
|
38684
38801
|
function ingest$C(astNode, state) {
|
|
38685
|
-
const { path, data, luvio } = state;
|
|
38802
|
+
const { path, data, timestamp, luvio } = state;
|
|
38686
38803
|
const key = keyBuilder$I(luvio, path);
|
|
38687
38804
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38688
38805
|
key,
|
|
@@ -38696,7 +38813,8 @@ function ingest$C(astNode, state) {
|
|
|
38696
38813
|
ttl: TTL$6,
|
|
38697
38814
|
namespace: keyPrefix,
|
|
38698
38815
|
representationName: "DateAggregate",
|
|
38699
|
-
version: VERSION$G
|
|
38816
|
+
version: VERSION$G,
|
|
38817
|
+
ingestionTimestamp: timestamp,
|
|
38700
38818
|
},
|
|
38701
38819
|
});
|
|
38702
38820
|
}
|
|
@@ -39063,7 +39181,7 @@ function mergeData$t(existingData, newData) {
|
|
|
39063
39181
|
};
|
|
39064
39182
|
}
|
|
39065
39183
|
function ingest$B(astNode, state) {
|
|
39066
|
-
const { path, data, luvio } = state;
|
|
39184
|
+
const { path, data, timestamp, luvio } = state;
|
|
39067
39185
|
const key = keyBuilder$H(luvio, path);
|
|
39068
39186
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39069
39187
|
key,
|
|
@@ -39077,7 +39195,8 @@ function ingest$B(astNode, state) {
|
|
|
39077
39195
|
ttl: TTL$6,
|
|
39078
39196
|
namespace: keyPrefix,
|
|
39079
39197
|
representationName: "DoubleAggregate",
|
|
39080
|
-
version: VERSION$F
|
|
39198
|
+
version: VERSION$F,
|
|
39199
|
+
ingestionTimestamp: timestamp,
|
|
39081
39200
|
},
|
|
39082
39201
|
});
|
|
39083
39202
|
}
|
|
@@ -39316,7 +39435,7 @@ function mergeData$s(existingData, newData) {
|
|
|
39316
39435
|
};
|
|
39317
39436
|
}
|
|
39318
39437
|
function ingest$A(astNode, state) {
|
|
39319
|
-
const { path, data, luvio } = state;
|
|
39438
|
+
const { path, data, timestamp, luvio } = state;
|
|
39320
39439
|
const key = keyBuilder$G(luvio, path);
|
|
39321
39440
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39322
39441
|
key,
|
|
@@ -39330,7 +39449,8 @@ function ingest$A(astNode, state) {
|
|
|
39330
39449
|
ttl: TTL$6,
|
|
39331
39450
|
namespace: keyPrefix,
|
|
39332
39451
|
representationName: "EmailAggregate",
|
|
39333
|
-
version: VERSION$E
|
|
39452
|
+
version: VERSION$E,
|
|
39453
|
+
ingestionTimestamp: timestamp,
|
|
39334
39454
|
},
|
|
39335
39455
|
});
|
|
39336
39456
|
}
|
|
@@ -39561,7 +39681,7 @@ function mergeData$r(existingData, newData) {
|
|
|
39561
39681
|
};
|
|
39562
39682
|
}
|
|
39563
39683
|
function ingest$z(astNode, state) {
|
|
39564
|
-
const { path, data, luvio } = state;
|
|
39684
|
+
const { path, data, timestamp, luvio } = state;
|
|
39565
39685
|
const key = keyBuilder$F(luvio, path);
|
|
39566
39686
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39567
39687
|
key,
|
|
@@ -39575,7 +39695,8 @@ function ingest$z(astNode, state) {
|
|
|
39575
39695
|
ttl: TTL$6,
|
|
39576
39696
|
namespace: keyPrefix,
|
|
39577
39697
|
representationName: "IDAggregate",
|
|
39578
|
-
version: VERSION$D
|
|
39698
|
+
version: VERSION$D,
|
|
39699
|
+
ingestionTimestamp: timestamp,
|
|
39579
39700
|
},
|
|
39580
39701
|
});
|
|
39581
39702
|
}
|
|
@@ -39806,7 +39927,7 @@ function mergeData$q(existingData, newData) {
|
|
|
39806
39927
|
};
|
|
39807
39928
|
}
|
|
39808
39929
|
function ingest$y(astNode, state) {
|
|
39809
|
-
const { path, data, luvio } = state;
|
|
39930
|
+
const { path, data, timestamp, luvio } = state;
|
|
39810
39931
|
const key = keyBuilder$E(luvio, path);
|
|
39811
39932
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39812
39933
|
key,
|
|
@@ -39820,7 +39941,8 @@ function ingest$y(astNode, state) {
|
|
|
39820
39941
|
ttl: TTL$6,
|
|
39821
39942
|
namespace: keyPrefix,
|
|
39822
39943
|
representationName: "IntAggregate",
|
|
39823
|
-
version: VERSION$C
|
|
39944
|
+
version: VERSION$C,
|
|
39945
|
+
ingestionTimestamp: timestamp,
|
|
39824
39946
|
},
|
|
39825
39947
|
});
|
|
39826
39948
|
}
|
|
@@ -40079,7 +40201,7 @@ function mergeData$p(existingData, newData) {
|
|
|
40079
40201
|
};
|
|
40080
40202
|
}
|
|
40081
40203
|
function ingest$x(astNode, state) {
|
|
40082
|
-
const { path, data, luvio } = state;
|
|
40204
|
+
const { path, data, timestamp, luvio } = state;
|
|
40083
40205
|
const key = keyBuilder$D(luvio, path);
|
|
40084
40206
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40085
40207
|
key,
|
|
@@ -40093,7 +40215,8 @@ function ingest$x(astNode, state) {
|
|
|
40093
40215
|
ttl: TTL$6,
|
|
40094
40216
|
namespace: keyPrefix,
|
|
40095
40217
|
representationName: "LatitudeAggregate",
|
|
40096
|
-
version: VERSION$B
|
|
40218
|
+
version: VERSION$B,
|
|
40219
|
+
ingestionTimestamp: timestamp,
|
|
40097
40220
|
},
|
|
40098
40221
|
});
|
|
40099
40222
|
}
|
|
@@ -40335,7 +40458,7 @@ function mergeData$o(existingData, newData) {
|
|
|
40335
40458
|
};
|
|
40336
40459
|
}
|
|
40337
40460
|
function ingest$w(astNode, state) {
|
|
40338
|
-
const { path, data, luvio } = state;
|
|
40461
|
+
const { path, data, timestamp, luvio } = state;
|
|
40339
40462
|
const key = keyBuilder$C(luvio, path);
|
|
40340
40463
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40341
40464
|
key,
|
|
@@ -40349,7 +40472,8 @@ function ingest$w(astNode, state) {
|
|
|
40349
40472
|
ttl: TTL$6,
|
|
40350
40473
|
namespace: keyPrefix,
|
|
40351
40474
|
representationName: "LongitudeAggregate",
|
|
40352
|
-
version: VERSION$A
|
|
40475
|
+
version: VERSION$A,
|
|
40476
|
+
ingestionTimestamp: timestamp,
|
|
40353
40477
|
},
|
|
40354
40478
|
});
|
|
40355
40479
|
}
|
|
@@ -40591,7 +40715,7 @@ function mergeData$n(existingData, newData) {
|
|
|
40591
40715
|
};
|
|
40592
40716
|
}
|
|
40593
40717
|
function ingest$v(astNode, state) {
|
|
40594
|
-
const { path, data, luvio } = state;
|
|
40718
|
+
const { path, data, timestamp, luvio } = state;
|
|
40595
40719
|
const key = keyBuilder$B(luvio, path);
|
|
40596
40720
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40597
40721
|
key,
|
|
@@ -40605,7 +40729,8 @@ function ingest$v(astNode, state) {
|
|
|
40605
40729
|
ttl: TTL$6,
|
|
40606
40730
|
namespace: keyPrefix,
|
|
40607
40731
|
representationName: "LongAggregate",
|
|
40608
|
-
version: VERSION$z
|
|
40732
|
+
version: VERSION$z,
|
|
40733
|
+
ingestionTimestamp: timestamp,
|
|
40609
40734
|
},
|
|
40610
40735
|
});
|
|
40611
40736
|
}
|
|
@@ -40864,7 +40989,7 @@ function mergeData$m(existingData, newData) {
|
|
|
40864
40989
|
};
|
|
40865
40990
|
}
|
|
40866
40991
|
function ingest$u(astNode, state) {
|
|
40867
|
-
const { path, data, luvio } = state;
|
|
40992
|
+
const { path, data, timestamp, luvio } = state;
|
|
40868
40993
|
const key = keyBuilder$A(luvio, path);
|
|
40869
40994
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40870
40995
|
key,
|
|
@@ -40878,7 +41003,8 @@ function ingest$u(astNode, state) {
|
|
|
40878
41003
|
ttl: TTL$6,
|
|
40879
41004
|
namespace: keyPrefix,
|
|
40880
41005
|
representationName: "PhoneNumberAggregate",
|
|
40881
|
-
version: VERSION$y
|
|
41006
|
+
version: VERSION$y,
|
|
41007
|
+
ingestionTimestamp: timestamp,
|
|
40882
41008
|
},
|
|
40883
41009
|
});
|
|
40884
41010
|
}
|
|
@@ -41109,7 +41235,7 @@ function mergeData$l(existingData, newData) {
|
|
|
41109
41235
|
};
|
|
41110
41236
|
}
|
|
41111
41237
|
function ingest$t(astNode, state) {
|
|
41112
|
-
const { path, data, luvio } = state;
|
|
41238
|
+
const { path, data, timestamp, luvio } = state;
|
|
41113
41239
|
const key = keyBuilder$z(luvio, path);
|
|
41114
41240
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41115
41241
|
key,
|
|
@@ -41123,7 +41249,8 @@ function ingest$t(astNode, state) {
|
|
|
41123
41249
|
ttl: TTL$6,
|
|
41124
41250
|
namespace: keyPrefix,
|
|
41125
41251
|
representationName: "PicklistAggregate",
|
|
41126
|
-
version: VERSION$x
|
|
41252
|
+
version: VERSION$x,
|
|
41253
|
+
ingestionTimestamp: timestamp,
|
|
41127
41254
|
},
|
|
41128
41255
|
});
|
|
41129
41256
|
}
|
|
@@ -41360,7 +41487,7 @@ function mergeData$k(existingData, newData) {
|
|
|
41360
41487
|
};
|
|
41361
41488
|
}
|
|
41362
41489
|
function ingest$s(astNode, state) {
|
|
41363
|
-
const { path, data, luvio } = state;
|
|
41490
|
+
const { path, data, timestamp, luvio } = state;
|
|
41364
41491
|
const key = keyBuilder$y(luvio, path);
|
|
41365
41492
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41366
41493
|
key,
|
|
@@ -41374,7 +41501,8 @@ function ingest$s(astNode, state) {
|
|
|
41374
41501
|
ttl: TTL$6,
|
|
41375
41502
|
namespace: keyPrefix,
|
|
41376
41503
|
representationName: "TextAreaAggregate",
|
|
41377
|
-
version: VERSION$w
|
|
41504
|
+
version: VERSION$w,
|
|
41505
|
+
ingestionTimestamp: timestamp,
|
|
41378
41506
|
},
|
|
41379
41507
|
});
|
|
41380
41508
|
}
|
|
@@ -41605,7 +41733,7 @@ function mergeData$j(existingData, newData) {
|
|
|
41605
41733
|
};
|
|
41606
41734
|
}
|
|
41607
41735
|
function ingest$r(astNode, state) {
|
|
41608
|
-
const { path, data, luvio } = state;
|
|
41736
|
+
const { path, data, timestamp, luvio } = state;
|
|
41609
41737
|
const key = keyBuilder$x(luvio, path);
|
|
41610
41738
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41611
41739
|
key,
|
|
@@ -41619,7 +41747,8 @@ function ingest$r(astNode, state) {
|
|
|
41619
41747
|
ttl: TTL$6,
|
|
41620
41748
|
namespace: keyPrefix,
|
|
41621
41749
|
representationName: "TimeAggregate",
|
|
41622
|
-
version: VERSION$v
|
|
41750
|
+
version: VERSION$v,
|
|
41751
|
+
ingestionTimestamp: timestamp,
|
|
41623
41752
|
},
|
|
41624
41753
|
});
|
|
41625
41754
|
}
|
|
@@ -41794,7 +41923,7 @@ function mergeData$i(existingData, newData) {
|
|
|
41794
41923
|
};
|
|
41795
41924
|
}
|
|
41796
41925
|
function ingest$q(astNode, state) {
|
|
41797
|
-
const { path, data, luvio } = state;
|
|
41926
|
+
const { path, data, timestamp, luvio } = state;
|
|
41798
41927
|
const key = keyBuilder$w(luvio, path);
|
|
41799
41928
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41800
41929
|
key,
|
|
@@ -41808,7 +41937,8 @@ function ingest$q(astNode, state) {
|
|
|
41808
41937
|
ttl: TTL$6,
|
|
41809
41938
|
namespace: keyPrefix,
|
|
41810
41939
|
representationName: "UrlAggregate",
|
|
41811
|
-
version: VERSION$u
|
|
41940
|
+
version: VERSION$u,
|
|
41941
|
+
ingestionTimestamp: timestamp,
|
|
41812
41942
|
},
|
|
41813
41943
|
});
|
|
41814
41944
|
}
|
|
@@ -42162,7 +42292,7 @@ function mergeData$h(existingData, newData) {
|
|
|
42162
42292
|
};
|
|
42163
42293
|
}
|
|
42164
42294
|
function ingest$p(astNode, state) {
|
|
42165
|
-
const { path, data, luvio } = state;
|
|
42295
|
+
const { path, data, timestamp, luvio } = state;
|
|
42166
42296
|
const key = keyBuilder$v(luvio, path);
|
|
42167
42297
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42168
42298
|
key,
|
|
@@ -42176,7 +42306,8 @@ function ingest$p(astNode, state) {
|
|
|
42176
42306
|
ttl: TTL$6,
|
|
42177
42307
|
namespace: keyPrefix,
|
|
42178
42308
|
representationName: "RecordAggregate",
|
|
42179
|
-
version: VERSION$t
|
|
42309
|
+
version: VERSION$t,
|
|
42310
|
+
ingestionTimestamp: timestamp,
|
|
42180
42311
|
},
|
|
42181
42312
|
});
|
|
42182
42313
|
}
|
|
@@ -42530,7 +42661,7 @@ function mergeData$g(existingData, newData) {
|
|
|
42530
42661
|
};
|
|
42531
42662
|
}
|
|
42532
42663
|
function ingest$o(astNode, state) {
|
|
42533
|
-
const { path, data, luvio } = state;
|
|
42664
|
+
const { path, data, timestamp, luvio } = state;
|
|
42534
42665
|
const key = keyBuilder$u(luvio, path);
|
|
42535
42666
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42536
42667
|
key,
|
|
@@ -42544,7 +42675,8 @@ function ingest$o(astNode, state) {
|
|
|
42544
42675
|
ttl: TTL$6,
|
|
42545
42676
|
namespace: keyPrefix,
|
|
42546
42677
|
representationName: "RecordResult",
|
|
42547
|
-
version: VERSION$s
|
|
42678
|
+
version: VERSION$s,
|
|
42679
|
+
ingestionTimestamp: timestamp,
|
|
42548
42680
|
},
|
|
42549
42681
|
});
|
|
42550
42682
|
}
|
|
@@ -42692,7 +42824,7 @@ function mergeData$f(existingData, newData) {
|
|
|
42692
42824
|
};
|
|
42693
42825
|
}
|
|
42694
42826
|
function ingest$n(astNode, state) {
|
|
42695
|
-
const { path, data, luvio } = state;
|
|
42827
|
+
const { path, data, timestamp, luvio } = state;
|
|
42696
42828
|
const key = keyBuilder$t(luvio, path);
|
|
42697
42829
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42698
42830
|
key,
|
|
@@ -42706,7 +42838,8 @@ function ingest$n(astNode, state) {
|
|
|
42706
42838
|
ttl: TTL$6,
|
|
42707
42839
|
namespace: keyPrefix,
|
|
42708
42840
|
representationName: "RecordAggregateEdge",
|
|
42709
|
-
version: VERSION$r
|
|
42841
|
+
version: VERSION$r,
|
|
42842
|
+
ingestionTimestamp: timestamp,
|
|
42710
42843
|
},
|
|
42711
42844
|
});
|
|
42712
42845
|
}
|
|
@@ -42915,7 +43048,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
|
|
|
42915
43048
|
}
|
|
42916
43049
|
}
|
|
42917
43050
|
function ingest$m(astNode, state) {
|
|
42918
|
-
const { path, data, luvio } = state;
|
|
43051
|
+
const { path, data, timestamp, luvio } = state;
|
|
42919
43052
|
const key = keyBuilder$s(luvio, path);
|
|
42920
43053
|
return ingestCursorConnectionType(astNode, state, {
|
|
42921
43054
|
key,
|
|
@@ -42931,7 +43064,8 @@ function ingest$m(astNode, state) {
|
|
|
42931
43064
|
ttl: TTL$6,
|
|
42932
43065
|
namespace: keyPrefix,
|
|
42933
43066
|
representationName: "RecordAggregateConnection",
|
|
42934
|
-
version: VERSION$q
|
|
43067
|
+
version: VERSION$q,
|
|
43068
|
+
ingestionTimestamp: timestamp,
|
|
42935
43069
|
},
|
|
42936
43070
|
});
|
|
42937
43071
|
}
|
|
@@ -43148,7 +43282,7 @@ function mergeData$d(existingData, newData) {
|
|
|
43148
43282
|
};
|
|
43149
43283
|
}
|
|
43150
43284
|
function ingest$l(astNode, state) {
|
|
43151
|
-
const { path, data, luvio } = state;
|
|
43285
|
+
const { path, data, timestamp, luvio } = state;
|
|
43152
43286
|
const key = keyBuilder$r(luvio, path);
|
|
43153
43287
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43154
43288
|
key,
|
|
@@ -43162,7 +43296,8 @@ function ingest$l(astNode, state) {
|
|
|
43162
43296
|
ttl: TTL$6,
|
|
43163
43297
|
namespace: keyPrefix,
|
|
43164
43298
|
representationName: "RecordQueryAggregate",
|
|
43165
|
-
version: VERSION$p
|
|
43299
|
+
version: VERSION$p,
|
|
43300
|
+
ingestionTimestamp: timestamp,
|
|
43166
43301
|
},
|
|
43167
43302
|
});
|
|
43168
43303
|
}
|
|
@@ -43292,7 +43427,7 @@ function mergeData$c(existingData, newData) {
|
|
|
43292
43427
|
};
|
|
43293
43428
|
}
|
|
43294
43429
|
function ingest$k(astNode, state) {
|
|
43295
|
-
const { path, data, luvio } = state;
|
|
43430
|
+
const { path, data, timestamp, luvio } = state;
|
|
43296
43431
|
const key = keyBuilder$q(luvio, path);
|
|
43297
43432
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43298
43433
|
key,
|
|
@@ -43306,7 +43441,8 @@ function ingest$k(astNode, state) {
|
|
|
43306
43441
|
ttl: TTL$6,
|
|
43307
43442
|
namespace: keyPrefix,
|
|
43308
43443
|
representationName: "ChildRelationship",
|
|
43309
|
-
version: VERSION$o
|
|
43444
|
+
version: VERSION$o,
|
|
43445
|
+
ingestionTimestamp: timestamp,
|
|
43310
43446
|
},
|
|
43311
43447
|
});
|
|
43312
43448
|
}
|
|
@@ -43484,7 +43620,7 @@ function mergeData$b(existingData, newData) {
|
|
|
43484
43620
|
};
|
|
43485
43621
|
}
|
|
43486
43622
|
function ingest$j(astNode, state) {
|
|
43487
|
-
const { path, data, luvio } = state;
|
|
43623
|
+
const { path, data, timestamp, luvio } = state;
|
|
43488
43624
|
const key = keyBuilder$p(luvio, path);
|
|
43489
43625
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43490
43626
|
key,
|
|
@@ -43498,7 +43634,8 @@ function ingest$j(astNode, state) {
|
|
|
43498
43634
|
ttl: TTL$6,
|
|
43499
43635
|
namespace: keyPrefix,
|
|
43500
43636
|
representationName: "DependentField",
|
|
43501
|
-
version: VERSION$n
|
|
43637
|
+
version: VERSION$n,
|
|
43638
|
+
ingestionTimestamp: timestamp,
|
|
43502
43639
|
},
|
|
43503
43640
|
});
|
|
43504
43641
|
}
|
|
@@ -43623,7 +43760,7 @@ function mergeData$a(existingData, newData) {
|
|
|
43623
43760
|
};
|
|
43624
43761
|
}
|
|
43625
43762
|
function ingest$i(astNode, state) {
|
|
43626
|
-
const { path, data, luvio } = state;
|
|
43763
|
+
const { path, data, timestamp, luvio } = state;
|
|
43627
43764
|
const key = keyBuilder$o(luvio, path);
|
|
43628
43765
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43629
43766
|
key,
|
|
@@ -43637,7 +43774,8 @@ function ingest$i(astNode, state) {
|
|
|
43637
43774
|
ttl: TTL$6,
|
|
43638
43775
|
namespace: keyPrefix,
|
|
43639
43776
|
representationName: "FilteredLookupInfo",
|
|
43640
|
-
version: VERSION$m
|
|
43777
|
+
version: VERSION$m,
|
|
43778
|
+
ingestionTimestamp: timestamp,
|
|
43641
43779
|
},
|
|
43642
43780
|
});
|
|
43643
43781
|
}
|
|
@@ -43777,7 +43915,7 @@ function mergeData$9(existingData, newData) {
|
|
|
43777
43915
|
};
|
|
43778
43916
|
}
|
|
43779
43917
|
function ingest$h(astNode, state) {
|
|
43780
|
-
const { path, data, luvio } = state;
|
|
43918
|
+
const { path, data, timestamp, luvio } = state;
|
|
43781
43919
|
const key = keyBuilder$n(luvio, path);
|
|
43782
43920
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43783
43921
|
key,
|
|
@@ -43791,7 +43929,8 @@ function ingest$h(astNode, state) {
|
|
|
43791
43929
|
ttl: TTL$6,
|
|
43792
43930
|
namespace: keyPrefix,
|
|
43793
43931
|
representationName: "ReferenceToInfo",
|
|
43794
|
-
version: VERSION$l
|
|
43932
|
+
version: VERSION$l,
|
|
43933
|
+
ingestionTimestamp: timestamp,
|
|
43795
43934
|
},
|
|
43796
43935
|
});
|
|
43797
43936
|
}
|
|
@@ -43951,7 +44090,7 @@ function mergeData$8(existingData, newData) {
|
|
|
43951
44090
|
};
|
|
43952
44091
|
}
|
|
43953
44092
|
function ingest$g(astNode, state) {
|
|
43954
|
-
const { path, data, luvio } = state;
|
|
44093
|
+
const { path, data, timestamp, luvio } = state;
|
|
43955
44094
|
const key = keyBuilder$m(luvio, path);
|
|
43956
44095
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43957
44096
|
key,
|
|
@@ -43965,7 +44104,8 @@ function ingest$g(astNode, state) {
|
|
|
43965
44104
|
ttl: TTL$6,
|
|
43966
44105
|
namespace: keyPrefix,
|
|
43967
44106
|
representationName: "Field",
|
|
43968
|
-
version: VERSION$k
|
|
44107
|
+
version: VERSION$k,
|
|
44108
|
+
ingestionTimestamp: timestamp,
|
|
43969
44109
|
},
|
|
43970
44110
|
});
|
|
43971
44111
|
}
|
|
@@ -44343,7 +44483,7 @@ function mergeData$7(existingData, newData) {
|
|
|
44343
44483
|
};
|
|
44344
44484
|
}
|
|
44345
44485
|
function ingest$f(astNode, state) {
|
|
44346
|
-
const { path, data, luvio } = state;
|
|
44486
|
+
const { path, data, timestamp, luvio } = state;
|
|
44347
44487
|
const key = keyBuilder$l(luvio, path);
|
|
44348
44488
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44349
44489
|
key,
|
|
@@ -44357,7 +44497,8 @@ function ingest$f(astNode, state) {
|
|
|
44357
44497
|
ttl: TTL$6,
|
|
44358
44498
|
namespace: keyPrefix,
|
|
44359
44499
|
representationName: "RecordTypeInfo",
|
|
44360
|
-
version: VERSION$j
|
|
44500
|
+
version: VERSION$j,
|
|
44501
|
+
ingestionTimestamp: timestamp,
|
|
44361
44502
|
},
|
|
44362
44503
|
});
|
|
44363
44504
|
}
|
|
@@ -44518,7 +44659,7 @@ function mergeData$6(existingData, newData) {
|
|
|
44518
44659
|
};
|
|
44519
44660
|
}
|
|
44520
44661
|
function ingest$e(astNode, state) {
|
|
44521
|
-
const { path, data, luvio } = state;
|
|
44662
|
+
const { path, data, timestamp, luvio } = state;
|
|
44522
44663
|
const key = keyBuilder$k(luvio, path);
|
|
44523
44664
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44524
44665
|
key,
|
|
@@ -44532,7 +44673,8 @@ function ingest$e(astNode, state) {
|
|
|
44532
44673
|
ttl: TTL$6,
|
|
44533
44674
|
namespace: keyPrefix,
|
|
44534
44675
|
representationName: "ThemeInfo",
|
|
44535
|
-
version: VERSION$i
|
|
44676
|
+
version: VERSION$i,
|
|
44677
|
+
ingestionTimestamp: timestamp,
|
|
44536
44678
|
},
|
|
44537
44679
|
});
|
|
44538
44680
|
}
|
|
@@ -44658,7 +44800,7 @@ function mergeData$5(existingData, newData) {
|
|
|
44658
44800
|
};
|
|
44659
44801
|
}
|
|
44660
44802
|
function ingest$d(astNode, state) {
|
|
44661
|
-
const { path, data, luvio } = state;
|
|
44803
|
+
const { path, data, timestamp, luvio } = state;
|
|
44662
44804
|
const key = keyBuilder$j(luvio, path);
|
|
44663
44805
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44664
44806
|
key,
|
|
@@ -44672,7 +44814,8 @@ function ingest$d(astNode, state) {
|
|
|
44672
44814
|
ttl: TTL$8,
|
|
44673
44815
|
namespace: keyPrefix,
|
|
44674
44816
|
representationName: "ObjectInfo",
|
|
44675
|
-
version: VERSION$h
|
|
44817
|
+
version: VERSION$h,
|
|
44818
|
+
ingestionTimestamp: timestamp,
|
|
44676
44819
|
},
|
|
44677
44820
|
});
|
|
44678
44821
|
}
|
|
@@ -45062,7 +45205,7 @@ function mergeData$4(existingData, newData) {
|
|
|
45062
45205
|
};
|
|
45063
45206
|
}
|
|
45064
45207
|
function ingest$c(astNode, state) {
|
|
45065
|
-
const { path, data, luvio } = state;
|
|
45208
|
+
const { path, data, timestamp, luvio } = state;
|
|
45066
45209
|
const key = keyBuilder$i(luvio, path);
|
|
45067
45210
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45068
45211
|
key,
|
|
@@ -45076,7 +45219,8 @@ function ingest$c(astNode, state) {
|
|
|
45076
45219
|
ttl: TTL$6,
|
|
45077
45220
|
namespace: keyPrefix,
|
|
45078
45221
|
representationName: "ListColumn",
|
|
45079
|
-
version: VERSION$g
|
|
45222
|
+
version: VERSION$g,
|
|
45223
|
+
ingestionTimestamp: timestamp,
|
|
45080
45224
|
},
|
|
45081
45225
|
});
|
|
45082
45226
|
}
|
|
@@ -45222,7 +45366,7 @@ function mergeData$3(existingData, newData) {
|
|
|
45222
45366
|
};
|
|
45223
45367
|
}
|
|
45224
45368
|
function ingest$b(astNode, state) {
|
|
45225
|
-
const { path, data, luvio } = state;
|
|
45369
|
+
const { path, data, timestamp, luvio } = state;
|
|
45226
45370
|
const key = keyBuilder$h(luvio, path);
|
|
45227
45371
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45228
45372
|
key,
|
|
@@ -45236,7 +45380,8 @@ function ingest$b(astNode, state) {
|
|
|
45236
45380
|
ttl: TTL$6,
|
|
45237
45381
|
namespace: keyPrefix,
|
|
45238
45382
|
representationName: "ListOrder",
|
|
45239
|
-
version: VERSION$f
|
|
45383
|
+
version: VERSION$f,
|
|
45384
|
+
ingestionTimestamp: timestamp,
|
|
45240
45385
|
},
|
|
45241
45386
|
});
|
|
45242
45387
|
}
|
|
@@ -45371,7 +45516,7 @@ function mergeData$2(existingData, newData) {
|
|
|
45371
45516
|
};
|
|
45372
45517
|
}
|
|
45373
45518
|
function ingest$a(astNode, state) {
|
|
45374
|
-
const { path, data, luvio } = state;
|
|
45519
|
+
const { path, data, timestamp, luvio } = state;
|
|
45375
45520
|
const key = keyBuilder$g(luvio, path);
|
|
45376
45521
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45377
45522
|
key,
|
|
@@ -45385,7 +45530,8 @@ function ingest$a(astNode, state) {
|
|
|
45385
45530
|
ttl: TTL$7,
|
|
45386
45531
|
namespace: keyPrefix,
|
|
45387
45532
|
representationName: "RelatedListInfo",
|
|
45388
|
-
version: VERSION$e
|
|
45533
|
+
version: VERSION$e,
|
|
45534
|
+
ingestionTimestamp: timestamp,
|
|
45389
45535
|
},
|
|
45390
45536
|
});
|
|
45391
45537
|
}
|
|
@@ -45607,7 +45753,7 @@ function mergeData$1(existingData, newData) {
|
|
|
45607
45753
|
};
|
|
45608
45754
|
}
|
|
45609
45755
|
function ingest$9(astNode, state) {
|
|
45610
|
-
const { path, data, luvio } = state;
|
|
45756
|
+
const { path, data, timestamp, luvio } = state;
|
|
45611
45757
|
const key = keyBuilder$f(luvio, path);
|
|
45612
45758
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45613
45759
|
key,
|
|
@@ -45621,7 +45767,8 @@ function ingest$9(astNode, state) {
|
|
|
45621
45767
|
ttl: TTL$6,
|
|
45622
45768
|
namespace: keyPrefix,
|
|
45623
45769
|
representationName: "UIAPI",
|
|
45624
|
-
version: VERSION$d
|
|
45770
|
+
version: VERSION$d,
|
|
45771
|
+
ingestionTimestamp: timestamp,
|
|
45625
45772
|
},
|
|
45626
45773
|
});
|
|
45627
45774
|
}
|
|
@@ -45845,7 +45992,7 @@ function mergeData(existingData, newData) {
|
|
|
45845
45992
|
};
|
|
45846
45993
|
}
|
|
45847
45994
|
function ingest$8(astNode, state) {
|
|
45848
|
-
const { path, data, luvio } = state;
|
|
45995
|
+
const { path, data, timestamp, luvio } = state;
|
|
45849
45996
|
const key = keyBuilder$e(luvio, astNode, state.variables, state.fragments);
|
|
45850
45997
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45851
45998
|
key,
|
|
@@ -45859,7 +46006,8 @@ function ingest$8(astNode, state) {
|
|
|
45859
46006
|
ttl: TTL$6,
|
|
45860
46007
|
namespace: keyPrefix,
|
|
45861
46008
|
representationName: "Query",
|
|
45862
|
-
version: VERSION$c
|
|
46009
|
+
version: VERSION$c,
|
|
46010
|
+
ingestionTimestamp: timestamp,
|
|
45863
46011
|
},
|
|
45864
46012
|
});
|
|
45865
46013
|
}
|
|
@@ -49798,7 +49946,7 @@ function validate$a(obj, path = 'RecordCreateDefaultRecordRepresentation') {
|
|
|
49798
49946
|
const path_recordTypeInfo = path + '.recordTypeInfo';
|
|
49799
49947
|
let obj_recordTypeInfo_union0 = null;
|
|
49800
49948
|
const obj_recordTypeInfo_union0_error = (() => {
|
|
49801
|
-
const referencepath_recordTypeInfoValidationError = validate$
|
|
49949
|
+
const referencepath_recordTypeInfoValidationError = validate$1R(obj_recordTypeInfo, path_recordTypeInfo);
|
|
49802
49950
|
if (referencepath_recordTypeInfoValidationError !== null) {
|
|
49803
49951
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfo + '")\n';
|
|
49804
49952
|
message += referencepath_recordTypeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -52767,4 +52915,4 @@ ensureRegisteredOnce({
|
|
|
52767
52915
|
instrument,
|
|
52768
52916
|
});
|
|
52769
52917
|
|
|
52770
|
-
export { API_NAMESPACE, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$3 as NotifyRecordUpdateAvailable, RepresentationType$N as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$S as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$X as RecordRepresentationRepresentationType, TTL$D as RecordRepresentationTTL, RepresentationType$X as RecordRepresentationType, VERSION$2g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, deleteListInfoAdapterFactory, factory$3 as deleteRecordAdapterFactory, factory$f as executeBatchRecordOperationsAdapterFactory, extractRecordIdFromStoreKey, generateRecordInputForCreate, generateRecordInputForUpdate, getActionOverridesAdapterFactory, getAllAppsAdapterFactory, getAppDetailsAdapterFactory, getDuplicateConfigurationAdapterFactory, getDuplicatesAdapterFactory, getFieldDisplayValue$1 as getFieldDisplayValue, getFieldValue, getFlexipageFormulaOverridesAdapterFactory, getGlobalActionsAdapterFactory, getKeywordSearchResultsAdapterFactory, getLayoutAdapterFactory, getLayoutUserStateAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByNameAdapterFactory, getListObjectInfoAdapterFactory, getListPreferencesAdapterFactory, factory$a as getListRecordsByNameAdapterFactory, factory$j as getListUiAdapterFactory, getListUiByApiNameAdapterFactory, getListUiByListViewIdAdapterFactory, getListViewSummaryCollectionAdapterFactory, getLookupActionsAdapterFactory, getLookupMetadataAdapterFactory, factory$9 as getLookupRecordsAdapterFactory, factory$k as getMruListUiAdapterFactory, getNavItemsAdapterFactory, getObjectCreateActionsAdapterFactory, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfosAdapterFactory, getPicklistValuesAdapterFactory, getPicklistValuesByRecordTypeAdapterFactory, getQuickActionDefaultsAdapterFactory, getQuickActionLayoutAdapterFactory, getRecordActionsAdapterFactory, factory$h as getRecordAdapterFactory, getRecordAvatarsAdapterFactory, factory$7 as getRecordCreateDefaultsAdapterFactory, getRecordEditActionsAdapterFactory, getRecordId18, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$i as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$1Y as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$g as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$1x as ingestDuplicateConfiguration, ingest$1r as ingestDuplicatesRepresentation, ingest$1W as ingestListInfo, ingest$1S as ingestListRecords, ingest$1O as ingestObjectInfo, ingest$1I as ingestQuickActionExecutionRepresentation, ingest$1T as ingestRecord, ingest$1L as ingestRecordUi, ingest$1j as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1g as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1i as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$A as keyBuilderFromTypeRecordRepresentation, keyBuilder$2Z as keyBuilderObjectInfo, keyBuilder$2S as keyBuilderQuickActionExecutionRepresentation, keyBuilder$3c as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, registerPrefetcher, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, updateListPreferencesAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
|
|
52918
|
+
export { API_NAMESPACE, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$3 as NotifyRecordUpdateAvailable, RepresentationType$N as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$S as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$X as RecordRepresentationRepresentationType, TTL$D as RecordRepresentationTTL, RepresentationType$X as RecordRepresentationType, VERSION$2g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, getFieldApiNamesArray as coerceFieldIdArray, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, deleteListInfoAdapterFactory, factory$3 as deleteRecordAdapterFactory, factory$f as executeBatchRecordOperationsAdapterFactory, extractRecordIdFromStoreKey, generateRecordInputForCreate, generateRecordInputForUpdate, getActionOverridesAdapterFactory, getAllAppsAdapterFactory, getAppDetailsAdapterFactory, getDuplicateConfigurationAdapterFactory, getDuplicatesAdapterFactory, getFieldDisplayValue$1 as getFieldDisplayValue, getFieldValue, getFlexipageFormulaOverridesAdapterFactory, getGlobalActionsAdapterFactory, getKeywordSearchResultsAdapterFactory, getLayoutAdapterFactory, getLayoutUserStateAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByNameAdapterFactory, getListObjectInfoAdapterFactory, getListPreferencesAdapterFactory, factory$a as getListRecordsByNameAdapterFactory, factory$j as getListUiAdapterFactory, getListUiByApiNameAdapterFactory, getListUiByListViewIdAdapterFactory, getListViewSummaryCollectionAdapterFactory, getLookupActionsAdapterFactory, getLookupMetadataAdapterFactory, factory$9 as getLookupRecordsAdapterFactory, factory$k as getMruListUiAdapterFactory, getNavItemsAdapterFactory, getObjectCreateActionsAdapterFactory, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfosAdapterFactory, getPicklistValuesAdapterFactory, getPicklistValuesByRecordTypeAdapterFactory, getQuickActionDefaultsAdapterFactory, getQuickActionLayoutAdapterFactory, getRecordActionsAdapterFactory, factory$h as getRecordAdapterFactory, getRecordAvatarsAdapterFactory, factory$7 as getRecordCreateDefaultsAdapterFactory, getRecordEditActionsAdapterFactory, getRecordId18, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$i as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$1Y as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$g as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$1x as ingestDuplicateConfiguration, ingest$1r as ingestDuplicatesRepresentation, ingest$1W as ingestListInfo, ingest$1S as ingestListRecords, ingest$1O as ingestObjectInfo, ingest$1I as ingestQuickActionExecutionRepresentation, ingest$1T as ingestRecord, ingest$1L as ingestRecordUi, ingest$1j as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1g as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1i as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$A as keyBuilderFromTypeRecordRepresentation, keyBuilder$2Z as keyBuilderObjectInfo, keyBuilder$2S as keyBuilderQuickActionExecutionRepresentation, keyBuilder$3c as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, registerPrefetcher, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, updateListPreferencesAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
|