@salesforce/lwc-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/main.js +547 -396
- package/package.json +4 -4
package/dist/main.js
CHANGED
|
@@ -24,7 +24,9 @@ const WeakSetCtor = WeakSet;
|
|
|
24
24
|
const deeplyFrozen = new WeakSetCtor();
|
|
25
25
|
function deepFreeze(value) {
|
|
26
26
|
// No need to freeze primitives or already frozen stuff
|
|
27
|
-
if (typeof value !== 'object' ||
|
|
27
|
+
if (typeof value !== 'object' ||
|
|
28
|
+
value === null ||
|
|
29
|
+
deeplyFrozen.has(value)) {
|
|
28
30
|
return;
|
|
29
31
|
}
|
|
30
32
|
deeplyFrozen.add(value);
|
|
@@ -522,6 +524,7 @@ function ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normal
|
|
|
522
524
|
namespace,
|
|
523
525
|
version,
|
|
524
526
|
representationName,
|
|
527
|
+
ingestionTimestamp: timestamp,
|
|
525
528
|
};
|
|
526
529
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
527
530
|
}
|
|
@@ -569,7 +572,7 @@ function createResourceParamsImpl(config, configMetadata) {
|
|
|
569
572
|
}
|
|
570
573
|
return resourceParams;
|
|
571
574
|
}
|
|
572
|
-
// engine version: 0.154.
|
|
575
|
+
// engine version: 0.154.7-dev8-fca5df34
|
|
573
576
|
|
|
574
577
|
/**
|
|
575
578
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -7772,15 +7775,17 @@ function splitQualifiedFieldApiName(fieldApiName) {
|
|
|
7772
7775
|
/**
|
|
7773
7776
|
* Returns the field API name, qualified with an object name if possible.
|
|
7774
7777
|
* @param value The value from which to get the qualified field API name.
|
|
7778
|
+
* @param onlyQualifiedFieldNames - Whether or not this function should skip fieldApiName that do not include the delimiter '.'
|
|
7775
7779
|
* @return The qualified field API name.
|
|
7776
7780
|
*/
|
|
7777
|
-
function getFieldApiName(value) {
|
|
7781
|
+
function getFieldApiName(value, onlyQualifiedFieldNames = false) {
|
|
7778
7782
|
// Note: tightening validation logic changes behavior from userland getting
|
|
7779
7783
|
// a server-provided error to the adapter noop'ing. In 224 we decided to not
|
|
7780
|
-
// change the behavior.
|
|
7784
|
+
// change the behavior. In 250 we decided to add the 'onlyQualifiedFieldName' flag to tighten the logic
|
|
7785
|
+
// optionally to avoid issues with persisted invalid field names.
|
|
7781
7786
|
if (isString(value)) {
|
|
7782
7787
|
const trimmed = value.trim();
|
|
7783
|
-
if (trimmed.length > 0) {
|
|
7788
|
+
if (trimmed.length > 0 && (onlyQualifiedFieldNames ? trimmed.indexOf('.') > -1 : true)) {
|
|
7784
7789
|
return trimmed;
|
|
7785
7790
|
}
|
|
7786
7791
|
}
|
|
@@ -7793,15 +7798,19 @@ function getFieldApiName(value) {
|
|
|
7793
7798
|
/**
|
|
7794
7799
|
* Returns the field API name.
|
|
7795
7800
|
* @param value The value from which to get the field API name.
|
|
7801
|
+
* @param options Option bag. onlyQualifiedFieldNames is a boolean that allows this function to skip returning invalid FieldApiNames.
|
|
7796
7802
|
* @returns The field API name.
|
|
7797
7803
|
*/
|
|
7798
|
-
function getFieldApiNamesArray(value) {
|
|
7804
|
+
function getFieldApiNamesArray(value, options = { onlyQualifiedFieldNames: false }) {
|
|
7799
7805
|
const valueArray = isArray(value) ? value : [value];
|
|
7800
7806
|
const array = [];
|
|
7801
7807
|
for (let i = 0, len = valueArray.length; i < len; i += 1) {
|
|
7802
7808
|
const item = valueArray[i];
|
|
7803
|
-
const apiName = getFieldApiName(item);
|
|
7809
|
+
const apiName = getFieldApiName(item, options.onlyQualifiedFieldNames);
|
|
7804
7810
|
if (apiName === undefined) {
|
|
7811
|
+
if (options.onlyQualifiedFieldNames) {
|
|
7812
|
+
continue; // Just skips invalid field names rather than failing to return an array at all
|
|
7813
|
+
}
|
|
7805
7814
|
return undefined;
|
|
7806
7815
|
}
|
|
7807
7816
|
push.call(array, apiName);
|
|
@@ -7857,7 +7866,7 @@ function assignMetadataLink(entry, metadataKey) {
|
|
|
7857
7866
|
}
|
|
7858
7867
|
|
|
7859
7868
|
const VERSION$2v = "623aa9ce3a11031e35faf5671a41746e";
|
|
7860
|
-
function validate$
|
|
7869
|
+
function validate$23(obj, path = 'ListFilterByInfoRepresentation') {
|
|
7861
7870
|
const v_error = (() => {
|
|
7862
7871
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
7863
7872
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -7920,7 +7929,7 @@ const select$37 = function ListFilterByInfoRepresentationSelect() {
|
|
|
7920
7929
|
};
|
|
7921
7930
|
|
|
7922
7931
|
const VERSION$2u = "f98dc7dec10408a9648ef8e5b37002a3";
|
|
7923
|
-
function validate$
|
|
7932
|
+
function validate$22(obj, path = 'ListInlineEditDetailsRepresentation') {
|
|
7924
7933
|
const v_error = (() => {
|
|
7925
7934
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
7926
7935
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -7999,7 +8008,7 @@ const select$36 = function ListInlineEditDetailsRepresentationSelect() {
|
|
|
7999
8008
|
};
|
|
8000
8009
|
|
|
8001
8010
|
const VERSION$2t = "76042ff4af603b2ac0ec69fa0bd12046";
|
|
8002
|
-
function validate$
|
|
8011
|
+
function validate$21(obj, path = 'ListReferenceRepresentation') {
|
|
8003
8012
|
const v_error = (() => {
|
|
8004
8013
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8005
8014
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8119,7 +8128,7 @@ function equals$18(existing, incoming) {
|
|
|
8119
8128
|
}
|
|
8120
8129
|
|
|
8121
8130
|
const VERSION$2s = "f1519bef57e70ab7c5ef160dc5ff0c47";
|
|
8122
|
-
function validate$
|
|
8131
|
+
function validate$20(obj, path = 'ListInfoShareRepresentation') {
|
|
8123
8132
|
const v_error = (() => {
|
|
8124
8133
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8125
8134
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8156,7 +8165,7 @@ const select$34 = function ListInfoShareRepresentationSelect() {
|
|
|
8156
8165
|
};
|
|
8157
8166
|
|
|
8158
8167
|
const VERSION$2r = "561657f32721ec1dac1601575b029640";
|
|
8159
|
-
function validate$
|
|
8168
|
+
function validate$1$(obj, path = 'ListInfoShareCategoryRepresentation') {
|
|
8160
8169
|
const v_error = (() => {
|
|
8161
8170
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8162
8171
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8174,7 +8183,7 @@ function validate$1_(obj, path = 'ListInfoShareCategoryRepresentation') {
|
|
|
8174
8183
|
for (let i = 0; i < obj_shares.length; i++) {
|
|
8175
8184
|
const obj_shares_item = obj_shares[i];
|
|
8176
8185
|
const path_shares_item = path_shares + '[' + i + ']';
|
|
8177
|
-
const referencepath_shares_itemValidationError = validate$
|
|
8186
|
+
const referencepath_shares_itemValidationError = validate$20(obj_shares_item, path_shares_item);
|
|
8178
8187
|
if (referencepath_shares_itemValidationError !== null) {
|
|
8179
8188
|
let message = 'Object doesn\'t match ListInfoShareRepresentation (at "' + path_shares_item + '")\n';
|
|
8180
8189
|
message += referencepath_shares_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8206,7 +8215,7 @@ const select$33 = function ListInfoShareCategoryRepresentationSelect() {
|
|
|
8206
8215
|
};
|
|
8207
8216
|
|
|
8208
8217
|
const VERSION$2q = "32def9b631252c12b91a8209c1f49f5a";
|
|
8209
|
-
function validate$
|
|
8218
|
+
function validate$1_(obj, path = 'ListOrderByInfoRepresentation') {
|
|
8210
8219
|
const v_error = (() => {
|
|
8211
8220
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8212
8221
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8291,7 +8300,7 @@ function equals$17(existing, incoming) {
|
|
|
8291
8300
|
}
|
|
8292
8301
|
|
|
8293
8302
|
const VERSION$2p = "2634258f216db34315c06d759a35676d";
|
|
8294
|
-
function validate$
|
|
8303
|
+
function validate$1Z(obj, path = 'ListScopeEntityRepresentation') {
|
|
8295
8304
|
const v_error = (() => {
|
|
8296
8305
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8297
8306
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8328,7 +8337,7 @@ const select$31 = function ListScopeEntityRepresentationSelect() {
|
|
|
8328
8337
|
};
|
|
8329
8338
|
|
|
8330
8339
|
const VERSION$2o = "3b85c5a08d50ce328481b9f8ab56127b";
|
|
8331
|
-
function validate$
|
|
8340
|
+
function validate$1Y(obj, path = 'ListScopeRelatedEntityRepresentation') {
|
|
8332
8341
|
const v_error = (() => {
|
|
8333
8342
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8334
8343
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8374,7 +8383,7 @@ const select$30 = function ListScopeRelatedEntityRepresentationSelect() {
|
|
|
8374
8383
|
};
|
|
8375
8384
|
|
|
8376
8385
|
const VERSION$2n = "2fe9814e7124b47f59da585483c1b3f9";
|
|
8377
|
-
function validate$
|
|
8386
|
+
function validate$1X(obj, path = 'ListScopeRepresentation') {
|
|
8378
8387
|
const v_error = (() => {
|
|
8379
8388
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8380
8389
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8388,7 +8397,7 @@ function validate$1W(obj, path = 'ListScopeRepresentation') {
|
|
|
8388
8397
|
const path_entity = path + '.entity';
|
|
8389
8398
|
let obj_entity_union0 = null;
|
|
8390
8399
|
const obj_entity_union0_error = (() => {
|
|
8391
|
-
const referencepath_entityValidationError = validate$
|
|
8400
|
+
const referencepath_entityValidationError = validate$1Z(obj_entity, path_entity);
|
|
8392
8401
|
if (referencepath_entityValidationError !== null) {
|
|
8393
8402
|
let message = 'Object doesn\'t match ListScopeEntityRepresentation (at "' + path_entity + '")\n';
|
|
8394
8403
|
message += referencepath_entityValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8443,7 +8452,7 @@ function validate$1W(obj, path = 'ListScopeRepresentation') {
|
|
|
8443
8452
|
const path_relatedEntity = path + '.relatedEntity';
|
|
8444
8453
|
let obj_relatedEntity_union0 = null;
|
|
8445
8454
|
const obj_relatedEntity_union0_error = (() => {
|
|
8446
|
-
const referencepath_relatedEntityValidationError = validate$
|
|
8455
|
+
const referencepath_relatedEntityValidationError = validate$1Y(obj_relatedEntity, path_relatedEntity);
|
|
8447
8456
|
if (referencepath_relatedEntityValidationError !== null) {
|
|
8448
8457
|
let message = 'Object doesn\'t match ListScopeRelatedEntityRepresentation (at "' + path_relatedEntity + '")\n';
|
|
8449
8458
|
message += referencepath_relatedEntityValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8504,7 +8513,7 @@ const select$2$ = function ListScopeRepresentationSelect() {
|
|
|
8504
8513
|
};
|
|
8505
8514
|
|
|
8506
8515
|
const VERSION$2m = "6506134f4d72fdfa349fe60ef1af2413";
|
|
8507
|
-
function validate$
|
|
8516
|
+
function validate$1W(obj, path = 'ListUserPreferenceRepresentation') {
|
|
8508
8517
|
const v_error = (() => {
|
|
8509
8518
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8510
8519
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8560,7 +8569,7 @@ const select$2_ = function ListUserPreferenceRepresentationSelect() {
|
|
|
8560
8569
|
};
|
|
8561
8570
|
};
|
|
8562
8571
|
|
|
8563
|
-
function validate$
|
|
8572
|
+
function validate$1V(obj, path = 'ListColumnInlineEditAttributesRepresentation') {
|
|
8564
8573
|
const v_error = (() => {
|
|
8565
8574
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8566
8575
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8579,7 +8588,7 @@ function validate$1U(obj, path = 'ListColumnInlineEditAttributesRepresentation')
|
|
|
8579
8588
|
return v_error === undefined ? null : v_error;
|
|
8580
8589
|
}
|
|
8581
8590
|
|
|
8582
|
-
function validate$
|
|
8591
|
+
function validate$1U(obj, path = 'ListColumnInlineEditAttributesRepresentationWrapper') {
|
|
8583
8592
|
const v_error = (() => {
|
|
8584
8593
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8585
8594
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8589,7 +8598,7 @@ function validate$1T(obj, path = 'ListColumnInlineEditAttributesRepresentationWr
|
|
|
8589
8598
|
const key = obj_keys[i];
|
|
8590
8599
|
const obj_prop = obj[key];
|
|
8591
8600
|
const path_prop = path + '["' + key + '"]';
|
|
8592
|
-
const referencepath_propValidationError = validate$
|
|
8601
|
+
const referencepath_propValidationError = validate$1V(obj_prop, path_prop);
|
|
8593
8602
|
if (referencepath_propValidationError !== null) {
|
|
8594
8603
|
let message = 'Object doesn\'t match ListColumnInlineEditAttributesRepresentation (at "' + path_prop + '")\n';
|
|
8595
8604
|
message += referencepath_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8601,7 +8610,7 @@ function validate$1T(obj, path = 'ListColumnInlineEditAttributesRepresentationWr
|
|
|
8601
8610
|
}
|
|
8602
8611
|
|
|
8603
8612
|
const VERSION$2l = "8aff6b0baf2e60a237e860236c4e1b70";
|
|
8604
|
-
function validate$
|
|
8613
|
+
function validate$1T(obj, path = 'ListColumnRepresentation') {
|
|
8605
8614
|
const v_error = (() => {
|
|
8606
8615
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8607
8616
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8616,7 +8625,7 @@ function validate$1S(obj, path = 'ListColumnRepresentation') {
|
|
|
8616
8625
|
const path_inlineEditAttributes = path + '.inlineEditAttributes';
|
|
8617
8626
|
let obj_inlineEditAttributes_union0 = null;
|
|
8618
8627
|
const obj_inlineEditAttributes_union0_error = (() => {
|
|
8619
|
-
const referencepath_inlineEditAttributesValidationError = validate$
|
|
8628
|
+
const referencepath_inlineEditAttributesValidationError = validate$1U(obj_inlineEditAttributes, path_inlineEditAttributes);
|
|
8620
8629
|
if (referencepath_inlineEditAttributesValidationError !== null) {
|
|
8621
8630
|
let message = 'Object doesn\'t match ListColumnInlineEditAttributesRepresentationWrapper (at "' + path_inlineEditAttributes + '")\n';
|
|
8622
8631
|
message += referencepath_inlineEditAttributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8708,7 +8717,7 @@ function equals$16(existing, incoming) {
|
|
|
8708
8717
|
}
|
|
8709
8718
|
const ingest$1X = function ListColumnRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
8710
8719
|
if (process.env.NODE_ENV !== 'production') {
|
|
8711
|
-
const validateError = validate$
|
|
8720
|
+
const validateError = validate$1T(input);
|
|
8712
8721
|
if (validateError !== null) {
|
|
8713
8722
|
throw validateError;
|
|
8714
8723
|
}
|
|
@@ -8730,7 +8739,7 @@ function getTypeCacheKeys$1$(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
8730
8739
|
|
|
8731
8740
|
const TTL$F = 900000;
|
|
8732
8741
|
const VERSION$2k = "178c8b58f78e2720fe8846a667c7b294";
|
|
8733
|
-
function validate$
|
|
8742
|
+
function validate$1S(obj, path = 'ListInfoRepresentation') {
|
|
8734
8743
|
const v_error = (() => {
|
|
8735
8744
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8736
8745
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8801,7 +8810,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
8801
8810
|
for (let i = 0; i < obj_filteredByInfo.length; i++) {
|
|
8802
8811
|
const obj_filteredByInfo_item = obj_filteredByInfo[i];
|
|
8803
8812
|
const path_filteredByInfo_item = path_filteredByInfo + '[' + i + ']';
|
|
8804
|
-
const referencepath_filteredByInfo_itemValidationError = validate$
|
|
8813
|
+
const referencepath_filteredByInfo_itemValidationError = validate$23(obj_filteredByInfo_item, path_filteredByInfo_item);
|
|
8805
8814
|
if (referencepath_filteredByInfo_itemValidationError !== null) {
|
|
8806
8815
|
let message = 'Object doesn\'t match ListFilterByInfoRepresentation (at "' + path_filteredByInfo_item + '")\n';
|
|
8807
8816
|
message += referencepath_filteredByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8813,7 +8822,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
8813
8822
|
const path_inlineEditDetails = path + '.inlineEditDetails';
|
|
8814
8823
|
let obj_inlineEditDetails_union0 = null;
|
|
8815
8824
|
const obj_inlineEditDetails_union0_error = (() => {
|
|
8816
|
-
const referencepath_inlineEditDetailsValidationError = validate$
|
|
8825
|
+
const referencepath_inlineEditDetailsValidationError = validate$22(obj_inlineEditDetails, path_inlineEditDetails);
|
|
8817
8826
|
if (referencepath_inlineEditDetailsValidationError !== null) {
|
|
8818
8827
|
let message = 'Object doesn\'t match ListInlineEditDetailsRepresentation (at "' + path_inlineEditDetails + '")\n';
|
|
8819
8828
|
message += referencepath_inlineEditDetailsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8867,7 +8876,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
8867
8876
|
}
|
|
8868
8877
|
const obj_listReference = obj.listReference;
|
|
8869
8878
|
const path_listReference = path + '.listReference';
|
|
8870
|
-
const referencepath_listReferenceValidationError = validate$
|
|
8879
|
+
const referencepath_listReferenceValidationError = validate$21(obj_listReference, path_listReference);
|
|
8871
8880
|
if (referencepath_listReferenceValidationError !== null) {
|
|
8872
8881
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
8873
8882
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8882,7 +8891,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
8882
8891
|
for (let i = 0; i < obj_listShares.length; i++) {
|
|
8883
8892
|
const obj_listShares_item = obj_listShares[i];
|
|
8884
8893
|
const path_listShares_item = path_listShares + '[' + i + ']';
|
|
8885
|
-
const referencepath_listShares_itemValidationError = validate$
|
|
8894
|
+
const referencepath_listShares_itemValidationError = validate$1$(obj_listShares_item, path_listShares_item);
|
|
8886
8895
|
if (referencepath_listShares_itemValidationError !== null) {
|
|
8887
8896
|
let message = 'Object doesn\'t match ListInfoShareCategoryRepresentation (at "' + path_listShares_item + '")\n';
|
|
8888
8897
|
message += referencepath_listShares_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8912,7 +8921,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
8912
8921
|
for (let i = 0; i < obj_orderedByInfo.length; i++) {
|
|
8913
8922
|
const obj_orderedByInfo_item = obj_orderedByInfo[i];
|
|
8914
8923
|
const path_orderedByInfo_item = path_orderedByInfo + '[' + i + ']';
|
|
8915
|
-
const referencepath_orderedByInfo_itemValidationError = validate$
|
|
8924
|
+
const referencepath_orderedByInfo_itemValidationError = validate$1_(obj_orderedByInfo_item, path_orderedByInfo_item);
|
|
8916
8925
|
if (referencepath_orderedByInfo_itemValidationError !== null) {
|
|
8917
8926
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedByInfo_item + '")\n';
|
|
8918
8927
|
message += referencepath_orderedByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8924,7 +8933,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
8924
8933
|
const path_scope = path + '.scope';
|
|
8925
8934
|
let obj_scope_union0 = null;
|
|
8926
8935
|
const obj_scope_union0_error = (() => {
|
|
8927
|
-
const referencepath_scopeValidationError = validate$
|
|
8936
|
+
const referencepath_scopeValidationError = validate$1X(obj_scope, path_scope);
|
|
8928
8937
|
if (referencepath_scopeValidationError !== null) {
|
|
8929
8938
|
let message = 'Object doesn\'t match ListScopeRepresentation (at "' + path_scope + '")\n';
|
|
8930
8939
|
message += referencepath_scopeValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -8964,7 +8973,7 @@ function validate$1R(obj, path = 'ListInfoRepresentation') {
|
|
|
8964
8973
|
}
|
|
8965
8974
|
const obj_userPreferences = obj.userPreferences;
|
|
8966
8975
|
const path_userPreferences = path + '.userPreferences';
|
|
8967
|
-
const referencepath_userPreferencesValidationError = validate$
|
|
8976
|
+
const referencepath_userPreferencesValidationError = validate$1W(obj_userPreferences, path_userPreferences);
|
|
8968
8977
|
if (referencepath_userPreferencesValidationError !== null) {
|
|
8969
8978
|
let message = 'Object doesn\'t match ListUserPreferenceRepresentation (at "' + path_userPreferences + '")\n';
|
|
8970
8979
|
message += referencepath_userPreferencesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -9132,7 +9141,7 @@ function equals$15(existing, incoming) {
|
|
|
9132
9141
|
}
|
|
9133
9142
|
const ingest$1W = function ListInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
9134
9143
|
if (process.env.NODE_ENV !== 'production') {
|
|
9135
|
-
const validateError = validate$
|
|
9144
|
+
const validateError = validate$1S(input);
|
|
9136
9145
|
if (validateError !== null) {
|
|
9137
9146
|
throw validateError;
|
|
9138
9147
|
}
|
|
@@ -9202,7 +9211,7 @@ function toSortedStringArray(value) {
|
|
|
9202
9211
|
}
|
|
9203
9212
|
|
|
9204
9213
|
const VERSION$2j = "d1e589a127fb1060c89070cdb6f500b2";
|
|
9205
|
-
function validate$
|
|
9214
|
+
function validate$1R(obj, path = 'RecordTypeInfoRepresentation') {
|
|
9206
9215
|
const v_error = (() => {
|
|
9207
9216
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9208
9217
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9294,7 +9303,7 @@ function equals$14(existing, incoming) {
|
|
|
9294
9303
|
}
|
|
9295
9304
|
|
|
9296
9305
|
const VERSION$2i = "195d918987a35f45e1aa4dce9a11d8c5";
|
|
9297
|
-
function validate$
|
|
9306
|
+
function validate$1Q(obj, path = 'FieldValueRepresentation') {
|
|
9298
9307
|
const v_error = (() => {
|
|
9299
9308
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9300
9309
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9441,7 +9450,7 @@ function equals$13(existing, incoming) {
|
|
|
9441
9450
|
}
|
|
9442
9451
|
const ingest$1V = function FieldValueRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
9443
9452
|
if (process.env.NODE_ENV !== 'production') {
|
|
9444
|
-
const validateError = validate$
|
|
9453
|
+
const validateError = validate$1Q(input);
|
|
9445
9454
|
if (validateError !== null) {
|
|
9446
9455
|
throw validateError;
|
|
9447
9456
|
}
|
|
@@ -9492,7 +9501,7 @@ const getTypeCacheKeys$1Y = (rootKeySet, luvio, input, _fullPathFactory) => {
|
|
|
9492
9501
|
|
|
9493
9502
|
const TTL$E = 120000;
|
|
9494
9503
|
const VERSION$2h = "79cb5ac9f44542f683d00245fdfe500d";
|
|
9495
|
-
function validate$
|
|
9504
|
+
function validate$1P(obj, path = 'RecordCollectionRepresentation') {
|
|
9496
9505
|
const v_error = (() => {
|
|
9497
9506
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9498
9507
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9765,7 +9774,7 @@ function equals$12(existing, incoming) {
|
|
|
9765
9774
|
}
|
|
9766
9775
|
const ingest$1U = function RecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
9767
9776
|
if (process.env.NODE_ENV !== 'production') {
|
|
9768
|
-
const validateError = validate$
|
|
9777
|
+
const validateError = validate$1P(input);
|
|
9769
9778
|
if (validateError !== null) {
|
|
9770
9779
|
throw validateError;
|
|
9771
9780
|
}
|
|
@@ -9801,7 +9810,7 @@ const keyBuilderFromType$B = function RecordRepresentationKeyBuilderFromType(luv
|
|
|
9801
9810
|
|
|
9802
9811
|
const TTL$D = 30000;
|
|
9803
9812
|
const VERSION$2g = "98c5b18512e48ca8d28727549507e4ba";
|
|
9804
|
-
function validate$
|
|
9813
|
+
function validate$1O(obj, path = 'RecordRepresentation') {
|
|
9805
9814
|
const v_error = (() => {
|
|
9806
9815
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9807
9816
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9931,7 +9940,7 @@ function validate$1N(obj, path = 'RecordRepresentation') {
|
|
|
9931
9940
|
const path_recordTypeInfo = path + '.recordTypeInfo';
|
|
9932
9941
|
let obj_recordTypeInfo_union0 = null;
|
|
9933
9942
|
const obj_recordTypeInfo_union0_error = (() => {
|
|
9934
|
-
const referencepath_recordTypeInfoValidationError = validate$
|
|
9943
|
+
const referencepath_recordTypeInfoValidationError = validate$1R(obj_recordTypeInfo, path_recordTypeInfo);
|
|
9935
9944
|
if (referencepath_recordTypeInfoValidationError !== null) {
|
|
9936
9945
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfo + '")\n';
|
|
9937
9946
|
message += referencepath_recordTypeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -12763,7 +12772,7 @@ function normalize$P(input, existing, path, luvio, store, timestamp, fieldsTrie,
|
|
|
12763
12772
|
function makeIngest(fieldsTrie, optionalFieldsTrie, recordConflictMap) {
|
|
12764
12773
|
return (input, path, luvio, store, timestamp) => {
|
|
12765
12774
|
if (process.env.NODE_ENV !== 'production') {
|
|
12766
|
-
const validateError = validate$
|
|
12775
|
+
const validateError = validate$1Q(input);
|
|
12767
12776
|
if (validateError !== null) {
|
|
12768
12777
|
throw validateError;
|
|
12769
12778
|
}
|
|
@@ -12856,7 +12865,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
12856
12865
|
const childNormalize = createChildRecordNormalize(fieldsTrie, optionalFieldsTrie, recordConflictMap);
|
|
12857
12866
|
return (input, path, luvio, store, timestamp) => {
|
|
12858
12867
|
if (process.env.NODE_ENV !== 'production') {
|
|
12859
|
-
const validateError = validate$
|
|
12868
|
+
const validateError = validate$1O(input);
|
|
12860
12869
|
if (validateError !== null) {
|
|
12861
12870
|
throw validateError;
|
|
12862
12871
|
}
|
|
@@ -12885,6 +12894,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
12885
12894
|
representationName: RepresentationType$X,
|
|
12886
12895
|
namespace: keyPrefix,
|
|
12887
12896
|
version: VERSION$2g,
|
|
12897
|
+
ingestionTimestamp: timestamp,
|
|
12888
12898
|
});
|
|
12889
12899
|
return createLink$1(key);
|
|
12890
12900
|
};
|
|
@@ -13110,17 +13120,19 @@ function onResourceError(luvio, config, key, err) {
|
|
|
13110
13120
|
function buildNetworkSnapshot$18(luvio, config, serverRequestCount = 0, options) {
|
|
13111
13121
|
const { request, key, allTrackedFields, resourceParams } = prepareRequest$6(luvio, config);
|
|
13112
13122
|
return luvio.dispatchResourceRequest(request, options).then((response) => {
|
|
13123
|
+
// W-11964675 - Condition to dedupe a very specific set of requests for
|
|
13124
|
+
// Komaci - a batch record request with a single record followed by a single
|
|
13125
|
+
// record request. The fulfill logic sends the same network response, so
|
|
13126
|
+
// there is some TypeScript massaging to extract the RecordRepresentation
|
|
13127
|
+
//
|
|
13128
|
+
// W-14381091 - Ensure hoisting the response body happens prior to
|
|
13129
|
+
// calling `luvio.handleSuccessResponse`, since both arguments capture
|
|
13130
|
+
// the response.
|
|
13131
|
+
if (isSingleBatchRecordResponse(response.body)) {
|
|
13132
|
+
response.body = response.body.results[0]
|
|
13133
|
+
.result;
|
|
13134
|
+
}
|
|
13113
13135
|
return luvio.handleSuccessResponse(() => {
|
|
13114
|
-
// W-11964675 - Condition to dedupe a very specific set of requests for
|
|
13115
|
-
// Komaci - a batch record request with a single record followed by a single
|
|
13116
|
-
// record request. The fulfill logic sends the same network response, so
|
|
13117
|
-
// there is some TypeScript massaging to extract the RecordRepresentation
|
|
13118
|
-
if (isSingleBatchRecordResponse(response.body)) {
|
|
13119
|
-
let recordResponse = response;
|
|
13120
|
-
recordResponse.body = response.body.results[0]
|
|
13121
|
-
.result;
|
|
13122
|
-
return onResourceSuccess(luvio, config, key, allTrackedFields, recordResponse, serverRequestCount + 1);
|
|
13123
|
-
}
|
|
13124
13136
|
return onResourceSuccess(luvio, config, key, allTrackedFields, response, serverRequestCount + 1);
|
|
13125
13137
|
}, () => {
|
|
13126
13138
|
const cache = new StoreKeyMap();
|
|
@@ -13816,7 +13828,7 @@ function revertPaginationOptimization(variables) {
|
|
|
13816
13828
|
|
|
13817
13829
|
const TTL$C = 30000;
|
|
13818
13830
|
const VERSION$2e = "b8270d0d7a5953587f98a9625cad85db";
|
|
13819
|
-
function validate$
|
|
13831
|
+
function validate$1N(obj, path = 'ListRecordCollectionRepresentation') {
|
|
13820
13832
|
const v_error = (() => {
|
|
13821
13833
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
13822
13834
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -13876,7 +13888,7 @@ function validate$1M(obj, path = 'ListRecordCollectionRepresentation') {
|
|
|
13876
13888
|
}
|
|
13877
13889
|
const obj_listReference = obj.listReference;
|
|
13878
13890
|
const path_listReference = path + '.listReference';
|
|
13879
|
-
const referencepath_listReferenceValidationError = validate$
|
|
13891
|
+
const referencepath_listReferenceValidationError = validate$21(obj_listReference, path_listReference);
|
|
13880
13892
|
if (referencepath_listReferenceValidationError !== null) {
|
|
13881
13893
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
13882
13894
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -14415,7 +14427,7 @@ function equals$10(existing, incoming) {
|
|
|
14415
14427
|
}
|
|
14416
14428
|
const ingest$1S = function ListRecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14417
14429
|
if (process.env.NODE_ENV !== 'production') {
|
|
14418
|
-
const validateError = validate$
|
|
14430
|
+
const validateError = validate$1N(input);
|
|
14419
14431
|
if (validateError !== null) {
|
|
14420
14432
|
throw validateError;
|
|
14421
14433
|
}
|
|
@@ -14483,6 +14495,7 @@ const ingest$1S = function ListRecordCollectionRepresentationIngest(input, path,
|
|
|
14483
14495
|
namespace: "UiApi",
|
|
14484
14496
|
version: VERSION$2e,
|
|
14485
14497
|
representationName: RepresentationType$W,
|
|
14498
|
+
ingestionTimestamp: timestamp,
|
|
14486
14499
|
};
|
|
14487
14500
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
14488
14501
|
}
|
|
@@ -14508,7 +14521,7 @@ function getTypeCacheKeys$1V(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
14508
14521
|
}
|
|
14509
14522
|
|
|
14510
14523
|
const VERSION$2d = "cf8d2eb042188974da26ffe6618cfd07";
|
|
14511
|
-
function validate$
|
|
14524
|
+
function validate$1M(obj, path = 'ListUiRepresentation') {
|
|
14512
14525
|
const v_error = (() => {
|
|
14513
14526
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14514
14527
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14614,7 +14627,7 @@ function equals$$(existing, incoming) {
|
|
|
14614
14627
|
}
|
|
14615
14628
|
const ingest$1R = function ListUiRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14616
14629
|
if (process.env.NODE_ENV !== 'production') {
|
|
14617
|
-
const validateError = validate$
|
|
14630
|
+
const validateError = validate$1M(input);
|
|
14618
14631
|
if (validateError !== null) {
|
|
14619
14632
|
throw validateError;
|
|
14620
14633
|
}
|
|
@@ -15154,7 +15167,7 @@ function isErrorSnapshot(snapshot) {
|
|
|
15154
15167
|
}
|
|
15155
15168
|
|
|
15156
15169
|
const VERSION$2c = "3529c5f7d0eb2206c90a52c6d9f721d4";
|
|
15157
|
-
function validate$
|
|
15170
|
+
function validate$1L(obj, path = 'ListViewSummaryRepresentation') {
|
|
15158
15171
|
const v_error = (() => {
|
|
15159
15172
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
15160
15173
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15266,7 +15279,7 @@ function equals$_(existing, incoming) {
|
|
|
15266
15279
|
}
|
|
15267
15280
|
const ingest$1Q = function ListViewSummaryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15268
15281
|
if (process.env.NODE_ENV !== 'production') {
|
|
15269
|
-
const validateError = validate$
|
|
15282
|
+
const validateError = validate$1L(input);
|
|
15270
15283
|
if (validateError !== null) {
|
|
15271
15284
|
throw validateError;
|
|
15272
15285
|
}
|
|
@@ -15287,7 +15300,7 @@ function getTypeCacheKeys$1T(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
15287
15300
|
}
|
|
15288
15301
|
|
|
15289
15302
|
const VERSION$2b = "f4c79fe066da3558499d5ee88c72abcd";
|
|
15290
|
-
function validate$
|
|
15303
|
+
function validate$1K(obj, path = 'ListViewSummaryCollectionRepresentation') {
|
|
15291
15304
|
const v_error = (() => {
|
|
15292
15305
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
15293
15306
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15671,7 +15684,7 @@ function equals$Z(existing, incoming) {
|
|
|
15671
15684
|
}
|
|
15672
15685
|
const ingest$1P = function ListViewSummaryCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15673
15686
|
if (process.env.NODE_ENV !== 'production') {
|
|
15674
|
-
const validateError = validate$
|
|
15687
|
+
const validateError = validate$1K(input);
|
|
15675
15688
|
if (validateError !== null) {
|
|
15676
15689
|
throw validateError;
|
|
15677
15690
|
}
|
|
@@ -15739,6 +15752,7 @@ const ingest$1P = function ListViewSummaryCollectionRepresentationIngest(input,
|
|
|
15739
15752
|
namespace: "UiApi",
|
|
15740
15753
|
version: VERSION$2b,
|
|
15741
15754
|
representationName: RepresentationType$T,
|
|
15755
|
+
ingestionTimestamp: timestamp,
|
|
15742
15756
|
};
|
|
15743
15757
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
15744
15758
|
}
|
|
@@ -16821,7 +16835,7 @@ const factory$j = (luvio) => {
|
|
|
16821
16835
|
}, { contextId: contextId$5 });
|
|
16822
16836
|
};
|
|
16823
16837
|
|
|
16824
|
-
function validate$
|
|
16838
|
+
function validate$1J(obj, path = 'ChildRelationshipRepresentation') {
|
|
16825
16839
|
const v_error = (() => {
|
|
16826
16840
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16827
16841
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16869,7 +16883,7 @@ function validate$1I(obj, path = 'ChildRelationshipRepresentation') {
|
|
|
16869
16883
|
return v_error === undefined ? null : v_error;
|
|
16870
16884
|
}
|
|
16871
16885
|
|
|
16872
|
-
function validate$
|
|
16886
|
+
function validate$1I(obj, path = 'FilteredLookupInfoRepresentation') {
|
|
16873
16887
|
const v_error = (() => {
|
|
16874
16888
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16875
16889
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16900,7 +16914,7 @@ function validate$1H(obj, path = 'FilteredLookupInfoRepresentation') {
|
|
|
16900
16914
|
return v_error === undefined ? null : v_error;
|
|
16901
16915
|
}
|
|
16902
16916
|
|
|
16903
|
-
function validate$
|
|
16917
|
+
function validate$1H(obj, path = 'ReferenceToInfoRepresentation') {
|
|
16904
16918
|
const v_error = (() => {
|
|
16905
16919
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16906
16920
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16926,7 +16940,7 @@ function validate$1G(obj, path = 'ReferenceToInfoRepresentation') {
|
|
|
16926
16940
|
return v_error === undefined ? null : v_error;
|
|
16927
16941
|
}
|
|
16928
16942
|
|
|
16929
|
-
function validate$
|
|
16943
|
+
function validate$1G(obj, path = 'FieldRepresentation') {
|
|
16930
16944
|
const v_error = (() => {
|
|
16931
16945
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16932
16946
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17086,7 +17100,7 @@ function validate$1F(obj, path = 'FieldRepresentation') {
|
|
|
17086
17100
|
const path_filteredLookupInfo = path + '.filteredLookupInfo';
|
|
17087
17101
|
let obj_filteredLookupInfo_union0 = null;
|
|
17088
17102
|
const obj_filteredLookupInfo_union0_error = (() => {
|
|
17089
|
-
const referencepath_filteredLookupInfoValidationError = validate$
|
|
17103
|
+
const referencepath_filteredLookupInfoValidationError = validate$1I(obj_filteredLookupInfo, path_filteredLookupInfo);
|
|
17090
17104
|
if (referencepath_filteredLookupInfoValidationError !== null) {
|
|
17091
17105
|
let message = 'Object doesn\'t match FilteredLookupInfoRepresentation (at "' + path_filteredLookupInfo + '")\n';
|
|
17092
17106
|
message += referencepath_filteredLookupInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17211,7 +17225,7 @@ function validate$1F(obj, path = 'FieldRepresentation') {
|
|
|
17211
17225
|
for (let i = 0; i < obj_referenceToInfos.length; i++) {
|
|
17212
17226
|
const obj_referenceToInfos_item = obj_referenceToInfos[i];
|
|
17213
17227
|
const path_referenceToInfos_item = path_referenceToInfos + '[' + i + ']';
|
|
17214
|
-
const referencepath_referenceToInfos_itemValidationError = validate$
|
|
17228
|
+
const referencepath_referenceToInfos_itemValidationError = validate$1H(obj_referenceToInfos_item, path_referenceToInfos_item);
|
|
17215
17229
|
if (referencepath_referenceToInfos_itemValidationError !== null) {
|
|
17216
17230
|
let message = 'Object doesn\'t match ReferenceToInfoRepresentation (at "' + path_referenceToInfos_item + '")\n';
|
|
17217
17231
|
message += referencepath_referenceToInfos_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17278,7 +17292,7 @@ function validate$1F(obj, path = 'FieldRepresentation') {
|
|
|
17278
17292
|
return v_error === undefined ? null : v_error;
|
|
17279
17293
|
}
|
|
17280
17294
|
|
|
17281
|
-
function validate$
|
|
17295
|
+
function validate$1F(obj, path = 'ThemeInfoRepresentation') {
|
|
17282
17296
|
const v_error = (() => {
|
|
17283
17297
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
17284
17298
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17320,7 +17334,7 @@ function validate$1E(obj, path = 'ThemeInfoRepresentation') {
|
|
|
17320
17334
|
|
|
17321
17335
|
const TTL$B = 900000;
|
|
17322
17336
|
const VERSION$2a = "ec9370a0cd56f4769fe9ec5cd942ff30";
|
|
17323
|
-
function validate$
|
|
17337
|
+
function validate$1E(obj, path = 'ObjectInfoRepresentation') {
|
|
17324
17338
|
const v_error = (() => {
|
|
17325
17339
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
17326
17340
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17390,7 +17404,7 @@ function validate$1D(obj, path = 'ObjectInfoRepresentation') {
|
|
|
17390
17404
|
for (let i = 0; i < obj_childRelationships.length; i++) {
|
|
17391
17405
|
const obj_childRelationships_item = obj_childRelationships[i];
|
|
17392
17406
|
const path_childRelationships_item = path_childRelationships + '[' + i + ']';
|
|
17393
|
-
const referencepath_childRelationships_itemValidationError = validate$
|
|
17407
|
+
const referencepath_childRelationships_itemValidationError = validate$1J(obj_childRelationships_item, path_childRelationships_item);
|
|
17394
17408
|
if (referencepath_childRelationships_itemValidationError !== null) {
|
|
17395
17409
|
let message = 'Object doesn\'t match ChildRelationshipRepresentation (at "' + path_childRelationships_item + '")\n';
|
|
17396
17410
|
message += referencepath_childRelationships_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17472,7 +17486,7 @@ function validate$1D(obj, path = 'ObjectInfoRepresentation') {
|
|
|
17472
17486
|
const key = obj_fields_keys[i];
|
|
17473
17487
|
const obj_fields_prop = obj_fields[key];
|
|
17474
17488
|
const path_fields_prop = path_fields + '["' + key + '"]';
|
|
17475
|
-
const referencepath_fields_propValidationError = validate$
|
|
17489
|
+
const referencepath_fields_propValidationError = validate$1G(obj_fields_prop, path_fields_prop);
|
|
17476
17490
|
if (referencepath_fields_propValidationError !== null) {
|
|
17477
17491
|
let message = 'Object doesn\'t match FieldRepresentation (at "' + path_fields_prop + '")\n';
|
|
17478
17492
|
message += referencepath_fields_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17552,7 +17566,7 @@ function validate$1D(obj, path = 'ObjectInfoRepresentation') {
|
|
|
17552
17566
|
const key = obj_recordTypeInfos_keys[i];
|
|
17553
17567
|
const obj_recordTypeInfos_prop = obj_recordTypeInfos[key];
|
|
17554
17568
|
const path_recordTypeInfos_prop = path_recordTypeInfos + '["' + key + '"]';
|
|
17555
|
-
const referencepath_recordTypeInfos_propValidationError = validate$
|
|
17569
|
+
const referencepath_recordTypeInfos_propValidationError = validate$1R(obj_recordTypeInfos_prop, path_recordTypeInfos_prop);
|
|
17556
17570
|
if (referencepath_recordTypeInfos_propValidationError !== null) {
|
|
17557
17571
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfos_prop + '")\n';
|
|
17558
17572
|
message += referencepath_recordTypeInfos_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17568,7 +17582,7 @@ function validate$1D(obj, path = 'ObjectInfoRepresentation') {
|
|
|
17568
17582
|
const path_themeInfo = path + '.themeInfo';
|
|
17569
17583
|
let obj_themeInfo_union0 = null;
|
|
17570
17584
|
const obj_themeInfo_union0_error = (() => {
|
|
17571
|
-
const referencepath_themeInfoValidationError = validate$
|
|
17585
|
+
const referencepath_themeInfoValidationError = validate$1F(obj_themeInfo, path_themeInfo);
|
|
17572
17586
|
if (referencepath_themeInfoValidationError !== null) {
|
|
17573
17587
|
let message = 'Object doesn\'t match ThemeInfoRepresentation (at "' + path_themeInfo + '")\n';
|
|
17574
17588
|
message += referencepath_themeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17727,7 +17741,7 @@ function equals$Y(existing, incoming) {
|
|
|
17727
17741
|
}
|
|
17728
17742
|
const ingest$1O = function ObjectInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17729
17743
|
if (process.env.NODE_ENV !== 'production') {
|
|
17730
|
-
const validateError = validate$
|
|
17744
|
+
const validateError = validate$1E(input);
|
|
17731
17745
|
if (validateError !== null) {
|
|
17732
17746
|
throw validateError;
|
|
17733
17747
|
}
|
|
@@ -17888,7 +17902,7 @@ const getObjectInfoAdapterFactory = (luvio) => function UiApi__getObjectInfo(unt
|
|
|
17888
17902
|
buildCachedSnapshotCachePolicy$O, buildNetworkSnapshotCachePolicy$P);
|
|
17889
17903
|
};
|
|
17890
17904
|
|
|
17891
|
-
function validate$
|
|
17905
|
+
function validate$1D(obj, path = 'RecordLayoutSaveOptionRepresentation') {
|
|
17892
17906
|
const v_error = (() => {
|
|
17893
17907
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
17894
17908
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17936,7 +17950,7 @@ var DiscriminatorValues$5;
|
|
|
17936
17950
|
DiscriminatorValues["Field"] = "Field";
|
|
17937
17951
|
DiscriminatorValues["CustomLink"] = "CustomLink";
|
|
17938
17952
|
})(DiscriminatorValues$5 || (DiscriminatorValues$5 = {}));
|
|
17939
|
-
function validate$
|
|
17953
|
+
function validate$1C(obj, path = 'AbstractRecordLayoutComponentRepresentation') {
|
|
17940
17954
|
const v_error = (() => {
|
|
17941
17955
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
17942
17956
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17976,7 +17990,7 @@ function validate$1B(obj, path = 'AbstractRecordLayoutComponentRepresentation')
|
|
|
17976
17990
|
return v_error === undefined ? null : v_error;
|
|
17977
17991
|
}
|
|
17978
17992
|
|
|
17979
|
-
function validate$
|
|
17993
|
+
function validate$1B(obj, path = 'RecordLayoutItemRepresentation') {
|
|
17980
17994
|
const v_error = (() => {
|
|
17981
17995
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
17982
17996
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18004,7 +18018,7 @@ function validate$1A(obj, path = 'RecordLayoutItemRepresentation') {
|
|
|
18004
18018
|
for (let i = 0; i < obj_layoutComponents.length; i++) {
|
|
18005
18019
|
const obj_layoutComponents_item = obj_layoutComponents[i];
|
|
18006
18020
|
const path_layoutComponents_item = path_layoutComponents + '[' + i + ']';
|
|
18007
|
-
const referencepath_layoutComponents_itemValidationError = validate$
|
|
18021
|
+
const referencepath_layoutComponents_itemValidationError = validate$1C(obj_layoutComponents_item, path_layoutComponents_item);
|
|
18008
18022
|
if (referencepath_layoutComponents_itemValidationError !== null) {
|
|
18009
18023
|
let message = 'Object doesn\'t match AbstractRecordLayoutComponentRepresentation (at "' + path_layoutComponents_item + '")\n';
|
|
18010
18024
|
message += referencepath_layoutComponents_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18051,7 +18065,7 @@ function validate$1A(obj, path = 'RecordLayoutItemRepresentation') {
|
|
|
18051
18065
|
return v_error === undefined ? null : v_error;
|
|
18052
18066
|
}
|
|
18053
18067
|
|
|
18054
|
-
function validate$
|
|
18068
|
+
function validate$1A(obj, path = 'RecordLayoutRowRepresentation') {
|
|
18055
18069
|
const v_error = (() => {
|
|
18056
18070
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18057
18071
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18064,7 +18078,7 @@ function validate$1z(obj, path = 'RecordLayoutRowRepresentation') {
|
|
|
18064
18078
|
for (let i = 0; i < obj_layoutItems.length; i++) {
|
|
18065
18079
|
const obj_layoutItems_item = obj_layoutItems[i];
|
|
18066
18080
|
const path_layoutItems_item = path_layoutItems + '[' + i + ']';
|
|
18067
|
-
const referencepath_layoutItems_itemValidationError = validate$
|
|
18081
|
+
const referencepath_layoutItems_itemValidationError = validate$1B(obj_layoutItems_item, path_layoutItems_item);
|
|
18068
18082
|
if (referencepath_layoutItems_itemValidationError !== null) {
|
|
18069
18083
|
let message = 'Object doesn\'t match RecordLayoutItemRepresentation (at "' + path_layoutItems_item + '")\n';
|
|
18070
18084
|
message += referencepath_layoutItems_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18075,7 +18089,7 @@ function validate$1z(obj, path = 'RecordLayoutRowRepresentation') {
|
|
|
18075
18089
|
return v_error === undefined ? null : v_error;
|
|
18076
18090
|
}
|
|
18077
18091
|
|
|
18078
|
-
function validate$
|
|
18092
|
+
function validate$1z(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
18079
18093
|
const v_error = (() => {
|
|
18080
18094
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18081
18095
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18150,7 +18164,7 @@ function validate$1y(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
|
18150
18164
|
for (let i = 0; i < obj_layoutRows.length; i++) {
|
|
18151
18165
|
const obj_layoutRows_item = obj_layoutRows[i];
|
|
18152
18166
|
const path_layoutRows_item = path_layoutRows + '[' + i + ']';
|
|
18153
|
-
const referencepath_layoutRows_itemValidationError = validate$
|
|
18167
|
+
const referencepath_layoutRows_itemValidationError = validate$1A(obj_layoutRows_item, path_layoutRows_item);
|
|
18154
18168
|
if (referencepath_layoutRows_itemValidationError !== null) {
|
|
18155
18169
|
let message = 'Object doesn\'t match RecordLayoutRowRepresentation (at "' + path_layoutRows_item + '")\n';
|
|
18156
18170
|
message += referencepath_layoutRows_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18173,7 +18187,7 @@ function validate$1y(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
|
18173
18187
|
|
|
18174
18188
|
const TTL$A = 900000;
|
|
18175
18189
|
const VERSION$29 = "fb515e25a89ca1ec154dc865e72b913a";
|
|
18176
|
-
function validate$
|
|
18190
|
+
function validate$1y(obj, path = 'RecordLayoutRepresentation') {
|
|
18177
18191
|
const v_error = (() => {
|
|
18178
18192
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18179
18193
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18279,7 +18293,7 @@ function validate$1x(obj, path = 'RecordLayoutRepresentation') {
|
|
|
18279
18293
|
for (let i = 0; i < obj_saveOptions.length; i++) {
|
|
18280
18294
|
const obj_saveOptions_item = obj_saveOptions[i];
|
|
18281
18295
|
const path_saveOptions_item = path_saveOptions + '[' + i + ']';
|
|
18282
|
-
const referencepath_saveOptions_itemValidationError = validate$
|
|
18296
|
+
const referencepath_saveOptions_itemValidationError = validate$1D(obj_saveOptions_item, path_saveOptions_item);
|
|
18283
18297
|
if (referencepath_saveOptions_itemValidationError !== null) {
|
|
18284
18298
|
let message = 'Object doesn\'t match RecordLayoutSaveOptionRepresentation (at "' + path_saveOptions_item + '")\n';
|
|
18285
18299
|
message += referencepath_saveOptions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18294,7 +18308,7 @@ function validate$1x(obj, path = 'RecordLayoutRepresentation') {
|
|
|
18294
18308
|
for (let i = 0; i < obj_sections.length; i++) {
|
|
18295
18309
|
const obj_sections_item = obj_sections[i];
|
|
18296
18310
|
const path_sections_item = path_sections + '[' + i + ']';
|
|
18297
|
-
const referencepath_sections_itemValidationError = validate$
|
|
18311
|
+
const referencepath_sections_itemValidationError = validate$1z(obj_sections_item, path_sections_item);
|
|
18298
18312
|
if (referencepath_sections_itemValidationError !== null) {
|
|
18299
18313
|
let message = 'Object doesn\'t match RecordLayoutSectionRepresentation (at "' + path_sections_item + '")\n';
|
|
18300
18314
|
message += referencepath_sections_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18369,7 +18383,7 @@ function equals$X(existing, incoming) {
|
|
|
18369
18383
|
}
|
|
18370
18384
|
const ingest$1N = function RecordLayoutRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
18371
18385
|
if (process.env.NODE_ENV !== 'production') {
|
|
18372
|
-
const validateError = validate$
|
|
18386
|
+
const validateError = validate$1y(input);
|
|
18373
18387
|
if (validateError !== null) {
|
|
18374
18388
|
throw validateError;
|
|
18375
18389
|
}
|
|
@@ -18411,7 +18425,7 @@ function getRecordId18Array(value) {
|
|
|
18411
18425
|
return dedupe(array).sort();
|
|
18412
18426
|
}
|
|
18413
18427
|
|
|
18414
|
-
function validate$
|
|
18428
|
+
function validate$1x(obj, path = 'RecordLayoutSectionUserStateRepresentation') {
|
|
18415
18429
|
const v_error = (() => {
|
|
18416
18430
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18417
18431
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18432,7 +18446,7 @@ function validate$1w(obj, path = 'RecordLayoutSectionUserStateRepresentation') {
|
|
|
18432
18446
|
|
|
18433
18447
|
const TTL$z = 900000;
|
|
18434
18448
|
const VERSION$28 = "4ba42e1fa0fb00cf78fce86082da41c9";
|
|
18435
|
-
function validate$
|
|
18449
|
+
function validate$1w(obj, path = 'RecordLayoutUserStateRepresentation') {
|
|
18436
18450
|
const v_error = (() => {
|
|
18437
18451
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18438
18452
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18472,7 +18486,7 @@ function validate$1v(obj, path = 'RecordLayoutUserStateRepresentation') {
|
|
|
18472
18486
|
const key = obj_sectionUserStates_keys[i];
|
|
18473
18487
|
const obj_sectionUserStates_prop = obj_sectionUserStates[key];
|
|
18474
18488
|
const path_sectionUserStates_prop = path_sectionUserStates + '["' + key + '"]';
|
|
18475
|
-
const referencepath_sectionUserStates_propValidationError = validate$
|
|
18489
|
+
const referencepath_sectionUserStates_propValidationError = validate$1x(obj_sectionUserStates_prop, path_sectionUserStates_prop);
|
|
18476
18490
|
if (referencepath_sectionUserStates_propValidationError !== null) {
|
|
18477
18491
|
let message = 'Object doesn\'t match RecordLayoutSectionUserStateRepresentation (at "' + path_sectionUserStates_prop + '")\n';
|
|
18478
18492
|
message += referencepath_sectionUserStates_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -18529,7 +18543,7 @@ function equals$W(existing, incoming) {
|
|
|
18529
18543
|
}
|
|
18530
18544
|
const ingest$1M = function RecordLayoutUserStateRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
18531
18545
|
if (process.env.NODE_ENV !== 'production') {
|
|
18532
|
-
const validateError = validate$
|
|
18546
|
+
const validateError = validate$1w(input);
|
|
18533
18547
|
if (validateError !== null) {
|
|
18534
18548
|
throw validateError;
|
|
18535
18549
|
}
|
|
@@ -18551,7 +18565,7 @@ function getTypeCacheKeys$1P(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
18551
18565
|
|
|
18552
18566
|
const TTL$y = 900000;
|
|
18553
18567
|
const VERSION$27 = "49cdd4bc235a6094c3559cc7735b3b6d";
|
|
18554
|
-
function validate$
|
|
18568
|
+
function validate$1v(obj, path = 'RecordUiRepresentation') {
|
|
18555
18569
|
const v_error = (() => {
|
|
18556
18570
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18557
18571
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18813,7 +18827,7 @@ function equals$V(existing, incoming) {
|
|
|
18813
18827
|
}
|
|
18814
18828
|
const ingest$1L = function RecordUiRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
18815
18829
|
if (process.env.NODE_ENV !== 'production') {
|
|
18816
|
-
const validateError = validate$
|
|
18830
|
+
const validateError = validate$1v(input);
|
|
18817
18831
|
if (validateError !== null) {
|
|
18818
18832
|
throw validateError;
|
|
18819
18833
|
}
|
|
@@ -19454,7 +19468,7 @@ function getLayoutMapAndObjectInfo(recordId, data) {
|
|
|
19454
19468
|
// Temp fix until we can mimic the server behavior for non-layoutable entities.
|
|
19455
19469
|
let layoutMap = {};
|
|
19456
19470
|
if (hasOwnProperty.call(layouts, apiName)) {
|
|
19457
|
-
layoutMap = layouts[apiName][recordTypeId];
|
|
19471
|
+
layoutMap = layouts[apiName][recordTypeId] || {};
|
|
19458
19472
|
}
|
|
19459
19473
|
return {
|
|
19460
19474
|
layoutMap,
|
|
@@ -19930,7 +19944,7 @@ const factory$h = (luvio) => {
|
|
|
19930
19944
|
};
|
|
19931
19945
|
|
|
19932
19946
|
const VERSION$24 = "7e00c51105cbf56a79ab8fcddf462c1e";
|
|
19933
|
-
function validate$
|
|
19947
|
+
function validate$1s(obj, path = 'QuickActionExecutionRepresentation') {
|
|
19934
19948
|
const v_error = (() => {
|
|
19935
19949
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
19936
19950
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20103,7 +20117,7 @@ function equals$S(existing, incoming) {
|
|
|
20103
20117
|
}
|
|
20104
20118
|
const ingest$1I = function QuickActionExecutionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
20105
20119
|
if (process.env.NODE_ENV !== 'production') {
|
|
20106
|
-
const validateError = validate$
|
|
20120
|
+
const validateError = validate$1s(input);
|
|
20107
20121
|
if (validateError !== null) {
|
|
20108
20122
|
throw validateError;
|
|
20109
20123
|
}
|
|
@@ -20125,7 +20139,7 @@ function getTypeCacheKeys$1M(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
20125
20139
|
|
|
20126
20140
|
const TTL$x = 900000;
|
|
20127
20141
|
const VERSION$23 = "993b0a7bce6056c4f57ed300ec153d9c";
|
|
20128
|
-
function validate$
|
|
20142
|
+
function validate$1r(obj, path = 'QuickActionDefaultsRepresentation') {
|
|
20129
20143
|
const v_error = (() => {
|
|
20130
20144
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20131
20145
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20290,7 +20304,7 @@ function coerceFormFactor(form) {
|
|
|
20290
20304
|
}
|
|
20291
20305
|
|
|
20292
20306
|
const VERSION$22 = "3f49d751896cf66e6e29788d8880e2cc";
|
|
20293
|
-
function validate$
|
|
20307
|
+
function validate$1q(obj, path = 'PlatformActionRepresentation') {
|
|
20294
20308
|
const v_error = (() => {
|
|
20295
20309
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20296
20310
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20822,7 +20836,7 @@ function equals$Q(existing, incoming) {
|
|
|
20822
20836
|
}
|
|
20823
20837
|
const ingest$1H = function PlatformActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
20824
20838
|
if (process.env.NODE_ENV !== 'production') {
|
|
20825
|
-
const validateError = validate$
|
|
20839
|
+
const validateError = validate$1q(input);
|
|
20826
20840
|
if (validateError !== null) {
|
|
20827
20841
|
throw validateError;
|
|
20828
20842
|
}
|
|
@@ -20843,7 +20857,7 @@ function getTypeCacheKeys$1K(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
20843
20857
|
}
|
|
20844
20858
|
|
|
20845
20859
|
const VERSION$21 = "378d506f563a4bd724b322d440df33d1";
|
|
20846
|
-
function validate$
|
|
20860
|
+
function validate$1p(obj, path = 'EntityActionRepresentation') {
|
|
20847
20861
|
const v_error = (() => {
|
|
20848
20862
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20849
20863
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20957,7 +20971,7 @@ function equals$P(existing, incoming) {
|
|
|
20957
20971
|
}
|
|
20958
20972
|
const ingest$1G = function EntityActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
20959
20973
|
if (process.env.NODE_ENV !== 'production') {
|
|
20960
|
-
const validateError = validate$
|
|
20974
|
+
const validateError = validate$1p(input);
|
|
20961
20975
|
if (validateError !== null) {
|
|
20962
20976
|
throw validateError;
|
|
20963
20977
|
}
|
|
@@ -20983,7 +20997,7 @@ function getTypeCacheKeys$1J(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
20983
20997
|
|
|
20984
20998
|
const TTL$w = 300000;
|
|
20985
20999
|
const VERSION$20 = "e485d96c1402a9ca2f56e56485af0216";
|
|
20986
|
-
function validate$
|
|
21000
|
+
function validate$1o(obj, path = 'ActionRepresentation') {
|
|
20987
21001
|
const v_error = (() => {
|
|
20988
21002
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20989
21003
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -21081,7 +21095,7 @@ function equals$O(existing, incoming) {
|
|
|
21081
21095
|
}
|
|
21082
21096
|
const ingest$1F = function ActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
21083
21097
|
if (process.env.NODE_ENV !== 'production') {
|
|
21084
|
-
const validateError = validate$
|
|
21098
|
+
const validateError = validate$1o(input);
|
|
21085
21099
|
if (validateError !== null) {
|
|
21086
21100
|
throw validateError;
|
|
21087
21101
|
}
|
|
@@ -21253,7 +21267,7 @@ const getGlobalActionsAdapterFactory = (luvio) => function UiApi__getGlobalActio
|
|
|
21253
21267
|
|
|
21254
21268
|
const TTL$v = 900000;
|
|
21255
21269
|
const VERSION$1$ = "35f3eec8ce7f6001c6d5d17821b75bb9";
|
|
21256
|
-
function validate$
|
|
21270
|
+
function validate$1n(obj, path = 'QuickActionLayoutRepresentation') {
|
|
21257
21271
|
const v_error = (() => {
|
|
21258
21272
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
21259
21273
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -21270,7 +21284,7 @@ function validate$1m(obj, path = 'QuickActionLayoutRepresentation') {
|
|
|
21270
21284
|
}
|
|
21271
21285
|
const obj_layout = obj.layout;
|
|
21272
21286
|
const path_layout = path + '.layout';
|
|
21273
|
-
const referencepath_layoutValidationError = validate$
|
|
21287
|
+
const referencepath_layoutValidationError = validate$1y(obj_layout, path_layout);
|
|
21274
21288
|
if (referencepath_layoutValidationError !== null) {
|
|
21275
21289
|
let message = 'Object doesn\'t match RecordLayoutRepresentation (at "' + path_layout + '")\n';
|
|
21276
21290
|
message += referencepath_layoutValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -21320,7 +21334,7 @@ function equals$N(existing, incoming) {
|
|
|
21320
21334
|
}
|
|
21321
21335
|
const ingest$1E = function QuickActionLayoutRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
21322
21336
|
if (process.env.NODE_ENV !== 'production') {
|
|
21323
|
-
const validateError = validate$
|
|
21337
|
+
const validateError = validate$1n(input);
|
|
21324
21338
|
if (validateError !== null) {
|
|
21325
21339
|
throw validateError;
|
|
21326
21340
|
}
|
|
@@ -21797,7 +21811,7 @@ const getObjectCreateActionsAdapterFactory = (luvio) => function UiApi__getObjec
|
|
|
21797
21811
|
};
|
|
21798
21812
|
|
|
21799
21813
|
const VERSION$1_ = "fecd80e9e24a1c1e75fd5395cd34ff2e";
|
|
21800
|
-
function validate$
|
|
21814
|
+
function validate$1m(obj, path = 'ActionOverrideRepresentation') {
|
|
21801
21815
|
const v_error = (() => {
|
|
21802
21816
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
21803
21817
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -21830,7 +21844,7 @@ function equals$M(existing, incoming) {
|
|
|
21830
21844
|
}
|
|
21831
21845
|
const ingest$1D = function ActionOverrideRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
21832
21846
|
if (process.env.NODE_ENV !== 'production') {
|
|
21833
|
-
const validateError = validate$
|
|
21847
|
+
const validateError = validate$1m(input);
|
|
21834
21848
|
if (validateError !== null) {
|
|
21835
21849
|
throw validateError;
|
|
21836
21850
|
}
|
|
@@ -21985,7 +21999,7 @@ const getActionOverridesAdapterFactory = (luvio) => function UiApi__getActionOve
|
|
|
21985
21999
|
buildCachedSnapshotCachePolicy$J, buildNetworkSnapshotCachePolicy$K);
|
|
21986
22000
|
};
|
|
21987
22001
|
|
|
21988
|
-
function validate$
|
|
22002
|
+
function validate$1l(obj, path = 'FormulaOverridesInfoRepresentation') {
|
|
21989
22003
|
const v_error = (() => {
|
|
21990
22004
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
21991
22005
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22023,7 +22037,7 @@ function validate$1k(obj, path = 'FormulaOverridesInfoRepresentation') {
|
|
|
22023
22037
|
|
|
22024
22038
|
const TTL$u = 300000;
|
|
22025
22039
|
const VERSION$1Z = "c57b66c259b23683db7b763e132e8633";
|
|
22026
|
-
function validate$
|
|
22040
|
+
function validate$1k(obj, path = 'FlexipageFormulaActivationRepresentation') {
|
|
22027
22041
|
const v_error = (() => {
|
|
22028
22042
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22029
22043
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22044,7 +22058,7 @@ function validate$1j(obj, path = 'FlexipageFormulaActivationRepresentation') {
|
|
|
22044
22058
|
for (let i = 0; i < obj_activations_prop.length; i++) {
|
|
22045
22059
|
const obj_activations_prop_item = obj_activations_prop[i];
|
|
22046
22060
|
const path_activations_prop_item = path_activations_prop + '[' + i + ']';
|
|
22047
|
-
const referencepath_activations_prop_itemValidationError = validate$
|
|
22061
|
+
const referencepath_activations_prop_itemValidationError = validate$1l(obj_activations_prop_item, path_activations_prop_item);
|
|
22048
22062
|
if (referencepath_activations_prop_itemValidationError !== null) {
|
|
22049
22063
|
let message = 'Object doesn\'t match FormulaOverridesInfoRepresentation (at "' + path_activations_prop_item + '")\n';
|
|
22050
22064
|
message += referencepath_activations_prop_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -22088,7 +22102,7 @@ function equals$L(existing, incoming) {
|
|
|
22088
22102
|
}
|
|
22089
22103
|
const ingest$1C = function FlexipageFormulaActivationRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
22090
22104
|
if (process.env.NODE_ENV !== 'production') {
|
|
22091
|
-
const validateError = validate$
|
|
22105
|
+
const validateError = validate$1k(input);
|
|
22092
22106
|
if (validateError !== null) {
|
|
22093
22107
|
throw validateError;
|
|
22094
22108
|
}
|
|
@@ -22271,7 +22285,7 @@ function merge$1(existing, incoming) {
|
|
|
22271
22285
|
const dynamicIngest$4 = (ingestParams) => {
|
|
22272
22286
|
return function QuickActionDefaultsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
22273
22287
|
if (process.env.NODE_ENV !== 'production') {
|
|
22274
|
-
const validateError = validate$
|
|
22288
|
+
const validateError = validate$1r(input);
|
|
22275
22289
|
if (validateError !== null) {
|
|
22276
22290
|
throw validateError;
|
|
22277
22291
|
}
|
|
@@ -22287,7 +22301,10 @@ const dynamicIngest$4 = (ingestParams) => {
|
|
|
22287
22301
|
if (existingRecord === undefined || equals$R(existingRecord, incomingRecord) === false) {
|
|
22288
22302
|
luvio.storePublish(key, incomingRecord);
|
|
22289
22303
|
}
|
|
22290
|
-
luvio.publishStoreMetadata(key,
|
|
22304
|
+
luvio.publishStoreMetadata(key, {
|
|
22305
|
+
...QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS,
|
|
22306
|
+
ingestionTimestamp: timestamp,
|
|
22307
|
+
});
|
|
22291
22308
|
return createLink$1(key);
|
|
22292
22309
|
};
|
|
22293
22310
|
};
|
|
@@ -22780,7 +22797,7 @@ const getRecordEditActionsAdapterFactory = (luvio) => function UiApi__getRecordE
|
|
|
22780
22797
|
buildCachedSnapshotCachePolicy$F, buildNetworkSnapshotCachePolicy$G);
|
|
22781
22798
|
};
|
|
22782
22799
|
|
|
22783
|
-
function validate$
|
|
22800
|
+
function validate$1j(obj, path = 'ActionRelatedListSingleBatchInputRepresentation') {
|
|
22784
22801
|
const v_error = (() => {
|
|
22785
22802
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22786
22803
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23206,7 +23223,7 @@ function typeCheckConfig$U(untrustedConfig) {
|
|
|
23206
23223
|
const untrustedConfig_relatedListsActionParameters_array = [];
|
|
23207
23224
|
for (let i = 0, arrayLength = untrustedConfig_relatedListsActionParameters.length; i < arrayLength; i++) {
|
|
23208
23225
|
const untrustedConfig_relatedListsActionParameters_item = untrustedConfig_relatedListsActionParameters[i];
|
|
23209
|
-
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$
|
|
23226
|
+
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$1j(untrustedConfig_relatedListsActionParameters_item);
|
|
23210
23227
|
if (referenceActionRelatedListSingleBatchInputRepresentationValidationError === null) {
|
|
23211
23228
|
untrustedConfig_relatedListsActionParameters_array.push(untrustedConfig_relatedListsActionParameters_item);
|
|
23212
23229
|
}
|
|
@@ -23524,7 +23541,7 @@ const getRelatedListRecordActionsAdapterFactory = (luvio) => function UiApi__get
|
|
|
23524
23541
|
};
|
|
23525
23542
|
|
|
23526
23543
|
const VERSION$1Y = "a316b3bba367f54adc67d7552ed7d36d";
|
|
23527
|
-
function validate$
|
|
23544
|
+
function validate$1i(obj, path = 'PageReferenceRepresentation') {
|
|
23528
23545
|
const v_error = (() => {
|
|
23529
23546
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
23530
23547
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23585,7 +23602,7 @@ function equals$K(existing, incoming) {
|
|
|
23585
23602
|
}
|
|
23586
23603
|
const ingest$1B = function PageReferenceRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
23587
23604
|
if (process.env.NODE_ENV !== 'production') {
|
|
23588
|
-
const validateError = validate$
|
|
23605
|
+
const validateError = validate$1i(input);
|
|
23589
23606
|
if (validateError !== null) {
|
|
23590
23607
|
throw validateError;
|
|
23591
23608
|
}
|
|
@@ -23607,7 +23624,7 @@ function getTypeCacheKeys$1E(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
23607
23624
|
|
|
23608
23625
|
const TTL$t = 120000;
|
|
23609
23626
|
const VERSION$1X = "09884ca5bf90ea4662092a4e48817081";
|
|
23610
|
-
function validate$
|
|
23627
|
+
function validate$1h(obj, path = 'NavItemRepresentation') {
|
|
23611
23628
|
const v_error = (() => {
|
|
23612
23629
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
23613
23630
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -23999,7 +24016,7 @@ function equals$J(existing, incoming) {
|
|
|
23999
24016
|
}
|
|
24000
24017
|
const ingest$1A = function NavItemRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
24001
24018
|
if (process.env.NODE_ENV !== 'production') {
|
|
24002
|
-
const validateError = validate$
|
|
24019
|
+
const validateError = validate$1h(input);
|
|
24003
24020
|
if (validateError !== null) {
|
|
24004
24021
|
throw validateError;
|
|
24005
24022
|
}
|
|
@@ -24024,7 +24041,7 @@ function getTypeCacheKeys$1D(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
24024
24041
|
|
|
24025
24042
|
const TTL$s = 300000;
|
|
24026
24043
|
const VERSION$1W = "1781f2d3d4e413cf0c681774d82d02cd";
|
|
24027
|
-
function validate$
|
|
24044
|
+
function validate$1g(obj, path = 'AppRepresentation') {
|
|
24028
24045
|
const v_error = (() => {
|
|
24029
24046
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
24030
24047
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -24466,7 +24483,7 @@ function equals$I(existing, incoming) {
|
|
|
24466
24483
|
}
|
|
24467
24484
|
const ingest$1z = function AppRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
24468
24485
|
if (process.env.NODE_ENV !== 'production') {
|
|
24469
|
-
const validateError = validate$
|
|
24486
|
+
const validateError = validate$1g(input);
|
|
24470
24487
|
if (validateError !== null) {
|
|
24471
24488
|
throw validateError;
|
|
24472
24489
|
}
|
|
@@ -24496,7 +24513,7 @@ function getTypeCacheKeys$1C(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
24496
24513
|
|
|
24497
24514
|
const TTL$r = 300000;
|
|
24498
24515
|
const VERSION$1V = "a254babf0b6414315db7808a157fd9fc";
|
|
24499
|
-
function validate$
|
|
24516
|
+
function validate$1f(obj, path = 'AppsRepresentation') {
|
|
24500
24517
|
const v_error = (() => {
|
|
24501
24518
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
24502
24519
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -24578,7 +24595,7 @@ function equals$H(existing, incoming) {
|
|
|
24578
24595
|
}
|
|
24579
24596
|
const ingest$1y = function AppsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
24580
24597
|
if (process.env.NODE_ENV !== 'production') {
|
|
24581
|
-
const validateError = validate$
|
|
24598
|
+
const validateError = validate$1f(input);
|
|
24582
24599
|
if (validateError !== null) {
|
|
24583
24600
|
throw validateError;
|
|
24584
24601
|
}
|
|
@@ -24886,7 +24903,7 @@ const getAppDetailsAdapterFactory = (luvio) => function UiApi__getAppDetails(unt
|
|
|
24886
24903
|
};
|
|
24887
24904
|
|
|
24888
24905
|
const VERSION$1U = "f43ef90ffde4d488414d6868e3aaefcb";
|
|
24889
|
-
function validate$
|
|
24906
|
+
function validate$1e(obj, path = 'DuplicateRuleFilterItemRepresentation') {
|
|
24890
24907
|
const v_error = (() => {
|
|
24891
24908
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
24892
24909
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -24948,7 +24965,7 @@ const select$2g = function DuplicateRuleFilterItemRepresentationSelect() {
|
|
|
24948
24965
|
};
|
|
24949
24966
|
|
|
24950
24967
|
const VERSION$1T = "320d7f254687278f2763d4b490dab3fb";
|
|
24951
|
-
function validate$
|
|
24968
|
+
function validate$1d(obj, path = 'DuplicateRuleFilterRepresentation') {
|
|
24952
24969
|
const v_error = (() => {
|
|
24953
24970
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
24954
24971
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -24971,7 +24988,7 @@ function validate$1c(obj, path = 'DuplicateRuleFilterRepresentation') {
|
|
|
24971
24988
|
for (let i = 0; i < obj_filterItems.length; i++) {
|
|
24972
24989
|
const obj_filterItems_item = obj_filterItems[i];
|
|
24973
24990
|
const path_filterItems_item = path_filterItems + '[' + i + ']';
|
|
24974
|
-
const referencepath_filterItems_itemValidationError = validate$
|
|
24991
|
+
const referencepath_filterItems_itemValidationError = validate$1e(obj_filterItems_item, path_filterItems_item);
|
|
24975
24992
|
if (referencepath_filterItems_itemValidationError !== null) {
|
|
24976
24993
|
let message = 'Object doesn\'t match DuplicateRuleFilterItemRepresentation (at "' + path_filterItems_item + '")\n';
|
|
24977
24994
|
message += referencepath_filterItems_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -25014,7 +25031,7 @@ const select$2f = function DuplicateRuleFilterRepresentationSelect() {
|
|
|
25014
25031
|
};
|
|
25015
25032
|
|
|
25016
25033
|
const VERSION$1S = "b47b44e260e5ce777beaf3da9088997c";
|
|
25017
|
-
function validate$
|
|
25034
|
+
function validate$1c(obj, path = 'MatchRuleRepresentation') {
|
|
25018
25035
|
const v_error = (() => {
|
|
25019
25036
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
25020
25037
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -25084,7 +25101,7 @@ const select$2e = function MatchRuleRepresentationSelect() {
|
|
|
25084
25101
|
};
|
|
25085
25102
|
|
|
25086
25103
|
const VERSION$1R = "bb83d7210bb1d7861b6188bc5f552617";
|
|
25087
|
-
function validate$
|
|
25104
|
+
function validate$1b(obj, path = 'DuplicateRuleRepresentation') {
|
|
25088
25105
|
const v_error = (() => {
|
|
25089
25106
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
25090
25107
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -25112,7 +25129,7 @@ function validate$1a(obj, path = 'DuplicateRuleRepresentation') {
|
|
|
25112
25129
|
for (let i = 0; i < obj_duplicateRuleFilters.length; i++) {
|
|
25113
25130
|
const obj_duplicateRuleFilters_item = obj_duplicateRuleFilters[i];
|
|
25114
25131
|
const path_duplicateRuleFilters_item = path_duplicateRuleFilters + '[' + i + ']';
|
|
25115
|
-
const referencepath_duplicateRuleFilters_itemValidationError = validate$
|
|
25132
|
+
const referencepath_duplicateRuleFilters_itemValidationError = validate$1d(obj_duplicateRuleFilters_item, path_duplicateRuleFilters_item);
|
|
25116
25133
|
if (referencepath_duplicateRuleFilters_itemValidationError !== null) {
|
|
25117
25134
|
let message = 'Object doesn\'t match DuplicateRuleFilterRepresentation (at "' + path_duplicateRuleFilters_item + '")\n';
|
|
25118
25135
|
message += referencepath_duplicateRuleFilters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -25132,7 +25149,7 @@ function validate$1a(obj, path = 'DuplicateRuleRepresentation') {
|
|
|
25132
25149
|
for (let i = 0; i < obj_matchRules.length; i++) {
|
|
25133
25150
|
const obj_matchRules_item = obj_matchRules[i];
|
|
25134
25151
|
const path_matchRules_item = path_matchRules + '[' + i + ']';
|
|
25135
|
-
const referencepath_matchRules_itemValidationError = validate$
|
|
25152
|
+
const referencepath_matchRules_itemValidationError = validate$1c(obj_matchRules_item, path_matchRules_item);
|
|
25136
25153
|
if (referencepath_matchRules_itemValidationError !== null) {
|
|
25137
25154
|
let message = 'Object doesn\'t match MatchRuleRepresentation (at "' + path_matchRules_item + '")\n';
|
|
25138
25155
|
message += referencepath_matchRules_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -25225,7 +25242,7 @@ const select$2d = function DuplicateRuleRepresentationSelect() {
|
|
|
25225
25242
|
|
|
25226
25243
|
const TTL$q = 900000;
|
|
25227
25244
|
const VERSION$1Q = "be27ee99dc0dc43a1f66b8fe98dc532c";
|
|
25228
|
-
function validate$
|
|
25245
|
+
function validate$1a(obj, path = 'DuplicatesConfigurationRepresentation') {
|
|
25229
25246
|
const v_error = (() => {
|
|
25230
25247
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
25231
25248
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -25260,7 +25277,7 @@ function validate$19(obj, path = 'DuplicatesConfigurationRepresentation') {
|
|
|
25260
25277
|
for (let i = 0; i < obj_duplicateRules.length; i++) {
|
|
25261
25278
|
const obj_duplicateRules_item = obj_duplicateRules[i];
|
|
25262
25279
|
const path_duplicateRules_item = path_duplicateRules + '[' + i + ']';
|
|
25263
|
-
const referencepath_duplicateRules_itemValidationError = validate$
|
|
25280
|
+
const referencepath_duplicateRules_itemValidationError = validate$1b(obj_duplicateRules_item, path_duplicateRules_item);
|
|
25264
25281
|
if (referencepath_duplicateRules_itemValidationError !== null) {
|
|
25265
25282
|
let message = 'Object doesn\'t match DuplicateRuleRepresentation (at "' + path_duplicateRules_item + '")\n';
|
|
25266
25283
|
message += referencepath_duplicateRules_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -25327,7 +25344,7 @@ function equals$G(existing, incoming) {
|
|
|
25327
25344
|
}
|
|
25328
25345
|
const ingest$1x = function DuplicatesConfigurationRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
25329
25346
|
if (process.env.NODE_ENV !== 'production') {
|
|
25330
|
-
const validateError = validate$
|
|
25347
|
+
const validateError = validate$1a(input);
|
|
25331
25348
|
if (validateError !== null) {
|
|
25332
25349
|
throw validateError;
|
|
25333
25350
|
}
|
|
@@ -26266,7 +26283,7 @@ const getListInfosByNameAdapterFactory = (luvio) => function UiApi__getListInfos
|
|
|
26266
26283
|
buildCachedSnapshotCachePolicy$v, buildNetworkSnapshotCachePolicy$w);
|
|
26267
26284
|
};
|
|
26268
26285
|
|
|
26269
|
-
function validate$
|
|
26286
|
+
function validate$19(obj, path = 'ListFilterByInfoInputRepresentation') {
|
|
26270
26287
|
const v_error = (() => {
|
|
26271
26288
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
26272
26289
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -26297,7 +26314,7 @@ function validate$18(obj, path = 'ListFilterByInfoInputRepresentation') {
|
|
|
26297
26314
|
return v_error === undefined ? null : v_error;
|
|
26298
26315
|
}
|
|
26299
26316
|
|
|
26300
|
-
function validate$
|
|
26317
|
+
function validate$18(obj, path = 'ListScopeInputRepresentation') {
|
|
26301
26318
|
const v_error = (() => {
|
|
26302
26319
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
26303
26320
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -26426,7 +26443,7 @@ function typeCheckConfig$K(untrustedConfig) {
|
|
|
26426
26443
|
const untrustedConfig_filteredByInfo_array = [];
|
|
26427
26444
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
26428
26445
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
26429
|
-
const referenceListFilterByInfoInputRepresentationValidationError = validate$
|
|
26446
|
+
const referenceListFilterByInfoInputRepresentationValidationError = validate$19(untrustedConfig_filteredByInfo_item);
|
|
26430
26447
|
if (referenceListFilterByInfoInputRepresentationValidationError === null) {
|
|
26431
26448
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
26432
26449
|
}
|
|
@@ -26434,7 +26451,7 @@ function typeCheckConfig$K(untrustedConfig) {
|
|
|
26434
26451
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
26435
26452
|
}
|
|
26436
26453
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
26437
|
-
const referenceListScopeInputRepresentationValidationError = validate$
|
|
26454
|
+
const referenceListScopeInputRepresentationValidationError = validate$18(untrustedConfig_scope);
|
|
26438
26455
|
if (referenceListScopeInputRepresentationValidationError === null) {
|
|
26439
26456
|
config.scope = untrustedConfig_scope;
|
|
26440
26457
|
}
|
|
@@ -26716,7 +26733,7 @@ function typeCheckConfig$H(untrustedConfig) {
|
|
|
26716
26733
|
const untrustedConfig_filteredByInfo_array = [];
|
|
26717
26734
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
26718
26735
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
26719
|
-
const referenceListFilterByInfoInputRepresentationValidationError = validate$
|
|
26736
|
+
const referenceListFilterByInfoInputRepresentationValidationError = validate$19(untrustedConfig_filteredByInfo_item);
|
|
26720
26737
|
if (referenceListFilterByInfoInputRepresentationValidationError === null) {
|
|
26721
26738
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
26722
26739
|
}
|
|
@@ -26724,7 +26741,7 @@ function typeCheckConfig$H(untrustedConfig) {
|
|
|
26724
26741
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
26725
26742
|
}
|
|
26726
26743
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
26727
|
-
const referenceListScopeInputRepresentationValidationError = validate$
|
|
26744
|
+
const referenceListScopeInputRepresentationValidationError = validate$18(untrustedConfig_scope);
|
|
26728
26745
|
if (referenceListScopeInputRepresentationValidationError === null) {
|
|
26729
26746
|
config.scope = untrustedConfig_scope;
|
|
26730
26747
|
}
|
|
@@ -26774,7 +26791,7 @@ const updateListInfoByNameAdapterFactory = (luvio) => {
|
|
|
26774
26791
|
};
|
|
26775
26792
|
|
|
26776
26793
|
const VERSION$1P = "d77026c4d63ef00cdd7e3d600687a40d";
|
|
26777
|
-
function validate$
|
|
26794
|
+
function validate$17(obj, path = 'ListObjectScopeAvailableEntityRepresentation') {
|
|
26778
26795
|
const v_error = (() => {
|
|
26779
26796
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
26780
26797
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -26824,7 +26841,7 @@ function equals$F(existing, incoming) {
|
|
|
26824
26841
|
}
|
|
26825
26842
|
|
|
26826
26843
|
const VERSION$1O = "355933ff2970aa91a2848a94565e956a";
|
|
26827
|
-
function validate$
|
|
26844
|
+
function validate$16(obj, path = 'ListObjectScopeRepresentation') {
|
|
26828
26845
|
const v_error = (() => {
|
|
26829
26846
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
26830
26847
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -26842,7 +26859,7 @@ function validate$15(obj, path = 'ListObjectScopeRepresentation') {
|
|
|
26842
26859
|
for (let i = 0; i < obj_availableEntities.length; i++) {
|
|
26843
26860
|
const obj_availableEntities_item = obj_availableEntities[i];
|
|
26844
26861
|
const path_availableEntities_item = path_availableEntities + '[' + i + ']';
|
|
26845
|
-
const referencepath_availableEntities_itemValidationError = validate$
|
|
26862
|
+
const referencepath_availableEntities_itemValidationError = validate$17(obj_availableEntities_item, path_availableEntities_item);
|
|
26846
26863
|
if (referencepath_availableEntities_itemValidationError !== null) {
|
|
26847
26864
|
let message = 'Object doesn\'t match ListObjectScopeAvailableEntityRepresentation (at "' + path_availableEntities_item + '")\n';
|
|
26848
26865
|
message += referencepath_availableEntities_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -26906,7 +26923,7 @@ function equals$E(existing, incoming) {
|
|
|
26906
26923
|
}
|
|
26907
26924
|
|
|
26908
26925
|
const VERSION$1N = "c5c08ea834378670c9d6f235ff71c9f0";
|
|
26909
|
-
function validate$
|
|
26926
|
+
function validate$15(obj, path = 'ListObjectPicklistValueRepresentation') {
|
|
26910
26927
|
const v_error = (() => {
|
|
26911
26928
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
26912
26929
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -26956,7 +26973,7 @@ function equals$D(existing, incoming) {
|
|
|
26956
26973
|
}
|
|
26957
26974
|
|
|
26958
26975
|
const VERSION$1M = "2c35f797fead79b5c45b521e77dd6ace";
|
|
26959
|
-
function validate$
|
|
26976
|
+
function validate$14(obj, path = 'ListObjectColumnRepresentation') {
|
|
26960
26977
|
const v_error = (() => {
|
|
26961
26978
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
26962
26979
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -27025,7 +27042,7 @@ function validate$13(obj, path = 'ListObjectColumnRepresentation') {
|
|
|
27025
27042
|
for (let i = 0; i < obj_picklistValues.length; i++) {
|
|
27026
27043
|
const obj_picklistValues_item = obj_picklistValues[i];
|
|
27027
27044
|
const path_picklistValues_item = path_picklistValues + '[' + i + ']';
|
|
27028
|
-
const referencepath_picklistValues_itemValidationError = validate$
|
|
27045
|
+
const referencepath_picklistValues_itemValidationError = validate$15(obj_picklistValues_item, path_picklistValues_item);
|
|
27029
27046
|
if (referencepath_picklistValues_itemValidationError !== null) {
|
|
27030
27047
|
let message = 'Object doesn\'t match ListObjectPicklistValueRepresentation (at "' + path_picklistValues_item + '")\n';
|
|
27031
27048
|
message += referencepath_picklistValues_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -27171,7 +27188,7 @@ function equals$C(existing, incoming) {
|
|
|
27171
27188
|
|
|
27172
27189
|
const TTL$p = 900000;
|
|
27173
27190
|
const VERSION$1L = "84e1e3ffdfcb59f65d7b8906e33027ac";
|
|
27174
|
-
function validate$
|
|
27191
|
+
function validate$13(obj, path = 'ListObjectInfoRepresentation') {
|
|
27175
27192
|
const v_error = (() => {
|
|
27176
27193
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
27177
27194
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -27184,7 +27201,7 @@ function validate$12(obj, path = 'ListObjectInfoRepresentation') {
|
|
|
27184
27201
|
for (let i = 0; i < obj_availableScopes.length; i++) {
|
|
27185
27202
|
const obj_availableScopes_item = obj_availableScopes[i];
|
|
27186
27203
|
const path_availableScopes_item = path_availableScopes + '[' + i + ']';
|
|
27187
|
-
const referencepath_availableScopes_itemValidationError = validate$
|
|
27204
|
+
const referencepath_availableScopes_itemValidationError = validate$16(obj_availableScopes_item, path_availableScopes_item);
|
|
27188
27205
|
if (referencepath_availableScopes_itemValidationError !== null) {
|
|
27189
27206
|
let message = 'Object doesn\'t match ListObjectScopeRepresentation (at "' + path_availableScopes_item + '")\n';
|
|
27190
27207
|
message += referencepath_availableScopes_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -27199,7 +27216,7 @@ function validate$12(obj, path = 'ListObjectInfoRepresentation') {
|
|
|
27199
27216
|
for (let i = 0; i < obj_columns.length; i++) {
|
|
27200
27217
|
const obj_columns_item = obj_columns[i];
|
|
27201
27218
|
const path_columns_item = path_columns + '[' + i + ']';
|
|
27202
|
-
const referencepath_columns_itemValidationError = validate$
|
|
27219
|
+
const referencepath_columns_itemValidationError = validate$14(obj_columns_item, path_columns_item);
|
|
27203
27220
|
if (referencepath_columns_itemValidationError !== null) {
|
|
27204
27221
|
let message = 'Object doesn\'t match ListObjectColumnRepresentation (at "' + path_columns_item + '")\n';
|
|
27205
27222
|
message += referencepath_columns_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -27333,7 +27350,7 @@ function equals$B(existing, incoming) {
|
|
|
27333
27350
|
}
|
|
27334
27351
|
const ingest$1w = function ListObjectInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
27335
27352
|
if (process.env.NODE_ENV !== 'production') {
|
|
27336
|
-
const validateError = validate$
|
|
27353
|
+
const validateError = validate$13(input);
|
|
27337
27354
|
if (validateError !== null) {
|
|
27338
27355
|
throw validateError;
|
|
27339
27356
|
}
|
|
@@ -27496,7 +27513,7 @@ const getListObjectInfoAdapterFactory = (luvio) => function UiApi__getListObject
|
|
|
27496
27513
|
|
|
27497
27514
|
const TTL$o = 900000;
|
|
27498
27515
|
const VERSION$1K = "458d4a6a30201e422e8daec5fcb03845";
|
|
27499
|
-
function validate$
|
|
27516
|
+
function validate$12(obj, path = 'ListPreferencesRepresentation') {
|
|
27500
27517
|
const v_error = (() => {
|
|
27501
27518
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
27502
27519
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -27531,7 +27548,7 @@ function validate$11(obj, path = 'ListPreferencesRepresentation') {
|
|
|
27531
27548
|
}
|
|
27532
27549
|
const obj_listReference = obj.listReference;
|
|
27533
27550
|
const path_listReference = path + '.listReference';
|
|
27534
|
-
const referencepath_listReferenceValidationError = validate$
|
|
27551
|
+
const referencepath_listReferenceValidationError = validate$21(obj_listReference, path_listReference);
|
|
27535
27552
|
if (referencepath_listReferenceValidationError !== null) {
|
|
27536
27553
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
27537
27554
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -27545,7 +27562,7 @@ function validate$11(obj, path = 'ListPreferencesRepresentation') {
|
|
|
27545
27562
|
for (let i = 0; i < obj_orderedBy.length; i++) {
|
|
27546
27563
|
const obj_orderedBy_item = obj_orderedBy[i];
|
|
27547
27564
|
const path_orderedBy_item = path_orderedBy + '[' + i + ']';
|
|
27548
|
-
const referencepath_orderedBy_itemValidationError = validate$
|
|
27565
|
+
const referencepath_orderedBy_itemValidationError = validate$1_(obj_orderedBy_item, path_orderedBy_item);
|
|
27549
27566
|
if (referencepath_orderedBy_itemValidationError !== null) {
|
|
27550
27567
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedBy_item + '")\n';
|
|
27551
27568
|
message += referencepath_orderedBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -27641,7 +27658,7 @@ function equals$A(existing, incoming) {
|
|
|
27641
27658
|
}
|
|
27642
27659
|
const ingest$1v = function ListPreferencesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
27643
27660
|
if (process.env.NODE_ENV !== 'production') {
|
|
27644
|
-
const validateError = validate$
|
|
27661
|
+
const validateError = validate$12(input);
|
|
27645
27662
|
if (validateError !== null) {
|
|
27646
27663
|
throw validateError;
|
|
27647
27664
|
}
|
|
@@ -27804,7 +27821,7 @@ const getListPreferencesAdapterFactory = (luvio) => function UiApi__getListPrefe
|
|
|
27804
27821
|
buildCachedSnapshotCachePolicy$s, buildNetworkSnapshotCachePolicy$t);
|
|
27805
27822
|
};
|
|
27806
27823
|
|
|
27807
|
-
function validate$
|
|
27824
|
+
function validate$11(obj, path = 'ListOrderedByInfoInputRepresentation') {
|
|
27808
27825
|
const v_error = (() => {
|
|
27809
27826
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
27810
27827
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -27912,7 +27929,7 @@ function typeCheckConfig$E(untrustedConfig) {
|
|
|
27912
27929
|
const untrustedConfig_orderedBy_array = [];
|
|
27913
27930
|
for (let i = 0, arrayLength = untrustedConfig_orderedBy.length; i < arrayLength; i++) {
|
|
27914
27931
|
const untrustedConfig_orderedBy_item = untrustedConfig_orderedBy[i];
|
|
27915
|
-
const referenceListOrderedByInfoInputRepresentationValidationError = validate$
|
|
27932
|
+
const referenceListOrderedByInfoInputRepresentationValidationError = validate$11(untrustedConfig_orderedBy_item);
|
|
27916
27933
|
if (referenceListOrderedByInfoInputRepresentationValidationError === null) {
|
|
27917
27934
|
untrustedConfig_orderedBy_array.push(untrustedConfig_orderedBy_item);
|
|
27918
27935
|
}
|
|
@@ -27966,7 +27983,7 @@ const updateListPreferencesAdapterFactory = (luvio) => {
|
|
|
27966
27983
|
|
|
27967
27984
|
const TTL$n = 120000;
|
|
27968
27985
|
const VERSION$1J = "756779d0d7e137dd72c743544afbad82";
|
|
27969
|
-
function validate
|
|
27986
|
+
function validate$10(obj, path = 'NavItemsRepresentation') {
|
|
27970
27987
|
const v_error = (() => {
|
|
27971
27988
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
27972
27989
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -28094,7 +28111,7 @@ function equals$z(existing, incoming) {
|
|
|
28094
28111
|
}
|
|
28095
28112
|
const ingest$1u = function NavItemsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
28096
28113
|
if (process.env.NODE_ENV !== 'production') {
|
|
28097
|
-
const validateError = validate
|
|
28114
|
+
const validateError = validate$10(input);
|
|
28098
28115
|
if (validateError !== null) {
|
|
28099
28116
|
throw validateError;
|
|
28100
28117
|
}
|
|
@@ -28701,7 +28718,7 @@ var DiscriminatorValues$4;
|
|
|
28701
28718
|
DiscriminatorValues["OpportunityStage"] = "OpportunityStage";
|
|
28702
28719
|
})(DiscriminatorValues$4 || (DiscriminatorValues$4 = {}));
|
|
28703
28720
|
const VERSION$1E = "bd523b2343366edfc25a2dbee2c4e986";
|
|
28704
|
-
function validate
|
|
28721
|
+
function validate$$(obj, path = 'AbstractPicklistValueAttributesRepresentation') {
|
|
28705
28722
|
const v_error = (() => {
|
|
28706
28723
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
28707
28724
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -28746,7 +28763,7 @@ const select$1R = function AbstractPicklistValueAttributesRepresentationSelect()
|
|
|
28746
28763
|
};
|
|
28747
28764
|
|
|
28748
28765
|
const VERSION$1D = "9e2a16a80378487f557124c771201cf9";
|
|
28749
|
-
function validate$
|
|
28766
|
+
function validate$_(obj, path = 'PicklistValueRepresentation') {
|
|
28750
28767
|
const v_error = (() => {
|
|
28751
28768
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
28752
28769
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -28755,7 +28772,7 @@ function validate$Z(obj, path = 'PicklistValueRepresentation') {
|
|
|
28755
28772
|
const path_attributes = path + '.attributes';
|
|
28756
28773
|
let obj_attributes_union0 = null;
|
|
28757
28774
|
const obj_attributes_union0_error = (() => {
|
|
28758
|
-
const referencepath_attributesValidationError = validate
|
|
28775
|
+
const referencepath_attributesValidationError = validate$$(obj_attributes, path_attributes);
|
|
28759
28776
|
if (referencepath_attributesValidationError !== null) {
|
|
28760
28777
|
let message = 'Object doesn\'t match AbstractPicklistValueAttributesRepresentation (at "' + path_attributes + '")\n';
|
|
28761
28778
|
message += referencepath_attributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -28850,7 +28867,7 @@ function PicklistValuesRepresentationKeyBuilderFromType(luvio, object) {
|
|
|
28850
28867
|
|
|
28851
28868
|
const TTL$m = 900000;
|
|
28852
28869
|
const VERSION$1C = "0a361a49370acb4c6a31721a2057649a";
|
|
28853
|
-
function validate$
|
|
28870
|
+
function validate$Z(obj, path = 'PicklistValuesRepresentation') {
|
|
28854
28871
|
const v_error = (() => {
|
|
28855
28872
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
28856
28873
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -28873,7 +28890,7 @@ function validate$Y(obj, path = 'PicklistValuesRepresentation') {
|
|
|
28873
28890
|
const path_defaultValue = path + '.defaultValue';
|
|
28874
28891
|
let obj_defaultValue_union0 = null;
|
|
28875
28892
|
const obj_defaultValue_union0_error = (() => {
|
|
28876
|
-
const referencepath_defaultValueValidationError = validate$
|
|
28893
|
+
const referencepath_defaultValueValidationError = validate$_(obj_defaultValue, path_defaultValue);
|
|
28877
28894
|
if (referencepath_defaultValueValidationError !== null) {
|
|
28878
28895
|
let message = 'Object doesn\'t match PicklistValueRepresentation (at "' + path_defaultValue + '")\n';
|
|
28879
28896
|
message += referencepath_defaultValueValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -28916,7 +28933,7 @@ function validate$Y(obj, path = 'PicklistValuesRepresentation') {
|
|
|
28916
28933
|
for (let i = 0; i < obj_values.length; i++) {
|
|
28917
28934
|
const obj_values_item = obj_values[i];
|
|
28918
28935
|
const path_values_item = path_values + '[' + i + ']';
|
|
28919
|
-
const referencepath_values_itemValidationError = validate$
|
|
28936
|
+
const referencepath_values_itemValidationError = validate$_(obj_values_item, path_values_item);
|
|
28920
28937
|
if (referencepath_values_itemValidationError !== null) {
|
|
28921
28938
|
let message = 'Object doesn\'t match PicklistValueRepresentation (at "' + path_values_item + '")\n';
|
|
28922
28939
|
message += referencepath_values_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -28974,7 +28991,7 @@ function equals$y(existing, incoming) {
|
|
|
28974
28991
|
}
|
|
28975
28992
|
const ingest$1t = function PicklistValuesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
28976
28993
|
if (process.env.NODE_ENV !== 'production') {
|
|
28977
|
-
const validateError = validate$
|
|
28994
|
+
const validateError = validate$Z(input);
|
|
28978
28995
|
if (validateError !== null) {
|
|
28979
28996
|
throw validateError;
|
|
28980
28997
|
}
|
|
@@ -28996,7 +29013,7 @@ function getTypeCacheKeys$1w(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
28996
29013
|
|
|
28997
29014
|
const TTL$l = 300000;
|
|
28998
29015
|
const VERSION$1B = "ec03b0f6da287c949d1ccaa904ddbfd3";
|
|
28999
|
-
function validate$
|
|
29016
|
+
function validate$Y(obj, path = 'PicklistValuesCollectionRepresentation') {
|
|
29000
29017
|
const v_error = (() => {
|
|
29001
29018
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29002
29019
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29083,7 +29100,7 @@ function equals$x(existing, incoming) {
|
|
|
29083
29100
|
}
|
|
29084
29101
|
const ingest$1s = function PicklistValuesCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
29085
29102
|
if (process.env.NODE_ENV !== 'production') {
|
|
29086
|
-
const validateError = validate$
|
|
29103
|
+
const validateError = validate$Y(input);
|
|
29087
29104
|
if (validateError !== null) {
|
|
29088
29105
|
throw validateError;
|
|
29089
29106
|
}
|
|
@@ -29420,7 +29437,7 @@ const getPicklistValuesAdapterFactory = (luvio) => function UiApi__getPicklistVa
|
|
|
29420
29437
|
buildCachedSnapshotCachePolicy$n, buildNetworkSnapshotCachePolicy$o);
|
|
29421
29438
|
};
|
|
29422
29439
|
|
|
29423
|
-
function validate$
|
|
29440
|
+
function validate$X(obj, path = 'MatchResultInfoRepresentation') {
|
|
29424
29441
|
const v_error = (() => {
|
|
29425
29442
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29426
29443
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29446,7 +29463,7 @@ function validate$W(obj, path = 'MatchResultInfoRepresentation') {
|
|
|
29446
29463
|
return v_error === undefined ? null : v_error;
|
|
29447
29464
|
}
|
|
29448
29465
|
|
|
29449
|
-
function validate$
|
|
29466
|
+
function validate$W(obj, path = 'DuplicateResultInfoRepresentation') {
|
|
29450
29467
|
const v_error = (() => {
|
|
29451
29468
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29452
29469
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29458,7 +29475,7 @@ function validate$V(obj, path = 'DuplicateResultInfoRepresentation') {
|
|
|
29458
29475
|
}
|
|
29459
29476
|
const obj_matchResultInfo = obj.matchResultInfo;
|
|
29460
29477
|
const path_matchResultInfo = path + '.matchResultInfo';
|
|
29461
|
-
const referencepath_matchResultInfoValidationError = validate$
|
|
29478
|
+
const referencepath_matchResultInfoValidationError = validate$X(obj_matchResultInfo, path_matchResultInfo);
|
|
29462
29479
|
if (referencepath_matchResultInfoValidationError !== null) {
|
|
29463
29480
|
let message = 'Object doesn\'t match MatchResultInfoRepresentation (at "' + path_matchResultInfo + '")\n';
|
|
29464
29481
|
message += referencepath_matchResultInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -29473,7 +29490,7 @@ function validate$V(obj, path = 'DuplicateResultInfoRepresentation') {
|
|
|
29473
29490
|
return v_error === undefined ? null : v_error;
|
|
29474
29491
|
}
|
|
29475
29492
|
|
|
29476
|
-
function validate$
|
|
29493
|
+
function validate$V(obj, path = 'MatchRepresentation') {
|
|
29477
29494
|
const v_error = (() => {
|
|
29478
29495
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29479
29496
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29488,7 +29505,7 @@ function validate$U(obj, path = 'MatchRepresentation') {
|
|
|
29488
29505
|
const key = obj_duplicateResultInfos_keys[i];
|
|
29489
29506
|
const obj_duplicateResultInfos_prop = obj_duplicateResultInfos[key];
|
|
29490
29507
|
const path_duplicateResultInfos_prop = path_duplicateResultInfos + '["' + key + '"]';
|
|
29491
|
-
const referencepath_duplicateResultInfos_propValidationError = validate$
|
|
29508
|
+
const referencepath_duplicateResultInfos_propValidationError = validate$W(obj_duplicateResultInfos_prop, path_duplicateResultInfos_prop);
|
|
29492
29509
|
if (referencepath_duplicateResultInfos_propValidationError !== null) {
|
|
29493
29510
|
let message = 'Object doesn\'t match DuplicateResultInfoRepresentation (at "' + path_duplicateResultInfos_prop + '")\n';
|
|
29494
29511
|
message += referencepath_duplicateResultInfos_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -29518,7 +29535,7 @@ function validate$U(obj, path = 'MatchRepresentation') {
|
|
|
29518
29535
|
|
|
29519
29536
|
const TTL$k = 30000;
|
|
29520
29537
|
const VERSION$1A = "583c38564fa15ce0fb3dd2807be1bdc6";
|
|
29521
|
-
function validate$
|
|
29538
|
+
function validate$U(obj, path = 'DuplicatesRepresentation') {
|
|
29522
29539
|
const v_error = (() => {
|
|
29523
29540
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29524
29541
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29553,7 +29570,7 @@ function validate$T(obj, path = 'DuplicatesRepresentation') {
|
|
|
29553
29570
|
for (let i = 0; i < obj_matches.length; i++) {
|
|
29554
29571
|
const obj_matches_item = obj_matches[i];
|
|
29555
29572
|
const path_matches_item = path_matches + '[' + i + ']';
|
|
29556
|
-
const referencepath_matches_itemValidationError = validate$
|
|
29573
|
+
const referencepath_matches_itemValidationError = validate$V(obj_matches_item, path_matches_item);
|
|
29557
29574
|
if (referencepath_matches_itemValidationError !== null) {
|
|
29558
29575
|
let message = 'Object doesn\'t match MatchRepresentation (at "' + path_matches_item + '")\n';
|
|
29559
29576
|
message += referencepath_matches_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -29583,7 +29600,7 @@ function equals$w(existing, incoming) {
|
|
|
29583
29600
|
}
|
|
29584
29601
|
const ingest$1r = function DuplicatesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
29585
29602
|
if (process.env.NODE_ENV !== 'production') {
|
|
29586
|
-
const validateError = validate$
|
|
29603
|
+
const validateError = validate$U(input);
|
|
29587
29604
|
if (validateError !== null) {
|
|
29588
29605
|
throw validateError;
|
|
29589
29606
|
}
|
|
@@ -29776,7 +29793,7 @@ const getDuplicatesAdapterFactory = (luvio) => function UiApi__getDuplicates(unt
|
|
|
29776
29793
|
};
|
|
29777
29794
|
|
|
29778
29795
|
const VERSION$1z = "e84b9ffdeff97c411bd111f2a55cf6b6";
|
|
29779
|
-
function validate$
|
|
29796
|
+
function validate$T(obj, path = 'PhotoMetadataRepresentation') {
|
|
29780
29797
|
const v_error = (() => {
|
|
29781
29798
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
29782
29799
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -29868,8 +29885,8 @@ function equals$v(existing, incoming) {
|
|
|
29868
29885
|
}
|
|
29869
29886
|
|
|
29870
29887
|
const VERSION$1y = "34ffbf4219dfebb707bff609c2d5bf89";
|
|
29871
|
-
function validate$
|
|
29872
|
-
const validateAbstractRecordAvatarRepresentation_validateError = validate$
|
|
29888
|
+
function validate$S(obj, path = 'PhotoRecordAvatarRepresentation') {
|
|
29889
|
+
const validateAbstractRecordAvatarRepresentation_validateError = validate$Q(obj, path);
|
|
29873
29890
|
if (validateAbstractRecordAvatarRepresentation_validateError !== null) {
|
|
29874
29891
|
return validateAbstractRecordAvatarRepresentation_validateError;
|
|
29875
29892
|
}
|
|
@@ -29936,7 +29953,7 @@ function validate$R(obj, path = 'PhotoRecordAvatarRepresentation') {
|
|
|
29936
29953
|
}
|
|
29937
29954
|
const obj_photoMetadata = obj.photoMetadata;
|
|
29938
29955
|
const path_photoMetadata = path + '.photoMetadata';
|
|
29939
|
-
const referencepath_photoMetadataValidationError = validate$
|
|
29956
|
+
const referencepath_photoMetadataValidationError = validate$T(obj_photoMetadata, path_photoMetadata);
|
|
29940
29957
|
if (referencepath_photoMetadataValidationError !== null) {
|
|
29941
29958
|
let message = 'Object doesn\'t match PhotoMetadataRepresentation (at "' + path_photoMetadata + '")\n';
|
|
29942
29959
|
message += referencepath_photoMetadataValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30091,7 +30108,7 @@ function equals$u(existing, incoming) {
|
|
|
30091
30108
|
}
|
|
30092
30109
|
const ingest$1q = function PhotoRecordAvatarRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
30093
30110
|
if (process.env.NODE_ENV !== 'production') {
|
|
30094
|
-
const validateError = validate$
|
|
30111
|
+
const validateError = validate$S(input);
|
|
30095
30112
|
if (validateError !== null) {
|
|
30096
30113
|
throw validateError;
|
|
30097
30114
|
}
|
|
@@ -30112,8 +30129,8 @@ function getTypeCacheKeys$1t(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
30112
30129
|
}
|
|
30113
30130
|
|
|
30114
30131
|
const VERSION$1x = "cbdcf69a6568d41ccf155b2b95ec70e7";
|
|
30115
|
-
function validate$
|
|
30116
|
-
const validateAbstractRecordAvatarRepresentation_validateError = validate$
|
|
30132
|
+
function validate$R(obj, path = 'ThemeRecordAvatarRepresentation') {
|
|
30133
|
+
const validateAbstractRecordAvatarRepresentation_validateError = validate$Q(obj, path);
|
|
30117
30134
|
if (validateAbstractRecordAvatarRepresentation_validateError !== null) {
|
|
30118
30135
|
return validateAbstractRecordAvatarRepresentation_validateError;
|
|
30119
30136
|
}
|
|
@@ -30232,7 +30249,7 @@ function equals$t(existing, incoming) {
|
|
|
30232
30249
|
}
|
|
30233
30250
|
const ingest$1p = function ThemeRecordAvatarRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
30234
30251
|
if (process.env.NODE_ENV !== 'production') {
|
|
30235
|
-
const validateError = validate$
|
|
30252
|
+
const validateError = validate$R(input);
|
|
30236
30253
|
if (validateError !== null) {
|
|
30237
30254
|
throw validateError;
|
|
30238
30255
|
}
|
|
@@ -30258,7 +30275,7 @@ var DiscriminatorValues$3;
|
|
|
30258
30275
|
DiscriminatorValues["Theme"] = "Theme";
|
|
30259
30276
|
})(DiscriminatorValues$3 || (DiscriminatorValues$3 = {}));
|
|
30260
30277
|
const VERSION$1w = "bc05f8d1c708b6c41c9bf2fe6001aff0";
|
|
30261
|
-
function validate$
|
|
30278
|
+
function validate$Q(obj, path = 'AbstractRecordAvatarRepresentation') {
|
|
30262
30279
|
const v_error = (() => {
|
|
30263
30280
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30264
30281
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30351,8 +30368,8 @@ function getTypeCacheKeys$1r(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
30351
30368
|
}
|
|
30352
30369
|
|
|
30353
30370
|
const VERSION$1v = "f531b44760afecfce89990fe5a5c5c29";
|
|
30354
|
-
function validate$
|
|
30355
|
-
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$
|
|
30371
|
+
function validate$P(obj, path = 'RecordAvatarBatchRepresentation') {
|
|
30372
|
+
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$L(obj, path);
|
|
30356
30373
|
if (validateAbstractRecordAvatarBatchRepresentation_validateError !== null) {
|
|
30357
30374
|
return validateAbstractRecordAvatarBatchRepresentation_validateError;
|
|
30358
30375
|
}
|
|
@@ -30413,7 +30430,7 @@ function equals$r(existing, incoming) {
|
|
|
30413
30430
|
}
|
|
30414
30431
|
const ingest$1o = function RecordAvatarBatchRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
30415
30432
|
if (process.env.NODE_ENV !== 'production') {
|
|
30416
|
-
const validateError = validate$
|
|
30433
|
+
const validateError = validate$P(input);
|
|
30417
30434
|
if (validateError !== null) {
|
|
30418
30435
|
throw validateError;
|
|
30419
30436
|
}
|
|
@@ -30434,7 +30451,7 @@ function getTypeCacheKeys$1q(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
30434
30451
|
}
|
|
30435
30452
|
|
|
30436
30453
|
const VERSION$1u = "17c20b01167dba9a81452e60bb28b2f2";
|
|
30437
|
-
function validate$
|
|
30454
|
+
function validate$O(obj, path = 'ErrorSingleRecordAvatarRepresentation') {
|
|
30438
30455
|
const v_error = (() => {
|
|
30439
30456
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30440
30457
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30484,8 +30501,8 @@ function equals$q(existing, incoming) {
|
|
|
30484
30501
|
}
|
|
30485
30502
|
|
|
30486
30503
|
const VERSION$1t = "e7fac2bfb5cdacc5e0f15c350f9ab8fe";
|
|
30487
|
-
function validate$
|
|
30488
|
-
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$
|
|
30504
|
+
function validate$N(obj, path = 'ErrorBadRequestRecordAvatarBatchRepresentation') {
|
|
30505
|
+
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$L(obj, path);
|
|
30489
30506
|
if (validateAbstractRecordAvatarBatchRepresentation_validateError !== null) {
|
|
30490
30507
|
return validateAbstractRecordAvatarBatchRepresentation_validateError;
|
|
30491
30508
|
}
|
|
@@ -30501,7 +30518,7 @@ function validate$M(obj, path = 'ErrorBadRequestRecordAvatarBatchRepresentation'
|
|
|
30501
30518
|
for (let i = 0; i < obj_result.length; i++) {
|
|
30502
30519
|
const obj_result_item = obj_result[i];
|
|
30503
30520
|
const path_result_item = path_result + '[' + i + ']';
|
|
30504
|
-
const referencepath_result_itemValidationError = validate$
|
|
30521
|
+
const referencepath_result_itemValidationError = validate$O(obj_result_item, path_result_item);
|
|
30505
30522
|
if (referencepath_result_itemValidationError !== null) {
|
|
30506
30523
|
let message = 'Object doesn\'t match ErrorSingleRecordAvatarRepresentation (at "' + path_result_item + '")\n';
|
|
30507
30524
|
message += referencepath_result_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30551,7 +30568,7 @@ function equals$p(existing, incoming) {
|
|
|
30551
30568
|
}
|
|
30552
30569
|
const ingest$1n = function ErrorBadRequestRecordAvatarBatchRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
30553
30570
|
if (process.env.NODE_ENV !== 'production') {
|
|
30554
|
-
const validateError = validate$
|
|
30571
|
+
const validateError = validate$N(input);
|
|
30555
30572
|
if (validateError !== null) {
|
|
30556
30573
|
throw validateError;
|
|
30557
30574
|
}
|
|
@@ -30572,8 +30589,8 @@ function getTypeCacheKeys$1p(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
30572
30589
|
}
|
|
30573
30590
|
|
|
30574
30591
|
const VERSION$1s = "cbd48fd50d0db463fdff7b1834c22bed";
|
|
30575
|
-
function validate$
|
|
30576
|
-
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$
|
|
30592
|
+
function validate$M(obj, path = 'ErrorRecordAvatarBatchRepresentation') {
|
|
30593
|
+
const validateAbstractRecordAvatarBatchRepresentation_validateError = validate$L(obj, path);
|
|
30577
30594
|
if (validateAbstractRecordAvatarBatchRepresentation_validateError !== null) {
|
|
30578
30595
|
return validateAbstractRecordAvatarBatchRepresentation_validateError;
|
|
30579
30596
|
}
|
|
@@ -30589,7 +30606,7 @@ function validate$L(obj, path = 'ErrorRecordAvatarBatchRepresentation') {
|
|
|
30589
30606
|
for (let i = 0; i < obj_result.length; i++) {
|
|
30590
30607
|
const obj_result_item = obj_result[i];
|
|
30591
30608
|
const path_result_item = path_result + '[' + i + ']';
|
|
30592
|
-
const referencepath_result_itemValidationError = validate$
|
|
30609
|
+
const referencepath_result_itemValidationError = validate$O(obj_result_item, path_result_item);
|
|
30593
30610
|
if (referencepath_result_itemValidationError !== null) {
|
|
30594
30611
|
let message = 'Object doesn\'t match ErrorSingleRecordAvatarRepresentation (at "' + path_result_item + '")\n';
|
|
30595
30612
|
message += referencepath_result_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30639,7 +30656,7 @@ function equals$o(existing, incoming) {
|
|
|
30639
30656
|
}
|
|
30640
30657
|
const ingest$1m = function ErrorRecordAvatarBatchRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
30641
30658
|
if (process.env.NODE_ENV !== 'production') {
|
|
30642
|
-
const validateError = validate$
|
|
30659
|
+
const validateError = validate$M(input);
|
|
30643
30660
|
if (validateError !== null) {
|
|
30644
30661
|
throw validateError;
|
|
30645
30662
|
}
|
|
@@ -30666,7 +30683,7 @@ const DiscriminatorValues$2 = {
|
|
|
30666
30683
|
};
|
|
30667
30684
|
const TTL$j = 300000;
|
|
30668
30685
|
const VERSION$1r = "8956293536e94d5ec63b274b61033d2c";
|
|
30669
|
-
function validate$
|
|
30686
|
+
function validate$L(obj, path = 'AbstractRecordAvatarBatchRepresentation') {
|
|
30670
30687
|
const v_error = (() => {
|
|
30671
30688
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30672
30689
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30744,7 +30761,7 @@ function getTypeCacheKeys$1n(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
30744
30761
|
|
|
30745
30762
|
const TTL$i = 300000;
|
|
30746
30763
|
const VERSION$1q = "c44c049fa6ad7cf7e932c0aab9107d86";
|
|
30747
|
-
function validate$
|
|
30764
|
+
function validate$K(obj, path = 'RecordAvatarBulkMapRepresentation') {
|
|
30748
30765
|
const v_error = (() => {
|
|
30749
30766
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
30750
30767
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -30823,7 +30840,7 @@ function merge(existing, incoming, _luvio, _path) {
|
|
|
30823
30840
|
|
|
30824
30841
|
const ingest$1l = function RecordAvatarBulkMapRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
30825
30842
|
if (process.env.NODE_ENV !== 'production') {
|
|
30826
|
-
const validateError = validate$
|
|
30843
|
+
const validateError = validate$K(input);
|
|
30827
30844
|
if (validateError !== null) {
|
|
30828
30845
|
throw validateError;
|
|
30829
30846
|
}
|
|
@@ -31314,7 +31331,7 @@ const getRecordsAdapterFactory = (luvio) => function UiApi__getRecords(untrusted
|
|
|
31314
31331
|
};
|
|
31315
31332
|
|
|
31316
31333
|
const VERSION$1p = "4d4bdab5d0aa61e365e766409c9b3a31";
|
|
31317
|
-
function validate$
|
|
31334
|
+
function validate$J(obj, path = 'RelatedListReferenceRepresentation') {
|
|
31318
31335
|
const v_error = (() => {
|
|
31319
31336
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
31320
31337
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -31553,7 +31570,7 @@ function equals$l(existing, incoming) {
|
|
|
31553
31570
|
}
|
|
31554
31571
|
|
|
31555
31572
|
const VERSION$1o = "836b875b519813e7499efc62f0f1d04b";
|
|
31556
|
-
function validate$
|
|
31573
|
+
function validate$I(obj, path = 'RelatedListRecordCountRepresentation') {
|
|
31557
31574
|
const v_error = (() => {
|
|
31558
31575
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
31559
31576
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -31596,7 +31613,7 @@ function validate$H(obj, path = 'RelatedListRecordCountRepresentation') {
|
|
|
31596
31613
|
}
|
|
31597
31614
|
const obj_listReference = obj.listReference;
|
|
31598
31615
|
const path_listReference = path + '.listReference';
|
|
31599
|
-
const referencepath_listReferenceValidationError = validate$
|
|
31616
|
+
const referencepath_listReferenceValidationError = validate$J(obj_listReference, path_listReference);
|
|
31600
31617
|
if (referencepath_listReferenceValidationError !== null) {
|
|
31601
31618
|
let message = 'Object doesn\'t match RelatedListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
31602
31619
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -31669,7 +31686,7 @@ function equals$k(existing, incoming) {
|
|
|
31669
31686
|
}
|
|
31670
31687
|
const ingest$1k = function RelatedListRecordCountRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
31671
31688
|
if (process.env.NODE_ENV !== 'production') {
|
|
31672
|
-
const validateError = validate$
|
|
31689
|
+
const validateError = validate$I(input);
|
|
31673
31690
|
if (validateError !== null) {
|
|
31674
31691
|
throw validateError;
|
|
31675
31692
|
}
|
|
@@ -32181,7 +32198,7 @@ const getRelatedListCountAdapterFactory = (luvio) => function UiApi__getRelatedL
|
|
|
32181
32198
|
buildCachedSnapshotCachePolicy$i, buildNetworkSnapshotCachePolicy$j);
|
|
32182
32199
|
};
|
|
32183
32200
|
|
|
32184
|
-
function validate$
|
|
32201
|
+
function validate$H(obj, path = 'RelatedListColumnRepresentation') {
|
|
32185
32202
|
const v_error = (() => {
|
|
32186
32203
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
32187
32204
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -32332,7 +32349,7 @@ function validate$G(obj, path = 'RelatedListColumnRepresentation') {
|
|
|
32332
32349
|
|
|
32333
32350
|
const TTL$h = 900000;
|
|
32334
32351
|
const VERSION$1n = "c977d65d153a2b4e888ddd45fb083248";
|
|
32335
|
-
function validate$
|
|
32352
|
+
function validate$G(obj, path = 'RelatedListInfoRepresentation') {
|
|
32336
32353
|
const v_error = (() => {
|
|
32337
32354
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
32338
32355
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -32360,7 +32377,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
32360
32377
|
for (let i = 0; i < obj_displayColumns.length; i++) {
|
|
32361
32378
|
const obj_displayColumns_item = obj_displayColumns[i];
|
|
32362
32379
|
const path_displayColumns_item = path_displayColumns + '[' + i + ']';
|
|
32363
|
-
const referencepath_displayColumns_itemValidationError = validate$
|
|
32380
|
+
const referencepath_displayColumns_itemValidationError = validate$H(obj_displayColumns_item, path_displayColumns_item);
|
|
32364
32381
|
if (referencepath_displayColumns_itemValidationError !== null) {
|
|
32365
32382
|
let message = 'Object doesn\'t match RelatedListColumnRepresentation (at "' + path_displayColumns_item + '")\n';
|
|
32366
32383
|
message += referencepath_displayColumns_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -32407,7 +32424,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
32407
32424
|
for (let i = 0; i < obj_filteredByInfo.length; i++) {
|
|
32408
32425
|
const obj_filteredByInfo_item = obj_filteredByInfo[i];
|
|
32409
32426
|
const path_filteredByInfo_item = path_filteredByInfo + '[' + i + ']';
|
|
32410
|
-
const referencepath_filteredByInfo_itemValidationError = validate$
|
|
32427
|
+
const referencepath_filteredByInfo_itemValidationError = validate$23(obj_filteredByInfo_item, path_filteredByInfo_item);
|
|
32411
32428
|
if (referencepath_filteredByInfo_itemValidationError !== null) {
|
|
32412
32429
|
let message = 'Object doesn\'t match ListFilterByInfoRepresentation (at "' + path_filteredByInfo_item + '")\n';
|
|
32413
32430
|
message += referencepath_filteredByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -32421,7 +32438,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
32421
32438
|
}
|
|
32422
32439
|
const obj_listReference = obj.listReference;
|
|
32423
32440
|
const path_listReference = path + '.listReference';
|
|
32424
|
-
const referencepath_listReferenceValidationError = validate$
|
|
32441
|
+
const referencepath_listReferenceValidationError = validate$J(obj_listReference, path_listReference);
|
|
32425
32442
|
if (referencepath_listReferenceValidationError !== null) {
|
|
32426
32443
|
let message = 'Object doesn\'t match RelatedListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
32427
32444
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -32459,7 +32476,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
32459
32476
|
for (let i = 0; i < obj_orderedByInfo.length; i++) {
|
|
32460
32477
|
const obj_orderedByInfo_item = obj_orderedByInfo[i];
|
|
32461
32478
|
const path_orderedByInfo_item = path_orderedByInfo + '[' + i + ']';
|
|
32462
|
-
const referencepath_orderedByInfo_itemValidationError = validate$
|
|
32479
|
+
const referencepath_orderedByInfo_itemValidationError = validate$1_(obj_orderedByInfo_item, path_orderedByInfo_item);
|
|
32463
32480
|
if (referencepath_orderedByInfo_itemValidationError !== null) {
|
|
32464
32481
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedByInfo_item + '")\n';
|
|
32465
32482
|
message += referencepath_orderedByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -32478,7 +32495,7 @@ function validate$F(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
32478
32495
|
}
|
|
32479
32496
|
const obj_userPreferences = obj.userPreferences;
|
|
32480
32497
|
const path_userPreferences = path + '.userPreferences';
|
|
32481
|
-
const referencepath_userPreferencesValidationError = validate$
|
|
32498
|
+
const referencepath_userPreferencesValidationError = validate$1W(obj_userPreferences, path_userPreferences);
|
|
32482
32499
|
if (referencepath_userPreferencesValidationError !== null) {
|
|
32483
32500
|
let message = 'Object doesn\'t match ListUserPreferenceRepresentation (at "' + path_userPreferences + '")\n';
|
|
32484
32501
|
message += referencepath_userPreferencesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -32618,7 +32635,7 @@ function equals$j(existing, incoming) {
|
|
|
32618
32635
|
}
|
|
32619
32636
|
const ingest$1j = function RelatedListInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
32620
32637
|
if (process.env.NODE_ENV !== 'production') {
|
|
32621
|
-
const validateError = validate$
|
|
32638
|
+
const validateError = validate$G(input);
|
|
32622
32639
|
if (validateError !== null) {
|
|
32623
32640
|
throw validateError;
|
|
32624
32641
|
}
|
|
@@ -33056,7 +33073,7 @@ const getRelatedListInfoBatchAdapterFactory = (luvio) => function UiApi__getRela
|
|
|
33056
33073
|
buildCachedSnapshotCachePolicy$h, buildNetworkSnapshotCachePolicy$i);
|
|
33057
33074
|
};
|
|
33058
33075
|
|
|
33059
|
-
function validate$
|
|
33076
|
+
function validate$F(obj, path = 'RelatedListSummaryInfoRepresentation') {
|
|
33060
33077
|
const v_error = (() => {
|
|
33061
33078
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
33062
33079
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -33152,7 +33169,7 @@ function validate$E(obj, path = 'RelatedListSummaryInfoRepresentation') {
|
|
|
33152
33169
|
const path_themeInfo = path + '.themeInfo';
|
|
33153
33170
|
let obj_themeInfo_union0 = null;
|
|
33154
33171
|
const obj_themeInfo_union0_error = (() => {
|
|
33155
|
-
const referencepath_themeInfoValidationError = validate$
|
|
33172
|
+
const referencepath_themeInfoValidationError = validate$1F(obj_themeInfo, path_themeInfo);
|
|
33156
33173
|
if (referencepath_themeInfoValidationError !== null) {
|
|
33157
33174
|
let message = 'Object doesn\'t match ThemeInfoRepresentation (at "' + path_themeInfo + '")\n';
|
|
33158
33175
|
message += referencepath_themeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -33187,7 +33204,7 @@ function validate$E(obj, path = 'RelatedListSummaryInfoRepresentation') {
|
|
|
33187
33204
|
}
|
|
33188
33205
|
|
|
33189
33206
|
const VERSION$1m = "2a1722afba0e1ee52d6b7b0a25ccd9f4";
|
|
33190
|
-
function validate$
|
|
33207
|
+
function validate$E(obj, path = 'RelatedListSummaryInfoCollectionRepresentation') {
|
|
33191
33208
|
const v_error = (() => {
|
|
33192
33209
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
33193
33210
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -33236,7 +33253,7 @@ function validate$D(obj, path = 'RelatedListSummaryInfoCollectionRepresentation'
|
|
|
33236
33253
|
for (let i = 0; i < obj_relatedLists.length; i++) {
|
|
33237
33254
|
const obj_relatedLists_item = obj_relatedLists[i];
|
|
33238
33255
|
const path_relatedLists_item = path_relatedLists + '[' + i + ']';
|
|
33239
|
-
const referencepath_relatedLists_itemValidationError = validate$
|
|
33256
|
+
const referencepath_relatedLists_itemValidationError = validate$F(obj_relatedLists_item, path_relatedLists_item);
|
|
33240
33257
|
if (referencepath_relatedLists_itemValidationError !== null) {
|
|
33241
33258
|
let message = 'Object doesn\'t match RelatedListSummaryInfoRepresentation (at "' + path_relatedLists_item + '")\n';
|
|
33242
33259
|
message += referencepath_relatedLists_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -33292,7 +33309,7 @@ function equals$i(existing, incoming) {
|
|
|
33292
33309
|
}
|
|
33293
33310
|
const ingest$1i = function RelatedListSummaryInfoCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
33294
33311
|
if (process.env.NODE_ENV !== 'production') {
|
|
33295
|
-
const validateError = validate$
|
|
33312
|
+
const validateError = validate$E(input);
|
|
33296
33313
|
if (validateError !== null) {
|
|
33297
33314
|
throw validateError;
|
|
33298
33315
|
}
|
|
@@ -33543,7 +33560,7 @@ const getRelatedListInfoAdapterFactory = (luvio) => function UiApi__getRelatedLi
|
|
|
33543
33560
|
|
|
33544
33561
|
const TTL$g = 900000;
|
|
33545
33562
|
const VERSION$1l = "094cdf8e3e1f07fca02c4e51e14c528e";
|
|
33546
|
-
function validate$
|
|
33563
|
+
function validate$C(obj, path = 'RelatedListUserPreferencesRepresentation') {
|
|
33547
33564
|
const v_error = (() => {
|
|
33548
33565
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
33549
33566
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -33584,7 +33601,7 @@ function validate$B(obj, path = 'RelatedListUserPreferencesRepresentation') {
|
|
|
33584
33601
|
for (let i = 0; i < obj_orderedBy.length; i++) {
|
|
33585
33602
|
const obj_orderedBy_item = obj_orderedBy[i];
|
|
33586
33603
|
const path_orderedBy_item = path_orderedBy + '[' + i + ']';
|
|
33587
|
-
const referencepath_orderedBy_itemValidationError = validate$
|
|
33604
|
+
const referencepath_orderedBy_itemValidationError = validate$1_(obj_orderedBy_item, path_orderedBy_item);
|
|
33588
33605
|
if (referencepath_orderedBy_itemValidationError !== null) {
|
|
33589
33606
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedBy_item + '")\n';
|
|
33590
33607
|
message += referencepath_orderedBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -33628,7 +33645,7 @@ function equals$h(existing, incoming) {
|
|
|
33628
33645
|
}
|
|
33629
33646
|
const ingest$1h = function RelatedListUserPreferencesRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
33630
33647
|
if (process.env.NODE_ENV !== 'production') {
|
|
33631
|
-
const validateError = validate$
|
|
33648
|
+
const validateError = validate$C(input);
|
|
33632
33649
|
if (validateError !== null) {
|
|
33633
33650
|
throw validateError;
|
|
33634
33651
|
}
|
|
@@ -34136,7 +34153,7 @@ const getRelatedListPreferencesAdapterFactory = (luvio) => function UiApi__getRe
|
|
|
34136
34153
|
buildCachedSnapshotCachePolicy$d, buildNetworkSnapshotCachePolicy$e);
|
|
34137
34154
|
};
|
|
34138
34155
|
|
|
34139
|
-
function validate$
|
|
34156
|
+
function validate$B(obj, path = 'RelatedListRecordsSingleBatchInputRepresentation') {
|
|
34140
34157
|
const v_error = (() => {
|
|
34141
34158
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
34142
34159
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -34379,7 +34396,7 @@ function equalsMetadata(existingMetadata, incomingMetadata) {
|
|
|
34379
34396
|
|
|
34380
34397
|
const TTL$f = 30000;
|
|
34381
34398
|
const VERSION$1k = "62467c27c19349b70c9db2a8d9d591d9";
|
|
34382
|
-
function validate$
|
|
34399
|
+
function validate$A(obj, path = 'RelatedListRecordCollectionRepresentation') {
|
|
34383
34400
|
const v_error = (() => {
|
|
34384
34401
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
34385
34402
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -34460,7 +34477,7 @@ function validate$z(obj, path = 'RelatedListRecordCollectionRepresentation') {
|
|
|
34460
34477
|
}
|
|
34461
34478
|
const obj_listReference = obj.listReference;
|
|
34462
34479
|
const path_listReference = path + '.listReference';
|
|
34463
|
-
const referencepath_listReferenceValidationError = validate$
|
|
34480
|
+
const referencepath_listReferenceValidationError = validate$J(obj_listReference, path_listReference);
|
|
34464
34481
|
if (referencepath_listReferenceValidationError !== null) {
|
|
34465
34482
|
let message = 'Object doesn\'t match RelatedListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
34466
34483
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -34881,7 +34898,7 @@ function equals$g(existing, incoming) {
|
|
|
34881
34898
|
}
|
|
34882
34899
|
const ingest$1g = function RelatedListRecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
34883
34900
|
if (process.env.NODE_ENV !== 'production') {
|
|
34884
|
-
const validateError = validate$
|
|
34901
|
+
const validateError = validate$A(input);
|
|
34885
34902
|
if (validateError !== null) {
|
|
34886
34903
|
throw validateError;
|
|
34887
34904
|
}
|
|
@@ -34957,6 +34974,7 @@ const ingest$1g = function RelatedListRecordCollectionRepresentationIngest(input
|
|
|
34957
34974
|
namespace: "UiApi",
|
|
34958
34975
|
version: VERSION$1k,
|
|
34959
34976
|
representationName: RepresentationType$i,
|
|
34977
|
+
ingestionTimestamp: timestamp,
|
|
34960
34978
|
};
|
|
34961
34979
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
34962
34980
|
}
|
|
@@ -35372,7 +35390,7 @@ function typeCheckConfig$m(untrustedConfig) {
|
|
|
35372
35390
|
const untrustedConfig_relatedListParameters_array = [];
|
|
35373
35391
|
for (let i = 0, arrayLength = untrustedConfig_relatedListParameters.length; i < arrayLength; i++) {
|
|
35374
35392
|
const untrustedConfig_relatedListParameters_item = untrustedConfig_relatedListParameters[i];
|
|
35375
|
-
const referenceRelatedListRecordsSingleBatchInputRepresentationValidationError = validate$
|
|
35393
|
+
const referenceRelatedListRecordsSingleBatchInputRepresentationValidationError = validate$B(untrustedConfig_relatedListParameters_item);
|
|
35376
35394
|
if (referenceRelatedListRecordsSingleBatchInputRepresentationValidationError === null) {
|
|
35377
35395
|
untrustedConfig_relatedListParameters_array.push(untrustedConfig_relatedListParameters_item);
|
|
35378
35396
|
}
|
|
@@ -35617,7 +35635,7 @@ const getRelatedListRecordsAdapterFactory = (luvio) => function UiApi__getRelate
|
|
|
35617
35635
|
buildCachedSnapshotCachePolicy$b, buildNetworkSnapshotCachePolicy$c);
|
|
35618
35636
|
};
|
|
35619
35637
|
|
|
35620
|
-
function validate$
|
|
35638
|
+
function validate$z(obj, path = 'SearchFilterOptionRepresentation') {
|
|
35621
35639
|
const v_error = (() => {
|
|
35622
35640
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
35623
35641
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -35647,7 +35665,7 @@ var DiscriminatorValues;
|
|
|
35647
35665
|
DiscriminatorValues["Field"] = "Field";
|
|
35648
35666
|
DiscriminatorValues["DataCategory"] = "DataCategory";
|
|
35649
35667
|
})(DiscriminatorValues || (DiscriminatorValues = {}));
|
|
35650
|
-
function validate$
|
|
35668
|
+
function validate$y(obj, path = 'SearchFilterDefinitionRepresentation') {
|
|
35651
35669
|
const v_error = (() => {
|
|
35652
35670
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
35653
35671
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -35708,7 +35726,7 @@ function validate$x(obj, path = 'SearchFilterDefinitionRepresentation') {
|
|
|
35708
35726
|
|
|
35709
35727
|
const TTL$e = 30000;
|
|
35710
35728
|
const VERSION$1j = "7d241c2ee7cc9b09d6bd434b33b0b5e4";
|
|
35711
|
-
function validate$
|
|
35729
|
+
function validate$x(obj, path = 'SearchFilterMetadataCollectionRepresentation') {
|
|
35712
35730
|
const v_error = (() => {
|
|
35713
35731
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
35714
35732
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -35747,7 +35765,7 @@ function validate$w(obj, path = 'SearchFilterMetadataCollectionRepresentation')
|
|
|
35747
35765
|
for (let i = 0; i < obj_filters.length; i++) {
|
|
35748
35766
|
const obj_filters_item = obj_filters[i];
|
|
35749
35767
|
const path_filters_item = path_filters + '[' + i + ']';
|
|
35750
|
-
const referencepath_filters_itemValidationError = validate$
|
|
35768
|
+
const referencepath_filters_itemValidationError = validate$y(obj_filters_item, path_filters_item);
|
|
35751
35769
|
if (referencepath_filters_itemValidationError !== null) {
|
|
35752
35770
|
let message = 'Object doesn\'t match SearchFilterDefinitionRepresentation (at "' + path_filters_item + '")\n';
|
|
35753
35771
|
message += referencepath_filters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -35792,7 +35810,7 @@ function equals$f(existing, incoming) {
|
|
|
35792
35810
|
}
|
|
35793
35811
|
const ingest$1f = function SearchFilterMetadataCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
35794
35812
|
if (process.env.NODE_ENV !== 'production') {
|
|
35795
|
-
const validateError = validate$
|
|
35813
|
+
const validateError = validate$x(input);
|
|
35796
35814
|
if (validateError !== null) {
|
|
35797
35815
|
throw validateError;
|
|
35798
35816
|
}
|
|
@@ -35956,7 +35974,7 @@ const getSearchFilterMetadataAdapterFactory = (luvio) => function UiApi__getSear
|
|
|
35956
35974
|
|
|
35957
35975
|
const TTL$d = 30000;
|
|
35958
35976
|
const VERSION$1i = "8d851a8d9abf0a061a8ad81d4cbb83bc";
|
|
35959
|
-
function validate$
|
|
35977
|
+
function validate$w(obj, path = 'SearchFilterOptionCollectionRepresentation') {
|
|
35960
35978
|
const v_error = (() => {
|
|
35961
35979
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
35962
35980
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -35979,7 +35997,7 @@ function validate$v(obj, path = 'SearchFilterOptionCollectionRepresentation') {
|
|
|
35979
35997
|
for (let i = 0; i < obj_options.length; i++) {
|
|
35980
35998
|
const obj_options_item = obj_options[i];
|
|
35981
35999
|
const path_options_item = path_options + '[' + i + ']';
|
|
35982
|
-
const referencepath_options_itemValidationError = validate$
|
|
36000
|
+
const referencepath_options_itemValidationError = validate$z(obj_options_item, path_options_item);
|
|
35983
36001
|
if (referencepath_options_itemValidationError !== null) {
|
|
35984
36002
|
let message = 'Object doesn\'t match SearchFilterOptionRepresentation (at "' + path_options_item + '")\n';
|
|
35985
36003
|
message += referencepath_options_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36046,7 +36064,7 @@ function equals$e(existing, incoming) {
|
|
|
36046
36064
|
}
|
|
36047
36065
|
const ingest$1e = function SearchFilterOptionCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
36048
36066
|
if (process.env.NODE_ENV !== 'production') {
|
|
36049
|
-
const validateError = validate$
|
|
36067
|
+
const validateError = validate$w(input);
|
|
36050
36068
|
if (validateError !== null) {
|
|
36051
36069
|
throw validateError;
|
|
36052
36070
|
}
|
|
@@ -36210,7 +36228,7 @@ const getSearchFilterOptionsAdapterFactory = (luvio) => function UiApi__getSearc
|
|
|
36210
36228
|
buildCachedSnapshotCachePolicy$9, buildNetworkSnapshotCachePolicy$a);
|
|
36211
36229
|
};
|
|
36212
36230
|
|
|
36213
|
-
function validate$
|
|
36231
|
+
function validate$v(obj, path = 'DisplayLayoutRepresentation') {
|
|
36214
36232
|
const v_error = (() => {
|
|
36215
36233
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36216
36234
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36231,7 +36249,7 @@ function validate$u(obj, path = 'DisplayLayoutRepresentation') {
|
|
|
36231
36249
|
return v_error === undefined ? null : v_error;
|
|
36232
36250
|
}
|
|
36233
36251
|
|
|
36234
|
-
function validate$
|
|
36252
|
+
function validate$u(obj, path = 'MatchingInfoRepresentation') {
|
|
36235
36253
|
const v_error = (() => {
|
|
36236
36254
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36237
36255
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36252,14 +36270,14 @@ function validate$t(obj, path = 'MatchingInfoRepresentation') {
|
|
|
36252
36270
|
return v_error === undefined ? null : v_error;
|
|
36253
36271
|
}
|
|
36254
36272
|
|
|
36255
|
-
function validate$
|
|
36273
|
+
function validate$t(obj, path = 'DisplayLayoutAndMatchingInfoRepresentation') {
|
|
36256
36274
|
const v_error = (() => {
|
|
36257
36275
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36258
36276
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
36259
36277
|
}
|
|
36260
36278
|
const obj_displayLayout = obj.displayLayout;
|
|
36261
36279
|
const path_displayLayout = path + '.displayLayout';
|
|
36262
|
-
const referencepath_displayLayoutValidationError = validate$
|
|
36280
|
+
const referencepath_displayLayoutValidationError = validate$v(obj_displayLayout, path_displayLayout);
|
|
36263
36281
|
if (referencepath_displayLayoutValidationError !== null) {
|
|
36264
36282
|
let message = 'Object doesn\'t match DisplayLayoutRepresentation (at "' + path_displayLayout + '")\n';
|
|
36265
36283
|
message += referencepath_displayLayoutValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36267,7 +36285,7 @@ function validate$s(obj, path = 'DisplayLayoutAndMatchingInfoRepresentation') {
|
|
|
36267
36285
|
}
|
|
36268
36286
|
const obj_matchingInfo = obj.matchingInfo;
|
|
36269
36287
|
const path_matchingInfo = path + '.matchingInfo';
|
|
36270
|
-
const referencepath_matchingInfoValidationError = validate$
|
|
36288
|
+
const referencepath_matchingInfoValidationError = validate$u(obj_matchingInfo, path_matchingInfo);
|
|
36271
36289
|
if (referencepath_matchingInfoValidationError !== null) {
|
|
36272
36290
|
let message = 'Object doesn\'t match MatchingInfoRepresentation (at "' + path_matchingInfo + '")\n';
|
|
36273
36291
|
message += referencepath_matchingInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36277,14 +36295,14 @@ function validate$s(obj, path = 'DisplayLayoutAndMatchingInfoRepresentation') {
|
|
|
36277
36295
|
return v_error === undefined ? null : v_error;
|
|
36278
36296
|
}
|
|
36279
36297
|
|
|
36280
|
-
function validate$
|
|
36298
|
+
function validate$s(obj, path = 'LookupMetadataTargetInfoRepresentation') {
|
|
36281
36299
|
const v_error = (() => {
|
|
36282
36300
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36283
36301
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
36284
36302
|
}
|
|
36285
36303
|
const obj_fullSearchInfo = obj.fullSearchInfo;
|
|
36286
36304
|
const path_fullSearchInfo = path + '.fullSearchInfo';
|
|
36287
|
-
const referencepath_fullSearchInfoValidationError = validate$
|
|
36305
|
+
const referencepath_fullSearchInfoValidationError = validate$t(obj_fullSearchInfo, path_fullSearchInfo);
|
|
36288
36306
|
if (referencepath_fullSearchInfoValidationError !== null) {
|
|
36289
36307
|
let message = 'Object doesn\'t match DisplayLayoutAndMatchingInfoRepresentation (at "' + path_fullSearchInfo + '")\n';
|
|
36290
36308
|
message += referencepath_fullSearchInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36297,7 +36315,7 @@ function validate$r(obj, path = 'LookupMetadataTargetInfoRepresentation') {
|
|
|
36297
36315
|
}
|
|
36298
36316
|
const obj_suggestionsInfo = obj.suggestionsInfo;
|
|
36299
36317
|
const path_suggestionsInfo = path + '.suggestionsInfo';
|
|
36300
|
-
const referencepath_suggestionsInfoValidationError = validate$
|
|
36318
|
+
const referencepath_suggestionsInfoValidationError = validate$t(obj_suggestionsInfo, path_suggestionsInfo);
|
|
36301
36319
|
if (referencepath_suggestionsInfoValidationError !== null) {
|
|
36302
36320
|
let message = 'Object doesn\'t match DisplayLayoutAndMatchingInfoRepresentation (at "' + path_suggestionsInfo + '")\n';
|
|
36303
36321
|
message += referencepath_suggestionsInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36309,7 +36327,7 @@ function validate$r(obj, path = 'LookupMetadataTargetInfoRepresentation') {
|
|
|
36309
36327
|
|
|
36310
36328
|
const TTL$c = 30000;
|
|
36311
36329
|
const VERSION$1h = "ab99b79a5e8a78e051ec92b39d76a6bd";
|
|
36312
|
-
function validate$
|
|
36330
|
+
function validate$r(obj, path = 'LookupMetadataRepresentation') {
|
|
36313
36331
|
const v_error = (() => {
|
|
36314
36332
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36315
36333
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36360,7 +36378,7 @@ function validate$q(obj, path = 'LookupMetadataRepresentation') {
|
|
|
36360
36378
|
const key = obj_targetInfo_keys[i];
|
|
36361
36379
|
const obj_targetInfo_prop = obj_targetInfo[key];
|
|
36362
36380
|
const path_targetInfo_prop = path_targetInfo + '["' + key + '"]';
|
|
36363
|
-
const referencepath_targetInfo_propValidationError = validate$
|
|
36381
|
+
const referencepath_targetInfo_propValidationError = validate$s(obj_targetInfo_prop, path_targetInfo_prop);
|
|
36364
36382
|
if (referencepath_targetInfo_propValidationError !== null) {
|
|
36365
36383
|
let message = 'Object doesn\'t match LookupMetadataTargetInfoRepresentation (at "' + path_targetInfo_prop + '")\n';
|
|
36366
36384
|
message += referencepath_targetInfo_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36400,7 +36418,7 @@ function equals$d(existing, incoming) {
|
|
|
36400
36418
|
}
|
|
36401
36419
|
const ingest$1d = function LookupMetadataRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
36402
36420
|
if (process.env.NODE_ENV !== 'production') {
|
|
36403
|
-
const validateError = validate$
|
|
36421
|
+
const validateError = validate$r(input);
|
|
36404
36422
|
if (validateError !== null) {
|
|
36405
36423
|
throw validateError;
|
|
36406
36424
|
}
|
|
@@ -36562,7 +36580,7 @@ const getLookupMetadataAdapterFactory = (luvio) => function UiApi__getLookupMeta
|
|
|
36562
36580
|
buildCachedSnapshotCachePolicy$8, buildNetworkSnapshotCachePolicy$9);
|
|
36563
36581
|
};
|
|
36564
36582
|
|
|
36565
|
-
function validate$
|
|
36583
|
+
function validate$q(obj, path = 'SearchDataCategoryInputRepresentation') {
|
|
36566
36584
|
const v_error = (() => {
|
|
36567
36585
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36568
36586
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36593,7 +36611,7 @@ function validate$p(obj, path = 'SearchDataCategoryInputRepresentation') {
|
|
|
36593
36611
|
return v_error === undefined ? null : v_error;
|
|
36594
36612
|
}
|
|
36595
36613
|
|
|
36596
|
-
function validate$
|
|
36614
|
+
function validate$p(obj, path = 'SearchFilterInputRepresentation') {
|
|
36597
36615
|
const v_error = (() => {
|
|
36598
36616
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36599
36617
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36662,7 +36680,7 @@ function validate$o(obj, path = 'SearchFilterInputRepresentation') {
|
|
|
36662
36680
|
return v_error === undefined ? null : v_error;
|
|
36663
36681
|
}
|
|
36664
36682
|
|
|
36665
|
-
function validate$
|
|
36683
|
+
function validate$o(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
36666
36684
|
const v_error = (() => {
|
|
36667
36685
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36668
36686
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36675,7 +36693,7 @@ function validate$n(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
|
36675
36693
|
for (let i = 0; i < obj_dataCategories.length; i++) {
|
|
36676
36694
|
const obj_dataCategories_item = obj_dataCategories[i];
|
|
36677
36695
|
const path_dataCategories_item = path_dataCategories + '[' + i + ']';
|
|
36678
|
-
const referencepath_dataCategories_itemValidationError = validate$
|
|
36696
|
+
const referencepath_dataCategories_itemValidationError = validate$q(obj_dataCategories_item, path_dataCategories_item);
|
|
36679
36697
|
if (referencepath_dataCategories_itemValidationError !== null) {
|
|
36680
36698
|
let message = 'Object doesn\'t match SearchDataCategoryInputRepresentation (at "' + path_dataCategories_item + '")\n';
|
|
36681
36699
|
message += referencepath_dataCategories_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36690,7 +36708,7 @@ function validate$n(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
|
36690
36708
|
for (let i = 0; i < obj_filters.length; i++) {
|
|
36691
36709
|
const obj_filters_item = obj_filters[i];
|
|
36692
36710
|
const path_filters_item = path_filters + '[' + i + ']';
|
|
36693
|
-
const referencepath_filters_itemValidationError = validate$
|
|
36711
|
+
const referencepath_filters_itemValidationError = validate$p(obj_filters_item, path_filters_item);
|
|
36694
36712
|
if (referencepath_filters_itemValidationError !== null) {
|
|
36695
36713
|
let message = 'Object doesn\'t match SearchFilterInputRepresentation (at "' + path_filters_item + '")\n';
|
|
36696
36714
|
message += referencepath_filters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36701,7 +36719,7 @@ function validate$n(obj, path = 'SearchObjectOptionsRepresentation') {
|
|
|
36701
36719
|
return v_error === undefined ? null : v_error;
|
|
36702
36720
|
}
|
|
36703
36721
|
|
|
36704
|
-
function validate$
|
|
36722
|
+
function validate$n(obj, path = 'ErrorMessageRepresentation') {
|
|
36705
36723
|
const v_error = (() => {
|
|
36706
36724
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36707
36725
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36741,7 +36759,7 @@ function validate$m(obj, path = 'ErrorMessageRepresentation') {
|
|
|
36741
36759
|
return v_error === undefined ? null : v_error;
|
|
36742
36760
|
}
|
|
36743
36761
|
|
|
36744
|
-
function validate$
|
|
36762
|
+
function validate$m(obj, path = 'SearchResultCollectionRepresentation') {
|
|
36745
36763
|
const v_error = (() => {
|
|
36746
36764
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36747
36765
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36755,7 +36773,7 @@ function validate$l(obj, path = 'SearchResultCollectionRepresentation') {
|
|
|
36755
36773
|
const path_error = path + '.error';
|
|
36756
36774
|
let obj_error_union0 = null;
|
|
36757
36775
|
const obj_error_union0_error = (() => {
|
|
36758
|
-
const referencepath_errorValidationError = validate$
|
|
36776
|
+
const referencepath_errorValidationError = validate$n(obj_error, path_error);
|
|
36759
36777
|
if (referencepath_errorValidationError !== null) {
|
|
36760
36778
|
let message = 'Object doesn\'t match ErrorMessageRepresentation (at "' + path_error + '")\n';
|
|
36761
36779
|
message += referencepath_errorValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36819,7 +36837,7 @@ function validate$l(obj, path = 'SearchResultCollectionRepresentation') {
|
|
|
36819
36837
|
for (let i = 0; i < obj_orderBy.length; i++) {
|
|
36820
36838
|
const obj_orderBy_item = obj_orderBy[i];
|
|
36821
36839
|
const path_orderBy_item = path_orderBy + '[' + i + ']';
|
|
36822
|
-
const referencepath_orderBy_itemValidationError = validate$
|
|
36840
|
+
const referencepath_orderBy_itemValidationError = validate$1_(obj_orderBy_item, path_orderBy_item);
|
|
36823
36841
|
if (referencepath_orderBy_itemValidationError !== null) {
|
|
36824
36842
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderBy_item + '")\n';
|
|
36825
36843
|
message += referencepath_orderBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -36885,7 +36903,7 @@ function validate$l(obj, path = 'SearchResultCollectionRepresentation') {
|
|
|
36885
36903
|
return v_error === undefined ? null : v_error;
|
|
36886
36904
|
}
|
|
36887
36905
|
|
|
36888
|
-
function validate$
|
|
36906
|
+
function validate$l(obj, path = 'KeywordSearchResultsRepresentation') {
|
|
36889
36907
|
const v_error = (() => {
|
|
36890
36908
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36891
36909
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -36906,6 +36924,63 @@ function validate$k(obj, path = 'KeywordSearchResultsRepresentation') {
|
|
|
36906
36924
|
return v_error === undefined ? null : v_error;
|
|
36907
36925
|
}
|
|
36908
36926
|
|
|
36927
|
+
function validate$k(obj, path = 'AppliedSearchFilterOutputRepresentation') {
|
|
36928
|
+
const v_error = (() => {
|
|
36929
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
36930
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
36931
|
+
}
|
|
36932
|
+
const obj_fieldPath = obj.fieldPath;
|
|
36933
|
+
const path_fieldPath = path + '.fieldPath';
|
|
36934
|
+
if (typeof obj_fieldPath !== 'string') {
|
|
36935
|
+
return new TypeError('Expected "string" but received "' + typeof obj_fieldPath + '" (at "' + path_fieldPath + '")');
|
|
36936
|
+
}
|
|
36937
|
+
const obj_label = obj.label;
|
|
36938
|
+
const path_label = path + '.label';
|
|
36939
|
+
let obj_label_union0 = null;
|
|
36940
|
+
const obj_label_union0_error = (() => {
|
|
36941
|
+
if (typeof obj_label !== 'string') {
|
|
36942
|
+
return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
36943
|
+
}
|
|
36944
|
+
})();
|
|
36945
|
+
if (obj_label_union0_error != null) {
|
|
36946
|
+
obj_label_union0 = obj_label_union0_error.message;
|
|
36947
|
+
}
|
|
36948
|
+
let obj_label_union1 = null;
|
|
36949
|
+
const obj_label_union1_error = (() => {
|
|
36950
|
+
if (obj_label !== null) {
|
|
36951
|
+
return new TypeError('Expected "null" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
36952
|
+
}
|
|
36953
|
+
})();
|
|
36954
|
+
if (obj_label_union1_error != null) {
|
|
36955
|
+
obj_label_union1 = obj_label_union1_error.message;
|
|
36956
|
+
}
|
|
36957
|
+
if (obj_label_union0 && obj_label_union1) {
|
|
36958
|
+
let message = 'Object doesn\'t match union (at "' + path_label + '")';
|
|
36959
|
+
message += '\n' + obj_label_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
36960
|
+
message += '\n' + obj_label_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
36961
|
+
return new TypeError(message);
|
|
36962
|
+
}
|
|
36963
|
+
const obj_operator = obj.operator;
|
|
36964
|
+
const path_operator = path + '.operator';
|
|
36965
|
+
if (typeof obj_operator !== 'string') {
|
|
36966
|
+
return new TypeError('Expected "string" but received "' + typeof obj_operator + '" (at "' + path_operator + '")');
|
|
36967
|
+
}
|
|
36968
|
+
const obj_values = obj.values;
|
|
36969
|
+
const path_values = path + '.values';
|
|
36970
|
+
if (!ArrayIsArray(obj_values)) {
|
|
36971
|
+
return new TypeError('Expected "array" but received "' + typeof obj_values + '" (at "' + path_values + '")');
|
|
36972
|
+
}
|
|
36973
|
+
for (let i = 0; i < obj_values.length; i++) {
|
|
36974
|
+
const obj_values_item = obj_values[i];
|
|
36975
|
+
const path_values_item = path_values + '[' + i + ']';
|
|
36976
|
+
if (typeof obj_values_item !== 'string') {
|
|
36977
|
+
return new TypeError('Expected "string" but received "' + typeof obj_values_item + '" (at "' + path_values_item + '")');
|
|
36978
|
+
}
|
|
36979
|
+
}
|
|
36980
|
+
})();
|
|
36981
|
+
return v_error === undefined ? null : v_error;
|
|
36982
|
+
}
|
|
36983
|
+
|
|
36909
36984
|
function validate$j(obj, path = 'SearchAnswersRecordRepresentation') {
|
|
36910
36985
|
const v_error = (() => {
|
|
36911
36986
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -36945,6 +37020,21 @@ function validate$i(obj, path = 'SearchAnswersResultRepresentation') {
|
|
|
36945
37020
|
if (typeof obj_answerType !== 'string') {
|
|
36946
37021
|
return new TypeError('Expected "string" but received "' + typeof obj_answerType + '" (at "' + path_answerType + '")');
|
|
36947
37022
|
}
|
|
37023
|
+
const obj_appliedFilters = obj.appliedFilters;
|
|
37024
|
+
const path_appliedFilters = path + '.appliedFilters';
|
|
37025
|
+
if (!ArrayIsArray(obj_appliedFilters)) {
|
|
37026
|
+
return new TypeError('Expected "array" but received "' + typeof obj_appliedFilters + '" (at "' + path_appliedFilters + '")');
|
|
37027
|
+
}
|
|
37028
|
+
for (let i = 0; i < obj_appliedFilters.length; i++) {
|
|
37029
|
+
const obj_appliedFilters_item = obj_appliedFilters[i];
|
|
37030
|
+
const path_appliedFilters_item = path_appliedFilters + '[' + i + ']';
|
|
37031
|
+
const referencepath_appliedFilters_itemValidationError = validate$k(obj_appliedFilters_item, path_appliedFilters_item);
|
|
37032
|
+
if (referencepath_appliedFilters_itemValidationError !== null) {
|
|
37033
|
+
let message = 'Object doesn\'t match AppliedSearchFilterOutputRepresentation (at "' + path_appliedFilters_item + '")\n';
|
|
37034
|
+
message += referencepath_appliedFilters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
37035
|
+
return new TypeError(message);
|
|
37036
|
+
}
|
|
37037
|
+
}
|
|
36948
37038
|
const obj_passage = obj.passage;
|
|
36949
37039
|
const path_passage = path + '.passage';
|
|
36950
37040
|
if (typeof obj_passage !== 'string') {
|
|
@@ -37010,11 +37100,6 @@ function validate$g(obj, path = 'SearchFilterOutputRepresentation') {
|
|
|
37010
37100
|
if (typeof obj_fieldPath !== 'string') {
|
|
37011
37101
|
return new TypeError('Expected "string" but received "' + typeof obj_fieldPath + '" (at "' + path_fieldPath + '")');
|
|
37012
37102
|
}
|
|
37013
|
-
const obj_label = obj.label;
|
|
37014
|
-
const path_label = path + '.label';
|
|
37015
|
-
if (typeof obj_label !== 'string') {
|
|
37016
|
-
return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
37017
|
-
}
|
|
37018
37103
|
const obj_operator = obj.operator;
|
|
37019
37104
|
const path_operator = path + '.operator';
|
|
37020
37105
|
if (typeof obj_operator !== 'string') {
|
|
@@ -37112,7 +37197,7 @@ function validate$e(obj, path = 'SearchResultsSummaryRepresentation') {
|
|
|
37112
37197
|
const path_keywordSearchResults = path + '.keywordSearchResults';
|
|
37113
37198
|
let obj_keywordSearchResults_union0 = null;
|
|
37114
37199
|
const obj_keywordSearchResults_union0_error = (() => {
|
|
37115
|
-
const referencepath_keywordSearchResultsValidationError = validate$
|
|
37200
|
+
const referencepath_keywordSearchResultsValidationError = validate$l(obj_keywordSearchResults, path_keywordSearchResults);
|
|
37116
37201
|
if (referencepath_keywordSearchResultsValidationError !== null) {
|
|
37117
37202
|
let message = 'Object doesn\'t match KeywordSearchResultsRepresentation (at "' + path_keywordSearchResults + '")\n';
|
|
37118
37203
|
message += referencepath_keywordSearchResultsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -37325,7 +37410,7 @@ function typeCheckConfig$h(untrustedConfig) {
|
|
|
37325
37410
|
for (let i = 0, arrayLength = untrustedConfig_searchObjectOptions_keys.length; i < arrayLength; i++) {
|
|
37326
37411
|
const key = untrustedConfig_searchObjectOptions_keys[i];
|
|
37327
37412
|
const untrustedConfig_searchObjectOptions_prop = untrustedConfig_searchObjectOptions[key];
|
|
37328
|
-
const referenceSearchObjectOptionsRepresentationValidationError = validate$
|
|
37413
|
+
const referenceSearchObjectOptionsRepresentationValidationError = validate$o(untrustedConfig_searchObjectOptions_prop);
|
|
37329
37414
|
if (referenceSearchObjectOptionsRepresentationValidationError === null) {
|
|
37330
37415
|
if (untrustedConfig_searchObjectOptions_object !== undefined) {
|
|
37331
37416
|
untrustedConfig_searchObjectOptions_object[key] = untrustedConfig_searchObjectOptions_prop;
|
|
@@ -37444,7 +37529,7 @@ function validate$d(obj, path = 'KeywordSearchResultsSummaryRepresentation') {
|
|
|
37444
37529
|
}
|
|
37445
37530
|
const obj_keywordSearchResult = obj.keywordSearchResult;
|
|
37446
37531
|
const path_keywordSearchResult = path + '.keywordSearchResult';
|
|
37447
|
-
const referencepath_keywordSearchResultValidationError = validate$
|
|
37532
|
+
const referencepath_keywordSearchResultValidationError = validate$m(obj_keywordSearchResult, path_keywordSearchResult);
|
|
37448
37533
|
if (referencepath_keywordSearchResultValidationError !== null) {
|
|
37449
37534
|
let message = 'Object doesn\'t match SearchResultCollectionRepresentation (at "' + path_keywordSearchResult + '")\n';
|
|
37450
37535
|
message += referencepath_keywordSearchResultValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -37599,7 +37684,7 @@ function typeCheckConfig$g(untrustedConfig) {
|
|
|
37599
37684
|
const untrustedConfig_filters_array = [];
|
|
37600
37685
|
for (let i = 0, arrayLength = untrustedConfig_filters.length; i < arrayLength; i++) {
|
|
37601
37686
|
const untrustedConfig_filters_item = untrustedConfig_filters[i];
|
|
37602
|
-
const referenceSearchFilterInputRepresentationValidationError = validate$
|
|
37687
|
+
const referenceSearchFilterInputRepresentationValidationError = validate$p(untrustedConfig_filters_item);
|
|
37603
37688
|
if (referenceSearchFilterInputRepresentationValidationError === null) {
|
|
37604
37689
|
untrustedConfig_filters_array.push(untrustedConfig_filters_item);
|
|
37605
37690
|
}
|
|
@@ -37694,7 +37779,7 @@ function mergeData$11(existingData, newData) {
|
|
|
37694
37779
|
};
|
|
37695
37780
|
}
|
|
37696
37781
|
function ingest$1a(astNode, state) {
|
|
37697
|
-
const { path, data, luvio } = state;
|
|
37782
|
+
const { path, data, timestamp, luvio } = state;
|
|
37698
37783
|
const key = keyBuilder$1f(luvio, path);
|
|
37699
37784
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37700
37785
|
key,
|
|
@@ -37708,7 +37793,8 @@ function ingest$1a(astNode, state) {
|
|
|
37708
37793
|
ttl: TTL$6,
|
|
37709
37794
|
namespace: keyPrefix,
|
|
37710
37795
|
representationName: "DoubleValue",
|
|
37711
|
-
version: VERSION$1e
|
|
37796
|
+
version: VERSION$1e,
|
|
37797
|
+
ingestionTimestamp: timestamp,
|
|
37712
37798
|
},
|
|
37713
37799
|
});
|
|
37714
37800
|
}
|
|
@@ -37836,7 +37922,7 @@ function mergeData$10(existingData, newData) {
|
|
|
37836
37922
|
};
|
|
37837
37923
|
}
|
|
37838
37924
|
function ingest$19(astNode, state) {
|
|
37839
|
-
const { path, data, luvio } = state;
|
|
37925
|
+
const { path, data, timestamp, luvio } = state;
|
|
37840
37926
|
const key = keyBuilder$1e(luvio, path);
|
|
37841
37927
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37842
37928
|
key,
|
|
@@ -37850,7 +37936,8 @@ function ingest$19(astNode, state) {
|
|
|
37850
37936
|
ttl: TTL$6,
|
|
37851
37937
|
namespace: keyPrefix,
|
|
37852
37938
|
representationName: "LongValue",
|
|
37853
|
-
version: VERSION$1d
|
|
37939
|
+
version: VERSION$1d,
|
|
37940
|
+
ingestionTimestamp: timestamp,
|
|
37854
37941
|
},
|
|
37855
37942
|
});
|
|
37856
37943
|
}
|
|
@@ -37978,7 +38065,7 @@ function mergeData$$(existingData, newData) {
|
|
|
37978
38065
|
};
|
|
37979
38066
|
}
|
|
37980
38067
|
function ingest$18(astNode, state) {
|
|
37981
|
-
const { path, data, luvio } = state;
|
|
38068
|
+
const { path, data, timestamp, luvio } = state;
|
|
37982
38069
|
const key = keyBuilder$1d(luvio, path);
|
|
37983
38070
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
37984
38071
|
key,
|
|
@@ -37992,7 +38079,8 @@ function ingest$18(astNode, state) {
|
|
|
37992
38079
|
ttl: TTL$6,
|
|
37993
38080
|
namespace: keyPrefix,
|
|
37994
38081
|
representationName: "PercentValue",
|
|
37995
|
-
version: VERSION$1c
|
|
38082
|
+
version: VERSION$1c,
|
|
38083
|
+
ingestionTimestamp: timestamp,
|
|
37996
38084
|
},
|
|
37997
38085
|
});
|
|
37998
38086
|
}
|
|
@@ -38120,7 +38208,7 @@ function mergeData$_(existingData, newData) {
|
|
|
38120
38208
|
};
|
|
38121
38209
|
}
|
|
38122
38210
|
function ingest$17(astNode, state) {
|
|
38123
|
-
const { path, data, luvio } = state;
|
|
38211
|
+
const { path, data, timestamp, luvio } = state;
|
|
38124
38212
|
const key = keyBuilder$1c(luvio, path);
|
|
38125
38213
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38126
38214
|
key,
|
|
@@ -38134,7 +38222,8 @@ function ingest$17(astNode, state) {
|
|
|
38134
38222
|
ttl: TTL$6,
|
|
38135
38223
|
namespace: keyPrefix,
|
|
38136
38224
|
representationName: "PercentAggregate",
|
|
38137
|
-
version: VERSION$1b
|
|
38225
|
+
version: VERSION$1b,
|
|
38226
|
+
ingestionTimestamp: timestamp,
|
|
38138
38227
|
},
|
|
38139
38228
|
});
|
|
38140
38229
|
}
|
|
@@ -38382,7 +38471,7 @@ function mergeData$Z(existingData, newData) {
|
|
|
38382
38471
|
};
|
|
38383
38472
|
}
|
|
38384
38473
|
function ingest$16(astNode, state) {
|
|
38385
|
-
const { path, data, luvio } = state;
|
|
38474
|
+
const { path, data, timestamp, luvio } = state;
|
|
38386
38475
|
const key = keyBuilder$1b(luvio, path);
|
|
38387
38476
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38388
38477
|
key,
|
|
@@ -38396,7 +38485,8 @@ function ingest$16(astNode, state) {
|
|
|
38396
38485
|
ttl: TTL$6,
|
|
38397
38486
|
namespace: keyPrefix,
|
|
38398
38487
|
representationName: "IntValue",
|
|
38399
|
-
version: VERSION$1a
|
|
38488
|
+
version: VERSION$1a,
|
|
38489
|
+
ingestionTimestamp: timestamp,
|
|
38400
38490
|
},
|
|
38401
38491
|
});
|
|
38402
38492
|
}
|
|
@@ -38524,7 +38614,7 @@ function mergeData$Y(existingData, newData) {
|
|
|
38524
38614
|
};
|
|
38525
38615
|
}
|
|
38526
38616
|
function ingest$15(astNode, state) {
|
|
38527
|
-
const { path, data, luvio } = state;
|
|
38617
|
+
const { path, data, timestamp, luvio } = state;
|
|
38528
38618
|
const key = keyBuilder$1a(luvio, path);
|
|
38529
38619
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38530
38620
|
key,
|
|
@@ -38538,7 +38628,8 @@ function ingest$15(astNode, state) {
|
|
|
38538
38628
|
ttl: TTL$6,
|
|
38539
38629
|
namespace: keyPrefix,
|
|
38540
38630
|
representationName: "StringValue",
|
|
38541
|
-
version: VERSION$19
|
|
38631
|
+
version: VERSION$19,
|
|
38632
|
+
ingestionTimestamp: timestamp,
|
|
38542
38633
|
},
|
|
38543
38634
|
});
|
|
38544
38635
|
}
|
|
@@ -38657,7 +38748,7 @@ function mergeData$X(existingData, newData) {
|
|
|
38657
38748
|
};
|
|
38658
38749
|
}
|
|
38659
38750
|
function ingest$14(astNode, state) {
|
|
38660
|
-
const { path, data, luvio } = state;
|
|
38751
|
+
const { path, data, timestamp, luvio } = state;
|
|
38661
38752
|
const key = keyBuilder$19(luvio, path);
|
|
38662
38753
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38663
38754
|
key,
|
|
@@ -38671,7 +38762,8 @@ function ingest$14(astNode, state) {
|
|
|
38671
38762
|
ttl: TTL$6,
|
|
38672
38763
|
namespace: keyPrefix,
|
|
38673
38764
|
representationName: "StringAggregate",
|
|
38674
|
-
version: VERSION$18
|
|
38765
|
+
version: VERSION$18,
|
|
38766
|
+
ingestionTimestamp: timestamp,
|
|
38675
38767
|
},
|
|
38676
38768
|
});
|
|
38677
38769
|
}
|
|
@@ -38899,7 +38991,7 @@ function mergeData$W(existingData, newData) {
|
|
|
38899
38991
|
};
|
|
38900
38992
|
}
|
|
38901
38993
|
function ingest$13(astNode, state) {
|
|
38902
|
-
const { path, data, luvio } = state;
|
|
38994
|
+
const { path, data, timestamp, luvio } = state;
|
|
38903
38995
|
const key = keyBuilder$18(luvio, path);
|
|
38904
38996
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
38905
38997
|
key,
|
|
@@ -38913,7 +39005,8 @@ function ingest$13(astNode, state) {
|
|
|
38913
39005
|
ttl: TTL$6,
|
|
38914
39006
|
namespace: keyPrefix,
|
|
38915
39007
|
representationName: "IDValue",
|
|
38916
|
-
version: VERSION$17
|
|
39008
|
+
version: VERSION$17,
|
|
39009
|
+
ingestionTimestamp: timestamp,
|
|
38917
39010
|
},
|
|
38918
39011
|
});
|
|
38919
39012
|
}
|
|
@@ -39035,7 +39128,7 @@ function mergeData$V(existingData, newData) {
|
|
|
39035
39128
|
};
|
|
39036
39129
|
}
|
|
39037
39130
|
function ingest$12(astNode, state) {
|
|
39038
|
-
const { path, data, luvio } = state;
|
|
39131
|
+
const { path, data, timestamp, luvio } = state;
|
|
39039
39132
|
const key = keyBuilder$17(luvio, path);
|
|
39040
39133
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39041
39134
|
key,
|
|
@@ -39049,7 +39142,8 @@ function ingest$12(astNode, state) {
|
|
|
39049
39142
|
ttl: TTL$6,
|
|
39050
39143
|
namespace: keyPrefix,
|
|
39051
39144
|
representationName: "DateTimeValue",
|
|
39052
|
-
version: VERSION$16
|
|
39145
|
+
version: VERSION$16,
|
|
39146
|
+
ingestionTimestamp: timestamp,
|
|
39053
39147
|
},
|
|
39054
39148
|
});
|
|
39055
39149
|
}
|
|
@@ -39177,7 +39271,7 @@ function mergeData$U(existingData, newData) {
|
|
|
39177
39271
|
};
|
|
39178
39272
|
}
|
|
39179
39273
|
function ingest$11(astNode, state) {
|
|
39180
|
-
const { path, data, luvio } = state;
|
|
39274
|
+
const { path, data, timestamp, luvio } = state;
|
|
39181
39275
|
const key = keyBuilder$16(luvio, path);
|
|
39182
39276
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39183
39277
|
key,
|
|
@@ -39191,7 +39285,8 @@ function ingest$11(astNode, state) {
|
|
|
39191
39285
|
ttl: TTL$6,
|
|
39192
39286
|
namespace: keyPrefix,
|
|
39193
39287
|
representationName: "BooleanValue",
|
|
39194
|
-
version: VERSION$15
|
|
39288
|
+
version: VERSION$15,
|
|
39289
|
+
ingestionTimestamp: timestamp,
|
|
39195
39290
|
},
|
|
39196
39291
|
});
|
|
39197
39292
|
}
|
|
@@ -39313,7 +39408,7 @@ function mergeData$T(existingData, newData) {
|
|
|
39313
39408
|
};
|
|
39314
39409
|
}
|
|
39315
39410
|
function ingest$10(astNode, state) {
|
|
39316
|
-
const { path, data, luvio } = state;
|
|
39411
|
+
const { path, data, timestamp, luvio } = state;
|
|
39317
39412
|
const key = keyBuilder$15(luvio, path);
|
|
39318
39413
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39319
39414
|
key,
|
|
@@ -39327,7 +39422,8 @@ function ingest$10(astNode, state) {
|
|
|
39327
39422
|
ttl: TTL$6,
|
|
39328
39423
|
namespace: keyPrefix,
|
|
39329
39424
|
representationName: "TimeValue",
|
|
39330
|
-
version: VERSION$14
|
|
39425
|
+
version: VERSION$14,
|
|
39426
|
+
ingestionTimestamp: timestamp,
|
|
39331
39427
|
},
|
|
39332
39428
|
});
|
|
39333
39429
|
}
|
|
@@ -39455,7 +39551,7 @@ function mergeData$S(existingData, newData) {
|
|
|
39455
39551
|
};
|
|
39456
39552
|
}
|
|
39457
39553
|
function ingest$$(astNode, state) {
|
|
39458
|
-
const { path, data, luvio } = state;
|
|
39554
|
+
const { path, data, timestamp, luvio } = state;
|
|
39459
39555
|
const key = keyBuilder$14(luvio, path);
|
|
39460
39556
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39461
39557
|
key,
|
|
@@ -39469,7 +39565,8 @@ function ingest$$(astNode, state) {
|
|
|
39469
39565
|
ttl: TTL$6,
|
|
39470
39566
|
namespace: keyPrefix,
|
|
39471
39567
|
representationName: "DateValue",
|
|
39472
|
-
version: VERSION$13
|
|
39568
|
+
version: VERSION$13,
|
|
39569
|
+
ingestionTimestamp: timestamp,
|
|
39473
39570
|
},
|
|
39474
39571
|
});
|
|
39475
39572
|
}
|
|
@@ -39597,7 +39694,7 @@ function mergeData$R(existingData, newData) {
|
|
|
39597
39694
|
};
|
|
39598
39695
|
}
|
|
39599
39696
|
function ingest$_(astNode, state) {
|
|
39600
|
-
const { path, data, luvio } = state;
|
|
39697
|
+
const { path, data, timestamp, luvio } = state;
|
|
39601
39698
|
const key = keyBuilder$13(luvio, path);
|
|
39602
39699
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39603
39700
|
key,
|
|
@@ -39611,7 +39708,8 @@ function ingest$_(astNode, state) {
|
|
|
39611
39708
|
ttl: TTL$6,
|
|
39612
39709
|
namespace: keyPrefix,
|
|
39613
39710
|
representationName: "TextAreaValue",
|
|
39614
|
-
version: VERSION$12
|
|
39711
|
+
version: VERSION$12,
|
|
39712
|
+
ingestionTimestamp: timestamp,
|
|
39615
39713
|
},
|
|
39616
39714
|
});
|
|
39617
39715
|
}
|
|
@@ -39733,7 +39831,7 @@ function mergeData$Q(existingData, newData) {
|
|
|
39733
39831
|
};
|
|
39734
39832
|
}
|
|
39735
39833
|
function ingest$Z(astNode, state) {
|
|
39736
|
-
const { path, data, luvio } = state;
|
|
39834
|
+
const { path, data, timestamp, luvio } = state;
|
|
39737
39835
|
const key = keyBuilder$12(luvio, path);
|
|
39738
39836
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39739
39837
|
key,
|
|
@@ -39747,7 +39845,8 @@ function ingest$Z(astNode, state) {
|
|
|
39747
39845
|
ttl: TTL$6,
|
|
39748
39846
|
namespace: keyPrefix,
|
|
39749
39847
|
representationName: "LongTextAreaValue",
|
|
39750
|
-
version: VERSION$11
|
|
39848
|
+
version: VERSION$11,
|
|
39849
|
+
ingestionTimestamp: timestamp,
|
|
39751
39850
|
},
|
|
39752
39851
|
});
|
|
39753
39852
|
}
|
|
@@ -39869,7 +39968,7 @@ function mergeData$P(existingData, newData) {
|
|
|
39869
39968
|
};
|
|
39870
39969
|
}
|
|
39871
39970
|
function ingest$Y(astNode, state) {
|
|
39872
|
-
const { path, data, luvio } = state;
|
|
39971
|
+
const { path, data, timestamp, luvio } = state;
|
|
39873
39972
|
const key = keyBuilder$11(luvio, path);
|
|
39874
39973
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
39875
39974
|
key,
|
|
@@ -39883,7 +39982,8 @@ function ingest$Y(astNode, state) {
|
|
|
39883
39982
|
ttl: TTL$6,
|
|
39884
39983
|
namespace: keyPrefix,
|
|
39885
39984
|
representationName: "RichTextAreaValue",
|
|
39886
|
-
version: VERSION$10
|
|
39985
|
+
version: VERSION$10,
|
|
39986
|
+
ingestionTimestamp: timestamp,
|
|
39887
39987
|
},
|
|
39888
39988
|
});
|
|
39889
39989
|
}
|
|
@@ -40005,7 +40105,7 @@ function mergeData$O(existingData, newData) {
|
|
|
40005
40105
|
};
|
|
40006
40106
|
}
|
|
40007
40107
|
function ingest$X(astNode, state) {
|
|
40008
|
-
const { path, data, luvio } = state;
|
|
40108
|
+
const { path, data, timestamp, luvio } = state;
|
|
40009
40109
|
const key = keyBuilder$10(luvio, path);
|
|
40010
40110
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40011
40111
|
key,
|
|
@@ -40019,7 +40119,8 @@ function ingest$X(astNode, state) {
|
|
|
40019
40119
|
ttl: TTL$6,
|
|
40020
40120
|
namespace: keyPrefix,
|
|
40021
40121
|
representationName: "PhoneNumberValue",
|
|
40022
|
-
version: VERSION
|
|
40122
|
+
version: VERSION$$,
|
|
40123
|
+
ingestionTimestamp: timestamp,
|
|
40023
40124
|
},
|
|
40024
40125
|
});
|
|
40025
40126
|
}
|
|
@@ -40141,7 +40242,7 @@ function mergeData$N(existingData, newData) {
|
|
|
40141
40242
|
};
|
|
40142
40243
|
}
|
|
40143
40244
|
function ingest$W(astNode, state) {
|
|
40144
|
-
const { path, data, luvio } = state;
|
|
40245
|
+
const { path, data, timestamp, luvio } = state;
|
|
40145
40246
|
const key = keyBuilder$$(luvio, path);
|
|
40146
40247
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40147
40248
|
key,
|
|
@@ -40155,7 +40256,8 @@ function ingest$W(astNode, state) {
|
|
|
40155
40256
|
ttl: TTL$6,
|
|
40156
40257
|
namespace: keyPrefix,
|
|
40157
40258
|
representationName: "EmailValue",
|
|
40158
|
-
version: VERSION$_
|
|
40259
|
+
version: VERSION$_,
|
|
40260
|
+
ingestionTimestamp: timestamp,
|
|
40159
40261
|
},
|
|
40160
40262
|
});
|
|
40161
40263
|
}
|
|
@@ -40277,7 +40379,7 @@ function mergeData$M(existingData, newData) {
|
|
|
40277
40379
|
};
|
|
40278
40380
|
}
|
|
40279
40381
|
function ingest$V(astNode, state) {
|
|
40280
|
-
const { path, data, luvio } = state;
|
|
40382
|
+
const { path, data, timestamp, luvio } = state;
|
|
40281
40383
|
const key = keyBuilder$_(luvio, path);
|
|
40282
40384
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40283
40385
|
key,
|
|
@@ -40291,7 +40393,8 @@ function ingest$V(astNode, state) {
|
|
|
40291
40393
|
ttl: TTL$6,
|
|
40292
40394
|
namespace: keyPrefix,
|
|
40293
40395
|
representationName: "UrlValue",
|
|
40294
|
-
version: VERSION$Z
|
|
40396
|
+
version: VERSION$Z,
|
|
40397
|
+
ingestionTimestamp: timestamp,
|
|
40295
40398
|
},
|
|
40296
40399
|
});
|
|
40297
40400
|
}
|
|
@@ -40413,7 +40516,7 @@ function mergeData$L(existingData, newData) {
|
|
|
40413
40516
|
};
|
|
40414
40517
|
}
|
|
40415
40518
|
function ingest$U(astNode, state) {
|
|
40416
|
-
const { path, data, luvio } = state;
|
|
40519
|
+
const { path, data, timestamp, luvio } = state;
|
|
40417
40520
|
const key = keyBuilder$Z(luvio, path);
|
|
40418
40521
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40419
40522
|
key,
|
|
@@ -40427,7 +40530,8 @@ function ingest$U(astNode, state) {
|
|
|
40427
40530
|
ttl: TTL$6,
|
|
40428
40531
|
namespace: keyPrefix,
|
|
40429
40532
|
representationName: "EncryptedStringValue",
|
|
40430
|
-
version: VERSION$Y
|
|
40533
|
+
version: VERSION$Y,
|
|
40534
|
+
ingestionTimestamp: timestamp,
|
|
40431
40535
|
},
|
|
40432
40536
|
});
|
|
40433
40537
|
}
|
|
@@ -40549,7 +40653,7 @@ function mergeData$K(existingData, newData) {
|
|
|
40549
40653
|
};
|
|
40550
40654
|
}
|
|
40551
40655
|
function ingest$T(astNode, state) {
|
|
40552
|
-
const { path, data, luvio } = state;
|
|
40656
|
+
const { path, data, timestamp, luvio } = state;
|
|
40553
40657
|
const key = keyBuilder$Y(luvio, path);
|
|
40554
40658
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40555
40659
|
key,
|
|
@@ -40563,7 +40667,8 @@ function ingest$T(astNode, state) {
|
|
|
40563
40667
|
ttl: TTL$6,
|
|
40564
40668
|
namespace: keyPrefix,
|
|
40565
40669
|
representationName: "CurrencyValue",
|
|
40566
|
-
version: VERSION$X
|
|
40670
|
+
version: VERSION$X,
|
|
40671
|
+
ingestionTimestamp: timestamp,
|
|
40567
40672
|
},
|
|
40568
40673
|
});
|
|
40569
40674
|
}
|
|
@@ -40691,7 +40796,7 @@ function mergeData$J(existingData, newData) {
|
|
|
40691
40796
|
};
|
|
40692
40797
|
}
|
|
40693
40798
|
function ingest$S(astNode, state) {
|
|
40694
|
-
const { path, data, luvio } = state;
|
|
40799
|
+
const { path, data, timestamp, luvio } = state;
|
|
40695
40800
|
const key = keyBuilder$X(luvio, path);
|
|
40696
40801
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40697
40802
|
key,
|
|
@@ -40705,7 +40810,8 @@ function ingest$S(astNode, state) {
|
|
|
40705
40810
|
ttl: TTL$6,
|
|
40706
40811
|
namespace: keyPrefix,
|
|
40707
40812
|
representationName: "LongitudeValue",
|
|
40708
|
-
version: VERSION$W
|
|
40813
|
+
version: VERSION$W,
|
|
40814
|
+
ingestionTimestamp: timestamp,
|
|
40709
40815
|
},
|
|
40710
40816
|
});
|
|
40711
40817
|
}
|
|
@@ -40827,7 +40933,7 @@ function mergeData$I(existingData, newData) {
|
|
|
40827
40933
|
};
|
|
40828
40934
|
}
|
|
40829
40935
|
function ingest$R(astNode, state) {
|
|
40830
|
-
const { path, data, luvio } = state;
|
|
40936
|
+
const { path, data, timestamp, luvio } = state;
|
|
40831
40937
|
const key = keyBuilder$W(luvio, path);
|
|
40832
40938
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40833
40939
|
key,
|
|
@@ -40841,7 +40947,8 @@ function ingest$R(astNode, state) {
|
|
|
40841
40947
|
ttl: TTL$6,
|
|
40842
40948
|
namespace: keyPrefix,
|
|
40843
40949
|
representationName: "LatitudeValue",
|
|
40844
|
-
version: VERSION$V
|
|
40950
|
+
version: VERSION$V,
|
|
40951
|
+
ingestionTimestamp: timestamp,
|
|
40845
40952
|
},
|
|
40846
40953
|
});
|
|
40847
40954
|
}
|
|
@@ -40963,7 +41070,7 @@ function mergeData$H(existingData, newData) {
|
|
|
40963
41070
|
};
|
|
40964
41071
|
}
|
|
40965
41072
|
function ingest$Q(astNode, state) {
|
|
40966
|
-
const { path, data, luvio } = state;
|
|
41073
|
+
const { path, data, timestamp, luvio } = state;
|
|
40967
41074
|
const key = keyBuilder$V(luvio, path);
|
|
40968
41075
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
40969
41076
|
key,
|
|
@@ -40977,7 +41084,8 @@ function ingest$Q(astNode, state) {
|
|
|
40977
41084
|
ttl: TTL$6,
|
|
40978
41085
|
namespace: keyPrefix,
|
|
40979
41086
|
representationName: "PicklistValue",
|
|
40980
|
-
version: VERSION$U
|
|
41087
|
+
version: VERSION$U,
|
|
41088
|
+
ingestionTimestamp: timestamp,
|
|
40981
41089
|
},
|
|
40982
41090
|
});
|
|
40983
41091
|
}
|
|
@@ -41105,7 +41213,7 @@ function mergeData$G(existingData, newData) {
|
|
|
41105
41213
|
};
|
|
41106
41214
|
}
|
|
41107
41215
|
function ingest$P(astNode, state) {
|
|
41108
|
-
const { path, data, luvio } = state;
|
|
41216
|
+
const { path, data, timestamp, luvio } = state;
|
|
41109
41217
|
const key = keyBuilder$U(luvio, path);
|
|
41110
41218
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41111
41219
|
key,
|
|
@@ -41119,7 +41227,8 @@ function ingest$P(astNode, state) {
|
|
|
41119
41227
|
ttl: TTL$6,
|
|
41120
41228
|
namespace: keyPrefix,
|
|
41121
41229
|
representationName: "MultiPicklistValue",
|
|
41122
|
-
version: VERSION$T
|
|
41230
|
+
version: VERSION$T,
|
|
41231
|
+
ingestionTimestamp: timestamp,
|
|
41123
41232
|
},
|
|
41124
41233
|
});
|
|
41125
41234
|
}
|
|
@@ -41247,7 +41356,7 @@ function mergeData$F(existingData, newData) {
|
|
|
41247
41356
|
};
|
|
41248
41357
|
}
|
|
41249
41358
|
function ingest$O(astNode, state) {
|
|
41250
|
-
const { path, data, luvio } = state;
|
|
41359
|
+
const { path, data, timestamp, luvio } = state;
|
|
41251
41360
|
const key = keyBuilder$T(luvio, path);
|
|
41252
41361
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41253
41362
|
key,
|
|
@@ -41261,7 +41370,8 @@ function ingest$O(astNode, state) {
|
|
|
41261
41370
|
ttl: TTL$6,
|
|
41262
41371
|
namespace: keyPrefix,
|
|
41263
41372
|
representationName: "Base64Value",
|
|
41264
|
-
version: VERSION$S
|
|
41373
|
+
version: VERSION$S,
|
|
41374
|
+
ingestionTimestamp: timestamp,
|
|
41265
41375
|
},
|
|
41266
41376
|
});
|
|
41267
41377
|
}
|
|
@@ -41383,7 +41493,7 @@ function mergeData$E(existingData, newData) {
|
|
|
41383
41493
|
};
|
|
41384
41494
|
}
|
|
41385
41495
|
function ingest$N(astNode, state) {
|
|
41386
|
-
const { path, data, luvio } = state;
|
|
41496
|
+
const { path, data, timestamp, luvio } = state;
|
|
41387
41497
|
const key = keyBuilder$S(luvio, path);
|
|
41388
41498
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41389
41499
|
key,
|
|
@@ -41397,7 +41507,8 @@ function ingest$N(astNode, state) {
|
|
|
41397
41507
|
ttl: TTL$6,
|
|
41398
41508
|
namespace: keyPrefix,
|
|
41399
41509
|
representationName: "JSONValue",
|
|
41400
|
-
version: VERSION$R
|
|
41510
|
+
version: VERSION$R,
|
|
41511
|
+
ingestionTimestamp: timestamp,
|
|
41401
41512
|
},
|
|
41402
41513
|
});
|
|
41403
41514
|
}
|
|
@@ -41923,7 +42034,7 @@ function mergeData$D(existingData, newData) {
|
|
|
41923
42034
|
};
|
|
41924
42035
|
}
|
|
41925
42036
|
function ingest$L(astNode, state) {
|
|
41926
|
-
const { path, data, luvio } = state;
|
|
42037
|
+
const { path, data, timestamp, luvio } = state;
|
|
41927
42038
|
const key = keyBuilder$R(luvio, path);
|
|
41928
42039
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
41929
42040
|
key,
|
|
@@ -41937,7 +42048,8 @@ function ingest$L(astNode, state) {
|
|
|
41937
42048
|
ttl: TTL$6,
|
|
41938
42049
|
namespace: keyPrefix,
|
|
41939
42050
|
representationName: "CompoundField",
|
|
41940
|
-
version: VERSION$P
|
|
42051
|
+
version: VERSION$P,
|
|
42052
|
+
ingestionTimestamp: timestamp,
|
|
41941
42053
|
},
|
|
41942
42054
|
});
|
|
41943
42055
|
}
|
|
@@ -42923,7 +43035,7 @@ function mergeData$C(existingData, newData) {
|
|
|
42923
43035
|
};
|
|
42924
43036
|
}
|
|
42925
43037
|
function ingest$K(astNode, state) {
|
|
42926
|
-
const { path, data, luvio } = state;
|
|
43038
|
+
const { path, data, timestamp, luvio } = state;
|
|
42927
43039
|
const key = keyBuilder$Q(luvio, path);
|
|
42928
43040
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
42929
43041
|
key,
|
|
@@ -42937,7 +43049,8 @@ function ingest$K(astNode, state) {
|
|
|
42937
43049
|
ttl: TTL$6,
|
|
42938
43050
|
namespace: keyPrefix,
|
|
42939
43051
|
representationName: "PageInfo",
|
|
42940
|
-
version: VERSION$O
|
|
43052
|
+
version: VERSION$O,
|
|
43053
|
+
ingestionTimestamp: timestamp,
|
|
42941
43054
|
},
|
|
42942
43055
|
});
|
|
42943
43056
|
}
|
|
@@ -43139,7 +43252,7 @@ function mergeData$B(existingData, newData) {
|
|
|
43139
43252
|
};
|
|
43140
43253
|
}
|
|
43141
43254
|
function ingest$J(astNode, state) {
|
|
43142
|
-
const { path, data, luvio } = state;
|
|
43255
|
+
const { path, data, timestamp, luvio } = state;
|
|
43143
43256
|
const key = keyBuilder$P(luvio, path, data);
|
|
43144
43257
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43145
43258
|
key,
|
|
@@ -43156,7 +43269,8 @@ function ingest$J(astNode, state) {
|
|
|
43156
43269
|
ttl: TTL$6,
|
|
43157
43270
|
namespace: keyPrefix,
|
|
43158
43271
|
representationName: "RecordRepresentation",
|
|
43159
|
-
version: VERSION$N
|
|
43272
|
+
version: VERSION$N,
|
|
43273
|
+
ingestionTimestamp: timestamp,
|
|
43160
43274
|
},
|
|
43161
43275
|
});
|
|
43162
43276
|
}
|
|
@@ -43678,7 +43792,7 @@ function mergeData$A(existingData, newData) {
|
|
|
43678
43792
|
};
|
|
43679
43793
|
}
|
|
43680
43794
|
function ingest$I(astNode, state) {
|
|
43681
|
-
const { path, data, luvio } = state;
|
|
43795
|
+
const { path, data, timestamp, luvio } = state;
|
|
43682
43796
|
const key = keyBuilder$O(luvio, path);
|
|
43683
43797
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
43684
43798
|
key,
|
|
@@ -43692,7 +43806,8 @@ function ingest$I(astNode, state) {
|
|
|
43692
43806
|
ttl: TTL$6,
|
|
43693
43807
|
namespace: keyPrefix,
|
|
43694
43808
|
representationName: "RecordEdge",
|
|
43695
|
-
version: VERSION$M
|
|
43809
|
+
version: VERSION$M,
|
|
43810
|
+
ingestionTimestamp: timestamp,
|
|
43696
43811
|
},
|
|
43697
43812
|
});
|
|
43698
43813
|
}
|
|
@@ -43902,7 +44017,7 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
|
|
|
43902
44017
|
}
|
|
43903
44018
|
}
|
|
43904
44019
|
function ingest$H(astNode, state) {
|
|
43905
|
-
const { path, data, luvio } = state;
|
|
44020
|
+
const { path, data, timestamp, luvio } = state;
|
|
43906
44021
|
const key = keyBuilder$N(luvio, path);
|
|
43907
44022
|
return ingestCursorConnectionType(astNode, state, {
|
|
43908
44023
|
key,
|
|
@@ -43918,7 +44033,8 @@ function ingest$H(astNode, state) {
|
|
|
43918
44033
|
ttl: TTL$9,
|
|
43919
44034
|
namespace: keyPrefix,
|
|
43920
44035
|
representationName: "RecordConnection",
|
|
43921
|
-
version: VERSION$L
|
|
44036
|
+
version: VERSION$L,
|
|
44037
|
+
ingestionTimestamp: timestamp,
|
|
43922
44038
|
},
|
|
43923
44039
|
});
|
|
43924
44040
|
}
|
|
@@ -44087,7 +44203,7 @@ function mergeData$y(existingData, newData) {
|
|
|
44087
44203
|
};
|
|
44088
44204
|
}
|
|
44089
44205
|
function ingest$G(astNode, state) {
|
|
44090
|
-
const { path, data, luvio } = state;
|
|
44206
|
+
const { path, data, timestamp, luvio } = state;
|
|
44091
44207
|
const key = keyBuilder$M(luvio, path);
|
|
44092
44208
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44093
44209
|
key,
|
|
@@ -44101,7 +44217,8 @@ function ingest$G(astNode, state) {
|
|
|
44101
44217
|
ttl: TTL$6,
|
|
44102
44218
|
namespace: keyPrefix,
|
|
44103
44219
|
representationName: "RecordQuery",
|
|
44104
|
-
version: VERSION$K
|
|
44220
|
+
version: VERSION$K,
|
|
44221
|
+
ingestionTimestamp: timestamp,
|
|
44105
44222
|
},
|
|
44106
44223
|
});
|
|
44107
44224
|
}
|
|
@@ -44231,7 +44348,7 @@ function mergeData$x(existingData, newData) {
|
|
|
44231
44348
|
};
|
|
44232
44349
|
}
|
|
44233
44350
|
function ingest$F(astNode, state) {
|
|
44234
|
-
const { path, data, luvio } = state;
|
|
44351
|
+
const { path, data, timestamp, luvio } = state;
|
|
44235
44352
|
const key = keyBuilder$L(luvio, path);
|
|
44236
44353
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44237
44354
|
key,
|
|
@@ -44245,7 +44362,8 @@ function ingest$F(astNode, state) {
|
|
|
44245
44362
|
ttl: TTL$6,
|
|
44246
44363
|
namespace: keyPrefix,
|
|
44247
44364
|
representationName: "BooleanAggregate",
|
|
44248
|
-
version: VERSION$J
|
|
44365
|
+
version: VERSION$J,
|
|
44366
|
+
ingestionTimestamp: timestamp,
|
|
44249
44367
|
},
|
|
44250
44368
|
});
|
|
44251
44369
|
}
|
|
@@ -44414,7 +44532,7 @@ function mergeData$w(existingData, newData) {
|
|
|
44414
44532
|
};
|
|
44415
44533
|
}
|
|
44416
44534
|
function ingest$E(astNode, state) {
|
|
44417
|
-
const { path, data, luvio } = state;
|
|
44535
|
+
const { path, data, timestamp, luvio } = state;
|
|
44418
44536
|
const key = keyBuilder$K(luvio, path);
|
|
44419
44537
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44420
44538
|
key,
|
|
@@ -44428,7 +44546,8 @@ function ingest$E(astNode, state) {
|
|
|
44428
44546
|
ttl: TTL$6,
|
|
44429
44547
|
namespace: keyPrefix,
|
|
44430
44548
|
representationName: "CurrencyAggregate",
|
|
44431
|
-
version: VERSION$I
|
|
44549
|
+
version: VERSION$I,
|
|
44550
|
+
ingestionTimestamp: timestamp,
|
|
44432
44551
|
},
|
|
44433
44552
|
});
|
|
44434
44553
|
}
|
|
@@ -44676,7 +44795,7 @@ function mergeData$v(existingData, newData) {
|
|
|
44676
44795
|
};
|
|
44677
44796
|
}
|
|
44678
44797
|
function ingest$D(astNode, state) {
|
|
44679
|
-
const { path, data, luvio } = state;
|
|
44798
|
+
const { path, data, timestamp, luvio } = state;
|
|
44680
44799
|
const key = keyBuilder$J(luvio, path);
|
|
44681
44800
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44682
44801
|
key,
|
|
@@ -44690,7 +44809,8 @@ function ingest$D(astNode, state) {
|
|
|
44690
44809
|
ttl: TTL$6,
|
|
44691
44810
|
namespace: keyPrefix,
|
|
44692
44811
|
representationName: "DateFunctionAggregation",
|
|
44693
|
-
version: VERSION$H
|
|
44812
|
+
version: VERSION$H,
|
|
44813
|
+
ingestionTimestamp: timestamp,
|
|
44694
44814
|
},
|
|
44695
44815
|
});
|
|
44696
44816
|
}
|
|
@@ -44824,7 +44944,7 @@ function mergeData$u(existingData, newData) {
|
|
|
44824
44944
|
};
|
|
44825
44945
|
}
|
|
44826
44946
|
function ingest$C(astNode, state) {
|
|
44827
|
-
const { path, data, luvio } = state;
|
|
44947
|
+
const { path, data, timestamp, luvio } = state;
|
|
44828
44948
|
const key = keyBuilder$I(luvio, path);
|
|
44829
44949
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
44830
44950
|
key,
|
|
@@ -44838,7 +44958,8 @@ function ingest$C(astNode, state) {
|
|
|
44838
44958
|
ttl: TTL$6,
|
|
44839
44959
|
namespace: keyPrefix,
|
|
44840
44960
|
representationName: "DateAggregate",
|
|
44841
|
-
version: VERSION$G
|
|
44961
|
+
version: VERSION$G,
|
|
44962
|
+
ingestionTimestamp: timestamp,
|
|
44842
44963
|
},
|
|
44843
44964
|
});
|
|
44844
44965
|
}
|
|
@@ -45205,7 +45326,7 @@ function mergeData$t(existingData, newData) {
|
|
|
45205
45326
|
};
|
|
45206
45327
|
}
|
|
45207
45328
|
function ingest$B(astNode, state) {
|
|
45208
|
-
const { path, data, luvio } = state;
|
|
45329
|
+
const { path, data, timestamp, luvio } = state;
|
|
45209
45330
|
const key = keyBuilder$H(luvio, path);
|
|
45210
45331
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45211
45332
|
key,
|
|
@@ -45219,7 +45340,8 @@ function ingest$B(astNode, state) {
|
|
|
45219
45340
|
ttl: TTL$6,
|
|
45220
45341
|
namespace: keyPrefix,
|
|
45221
45342
|
representationName: "DoubleAggregate",
|
|
45222
|
-
version: VERSION$F
|
|
45343
|
+
version: VERSION$F,
|
|
45344
|
+
ingestionTimestamp: timestamp,
|
|
45223
45345
|
},
|
|
45224
45346
|
});
|
|
45225
45347
|
}
|
|
@@ -45458,7 +45580,7 @@ function mergeData$s(existingData, newData) {
|
|
|
45458
45580
|
};
|
|
45459
45581
|
}
|
|
45460
45582
|
function ingest$A(astNode, state) {
|
|
45461
|
-
const { path, data, luvio } = state;
|
|
45583
|
+
const { path, data, timestamp, luvio } = state;
|
|
45462
45584
|
const key = keyBuilder$G(luvio, path);
|
|
45463
45585
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45464
45586
|
key,
|
|
@@ -45472,7 +45594,8 @@ function ingest$A(astNode, state) {
|
|
|
45472
45594
|
ttl: TTL$6,
|
|
45473
45595
|
namespace: keyPrefix,
|
|
45474
45596
|
representationName: "EmailAggregate",
|
|
45475
|
-
version: VERSION$E
|
|
45597
|
+
version: VERSION$E,
|
|
45598
|
+
ingestionTimestamp: timestamp,
|
|
45476
45599
|
},
|
|
45477
45600
|
});
|
|
45478
45601
|
}
|
|
@@ -45703,7 +45826,7 @@ function mergeData$r(existingData, newData) {
|
|
|
45703
45826
|
};
|
|
45704
45827
|
}
|
|
45705
45828
|
function ingest$z(astNode, state) {
|
|
45706
|
-
const { path, data, luvio } = state;
|
|
45829
|
+
const { path, data, timestamp, luvio } = state;
|
|
45707
45830
|
const key = keyBuilder$F(luvio, path);
|
|
45708
45831
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45709
45832
|
key,
|
|
@@ -45717,7 +45840,8 @@ function ingest$z(astNode, state) {
|
|
|
45717
45840
|
ttl: TTL$6,
|
|
45718
45841
|
namespace: keyPrefix,
|
|
45719
45842
|
representationName: "IDAggregate",
|
|
45720
|
-
version: VERSION$D
|
|
45843
|
+
version: VERSION$D,
|
|
45844
|
+
ingestionTimestamp: timestamp,
|
|
45721
45845
|
},
|
|
45722
45846
|
});
|
|
45723
45847
|
}
|
|
@@ -45948,7 +46072,7 @@ function mergeData$q(existingData, newData) {
|
|
|
45948
46072
|
};
|
|
45949
46073
|
}
|
|
45950
46074
|
function ingest$y(astNode, state) {
|
|
45951
|
-
const { path, data, luvio } = state;
|
|
46075
|
+
const { path, data, timestamp, luvio } = state;
|
|
45952
46076
|
const key = keyBuilder$E(luvio, path);
|
|
45953
46077
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
45954
46078
|
key,
|
|
@@ -45962,7 +46086,8 @@ function ingest$y(astNode, state) {
|
|
|
45962
46086
|
ttl: TTL$6,
|
|
45963
46087
|
namespace: keyPrefix,
|
|
45964
46088
|
representationName: "IntAggregate",
|
|
45965
|
-
version: VERSION$C
|
|
46089
|
+
version: VERSION$C,
|
|
46090
|
+
ingestionTimestamp: timestamp,
|
|
45966
46091
|
},
|
|
45967
46092
|
});
|
|
45968
46093
|
}
|
|
@@ -46221,7 +46346,7 @@ function mergeData$p(existingData, newData) {
|
|
|
46221
46346
|
};
|
|
46222
46347
|
}
|
|
46223
46348
|
function ingest$x(astNode, state) {
|
|
46224
|
-
const { path, data, luvio } = state;
|
|
46349
|
+
const { path, data, timestamp, luvio } = state;
|
|
46225
46350
|
const key = keyBuilder$D(luvio, path);
|
|
46226
46351
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46227
46352
|
key,
|
|
@@ -46235,7 +46360,8 @@ function ingest$x(astNode, state) {
|
|
|
46235
46360
|
ttl: TTL$6,
|
|
46236
46361
|
namespace: keyPrefix,
|
|
46237
46362
|
representationName: "LatitudeAggregate",
|
|
46238
|
-
version: VERSION$B
|
|
46363
|
+
version: VERSION$B,
|
|
46364
|
+
ingestionTimestamp: timestamp,
|
|
46239
46365
|
},
|
|
46240
46366
|
});
|
|
46241
46367
|
}
|
|
@@ -46477,7 +46603,7 @@ function mergeData$o(existingData, newData) {
|
|
|
46477
46603
|
};
|
|
46478
46604
|
}
|
|
46479
46605
|
function ingest$w(astNode, state) {
|
|
46480
|
-
const { path, data, luvio } = state;
|
|
46606
|
+
const { path, data, timestamp, luvio } = state;
|
|
46481
46607
|
const key = keyBuilder$C(luvio, path);
|
|
46482
46608
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46483
46609
|
key,
|
|
@@ -46491,7 +46617,8 @@ function ingest$w(astNode, state) {
|
|
|
46491
46617
|
ttl: TTL$6,
|
|
46492
46618
|
namespace: keyPrefix,
|
|
46493
46619
|
representationName: "LongitudeAggregate",
|
|
46494
|
-
version: VERSION$A
|
|
46620
|
+
version: VERSION$A,
|
|
46621
|
+
ingestionTimestamp: timestamp,
|
|
46495
46622
|
},
|
|
46496
46623
|
});
|
|
46497
46624
|
}
|
|
@@ -46733,7 +46860,7 @@ function mergeData$n(existingData, newData) {
|
|
|
46733
46860
|
};
|
|
46734
46861
|
}
|
|
46735
46862
|
function ingest$v(astNode, state) {
|
|
46736
|
-
const { path, data, luvio } = state;
|
|
46863
|
+
const { path, data, timestamp, luvio } = state;
|
|
46737
46864
|
const key = keyBuilder$B(luvio, path);
|
|
46738
46865
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
46739
46866
|
key,
|
|
@@ -46747,7 +46874,8 @@ function ingest$v(astNode, state) {
|
|
|
46747
46874
|
ttl: TTL$6,
|
|
46748
46875
|
namespace: keyPrefix,
|
|
46749
46876
|
representationName: "LongAggregate",
|
|
46750
|
-
version: VERSION$z
|
|
46877
|
+
version: VERSION$z,
|
|
46878
|
+
ingestionTimestamp: timestamp,
|
|
46751
46879
|
},
|
|
46752
46880
|
});
|
|
46753
46881
|
}
|
|
@@ -47006,7 +47134,7 @@ function mergeData$m(existingData, newData) {
|
|
|
47006
47134
|
};
|
|
47007
47135
|
}
|
|
47008
47136
|
function ingest$u(astNode, state) {
|
|
47009
|
-
const { path, data, luvio } = state;
|
|
47137
|
+
const { path, data, timestamp, luvio } = state;
|
|
47010
47138
|
const key = keyBuilder$A(luvio, path);
|
|
47011
47139
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47012
47140
|
key,
|
|
@@ -47020,7 +47148,8 @@ function ingest$u(astNode, state) {
|
|
|
47020
47148
|
ttl: TTL$6,
|
|
47021
47149
|
namespace: keyPrefix,
|
|
47022
47150
|
representationName: "PhoneNumberAggregate",
|
|
47023
|
-
version: VERSION$y
|
|
47151
|
+
version: VERSION$y,
|
|
47152
|
+
ingestionTimestamp: timestamp,
|
|
47024
47153
|
},
|
|
47025
47154
|
});
|
|
47026
47155
|
}
|
|
@@ -47251,7 +47380,7 @@ function mergeData$l(existingData, newData) {
|
|
|
47251
47380
|
};
|
|
47252
47381
|
}
|
|
47253
47382
|
function ingest$t(astNode, state) {
|
|
47254
|
-
const { path, data, luvio } = state;
|
|
47383
|
+
const { path, data, timestamp, luvio } = state;
|
|
47255
47384
|
const key = keyBuilder$z(luvio, path);
|
|
47256
47385
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47257
47386
|
key,
|
|
@@ -47265,7 +47394,8 @@ function ingest$t(astNode, state) {
|
|
|
47265
47394
|
ttl: TTL$6,
|
|
47266
47395
|
namespace: keyPrefix,
|
|
47267
47396
|
representationName: "PicklistAggregate",
|
|
47268
|
-
version: VERSION$x
|
|
47397
|
+
version: VERSION$x,
|
|
47398
|
+
ingestionTimestamp: timestamp,
|
|
47269
47399
|
},
|
|
47270
47400
|
});
|
|
47271
47401
|
}
|
|
@@ -47502,7 +47632,7 @@ function mergeData$k(existingData, newData) {
|
|
|
47502
47632
|
};
|
|
47503
47633
|
}
|
|
47504
47634
|
function ingest$s(astNode, state) {
|
|
47505
|
-
const { path, data, luvio } = state;
|
|
47635
|
+
const { path, data, timestamp, luvio } = state;
|
|
47506
47636
|
const key = keyBuilder$y(luvio, path);
|
|
47507
47637
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47508
47638
|
key,
|
|
@@ -47516,7 +47646,8 @@ function ingest$s(astNode, state) {
|
|
|
47516
47646
|
ttl: TTL$6,
|
|
47517
47647
|
namespace: keyPrefix,
|
|
47518
47648
|
representationName: "TextAreaAggregate",
|
|
47519
|
-
version: VERSION$w
|
|
47649
|
+
version: VERSION$w,
|
|
47650
|
+
ingestionTimestamp: timestamp,
|
|
47520
47651
|
},
|
|
47521
47652
|
});
|
|
47522
47653
|
}
|
|
@@ -47747,7 +47878,7 @@ function mergeData$j(existingData, newData) {
|
|
|
47747
47878
|
};
|
|
47748
47879
|
}
|
|
47749
47880
|
function ingest$r(astNode, state) {
|
|
47750
|
-
const { path, data, luvio } = state;
|
|
47881
|
+
const { path, data, timestamp, luvio } = state;
|
|
47751
47882
|
const key = keyBuilder$x(luvio, path);
|
|
47752
47883
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47753
47884
|
key,
|
|
@@ -47761,7 +47892,8 @@ function ingest$r(astNode, state) {
|
|
|
47761
47892
|
ttl: TTL$6,
|
|
47762
47893
|
namespace: keyPrefix,
|
|
47763
47894
|
representationName: "TimeAggregate",
|
|
47764
|
-
version: VERSION$v
|
|
47895
|
+
version: VERSION$v,
|
|
47896
|
+
ingestionTimestamp: timestamp,
|
|
47765
47897
|
},
|
|
47766
47898
|
});
|
|
47767
47899
|
}
|
|
@@ -47936,7 +48068,7 @@ function mergeData$i(existingData, newData) {
|
|
|
47936
48068
|
};
|
|
47937
48069
|
}
|
|
47938
48070
|
function ingest$q(astNode, state) {
|
|
47939
|
-
const { path, data, luvio } = state;
|
|
48071
|
+
const { path, data, timestamp, luvio } = state;
|
|
47940
48072
|
const key = keyBuilder$w(luvio, path);
|
|
47941
48073
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
47942
48074
|
key,
|
|
@@ -47950,7 +48082,8 @@ function ingest$q(astNode, state) {
|
|
|
47950
48082
|
ttl: TTL$6,
|
|
47951
48083
|
namespace: keyPrefix,
|
|
47952
48084
|
representationName: "UrlAggregate",
|
|
47953
|
-
version: VERSION$u
|
|
48085
|
+
version: VERSION$u,
|
|
48086
|
+
ingestionTimestamp: timestamp,
|
|
47954
48087
|
},
|
|
47955
48088
|
});
|
|
47956
48089
|
}
|
|
@@ -48304,7 +48437,7 @@ function mergeData$h(existingData, newData) {
|
|
|
48304
48437
|
};
|
|
48305
48438
|
}
|
|
48306
48439
|
function ingest$p(astNode, state) {
|
|
48307
|
-
const { path, data, luvio } = state;
|
|
48440
|
+
const { path, data, timestamp, luvio } = state;
|
|
48308
48441
|
const key = keyBuilder$v(luvio, path);
|
|
48309
48442
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48310
48443
|
key,
|
|
@@ -48318,7 +48451,8 @@ function ingest$p(astNode, state) {
|
|
|
48318
48451
|
ttl: TTL$6,
|
|
48319
48452
|
namespace: keyPrefix,
|
|
48320
48453
|
representationName: "RecordAggregate",
|
|
48321
|
-
version: VERSION$t
|
|
48454
|
+
version: VERSION$t,
|
|
48455
|
+
ingestionTimestamp: timestamp,
|
|
48322
48456
|
},
|
|
48323
48457
|
});
|
|
48324
48458
|
}
|
|
@@ -48672,7 +48806,7 @@ function mergeData$g(existingData, newData) {
|
|
|
48672
48806
|
};
|
|
48673
48807
|
}
|
|
48674
48808
|
function ingest$o(astNode, state) {
|
|
48675
|
-
const { path, data, luvio } = state;
|
|
48809
|
+
const { path, data, timestamp, luvio } = state;
|
|
48676
48810
|
const key = keyBuilder$u(luvio, path);
|
|
48677
48811
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48678
48812
|
key,
|
|
@@ -48686,7 +48820,8 @@ function ingest$o(astNode, state) {
|
|
|
48686
48820
|
ttl: TTL$6,
|
|
48687
48821
|
namespace: keyPrefix,
|
|
48688
48822
|
representationName: "RecordResult",
|
|
48689
|
-
version: VERSION$s
|
|
48823
|
+
version: VERSION$s,
|
|
48824
|
+
ingestionTimestamp: timestamp,
|
|
48690
48825
|
},
|
|
48691
48826
|
});
|
|
48692
48827
|
}
|
|
@@ -48834,7 +48969,7 @@ function mergeData$f(existingData, newData) {
|
|
|
48834
48969
|
};
|
|
48835
48970
|
}
|
|
48836
48971
|
function ingest$n(astNode, state) {
|
|
48837
|
-
const { path, data, luvio } = state;
|
|
48972
|
+
const { path, data, timestamp, luvio } = state;
|
|
48838
48973
|
const key = keyBuilder$t(luvio, path);
|
|
48839
48974
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
48840
48975
|
key,
|
|
@@ -48848,7 +48983,8 @@ function ingest$n(astNode, state) {
|
|
|
48848
48983
|
ttl: TTL$6,
|
|
48849
48984
|
namespace: keyPrefix,
|
|
48850
48985
|
representationName: "RecordAggregateEdge",
|
|
48851
|
-
version: VERSION$r
|
|
48986
|
+
version: VERSION$r,
|
|
48987
|
+
ingestionTimestamp: timestamp,
|
|
48852
48988
|
},
|
|
48853
48989
|
});
|
|
48854
48990
|
}
|
|
@@ -49057,7 +49193,7 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
|
|
|
49057
49193
|
}
|
|
49058
49194
|
}
|
|
49059
49195
|
function ingest$m(astNode, state) {
|
|
49060
|
-
const { path, data, luvio } = state;
|
|
49196
|
+
const { path, data, timestamp, luvio } = state;
|
|
49061
49197
|
const key = keyBuilder$s(luvio, path);
|
|
49062
49198
|
return ingestCursorConnectionType(astNode, state, {
|
|
49063
49199
|
key,
|
|
@@ -49073,7 +49209,8 @@ function ingest$m(astNode, state) {
|
|
|
49073
49209
|
ttl: TTL$6,
|
|
49074
49210
|
namespace: keyPrefix,
|
|
49075
49211
|
representationName: "RecordAggregateConnection",
|
|
49076
|
-
version: VERSION$q
|
|
49212
|
+
version: VERSION$q,
|
|
49213
|
+
ingestionTimestamp: timestamp,
|
|
49077
49214
|
},
|
|
49078
49215
|
});
|
|
49079
49216
|
}
|
|
@@ -49290,7 +49427,7 @@ function mergeData$d(existingData, newData) {
|
|
|
49290
49427
|
};
|
|
49291
49428
|
}
|
|
49292
49429
|
function ingest$l(astNode, state) {
|
|
49293
|
-
const { path, data, luvio } = state;
|
|
49430
|
+
const { path, data, timestamp, luvio } = state;
|
|
49294
49431
|
const key = keyBuilder$r(luvio, path);
|
|
49295
49432
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49296
49433
|
key,
|
|
@@ -49304,7 +49441,8 @@ function ingest$l(astNode, state) {
|
|
|
49304
49441
|
ttl: TTL$6,
|
|
49305
49442
|
namespace: keyPrefix,
|
|
49306
49443
|
representationName: "RecordQueryAggregate",
|
|
49307
|
-
version: VERSION$p
|
|
49444
|
+
version: VERSION$p,
|
|
49445
|
+
ingestionTimestamp: timestamp,
|
|
49308
49446
|
},
|
|
49309
49447
|
});
|
|
49310
49448
|
}
|
|
@@ -49434,7 +49572,7 @@ function mergeData$c(existingData, newData) {
|
|
|
49434
49572
|
};
|
|
49435
49573
|
}
|
|
49436
49574
|
function ingest$k(astNode, state) {
|
|
49437
|
-
const { path, data, luvio } = state;
|
|
49575
|
+
const { path, data, timestamp, luvio } = state;
|
|
49438
49576
|
const key = keyBuilder$q(luvio, path);
|
|
49439
49577
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49440
49578
|
key,
|
|
@@ -49448,7 +49586,8 @@ function ingest$k(astNode, state) {
|
|
|
49448
49586
|
ttl: TTL$6,
|
|
49449
49587
|
namespace: keyPrefix,
|
|
49450
49588
|
representationName: "ChildRelationship",
|
|
49451
|
-
version: VERSION$o
|
|
49589
|
+
version: VERSION$o,
|
|
49590
|
+
ingestionTimestamp: timestamp,
|
|
49452
49591
|
},
|
|
49453
49592
|
});
|
|
49454
49593
|
}
|
|
@@ -49626,7 +49765,7 @@ function mergeData$b(existingData, newData) {
|
|
|
49626
49765
|
};
|
|
49627
49766
|
}
|
|
49628
49767
|
function ingest$j(astNode, state) {
|
|
49629
|
-
const { path, data, luvio } = state;
|
|
49768
|
+
const { path, data, timestamp, luvio } = state;
|
|
49630
49769
|
const key = keyBuilder$p(luvio, path);
|
|
49631
49770
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49632
49771
|
key,
|
|
@@ -49640,7 +49779,8 @@ function ingest$j(astNode, state) {
|
|
|
49640
49779
|
ttl: TTL$6,
|
|
49641
49780
|
namespace: keyPrefix,
|
|
49642
49781
|
representationName: "DependentField",
|
|
49643
|
-
version: VERSION$n
|
|
49782
|
+
version: VERSION$n,
|
|
49783
|
+
ingestionTimestamp: timestamp,
|
|
49644
49784
|
},
|
|
49645
49785
|
});
|
|
49646
49786
|
}
|
|
@@ -49765,7 +49905,7 @@ function mergeData$a(existingData, newData) {
|
|
|
49765
49905
|
};
|
|
49766
49906
|
}
|
|
49767
49907
|
function ingest$i(astNode, state) {
|
|
49768
|
-
const { path, data, luvio } = state;
|
|
49908
|
+
const { path, data, timestamp, luvio } = state;
|
|
49769
49909
|
const key = keyBuilder$o(luvio, path);
|
|
49770
49910
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49771
49911
|
key,
|
|
@@ -49779,7 +49919,8 @@ function ingest$i(astNode, state) {
|
|
|
49779
49919
|
ttl: TTL$6,
|
|
49780
49920
|
namespace: keyPrefix,
|
|
49781
49921
|
representationName: "FilteredLookupInfo",
|
|
49782
|
-
version: VERSION$m
|
|
49922
|
+
version: VERSION$m,
|
|
49923
|
+
ingestionTimestamp: timestamp,
|
|
49783
49924
|
},
|
|
49784
49925
|
});
|
|
49785
49926
|
}
|
|
@@ -49919,7 +50060,7 @@ function mergeData$9(existingData, newData) {
|
|
|
49919
50060
|
};
|
|
49920
50061
|
}
|
|
49921
50062
|
function ingest$h(astNode, state) {
|
|
49922
|
-
const { path, data, luvio } = state;
|
|
50063
|
+
const { path, data, timestamp, luvio } = state;
|
|
49923
50064
|
const key = keyBuilder$n(luvio, path);
|
|
49924
50065
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
49925
50066
|
key,
|
|
@@ -49933,7 +50074,8 @@ function ingest$h(astNode, state) {
|
|
|
49933
50074
|
ttl: TTL$6,
|
|
49934
50075
|
namespace: keyPrefix,
|
|
49935
50076
|
representationName: "ReferenceToInfo",
|
|
49936
|
-
version: VERSION$l
|
|
50077
|
+
version: VERSION$l,
|
|
50078
|
+
ingestionTimestamp: timestamp,
|
|
49937
50079
|
},
|
|
49938
50080
|
});
|
|
49939
50081
|
}
|
|
@@ -50093,7 +50235,7 @@ function mergeData$8(existingData, newData) {
|
|
|
50093
50235
|
};
|
|
50094
50236
|
}
|
|
50095
50237
|
function ingest$g(astNode, state) {
|
|
50096
|
-
const { path, data, luvio } = state;
|
|
50238
|
+
const { path, data, timestamp, luvio } = state;
|
|
50097
50239
|
const key = keyBuilder$m(luvio, path);
|
|
50098
50240
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50099
50241
|
key,
|
|
@@ -50107,7 +50249,8 @@ function ingest$g(astNode, state) {
|
|
|
50107
50249
|
ttl: TTL$6,
|
|
50108
50250
|
namespace: keyPrefix,
|
|
50109
50251
|
representationName: "Field",
|
|
50110
|
-
version: VERSION$k
|
|
50252
|
+
version: VERSION$k,
|
|
50253
|
+
ingestionTimestamp: timestamp,
|
|
50111
50254
|
},
|
|
50112
50255
|
});
|
|
50113
50256
|
}
|
|
@@ -50485,7 +50628,7 @@ function mergeData$7(existingData, newData) {
|
|
|
50485
50628
|
};
|
|
50486
50629
|
}
|
|
50487
50630
|
function ingest$f(astNode, state) {
|
|
50488
|
-
const { path, data, luvio } = state;
|
|
50631
|
+
const { path, data, timestamp, luvio } = state;
|
|
50489
50632
|
const key = keyBuilder$l(luvio, path);
|
|
50490
50633
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50491
50634
|
key,
|
|
@@ -50499,7 +50642,8 @@ function ingest$f(astNode, state) {
|
|
|
50499
50642
|
ttl: TTL$6,
|
|
50500
50643
|
namespace: keyPrefix,
|
|
50501
50644
|
representationName: "RecordTypeInfo",
|
|
50502
|
-
version: VERSION$j
|
|
50645
|
+
version: VERSION$j,
|
|
50646
|
+
ingestionTimestamp: timestamp,
|
|
50503
50647
|
},
|
|
50504
50648
|
});
|
|
50505
50649
|
}
|
|
@@ -50660,7 +50804,7 @@ function mergeData$6(existingData, newData) {
|
|
|
50660
50804
|
};
|
|
50661
50805
|
}
|
|
50662
50806
|
function ingest$e(astNode, state) {
|
|
50663
|
-
const { path, data, luvio } = state;
|
|
50807
|
+
const { path, data, timestamp, luvio } = state;
|
|
50664
50808
|
const key = keyBuilder$k(luvio, path);
|
|
50665
50809
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50666
50810
|
key,
|
|
@@ -50674,7 +50818,8 @@ function ingest$e(astNode, state) {
|
|
|
50674
50818
|
ttl: TTL$6,
|
|
50675
50819
|
namespace: keyPrefix,
|
|
50676
50820
|
representationName: "ThemeInfo",
|
|
50677
|
-
version: VERSION$i
|
|
50821
|
+
version: VERSION$i,
|
|
50822
|
+
ingestionTimestamp: timestamp,
|
|
50678
50823
|
},
|
|
50679
50824
|
});
|
|
50680
50825
|
}
|
|
@@ -50800,7 +50945,7 @@ function mergeData$5(existingData, newData) {
|
|
|
50800
50945
|
};
|
|
50801
50946
|
}
|
|
50802
50947
|
function ingest$d(astNode, state) {
|
|
50803
|
-
const { path, data, luvio } = state;
|
|
50948
|
+
const { path, data, timestamp, luvio } = state;
|
|
50804
50949
|
const key = keyBuilder$j(luvio, path);
|
|
50805
50950
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
50806
50951
|
key,
|
|
@@ -50814,7 +50959,8 @@ function ingest$d(astNode, state) {
|
|
|
50814
50959
|
ttl: TTL$8,
|
|
50815
50960
|
namespace: keyPrefix,
|
|
50816
50961
|
representationName: "ObjectInfo",
|
|
50817
|
-
version: VERSION$h
|
|
50962
|
+
version: VERSION$h,
|
|
50963
|
+
ingestionTimestamp: timestamp,
|
|
50818
50964
|
},
|
|
50819
50965
|
});
|
|
50820
50966
|
}
|
|
@@ -51204,7 +51350,7 @@ function mergeData$4(existingData, newData) {
|
|
|
51204
51350
|
};
|
|
51205
51351
|
}
|
|
51206
51352
|
function ingest$c(astNode, state) {
|
|
51207
|
-
const { path, data, luvio } = state;
|
|
51353
|
+
const { path, data, timestamp, luvio } = state;
|
|
51208
51354
|
const key = keyBuilder$i(luvio, path);
|
|
51209
51355
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51210
51356
|
key,
|
|
@@ -51218,7 +51364,8 @@ function ingest$c(astNode, state) {
|
|
|
51218
51364
|
ttl: TTL$6,
|
|
51219
51365
|
namespace: keyPrefix,
|
|
51220
51366
|
representationName: "ListColumn",
|
|
51221
|
-
version: VERSION$g
|
|
51367
|
+
version: VERSION$g,
|
|
51368
|
+
ingestionTimestamp: timestamp,
|
|
51222
51369
|
},
|
|
51223
51370
|
});
|
|
51224
51371
|
}
|
|
@@ -51364,7 +51511,7 @@ function mergeData$3(existingData, newData) {
|
|
|
51364
51511
|
};
|
|
51365
51512
|
}
|
|
51366
51513
|
function ingest$b(astNode, state) {
|
|
51367
|
-
const { path, data, luvio } = state;
|
|
51514
|
+
const { path, data, timestamp, luvio } = state;
|
|
51368
51515
|
const key = keyBuilder$h(luvio, path);
|
|
51369
51516
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51370
51517
|
key,
|
|
@@ -51378,7 +51525,8 @@ function ingest$b(astNode, state) {
|
|
|
51378
51525
|
ttl: TTL$6,
|
|
51379
51526
|
namespace: keyPrefix,
|
|
51380
51527
|
representationName: "ListOrder",
|
|
51381
|
-
version: VERSION$f
|
|
51528
|
+
version: VERSION$f,
|
|
51529
|
+
ingestionTimestamp: timestamp,
|
|
51382
51530
|
},
|
|
51383
51531
|
});
|
|
51384
51532
|
}
|
|
@@ -51513,7 +51661,7 @@ function mergeData$2(existingData, newData) {
|
|
|
51513
51661
|
};
|
|
51514
51662
|
}
|
|
51515
51663
|
function ingest$a(astNode, state) {
|
|
51516
|
-
const { path, data, luvio } = state;
|
|
51664
|
+
const { path, data, timestamp, luvio } = state;
|
|
51517
51665
|
const key = keyBuilder$g(luvio, path);
|
|
51518
51666
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51519
51667
|
key,
|
|
@@ -51527,7 +51675,8 @@ function ingest$a(astNode, state) {
|
|
|
51527
51675
|
ttl: TTL$7,
|
|
51528
51676
|
namespace: keyPrefix,
|
|
51529
51677
|
representationName: "RelatedListInfo",
|
|
51530
|
-
version: VERSION$e
|
|
51678
|
+
version: VERSION$e,
|
|
51679
|
+
ingestionTimestamp: timestamp,
|
|
51531
51680
|
},
|
|
51532
51681
|
});
|
|
51533
51682
|
}
|
|
@@ -51749,7 +51898,7 @@ function mergeData$1(existingData, newData) {
|
|
|
51749
51898
|
};
|
|
51750
51899
|
}
|
|
51751
51900
|
function ingest$9(astNode, state) {
|
|
51752
|
-
const { path, data, luvio } = state;
|
|
51901
|
+
const { path, data, timestamp, luvio } = state;
|
|
51753
51902
|
const key = keyBuilder$f(luvio, path);
|
|
51754
51903
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51755
51904
|
key,
|
|
@@ -51763,7 +51912,8 @@ function ingest$9(astNode, state) {
|
|
|
51763
51912
|
ttl: TTL$6,
|
|
51764
51913
|
namespace: keyPrefix,
|
|
51765
51914
|
representationName: "UIAPI",
|
|
51766
|
-
version: VERSION$d
|
|
51915
|
+
version: VERSION$d,
|
|
51916
|
+
ingestionTimestamp: timestamp,
|
|
51767
51917
|
},
|
|
51768
51918
|
});
|
|
51769
51919
|
}
|
|
@@ -51987,7 +52137,7 @@ function mergeData(existingData, newData) {
|
|
|
51987
52137
|
};
|
|
51988
52138
|
}
|
|
51989
52139
|
function ingest$8(astNode, state) {
|
|
51990
|
-
const { path, data, luvio } = state;
|
|
52140
|
+
const { path, data, timestamp, luvio } = state;
|
|
51991
52141
|
const key = keyBuilder$e(luvio, astNode, state.variables, state.fragments);
|
|
51992
52142
|
return ingestNonCursorConnectionType(astNode, state, {
|
|
51993
52143
|
key,
|
|
@@ -52001,7 +52151,8 @@ function ingest$8(astNode, state) {
|
|
|
52001
52151
|
ttl: TTL$6,
|
|
52002
52152
|
namespace: keyPrefix,
|
|
52003
52153
|
representationName: "Query",
|
|
52004
|
-
version: VERSION$c
|
|
52154
|
+
version: VERSION$c,
|
|
52155
|
+
ingestionTimestamp: timestamp,
|
|
52005
52156
|
},
|
|
52006
52157
|
});
|
|
52007
52158
|
}
|
|
@@ -55773,7 +55924,7 @@ function validate$a(obj, path = 'RecordCreateDefaultRecordRepresentation') {
|
|
|
55773
55924
|
const path_recordTypeInfo = path + '.recordTypeInfo';
|
|
55774
55925
|
let obj_recordTypeInfo_union0 = null;
|
|
55775
55926
|
const obj_recordTypeInfo_union0_error = (() => {
|
|
55776
|
-
const referencepath_recordTypeInfoValidationError = validate$
|
|
55927
|
+
const referencepath_recordTypeInfoValidationError = validate$1R(obj_recordTypeInfo, path_recordTypeInfo);
|
|
55777
55928
|
if (referencepath_recordTypeInfoValidationError !== null) {
|
|
55778
55929
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfo + '")\n';
|
|
55779
55930
|
message += referencepath_recordTypeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|