@salesforce/lds-adapters-uiapi 1.343.0 → 1.345.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/types/src/__performance__/utils/runMeasurement.d.ts +8 -2
- package/dist/es/es2018/types/src/__performance__/utils/sqliteDurableStore.d.ts +6 -8
- package/dist/es/es2018/types/src/generated/types/ListObjectColumnRepresentation.d.ts +11 -1
- package/dist/es/es2018/types/src/generated/types/ListObjectQuickFilterOverridesRepresentation.d.ts +35 -0
- package/dist/es/es2018/uiapi-records-service.js +830 -635
- package/package.json +6 -7
- package/sfdc/graphqlAdapters.js +13 -9
- package/sfdc/index.js +799 -608
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +24 -0
|
@@ -716,8 +716,8 @@ function assignMetadataLink(entry, metadataKey) {
|
|
|
716
716
|
entry['__metadata'] = createLink$1(metadataKey);
|
|
717
717
|
}
|
|
718
718
|
|
|
719
|
-
const VERSION$
|
|
720
|
-
function validate$
|
|
719
|
+
const VERSION$2V = "623aa9ce3a11031e35faf5671a41746e";
|
|
720
|
+
function validate$2f(obj, path = 'ListFilterByInfoRepresentation') {
|
|
721
721
|
const v_error = (() => {
|
|
722
722
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
723
723
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -752,10 +752,10 @@ function validate$2e(obj, path = 'ListFilterByInfoRepresentation') {
|
|
|
752
752
|
})();
|
|
753
753
|
return v_error === undefined ? null : v_error;
|
|
754
754
|
}
|
|
755
|
-
const select$
|
|
755
|
+
const select$3A = function ListFilterByInfoRepresentationSelect() {
|
|
756
756
|
return {
|
|
757
757
|
kind: 'Fragment',
|
|
758
|
-
version: VERSION$
|
|
758
|
+
version: VERSION$2V,
|
|
759
759
|
private: [],
|
|
760
760
|
selections: [
|
|
761
761
|
{
|
|
@@ -779,8 +779,8 @@ const select$3z = function ListFilterByInfoRepresentationSelect() {
|
|
|
779
779
|
};
|
|
780
780
|
};
|
|
781
781
|
|
|
782
|
-
const VERSION$
|
|
783
|
-
function validate$
|
|
782
|
+
const VERSION$2U = "f98dc7dec10408a9648ef8e5b37002a3";
|
|
783
|
+
function validate$2e(obj, path = 'ListInlineEditDetailsRepresentation') {
|
|
784
784
|
const v_error = (() => {
|
|
785
785
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
786
786
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -840,10 +840,10 @@ function validate$2d(obj, path = 'ListInlineEditDetailsRepresentation') {
|
|
|
840
840
|
})();
|
|
841
841
|
return v_error === undefined ? null : v_error;
|
|
842
842
|
}
|
|
843
|
-
const select$
|
|
843
|
+
const select$3z = function ListInlineEditDetailsRepresentationSelect() {
|
|
844
844
|
return {
|
|
845
845
|
kind: 'Fragment',
|
|
846
|
-
version: VERSION$
|
|
846
|
+
version: VERSION$2U,
|
|
847
847
|
private: [],
|
|
848
848
|
selections: [
|
|
849
849
|
{
|
|
@@ -858,8 +858,8 @@ const select$3y = function ListInlineEditDetailsRepresentationSelect() {
|
|
|
858
858
|
};
|
|
859
859
|
};
|
|
860
860
|
|
|
861
|
-
const VERSION$
|
|
862
|
-
function validate$
|
|
861
|
+
const VERSION$2T = "76042ff4af603b2ac0ec69fa0bd12046";
|
|
862
|
+
function validate$2d(obj, path = 'ListReferenceRepresentation') {
|
|
863
863
|
const v_error = (() => {
|
|
864
864
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
865
865
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -929,10 +929,10 @@ function validate$2c(obj, path = 'ListReferenceRepresentation') {
|
|
|
929
929
|
})();
|
|
930
930
|
return v_error === undefined ? null : v_error;
|
|
931
931
|
}
|
|
932
|
-
const select$
|
|
932
|
+
const select$3y = function ListReferenceRepresentationSelect() {
|
|
933
933
|
return {
|
|
934
934
|
kind: 'Fragment',
|
|
935
|
-
version: VERSION$
|
|
935
|
+
version: VERSION$2T,
|
|
936
936
|
private: [],
|
|
937
937
|
selections: [
|
|
938
938
|
{
|
|
@@ -954,7 +954,7 @@ const select$3x = function ListReferenceRepresentationSelect() {
|
|
|
954
954
|
]
|
|
955
955
|
};
|
|
956
956
|
};
|
|
957
|
-
function equals$
|
|
957
|
+
function equals$1g(existing, incoming) {
|
|
958
958
|
const existing_objectApiName = existing.objectApiName;
|
|
959
959
|
const incoming_objectApiName = incoming.objectApiName;
|
|
960
960
|
if (!(existing_objectApiName === incoming_objectApiName)) {
|
|
@@ -978,8 +978,8 @@ function equals$1f(existing, incoming) {
|
|
|
978
978
|
return true;
|
|
979
979
|
}
|
|
980
980
|
|
|
981
|
-
const VERSION$
|
|
982
|
-
function validate$
|
|
981
|
+
const VERSION$2S = "f1519bef57e70ab7c5ef160dc5ff0c47";
|
|
982
|
+
function validate$2c(obj, path = 'ListInfoShareRepresentation') {
|
|
983
983
|
const v_error = (() => {
|
|
984
984
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
985
985
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -997,10 +997,10 @@ function validate$2b(obj, path = 'ListInfoShareRepresentation') {
|
|
|
997
997
|
})();
|
|
998
998
|
return v_error === undefined ? null : v_error;
|
|
999
999
|
}
|
|
1000
|
-
const select$
|
|
1000
|
+
const select$3x = function ListInfoShareRepresentationSelect() {
|
|
1001
1001
|
return {
|
|
1002
1002
|
kind: 'Fragment',
|
|
1003
|
-
version: VERSION$
|
|
1003
|
+
version: VERSION$2S,
|
|
1004
1004
|
private: [],
|
|
1005
1005
|
selections: [
|
|
1006
1006
|
{
|
|
@@ -1015,8 +1015,8 @@ const select$3w = function ListInfoShareRepresentationSelect() {
|
|
|
1015
1015
|
};
|
|
1016
1016
|
};
|
|
1017
1017
|
|
|
1018
|
-
const VERSION$
|
|
1019
|
-
function validate$
|
|
1018
|
+
const VERSION$2R = "561657f32721ec1dac1601575b029640";
|
|
1019
|
+
function validate$2b(obj, path = 'ListInfoShareCategoryRepresentation') {
|
|
1020
1020
|
const v_error = (() => {
|
|
1021
1021
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1022
1022
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1034,7 +1034,7 @@ function validate$2a(obj, path = 'ListInfoShareCategoryRepresentation') {
|
|
|
1034
1034
|
for (let i = 0; i < obj_shares.length; i++) {
|
|
1035
1035
|
const obj_shares_item = obj_shares[i];
|
|
1036
1036
|
const path_shares_item = path_shares + '[' + i + ']';
|
|
1037
|
-
const referencepath_shares_itemValidationError = validate$
|
|
1037
|
+
const referencepath_shares_itemValidationError = validate$2c(obj_shares_item, path_shares_item);
|
|
1038
1038
|
if (referencepath_shares_itemValidationError !== null) {
|
|
1039
1039
|
let message = 'Object doesn\'t match ListInfoShareRepresentation (at "' + path_shares_item + '")\n';
|
|
1040
1040
|
message += referencepath_shares_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1044,11 +1044,11 @@ function validate$2a(obj, path = 'ListInfoShareCategoryRepresentation') {
|
|
|
1044
1044
|
})();
|
|
1045
1045
|
return v_error === undefined ? null : v_error;
|
|
1046
1046
|
}
|
|
1047
|
-
const select$
|
|
1048
|
-
const { selections: ListInfoShareRepresentation__selections, opaque: ListInfoShareRepresentation__opaque, } = select$
|
|
1047
|
+
const select$3w = function ListInfoShareCategoryRepresentationSelect() {
|
|
1048
|
+
const { selections: ListInfoShareRepresentation__selections, opaque: ListInfoShareRepresentation__opaque, } = select$3x();
|
|
1049
1049
|
return {
|
|
1050
1050
|
kind: 'Fragment',
|
|
1051
|
-
version: VERSION$
|
|
1051
|
+
version: VERSION$2R,
|
|
1052
1052
|
private: [],
|
|
1053
1053
|
selections: [
|
|
1054
1054
|
{
|
|
@@ -1065,8 +1065,8 @@ const select$3v = function ListInfoShareCategoryRepresentationSelect() {
|
|
|
1065
1065
|
};
|
|
1066
1066
|
};
|
|
1067
1067
|
|
|
1068
|
-
const VERSION$
|
|
1069
|
-
function validate$
|
|
1068
|
+
const VERSION$2Q = "32def9b631252c12b91a8209c1f49f5a";
|
|
1069
|
+
function validate$2a(obj, path = 'ListOrderByInfoRepresentation') {
|
|
1070
1070
|
const v_error = (() => {
|
|
1071
1071
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1072
1072
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1110,10 +1110,10 @@ function validate$29(obj, path = 'ListOrderByInfoRepresentation') {
|
|
|
1110
1110
|
})();
|
|
1111
1111
|
return v_error === undefined ? null : v_error;
|
|
1112
1112
|
}
|
|
1113
|
-
const select$
|
|
1113
|
+
const select$3v = function ListOrderByInfoRepresentationSelect() {
|
|
1114
1114
|
return {
|
|
1115
1115
|
kind: 'Fragment',
|
|
1116
|
-
version: VERSION$
|
|
1116
|
+
version: VERSION$2Q,
|
|
1117
1117
|
private: [],
|
|
1118
1118
|
selections: [
|
|
1119
1119
|
{
|
|
@@ -1131,7 +1131,7 @@ const select$3u = function ListOrderByInfoRepresentationSelect() {
|
|
|
1131
1131
|
]
|
|
1132
1132
|
};
|
|
1133
1133
|
};
|
|
1134
|
-
function equals$
|
|
1134
|
+
function equals$1f(existing, incoming) {
|
|
1135
1135
|
const existing_isAscending = existing.isAscending;
|
|
1136
1136
|
const incoming_isAscending = incoming.isAscending;
|
|
1137
1137
|
if (!(existing_isAscending === incoming_isAscending)) {
|
|
@@ -1150,8 +1150,8 @@ function equals$1e(existing, incoming) {
|
|
|
1150
1150
|
return true;
|
|
1151
1151
|
}
|
|
1152
1152
|
|
|
1153
|
-
const VERSION$
|
|
1154
|
-
function validate$
|
|
1153
|
+
const VERSION$2P = "2634258f216db34315c06d759a35676d";
|
|
1154
|
+
function validate$29(obj, path = 'ListScopeEntityRepresentation') {
|
|
1155
1155
|
const v_error = (() => {
|
|
1156
1156
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1157
1157
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1169,10 +1169,10 @@ function validate$28(obj, path = 'ListScopeEntityRepresentation') {
|
|
|
1169
1169
|
})();
|
|
1170
1170
|
return v_error === undefined ? null : v_error;
|
|
1171
1171
|
}
|
|
1172
|
-
const select$
|
|
1172
|
+
const select$3u = function ListScopeEntityRepresentationSelect() {
|
|
1173
1173
|
return {
|
|
1174
1174
|
kind: 'Fragment',
|
|
1175
|
-
version: VERSION$
|
|
1175
|
+
version: VERSION$2P,
|
|
1176
1176
|
private: [],
|
|
1177
1177
|
selections: [
|
|
1178
1178
|
{
|
|
@@ -1187,8 +1187,8 @@ const select$3t = function ListScopeEntityRepresentationSelect() {
|
|
|
1187
1187
|
};
|
|
1188
1188
|
};
|
|
1189
1189
|
|
|
1190
|
-
const VERSION$
|
|
1191
|
-
function validate$
|
|
1190
|
+
const VERSION$2O = "3b85c5a08d50ce328481b9f8ab56127b";
|
|
1191
|
+
function validate$28(obj, path = 'ListScopeRelatedEntityRepresentation') {
|
|
1192
1192
|
const v_error = (() => {
|
|
1193
1193
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1194
1194
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1211,10 +1211,10 @@ function validate$27(obj, path = 'ListScopeRelatedEntityRepresentation') {
|
|
|
1211
1211
|
})();
|
|
1212
1212
|
return v_error === undefined ? null : v_error;
|
|
1213
1213
|
}
|
|
1214
|
-
const select$
|
|
1214
|
+
const select$3t = function ListScopeRelatedEntityRepresentationSelect() {
|
|
1215
1215
|
return {
|
|
1216
1216
|
kind: 'Fragment',
|
|
1217
|
-
version: VERSION$
|
|
1217
|
+
version: VERSION$2O,
|
|
1218
1218
|
private: [],
|
|
1219
1219
|
selections: [
|
|
1220
1220
|
{
|
|
@@ -1233,8 +1233,8 @@ const select$3s = function ListScopeRelatedEntityRepresentationSelect() {
|
|
|
1233
1233
|
};
|
|
1234
1234
|
};
|
|
1235
1235
|
|
|
1236
|
-
const VERSION$
|
|
1237
|
-
function validate$
|
|
1236
|
+
const VERSION$2N = "2fe9814e7124b47f59da585483c1b3f9";
|
|
1237
|
+
function validate$27(obj, path = 'ListScopeRepresentation') {
|
|
1238
1238
|
const v_error = (() => {
|
|
1239
1239
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1240
1240
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1248,7 +1248,7 @@ function validate$26(obj, path = 'ListScopeRepresentation') {
|
|
|
1248
1248
|
const path_entity = path + '.entity';
|
|
1249
1249
|
let obj_entity_union0 = null;
|
|
1250
1250
|
const obj_entity_union0_error = (() => {
|
|
1251
|
-
const referencepath_entityValidationError = validate$
|
|
1251
|
+
const referencepath_entityValidationError = validate$29(obj_entity, path_entity);
|
|
1252
1252
|
if (referencepath_entityValidationError !== null) {
|
|
1253
1253
|
let message = 'Object doesn\'t match ListScopeEntityRepresentation (at "' + path_entity + '")\n';
|
|
1254
1254
|
message += referencepath_entityValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1303,7 +1303,7 @@ function validate$26(obj, path = 'ListScopeRepresentation') {
|
|
|
1303
1303
|
const path_relatedEntity = path + '.relatedEntity';
|
|
1304
1304
|
let obj_relatedEntity_union0 = null;
|
|
1305
1305
|
const obj_relatedEntity_union0_error = (() => {
|
|
1306
|
-
const referencepath_relatedEntityValidationError = validate$
|
|
1306
|
+
const referencepath_relatedEntityValidationError = validate$28(obj_relatedEntity, path_relatedEntity);
|
|
1307
1307
|
if (referencepath_relatedEntityValidationError !== null) {
|
|
1308
1308
|
let message = 'Object doesn\'t match ListScopeRelatedEntityRepresentation (at "' + path_relatedEntity + '")\n';
|
|
1309
1309
|
message += referencepath_relatedEntityValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1331,12 +1331,12 @@ function validate$26(obj, path = 'ListScopeRepresentation') {
|
|
|
1331
1331
|
})();
|
|
1332
1332
|
return v_error === undefined ? null : v_error;
|
|
1333
1333
|
}
|
|
1334
|
-
const select$
|
|
1335
|
-
const { selections: ListScopeEntityRepresentation__selections, opaque: ListScopeEntityRepresentation__opaque, } = select$
|
|
1336
|
-
const { selections: ListScopeRelatedEntityRepresentation__selections, opaque: ListScopeRelatedEntityRepresentation__opaque, } = select$
|
|
1334
|
+
const select$3s = function ListScopeRepresentationSelect() {
|
|
1335
|
+
const { selections: ListScopeEntityRepresentation__selections, opaque: ListScopeEntityRepresentation__opaque, } = select$3u();
|
|
1336
|
+
const { selections: ListScopeRelatedEntityRepresentation__selections, opaque: ListScopeRelatedEntityRepresentation__opaque, } = select$3t();
|
|
1337
1337
|
return {
|
|
1338
1338
|
kind: 'Fragment',
|
|
1339
|
-
version: VERSION$
|
|
1339
|
+
version: VERSION$2N,
|
|
1340
1340
|
private: [],
|
|
1341
1341
|
selections: [
|
|
1342
1342
|
{
|
|
@@ -1363,8 +1363,8 @@ const select$3r = function ListScopeRepresentationSelect() {
|
|
|
1363
1363
|
};
|
|
1364
1364
|
};
|
|
1365
1365
|
|
|
1366
|
-
const VERSION$
|
|
1367
|
-
function validate$
|
|
1366
|
+
const VERSION$2M = "6506134f4d72fdfa349fe60ef1af2413";
|
|
1367
|
+
function validate$26(obj, path = 'ListUserPreferenceRepresentation') {
|
|
1368
1368
|
const v_error = (() => {
|
|
1369
1369
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1370
1370
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1400,10 +1400,10 @@ function validate$25(obj, path = 'ListUserPreferenceRepresentation') {
|
|
|
1400
1400
|
})();
|
|
1401
1401
|
return v_error === undefined ? null : v_error;
|
|
1402
1402
|
}
|
|
1403
|
-
const select$
|
|
1403
|
+
const select$3r = function ListUserPreferenceRepresentationSelect() {
|
|
1404
1404
|
return {
|
|
1405
1405
|
kind: 'Fragment',
|
|
1406
|
-
version: VERSION$
|
|
1406
|
+
version: VERSION$2M,
|
|
1407
1407
|
private: [],
|
|
1408
1408
|
selections: [
|
|
1409
1409
|
{
|
|
@@ -1420,7 +1420,7 @@ const select$3q = function ListUserPreferenceRepresentationSelect() {
|
|
|
1420
1420
|
};
|
|
1421
1421
|
};
|
|
1422
1422
|
|
|
1423
|
-
function validate$
|
|
1423
|
+
function validate$25(obj, path = 'ListColumnInlineEditAttributesRepresentation') {
|
|
1424
1424
|
const v_error = (() => {
|
|
1425
1425
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1426
1426
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1439,7 +1439,7 @@ function validate$24(obj, path = 'ListColumnInlineEditAttributesRepresentation')
|
|
|
1439
1439
|
return v_error === undefined ? null : v_error;
|
|
1440
1440
|
}
|
|
1441
1441
|
|
|
1442
|
-
function validate$
|
|
1442
|
+
function validate$24(obj, path = 'ListColumnInlineEditAttributesRepresentationWrapper') {
|
|
1443
1443
|
const v_error = (() => {
|
|
1444
1444
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1445
1445
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1449,7 +1449,7 @@ function validate$23(obj, path = 'ListColumnInlineEditAttributesRepresentationWr
|
|
|
1449
1449
|
const key = obj_keys[i];
|
|
1450
1450
|
const obj_prop = obj[key];
|
|
1451
1451
|
const path_prop = path + '["' + key + '"]';
|
|
1452
|
-
const referencepath_propValidationError = validate$
|
|
1452
|
+
const referencepath_propValidationError = validate$25(obj_prop, path_prop);
|
|
1453
1453
|
if (referencepath_propValidationError !== null) {
|
|
1454
1454
|
let message = 'Object doesn\'t match ListColumnInlineEditAttributesRepresentation (at "' + path_prop + '")\n';
|
|
1455
1455
|
message += referencepath_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1460,8 +1460,8 @@ function validate$23(obj, path = 'ListColumnInlineEditAttributesRepresentationWr
|
|
|
1460
1460
|
return v_error === undefined ? null : v_error;
|
|
1461
1461
|
}
|
|
1462
1462
|
|
|
1463
|
-
const VERSION$
|
|
1464
|
-
function validate$
|
|
1463
|
+
const VERSION$2L = "64e2cac6d374ad92f491a9f8a952c6c3";
|
|
1464
|
+
function validate$23(obj, path = 'ListColumnRepresentation') {
|
|
1465
1465
|
const v_error = (() => {
|
|
1466
1466
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1467
1467
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1475,7 +1475,7 @@ function validate$22(obj, path = 'ListColumnRepresentation') {
|
|
|
1475
1475
|
const path_inlineEditAttributes = path + '.inlineEditAttributes';
|
|
1476
1476
|
let obj_inlineEditAttributes_union0 = null;
|
|
1477
1477
|
const obj_inlineEditAttributes_union0_error = (() => {
|
|
1478
|
-
const referencepath_inlineEditAttributesValidationError = validate$
|
|
1478
|
+
const referencepath_inlineEditAttributesValidationError = validate$24(obj_inlineEditAttributes, path_inlineEditAttributes);
|
|
1479
1479
|
if (referencepath_inlineEditAttributesValidationError !== null) {
|
|
1480
1480
|
let message = 'Object doesn\'t match ListColumnInlineEditAttributesRepresentationWrapper (at "' + path_inlineEditAttributes + '")\n';
|
|
1481
1481
|
message += referencepath_inlineEditAttributesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1548,15 +1548,15 @@ const RepresentationType$12 = 'ListColumnRepresentation';
|
|
|
1548
1548
|
function normalize$W(input, existing, path, luvio, store, timestamp) {
|
|
1549
1549
|
return input;
|
|
1550
1550
|
}
|
|
1551
|
-
const select$
|
|
1551
|
+
const select$3q = function ListColumnRepresentationSelect() {
|
|
1552
1552
|
return {
|
|
1553
1553
|
kind: 'Fragment',
|
|
1554
|
-
version: VERSION$
|
|
1554
|
+
version: VERSION$2L,
|
|
1555
1555
|
private: [],
|
|
1556
1556
|
opaque: true
|
|
1557
1557
|
};
|
|
1558
1558
|
};
|
|
1559
|
-
function equals$
|
|
1559
|
+
function equals$1e(existing, incoming) {
|
|
1560
1560
|
if (JSONStringify(incoming) !== JSONStringify(existing)) {
|
|
1561
1561
|
return false;
|
|
1562
1562
|
}
|
|
@@ -1564,14 +1564,14 @@ function equals$1d(existing, incoming) {
|
|
|
1564
1564
|
}
|
|
1565
1565
|
const ingest$2g = function ListColumnRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1566
1566
|
if (process.env.NODE_ENV !== 'production') {
|
|
1567
|
-
const validateError = validate$
|
|
1567
|
+
const validateError = validate$23(input);
|
|
1568
1568
|
if (validateError !== null) {
|
|
1569
1569
|
throw validateError;
|
|
1570
1570
|
}
|
|
1571
1571
|
}
|
|
1572
1572
|
const key = path.fullPath;
|
|
1573
1573
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
1574
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$W, "UiApi", VERSION$
|
|
1574
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$W, "UiApi", VERSION$2L, RepresentationType$12, equals$1e);
|
|
1575
1575
|
return createLink$1(key);
|
|
1576
1576
|
};
|
|
1577
1577
|
function getTypeCacheKeys$2k(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -1596,8 +1596,8 @@ const keyBuilderFromType$F = function ListInfoRepresentationKeyBuilderFromType(l
|
|
|
1596
1596
|
};
|
|
1597
1597
|
|
|
1598
1598
|
const TTL$H = 900000;
|
|
1599
|
-
const VERSION$
|
|
1600
|
-
function validate$
|
|
1599
|
+
const VERSION$2K = "5adf17d38be03c0f71b1c52485b377a6";
|
|
1600
|
+
function validate$22(obj, path = 'ListInfoRepresentation') {
|
|
1601
1601
|
const v_error = (() => {
|
|
1602
1602
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
1603
1603
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -1668,7 +1668,7 @@ function validate$21(obj, path = 'ListInfoRepresentation') {
|
|
|
1668
1668
|
for (let i = 0; i < obj_filteredByInfo.length; i++) {
|
|
1669
1669
|
const obj_filteredByInfo_item = obj_filteredByInfo[i];
|
|
1670
1670
|
const path_filteredByInfo_item = path_filteredByInfo + '[' + i + ']';
|
|
1671
|
-
const referencepath_filteredByInfo_itemValidationError = validate$
|
|
1671
|
+
const referencepath_filteredByInfo_itemValidationError = validate$2f(obj_filteredByInfo_item, path_filteredByInfo_item);
|
|
1672
1672
|
if (referencepath_filteredByInfo_itemValidationError !== null) {
|
|
1673
1673
|
let message = 'Object doesn\'t match ListFilterByInfoRepresentation (at "' + path_filteredByInfo_item + '")\n';
|
|
1674
1674
|
message += referencepath_filteredByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1684,7 +1684,7 @@ function validate$21(obj, path = 'ListInfoRepresentation') {
|
|
|
1684
1684
|
}
|
|
1685
1685
|
const obj_inlineEditDetails = obj.inlineEditDetails;
|
|
1686
1686
|
const path_inlineEditDetails = path + '.inlineEditDetails';
|
|
1687
|
-
const referencepath_inlineEditDetailsValidationError = validate$
|
|
1687
|
+
const referencepath_inlineEditDetailsValidationError = validate$2e(obj_inlineEditDetails, path_inlineEditDetails);
|
|
1688
1688
|
if (referencepath_inlineEditDetailsValidationError !== null) {
|
|
1689
1689
|
let message = 'Object doesn\'t match ListInlineEditDetailsRepresentation (at "' + path_inlineEditDetails + '")\n';
|
|
1690
1690
|
message += referencepath_inlineEditDetailsValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1718,7 +1718,7 @@ function validate$21(obj, path = 'ListInfoRepresentation') {
|
|
|
1718
1718
|
}
|
|
1719
1719
|
const obj_listReference = obj.listReference;
|
|
1720
1720
|
const path_listReference = path + '.listReference';
|
|
1721
|
-
const referencepath_listReferenceValidationError = validate$
|
|
1721
|
+
const referencepath_listReferenceValidationError = validate$2d(obj_listReference, path_listReference);
|
|
1722
1722
|
if (referencepath_listReferenceValidationError !== null) {
|
|
1723
1723
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
1724
1724
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1732,7 +1732,7 @@ function validate$21(obj, path = 'ListInfoRepresentation') {
|
|
|
1732
1732
|
for (let i = 0; i < obj_listShares.length; i++) {
|
|
1733
1733
|
const obj_listShares_item = obj_listShares[i];
|
|
1734
1734
|
const path_listShares_item = path_listShares + '[' + i + ']';
|
|
1735
|
-
const referencepath_listShares_itemValidationError = validate$
|
|
1735
|
+
const referencepath_listShares_itemValidationError = validate$2b(obj_listShares_item, path_listShares_item);
|
|
1736
1736
|
if (referencepath_listShares_itemValidationError !== null) {
|
|
1737
1737
|
let message = 'Object doesn\'t match ListInfoShareCategoryRepresentation (at "' + path_listShares_item + '")\n';
|
|
1738
1738
|
message += referencepath_listShares_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1759,7 +1759,7 @@ function validate$21(obj, path = 'ListInfoRepresentation') {
|
|
|
1759
1759
|
for (let i = 0; i < obj_orderedByInfo.length; i++) {
|
|
1760
1760
|
const obj_orderedByInfo_item = obj_orderedByInfo[i];
|
|
1761
1761
|
const path_orderedByInfo_item = path_orderedByInfo + '[' + i + ']';
|
|
1762
|
-
const referencepath_orderedByInfo_itemValidationError = validate$
|
|
1762
|
+
const referencepath_orderedByInfo_itemValidationError = validate$2a(obj_orderedByInfo_item, path_orderedByInfo_item);
|
|
1763
1763
|
if (referencepath_orderedByInfo_itemValidationError !== null) {
|
|
1764
1764
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedByInfo_item + '")\n';
|
|
1765
1765
|
message += referencepath_orderedByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1770,7 +1770,7 @@ function validate$21(obj, path = 'ListInfoRepresentation') {
|
|
|
1770
1770
|
const path_scope = path + '.scope';
|
|
1771
1771
|
let obj_scope_union0 = null;
|
|
1772
1772
|
const obj_scope_union0_error = (() => {
|
|
1773
|
-
const referencepath_scopeValidationError = validate$
|
|
1773
|
+
const referencepath_scopeValidationError = validate$27(obj_scope, path_scope);
|
|
1774
1774
|
if (referencepath_scopeValidationError !== null) {
|
|
1775
1775
|
let message = 'Object doesn\'t match ListScopeRepresentation (at "' + path_scope + '")\n';
|
|
1776
1776
|
message += referencepath_scopeValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1807,7 +1807,7 @@ function validate$21(obj, path = 'ListInfoRepresentation') {
|
|
|
1807
1807
|
}
|
|
1808
1808
|
const obj_userPreferences = obj.userPreferences;
|
|
1809
1809
|
const path_userPreferences = path + '.userPreferences';
|
|
1810
|
-
const referencepath_userPreferencesValidationError = validate$
|
|
1810
|
+
const referencepath_userPreferencesValidationError = validate$26(obj_userPreferences, path_userPreferences);
|
|
1811
1811
|
if (referencepath_userPreferencesValidationError !== null) {
|
|
1812
1812
|
let message = 'Object doesn\'t match ListUserPreferenceRepresentation (at "' + path_userPreferences + '")\n';
|
|
1813
1813
|
message += referencepath_userPreferencesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -1849,17 +1849,17 @@ function normalize$V(input, existing, path, luvio, store, timestamp) {
|
|
|
1849
1849
|
}
|
|
1850
1850
|
return input;
|
|
1851
1851
|
}
|
|
1852
|
-
const select$
|
|
1853
|
-
const { selections: ListFilterByInfoRepresentation__selections, opaque: ListFilterByInfoRepresentation__opaque, } = select$
|
|
1854
|
-
const { selections: ListInlineEditDetailsRepresentation__selections, opaque: ListInlineEditDetailsRepresentation__opaque, } = select$
|
|
1855
|
-
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$
|
|
1856
|
-
const { selections: ListInfoShareCategoryRepresentation__selections, opaque: ListInfoShareCategoryRepresentation__opaque, } = select$
|
|
1857
|
-
const { selections: ListOrderByInfoRepresentation__selections, opaque: ListOrderByInfoRepresentation__opaque, } = select$
|
|
1858
|
-
const { selections: ListScopeRepresentation__selections, opaque: ListScopeRepresentation__opaque, } = select$
|
|
1859
|
-
const { selections: ListUserPreferenceRepresentation__selections, opaque: ListUserPreferenceRepresentation__opaque, } = select$
|
|
1852
|
+
const select$3p = function ListInfoRepresentationSelect() {
|
|
1853
|
+
const { selections: ListFilterByInfoRepresentation__selections, opaque: ListFilterByInfoRepresentation__opaque, } = select$3A();
|
|
1854
|
+
const { selections: ListInlineEditDetailsRepresentation__selections, opaque: ListInlineEditDetailsRepresentation__opaque, } = select$3z();
|
|
1855
|
+
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$3y();
|
|
1856
|
+
const { selections: ListInfoShareCategoryRepresentation__selections, opaque: ListInfoShareCategoryRepresentation__opaque, } = select$3w();
|
|
1857
|
+
const { selections: ListOrderByInfoRepresentation__selections, opaque: ListOrderByInfoRepresentation__opaque, } = select$3v();
|
|
1858
|
+
const { selections: ListScopeRepresentation__selections, opaque: ListScopeRepresentation__opaque, } = select$3s();
|
|
1859
|
+
const { selections: ListUserPreferenceRepresentation__selections, opaque: ListUserPreferenceRepresentation__opaque, } = select$3r();
|
|
1860
1860
|
return {
|
|
1861
1861
|
kind: 'Fragment',
|
|
1862
|
-
version: VERSION$
|
|
1862
|
+
version: VERSION$2K,
|
|
1863
1863
|
private: [
|
|
1864
1864
|
'eTag'
|
|
1865
1865
|
],
|
|
@@ -1880,7 +1880,7 @@ const select$3o = function ListInfoRepresentationSelect() {
|
|
|
1880
1880
|
name: 'displayColumns',
|
|
1881
1881
|
kind: 'Link',
|
|
1882
1882
|
plural: true,
|
|
1883
|
-
fragment: select$
|
|
1883
|
+
fragment: select$3q()
|
|
1884
1884
|
},
|
|
1885
1885
|
{
|
|
1886
1886
|
name: 'filterLogicString',
|
|
@@ -1958,7 +1958,7 @@ const select$3o = function ListInfoRepresentationSelect() {
|
|
|
1958
1958
|
]
|
|
1959
1959
|
};
|
|
1960
1960
|
};
|
|
1961
|
-
function equals$
|
|
1961
|
+
function equals$1d(existing, incoming) {
|
|
1962
1962
|
if (existing.eTag !== incoming.eTag) {
|
|
1963
1963
|
return false;
|
|
1964
1964
|
}
|
|
@@ -1966,14 +1966,14 @@ function equals$1c(existing, incoming) {
|
|
|
1966
1966
|
}
|
|
1967
1967
|
const ingest$2f = function ListInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
1968
1968
|
if (process.env.NODE_ENV !== 'production') {
|
|
1969
|
-
const validateError = validate$
|
|
1969
|
+
const validateError = validate$22(input);
|
|
1970
1970
|
if (validateError !== null) {
|
|
1971
1971
|
throw validateError;
|
|
1972
1972
|
}
|
|
1973
1973
|
}
|
|
1974
1974
|
const key = keyBuilderFromType$F(luvio, input);
|
|
1975
1975
|
const ttlToUse = TTL$H;
|
|
1976
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$V, "UiApi", VERSION$
|
|
1976
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$V, "UiApi", VERSION$2K, RepresentationType$11, equals$1d);
|
|
1977
1977
|
return createLink$1(key);
|
|
1978
1978
|
};
|
|
1979
1979
|
function getTypeCacheKeys$2j(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -2060,8 +2060,8 @@ function toSortedStringArray(value) {
|
|
|
2060
2060
|
return undefined;
|
|
2061
2061
|
}
|
|
2062
2062
|
|
|
2063
|
-
const VERSION$
|
|
2064
|
-
function validate$
|
|
2063
|
+
const VERSION$2J = "d1e589a127fb1060c89070cdb6f500b2";
|
|
2064
|
+
function validate$21(obj, path = 'RecordTypeInfoRepresentation') {
|
|
2065
2065
|
const v_error = (() => {
|
|
2066
2066
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2067
2067
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2094,10 +2094,10 @@ function validate$20(obj, path = 'RecordTypeInfoRepresentation') {
|
|
|
2094
2094
|
})();
|
|
2095
2095
|
return v_error === undefined ? null : v_error;
|
|
2096
2096
|
}
|
|
2097
|
-
const select$
|
|
2097
|
+
const select$3o = function RecordTypeInfoRepresentationSelect() {
|
|
2098
2098
|
return {
|
|
2099
2099
|
kind: 'Fragment',
|
|
2100
|
-
version: VERSION$
|
|
2100
|
+
version: VERSION$2J,
|
|
2101
2101
|
private: [],
|
|
2102
2102
|
selections: [
|
|
2103
2103
|
{
|
|
@@ -2123,7 +2123,7 @@ const select$3n = function RecordTypeInfoRepresentationSelect() {
|
|
|
2123
2123
|
]
|
|
2124
2124
|
};
|
|
2125
2125
|
};
|
|
2126
|
-
function equals$
|
|
2126
|
+
function equals$1c(existing, incoming) {
|
|
2127
2127
|
const existing_available = existing.available;
|
|
2128
2128
|
const incoming_available = incoming.available;
|
|
2129
2129
|
if (!(existing_available === incoming_available)) {
|
|
@@ -2152,8 +2152,8 @@ function equals$1b(existing, incoming) {
|
|
|
2152
2152
|
return true;
|
|
2153
2153
|
}
|
|
2154
2154
|
|
|
2155
|
-
const VERSION$
|
|
2156
|
-
function validate$
|
|
2155
|
+
const VERSION$2I = "195d918987a35f45e1aa4dce9a11d8c5";
|
|
2156
|
+
function validate$20(obj, path = 'FieldValueRepresentation') {
|
|
2157
2157
|
const v_error = (() => {
|
|
2158
2158
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2159
2159
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2261,10 +2261,10 @@ function normalize$U(input, existing, path, luvio, store, timestamp) {
|
|
|
2261
2261
|
}
|
|
2262
2262
|
return input;
|
|
2263
2263
|
}
|
|
2264
|
-
const select$
|
|
2264
|
+
const select$3n = function FieldValueRepresentationSelect() {
|
|
2265
2265
|
return {
|
|
2266
2266
|
kind: 'Fragment',
|
|
2267
|
-
version: VERSION$
|
|
2267
|
+
version: VERSION$2I,
|
|
2268
2268
|
private: [],
|
|
2269
2269
|
selections: [
|
|
2270
2270
|
{
|
|
@@ -2275,12 +2275,12 @@ const select$3m = function FieldValueRepresentationSelect() {
|
|
|
2275
2275
|
name: 'value',
|
|
2276
2276
|
kind: 'Link',
|
|
2277
2277
|
nullable: true,
|
|
2278
|
-
fragment: select$
|
|
2278
|
+
fragment: select$3l()
|
|
2279
2279
|
}
|
|
2280
2280
|
]
|
|
2281
2281
|
};
|
|
2282
2282
|
};
|
|
2283
|
-
function equals$
|
|
2283
|
+
function equals$1b(existing, incoming) {
|
|
2284
2284
|
const existing_displayValue = existing.displayValue;
|
|
2285
2285
|
const incoming_displayValue = incoming.displayValue;
|
|
2286
2286
|
if (!(existing_displayValue === incoming_displayValue)) {
|
|
@@ -2300,14 +2300,14 @@ function equals$1a(existing, incoming) {
|
|
|
2300
2300
|
}
|
|
2301
2301
|
const ingest$2e = function FieldValueRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2302
2302
|
if (process.env.NODE_ENV !== 'production') {
|
|
2303
|
-
const validateError = validate$
|
|
2303
|
+
const validateError = validate$20(input);
|
|
2304
2304
|
if (validateError !== null) {
|
|
2305
2305
|
throw validateError;
|
|
2306
2306
|
}
|
|
2307
2307
|
}
|
|
2308
2308
|
const key = path.fullPath;
|
|
2309
2309
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
2310
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$U, "UiApi", VERSION$
|
|
2310
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$U, "UiApi", VERSION$2I, RepresentationType$10, equals$1b);
|
|
2311
2311
|
return createLink$1(key);
|
|
2312
2312
|
};
|
|
2313
2313
|
function getTypeCacheKeys$2i(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -2350,8 +2350,8 @@ const getTypeCacheKeys$2h = (rootKeySet, luvio, input, _fullPathFactory) => {
|
|
|
2350
2350
|
};
|
|
2351
2351
|
|
|
2352
2352
|
const TTL$G = 120000;
|
|
2353
|
-
const VERSION$
|
|
2354
|
-
function validate$
|
|
2353
|
+
const VERSION$2H = "79cb5ac9f44542f683d00245fdfe500d";
|
|
2354
|
+
function validate$1$(obj, path = 'RecordCollectionRepresentation') {
|
|
2355
2355
|
const v_error = (() => {
|
|
2356
2356
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2357
2357
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2531,10 +2531,10 @@ function normalize$T(input, existing, path, luvio, store, timestamp) {
|
|
|
2531
2531
|
}
|
|
2532
2532
|
return input;
|
|
2533
2533
|
}
|
|
2534
|
-
const select$
|
|
2534
|
+
const select$3m = function RecordCollectionRepresentationSelect() {
|
|
2535
2535
|
return {
|
|
2536
2536
|
kind: 'Fragment',
|
|
2537
|
-
version: VERSION$
|
|
2537
|
+
version: VERSION$2H,
|
|
2538
2538
|
private: [],
|
|
2539
2539
|
selections: [
|
|
2540
2540
|
{
|
|
@@ -2569,12 +2569,12 @@ const select$3l = function RecordCollectionRepresentationSelect() {
|
|
|
2569
2569
|
name: 'records',
|
|
2570
2570
|
kind: 'Link',
|
|
2571
2571
|
plural: true,
|
|
2572
|
-
fragment: select$
|
|
2572
|
+
fragment: select$3l()
|
|
2573
2573
|
}
|
|
2574
2574
|
]
|
|
2575
2575
|
};
|
|
2576
2576
|
};
|
|
2577
|
-
function equals$
|
|
2577
|
+
function equals$1a(existing, incoming) {
|
|
2578
2578
|
const existing_count = existing.count;
|
|
2579
2579
|
const incoming_count = incoming.count;
|
|
2580
2580
|
if (!(existing_count === incoming_count)) {
|
|
@@ -2624,14 +2624,14 @@ function equals$19(existing, incoming) {
|
|
|
2624
2624
|
}
|
|
2625
2625
|
const ingest$2d = function RecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
2626
2626
|
if (process.env.NODE_ENV !== 'production') {
|
|
2627
|
-
const validateError = validate$
|
|
2627
|
+
const validateError = validate$1$(input);
|
|
2628
2628
|
if (validateError !== null) {
|
|
2629
2629
|
throw validateError;
|
|
2630
2630
|
}
|
|
2631
2631
|
}
|
|
2632
2632
|
const key = path.fullPath;
|
|
2633
2633
|
const ttlToUse = TTL$G;
|
|
2634
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$T, "UiApi", VERSION$
|
|
2634
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$T, "UiApi", VERSION$2H, RepresentationType$$, equals$1a);
|
|
2635
2635
|
return createLink$1(key);
|
|
2636
2636
|
};
|
|
2637
2637
|
function getTypeCacheKeys$2g(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -2659,8 +2659,8 @@ const keyBuilderFromType$E = function RecordRepresentationKeyBuilderFromType(luv
|
|
|
2659
2659
|
};
|
|
2660
2660
|
|
|
2661
2661
|
const TTL$F = 30000;
|
|
2662
|
-
const VERSION$
|
|
2663
|
-
function validate$
|
|
2662
|
+
const VERSION$2G = "98c5b18512e48ca8d28727549507e4ba";
|
|
2663
|
+
function validate$1_(obj, path = 'RecordRepresentation') {
|
|
2664
2664
|
const v_error = (() => {
|
|
2665
2665
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
2666
2666
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -2790,7 +2790,7 @@ function validate$1Z(obj, path = 'RecordRepresentation') {
|
|
|
2790
2790
|
const path_recordTypeInfo = path + '.recordTypeInfo';
|
|
2791
2791
|
let obj_recordTypeInfo_union0 = null;
|
|
2792
2792
|
const obj_recordTypeInfo_union0_error = (() => {
|
|
2793
|
-
const referencepath_recordTypeInfoValidationError = validate$
|
|
2793
|
+
const referencepath_recordTypeInfoValidationError = validate$21(obj_recordTypeInfo, path_recordTypeInfo);
|
|
2794
2794
|
if (referencepath_recordTypeInfoValidationError !== null) {
|
|
2795
2795
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfo + '")\n';
|
|
2796
2796
|
message += referencepath_recordTypeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -2902,11 +2902,11 @@ function dynamicNormalize$5(ingestParams) {
|
|
|
2902
2902
|
return input;
|
|
2903
2903
|
};
|
|
2904
2904
|
}
|
|
2905
|
-
const select$
|
|
2906
|
-
const { selections: RecordTypeInfoRepresentation__selections, opaque: RecordTypeInfoRepresentation__opaque, } = select$
|
|
2905
|
+
const select$3l = function RecordRepresentationSelect() {
|
|
2906
|
+
const { selections: RecordTypeInfoRepresentation__selections, opaque: RecordTypeInfoRepresentation__opaque, } = select$3o();
|
|
2907
2907
|
return {
|
|
2908
2908
|
kind: 'Fragment',
|
|
2909
|
-
version: VERSION$
|
|
2909
|
+
version: VERSION$2G,
|
|
2910
2910
|
private: [
|
|
2911
2911
|
'eTag',
|
|
2912
2912
|
'weakEtag'
|
|
@@ -2920,13 +2920,13 @@ const select$3k = function RecordRepresentationSelect() {
|
|
|
2920
2920
|
name: 'childRelationships',
|
|
2921
2921
|
kind: 'Link',
|
|
2922
2922
|
map: true,
|
|
2923
|
-
fragment: select$
|
|
2923
|
+
fragment: select$3m()
|
|
2924
2924
|
},
|
|
2925
2925
|
{
|
|
2926
2926
|
name: 'fields',
|
|
2927
2927
|
kind: 'Link',
|
|
2928
2928
|
map: true,
|
|
2929
|
-
fragment: select$
|
|
2929
|
+
fragment: select$3n()
|
|
2930
2930
|
},
|
|
2931
2931
|
{
|
|
2932
2932
|
name: 'id',
|
|
@@ -2962,18 +2962,18 @@ const dynamicSelect$8 = function dynamicRecordRepresentationSelect(params) {
|
|
|
2962
2962
|
name: 'childRelationships',
|
|
2963
2963
|
kind: 'Link',
|
|
2964
2964
|
map: true,
|
|
2965
|
-
fragment: select$
|
|
2965
|
+
fragment: select$3m()
|
|
2966
2966
|
} : params.childRelationships;
|
|
2967
2967
|
const fieldsPathSelection = params.fields === undefined ? {
|
|
2968
2968
|
name: 'fields',
|
|
2969
2969
|
kind: 'Link',
|
|
2970
2970
|
map: true,
|
|
2971
|
-
fragment: select$
|
|
2971
|
+
fragment: select$3n()
|
|
2972
2972
|
} : params.fields;
|
|
2973
|
-
const { selections: RecordTypeInfoRepresentation__selections, opaque: RecordTypeInfoRepresentation__opaque, } = select$
|
|
2973
|
+
const { selections: RecordTypeInfoRepresentation__selections, opaque: RecordTypeInfoRepresentation__opaque, } = select$3o();
|
|
2974
2974
|
return {
|
|
2975
2975
|
kind: 'Fragment',
|
|
2976
|
-
version: VERSION$
|
|
2976
|
+
version: VERSION$2G,
|
|
2977
2977
|
private: [
|
|
2978
2978
|
'eTag',
|
|
2979
2979
|
'weakEtag'
|
|
@@ -3014,7 +3014,7 @@ const dynamicSelect$8 = function dynamicRecordRepresentationSelect(params) {
|
|
|
3014
3014
|
]
|
|
3015
3015
|
};
|
|
3016
3016
|
};
|
|
3017
|
-
function equals$
|
|
3017
|
+
function equals$19(existing, incoming) {
|
|
3018
3018
|
const existing_weakEtag = existing.weakEtag;
|
|
3019
3019
|
const incoming_weakEtag = incoming.weakEtag;
|
|
3020
3020
|
if (!(existing_weakEtag === incoming_weakEtag)) {
|
|
@@ -3075,7 +3075,7 @@ function equals$18(existing, incoming) {
|
|
|
3075
3075
|
if (!(existing_recordTypeInfo === incoming_recordTypeInfo
|
|
3076
3076
|
|| (existing_recordTypeInfo != null &&
|
|
3077
3077
|
incoming_recordTypeInfo != null &&
|
|
3078
|
-
equals$
|
|
3078
|
+
equals$1c(existing_recordTypeInfo, incoming_recordTypeInfo)))) {
|
|
3079
3079
|
return false;
|
|
3080
3080
|
}
|
|
3081
3081
|
const existing_systemModstamp = existing.systemModstamp;
|
|
@@ -4763,7 +4763,7 @@ function createPathSelection(propertyName, fieldDefinition) {
|
|
|
4763
4763
|
kind: 'Fragment',
|
|
4764
4764
|
private: ['eTag', 'weakEtag'],
|
|
4765
4765
|
selections: createRecordSelection(childFieldDefinition),
|
|
4766
|
-
version: VERSION$
|
|
4766
|
+
version: VERSION$2G,
|
|
4767
4767
|
},
|
|
4768
4768
|
};
|
|
4769
4769
|
}
|
|
@@ -4773,7 +4773,7 @@ function createPathSelection(propertyName, fieldDefinition) {
|
|
|
4773
4773
|
required: childFieldDefinition.optional === true ? false : undefined,
|
|
4774
4774
|
fragment: {
|
|
4775
4775
|
kind: 'Fragment',
|
|
4776
|
-
version: VERSION$
|
|
4776
|
+
version: VERSION$2I,
|
|
4777
4777
|
private: [],
|
|
4778
4778
|
selections: [DISPLAY_VALUE_SELECTION, fieldValueSelection],
|
|
4779
4779
|
},
|
|
@@ -4805,7 +4805,7 @@ function createPathSelectionFromValue(fields) {
|
|
|
4805
4805
|
kind: 'Fragment',
|
|
4806
4806
|
private: [],
|
|
4807
4807
|
selections: buildSelectionFromRecord(fieldValue),
|
|
4808
|
-
version: VERSION$
|
|
4808
|
+
version: VERSION$2G,
|
|
4809
4809
|
},
|
|
4810
4810
|
};
|
|
4811
4811
|
}
|
|
@@ -4815,7 +4815,7 @@ function createPathSelectionFromValue(fields) {
|
|
|
4815
4815
|
required: undefined,
|
|
4816
4816
|
fragment: {
|
|
4817
4817
|
kind: 'Fragment',
|
|
4818
|
-
version: VERSION$
|
|
4818
|
+
version: VERSION$2I,
|
|
4819
4819
|
private: [],
|
|
4820
4820
|
selections: [DISPLAY_VALUE_SELECTION, fieldValueSelection],
|
|
4821
4821
|
},
|
|
@@ -5494,7 +5494,7 @@ function ingestRecordResponse(luvio, response, recordId, recordIngest, conflictM
|
|
|
5494
5494
|
kind: 'Fragment',
|
|
5495
5495
|
private: [],
|
|
5496
5496
|
selections: sel,
|
|
5497
|
-
version: VERSION$
|
|
5497
|
+
version: VERSION$2G,
|
|
5498
5498
|
},
|
|
5499
5499
|
variables: {},
|
|
5500
5500
|
});
|
|
@@ -5787,7 +5787,7 @@ function normalize$S(input, existing, path, luvio, store, timestamp, fieldsTrie,
|
|
|
5787
5787
|
function makeIngest(fieldsTrie, optionalFieldsTrie, recordConflictMap) {
|
|
5788
5788
|
return (input, path, luvio, store, timestamp) => {
|
|
5789
5789
|
if (process.env.NODE_ENV !== 'production') {
|
|
5790
|
-
const validateError = validate$
|
|
5790
|
+
const validateError = validate$20(input);
|
|
5791
5791
|
if (validateError !== null) {
|
|
5792
5792
|
throw validateError;
|
|
5793
5793
|
}
|
|
@@ -5802,7 +5802,7 @@ function makeIngest(fieldsTrie, optionalFieldsTrie, recordConflictMap) {
|
|
|
5802
5802
|
// read again after children ingested in case of a circular ref
|
|
5803
5803
|
existingRecord = store.readEntry(key);
|
|
5804
5804
|
incomingRecord = merge$2(existingRecord, incomingRecord, luvio, path);
|
|
5805
|
-
if (existingRecord === undefined || equals$
|
|
5805
|
+
if (existingRecord === undefined || equals$1b(existingRecord, incomingRecord) === false) {
|
|
5806
5806
|
luvio.storePublish(key, incomingRecord);
|
|
5807
5807
|
}
|
|
5808
5808
|
return createLink$1(key);
|
|
@@ -5880,7 +5880,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
5880
5880
|
const childNormalize = createChildRecordNormalize(fieldsTrie, optionalFieldsTrie, recordConflictMap);
|
|
5881
5881
|
return (input, path, luvio, store, timestamp) => {
|
|
5882
5882
|
if (process.env.NODE_ENV !== 'production') {
|
|
5883
|
-
const validateError = validate$
|
|
5883
|
+
const validateError = validate$1_(input);
|
|
5884
5884
|
if (validateError !== null) {
|
|
5885
5885
|
throw validateError;
|
|
5886
5886
|
}
|
|
@@ -5898,7 +5898,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
5898
5898
|
existingRecord = store.readEntry(key);
|
|
5899
5899
|
incomingRecord = merge$3(existingRecord, incomingRecord, luvio, path, recordConflictMap);
|
|
5900
5900
|
if (existingRecord === undefined ||
|
|
5901
|
-
equals$
|
|
5901
|
+
equals$19(existingRecord, incomingRecord) === false ||
|
|
5902
5902
|
// always publish if existing record has drafts
|
|
5903
5903
|
existingRecord.drafts !==
|
|
5904
5904
|
undefined) {
|
|
@@ -5908,7 +5908,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
5908
5908
|
ttl: TTL$F,
|
|
5909
5909
|
representationName: RepresentationType$_,
|
|
5910
5910
|
namespace: keyPrefix,
|
|
5911
|
-
version: VERSION$
|
|
5911
|
+
version: VERSION$2G,
|
|
5912
5912
|
ingestionTimestamp: timestamp,
|
|
5913
5913
|
});
|
|
5914
5914
|
return createLink$1(key);
|
|
@@ -6078,7 +6078,7 @@ function buildRecordSelector(luvio, recordId, fields, optionalFields) {
|
|
|
6078
6078
|
kind: 'Fragment',
|
|
6079
6079
|
private: ['eTag', 'weakEtag'],
|
|
6080
6080
|
selections: buildSelectionFromFields(fields, optionalFields),
|
|
6081
|
-
version: VERSION$
|
|
6081
|
+
version: VERSION$2G,
|
|
6082
6082
|
},
|
|
6083
6083
|
variables: {},
|
|
6084
6084
|
};
|
|
@@ -6199,7 +6199,7 @@ function isSingleBatchRecordResponse(response) {
|
|
|
6199
6199
|
response.results.length === 1);
|
|
6200
6200
|
}
|
|
6201
6201
|
|
|
6202
|
-
const VERSION$
|
|
6202
|
+
const VERSION$2F = "98cce53b8d13b1883d001bbdaab24383";
|
|
6203
6203
|
|
|
6204
6204
|
const nonCachedErrors$8 = ObjectCreate$1(null);
|
|
6205
6205
|
function ingestSuccessChildResourceParams$9(luvio, childResourceParamsArray, childEnvelopes, serverRequestCount = 0) {
|
|
@@ -6300,7 +6300,7 @@ function selectChildResourceParams$8(luvio, childResources, resourceParams) {
|
|
|
6300
6300
|
node: {
|
|
6301
6301
|
kind: 'Fragment',
|
|
6302
6302
|
private: [],
|
|
6303
|
-
version: VERSION$
|
|
6303
|
+
version: VERSION$2F,
|
|
6304
6304
|
},
|
|
6305
6305
|
variables: {},
|
|
6306
6306
|
});
|
|
@@ -6855,8 +6855,8 @@ const keyBuilderFromType$C = function ListRecordCollectionRepresentationKeyBuild
|
|
|
6855
6855
|
};
|
|
6856
6856
|
|
|
6857
6857
|
const TTL$E = 30000;
|
|
6858
|
-
const VERSION$
|
|
6859
|
-
function validate$
|
|
6858
|
+
const VERSION$2E = "e5c90c4081cd557f8ffec53028ede1e8";
|
|
6859
|
+
function validate$1Z(obj, path = 'ListRecordCollectionRepresentation') {
|
|
6860
6860
|
const v_error = (() => {
|
|
6861
6861
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
6862
6862
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -6916,7 +6916,7 @@ function validate$1Y(obj, path = 'ListRecordCollectionRepresentation') {
|
|
|
6916
6916
|
}
|
|
6917
6917
|
const obj_listReference = obj.listReference;
|
|
6918
6918
|
const path_listReference = path + '.listReference';
|
|
6919
|
-
const referencepath_listReferenceValidationError = validate$
|
|
6919
|
+
const referencepath_listReferenceValidationError = validate$2d(obj_listReference, path_listReference);
|
|
6920
6920
|
if (referencepath_listReferenceValidationError !== null) {
|
|
6921
6921
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
6922
6922
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -7169,13 +7169,13 @@ function normalize$R(input, existing, path, luvio, store, timestamp) {
|
|
|
7169
7169
|
}
|
|
7170
7170
|
return input;
|
|
7171
7171
|
}
|
|
7172
|
-
const select$
|
|
7173
|
-
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$
|
|
7172
|
+
const select$3k = function ListRecordCollectionRepresentationSelect(paginationParams) {
|
|
7173
|
+
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$3y();
|
|
7174
7174
|
return {
|
|
7175
7175
|
kind: 'Fragment',
|
|
7176
7176
|
reader: true,
|
|
7177
7177
|
synthetic: false,
|
|
7178
|
-
version: VERSION$
|
|
7178
|
+
version: VERSION$2E,
|
|
7179
7179
|
read: (source, reader) => {
|
|
7180
7180
|
const sink = {};
|
|
7181
7181
|
if (paginationParams === undefined) {
|
|
@@ -7195,7 +7195,7 @@ const select$3j = function ListRecordCollectionRepresentationSelect(paginationPa
|
|
|
7195
7195
|
reader.readSingleLink(i, {
|
|
7196
7196
|
name: 'records',
|
|
7197
7197
|
kind: 'Link',
|
|
7198
|
-
fragment: select$
|
|
7198
|
+
fragment: select$3l()
|
|
7199
7199
|
}, itemsSource, allSink, i - startOffset);
|
|
7200
7200
|
if (reader.getIsDataMissing() === false) {
|
|
7201
7201
|
itemsSink[i - startOffset] = allSink[i - startOffset];
|
|
@@ -7288,14 +7288,14 @@ const dynamicSelect$7 = function dynamicListRecordCollectionRepresentationSelect
|
|
|
7288
7288
|
const recordsPathSelection = params.records === undefined ? {
|
|
7289
7289
|
name: 'records',
|
|
7290
7290
|
kind: 'Link',
|
|
7291
|
-
fragment: select$
|
|
7291
|
+
fragment: select$3l()
|
|
7292
7292
|
} : params.records;
|
|
7293
|
-
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$
|
|
7293
|
+
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$3y();
|
|
7294
7294
|
return {
|
|
7295
7295
|
kind: 'Fragment',
|
|
7296
7296
|
reader: true,
|
|
7297
7297
|
synthetic: false,
|
|
7298
|
-
version: VERSION$
|
|
7298
|
+
version: VERSION$2E,
|
|
7299
7299
|
read: (source, reader) => {
|
|
7300
7300
|
const sink = {};
|
|
7301
7301
|
if (paginationParams === undefined) {
|
|
@@ -7370,7 +7370,7 @@ const dynamicSelect$7 = function dynamicListRecordCollectionRepresentationSelect
|
|
|
7370
7370
|
},
|
|
7371
7371
|
};
|
|
7372
7372
|
};
|
|
7373
|
-
function equals$
|
|
7373
|
+
function equals$18(existing, incoming) {
|
|
7374
7374
|
const existing_count = existing.count;
|
|
7375
7375
|
const incoming_count = incoming.count;
|
|
7376
7376
|
if (!(existing_count === incoming_count)) {
|
|
@@ -7408,7 +7408,7 @@ function equals$17(existing, incoming) {
|
|
|
7408
7408
|
}
|
|
7409
7409
|
const existing_listReference = existing.listReference;
|
|
7410
7410
|
const incoming_listReference = incoming.listReference;
|
|
7411
|
-
if (!(equals$
|
|
7411
|
+
if (!(equals$1g(existing_listReference, incoming_listReference))) {
|
|
7412
7412
|
return false;
|
|
7413
7413
|
}
|
|
7414
7414
|
const existing_nextPageToken = existing.nextPageToken;
|
|
@@ -7482,7 +7482,7 @@ function equals$17(existing, incoming) {
|
|
|
7482
7482
|
}
|
|
7483
7483
|
const ingest$2b = function ListRecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
7484
7484
|
if (process.env.NODE_ENV !== 'production') {
|
|
7485
|
-
const validateError = validate$
|
|
7485
|
+
const validateError = validate$1Z(input);
|
|
7486
7486
|
if (validateError !== null) {
|
|
7487
7487
|
throw validateError;
|
|
7488
7488
|
}
|
|
@@ -7541,14 +7541,14 @@ const ingest$2b = function ListRecordCollectionRepresentationIngest(input, path,
|
|
|
7541
7541
|
...existingRecord.records.slice(nextOffset),
|
|
7542
7542
|
];
|
|
7543
7543
|
}
|
|
7544
|
-
if (existingRecord === undefined || equals$
|
|
7544
|
+
if (existingRecord === undefined || equals$18(existingRecord, incomingRecord) === false) {
|
|
7545
7545
|
luvio.storePublish(key, incomingRecord);
|
|
7546
7546
|
}
|
|
7547
7547
|
{
|
|
7548
7548
|
const storeMetadataParams = {
|
|
7549
7549
|
ttl: ttlToUse,
|
|
7550
7550
|
namespace: "UiApi",
|
|
7551
|
-
version: VERSION$
|
|
7551
|
+
version: VERSION$2E,
|
|
7552
7552
|
representationName: RepresentationType$Z,
|
|
7553
7553
|
ingestionTimestamp: timestamp,
|
|
7554
7554
|
};
|
|
@@ -7589,8 +7589,8 @@ const notifyUpdateAvailableFactory$4 = (luvio) => {
|
|
|
7589
7589
|
};
|
|
7590
7590
|
};
|
|
7591
7591
|
|
|
7592
|
-
const VERSION$
|
|
7593
|
-
function validate$
|
|
7592
|
+
const VERSION$2D = "cf8d2eb042188974da26ffe6618cfd07";
|
|
7593
|
+
function validate$1Y(obj, path = 'ListUiRepresentation') {
|
|
7594
7594
|
const v_error = (() => {
|
|
7595
7595
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
7596
7596
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -7653,10 +7653,10 @@ function normalize$Q(input, existing, path, luvio, store, timestamp) {
|
|
|
7653
7653
|
}, luvio, store, timestamp);
|
|
7654
7654
|
return input;
|
|
7655
7655
|
}
|
|
7656
|
-
const select$
|
|
7656
|
+
const select$3j = function ListUiRepresentationSelect(paginationParams) {
|
|
7657
7657
|
return {
|
|
7658
7658
|
kind: 'Fragment',
|
|
7659
|
-
version: VERSION$
|
|
7659
|
+
version: VERSION$2D,
|
|
7660
7660
|
private: [
|
|
7661
7661
|
'eTag'
|
|
7662
7662
|
],
|
|
@@ -7664,12 +7664,12 @@ const select$3i = function ListUiRepresentationSelect(paginationParams) {
|
|
|
7664
7664
|
{
|
|
7665
7665
|
name: 'info',
|
|
7666
7666
|
kind: 'Link',
|
|
7667
|
-
fragment: select$
|
|
7667
|
+
fragment: select$3p()
|
|
7668
7668
|
},
|
|
7669
7669
|
{
|
|
7670
7670
|
name: 'records',
|
|
7671
7671
|
kind: 'Link',
|
|
7672
|
-
fragment: select$
|
|
7672
|
+
fragment: select$3k(paginationParams)
|
|
7673
7673
|
}
|
|
7674
7674
|
]
|
|
7675
7675
|
};
|
|
@@ -7678,16 +7678,16 @@ const dynamicSelect$6 = function dynamicListUiRepresentationSelect(params, pagin
|
|
|
7678
7678
|
const infoPathSelection = params.info === undefined ? {
|
|
7679
7679
|
name: 'info',
|
|
7680
7680
|
kind: 'Link',
|
|
7681
|
-
fragment: select$
|
|
7681
|
+
fragment: select$3p()
|
|
7682
7682
|
} : params.info;
|
|
7683
7683
|
const recordsPathSelection = params.records === undefined ? {
|
|
7684
7684
|
name: 'records',
|
|
7685
7685
|
kind: 'Link',
|
|
7686
|
-
fragment: select$
|
|
7686
|
+
fragment: select$3k(paginationParams)
|
|
7687
7687
|
} : params.records;
|
|
7688
7688
|
return {
|
|
7689
7689
|
kind: 'Fragment',
|
|
7690
|
-
version: VERSION$
|
|
7690
|
+
version: VERSION$2D,
|
|
7691
7691
|
private: [
|
|
7692
7692
|
'eTag'
|
|
7693
7693
|
],
|
|
@@ -7697,7 +7697,7 @@ const dynamicSelect$6 = function dynamicListUiRepresentationSelect(params, pagin
|
|
|
7697
7697
|
]
|
|
7698
7698
|
};
|
|
7699
7699
|
};
|
|
7700
|
-
function equals$
|
|
7700
|
+
function equals$17(existing, incoming) {
|
|
7701
7701
|
const existing_eTag = existing.eTag;
|
|
7702
7702
|
const incoming_eTag = incoming.eTag;
|
|
7703
7703
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -7717,14 +7717,14 @@ function equals$16(existing, incoming) {
|
|
|
7717
7717
|
}
|
|
7718
7718
|
const ingest$2a = function ListUiRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
7719
7719
|
if (process.env.NODE_ENV !== 'production') {
|
|
7720
|
-
const validateError = validate$
|
|
7720
|
+
const validateError = validate$1Y(input);
|
|
7721
7721
|
if (validateError !== null) {
|
|
7722
7722
|
throw validateError;
|
|
7723
7723
|
}
|
|
7724
7724
|
}
|
|
7725
7725
|
const key = keyBuilderFromType$B(luvio, input);
|
|
7726
7726
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
7727
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$Q, "UiApi", VERSION$
|
|
7727
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$Q, "UiApi", VERSION$2D, RepresentationType$Y, equals$17);
|
|
7728
7728
|
return createLink$1(key);
|
|
7729
7729
|
};
|
|
7730
7730
|
function getTypeCacheKeys$2d(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -7746,9 +7746,9 @@ function createPaginationParams$6(params) {
|
|
|
7746
7746
|
pageSize: queryParams.pageSize === undefined ? 50 : queryParams.pageSize
|
|
7747
7747
|
};
|
|
7748
7748
|
}
|
|
7749
|
-
function select$
|
|
7749
|
+
function select$3i(luvio, params) {
|
|
7750
7750
|
const paginationParams = createPaginationParams$6(params);
|
|
7751
|
-
return select$
|
|
7751
|
+
return select$3j(paginationParams);
|
|
7752
7752
|
}
|
|
7753
7753
|
function keyBuilder$3v(luvio, params) {
|
|
7754
7754
|
return keyBuilder$3w(luvio, {
|
|
@@ -7767,7 +7767,7 @@ function ingestSuccess$W(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
7767
7767
|
luvio.storeIngest(key, ingest$2a, body);
|
|
7768
7768
|
const snapshot = luvio.storeLookup({
|
|
7769
7769
|
recordId: key,
|
|
7770
|
-
node: select$
|
|
7770
|
+
node: select$3i(luvio, resourceParams),
|
|
7771
7771
|
variables: {},
|
|
7772
7772
|
}, snapshotRefresh);
|
|
7773
7773
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -7835,7 +7835,7 @@ function validateAdapterConfig$1b(untrustedConfig, configPropertyNames) {
|
|
|
7835
7835
|
}
|
|
7836
7836
|
function adapterFragment$N(luvio, config) {
|
|
7837
7837
|
const resourceParams = createResourceParams$13(config);
|
|
7838
|
-
return select$
|
|
7838
|
+
return select$3i(luvio, resourceParams);
|
|
7839
7839
|
}
|
|
7840
7840
|
function onFetchResponseSuccess$R(luvio, config, resourceParams, response) {
|
|
7841
7841
|
const snapshot = ingestSuccess$W(luvio, resourceParams, response, {
|
|
@@ -7901,9 +7901,9 @@ function createPaginationParams$5(params) {
|
|
|
7901
7901
|
pageSize: queryParams.pageSize === undefined ? 50 : queryParams.pageSize
|
|
7902
7902
|
};
|
|
7903
7903
|
}
|
|
7904
|
-
function select$
|
|
7904
|
+
function select$3h(luvio, params) {
|
|
7905
7905
|
const paginationParams = createPaginationParams$5(params);
|
|
7906
|
-
return select$
|
|
7906
|
+
return select$3j(paginationParams);
|
|
7907
7907
|
}
|
|
7908
7908
|
function keyBuilder$3t(luvio, params) {
|
|
7909
7909
|
return keyPrefix + '::ListUiRepresentation:(' + 'fields:' + params.queryParams.fields + ',' + 'optionalFields:' + params.queryParams.optionalFields + ',' + 'pageSize:' + params.queryParams.pageSize + ',' + 'pageToken:' + params.queryParams.pageToken + ',' + 'sortBy:' + params.queryParams.sortBy + ',' + 'listViewId:' + params.urlParams.listViewId + ')';
|
|
@@ -7917,7 +7917,7 @@ function ingestSuccess$V(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
7917
7917
|
luvio.storeIngest(key, ingest$2a, body);
|
|
7918
7918
|
const snapshot = luvio.storeLookup({
|
|
7919
7919
|
recordId: key,
|
|
7920
|
-
node: select$
|
|
7920
|
+
node: select$3h(luvio, resourceParams),
|
|
7921
7921
|
variables: {},
|
|
7922
7922
|
}, snapshotRefresh);
|
|
7923
7923
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -7984,7 +7984,7 @@ function validateAdapterConfig$1a(untrustedConfig, configPropertyNames) {
|
|
|
7984
7984
|
}
|
|
7985
7985
|
function adapterFragment$M(luvio, config) {
|
|
7986
7986
|
const resourceParams = createResourceParams$12(config);
|
|
7987
|
-
return select$
|
|
7987
|
+
return select$3h(luvio, resourceParams);
|
|
7988
7988
|
}
|
|
7989
7989
|
function onFetchResponseSuccess$Q(luvio, config, resourceParams, response) {
|
|
7990
7990
|
const snapshot = ingestSuccess$V(luvio, resourceParams, response, {
|
|
@@ -8057,8 +8057,8 @@ function createResourceRequest$1c(config) {
|
|
|
8057
8057
|
};
|
|
8058
8058
|
}
|
|
8059
8059
|
|
|
8060
|
-
const VERSION$
|
|
8061
|
-
function validate$
|
|
8060
|
+
const VERSION$2C = "0b29241fd9ed04bb61fde26b3f558ac4";
|
|
8061
|
+
function validate$1X(obj, path = 'ListInfoSummaryRepresentation') {
|
|
8062
8062
|
const v_error = (() => {
|
|
8063
8063
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8064
8064
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8120,10 +8120,10 @@ function keyBuilderFromType$A(luvio, object) {
|
|
|
8120
8120
|
function normalize$P(input, existing, path, luvio, store, timestamp) {
|
|
8121
8121
|
return input;
|
|
8122
8122
|
}
|
|
8123
|
-
const select$
|
|
8123
|
+
const select$3g = function ListInfoSummaryRepresentationSelect() {
|
|
8124
8124
|
return {
|
|
8125
8125
|
kind: 'Fragment',
|
|
8126
|
-
version: VERSION$
|
|
8126
|
+
version: VERSION$2C,
|
|
8127
8127
|
private: [],
|
|
8128
8128
|
selections: [
|
|
8129
8129
|
{
|
|
@@ -8145,7 +8145,7 @@ const select$3f = function ListInfoSummaryRepresentationSelect() {
|
|
|
8145
8145
|
]
|
|
8146
8146
|
};
|
|
8147
8147
|
};
|
|
8148
|
-
function equals$
|
|
8148
|
+
function equals$16(existing, incoming) {
|
|
8149
8149
|
const existing_apiName = existing.apiName;
|
|
8150
8150
|
const incoming_apiName = incoming.apiName;
|
|
8151
8151
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -8170,14 +8170,14 @@ function equals$15(existing, incoming) {
|
|
|
8170
8170
|
}
|
|
8171
8171
|
const ingest$29 = function ListInfoSummaryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
8172
8172
|
if (process.env.NODE_ENV !== 'production') {
|
|
8173
|
-
const validateError = validate$
|
|
8173
|
+
const validateError = validate$1X(input);
|
|
8174
8174
|
if (validateError !== null) {
|
|
8175
8175
|
throw validateError;
|
|
8176
8176
|
}
|
|
8177
8177
|
}
|
|
8178
8178
|
const key = keyBuilderFromType$A(luvio, input);
|
|
8179
8179
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
8180
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$P, "UiApi", VERSION$
|
|
8180
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$P, "UiApi", VERSION$2C, RepresentationType$X, equals$16);
|
|
8181
8181
|
return createLink$1(key);
|
|
8182
8182
|
};
|
|
8183
8183
|
function getTypeCacheKeys$2c(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -8190,8 +8190,8 @@ function getTypeCacheKeys$2c(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
8190
8190
|
});
|
|
8191
8191
|
}
|
|
8192
8192
|
|
|
8193
|
-
const VERSION$
|
|
8194
|
-
function validate$
|
|
8193
|
+
const VERSION$2B = "d0cadb0927f908b5b64694e1cff0b2d7";
|
|
8194
|
+
function validate$1W(obj, path = 'ListInfoSummaryCollectionRepresentation') {
|
|
8195
8195
|
const v_error = (() => {
|
|
8196
8196
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
8197
8197
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -8407,12 +8407,12 @@ function normalize$O(input, existing, path, luvio, store, timestamp) {
|
|
|
8407
8407
|
}
|
|
8408
8408
|
return input;
|
|
8409
8409
|
}
|
|
8410
|
-
const select$
|
|
8410
|
+
const select$3f = function ListInfoSummaryCollectionRepresentationSelect(paginationParams) {
|
|
8411
8411
|
return {
|
|
8412
8412
|
kind: 'Fragment',
|
|
8413
8413
|
reader: true,
|
|
8414
8414
|
synthetic: false,
|
|
8415
|
-
version: VERSION$
|
|
8415
|
+
version: VERSION$2B,
|
|
8416
8416
|
read: (source, reader) => {
|
|
8417
8417
|
const sink = {};
|
|
8418
8418
|
if (paginationParams === undefined) {
|
|
@@ -8432,7 +8432,7 @@ const select$3e = function ListInfoSummaryCollectionRepresentationSelect(paginat
|
|
|
8432
8432
|
reader.readSingleLink(i, {
|
|
8433
8433
|
name: 'lists',
|
|
8434
8434
|
kind: 'Link',
|
|
8435
|
-
fragment: select$
|
|
8435
|
+
fragment: select$3g()
|
|
8436
8436
|
}, itemsSource, allSink, i - startOffset);
|
|
8437
8437
|
if (reader.getIsDataMissing() === false) {
|
|
8438
8438
|
itemsSink[i - startOffset] = allSink[i - startOffset];
|
|
@@ -8500,7 +8500,7 @@ function getPageMetadata$3(paginationMetadata, paginationParams) {
|
|
|
8500
8500
|
metadataProperties.count = endOffset - startOffset;
|
|
8501
8501
|
return sink;
|
|
8502
8502
|
}
|
|
8503
|
-
function equals$
|
|
8503
|
+
function equals$15(existing, incoming) {
|
|
8504
8504
|
const existing_recentListsOnly = existing.recentListsOnly;
|
|
8505
8505
|
const incoming_recentListsOnly = incoming.recentListsOnly;
|
|
8506
8506
|
if (!(existing_recentListsOnly === incoming_recentListsOnly)) {
|
|
@@ -8575,7 +8575,7 @@ function equals$14(existing, incoming) {
|
|
|
8575
8575
|
}
|
|
8576
8576
|
const ingest$28 = function ListInfoSummaryCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
8577
8577
|
if (process.env.NODE_ENV !== 'production') {
|
|
8578
|
-
const validateError = validate$
|
|
8578
|
+
const validateError = validate$1W(input);
|
|
8579
8579
|
if (validateError !== null) {
|
|
8580
8580
|
throw validateError;
|
|
8581
8581
|
}
|
|
@@ -8634,14 +8634,14 @@ const ingest$28 = function ListInfoSummaryCollectionRepresentationIngest(input,
|
|
|
8634
8634
|
...existingRecord.lists.slice(nextOffset),
|
|
8635
8635
|
];
|
|
8636
8636
|
}
|
|
8637
|
-
if (existingRecord === undefined || equals$
|
|
8637
|
+
if (existingRecord === undefined || equals$15(existingRecord, incomingRecord) === false) {
|
|
8638
8638
|
luvio.storePublish(key, incomingRecord);
|
|
8639
8639
|
}
|
|
8640
8640
|
if (ttlToUse !== undefined) {
|
|
8641
8641
|
const storeMetadataParams = {
|
|
8642
8642
|
ttl: ttlToUse,
|
|
8643
8643
|
namespace: "UiApi",
|
|
8644
|
-
version: VERSION$
|
|
8644
|
+
version: VERSION$2B,
|
|
8645
8645
|
representationName: RepresentationType$W,
|
|
8646
8646
|
ingestionTimestamp: timestamp,
|
|
8647
8647
|
};
|
|
@@ -8725,11 +8725,11 @@ function getListReference(query, context) {
|
|
|
8725
8725
|
/**
|
|
8726
8726
|
* Reader selections to copy a list info
|
|
8727
8727
|
*/
|
|
8728
|
-
const LIST_INFO_SELECTIONS = select$
|
|
8728
|
+
const LIST_INFO_SELECTIONS = select$3p().selections;
|
|
8729
8729
|
/**
|
|
8730
8730
|
* List info private memebers
|
|
8731
8731
|
*/
|
|
8732
|
-
select$
|
|
8732
|
+
select$3p().private;
|
|
8733
8733
|
const LIST_INFO_SELECTIONS_ETAG = [
|
|
8734
8734
|
...LIST_INFO_SELECTIONS,
|
|
8735
8735
|
{ kind: 'Scalar', name: 'eTag' },
|
|
@@ -8754,7 +8754,7 @@ function getListInfo(luvio, listRef, storeLookup) {
|
|
|
8754
8754
|
kind: 'Fragment',
|
|
8755
8755
|
selections: LIST_INFO_SELECTIONS_ETAG,
|
|
8756
8756
|
private: [],
|
|
8757
|
-
version: VERSION$
|
|
8757
|
+
version: VERSION$2K,
|
|
8758
8758
|
},
|
|
8759
8759
|
variables: {},
|
|
8760
8760
|
});
|
|
@@ -8962,7 +8962,7 @@ function keyBuilder$3p(luvio, params) {
|
|
|
8962
8962
|
});
|
|
8963
8963
|
}
|
|
8964
8964
|
|
|
8965
|
-
function select$
|
|
8965
|
+
function select$3e(luvio, params) {
|
|
8966
8966
|
const { fields = [], optionalFields = [] } = params.body;
|
|
8967
8967
|
return dynamicSelect$7({
|
|
8968
8968
|
records: {
|
|
@@ -8972,7 +8972,7 @@ function select$3d(luvio, params) {
|
|
|
8972
8972
|
kind: 'Fragment',
|
|
8973
8973
|
private: ['eTag', 'weakEtag'],
|
|
8974
8974
|
selections: buildSelectionFromFields(fields, optionalFields),
|
|
8975
|
-
version: VERSION$
|
|
8975
|
+
version: VERSION$2G
|
|
8976
8976
|
},
|
|
8977
8977
|
},
|
|
8978
8978
|
}, createPaginationParams$4(params));
|
|
@@ -8988,7 +8988,7 @@ function ingestSuccess$U(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
8988
8988
|
}
|
|
8989
8989
|
const snapshot = luvio.storeLookup({
|
|
8990
8990
|
recordId: key,
|
|
8991
|
-
node: select$
|
|
8991
|
+
node: select$3e(luvio, resourceParams),
|
|
8992
8992
|
variables: {},
|
|
8993
8993
|
}, snapshotRefresh);
|
|
8994
8994
|
return snapshot;
|
|
@@ -9021,7 +9021,7 @@ function ingestError$N(luvio, params, error, snapshotRefresh) {
|
|
|
9021
9021
|
const storeMetadataParams = {
|
|
9022
9022
|
ttl: TTL$E,
|
|
9023
9023
|
namespace: keyPrefix,
|
|
9024
|
-
version: VERSION$
|
|
9024
|
+
version: VERSION$2E,
|
|
9025
9025
|
representationName: RepresentationType$Z
|
|
9026
9026
|
};
|
|
9027
9027
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -9094,8 +9094,8 @@ function isErrorSnapshot(snapshot) {
|
|
|
9094
9094
|
return snapshot.state === 'Error';
|
|
9095
9095
|
}
|
|
9096
9096
|
|
|
9097
|
-
const VERSION$
|
|
9098
|
-
function validate$
|
|
9097
|
+
const VERSION$2A = "3529c5f7d0eb2206c90a52c6d9f721d4";
|
|
9098
|
+
function validate$1V(obj, path = 'ListViewSummaryRepresentation') {
|
|
9099
9099
|
const v_error = (() => {
|
|
9100
9100
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9101
9101
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9157,10 +9157,10 @@ function keyBuilderFromType$y(luvio, object) {
|
|
|
9157
9157
|
function normalize$N(input, existing, path, luvio, store, timestamp) {
|
|
9158
9158
|
return input;
|
|
9159
9159
|
}
|
|
9160
|
-
const select$
|
|
9160
|
+
const select$3d = function ListViewSummaryRepresentationSelect() {
|
|
9161
9161
|
return {
|
|
9162
9162
|
kind: 'Fragment',
|
|
9163
|
-
version: VERSION$
|
|
9163
|
+
version: VERSION$2A,
|
|
9164
9164
|
private: [],
|
|
9165
9165
|
selections: [
|
|
9166
9166
|
{
|
|
@@ -9182,7 +9182,7 @@ const select$3c = function ListViewSummaryRepresentationSelect() {
|
|
|
9182
9182
|
]
|
|
9183
9183
|
};
|
|
9184
9184
|
};
|
|
9185
|
-
function equals$
|
|
9185
|
+
function equals$14(existing, incoming) {
|
|
9186
9186
|
const existing_apiName = existing.apiName;
|
|
9187
9187
|
const incoming_apiName = incoming.apiName;
|
|
9188
9188
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -9207,14 +9207,14 @@ function equals$13(existing, incoming) {
|
|
|
9207
9207
|
}
|
|
9208
9208
|
const ingest$27 = function ListViewSummaryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
9209
9209
|
if (process.env.NODE_ENV !== 'production') {
|
|
9210
|
-
const validateError = validate$
|
|
9210
|
+
const validateError = validate$1V(input);
|
|
9211
9211
|
if (validateError !== null) {
|
|
9212
9212
|
throw validateError;
|
|
9213
9213
|
}
|
|
9214
9214
|
}
|
|
9215
9215
|
const key = keyBuilderFromType$y(luvio, input);
|
|
9216
9216
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
9217
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$N, "UiApi", VERSION$
|
|
9217
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$N, "UiApi", VERSION$2A, RepresentationType$V, equals$14);
|
|
9218
9218
|
return createLink$1(key);
|
|
9219
9219
|
};
|
|
9220
9220
|
function getTypeCacheKeys$2a(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -9227,8 +9227,8 @@ function getTypeCacheKeys$2a(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
9227
9227
|
});
|
|
9228
9228
|
}
|
|
9229
9229
|
|
|
9230
|
-
const VERSION$
|
|
9231
|
-
function validate$
|
|
9230
|
+
const VERSION$2z = "f4c79fe066da3558499d5ee88c72abcd";
|
|
9231
|
+
function validate$1U(obj, path = 'ListViewSummaryCollectionRepresentation') {
|
|
9232
9232
|
const v_error = (() => {
|
|
9233
9233
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
9234
9234
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -9444,12 +9444,12 @@ function normalize$M(input, existing, path, luvio, store, timestamp) {
|
|
|
9444
9444
|
}
|
|
9445
9445
|
return input;
|
|
9446
9446
|
}
|
|
9447
|
-
const select$
|
|
9447
|
+
const select$3c = function ListViewSummaryCollectionRepresentationSelect(paginationParams) {
|
|
9448
9448
|
return {
|
|
9449
9449
|
kind: 'Fragment',
|
|
9450
9450
|
reader: true,
|
|
9451
9451
|
synthetic: false,
|
|
9452
|
-
version: VERSION$
|
|
9452
|
+
version: VERSION$2z,
|
|
9453
9453
|
read: (source, reader) => {
|
|
9454
9454
|
const sink = {};
|
|
9455
9455
|
if (paginationParams === undefined) {
|
|
@@ -9469,7 +9469,7 @@ const select$3b = function ListViewSummaryCollectionRepresentationSelect(paginat
|
|
|
9469
9469
|
reader.readSingleLink(i, {
|
|
9470
9470
|
name: 'lists',
|
|
9471
9471
|
kind: 'Link',
|
|
9472
|
-
fragment: select$
|
|
9472
|
+
fragment: select$3d()
|
|
9473
9473
|
}, itemsSource, allSink, i - startOffset);
|
|
9474
9474
|
if (reader.getIsDataMissing() === false) {
|
|
9475
9475
|
itemsSink[i - startOffset] = allSink[i - startOffset];
|
|
@@ -9537,7 +9537,7 @@ function getPageMetadata$2(paginationMetadata, paginationParams) {
|
|
|
9537
9537
|
metadataProperties.count = endOffset - startOffset;
|
|
9538
9538
|
return sink;
|
|
9539
9539
|
}
|
|
9540
|
-
function equals$
|
|
9540
|
+
function equals$13(existing, incoming) {
|
|
9541
9541
|
const existing_recentListsOnly = existing.recentListsOnly;
|
|
9542
9542
|
const incoming_recentListsOnly = incoming.recentListsOnly;
|
|
9543
9543
|
if (!(existing_recentListsOnly === incoming_recentListsOnly)) {
|
|
@@ -9612,7 +9612,7 @@ function equals$12(existing, incoming) {
|
|
|
9612
9612
|
}
|
|
9613
9613
|
const ingest$26 = function ListViewSummaryCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
9614
9614
|
if (process.env.NODE_ENV !== 'production') {
|
|
9615
|
-
const validateError = validate$
|
|
9615
|
+
const validateError = validate$1U(input);
|
|
9616
9616
|
if (validateError !== null) {
|
|
9617
9617
|
throw validateError;
|
|
9618
9618
|
}
|
|
@@ -9671,14 +9671,14 @@ const ingest$26 = function ListViewSummaryCollectionRepresentationIngest(input,
|
|
|
9671
9671
|
...existingRecord.lists.slice(nextOffset),
|
|
9672
9672
|
];
|
|
9673
9673
|
}
|
|
9674
|
-
if (existingRecord === undefined || equals$
|
|
9674
|
+
if (existingRecord === undefined || equals$13(existingRecord, incomingRecord) === false) {
|
|
9675
9675
|
luvio.storePublish(key, incomingRecord);
|
|
9676
9676
|
}
|
|
9677
9677
|
if (ttlToUse !== undefined) {
|
|
9678
9678
|
const storeMetadataParams = {
|
|
9679
9679
|
ttl: ttlToUse,
|
|
9680
9680
|
namespace: "UiApi",
|
|
9681
|
-
version: VERSION$
|
|
9681
|
+
version: VERSION$2z,
|
|
9682
9682
|
representationName: RepresentationType$U,
|
|
9683
9683
|
ingestionTimestamp: timestamp,
|
|
9684
9684
|
};
|
|
@@ -9726,9 +9726,9 @@ function createPaginationParams$3(params) {
|
|
|
9726
9726
|
pageSize: queryParams.pageSize === undefined ? 20 : queryParams.pageSize
|
|
9727
9727
|
};
|
|
9728
9728
|
}
|
|
9729
|
-
function select$
|
|
9729
|
+
function select$3b(luvio, params) {
|
|
9730
9730
|
const paginationParams = createPaginationParams$3(params);
|
|
9731
|
-
return select$
|
|
9731
|
+
return select$3c(paginationParams);
|
|
9732
9732
|
}
|
|
9733
9733
|
function keyBuilder$3m(luvio, params) {
|
|
9734
9734
|
return keyBuilder$3n(luvio, {
|
|
@@ -9746,7 +9746,7 @@ function ingestSuccess$T(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
9746
9746
|
luvio.storeIngest(key, ingest$26, body);
|
|
9747
9747
|
const snapshot = luvio.storeLookup({
|
|
9748
9748
|
recordId: key,
|
|
9749
|
-
node: select$
|
|
9749
|
+
node: select$3b(luvio, resourceParams),
|
|
9750
9750
|
variables: {},
|
|
9751
9751
|
}, snapshotRefresh);
|
|
9752
9752
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -9812,7 +9812,7 @@ function validateAdapterConfig$19(untrustedConfig, configPropertyNames) {
|
|
|
9812
9812
|
}
|
|
9813
9813
|
function adapterFragment$L(luvio, config) {
|
|
9814
9814
|
const resourceParams = createResourceParams$11(config);
|
|
9815
|
-
return select$
|
|
9815
|
+
return select$3b(luvio, resourceParams);
|
|
9816
9816
|
}
|
|
9817
9817
|
function onFetchResponseSuccess$P(luvio, config, resourceParams, response) {
|
|
9818
9818
|
const snapshot = ingestSuccess$T(luvio, resourceParams, response, {
|
|
@@ -9880,7 +9880,7 @@ function getPaginationMetadata$3(luvio, resourceParams) {
|
|
|
9880
9880
|
recordId: key,
|
|
9881
9881
|
node: {
|
|
9882
9882
|
kind: 'Fragment',
|
|
9883
|
-
version: VERSION$
|
|
9883
|
+
version: VERSION$2z,
|
|
9884
9884
|
private: [],
|
|
9885
9885
|
selections: [
|
|
9886
9886
|
{
|
|
@@ -10070,7 +10070,7 @@ function buildListUiFragment$1(config, fields) {
|
|
|
10070
10070
|
kind: 'Fragment',
|
|
10071
10071
|
private: ['eTag', 'weakEtag'],
|
|
10072
10072
|
selections: buildSelectionFromFields(...fields.getRecordSelectionFieldSets()),
|
|
10073
|
-
version: VERSION$
|
|
10073
|
+
version: VERSION$2G,
|
|
10074
10074
|
},
|
|
10075
10075
|
},
|
|
10076
10076
|
};
|
|
@@ -10389,7 +10389,7 @@ function buildListUiFragment(config, context, fields) {
|
|
|
10389
10389
|
kind: 'Fragment',
|
|
10390
10390
|
private: ['eTag', 'weakEtag'],
|
|
10391
10391
|
selections: buildSelectionFromFields(...fields.getRecordSelectionFieldSets()),
|
|
10392
|
-
version: VERSION$
|
|
10392
|
+
version: VERSION$2G,
|
|
10393
10393
|
},
|
|
10394
10394
|
},
|
|
10395
10395
|
};
|
|
@@ -10796,7 +10796,7 @@ const factory$j = (luvio) => {
|
|
|
10796
10796
|
}, { contextId: contextId$5 });
|
|
10797
10797
|
};
|
|
10798
10798
|
|
|
10799
|
-
function validate$
|
|
10799
|
+
function validate$1T(obj, path = 'ChildRelationshipRepresentation') {
|
|
10800
10800
|
const v_error = (() => {
|
|
10801
10801
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10802
10802
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10844,7 +10844,7 @@ function validate$1S(obj, path = 'ChildRelationshipRepresentation') {
|
|
|
10844
10844
|
return v_error === undefined ? null : v_error;
|
|
10845
10845
|
}
|
|
10846
10846
|
|
|
10847
|
-
function validate$
|
|
10847
|
+
function validate$1S(obj, path = 'FilteredLookupInfoRepresentation') {
|
|
10848
10848
|
const v_error = (() => {
|
|
10849
10849
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10850
10850
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10875,7 +10875,7 @@ function validate$1R(obj, path = 'FilteredLookupInfoRepresentation') {
|
|
|
10875
10875
|
return v_error === undefined ? null : v_error;
|
|
10876
10876
|
}
|
|
10877
10877
|
|
|
10878
|
-
function validate$
|
|
10878
|
+
function validate$1R(obj, path = 'ReferenceToInfoRepresentation') {
|
|
10879
10879
|
const v_error = (() => {
|
|
10880
10880
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10881
10881
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -10901,7 +10901,7 @@ function validate$1Q(obj, path = 'ReferenceToInfoRepresentation') {
|
|
|
10901
10901
|
return v_error === undefined ? null : v_error;
|
|
10902
10902
|
}
|
|
10903
10903
|
|
|
10904
|
-
function validate$
|
|
10904
|
+
function validate$1Q(obj, path = 'FieldRepresentation') {
|
|
10905
10905
|
const v_error = (() => {
|
|
10906
10906
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
10907
10907
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11066,7 +11066,7 @@ function validate$1P(obj, path = 'FieldRepresentation') {
|
|
|
11066
11066
|
const path_filteredLookupInfo = path + '.filteredLookupInfo';
|
|
11067
11067
|
let obj_filteredLookupInfo_union0 = null;
|
|
11068
11068
|
const obj_filteredLookupInfo_union0_error = (() => {
|
|
11069
|
-
const referencepath_filteredLookupInfoValidationError = validate$
|
|
11069
|
+
const referencepath_filteredLookupInfoValidationError = validate$1S(obj_filteredLookupInfo, path_filteredLookupInfo);
|
|
11070
11070
|
if (referencepath_filteredLookupInfoValidationError !== null) {
|
|
11071
11071
|
let message = 'Object doesn\'t match FilteredLookupInfoRepresentation (at "' + path_filteredLookupInfo + '")\n';
|
|
11072
11072
|
message += referencepath_filteredLookupInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11217,7 +11217,7 @@ function validate$1P(obj, path = 'FieldRepresentation') {
|
|
|
11217
11217
|
for (let i = 0; i < obj_referenceToInfos.length; i++) {
|
|
11218
11218
|
const obj_referenceToInfos_item = obj_referenceToInfos[i];
|
|
11219
11219
|
const path_referenceToInfos_item = path_referenceToInfos + '[' + i + ']';
|
|
11220
|
-
const referencepath_referenceToInfos_itemValidationError = validate$
|
|
11220
|
+
const referencepath_referenceToInfos_itemValidationError = validate$1R(obj_referenceToInfos_item, path_referenceToInfos_item);
|
|
11221
11221
|
if (referencepath_referenceToInfos_itemValidationError !== null) {
|
|
11222
11222
|
let message = 'Object doesn\'t match ReferenceToInfoRepresentation (at "' + path_referenceToInfos_item + '")\n';
|
|
11223
11223
|
message += referencepath_referenceToInfos_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11284,7 +11284,7 @@ function validate$1P(obj, path = 'FieldRepresentation') {
|
|
|
11284
11284
|
return v_error === undefined ? null : v_error;
|
|
11285
11285
|
}
|
|
11286
11286
|
|
|
11287
|
-
function validate$
|
|
11287
|
+
function validate$1P(obj, path = 'ThemeInfoRepresentation') {
|
|
11288
11288
|
const v_error = (() => {
|
|
11289
11289
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11290
11290
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11325,8 +11325,8 @@ function validate$1O(obj, path = 'ThemeInfoRepresentation') {
|
|
|
11325
11325
|
}
|
|
11326
11326
|
|
|
11327
11327
|
const TTL$D = 900000;
|
|
11328
|
-
const VERSION$
|
|
11329
|
-
function validate$
|
|
11328
|
+
const VERSION$2y = "2302a71ca718abb60353eb88dedb1c12";
|
|
11329
|
+
function validate$1O(obj, path = 'ObjectInfoRepresentation') {
|
|
11330
11330
|
const v_error = (() => {
|
|
11331
11331
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11332
11332
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11396,7 +11396,7 @@ function validate$1N(obj, path = 'ObjectInfoRepresentation') {
|
|
|
11396
11396
|
for (let i = 0; i < obj_childRelationships.length; i++) {
|
|
11397
11397
|
const obj_childRelationships_item = obj_childRelationships[i];
|
|
11398
11398
|
const path_childRelationships_item = path_childRelationships + '[' + i + ']';
|
|
11399
|
-
const referencepath_childRelationships_itemValidationError = validate$
|
|
11399
|
+
const referencepath_childRelationships_itemValidationError = validate$1T(obj_childRelationships_item, path_childRelationships_item);
|
|
11400
11400
|
if (referencepath_childRelationships_itemValidationError !== null) {
|
|
11401
11401
|
let message = 'Object doesn\'t match ChildRelationshipRepresentation (at "' + path_childRelationships_item + '")\n';
|
|
11402
11402
|
message += referencepath_childRelationships_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11483,7 +11483,7 @@ function validate$1N(obj, path = 'ObjectInfoRepresentation') {
|
|
|
11483
11483
|
const key = obj_fields_keys[i];
|
|
11484
11484
|
const obj_fields_prop = obj_fields[key];
|
|
11485
11485
|
const path_fields_prop = path_fields + '["' + key + '"]';
|
|
11486
|
-
const referencepath_fields_propValidationError = validate$
|
|
11486
|
+
const referencepath_fields_propValidationError = validate$1Q(obj_fields_prop, path_fields_prop);
|
|
11487
11487
|
if (referencepath_fields_propValidationError !== null) {
|
|
11488
11488
|
let message = 'Object doesn\'t match FieldRepresentation (at "' + path_fields_prop + '")\n';
|
|
11489
11489
|
message += referencepath_fields_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11563,7 +11563,7 @@ function validate$1N(obj, path = 'ObjectInfoRepresentation') {
|
|
|
11563
11563
|
const key = obj_recordTypeInfos_keys[i];
|
|
11564
11564
|
const obj_recordTypeInfos_prop = obj_recordTypeInfos[key];
|
|
11565
11565
|
const path_recordTypeInfos_prop = path_recordTypeInfos + '["' + key + '"]';
|
|
11566
|
-
const referencepath_recordTypeInfos_propValidationError = validate$
|
|
11566
|
+
const referencepath_recordTypeInfos_propValidationError = validate$21(obj_recordTypeInfos_prop, path_recordTypeInfos_prop);
|
|
11567
11567
|
if (referencepath_recordTypeInfos_propValidationError !== null) {
|
|
11568
11568
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfos_prop + '")\n';
|
|
11569
11569
|
message += referencepath_recordTypeInfos_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11584,7 +11584,7 @@ function validate$1N(obj, path = 'ObjectInfoRepresentation') {
|
|
|
11584
11584
|
const path_themeInfo = path + '.themeInfo';
|
|
11585
11585
|
let obj_themeInfo_union0 = null;
|
|
11586
11586
|
const obj_themeInfo_union0_error = (() => {
|
|
11587
|
-
const referencepath_themeInfoValidationError = validate$
|
|
11587
|
+
const referencepath_themeInfoValidationError = validate$1P(obj_themeInfo, path_themeInfo);
|
|
11588
11588
|
if (referencepath_themeInfoValidationError !== null) {
|
|
11589
11589
|
let message = 'Object doesn\'t match ThemeInfoRepresentation (at "' + path_themeInfo + '")\n';
|
|
11590
11590
|
message += referencepath_themeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -11630,10 +11630,10 @@ function keyBuilderFromType$w(luvio, object) {
|
|
|
11630
11630
|
function normalize$L(input, existing, path, luvio, store, timestamp) {
|
|
11631
11631
|
return input;
|
|
11632
11632
|
}
|
|
11633
|
-
const select$
|
|
11633
|
+
const select$3a = function ObjectInfoRepresentationSelect() {
|
|
11634
11634
|
return {
|
|
11635
11635
|
kind: 'Fragment',
|
|
11636
|
-
version: VERSION$
|
|
11636
|
+
version: VERSION$2y,
|
|
11637
11637
|
private: [
|
|
11638
11638
|
'eTag'
|
|
11639
11639
|
],
|
|
@@ -11743,7 +11743,7 @@ const select$39 = function ObjectInfoRepresentationSelect() {
|
|
|
11743
11743
|
]
|
|
11744
11744
|
};
|
|
11745
11745
|
};
|
|
11746
|
-
function equals$
|
|
11746
|
+
function equals$12(existing, incoming) {
|
|
11747
11747
|
if (existing.eTag !== incoming.eTag) {
|
|
11748
11748
|
return false;
|
|
11749
11749
|
}
|
|
@@ -11751,14 +11751,14 @@ function equals$11(existing, incoming) {
|
|
|
11751
11751
|
}
|
|
11752
11752
|
const ingest$25 = function ObjectInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
11753
11753
|
if (process.env.NODE_ENV !== 'production') {
|
|
11754
|
-
const validateError = validate$
|
|
11754
|
+
const validateError = validate$1O(input);
|
|
11755
11755
|
if (validateError !== null) {
|
|
11756
11756
|
throw validateError;
|
|
11757
11757
|
}
|
|
11758
11758
|
}
|
|
11759
11759
|
const key = keyBuilderFromType$w(luvio, input);
|
|
11760
11760
|
const ttlToUse = TTL$D;
|
|
11761
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$L, "UiApi", VERSION$
|
|
11761
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$L, "UiApi", VERSION$2y, RepresentationType$T, equals$12);
|
|
11762
11762
|
return createLink$1(key);
|
|
11763
11763
|
};
|
|
11764
11764
|
function getTypeCacheKeys$28(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -11771,8 +11771,8 @@ function getTypeCacheKeys$28(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
11771
11771
|
});
|
|
11772
11772
|
}
|
|
11773
11773
|
|
|
11774
|
-
function select$
|
|
11775
|
-
return select$
|
|
11774
|
+
function select$39(luvio, params) {
|
|
11775
|
+
return select$3a();
|
|
11776
11776
|
}
|
|
11777
11777
|
function keyBuilder$3i(luvio, params) {
|
|
11778
11778
|
return keyBuilder$3j(luvio, {
|
|
@@ -11788,7 +11788,7 @@ function ingestSuccess$S(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
11788
11788
|
luvio.storeIngest(key, ingest$25, body);
|
|
11789
11789
|
const snapshot = luvio.storeLookup({
|
|
11790
11790
|
recordId: key,
|
|
11791
|
-
node: select$
|
|
11791
|
+
node: select$39(),
|
|
11792
11792
|
variables: {},
|
|
11793
11793
|
}, snapshotRefresh);
|
|
11794
11794
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -11805,7 +11805,7 @@ function ingestError$L(luvio, params, error, snapshotRefresh) {
|
|
|
11805
11805
|
const storeMetadataParams = {
|
|
11806
11806
|
ttl: TTL$D,
|
|
11807
11807
|
namespace: keyPrefix,
|
|
11808
|
-
version: VERSION$
|
|
11808
|
+
version: VERSION$2y,
|
|
11809
11809
|
representationName: RepresentationType$T
|
|
11810
11810
|
};
|
|
11811
11811
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -11856,7 +11856,7 @@ function validateAdapterConfig$17(untrustedConfig, configPropertyNames) {
|
|
|
11856
11856
|
}
|
|
11857
11857
|
function adapterFragment$K(luvio, config) {
|
|
11858
11858
|
createResourceParams$$(config);
|
|
11859
|
-
return select$
|
|
11859
|
+
return select$39();
|
|
11860
11860
|
}
|
|
11861
11861
|
function onFetchResponseSuccess$O(luvio, config, resourceParams, response) {
|
|
11862
11862
|
const snapshot = ingestSuccess$S(luvio, resourceParams, response, {
|
|
@@ -11912,7 +11912,7 @@ const getObjectInfoAdapterFactory = (luvio) => function UiApi__getObjectInfo(unt
|
|
|
11912
11912
|
buildCachedSnapshotCachePolicy$R, buildNetworkSnapshotCachePolicy$S);
|
|
11913
11913
|
};
|
|
11914
11914
|
|
|
11915
|
-
function validate$
|
|
11915
|
+
function validate$1N(obj, path = 'RecordLayoutSaveOptionRepresentation') {
|
|
11916
11916
|
const v_error = (() => {
|
|
11917
11917
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11918
11918
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -11960,7 +11960,7 @@ var DiscriminatorValues$5;
|
|
|
11960
11960
|
DiscriminatorValues["Field"] = "Field";
|
|
11961
11961
|
DiscriminatorValues["CustomLink"] = "CustomLink";
|
|
11962
11962
|
})(DiscriminatorValues$5 || (DiscriminatorValues$5 = {}));
|
|
11963
|
-
function validate$
|
|
11963
|
+
function validate$1M(obj, path = 'AbstractRecordLayoutComponentRepresentation') {
|
|
11964
11964
|
const v_error = (() => {
|
|
11965
11965
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
11966
11966
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -12000,7 +12000,7 @@ function validate$1L(obj, path = 'AbstractRecordLayoutComponentRepresentation')
|
|
|
12000
12000
|
return v_error === undefined ? null : v_error;
|
|
12001
12001
|
}
|
|
12002
12002
|
|
|
12003
|
-
function validate$
|
|
12003
|
+
function validate$1L(obj, path = 'RecordLayoutItemRepresentation') {
|
|
12004
12004
|
const v_error = (() => {
|
|
12005
12005
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
12006
12006
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -12028,7 +12028,7 @@ function validate$1K(obj, path = 'RecordLayoutItemRepresentation') {
|
|
|
12028
12028
|
for (let i = 0; i < obj_layoutComponents.length; i++) {
|
|
12029
12029
|
const obj_layoutComponents_item = obj_layoutComponents[i];
|
|
12030
12030
|
const path_layoutComponents_item = path_layoutComponents + '[' + i + ']';
|
|
12031
|
-
const referencepath_layoutComponents_itemValidationError = validate$
|
|
12031
|
+
const referencepath_layoutComponents_itemValidationError = validate$1M(obj_layoutComponents_item, path_layoutComponents_item);
|
|
12032
12032
|
if (referencepath_layoutComponents_itemValidationError !== null) {
|
|
12033
12033
|
let message = 'Object doesn\'t match AbstractRecordLayoutComponentRepresentation (at "' + path_layoutComponents_item + '")\n';
|
|
12034
12034
|
message += referencepath_layoutComponents_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -12075,7 +12075,7 @@ function validate$1K(obj, path = 'RecordLayoutItemRepresentation') {
|
|
|
12075
12075
|
return v_error === undefined ? null : v_error;
|
|
12076
12076
|
}
|
|
12077
12077
|
|
|
12078
|
-
function validate$
|
|
12078
|
+
function validate$1K(obj, path = 'RecordLayoutRowRepresentation') {
|
|
12079
12079
|
const v_error = (() => {
|
|
12080
12080
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
12081
12081
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -12088,7 +12088,7 @@ function validate$1J(obj, path = 'RecordLayoutRowRepresentation') {
|
|
|
12088
12088
|
for (let i = 0; i < obj_layoutItems.length; i++) {
|
|
12089
12089
|
const obj_layoutItems_item = obj_layoutItems[i];
|
|
12090
12090
|
const path_layoutItems_item = path_layoutItems + '[' + i + ']';
|
|
12091
|
-
const referencepath_layoutItems_itemValidationError = validate$
|
|
12091
|
+
const referencepath_layoutItems_itemValidationError = validate$1L(obj_layoutItems_item, path_layoutItems_item);
|
|
12092
12092
|
if (referencepath_layoutItems_itemValidationError !== null) {
|
|
12093
12093
|
let message = 'Object doesn\'t match RecordLayoutItemRepresentation (at "' + path_layoutItems_item + '")\n';
|
|
12094
12094
|
message += referencepath_layoutItems_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -12099,7 +12099,7 @@ function validate$1J(obj, path = 'RecordLayoutRowRepresentation') {
|
|
|
12099
12099
|
return v_error === undefined ? null : v_error;
|
|
12100
12100
|
}
|
|
12101
12101
|
|
|
12102
|
-
function validate$
|
|
12102
|
+
function validate$1J(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
12103
12103
|
const v_error = (() => {
|
|
12104
12104
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
12105
12105
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -12174,7 +12174,7 @@ function validate$1I(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
|
12174
12174
|
for (let i = 0; i < obj_layoutRows.length; i++) {
|
|
12175
12175
|
const obj_layoutRows_item = obj_layoutRows[i];
|
|
12176
12176
|
const path_layoutRows_item = path_layoutRows + '[' + i + ']';
|
|
12177
|
-
const referencepath_layoutRows_itemValidationError = validate$
|
|
12177
|
+
const referencepath_layoutRows_itemValidationError = validate$1K(obj_layoutRows_item, path_layoutRows_item);
|
|
12178
12178
|
if (referencepath_layoutRows_itemValidationError !== null) {
|
|
12179
12179
|
let message = 'Object doesn\'t match RecordLayoutRowRepresentation (at "' + path_layoutRows_item + '")\n';
|
|
12180
12180
|
message += referencepath_layoutRows_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -12196,8 +12196,8 @@ function validate$1I(obj, path = 'RecordLayoutSectionRepresentation') {
|
|
|
12196
12196
|
}
|
|
12197
12197
|
|
|
12198
12198
|
const TTL$C = 900000;
|
|
12199
|
-
const VERSION$
|
|
12200
|
-
function validate$
|
|
12199
|
+
const VERSION$2x = "fb515e25a89ca1ec154dc865e72b913a";
|
|
12200
|
+
function validate$1I(obj, path = 'RecordLayoutRepresentation') {
|
|
12201
12201
|
const v_error = (() => {
|
|
12202
12202
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
12203
12203
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -12303,7 +12303,7 @@ function validate$1H(obj, path = 'RecordLayoutRepresentation') {
|
|
|
12303
12303
|
for (let i = 0; i < obj_saveOptions.length; i++) {
|
|
12304
12304
|
const obj_saveOptions_item = obj_saveOptions[i];
|
|
12305
12305
|
const path_saveOptions_item = path_saveOptions + '[' + i + ']';
|
|
12306
|
-
const referencepath_saveOptions_itemValidationError = validate$
|
|
12306
|
+
const referencepath_saveOptions_itemValidationError = validate$1N(obj_saveOptions_item, path_saveOptions_item);
|
|
12307
12307
|
if (referencepath_saveOptions_itemValidationError !== null) {
|
|
12308
12308
|
let message = 'Object doesn\'t match RecordLayoutSaveOptionRepresentation (at "' + path_saveOptions_item + '")\n';
|
|
12309
12309
|
message += referencepath_saveOptions_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -12318,7 +12318,7 @@ function validate$1H(obj, path = 'RecordLayoutRepresentation') {
|
|
|
12318
12318
|
for (let i = 0; i < obj_sections.length; i++) {
|
|
12319
12319
|
const obj_sections_item = obj_sections[i];
|
|
12320
12320
|
const path_sections_item = path_sections + '[' + i + ']';
|
|
12321
|
-
const referencepath_sections_itemValidationError = validate$
|
|
12321
|
+
const referencepath_sections_itemValidationError = validate$1J(obj_sections_item, path_sections_item);
|
|
12322
12322
|
if (referencepath_sections_itemValidationError !== null) {
|
|
12323
12323
|
let message = 'Object doesn\'t match RecordLayoutSectionRepresentation (at "' + path_sections_item + '")\n';
|
|
12324
12324
|
message += referencepath_sections_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -12344,10 +12344,10 @@ function keyBuilderFromType$v(luvio, object) {
|
|
|
12344
12344
|
function normalize$K(input, existing, path, luvio, store, timestamp) {
|
|
12345
12345
|
return input;
|
|
12346
12346
|
}
|
|
12347
|
-
const select$
|
|
12347
|
+
const select$38 = function RecordLayoutRepresentationSelect() {
|
|
12348
12348
|
return {
|
|
12349
12349
|
kind: 'Fragment',
|
|
12350
|
-
version: VERSION$
|
|
12350
|
+
version: VERSION$2x,
|
|
12351
12351
|
private: [
|
|
12352
12352
|
'eTag'
|
|
12353
12353
|
],
|
|
@@ -12385,7 +12385,7 @@ const select$37 = function RecordLayoutRepresentationSelect() {
|
|
|
12385
12385
|
]
|
|
12386
12386
|
};
|
|
12387
12387
|
};
|
|
12388
|
-
function equals$
|
|
12388
|
+
function equals$11(existing, incoming) {
|
|
12389
12389
|
if (existing.eTag !== incoming.eTag) {
|
|
12390
12390
|
return false;
|
|
12391
12391
|
}
|
|
@@ -12393,14 +12393,14 @@ function equals$10(existing, incoming) {
|
|
|
12393
12393
|
}
|
|
12394
12394
|
const ingest$24 = function RecordLayoutRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
12395
12395
|
if (process.env.NODE_ENV !== 'production') {
|
|
12396
|
-
const validateError = validate$
|
|
12396
|
+
const validateError = validate$1I(input);
|
|
12397
12397
|
if (validateError !== null) {
|
|
12398
12398
|
throw validateError;
|
|
12399
12399
|
}
|
|
12400
12400
|
}
|
|
12401
12401
|
const key = keyBuilderFromType$v(luvio, input);
|
|
12402
12402
|
const ttlToUse = TTL$C;
|
|
12403
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$K, "UiApi", VERSION$
|
|
12403
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$K, "UiApi", VERSION$2x, RepresentationType$S, equals$11);
|
|
12404
12404
|
return createLink$1(key);
|
|
12405
12405
|
};
|
|
12406
12406
|
function getTypeCacheKeys$27(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -12435,7 +12435,7 @@ function getRecordId18Array(value) {
|
|
|
12435
12435
|
return dedupe(array).sort();
|
|
12436
12436
|
}
|
|
12437
12437
|
|
|
12438
|
-
function validate$
|
|
12438
|
+
function validate$1H(obj, path = 'RecordLayoutSectionUserStateRepresentation') {
|
|
12439
12439
|
const v_error = (() => {
|
|
12440
12440
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
12441
12441
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -12455,8 +12455,8 @@ function validate$1G(obj, path = 'RecordLayoutSectionUserStateRepresentation') {
|
|
|
12455
12455
|
}
|
|
12456
12456
|
|
|
12457
12457
|
const TTL$B = 900000;
|
|
12458
|
-
const VERSION$
|
|
12459
|
-
function validate$
|
|
12458
|
+
const VERSION$2w = "12123f1aca1b5a48303b1d099f9f5629";
|
|
12459
|
+
function validate$1G(obj, path = 'RecordLayoutUserStateRepresentation') {
|
|
12460
12460
|
const v_error = (() => {
|
|
12461
12461
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
12462
12462
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -12517,7 +12517,7 @@ function validate$1F(obj, path = 'RecordLayoutUserStateRepresentation') {
|
|
|
12517
12517
|
const key = obj_sectionUserStates_keys[i];
|
|
12518
12518
|
const obj_sectionUserStates_prop = obj_sectionUserStates[key];
|
|
12519
12519
|
const path_sectionUserStates_prop = path_sectionUserStates + '["' + key + '"]';
|
|
12520
|
-
const referencepath_sectionUserStates_propValidationError = validate$
|
|
12520
|
+
const referencepath_sectionUserStates_propValidationError = validate$1H(obj_sectionUserStates_prop, path_sectionUserStates_prop);
|
|
12521
12521
|
if (referencepath_sectionUserStates_propValidationError !== null) {
|
|
12522
12522
|
let message = 'Object doesn\'t match RecordLayoutSectionUserStateRepresentation (at "' + path_sectionUserStates_prop + '")\n';
|
|
12523
12523
|
message += referencepath_sectionUserStates_propValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -12543,10 +12543,10 @@ function keyBuilderFromType$u(luvio, object) {
|
|
|
12543
12543
|
function normalize$J(input, existing, path, luvio, store, timestamp) {
|
|
12544
12544
|
return input;
|
|
12545
12545
|
}
|
|
12546
|
-
const select$
|
|
12546
|
+
const select$37 = function RecordLayoutUserStateRepresentationSelect() {
|
|
12547
12547
|
return {
|
|
12548
12548
|
kind: 'Fragment',
|
|
12549
|
-
version: VERSION$
|
|
12549
|
+
version: VERSION$2w,
|
|
12550
12550
|
private: [
|
|
12551
12551
|
'apiName',
|
|
12552
12552
|
'recordTypeId',
|
|
@@ -12566,7 +12566,7 @@ const select$36 = function RecordLayoutUserStateRepresentationSelect() {
|
|
|
12566
12566
|
]
|
|
12567
12567
|
};
|
|
12568
12568
|
};
|
|
12569
|
-
function equals
|
|
12569
|
+
function equals$10(existing, incoming) {
|
|
12570
12570
|
if (JSONStringify(incoming) !== JSONStringify(existing)) {
|
|
12571
12571
|
return false;
|
|
12572
12572
|
}
|
|
@@ -12574,14 +12574,14 @@ function equals$$(existing, incoming) {
|
|
|
12574
12574
|
}
|
|
12575
12575
|
const ingest$23 = function RecordLayoutUserStateRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
12576
12576
|
if (process.env.NODE_ENV !== 'production') {
|
|
12577
|
-
const validateError = validate$
|
|
12577
|
+
const validateError = validate$1G(input);
|
|
12578
12578
|
if (validateError !== null) {
|
|
12579
12579
|
throw validateError;
|
|
12580
12580
|
}
|
|
12581
12581
|
}
|
|
12582
12582
|
const key = keyBuilderFromType$u(luvio, input);
|
|
12583
12583
|
const ttlToUse = TTL$B;
|
|
12584
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$J, "UiApi", VERSION$
|
|
12584
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$J, "UiApi", VERSION$2w, RepresentationType$R, equals$10);
|
|
12585
12585
|
return createLink$1(key);
|
|
12586
12586
|
};
|
|
12587
12587
|
function getTypeCacheKeys$26(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -12595,8 +12595,8 @@ function getTypeCacheKeys$26(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
12595
12595
|
}
|
|
12596
12596
|
|
|
12597
12597
|
const TTL$A = 900000;
|
|
12598
|
-
const VERSION$
|
|
12599
|
-
function validate$
|
|
12598
|
+
const VERSION$2v = "49cdd4bc235a6094c3559cc7735b3b6d";
|
|
12599
|
+
function validate$1F(obj, path = 'RecordUiRepresentation') {
|
|
12600
12600
|
const v_error = (() => {
|
|
12601
12601
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
12602
12602
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -12793,7 +12793,7 @@ function normalize$I(input, existing, path, luvio, store, timestamp) {
|
|
|
12793
12793
|
}
|
|
12794
12794
|
return input;
|
|
12795
12795
|
}
|
|
12796
|
-
function equals
|
|
12796
|
+
function equals$$(existing, incoming) {
|
|
12797
12797
|
const existing_eTag = existing.eTag;
|
|
12798
12798
|
const incoming_eTag = incoming.eTag;
|
|
12799
12799
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -12858,14 +12858,14 @@ function equals$_(existing, incoming) {
|
|
|
12858
12858
|
}
|
|
12859
12859
|
const ingest$22 = function RecordUiRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
12860
12860
|
if (process.env.NODE_ENV !== 'production') {
|
|
12861
|
-
const validateError = validate$
|
|
12861
|
+
const validateError = validate$1F(input);
|
|
12862
12862
|
if (validateError !== null) {
|
|
12863
12863
|
throw validateError;
|
|
12864
12864
|
}
|
|
12865
12865
|
}
|
|
12866
12866
|
const key = path.fullPath;
|
|
12867
12867
|
const ttlToUse = TTL$A;
|
|
12868
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$I, "UiApi", VERSION$
|
|
12868
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$I, "UiApi", VERSION$2v, RepresentationType$Q, equals$$);
|
|
12869
12869
|
return createLink$1(key);
|
|
12870
12870
|
};
|
|
12871
12871
|
|
|
@@ -12913,9 +12913,9 @@ function validateAdapterConfig$16(untrustedConfig, configPropertyNames) {
|
|
|
12913
12913
|
return config;
|
|
12914
12914
|
}
|
|
12915
12915
|
|
|
12916
|
-
const layoutSelections$2 = select$
|
|
12917
|
-
const objectInfoPathSelection = select$
|
|
12918
|
-
const layoutUserStatePathSelector = select$
|
|
12916
|
+
const layoutSelections$2 = select$38();
|
|
12917
|
+
const objectInfoPathSelection = select$3a();
|
|
12918
|
+
const layoutUserStatePathSelector = select$37();
|
|
12919
12919
|
function buildRecordUiSelector(recordDefs, layoutTypes, modes, recordOptionalFields) {
|
|
12920
12920
|
const layoutTypeSelections = [];
|
|
12921
12921
|
for (let i = 0, len = layoutTypes.length; i < len; i += 1) {
|
|
@@ -12963,7 +12963,7 @@ function buildRecordUiSelector(recordDefs, layoutTypes, modes, recordOptionalFie
|
|
|
12963
12963
|
return {
|
|
12964
12964
|
kind: 'Fragment',
|
|
12965
12965
|
private: ['eTag'],
|
|
12966
|
-
version: VERSION$
|
|
12966
|
+
version: VERSION$2v,
|
|
12967
12967
|
selections: [
|
|
12968
12968
|
{
|
|
12969
12969
|
kind: 'Link',
|
|
@@ -13448,7 +13448,7 @@ var LayoutMode;
|
|
|
13448
13448
|
})(LayoutMode || (LayoutMode = {}));
|
|
13449
13449
|
|
|
13450
13450
|
const DEFAULT_MODE = LayoutMode.View;
|
|
13451
|
-
const layoutSelections$1 = select$
|
|
13451
|
+
const layoutSelections$1 = select$38();
|
|
13452
13452
|
function buildSnapshotRefresh$3(luvio, config) {
|
|
13453
13453
|
return {
|
|
13454
13454
|
config,
|
|
@@ -13677,7 +13677,7 @@ function buildRecordLayoutCachedSnapshot(context, storeLookup) {
|
|
|
13677
13677
|
kind: 'Fragment',
|
|
13678
13678
|
private: [],
|
|
13679
13679
|
selections: recordLayoutFragmentSelector,
|
|
13680
|
-
version: VERSION$
|
|
13680
|
+
version: VERSION$2G,
|
|
13681
13681
|
},
|
|
13682
13682
|
variables: {},
|
|
13683
13683
|
});
|
|
@@ -14036,8 +14036,8 @@ const notifyUpdateAvailableFactory$1 = (luvio) => {
|
|
|
14036
14036
|
};
|
|
14037
14037
|
};
|
|
14038
14038
|
|
|
14039
|
-
const VERSION$
|
|
14040
|
-
function validate$
|
|
14039
|
+
const VERSION$2u = "4aa37812ee37c752a099b29026217c85";
|
|
14040
|
+
function validate$1E(obj, path = 'ObjectInfoDirectoryEntryRepresentation') {
|
|
14041
14041
|
const v_error = (() => {
|
|
14042
14042
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14043
14043
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14116,10 +14116,10 @@ function keyBuilderFromType$t(luvio, object) {
|
|
|
14116
14116
|
function normalize$H(input, existing, path, luvio, store, timestamp) {
|
|
14117
14117
|
return input;
|
|
14118
14118
|
}
|
|
14119
|
-
const select$
|
|
14119
|
+
const select$36 = function ObjectInfoDirectoryEntryRepresentationSelect() {
|
|
14120
14120
|
return {
|
|
14121
14121
|
kind: 'Fragment',
|
|
14122
|
-
version: VERSION$
|
|
14122
|
+
version: VERSION$2u,
|
|
14123
14123
|
private: [],
|
|
14124
14124
|
selections: [
|
|
14125
14125
|
{
|
|
@@ -14150,7 +14150,7 @@ const select$35 = function ObjectInfoDirectoryEntryRepresentationSelect() {
|
|
|
14150
14150
|
]
|
|
14151
14151
|
};
|
|
14152
14152
|
};
|
|
14153
|
-
function equals$
|
|
14153
|
+
function equals$_(existing, incoming) {
|
|
14154
14154
|
const existing_apiName = existing.apiName;
|
|
14155
14155
|
const incoming_apiName = incoming.apiName;
|
|
14156
14156
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -14190,14 +14190,14 @@ function equals$Z(existing, incoming) {
|
|
|
14190
14190
|
}
|
|
14191
14191
|
const ingest$21 = function ObjectInfoDirectoryEntryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14192
14192
|
if (process.env.NODE_ENV !== 'production') {
|
|
14193
|
-
const validateError = validate$
|
|
14193
|
+
const validateError = validate$1E(input);
|
|
14194
14194
|
if (validateError !== null) {
|
|
14195
14195
|
throw validateError;
|
|
14196
14196
|
}
|
|
14197
14197
|
}
|
|
14198
14198
|
const key = keyBuilderFromType$t(luvio, input);
|
|
14199
14199
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
14200
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$H, "UiApi", VERSION$
|
|
14200
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$H, "UiApi", VERSION$2u, RepresentationType$P, equals$_);
|
|
14201
14201
|
return createLink$1(key);
|
|
14202
14202
|
};
|
|
14203
14203
|
function getTypeCacheKeys$25(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -14210,8 +14210,8 @@ function getTypeCacheKeys$25(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
14210
14210
|
});
|
|
14211
14211
|
}
|
|
14212
14212
|
|
|
14213
|
-
const VERSION$
|
|
14214
|
-
function validate$
|
|
14213
|
+
const VERSION$2t = "37fd8c0154ee743c9defbf03e9b4b067";
|
|
14214
|
+
function validate$1D(obj, path = 'ObjectInfoDirectoryRepresentation') {
|
|
14215
14215
|
const v_error = (() => {
|
|
14216
14216
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14217
14217
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14256,22 +14256,22 @@ function normalize$G(input, existing, path, luvio, store, timestamp) {
|
|
|
14256
14256
|
}
|
|
14257
14257
|
return input;
|
|
14258
14258
|
}
|
|
14259
|
-
const select$
|
|
14259
|
+
const select$35 = function ObjectInfoDirectoryRepresentationSelect() {
|
|
14260
14260
|
return {
|
|
14261
14261
|
kind: 'Fragment',
|
|
14262
|
-
version: VERSION$
|
|
14262
|
+
version: VERSION$2t,
|
|
14263
14263
|
private: [],
|
|
14264
14264
|
selections: [
|
|
14265
14265
|
{
|
|
14266
14266
|
name: 'objects',
|
|
14267
14267
|
kind: 'Link',
|
|
14268
14268
|
map: true,
|
|
14269
|
-
fragment: select$
|
|
14269
|
+
fragment: select$36()
|
|
14270
14270
|
}
|
|
14271
14271
|
]
|
|
14272
14272
|
};
|
|
14273
14273
|
};
|
|
14274
|
-
function equals$
|
|
14274
|
+
function equals$Z(existing, incoming) {
|
|
14275
14275
|
const existing_objects = existing.objects;
|
|
14276
14276
|
const incoming_objects = incoming.objects;
|
|
14277
14277
|
const equals_objects_props = equalsObject(existing_objects, incoming_objects, (existing_objects_prop, incoming_objects_prop) => {
|
|
@@ -14286,14 +14286,14 @@ function equals$Y(existing, incoming) {
|
|
|
14286
14286
|
}
|
|
14287
14287
|
const ingest$20 = function ObjectInfoDirectoryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14288
14288
|
if (process.env.NODE_ENV !== 'production') {
|
|
14289
|
-
const validateError = validate$
|
|
14289
|
+
const validateError = validate$1D(input);
|
|
14290
14290
|
if (validateError !== null) {
|
|
14291
14291
|
throw validateError;
|
|
14292
14292
|
}
|
|
14293
14293
|
}
|
|
14294
14294
|
const key = path.fullPath;
|
|
14295
14295
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
14296
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$G, "UiApi", VERSION$
|
|
14296
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$G, "UiApi", VERSION$2t, RepresentationType$O, equals$Z);
|
|
14297
14297
|
return createLink$1(key);
|
|
14298
14298
|
};
|
|
14299
14299
|
function getTypeCacheKeys$24(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -14313,8 +14313,8 @@ function getTypeCacheKeys$24(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
14313
14313
|
}
|
|
14314
14314
|
}
|
|
14315
14315
|
|
|
14316
|
-
const VERSION$
|
|
14317
|
-
function validate$
|
|
14316
|
+
const VERSION$2s = "7e00c51105cbf56a79ab8fcddf462c1e";
|
|
14317
|
+
function validate$1C(obj, path = 'QuickActionExecutionRepresentation') {
|
|
14318
14318
|
const v_error = (() => {
|
|
14319
14319
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14320
14320
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14412,10 +14412,10 @@ function keyBuilderFromType$s(luvio, object) {
|
|
|
14412
14412
|
function normalize$F(input, existing, path, luvio, store, timestamp) {
|
|
14413
14413
|
return input;
|
|
14414
14414
|
}
|
|
14415
|
-
const select$
|
|
14415
|
+
const select$34 = function QuickActionExecutionRepresentationSelect() {
|
|
14416
14416
|
return {
|
|
14417
14417
|
kind: 'Fragment',
|
|
14418
|
-
version: VERSION$
|
|
14418
|
+
version: VERSION$2s,
|
|
14419
14419
|
private: [
|
|
14420
14420
|
'eTag'
|
|
14421
14421
|
],
|
|
@@ -14447,7 +14447,7 @@ const select$33 = function QuickActionExecutionRepresentationSelect() {
|
|
|
14447
14447
|
]
|
|
14448
14448
|
};
|
|
14449
14449
|
};
|
|
14450
|
-
function equals$
|
|
14450
|
+
function equals$Y(existing, incoming) {
|
|
14451
14451
|
const existing_isCreated = existing.isCreated;
|
|
14452
14452
|
const incoming_isCreated = incoming.isCreated;
|
|
14453
14453
|
if (!(existing_isCreated === incoming_isCreated)) {
|
|
@@ -14487,14 +14487,14 @@ function equals$X(existing, incoming) {
|
|
|
14487
14487
|
}
|
|
14488
14488
|
const ingest$1$ = function QuickActionExecutionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
14489
14489
|
if (process.env.NODE_ENV !== 'production') {
|
|
14490
|
-
const validateError = validate$
|
|
14490
|
+
const validateError = validate$1C(input);
|
|
14491
14491
|
if (validateError !== null) {
|
|
14492
14492
|
throw validateError;
|
|
14493
14493
|
}
|
|
14494
14494
|
}
|
|
14495
14495
|
const key = keyBuilderFromType$s(luvio, input);
|
|
14496
14496
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
14497
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$F, "UiApi", VERSION$
|
|
14497
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$F, "UiApi", VERSION$2s, RepresentationType$N, equals$Y);
|
|
14498
14498
|
return createLink$1(key);
|
|
14499
14499
|
};
|
|
14500
14500
|
function getTypeCacheKeys$23(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -14508,8 +14508,8 @@ function getTypeCacheKeys$23(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
14508
14508
|
}
|
|
14509
14509
|
|
|
14510
14510
|
const TTL$z = 900000;
|
|
14511
|
-
const VERSION$
|
|
14512
|
-
function validate$
|
|
14511
|
+
const VERSION$2r = "993b0a7bce6056c4f57ed300ec153d9c";
|
|
14512
|
+
function validate$1B(obj, path = 'QuickActionDefaultsRepresentation') {
|
|
14513
14513
|
const v_error = (() => {
|
|
14514
14514
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14515
14515
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -14585,11 +14585,11 @@ const dynamicSelect$5 = function dynamicQuickActionDefaultsRepresentationSelect(
|
|
|
14585
14585
|
name: 'fields',
|
|
14586
14586
|
kind: 'Link',
|
|
14587
14587
|
map: true,
|
|
14588
|
-
fragment: select$
|
|
14588
|
+
fragment: select$3n()
|
|
14589
14589
|
} : params.fields;
|
|
14590
14590
|
return {
|
|
14591
14591
|
kind: 'Fragment',
|
|
14592
|
-
version: VERSION$
|
|
14592
|
+
version: VERSION$2r,
|
|
14593
14593
|
private: [
|
|
14594
14594
|
'eTag'
|
|
14595
14595
|
],
|
|
@@ -14606,7 +14606,7 @@ const dynamicSelect$5 = function dynamicQuickActionDefaultsRepresentationSelect(
|
|
|
14606
14606
|
]
|
|
14607
14607
|
};
|
|
14608
14608
|
};
|
|
14609
|
-
function equals$
|
|
14609
|
+
function equals$X(existing, incoming) {
|
|
14610
14610
|
const existing_actionApiName = existing.actionApiName;
|
|
14611
14611
|
const incoming_actionApiName = incoming.actionApiName;
|
|
14612
14612
|
if (!(existing_actionApiName === incoming_actionApiName)) {
|
|
@@ -14687,8 +14687,8 @@ function coerceFormFactor(form) {
|
|
|
14687
14687
|
return undefined;
|
|
14688
14688
|
}
|
|
14689
14689
|
|
|
14690
|
-
const VERSION$
|
|
14691
|
-
function validate$
|
|
14690
|
+
const VERSION$2q = "3f49d751896cf66e6e29788d8880e2cc";
|
|
14691
|
+
function validate$1A(obj, path = 'PlatformActionRepresentation') {
|
|
14692
14692
|
const v_error = (() => {
|
|
14693
14693
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
14694
14694
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15037,10 +15037,10 @@ function keyBuilderFromType$q(luvio, object) {
|
|
|
15037
15037
|
function normalize$E(input, existing, path, luvio, store, timestamp) {
|
|
15038
15038
|
return input;
|
|
15039
15039
|
}
|
|
15040
|
-
const select$
|
|
15040
|
+
const select$33 = function PlatformActionRepresentationSelect() {
|
|
15041
15041
|
return {
|
|
15042
15042
|
kind: 'Fragment',
|
|
15043
|
-
version: VERSION$
|
|
15043
|
+
version: VERSION$2q,
|
|
15044
15044
|
private: [
|
|
15045
15045
|
'id'
|
|
15046
15046
|
],
|
|
@@ -15120,7 +15120,7 @@ const select$32 = function PlatformActionRepresentationSelect() {
|
|
|
15120
15120
|
]
|
|
15121
15121
|
};
|
|
15122
15122
|
};
|
|
15123
|
-
function equals$
|
|
15123
|
+
function equals$W(existing, incoming) {
|
|
15124
15124
|
const existing_actionListContext = existing.actionListContext;
|
|
15125
15125
|
const incoming_actionListContext = incoming.actionListContext;
|
|
15126
15126
|
if (!(existing_actionListContext === incoming_actionListContext)) {
|
|
@@ -15220,14 +15220,14 @@ function equals$V(existing, incoming) {
|
|
|
15220
15220
|
}
|
|
15221
15221
|
const ingest$1_ = function PlatformActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15222
15222
|
if (process.env.NODE_ENV !== 'production') {
|
|
15223
|
-
const validateError = validate$
|
|
15223
|
+
const validateError = validate$1A(input);
|
|
15224
15224
|
if (validateError !== null) {
|
|
15225
15225
|
throw validateError;
|
|
15226
15226
|
}
|
|
15227
15227
|
}
|
|
15228
15228
|
const key = keyBuilderFromType$q(luvio, input);
|
|
15229
15229
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
15230
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$E, "UiApi", VERSION$
|
|
15230
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$E, "UiApi", VERSION$2q, RepresentationType$L, equals$W);
|
|
15231
15231
|
return createLink$1(key);
|
|
15232
15232
|
};
|
|
15233
15233
|
function getTypeCacheKeys$21(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -15240,8 +15240,8 @@ function getTypeCacheKeys$21(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
15240
15240
|
});
|
|
15241
15241
|
}
|
|
15242
15242
|
|
|
15243
|
-
const VERSION$
|
|
15244
|
-
function validate$
|
|
15243
|
+
const VERSION$2p = "378d506f563a4bd724b322d440df33d1";
|
|
15244
|
+
function validate$1z(obj, path = 'EntityActionRepresentation') {
|
|
15245
15245
|
const v_error = (() => {
|
|
15246
15246
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
15247
15247
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15307,10 +15307,10 @@ function normalize$D(input, existing, path, luvio, store, timestamp) {
|
|
|
15307
15307
|
}
|
|
15308
15308
|
return input;
|
|
15309
15309
|
}
|
|
15310
|
-
const select$
|
|
15310
|
+
const select$32 = function EntityActionRepresentationSelect() {
|
|
15311
15311
|
return {
|
|
15312
15312
|
kind: 'Fragment',
|
|
15313
|
-
version: VERSION$
|
|
15313
|
+
version: VERSION$2p,
|
|
15314
15314
|
private: [
|
|
15315
15315
|
'links',
|
|
15316
15316
|
'url'
|
|
@@ -15320,12 +15320,12 @@ const select$31 = function EntityActionRepresentationSelect() {
|
|
|
15320
15320
|
name: 'actions',
|
|
15321
15321
|
kind: 'Link',
|
|
15322
15322
|
plural: true,
|
|
15323
|
-
fragment: select$
|
|
15323
|
+
fragment: select$33()
|
|
15324
15324
|
}
|
|
15325
15325
|
]
|
|
15326
15326
|
};
|
|
15327
15327
|
};
|
|
15328
|
-
function equals$
|
|
15328
|
+
function equals$V(existing, incoming) {
|
|
15329
15329
|
const existing_url = existing.url;
|
|
15330
15330
|
const incoming_url = incoming.url;
|
|
15331
15331
|
if (!(existing_url === incoming_url)) {
|
|
@@ -15355,14 +15355,14 @@ function equals$U(existing, incoming) {
|
|
|
15355
15355
|
}
|
|
15356
15356
|
const ingest$1Z = function EntityActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15357
15357
|
if (process.env.NODE_ENV !== 'production') {
|
|
15358
|
-
const validateError = validate$
|
|
15358
|
+
const validateError = validate$1z(input);
|
|
15359
15359
|
if (validateError !== null) {
|
|
15360
15360
|
throw validateError;
|
|
15361
15361
|
}
|
|
15362
15362
|
}
|
|
15363
15363
|
const key = keyBuilderFromType$p(luvio, input);
|
|
15364
15364
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
15365
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$D, "UiApi", VERSION$
|
|
15365
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$D, "UiApi", VERSION$2p, RepresentationType$K, equals$V);
|
|
15366
15366
|
return createLink$1(key);
|
|
15367
15367
|
};
|
|
15368
15368
|
function getTypeCacheKeys$20(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -15380,8 +15380,8 @@ function getTypeCacheKeys$20(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
15380
15380
|
}
|
|
15381
15381
|
|
|
15382
15382
|
const TTL$y = 300000;
|
|
15383
|
-
const VERSION$
|
|
15384
|
-
function validate$
|
|
15383
|
+
const VERSION$2o = "e485d96c1402a9ca2f56e56485af0216";
|
|
15384
|
+
function validate$1y(obj, path = 'ActionRepresentation') {
|
|
15385
15385
|
const v_error = (() => {
|
|
15386
15386
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
15387
15387
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15436,10 +15436,10 @@ function normalize$C(input, existing, path, luvio, store, timestamp) {
|
|
|
15436
15436
|
}
|
|
15437
15437
|
return input;
|
|
15438
15438
|
}
|
|
15439
|
-
const select$
|
|
15439
|
+
const select$31 = function ActionRepresentationSelect() {
|
|
15440
15440
|
return {
|
|
15441
15441
|
kind: 'Fragment',
|
|
15442
|
-
version: VERSION$
|
|
15442
|
+
version: VERSION$2o,
|
|
15443
15443
|
private: [
|
|
15444
15444
|
'eTag',
|
|
15445
15445
|
'url'
|
|
@@ -15449,12 +15449,12 @@ const select$30 = function ActionRepresentationSelect() {
|
|
|
15449
15449
|
name: 'actions',
|
|
15450
15450
|
kind: 'Link',
|
|
15451
15451
|
map: true,
|
|
15452
|
-
fragment: select$
|
|
15452
|
+
fragment: select$32()
|
|
15453
15453
|
}
|
|
15454
15454
|
]
|
|
15455
15455
|
};
|
|
15456
15456
|
};
|
|
15457
|
-
function equals$
|
|
15457
|
+
function equals$U(existing, incoming) {
|
|
15458
15458
|
const existing_eTag = existing.eTag;
|
|
15459
15459
|
const incoming_eTag = incoming.eTag;
|
|
15460
15460
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -15479,14 +15479,14 @@ function equals$T(existing, incoming) {
|
|
|
15479
15479
|
}
|
|
15480
15480
|
const ingest$1Y = function ActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15481
15481
|
if (process.env.NODE_ENV !== 'production') {
|
|
15482
|
-
const validateError = validate$
|
|
15482
|
+
const validateError = validate$1y(input);
|
|
15483
15483
|
if (validateError !== null) {
|
|
15484
15484
|
throw validateError;
|
|
15485
15485
|
}
|
|
15486
15486
|
}
|
|
15487
15487
|
const key = path.fullPath;
|
|
15488
15488
|
const ttlToUse = TTL$y;
|
|
15489
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$C, "UiApi", VERSION$
|
|
15489
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$C, "UiApi", VERSION$2o, RepresentationType$J, equals$U);
|
|
15490
15490
|
return createLink$1(key);
|
|
15491
15491
|
};
|
|
15492
15492
|
function getTypeCacheKeys$1$(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -15506,8 +15506,8 @@ function getTypeCacheKeys$1$(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
15506
15506
|
}
|
|
15507
15507
|
}
|
|
15508
15508
|
|
|
15509
|
-
function select$
|
|
15510
|
-
return select$
|
|
15509
|
+
function select$30(luvio, params) {
|
|
15510
|
+
return select$31();
|
|
15511
15511
|
}
|
|
15512
15512
|
function keyBuilder$38(luvio, params) {
|
|
15513
15513
|
return keyPrefix + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'apiNames:' + params.queryParams.apiNames + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'retrievalMode:' + params.queryParams.retrievalMode + ',' + 'sections:' + params.queryParams.sections + ')';
|
|
@@ -15521,7 +15521,7 @@ function ingestSuccess$R(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
15521
15521
|
luvio.storeIngest(key, ingest$1Y, body);
|
|
15522
15522
|
const snapshot = luvio.storeLookup({
|
|
15523
15523
|
recordId: key,
|
|
15524
|
-
node: select$
|
|
15524
|
+
node: select$30(),
|
|
15525
15525
|
variables: {},
|
|
15526
15526
|
}, snapshotRefresh);
|
|
15527
15527
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -15538,7 +15538,7 @@ function ingestError$K(luvio, params, error, snapshotRefresh) {
|
|
|
15538
15538
|
const storeMetadataParams = {
|
|
15539
15539
|
ttl: TTL$y,
|
|
15540
15540
|
namespace: keyPrefix,
|
|
15541
|
-
version: VERSION$
|
|
15541
|
+
version: VERSION$2o,
|
|
15542
15542
|
representationName: RepresentationType$J
|
|
15543
15543
|
};
|
|
15544
15544
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -15593,7 +15593,7 @@ function validateAdapterConfig$15(untrustedConfig, configPropertyNames) {
|
|
|
15593
15593
|
}
|
|
15594
15594
|
function adapterFragment$J(luvio, config) {
|
|
15595
15595
|
createResourceParams$_(config);
|
|
15596
|
-
return select$
|
|
15596
|
+
return select$30();
|
|
15597
15597
|
}
|
|
15598
15598
|
function onFetchResponseSuccess$M(luvio, config, resourceParams, response) {
|
|
15599
15599
|
const snapshot = ingestSuccess$R(luvio, resourceParams, response, {
|
|
@@ -15650,8 +15650,8 @@ const getGlobalActionsAdapterFactory = (luvio) => function UiApi__getGlobalActio
|
|
|
15650
15650
|
};
|
|
15651
15651
|
|
|
15652
15652
|
const TTL$x = 900000;
|
|
15653
|
-
const VERSION$
|
|
15654
|
-
function validate$
|
|
15653
|
+
const VERSION$2n = "35f3eec8ce7f6001c6d5d17821b75bb9";
|
|
15654
|
+
function validate$1x(obj, path = 'QuickActionLayoutRepresentation') {
|
|
15655
15655
|
const v_error = (() => {
|
|
15656
15656
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
15657
15657
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -15668,7 +15668,7 @@ function validate$1w(obj, path = 'QuickActionLayoutRepresentation') {
|
|
|
15668
15668
|
}
|
|
15669
15669
|
const obj_layout = obj.layout;
|
|
15670
15670
|
const path_layout = path + '.layout';
|
|
15671
|
-
const referencepath_layoutValidationError = validate$
|
|
15671
|
+
const referencepath_layoutValidationError = validate$1I(obj_layout, path_layout);
|
|
15672
15672
|
if (referencepath_layoutValidationError !== null) {
|
|
15673
15673
|
let message = 'Object doesn\'t match RecordLayoutRepresentation (at "' + path_layout + '")\n';
|
|
15674
15674
|
message += referencepath_layoutValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -15690,10 +15690,10 @@ function keyBuilderFromType$o(luvio, object) {
|
|
|
15690
15690
|
function normalize$B(input, existing, path, luvio, store, timestamp) {
|
|
15691
15691
|
return input;
|
|
15692
15692
|
}
|
|
15693
|
-
const select$
|
|
15693
|
+
const select$2$ = function QuickActionLayoutRepresentationSelect() {
|
|
15694
15694
|
return {
|
|
15695
15695
|
kind: 'Fragment',
|
|
15696
|
-
version: VERSION$
|
|
15696
|
+
version: VERSION$2n,
|
|
15697
15697
|
private: [
|
|
15698
15698
|
'eTag'
|
|
15699
15699
|
],
|
|
@@ -15710,7 +15710,7 @@ const select$2_ = function QuickActionLayoutRepresentationSelect() {
|
|
|
15710
15710
|
]
|
|
15711
15711
|
};
|
|
15712
15712
|
};
|
|
15713
|
-
function equals$
|
|
15713
|
+
function equals$T(existing, incoming) {
|
|
15714
15714
|
if (existing.eTag !== incoming.eTag) {
|
|
15715
15715
|
return false;
|
|
15716
15716
|
}
|
|
@@ -15718,14 +15718,14 @@ function equals$S(existing, incoming) {
|
|
|
15718
15718
|
}
|
|
15719
15719
|
const ingest$1X = function QuickActionLayoutRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
15720
15720
|
if (process.env.NODE_ENV !== 'production') {
|
|
15721
|
-
const validateError = validate$
|
|
15721
|
+
const validateError = validate$1x(input);
|
|
15722
15722
|
if (validateError !== null) {
|
|
15723
15723
|
throw validateError;
|
|
15724
15724
|
}
|
|
15725
15725
|
}
|
|
15726
15726
|
const key = keyBuilderFromType$o(luvio, input);
|
|
15727
15727
|
const ttlToUse = TTL$x;
|
|
15728
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$B, "UiApi", VERSION$
|
|
15728
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$B, "UiApi", VERSION$2n, RepresentationType$I, equals$T);
|
|
15729
15729
|
return createLink$1(key);
|
|
15730
15730
|
};
|
|
15731
15731
|
function getTypeCacheKeys$1_(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -15738,8 +15738,8 @@ function getTypeCacheKeys$1_(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
15738
15738
|
});
|
|
15739
15739
|
}
|
|
15740
15740
|
|
|
15741
|
-
function select$
|
|
15742
|
-
return select$
|
|
15741
|
+
function select$2_(luvio, params) {
|
|
15742
|
+
return select$2$();
|
|
15743
15743
|
}
|
|
15744
15744
|
function keyBuilder$35(luvio, params) {
|
|
15745
15745
|
return keyBuilder$36(luvio, {
|
|
@@ -15755,7 +15755,7 @@ function ingestSuccess$Q(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
15755
15755
|
luvio.storeIngest(key, ingest$1X, body);
|
|
15756
15756
|
const snapshot = luvio.storeLookup({
|
|
15757
15757
|
recordId: key,
|
|
15758
|
-
node: select$
|
|
15758
|
+
node: select$2_(),
|
|
15759
15759
|
variables: {},
|
|
15760
15760
|
}, snapshotRefresh);
|
|
15761
15761
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -15772,7 +15772,7 @@ function ingestError$J(luvio, params, error, snapshotRefresh) {
|
|
|
15772
15772
|
const storeMetadataParams = {
|
|
15773
15773
|
ttl: TTL$x,
|
|
15774
15774
|
namespace: keyPrefix,
|
|
15775
|
-
version: VERSION$
|
|
15775
|
+
version: VERSION$2n,
|
|
15776
15776
|
representationName: RepresentationType$I
|
|
15777
15777
|
};
|
|
15778
15778
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -15824,7 +15824,7 @@ function validateAdapterConfig$14(untrustedConfig, configPropertyNames) {
|
|
|
15824
15824
|
}
|
|
15825
15825
|
function adapterFragment$I(luvio, config) {
|
|
15826
15826
|
createResourceParams$Z(config);
|
|
15827
|
-
return select$
|
|
15827
|
+
return select$2_();
|
|
15828
15828
|
}
|
|
15829
15829
|
function onFetchResponseSuccess$L(luvio, config, resourceParams, response) {
|
|
15830
15830
|
const snapshot = ingestSuccess$Q(luvio, resourceParams, response, {
|
|
@@ -15912,8 +15912,8 @@ function getSortedObjectApiNamesArray(value) {
|
|
|
15912
15912
|
return unsortedArray === undefined ? undefined : unsortedArray.sort();
|
|
15913
15913
|
}
|
|
15914
15914
|
|
|
15915
|
-
function select$
|
|
15916
|
-
return select$
|
|
15915
|
+
function select$2Z(luvio, params) {
|
|
15916
|
+
return select$31();
|
|
15917
15917
|
}
|
|
15918
15918
|
function keyBuilder$33(luvio, params) {
|
|
15919
15919
|
return keyPrefix + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'sections:' + params.queryParams.sections + ',' + 'objectApiNames:' + params.urlParams.objectApiNames + ')';
|
|
@@ -15927,7 +15927,7 @@ function ingestSuccess$P(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
15927
15927
|
luvio.storeIngest(key, ingest$1Y, body);
|
|
15928
15928
|
const snapshot = luvio.storeLookup({
|
|
15929
15929
|
recordId: key,
|
|
15930
|
-
node: select$
|
|
15930
|
+
node: select$2Z(),
|
|
15931
15931
|
variables: {},
|
|
15932
15932
|
}, snapshotRefresh);
|
|
15933
15933
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -15944,7 +15944,7 @@ function ingestError$I(luvio, params, error, snapshotRefresh) {
|
|
|
15944
15944
|
const storeMetadataParams = {
|
|
15945
15945
|
ttl: TTL$y,
|
|
15946
15946
|
namespace: keyPrefix,
|
|
15947
|
-
version: VERSION$
|
|
15947
|
+
version: VERSION$2o,
|
|
15948
15948
|
representationName: RepresentationType$J
|
|
15949
15949
|
};
|
|
15950
15950
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -15998,7 +15998,7 @@ function validateAdapterConfig$13(untrustedConfig, configPropertyNames) {
|
|
|
15998
15998
|
}
|
|
15999
15999
|
function adapterFragment$H(luvio, config) {
|
|
16000
16000
|
createResourceParams$Y(config);
|
|
16001
|
-
return select$
|
|
16001
|
+
return select$2Z();
|
|
16002
16002
|
}
|
|
16003
16003
|
function onFetchResponseSuccess$K(luvio, config, resourceParams, response) {
|
|
16004
16004
|
const snapshot = ingestSuccess$P(luvio, resourceParams, response, {
|
|
@@ -16054,8 +16054,8 @@ const getLookupActionsAdapterFactory = (luvio) => function UiApi__getLookupActio
|
|
|
16054
16054
|
buildCachedSnapshotCachePolicy$O, buildNetworkSnapshotCachePolicy$P);
|
|
16055
16055
|
};
|
|
16056
16056
|
|
|
16057
|
-
function select$
|
|
16058
|
-
return select$
|
|
16057
|
+
function select$2Y(luvio, params) {
|
|
16058
|
+
return select$31();
|
|
16059
16059
|
}
|
|
16060
16060
|
function keyBuilder$31(luvio, params) {
|
|
16061
16061
|
return keyPrefix + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'sections:' + params.queryParams.sections + ',' + 'objectApiName:' + params.urlParams.objectApiName + ')';
|
|
@@ -16069,7 +16069,7 @@ function ingestSuccess$O(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
16069
16069
|
luvio.storeIngest(key, ingest$1Y, body);
|
|
16070
16070
|
const snapshot = luvio.storeLookup({
|
|
16071
16071
|
recordId: key,
|
|
16072
|
-
node: select$
|
|
16072
|
+
node: select$2Y(),
|
|
16073
16073
|
variables: {},
|
|
16074
16074
|
}, snapshotRefresh);
|
|
16075
16075
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -16086,7 +16086,7 @@ function ingestError$H(luvio, params, error, snapshotRefresh) {
|
|
|
16086
16086
|
const storeMetadataParams = {
|
|
16087
16087
|
ttl: TTL$y,
|
|
16088
16088
|
namespace: keyPrefix,
|
|
16089
|
-
version: VERSION$
|
|
16089
|
+
version: VERSION$2o,
|
|
16090
16090
|
representationName: RepresentationType$J
|
|
16091
16091
|
};
|
|
16092
16092
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -16140,7 +16140,7 @@ function validateAdapterConfig$12(untrustedConfig, configPropertyNames) {
|
|
|
16140
16140
|
}
|
|
16141
16141
|
function adapterFragment$G(luvio, config) {
|
|
16142
16142
|
createResourceParams$X(config);
|
|
16143
|
-
return select$
|
|
16143
|
+
return select$2Y();
|
|
16144
16144
|
}
|
|
16145
16145
|
function onFetchResponseSuccess$J(luvio, config, resourceParams, response) {
|
|
16146
16146
|
const snapshot = ingestSuccess$O(luvio, resourceParams, response, {
|
|
@@ -16196,8 +16196,8 @@ const getObjectCreateActionsAdapterFactory = (luvio) => function UiApi__getObjec
|
|
|
16196
16196
|
buildCachedSnapshotCachePolicy$N, buildNetworkSnapshotCachePolicy$O);
|
|
16197
16197
|
};
|
|
16198
16198
|
|
|
16199
|
-
const VERSION$
|
|
16200
|
-
function validate$
|
|
16199
|
+
const VERSION$2m = "fecd80e9e24a1c1e75fd5395cd34ff2e";
|
|
16200
|
+
function validate$1w(obj, path = 'ActionOverrideRepresentation') {
|
|
16201
16201
|
const v_error = (() => {
|
|
16202
16202
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16203
16203
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16214,15 +16214,15 @@ const RepresentationType$H = 'ActionOverrideRepresentation';
|
|
|
16214
16214
|
function normalize$A(input, existing, path, luvio, store, timestamp) {
|
|
16215
16215
|
return input;
|
|
16216
16216
|
}
|
|
16217
|
-
const select$
|
|
16217
|
+
const select$2X = function ActionOverrideRepresentationSelect() {
|
|
16218
16218
|
return {
|
|
16219
16219
|
kind: 'Fragment',
|
|
16220
|
-
version: VERSION$
|
|
16220
|
+
version: VERSION$2m,
|
|
16221
16221
|
private: [],
|
|
16222
16222
|
opaque: true
|
|
16223
16223
|
};
|
|
16224
16224
|
};
|
|
16225
|
-
function equals$
|
|
16225
|
+
function equals$S(existing, incoming) {
|
|
16226
16226
|
if (JSONStringify(incoming) !== JSONStringify(existing)) {
|
|
16227
16227
|
return false;
|
|
16228
16228
|
}
|
|
@@ -16230,14 +16230,14 @@ function equals$R(existing, incoming) {
|
|
|
16230
16230
|
}
|
|
16231
16231
|
const ingest$1W = function ActionOverrideRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
16232
16232
|
if (process.env.NODE_ENV !== 'production') {
|
|
16233
|
-
const validateError = validate$
|
|
16233
|
+
const validateError = validate$1w(input);
|
|
16234
16234
|
if (validateError !== null) {
|
|
16235
16235
|
throw validateError;
|
|
16236
16236
|
}
|
|
16237
16237
|
}
|
|
16238
16238
|
const key = path.fullPath;
|
|
16239
16239
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
16240
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$A, "UiApi", VERSION$
|
|
16240
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$A, "UiApi", VERSION$2m, RepresentationType$H, equals$S);
|
|
16241
16241
|
return createLink$1(key);
|
|
16242
16242
|
};
|
|
16243
16243
|
function getTypeCacheKeys$1Z(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -16250,8 +16250,8 @@ function getTypeCacheKeys$1Z(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
16250
16250
|
});
|
|
16251
16251
|
}
|
|
16252
16252
|
|
|
16253
|
-
function select$
|
|
16254
|
-
return select$
|
|
16253
|
+
function select$2W(luvio, params) {
|
|
16254
|
+
return select$2X();
|
|
16255
16255
|
}
|
|
16256
16256
|
function keyBuilder$2$(luvio, params) {
|
|
16257
16257
|
return keyPrefix + '::ActionOverrideRepresentation:(' + 'defaultTemplateOnly:' + params.queryParams.defaultTemplateOnly + ',' + 'type:' + params.queryParams.type + ',' + 'objectApiName:' + params.urlParams.objectApiName + ')';
|
|
@@ -16265,7 +16265,7 @@ function ingestSuccess$N(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
16265
16265
|
luvio.storeIngest(key, ingest$1W, body);
|
|
16266
16266
|
const snapshot = luvio.storeLookup({
|
|
16267
16267
|
recordId: key,
|
|
16268
|
-
node: select$
|
|
16268
|
+
node: select$2W(),
|
|
16269
16269
|
variables: {},
|
|
16270
16270
|
}, snapshotRefresh);
|
|
16271
16271
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -16329,7 +16329,7 @@ function validateAdapterConfig$11(untrustedConfig, configPropertyNames) {
|
|
|
16329
16329
|
}
|
|
16330
16330
|
function adapterFragment$F(luvio, config) {
|
|
16331
16331
|
createResourceParams$W(config);
|
|
16332
|
-
return select$
|
|
16332
|
+
return select$2W();
|
|
16333
16333
|
}
|
|
16334
16334
|
function onFetchResponseSuccess$I(luvio, config, resourceParams, response) {
|
|
16335
16335
|
const snapshot = ingestSuccess$N(luvio, resourceParams, response, {
|
|
@@ -16385,7 +16385,7 @@ const getActionOverridesAdapterFactory = (luvio) => function UiApi__getActionOve
|
|
|
16385
16385
|
buildCachedSnapshotCachePolicy$M, buildNetworkSnapshotCachePolicy$N);
|
|
16386
16386
|
};
|
|
16387
16387
|
|
|
16388
|
-
function validate$
|
|
16388
|
+
function validate$1v(obj, path = 'FormulaOverridesInfoRepresentation') {
|
|
16389
16389
|
const v_error = (() => {
|
|
16390
16390
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16391
16391
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16422,8 +16422,8 @@ function validate$1u(obj, path = 'FormulaOverridesInfoRepresentation') {
|
|
|
16422
16422
|
}
|
|
16423
16423
|
|
|
16424
16424
|
const TTL$w = 300000;
|
|
16425
|
-
const VERSION$
|
|
16426
|
-
function validate$
|
|
16425
|
+
const VERSION$2l = "c57b66c259b23683db7b763e132e8633";
|
|
16426
|
+
function validate$1u(obj, path = 'FlexipageFormulaActivationRepresentation') {
|
|
16427
16427
|
const v_error = (() => {
|
|
16428
16428
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16429
16429
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16444,7 +16444,7 @@ function validate$1t(obj, path = 'FlexipageFormulaActivationRepresentation') {
|
|
|
16444
16444
|
for (let i = 0; i < obj_activations_prop.length; i++) {
|
|
16445
16445
|
const obj_activations_prop_item = obj_activations_prop[i];
|
|
16446
16446
|
const path_activations_prop_item = path_activations_prop + '[' + i + ']';
|
|
16447
|
-
const referencepath_activations_prop_itemValidationError = validate$
|
|
16447
|
+
const referencepath_activations_prop_itemValidationError = validate$1v(obj_activations_prop_item, path_activations_prop_item);
|
|
16448
16448
|
if (referencepath_activations_prop_itemValidationError !== null) {
|
|
16449
16449
|
let message = 'Object doesn\'t match FormulaOverridesInfoRepresentation (at "' + path_activations_prop_item + '")\n';
|
|
16450
16450
|
message += referencepath_activations_prop_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -16464,10 +16464,10 @@ const RepresentationType$G = 'FlexipageFormulaActivationRepresentation';
|
|
|
16464
16464
|
function normalize$z(input, existing, path, luvio, store, timestamp) {
|
|
16465
16465
|
return input;
|
|
16466
16466
|
}
|
|
16467
|
-
const select$
|
|
16467
|
+
const select$2V = function FlexipageFormulaActivationRepresentationSelect() {
|
|
16468
16468
|
return {
|
|
16469
16469
|
kind: 'Fragment',
|
|
16470
|
-
version: VERSION$
|
|
16470
|
+
version: VERSION$2l,
|
|
16471
16471
|
private: [
|
|
16472
16472
|
'eTag'
|
|
16473
16473
|
],
|
|
@@ -16480,7 +16480,7 @@ const select$2U = function FlexipageFormulaActivationRepresentationSelect() {
|
|
|
16480
16480
|
]
|
|
16481
16481
|
};
|
|
16482
16482
|
};
|
|
16483
|
-
function equals$
|
|
16483
|
+
function equals$R(existing, incoming) {
|
|
16484
16484
|
if (JSONStringify(incoming) !== JSONStringify(existing)) {
|
|
16485
16485
|
return false;
|
|
16486
16486
|
}
|
|
@@ -16488,14 +16488,14 @@ function equals$Q(existing, incoming) {
|
|
|
16488
16488
|
}
|
|
16489
16489
|
const ingest$1V = function FlexipageFormulaActivationRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
16490
16490
|
if (process.env.NODE_ENV !== 'production') {
|
|
16491
|
-
const validateError = validate$
|
|
16491
|
+
const validateError = validate$1u(input);
|
|
16492
16492
|
if (validateError !== null) {
|
|
16493
16493
|
throw validateError;
|
|
16494
16494
|
}
|
|
16495
16495
|
}
|
|
16496
16496
|
const key = path.fullPath;
|
|
16497
16497
|
const ttlToUse = TTL$w;
|
|
16498
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$z, "UiApi", VERSION$
|
|
16498
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$z, "UiApi", VERSION$2l, RepresentationType$G, equals$R);
|
|
16499
16499
|
return createLink$1(key);
|
|
16500
16500
|
};
|
|
16501
16501
|
function getTypeCacheKeys$1Y(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -16508,8 +16508,8 @@ function getTypeCacheKeys$1Y(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
16508
16508
|
});
|
|
16509
16509
|
}
|
|
16510
16510
|
|
|
16511
|
-
function select$
|
|
16512
|
-
return select$
|
|
16511
|
+
function select$2U(luvio, params) {
|
|
16512
|
+
return select$2V();
|
|
16513
16513
|
}
|
|
16514
16514
|
function keyBuilder$2Z(luvio, params) {
|
|
16515
16515
|
return keyPrefix + '::FlexipageFormulaActivationRepresentation:(' + 'application:' + params.queryParams.application + ',' + 'objectApiNames:' + params.queryParams.objectApiNames + ',' + 'actionFeature:' + params.urlParams.actionFeature + ')';
|
|
@@ -16523,7 +16523,7 @@ function ingestSuccess$M(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
16523
16523
|
luvio.storeIngest(key, ingest$1V, body);
|
|
16524
16524
|
const snapshot = luvio.storeLookup({
|
|
16525
16525
|
recordId: key,
|
|
16526
|
-
node: select$
|
|
16526
|
+
node: select$2U(),
|
|
16527
16527
|
variables: {},
|
|
16528
16528
|
}, snapshotRefresh);
|
|
16529
16529
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -16540,7 +16540,7 @@ function ingestError$F(luvio, params, error, snapshotRefresh) {
|
|
|
16540
16540
|
const storeMetadataParams = {
|
|
16541
16541
|
ttl: TTL$w,
|
|
16542
16542
|
namespace: keyPrefix,
|
|
16543
|
-
version: VERSION$
|
|
16543
|
+
version: VERSION$2l,
|
|
16544
16544
|
representationName: RepresentationType$G
|
|
16545
16545
|
};
|
|
16546
16546
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -16593,7 +16593,7 @@ function validateAdapterConfig$10(untrustedConfig, configPropertyNames) {
|
|
|
16593
16593
|
}
|
|
16594
16594
|
function adapterFragment$E(luvio, config) {
|
|
16595
16595
|
createResourceParams$V(config);
|
|
16596
|
-
return select$
|
|
16596
|
+
return select$2U();
|
|
16597
16597
|
}
|
|
16598
16598
|
function onFetchResponseSuccess$H(luvio, config, resourceParams, response) {
|
|
16599
16599
|
const snapshot = ingestSuccess$M(luvio, resourceParams, response, {
|
|
@@ -16649,8 +16649,8 @@ const getFlexipageFormulaOverridesAdapterFactory = (luvio) => function UiApi__ge
|
|
|
16649
16649
|
buildCachedSnapshotCachePolicy$L, buildNetworkSnapshotCachePolicy$M);
|
|
16650
16650
|
};
|
|
16651
16651
|
|
|
16652
|
-
const VERSION$
|
|
16653
|
-
function validate$
|
|
16652
|
+
const VERSION$2k = "7a5e66e0b88fe9d2233bb3158931bfa6";
|
|
16653
|
+
function validate$1t(obj, path = 'QuickActionColorRepresentation') {
|
|
16654
16654
|
const v_error = (() => {
|
|
16655
16655
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16656
16656
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16678,10 +16678,10 @@ function validate$1s(obj, path = 'QuickActionColorRepresentation') {
|
|
|
16678
16678
|
})();
|
|
16679
16679
|
return v_error === undefined ? null : v_error;
|
|
16680
16680
|
}
|
|
16681
|
-
const select$
|
|
16681
|
+
const select$2T = function QuickActionColorRepresentationSelect() {
|
|
16682
16682
|
return {
|
|
16683
16683
|
kind: 'Fragment',
|
|
16684
|
-
version: VERSION$
|
|
16684
|
+
version: VERSION$2k,
|
|
16685
16685
|
private: [
|
|
16686
16686
|
'eTag'
|
|
16687
16687
|
],
|
|
@@ -16701,7 +16701,7 @@ const select$2S = function QuickActionColorRepresentationSelect() {
|
|
|
16701
16701
|
]
|
|
16702
16702
|
};
|
|
16703
16703
|
};
|
|
16704
|
-
function equals$
|
|
16704
|
+
function equals$Q(existing, incoming) {
|
|
16705
16705
|
const existing_color = existing.color;
|
|
16706
16706
|
const incoming_color = incoming.color;
|
|
16707
16707
|
if (!(existing_color === incoming_color)) {
|
|
@@ -16725,8 +16725,8 @@ function equals$P(existing, incoming) {
|
|
|
16725
16725
|
return true;
|
|
16726
16726
|
}
|
|
16727
16727
|
|
|
16728
|
-
const VERSION$
|
|
16729
|
-
function validate$
|
|
16728
|
+
const VERSION$2j = "5e970aa7dacfdd8e0c6d5daca575ec58";
|
|
16729
|
+
function validate$1s(obj, path = 'CopilotQuickActionInputRepresentation') {
|
|
16730
16730
|
const v_error = (() => {
|
|
16731
16731
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16732
16732
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16749,10 +16749,10 @@ function validate$1r(obj, path = 'CopilotQuickActionInputRepresentation') {
|
|
|
16749
16749
|
})();
|
|
16750
16750
|
return v_error === undefined ? null : v_error;
|
|
16751
16751
|
}
|
|
16752
|
-
const select$
|
|
16752
|
+
const select$2S = function CopilotQuickActionInputRepresentationSelect() {
|
|
16753
16753
|
return {
|
|
16754
16754
|
kind: 'Fragment',
|
|
16755
|
-
version: VERSION$
|
|
16755
|
+
version: VERSION$2j,
|
|
16756
16756
|
private: [
|
|
16757
16757
|
'eTag'
|
|
16758
16758
|
],
|
|
@@ -16768,7 +16768,7 @@ const select$2R = function CopilotQuickActionInputRepresentationSelect() {
|
|
|
16768
16768
|
]
|
|
16769
16769
|
};
|
|
16770
16770
|
};
|
|
16771
|
-
function equals$
|
|
16771
|
+
function equals$P(existing, incoming) {
|
|
16772
16772
|
const existing_eTag = existing.eTag;
|
|
16773
16773
|
const incoming_eTag = incoming.eTag;
|
|
16774
16774
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -16787,8 +16787,8 @@ function equals$O(existing, incoming) {
|
|
|
16787
16787
|
return true;
|
|
16788
16788
|
}
|
|
16789
16789
|
|
|
16790
|
-
const VERSION$
|
|
16791
|
-
function validate$
|
|
16790
|
+
const VERSION$2i = "53b489083ef57944d2a9d4a2aaf72ec3";
|
|
16791
|
+
function validate$1r(obj, path = 'QuickActionIconRepresentation') {
|
|
16792
16792
|
const v_error = (() => {
|
|
16793
16793
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16794
16794
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16826,10 +16826,10 @@ function validate$1q(obj, path = 'QuickActionIconRepresentation') {
|
|
|
16826
16826
|
})();
|
|
16827
16827
|
return v_error === undefined ? null : v_error;
|
|
16828
16828
|
}
|
|
16829
|
-
const select$
|
|
16829
|
+
const select$2R = function QuickActionIconRepresentationSelect() {
|
|
16830
16830
|
return {
|
|
16831
16831
|
kind: 'Fragment',
|
|
16832
|
-
version: VERSION$
|
|
16832
|
+
version: VERSION$2i,
|
|
16833
16833
|
private: [
|
|
16834
16834
|
'eTag'
|
|
16835
16835
|
],
|
|
@@ -16857,7 +16857,7 @@ const select$2Q = function QuickActionIconRepresentationSelect() {
|
|
|
16857
16857
|
]
|
|
16858
16858
|
};
|
|
16859
16859
|
};
|
|
16860
|
-
function equals$
|
|
16860
|
+
function equals$O(existing, incoming) {
|
|
16861
16861
|
const existing_height = existing.height;
|
|
16862
16862
|
const incoming_height = incoming.height;
|
|
16863
16863
|
if (!(existing_height === incoming_height)) {
|
|
@@ -16891,8 +16891,8 @@ function equals$N(existing, incoming) {
|
|
|
16891
16891
|
return true;
|
|
16892
16892
|
}
|
|
16893
16893
|
|
|
16894
|
-
const VERSION$
|
|
16895
|
-
function validate$
|
|
16894
|
+
const VERSION$2h = "bab371abd4de5aea22d80f5c9843eb8a";
|
|
16895
|
+
function validate$1q(obj, path = 'CopilotQuickActionParameterRepresentation') {
|
|
16896
16896
|
const v_error = (() => {
|
|
16897
16897
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16898
16898
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16915,10 +16915,10 @@ function validate$1p(obj, path = 'CopilotQuickActionParameterRepresentation') {
|
|
|
16915
16915
|
})();
|
|
16916
16916
|
return v_error === undefined ? null : v_error;
|
|
16917
16917
|
}
|
|
16918
|
-
const select$
|
|
16918
|
+
const select$2Q = function CopilotQuickActionParameterRepresentationSelect() {
|
|
16919
16919
|
return {
|
|
16920
16920
|
kind: 'Fragment',
|
|
16921
|
-
version: VERSION$
|
|
16921
|
+
version: VERSION$2h,
|
|
16922
16922
|
private: [
|
|
16923
16923
|
'eTag'
|
|
16924
16924
|
],
|
|
@@ -16934,7 +16934,7 @@ const select$2P = function CopilotQuickActionParameterRepresentationSelect() {
|
|
|
16934
16934
|
]
|
|
16935
16935
|
};
|
|
16936
16936
|
};
|
|
16937
|
-
function equals$
|
|
16937
|
+
function equals$N(existing, incoming) {
|
|
16938
16938
|
const existing_eTag = existing.eTag;
|
|
16939
16939
|
const incoming_eTag = incoming.eTag;
|
|
16940
16940
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -16954,8 +16954,8 @@ function equals$M(existing, incoming) {
|
|
|
16954
16954
|
}
|
|
16955
16955
|
|
|
16956
16956
|
const TTL$v = 900000;
|
|
16957
|
-
const VERSION$
|
|
16958
|
-
function validate$
|
|
16957
|
+
const VERSION$2g = "463cd270460d626d438908f8348e6dc8";
|
|
16958
|
+
function validate$1p(obj, path = 'QuickActionInfoRepresentation') {
|
|
16959
16959
|
const v_error = (() => {
|
|
16960
16960
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
16961
16961
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -16999,7 +16999,7 @@ function validate$1o(obj, path = 'QuickActionInfoRepresentation') {
|
|
|
16999
16999
|
for (let i = 0; i < obj_colors.length; i++) {
|
|
17000
17000
|
const obj_colors_item = obj_colors[i];
|
|
17001
17001
|
const path_colors_item = path_colors + '[' + i + ']';
|
|
17002
|
-
const referencepath_colors_itemValidationError = validate$
|
|
17002
|
+
const referencepath_colors_itemValidationError = validate$1t(obj_colors_item, path_colors_item);
|
|
17003
17003
|
if (referencepath_colors_itemValidationError !== null) {
|
|
17004
17004
|
let message = 'Object doesn\'t match QuickActionColorRepresentation (at "' + path_colors_item + '")\n';
|
|
17005
17005
|
message += referencepath_colors_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17040,7 +17040,7 @@ function validate$1o(obj, path = 'QuickActionInfoRepresentation') {
|
|
|
17040
17040
|
for (let i = 0; i < obj_copilotInputs.length; i++) {
|
|
17041
17041
|
const obj_copilotInputs_item = obj_copilotInputs[i];
|
|
17042
17042
|
const path_copilotInputs_item = path_copilotInputs + '[' + i + ']';
|
|
17043
|
-
const referencepath_copilotInputs_itemValidationError = validate$
|
|
17043
|
+
const referencepath_copilotInputs_itemValidationError = validate$1s(obj_copilotInputs_item, path_copilotInputs_item);
|
|
17044
17044
|
if (referencepath_copilotInputs_itemValidationError !== null) {
|
|
17045
17045
|
let message = 'Object doesn\'t match CopilotQuickActionInputRepresentation (at "' + path_copilotInputs_item + '")\n';
|
|
17046
17046
|
message += referencepath_copilotInputs_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17216,7 +17216,7 @@ function validate$1o(obj, path = 'QuickActionInfoRepresentation') {
|
|
|
17216
17216
|
for (let i = 0; i < obj_icons.length; i++) {
|
|
17217
17217
|
const obj_icons_item = obj_icons[i];
|
|
17218
17218
|
const path_icons_item = path_icons + '[' + i + ']';
|
|
17219
|
-
const referencepath_icons_itemValidationError = validate$
|
|
17219
|
+
const referencepath_icons_itemValidationError = validate$1r(obj_icons_item, path_icons_item);
|
|
17220
17220
|
if (referencepath_icons_itemValidationError !== null) {
|
|
17221
17221
|
let message = 'Object doesn\'t match QuickActionIconRepresentation (at "' + path_icons_item + '")\n';
|
|
17222
17222
|
message += referencepath_icons_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17340,7 +17340,7 @@ function validate$1o(obj, path = 'QuickActionInfoRepresentation') {
|
|
|
17340
17340
|
for (let i = 0; i < obj_parameters.length; i++) {
|
|
17341
17341
|
const obj_parameters_item = obj_parameters[i];
|
|
17342
17342
|
const path_parameters_item = path_parameters + '[' + i + ']';
|
|
17343
|
-
const referencepath_parameters_itemValidationError = validate$
|
|
17343
|
+
const referencepath_parameters_itemValidationError = validate$1q(obj_parameters_item, path_parameters_item);
|
|
17344
17344
|
if (referencepath_parameters_itemValidationError !== null) {
|
|
17345
17345
|
let message = 'Object doesn\'t match CopilotQuickActionParameterRepresentation (at "' + path_parameters_item + '")\n';
|
|
17346
17346
|
message += referencepath_parameters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17446,14 +17446,14 @@ function keyBuilderFromType$n(luvio, object) {
|
|
|
17446
17446
|
function normalize$y(input, existing, path, luvio, store, timestamp) {
|
|
17447
17447
|
return input;
|
|
17448
17448
|
}
|
|
17449
|
-
const select$
|
|
17450
|
-
const { selections: QuickActionColorRepresentation__selections, opaque: QuickActionColorRepresentation__opaque, } = select$
|
|
17451
|
-
const { selections: CopilotQuickActionInputRepresentation__selections, opaque: CopilotQuickActionInputRepresentation__opaque, } = select$
|
|
17452
|
-
const { selections: QuickActionIconRepresentation__selections, opaque: QuickActionIconRepresentation__opaque, } = select$
|
|
17453
|
-
const { selections: CopilotQuickActionParameterRepresentation__selections, opaque: CopilotQuickActionParameterRepresentation__opaque, } = select$
|
|
17449
|
+
const select$2P = function QuickActionInfoRepresentationSelect() {
|
|
17450
|
+
const { selections: QuickActionColorRepresentation__selections, opaque: QuickActionColorRepresentation__opaque, } = select$2T();
|
|
17451
|
+
const { selections: CopilotQuickActionInputRepresentation__selections, opaque: CopilotQuickActionInputRepresentation__opaque, } = select$2S();
|
|
17452
|
+
const { selections: QuickActionIconRepresentation__selections, opaque: QuickActionIconRepresentation__opaque, } = select$2R();
|
|
17453
|
+
const { selections: CopilotQuickActionParameterRepresentation__selections, opaque: CopilotQuickActionParameterRepresentation__opaque, } = select$2Q();
|
|
17454
17454
|
return {
|
|
17455
17455
|
kind: 'Fragment',
|
|
17456
|
-
version: VERSION$
|
|
17456
|
+
version: VERSION$2g,
|
|
17457
17457
|
private: [
|
|
17458
17458
|
'eTag'
|
|
17459
17459
|
],
|
|
@@ -17557,7 +17557,7 @@ const select$2O = function QuickActionInfoRepresentationSelect() {
|
|
|
17557
17557
|
]
|
|
17558
17558
|
};
|
|
17559
17559
|
};
|
|
17560
|
-
function equals$
|
|
17560
|
+
function equals$M(existing, incoming) {
|
|
17561
17561
|
const existing_actionApiName = existing.actionApiName;
|
|
17562
17562
|
const incoming_actionApiName = incoming.actionApiName;
|
|
17563
17563
|
if (!(existing_actionApiName === incoming_actionApiName)) {
|
|
@@ -17586,7 +17586,7 @@ function equals$L(existing, incoming) {
|
|
|
17586
17586
|
const existing_colors = existing.colors;
|
|
17587
17587
|
const incoming_colors = incoming.colors;
|
|
17588
17588
|
const equals_colors_items = equalsArray(existing_colors, incoming_colors, (existing_colors_item, incoming_colors_item) => {
|
|
17589
|
-
if (!(equals$
|
|
17589
|
+
if (!(equals$Q(existing_colors_item, incoming_colors_item))) {
|
|
17590
17590
|
return false;
|
|
17591
17591
|
}
|
|
17592
17592
|
});
|
|
@@ -17601,7 +17601,7 @@ function equals$L(existing, incoming) {
|
|
|
17601
17601
|
const existing_copilotInputs = existing.copilotInputs;
|
|
17602
17602
|
const incoming_copilotInputs = incoming.copilotInputs;
|
|
17603
17603
|
const equals_copilotInputs_items = equalsArray(existing_copilotInputs, incoming_copilotInputs, (existing_copilotInputs_item, incoming_copilotInputs_item) => {
|
|
17604
|
-
if (!(equals$
|
|
17604
|
+
if (!(equals$P(existing_copilotInputs_item, incoming_copilotInputs_item))) {
|
|
17605
17605
|
return false;
|
|
17606
17606
|
}
|
|
17607
17607
|
});
|
|
@@ -17641,7 +17641,7 @@ function equals$L(existing, incoming) {
|
|
|
17641
17641
|
const existing_icons = existing.icons;
|
|
17642
17642
|
const incoming_icons = incoming.icons;
|
|
17643
17643
|
const equals_icons_items = equalsArray(existing_icons, incoming_icons, (existing_icons_item, incoming_icons_item) => {
|
|
17644
|
-
if (!(equals$
|
|
17644
|
+
if (!(equals$O(existing_icons_item, incoming_icons_item))) {
|
|
17645
17645
|
return false;
|
|
17646
17646
|
}
|
|
17647
17647
|
});
|
|
@@ -17671,7 +17671,7 @@ function equals$L(existing, incoming) {
|
|
|
17671
17671
|
const existing_parameters = existing.parameters;
|
|
17672
17672
|
const incoming_parameters = incoming.parameters;
|
|
17673
17673
|
const equals_parameters_items = equalsArray(existing_parameters, incoming_parameters, (existing_parameters_item, incoming_parameters_item) => {
|
|
17674
|
-
if (!(equals$
|
|
17674
|
+
if (!(equals$N(existing_parameters_item, incoming_parameters_item))) {
|
|
17675
17675
|
return false;
|
|
17676
17676
|
}
|
|
17677
17677
|
});
|
|
@@ -17697,14 +17697,14 @@ function equals$L(existing, incoming) {
|
|
|
17697
17697
|
}
|
|
17698
17698
|
const ingest$1U = function QuickActionInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17699
17699
|
if (process.env.NODE_ENV !== 'production') {
|
|
17700
|
-
const validateError = validate$
|
|
17700
|
+
const validateError = validate$1p(input);
|
|
17701
17701
|
if (validateError !== null) {
|
|
17702
17702
|
throw validateError;
|
|
17703
17703
|
}
|
|
17704
17704
|
}
|
|
17705
17705
|
const key = keyBuilderFromType$n(luvio, input);
|
|
17706
17706
|
const ttlToUse = TTL$v;
|
|
17707
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$y, "UiApi", VERSION$
|
|
17707
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$y, "UiApi", VERSION$2g, RepresentationType$F, equals$M);
|
|
17708
17708
|
return createLink$1(key);
|
|
17709
17709
|
};
|
|
17710
17710
|
function getTypeCacheKeys$1X(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -17717,8 +17717,8 @@ function getTypeCacheKeys$1X(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
17717
17717
|
});
|
|
17718
17718
|
}
|
|
17719
17719
|
|
|
17720
|
-
function select$
|
|
17721
|
-
return select$
|
|
17720
|
+
function select$2O(luvio, params) {
|
|
17721
|
+
return select$2P();
|
|
17722
17722
|
}
|
|
17723
17723
|
function keyBuilder$2W(luvio, params) {
|
|
17724
17724
|
return keyBuilder$2X(luvio, {
|
|
@@ -17734,7 +17734,7 @@ function ingestSuccess$L(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
17734
17734
|
luvio.storeIngest(key, ingest$1U, body);
|
|
17735
17735
|
const snapshot = luvio.storeLookup({
|
|
17736
17736
|
recordId: key,
|
|
17737
|
-
node: select$
|
|
17737
|
+
node: select$2O(),
|
|
17738
17738
|
variables: {},
|
|
17739
17739
|
}, snapshotRefresh);
|
|
17740
17740
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -17751,7 +17751,7 @@ function ingestError$E(luvio, params, error, snapshotRefresh) {
|
|
|
17751
17751
|
const storeMetadataParams = {
|
|
17752
17752
|
ttl: TTL$v,
|
|
17753
17753
|
namespace: keyPrefix,
|
|
17754
|
-
version: VERSION$
|
|
17754
|
+
version: VERSION$2g,
|
|
17755
17755
|
representationName: RepresentationType$F
|
|
17756
17756
|
};
|
|
17757
17757
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -17803,7 +17803,7 @@ function validateAdapterConfig$$(untrustedConfig, configPropertyNames) {
|
|
|
17803
17803
|
}
|
|
17804
17804
|
function adapterFragment$D(luvio, config) {
|
|
17805
17805
|
createResourceParams$U(config);
|
|
17806
|
-
return select$
|
|
17806
|
+
return select$2O();
|
|
17807
17807
|
}
|
|
17808
17808
|
function onFetchResponseSuccess$G(luvio, config, resourceParams, response) {
|
|
17809
17809
|
const snapshot = ingestSuccess$L(luvio, resourceParams, response, {
|
|
@@ -17863,7 +17863,7 @@ const QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS = {
|
|
|
17863
17863
|
ttl: TTL$z,
|
|
17864
17864
|
namespace: keyPrefix,
|
|
17865
17865
|
representationName: RepresentationType$M,
|
|
17866
|
-
version: VERSION$
|
|
17866
|
+
version: VERSION$2r,
|
|
17867
17867
|
};
|
|
17868
17868
|
function merge$1(existing, incoming) {
|
|
17869
17869
|
if (existing === undefined) {
|
|
@@ -17881,7 +17881,7 @@ function merge$1(existing, incoming) {
|
|
|
17881
17881
|
const dynamicIngest$4 = (ingestParams) => {
|
|
17882
17882
|
return function QuickActionDefaultsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17883
17883
|
if (process.env.NODE_ENV !== 'production') {
|
|
17884
|
-
const validateError = validate$
|
|
17884
|
+
const validateError = validate$1B(input);
|
|
17885
17885
|
if (validateError !== null) {
|
|
17886
17886
|
throw validateError;
|
|
17887
17887
|
}
|
|
@@ -17894,7 +17894,7 @@ const dynamicIngest$4 = (ingestParams) => {
|
|
|
17894
17894
|
propertyName: path.propertyName,
|
|
17895
17895
|
}, luvio, store, timestamp);
|
|
17896
17896
|
incomingRecord = merge$1(existingRecord, incomingRecord);
|
|
17897
|
-
if (existingRecord === undefined || equals$
|
|
17897
|
+
if (existingRecord === undefined || equals$X(existingRecord, incomingRecord) === false) {
|
|
17898
17898
|
luvio.storePublish(key, incomingRecord);
|
|
17899
17899
|
}
|
|
17900
17900
|
luvio.publishStoreMetadata(key, {
|
|
@@ -17962,7 +17962,7 @@ function ingestError$D(luvio, params, error, snapshotRefresh) {
|
|
|
17962
17962
|
const storeMetadataParams = {
|
|
17963
17963
|
ttl: TTL$z,
|
|
17964
17964
|
namespace: keyPrefix,
|
|
17965
|
-
version: VERSION$
|
|
17965
|
+
version: VERSION$2r,
|
|
17966
17966
|
representationName: RepresentationType$M
|
|
17967
17967
|
};
|
|
17968
17968
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -18099,8 +18099,8 @@ const getQuickActionDefaultsAdapterFactory = (luvio) => function UiApi__getQuick
|
|
|
18099
18099
|
buildCachedSnapshotCachePolicy$J, buildNetworkSnapshotCachePolicy$K);
|
|
18100
18100
|
};
|
|
18101
18101
|
|
|
18102
|
-
function select$
|
|
18103
|
-
return select$
|
|
18102
|
+
function select$2N(luvio, params) {
|
|
18103
|
+
return select$31();
|
|
18104
18104
|
}
|
|
18105
18105
|
function keyBuilder$2S(luvio, params) {
|
|
18106
18106
|
return keyPrefix + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'apiNames:' + params.queryParams.apiNames + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'retrievalMode:' + params.queryParams.retrievalMode + ',' + 'sections:' + params.queryParams.sections + ',' + 'recordIds:' + params.urlParams.recordIds + ')';
|
|
@@ -18114,7 +18114,7 @@ function ingestSuccess$K(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
18114
18114
|
luvio.storeIngest(key, ingest$1Y, body);
|
|
18115
18115
|
const snapshot = luvio.storeLookup({
|
|
18116
18116
|
recordId: key,
|
|
18117
|
-
node: select$
|
|
18117
|
+
node: select$2N(),
|
|
18118
18118
|
variables: {},
|
|
18119
18119
|
}, snapshotRefresh);
|
|
18120
18120
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -18131,7 +18131,7 @@ function ingestError$C(luvio, params, error, snapshotRefresh) {
|
|
|
18131
18131
|
const storeMetadataParams = {
|
|
18132
18132
|
ttl: TTL$y,
|
|
18133
18133
|
namespace: keyPrefix,
|
|
18134
|
-
version: VERSION$
|
|
18134
|
+
version: VERSION$2o,
|
|
18135
18135
|
representationName: RepresentationType$J
|
|
18136
18136
|
};
|
|
18137
18137
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -18195,7 +18195,7 @@ function validateAdapterConfig$Z(untrustedConfig, configPropertyNames) {
|
|
|
18195
18195
|
}
|
|
18196
18196
|
function adapterFragment$B(luvio, config) {
|
|
18197
18197
|
createResourceParams$S(config);
|
|
18198
|
-
return select$
|
|
18198
|
+
return select$2N();
|
|
18199
18199
|
}
|
|
18200
18200
|
function onFetchResponseSuccess$F(luvio, config, resourceParams, response) {
|
|
18201
18201
|
const snapshot = ingestSuccess$K(luvio, resourceParams, response, {
|
|
@@ -18251,8 +18251,8 @@ const getRecordActionsAdapterFactory = (luvio) => function UiApi__getRecordActio
|
|
|
18251
18251
|
buildCachedSnapshotCachePolicy$I, buildNetworkSnapshotCachePolicy$J);
|
|
18252
18252
|
};
|
|
18253
18253
|
|
|
18254
|
-
function select$
|
|
18255
|
-
return select$
|
|
18254
|
+
function select$2M(luvio, params) {
|
|
18255
|
+
return select$31();
|
|
18256
18256
|
}
|
|
18257
18257
|
function keyBuilder$2Q(luvio, params) {
|
|
18258
18258
|
return keyPrefix + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'sections:' + params.queryParams.sections + ',' + 'recordIds:' + params.urlParams.recordIds + ')';
|
|
@@ -18266,7 +18266,7 @@ function ingestSuccess$J(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
18266
18266
|
luvio.storeIngest(key, ingest$1Y, body);
|
|
18267
18267
|
const snapshot = luvio.storeLookup({
|
|
18268
18268
|
recordId: key,
|
|
18269
|
-
node: select$
|
|
18269
|
+
node: select$2M(),
|
|
18270
18270
|
variables: {},
|
|
18271
18271
|
}, snapshotRefresh);
|
|
18272
18272
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -18283,7 +18283,7 @@ function ingestError$B(luvio, params, error, snapshotRefresh) {
|
|
|
18283
18283
|
const storeMetadataParams = {
|
|
18284
18284
|
ttl: TTL$y,
|
|
18285
18285
|
namespace: keyPrefix,
|
|
18286
|
-
version: VERSION$
|
|
18286
|
+
version: VERSION$2o,
|
|
18287
18287
|
representationName: RepresentationType$J
|
|
18288
18288
|
};
|
|
18289
18289
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -18337,7 +18337,7 @@ function validateAdapterConfig$Y(untrustedConfig, configPropertyNames) {
|
|
|
18337
18337
|
}
|
|
18338
18338
|
function adapterFragment$A(luvio, config) {
|
|
18339
18339
|
createResourceParams$R(config);
|
|
18340
|
-
return select$
|
|
18340
|
+
return select$2M();
|
|
18341
18341
|
}
|
|
18342
18342
|
function onFetchResponseSuccess$E(luvio, config, resourceParams, response) {
|
|
18343
18343
|
const snapshot = ingestSuccess$J(luvio, resourceParams, response, {
|
|
@@ -18393,7 +18393,7 @@ const getRecordEditActionsAdapterFactory = (luvio) => function UiApi__getRecordE
|
|
|
18393
18393
|
buildCachedSnapshotCachePolicy$H, buildNetworkSnapshotCachePolicy$I);
|
|
18394
18394
|
};
|
|
18395
18395
|
|
|
18396
|
-
function validate$
|
|
18396
|
+
function validate$1o(obj, path = 'ActionRelatedListSingleBatchInputRepresentation') {
|
|
18397
18397
|
const v_error = (() => {
|
|
18398
18398
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
18399
18399
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -18463,8 +18463,8 @@ function validate$1n(obj, path = 'ActionRelatedListSingleBatchInputRepresentatio
|
|
|
18463
18463
|
return v_error === undefined ? null : v_error;
|
|
18464
18464
|
}
|
|
18465
18465
|
|
|
18466
|
-
function select$
|
|
18467
|
-
return select$
|
|
18466
|
+
function select$2L(luvio, params) {
|
|
18467
|
+
return select$31();
|
|
18468
18468
|
}
|
|
18469
18469
|
function keyBuilder$2O(luvio, params) {
|
|
18470
18470
|
return keyPrefix + '::ActionRepresentation:(' + 'recordIds:' + params.urlParams.recordIds + ',' + 'relatedListId:' + params.urlParams.relatedListId + ',' + (params.body.actionTypes === undefined ? 'actionTypes' : 'actionTypes:' + params.body.actionTypes) + '::' + (params.body.apiNames === undefined ? 'apiNames' : 'apiNames:' + params.body.apiNames) + '::' + (params.body.formFactor === undefined ? 'formFactor' : 'formFactor:' + params.body.formFactor) + '::' + (params.body.retrievalMode === undefined ? 'retrievalMode' : 'retrievalMode:' + params.body.retrievalMode) + '::' + (params.body.sections === undefined ? 'sections' : 'sections:' + params.body.sections) + ')';
|
|
@@ -18478,7 +18478,7 @@ function ingestSuccess$I(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
18478
18478
|
luvio.storeIngest(key, ingest$1Y, body);
|
|
18479
18479
|
const snapshot = luvio.storeLookup({
|
|
18480
18480
|
recordId: key,
|
|
18481
|
-
node: select$
|
|
18481
|
+
node: select$2L(),
|
|
18482
18482
|
variables: {},
|
|
18483
18483
|
}, snapshotRefresh);
|
|
18484
18484
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -18495,7 +18495,7 @@ function ingestError$A(luvio, params, error, snapshotRefresh) {
|
|
|
18495
18495
|
const storeMetadataParams = {
|
|
18496
18496
|
ttl: TTL$y,
|
|
18497
18497
|
namespace: keyPrefix,
|
|
18498
|
-
version: VERSION$
|
|
18498
|
+
version: VERSION$2o,
|
|
18499
18499
|
representationName: RepresentationType$J
|
|
18500
18500
|
};
|
|
18501
18501
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -18576,7 +18576,7 @@ function selectChildResourceParams$7(luvio, childResources, resourceParams) {
|
|
|
18576
18576
|
reader.enterPath(envelopeBodyPath);
|
|
18577
18577
|
const childResource = childResources[i];
|
|
18578
18578
|
const childKey = keyBuilder$2O(luvio, childResource);
|
|
18579
|
-
const childFragment = select$
|
|
18579
|
+
const childFragment = select$2L();
|
|
18580
18580
|
const isMissingDataBeforeChildRead = reader.getIsDataMissing();
|
|
18581
18581
|
const childSnapshot = reader.read({
|
|
18582
18582
|
recordId: childKey,
|
|
@@ -18656,7 +18656,7 @@ function selectChildResourceParams$7(luvio, childResources, resourceParams) {
|
|
|
18656
18656
|
}
|
|
18657
18657
|
};
|
|
18658
18658
|
}
|
|
18659
|
-
function select$
|
|
18659
|
+
function select$2K(luvio, resourceParams) {
|
|
18660
18660
|
const childResources = createChildResourceParams$9(resourceParams);
|
|
18661
18661
|
return selectChildResourceParams$7(luvio, childResources, resourceParams);
|
|
18662
18662
|
}
|
|
@@ -18770,7 +18770,7 @@ function ingestSuccess$H(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
18770
18770
|
seenRecords: seenRecords,
|
|
18771
18771
|
select: {
|
|
18772
18772
|
recordId: key,
|
|
18773
|
-
node: select$
|
|
18773
|
+
node: select$2K(luvio, resourceParams),
|
|
18774
18774
|
variables: {},
|
|
18775
18775
|
},
|
|
18776
18776
|
refresh: snapshotRefresh,
|
|
@@ -18819,7 +18819,7 @@ function typeCheckConfig$U(untrustedConfig) {
|
|
|
18819
18819
|
const untrustedConfig_relatedListsActionParameters_array = [];
|
|
18820
18820
|
for (let i = 0, arrayLength = untrustedConfig_relatedListsActionParameters.length; i < arrayLength; i++) {
|
|
18821
18821
|
const untrustedConfig_relatedListsActionParameters_item = untrustedConfig_relatedListsActionParameters[i];
|
|
18822
|
-
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$
|
|
18822
|
+
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$1o(untrustedConfig_relatedListsActionParameters_item);
|
|
18823
18823
|
if (referenceActionRelatedListSingleBatchInputRepresentationValidationError === null) {
|
|
18824
18824
|
untrustedConfig_relatedListsActionParameters_array.push(untrustedConfig_relatedListsActionParameters_item);
|
|
18825
18825
|
}
|
|
@@ -18844,7 +18844,7 @@ function validateAdapterConfig$X(untrustedConfig, configPropertyNames) {
|
|
|
18844
18844
|
}
|
|
18845
18845
|
function adapterFragment$z(luvio, config) {
|
|
18846
18846
|
const resourceParams = createResourceParams$Q(config);
|
|
18847
|
-
return select$
|
|
18847
|
+
return select$2K(luvio, resourceParams);
|
|
18848
18848
|
}
|
|
18849
18849
|
function onFetchResponseSuccess$D(luvio, config, resourceParams, response) {
|
|
18850
18850
|
const snapshot = ingestSuccess$H(luvio, resourceParams, response, {
|
|
@@ -18937,7 +18937,7 @@ function validateAdapterConfig$W(untrustedConfig, configPropertyNames) {
|
|
|
18937
18937
|
}
|
|
18938
18938
|
function adapterFragment$y(luvio, config) {
|
|
18939
18939
|
createResourceParams$P(config);
|
|
18940
|
-
return select$
|
|
18940
|
+
return select$2L();
|
|
18941
18941
|
}
|
|
18942
18942
|
function onFetchResponseSuccess$C(luvio, config, resourceParams, response) {
|
|
18943
18943
|
const snapshot = ingestSuccess$I(luvio, resourceParams, response, {
|
|
@@ -18993,8 +18993,8 @@ const getRelatedListActionsAdapterFactory = (luvio) => function UiApi__getRelate
|
|
|
18993
18993
|
buildCachedSnapshotCachePolicy$F, buildNetworkSnapshotCachePolicy$G);
|
|
18994
18994
|
};
|
|
18995
18995
|
|
|
18996
|
-
function select$
|
|
18997
|
-
return select$
|
|
18996
|
+
function select$2J(luvio, params) {
|
|
18997
|
+
return select$31();
|
|
18998
18998
|
}
|
|
18999
18999
|
function keyBuilder$2K(luvio, params) {
|
|
19000
19000
|
return keyPrefix + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'sections:' + params.queryParams.sections + ',' + 'recordIds:' + params.urlParams.recordIds + ',' + 'relatedListRecordIds:' + params.urlParams.relatedListRecordIds + ')';
|
|
@@ -19008,7 +19008,7 @@ function ingestSuccess$G(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
19008
19008
|
luvio.storeIngest(key, ingest$1Y, body);
|
|
19009
19009
|
const snapshot = luvio.storeLookup({
|
|
19010
19010
|
recordId: key,
|
|
19011
|
-
node: select$
|
|
19011
|
+
node: select$2J(),
|
|
19012
19012
|
variables: {},
|
|
19013
19013
|
}, snapshotRefresh);
|
|
19014
19014
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -19025,7 +19025,7 @@ function ingestError$y(luvio, params, error, snapshotRefresh) {
|
|
|
19025
19025
|
const storeMetadataParams = {
|
|
19026
19026
|
ttl: TTL$y,
|
|
19027
19027
|
namespace: keyPrefix,
|
|
19028
|
-
version: VERSION$
|
|
19028
|
+
version: VERSION$2o,
|
|
19029
19029
|
representationName: RepresentationType$J
|
|
19030
19030
|
};
|
|
19031
19031
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -19080,7 +19080,7 @@ function validateAdapterConfig$V(untrustedConfig, configPropertyNames) {
|
|
|
19080
19080
|
}
|
|
19081
19081
|
function adapterFragment$x(luvio, config) {
|
|
19082
19082
|
createResourceParams$O(config);
|
|
19083
|
-
return select$
|
|
19083
|
+
return select$2J();
|
|
19084
19084
|
}
|
|
19085
19085
|
function onFetchResponseSuccess$B(luvio, config, resourceParams, response) {
|
|
19086
19086
|
const snapshot = ingestSuccess$G(luvio, resourceParams, response, {
|
|
@@ -19136,8 +19136,8 @@ const getRelatedListRecordActionsAdapterFactory = (luvio) => function UiApi__get
|
|
|
19136
19136
|
buildCachedSnapshotCachePolicy$E, buildNetworkSnapshotCachePolicy$F);
|
|
19137
19137
|
};
|
|
19138
19138
|
|
|
19139
|
-
const VERSION$
|
|
19140
|
-
function validate$
|
|
19139
|
+
const VERSION$2f = "a316b3bba367f54adc67d7552ed7d36d";
|
|
19140
|
+
function validate$1n(obj, path = 'PageReferenceRepresentation') {
|
|
19141
19141
|
const v_error = (() => {
|
|
19142
19142
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
19143
19143
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -19182,15 +19182,15 @@ const RepresentationType$E = 'PageReferenceRepresentation';
|
|
|
19182
19182
|
function normalize$x(input, existing, path, luvio, store, timestamp) {
|
|
19183
19183
|
return input;
|
|
19184
19184
|
}
|
|
19185
|
-
const select$
|
|
19185
|
+
const select$2I = function PageReferenceRepresentationSelect() {
|
|
19186
19186
|
return {
|
|
19187
19187
|
kind: 'Fragment',
|
|
19188
|
-
version: VERSION$
|
|
19188
|
+
version: VERSION$2f,
|
|
19189
19189
|
private: [],
|
|
19190
19190
|
opaque: true
|
|
19191
19191
|
};
|
|
19192
19192
|
};
|
|
19193
|
-
function equals$
|
|
19193
|
+
function equals$L(existing, incoming) {
|
|
19194
19194
|
if (JSONStringify(incoming) !== JSONStringify(existing)) {
|
|
19195
19195
|
return false;
|
|
19196
19196
|
}
|
|
@@ -19198,14 +19198,14 @@ function equals$K(existing, incoming) {
|
|
|
19198
19198
|
}
|
|
19199
19199
|
const ingest$1T = function PageReferenceRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
19200
19200
|
if (process.env.NODE_ENV !== 'production') {
|
|
19201
|
-
const validateError = validate$
|
|
19201
|
+
const validateError = validate$1n(input);
|
|
19202
19202
|
if (validateError !== null) {
|
|
19203
19203
|
throw validateError;
|
|
19204
19204
|
}
|
|
19205
19205
|
}
|
|
19206
19206
|
const key = path.fullPath;
|
|
19207
19207
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
19208
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$x, "UiApi", VERSION$
|
|
19208
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$x, "UiApi", VERSION$2f, RepresentationType$E, equals$L);
|
|
19209
19209
|
return createLink$1(key);
|
|
19210
19210
|
};
|
|
19211
19211
|
function getTypeCacheKeys$1W(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -19219,8 +19219,8 @@ function getTypeCacheKeys$1W(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
19219
19219
|
}
|
|
19220
19220
|
|
|
19221
19221
|
const TTL$u = 120000;
|
|
19222
|
-
const VERSION$
|
|
19223
|
-
function validate$
|
|
19222
|
+
const VERSION$2e = "09884ca5bf90ea4662092a4e48817081";
|
|
19223
|
+
function validate$1m(obj, path = 'NavItemRepresentation') {
|
|
19224
19224
|
const v_error = (() => {
|
|
19225
19225
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
19226
19226
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -19456,10 +19456,10 @@ function normalize$w(input, existing, path, luvio, store, timestamp) {
|
|
|
19456
19456
|
}
|
|
19457
19457
|
return input;
|
|
19458
19458
|
}
|
|
19459
|
-
const select$
|
|
19459
|
+
const select$2H = function NavItemRepresentationSelect() {
|
|
19460
19460
|
return {
|
|
19461
19461
|
kind: 'Fragment',
|
|
19462
|
-
version: VERSION$
|
|
19462
|
+
version: VERSION$2e,
|
|
19463
19463
|
private: [],
|
|
19464
19464
|
selections: [
|
|
19465
19465
|
{
|
|
@@ -19518,7 +19518,7 @@ const select$2G = function NavItemRepresentationSelect() {
|
|
|
19518
19518
|
name: 'pageReference',
|
|
19519
19519
|
kind: 'Link',
|
|
19520
19520
|
nullable: true,
|
|
19521
|
-
fragment: select$
|
|
19521
|
+
fragment: select$2I()
|
|
19522
19522
|
},
|
|
19523
19523
|
{
|
|
19524
19524
|
name: 'standardType',
|
|
@@ -19527,7 +19527,7 @@ const select$2G = function NavItemRepresentationSelect() {
|
|
|
19527
19527
|
]
|
|
19528
19528
|
};
|
|
19529
19529
|
};
|
|
19530
|
-
function equals$
|
|
19530
|
+
function equals$K(existing, incoming) {
|
|
19531
19531
|
const existing_availableInClassic = existing.availableInClassic;
|
|
19532
19532
|
const incoming_availableInClassic = incoming.availableInClassic;
|
|
19533
19533
|
if (!(existing_availableInClassic === incoming_availableInClassic)) {
|
|
@@ -19612,14 +19612,14 @@ function equals$J(existing, incoming) {
|
|
|
19612
19612
|
}
|
|
19613
19613
|
const ingest$1S = function NavItemRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
19614
19614
|
if (process.env.NODE_ENV !== 'production') {
|
|
19615
|
-
const validateError = validate$
|
|
19615
|
+
const validateError = validate$1m(input);
|
|
19616
19616
|
if (validateError !== null) {
|
|
19617
19617
|
throw validateError;
|
|
19618
19618
|
}
|
|
19619
19619
|
}
|
|
19620
19620
|
const key = keyBuilderFromType$m(luvio, input);
|
|
19621
19621
|
const ttlToUse = TTL$u;
|
|
19622
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$w, "UiApi", VERSION$
|
|
19622
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$w, "UiApi", VERSION$2e, RepresentationType$D, equals$K);
|
|
19623
19623
|
return createLink$1(key);
|
|
19624
19624
|
};
|
|
19625
19625
|
function getTypeCacheKeys$1V(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -19636,8 +19636,8 @@ function getTypeCacheKeys$1V(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
19636
19636
|
}
|
|
19637
19637
|
|
|
19638
19638
|
const TTL$t = 300000;
|
|
19639
|
-
const VERSION$
|
|
19640
|
-
function validate$
|
|
19639
|
+
const VERSION$2d = "0cd492fdd6c713c206ef53dc02175f71";
|
|
19640
|
+
function validate$1l(obj, path = 'AppRepresentation') {
|
|
19641
19641
|
const v_error = (() => {
|
|
19642
19642
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
19643
19643
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -19911,10 +19911,10 @@ function normalize$v(input, existing, path, luvio, store, timestamp) {
|
|
|
19911
19911
|
}
|
|
19912
19912
|
return input;
|
|
19913
19913
|
}
|
|
19914
|
-
const select$
|
|
19914
|
+
const select$2G = function AppRepresentationSelect() {
|
|
19915
19915
|
return {
|
|
19916
19916
|
kind: 'Fragment',
|
|
19917
|
-
version: VERSION$
|
|
19917
|
+
version: VERSION$2d,
|
|
19918
19918
|
private: [
|
|
19919
19919
|
'eTag'
|
|
19920
19920
|
],
|
|
@@ -19976,7 +19976,7 @@ const select$2F = function AppRepresentationSelect() {
|
|
|
19976
19976
|
name: 'navItems',
|
|
19977
19977
|
kind: 'Link',
|
|
19978
19978
|
plural: true,
|
|
19979
|
-
fragment: select$
|
|
19979
|
+
fragment: select$2H()
|
|
19980
19980
|
},
|
|
19981
19981
|
{
|
|
19982
19982
|
name: 'selected',
|
|
@@ -19994,12 +19994,12 @@ const select$2F = function AppRepresentationSelect() {
|
|
|
19994
19994
|
name: 'userNavItems',
|
|
19995
19995
|
kind: 'Link',
|
|
19996
19996
|
plural: true,
|
|
19997
|
-
fragment: select$
|
|
19997
|
+
fragment: select$2H()
|
|
19998
19998
|
}
|
|
19999
19999
|
]
|
|
20000
20000
|
};
|
|
20001
20001
|
};
|
|
20002
|
-
function equals$
|
|
20002
|
+
function equals$J(existing, incoming) {
|
|
20003
20003
|
const existing_isNavAutoTempTabsDisabled = existing.isNavAutoTempTabsDisabled;
|
|
20004
20004
|
const incoming_isNavAutoTempTabsDisabled = incoming.isNavAutoTempTabsDisabled;
|
|
20005
20005
|
if (!(existing_isNavAutoTempTabsDisabled === incoming_isNavAutoTempTabsDisabled)) {
|
|
@@ -20114,14 +20114,14 @@ function equals$I(existing, incoming) {
|
|
|
20114
20114
|
}
|
|
20115
20115
|
const ingest$1R = function AppRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
20116
20116
|
if (process.env.NODE_ENV !== 'production') {
|
|
20117
|
-
const validateError = validate$
|
|
20117
|
+
const validateError = validate$1l(input);
|
|
20118
20118
|
if (validateError !== null) {
|
|
20119
20119
|
throw validateError;
|
|
20120
20120
|
}
|
|
20121
20121
|
}
|
|
20122
20122
|
const key = keyBuilderFromType$l(luvio, input);
|
|
20123
20123
|
const ttlToUse = TTL$t;
|
|
20124
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$v, "UiApi", VERSION$
|
|
20124
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$v, "UiApi", VERSION$2d, RepresentationType$C, equals$J);
|
|
20125
20125
|
return createLink$1(key);
|
|
20126
20126
|
};
|
|
20127
20127
|
function getTypeCacheKeys$1U(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -20143,8 +20143,8 @@ function getTypeCacheKeys$1U(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
20143
20143
|
}
|
|
20144
20144
|
|
|
20145
20145
|
const TTL$s = 300000;
|
|
20146
|
-
const VERSION$
|
|
20147
|
-
function validate$
|
|
20146
|
+
const VERSION$2c = "a254babf0b6414315db7808a157fd9fc";
|
|
20147
|
+
function validate$1k(obj, path = 'AppsRepresentation') {
|
|
20148
20148
|
const v_error = (() => {
|
|
20149
20149
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20150
20150
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20189,10 +20189,10 @@ function normalize$u(input, existing, path, luvio, store, timestamp) {
|
|
|
20189
20189
|
}
|
|
20190
20190
|
return input;
|
|
20191
20191
|
}
|
|
20192
|
-
const select$
|
|
20192
|
+
const select$2F = function AppsRepresentationSelect() {
|
|
20193
20193
|
return {
|
|
20194
20194
|
kind: 'Fragment',
|
|
20195
|
-
version: VERSION$
|
|
20195
|
+
version: VERSION$2c,
|
|
20196
20196
|
private: [
|
|
20197
20197
|
'eTag'
|
|
20198
20198
|
],
|
|
@@ -20201,12 +20201,12 @@ const select$2E = function AppsRepresentationSelect() {
|
|
|
20201
20201
|
name: 'apps',
|
|
20202
20202
|
kind: 'Link',
|
|
20203
20203
|
plural: true,
|
|
20204
|
-
fragment: select$
|
|
20204
|
+
fragment: select$2G()
|
|
20205
20205
|
}
|
|
20206
20206
|
]
|
|
20207
20207
|
};
|
|
20208
20208
|
};
|
|
20209
|
-
function equals$
|
|
20209
|
+
function equals$I(existing, incoming) {
|
|
20210
20210
|
const existing_eTag = existing.eTag;
|
|
20211
20211
|
const incoming_eTag = incoming.eTag;
|
|
20212
20212
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -20226,14 +20226,14 @@ function equals$H(existing, incoming) {
|
|
|
20226
20226
|
}
|
|
20227
20227
|
const ingest$1Q = function AppsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
20228
20228
|
if (process.env.NODE_ENV !== 'production') {
|
|
20229
|
-
const validateError = validate$
|
|
20229
|
+
const validateError = validate$1k(input);
|
|
20230
20230
|
if (validateError !== null) {
|
|
20231
20231
|
throw validateError;
|
|
20232
20232
|
}
|
|
20233
20233
|
}
|
|
20234
20234
|
const key = path.fullPath;
|
|
20235
20235
|
const ttlToUse = TTL$s;
|
|
20236
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$u, "UiApi", VERSION$
|
|
20236
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$u, "UiApi", VERSION$2c, RepresentationType$B, equals$I);
|
|
20237
20237
|
return createLink$1(key);
|
|
20238
20238
|
};
|
|
20239
20239
|
function getTypeCacheKeys$1T(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -20250,8 +20250,8 @@ function getTypeCacheKeys$1T(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
20250
20250
|
}
|
|
20251
20251
|
}
|
|
20252
20252
|
|
|
20253
|
-
function select$
|
|
20254
|
-
return select$
|
|
20253
|
+
function select$2E(luvio, params) {
|
|
20254
|
+
return select$2F();
|
|
20255
20255
|
}
|
|
20256
20256
|
function keyBuilder$2G(luvio, params) {
|
|
20257
20257
|
return keyPrefix + '::AppsRepresentation:(' + 'formFactor:' + params.queryParams.formFactor + ',' + 'userCustomizations:' + params.queryParams.userCustomizations + ')';
|
|
@@ -20265,7 +20265,7 @@ function ingestSuccess$F(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
20265
20265
|
luvio.storeIngest(key, ingest$1Q, body);
|
|
20266
20266
|
const snapshot = luvio.storeLookup({
|
|
20267
20267
|
recordId: key,
|
|
20268
|
-
node: select$
|
|
20268
|
+
node: select$2E(),
|
|
20269
20269
|
variables: {},
|
|
20270
20270
|
}, snapshotRefresh);
|
|
20271
20271
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -20282,7 +20282,7 @@ function ingestError$x(luvio, params, error, snapshotRefresh) {
|
|
|
20282
20282
|
const storeMetadataParams = {
|
|
20283
20283
|
ttl: TTL$s,
|
|
20284
20284
|
namespace: keyPrefix,
|
|
20285
|
-
version: VERSION$
|
|
20285
|
+
version: VERSION$2c,
|
|
20286
20286
|
representationName: RepresentationType$B
|
|
20287
20287
|
};
|
|
20288
20288
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -20334,7 +20334,7 @@ function validateAdapterConfig$U(untrustedConfig, configPropertyNames) {
|
|
|
20334
20334
|
}
|
|
20335
20335
|
function adapterFragment$w(luvio, config) {
|
|
20336
20336
|
createResourceParams$N(config);
|
|
20337
|
-
return select$
|
|
20337
|
+
return select$2E();
|
|
20338
20338
|
}
|
|
20339
20339
|
function onFetchResponseSuccess$A(luvio, config, resourceParams, response) {
|
|
20340
20340
|
const snapshot = ingestSuccess$F(luvio, resourceParams, response, {
|
|
@@ -20390,8 +20390,8 @@ const getAllAppsAdapterFactory = (luvio) => function UiApi__getAllApps(untrusted
|
|
|
20390
20390
|
buildCachedSnapshotCachePolicy$D, buildNetworkSnapshotCachePolicy$E);
|
|
20391
20391
|
};
|
|
20392
20392
|
|
|
20393
|
-
function select$
|
|
20394
|
-
return select$
|
|
20393
|
+
function select$2D(luvio, params) {
|
|
20394
|
+
return select$2G();
|
|
20395
20395
|
}
|
|
20396
20396
|
function keyBuilder$2E(luvio, params) {
|
|
20397
20397
|
return keyPrefix + '::AppRepresentation:(' + 'formFactor:' + params.queryParams.formFactor + ',' + 'userCustomizations:' + params.queryParams.userCustomizations + ')';
|
|
@@ -20405,7 +20405,7 @@ function ingestSuccess$E(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
20405
20405
|
luvio.storeIngest(key, ingest$1R, body);
|
|
20406
20406
|
const snapshot = luvio.storeLookup({
|
|
20407
20407
|
recordId: key,
|
|
20408
|
-
node: select$
|
|
20408
|
+
node: select$2D(),
|
|
20409
20409
|
variables: {},
|
|
20410
20410
|
}, snapshotRefresh);
|
|
20411
20411
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -20422,7 +20422,7 @@ function ingestError$w(luvio, params, error, snapshotRefresh) {
|
|
|
20422
20422
|
const storeMetadataParams = {
|
|
20423
20423
|
ttl: TTL$t,
|
|
20424
20424
|
namespace: keyPrefix,
|
|
20425
|
-
version: VERSION$
|
|
20425
|
+
version: VERSION$2d,
|
|
20426
20426
|
representationName: RepresentationType$C
|
|
20427
20427
|
};
|
|
20428
20428
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -20473,7 +20473,7 @@ function validateAdapterConfig$T(untrustedConfig, configPropertyNames) {
|
|
|
20473
20473
|
}
|
|
20474
20474
|
function adapterFragment$v(luvio, config) {
|
|
20475
20475
|
createResourceParams$M(config);
|
|
20476
|
-
return select$
|
|
20476
|
+
return select$2D();
|
|
20477
20477
|
}
|
|
20478
20478
|
function onFetchResponseSuccess$z(luvio, config, resourceParams, response) {
|
|
20479
20479
|
const snapshot = ingestSuccess$E(luvio, resourceParams, response, {
|
|
@@ -20529,8 +20529,8 @@ const getSelectedAppAdapterFactory = (luvio) => function UiApi__getSelectedApp(u
|
|
|
20529
20529
|
buildCachedSnapshotCachePolicy$C, buildNetworkSnapshotCachePolicy$D);
|
|
20530
20530
|
};
|
|
20531
20531
|
|
|
20532
|
-
function select$
|
|
20533
|
-
return select$
|
|
20532
|
+
function select$2C(luvio, params) {
|
|
20533
|
+
return select$2G();
|
|
20534
20534
|
}
|
|
20535
20535
|
function keyBuilder$2C(luvio, params) {
|
|
20536
20536
|
return keyBuilder$2H(luvio, {
|
|
@@ -20546,7 +20546,7 @@ function ingestSuccess$D(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
20546
20546
|
luvio.storeIngest(key, ingest$1R, body);
|
|
20547
20547
|
const snapshot = luvio.storeLookup({
|
|
20548
20548
|
recordId: key,
|
|
20549
|
-
node: select$
|
|
20549
|
+
node: select$2C(),
|
|
20550
20550
|
variables: {},
|
|
20551
20551
|
}, snapshotRefresh);
|
|
20552
20552
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -20563,7 +20563,7 @@ function ingestError$v(luvio, params, error, snapshotRefresh) {
|
|
|
20563
20563
|
const storeMetadataParams = {
|
|
20564
20564
|
ttl: TTL$t,
|
|
20565
20565
|
namespace: keyPrefix,
|
|
20566
|
-
version: VERSION$
|
|
20566
|
+
version: VERSION$2d,
|
|
20567
20567
|
representationName: RepresentationType$C
|
|
20568
20568
|
};
|
|
20569
20569
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -20616,7 +20616,7 @@ function validateAdapterConfig$S(untrustedConfig, configPropertyNames) {
|
|
|
20616
20616
|
}
|
|
20617
20617
|
function adapterFragment$u(luvio, config) {
|
|
20618
20618
|
createResourceParams$L(config);
|
|
20619
|
-
return select$
|
|
20619
|
+
return select$2C();
|
|
20620
20620
|
}
|
|
20621
20621
|
function onFetchResponseSuccess$y(luvio, config, resourceParams, response) {
|
|
20622
20622
|
const snapshot = ingestSuccess$D(luvio, resourceParams, response, {
|
|
@@ -20672,8 +20672,8 @@ const getAppDetailsAdapterFactory = (luvio) => function UiApi__getAppDetails(unt
|
|
|
20672
20672
|
buildCachedSnapshotCachePolicy$B, buildNetworkSnapshotCachePolicy$C);
|
|
20673
20673
|
};
|
|
20674
20674
|
|
|
20675
|
-
const VERSION$
|
|
20676
|
-
function validate$
|
|
20675
|
+
const VERSION$2b = "f43ef90ffde4d488414d6868e3aaefcb";
|
|
20676
|
+
function validate$1j(obj, path = 'DuplicateRuleFilterItemRepresentation') {
|
|
20677
20677
|
const v_error = (() => {
|
|
20678
20678
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20679
20679
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20706,10 +20706,10 @@ function validate$1i(obj, path = 'DuplicateRuleFilterItemRepresentation') {
|
|
|
20706
20706
|
})();
|
|
20707
20707
|
return v_error === undefined ? null : v_error;
|
|
20708
20708
|
}
|
|
20709
|
-
const select$
|
|
20709
|
+
const select$2B = function DuplicateRuleFilterItemRepresentationSelect() {
|
|
20710
20710
|
return {
|
|
20711
20711
|
kind: 'Fragment',
|
|
20712
|
-
version: VERSION$
|
|
20712
|
+
version: VERSION$2b,
|
|
20713
20713
|
private: [
|
|
20714
20714
|
'eTag'
|
|
20715
20715
|
],
|
|
@@ -20734,8 +20734,8 @@ const select$2A = function DuplicateRuleFilterItemRepresentationSelect() {
|
|
|
20734
20734
|
};
|
|
20735
20735
|
};
|
|
20736
20736
|
|
|
20737
|
-
const VERSION$
|
|
20738
|
-
function validate$
|
|
20737
|
+
const VERSION$2a = "320d7f254687278f2763d4b490dab3fb";
|
|
20738
|
+
function validate$1i(obj, path = 'DuplicateRuleFilterRepresentation') {
|
|
20739
20739
|
const v_error = (() => {
|
|
20740
20740
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20741
20741
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20758,7 +20758,7 @@ function validate$1h(obj, path = 'DuplicateRuleFilterRepresentation') {
|
|
|
20758
20758
|
for (let i = 0; i < obj_filterItems.length; i++) {
|
|
20759
20759
|
const obj_filterItems_item = obj_filterItems[i];
|
|
20760
20760
|
const path_filterItems_item = path_filterItems + '[' + i + ']';
|
|
20761
|
-
const referencepath_filterItems_itemValidationError = validate$
|
|
20761
|
+
const referencepath_filterItems_itemValidationError = validate$1j(obj_filterItems_item, path_filterItems_item);
|
|
20762
20762
|
if (referencepath_filterItems_itemValidationError !== null) {
|
|
20763
20763
|
let message = 'Object doesn\'t match DuplicateRuleFilterItemRepresentation (at "' + path_filterItems_item + '")\n';
|
|
20764
20764
|
message += referencepath_filterItems_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -20773,11 +20773,11 @@ function validate$1h(obj, path = 'DuplicateRuleFilterRepresentation') {
|
|
|
20773
20773
|
})();
|
|
20774
20774
|
return v_error === undefined ? null : v_error;
|
|
20775
20775
|
}
|
|
20776
|
-
const select$
|
|
20777
|
-
const { selections: DuplicateRuleFilterItemRepresentation__selections, opaque: DuplicateRuleFilterItemRepresentation__opaque, } = select$
|
|
20776
|
+
const select$2A = function DuplicateRuleFilterRepresentationSelect() {
|
|
20777
|
+
const { selections: DuplicateRuleFilterItemRepresentation__selections, opaque: DuplicateRuleFilterItemRepresentation__opaque, } = select$2B();
|
|
20778
20778
|
return {
|
|
20779
20779
|
kind: 'Fragment',
|
|
20780
|
-
version: VERSION$
|
|
20780
|
+
version: VERSION$2a,
|
|
20781
20781
|
private: [
|
|
20782
20782
|
'eTag'
|
|
20783
20783
|
],
|
|
@@ -20800,8 +20800,8 @@ const select$2z = function DuplicateRuleFilterRepresentationSelect() {
|
|
|
20800
20800
|
};
|
|
20801
20801
|
};
|
|
20802
20802
|
|
|
20803
|
-
const VERSION$
|
|
20804
|
-
function validate$
|
|
20803
|
+
const VERSION$29 = "b47b44e260e5ce777beaf3da9088997c";
|
|
20804
|
+
function validate$1h(obj, path = 'MatchRuleRepresentation') {
|
|
20805
20805
|
const v_error = (() => {
|
|
20806
20806
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20807
20807
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20841,10 +20841,10 @@ function validate$1g(obj, path = 'MatchRuleRepresentation') {
|
|
|
20841
20841
|
})();
|
|
20842
20842
|
return v_error === undefined ? null : v_error;
|
|
20843
20843
|
}
|
|
20844
|
-
const select$
|
|
20844
|
+
const select$2z = function MatchRuleRepresentationSelect() {
|
|
20845
20845
|
return {
|
|
20846
20846
|
kind: 'Fragment',
|
|
20847
|
-
version: VERSION$
|
|
20847
|
+
version: VERSION$29,
|
|
20848
20848
|
private: [
|
|
20849
20849
|
'eTag'
|
|
20850
20850
|
],
|
|
@@ -20870,8 +20870,8 @@ const select$2y = function MatchRuleRepresentationSelect() {
|
|
|
20870
20870
|
};
|
|
20871
20871
|
};
|
|
20872
20872
|
|
|
20873
|
-
const VERSION$
|
|
20874
|
-
function validate$
|
|
20873
|
+
const VERSION$28 = "bb83d7210bb1d7861b6188bc5f552617";
|
|
20874
|
+
function validate$1g(obj, path = 'DuplicateRuleRepresentation') {
|
|
20875
20875
|
const v_error = (() => {
|
|
20876
20876
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
20877
20877
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -20899,7 +20899,7 @@ function validate$1f(obj, path = 'DuplicateRuleRepresentation') {
|
|
|
20899
20899
|
for (let i = 0; i < obj_duplicateRuleFilters.length; i++) {
|
|
20900
20900
|
const obj_duplicateRuleFilters_item = obj_duplicateRuleFilters[i];
|
|
20901
20901
|
const path_duplicateRuleFilters_item = path_duplicateRuleFilters + '[' + i + ']';
|
|
20902
|
-
const referencepath_duplicateRuleFilters_itemValidationError = validate$
|
|
20902
|
+
const referencepath_duplicateRuleFilters_itemValidationError = validate$1i(obj_duplicateRuleFilters_item, path_duplicateRuleFilters_item);
|
|
20903
20903
|
if (referencepath_duplicateRuleFilters_itemValidationError !== null) {
|
|
20904
20904
|
let message = 'Object doesn\'t match DuplicateRuleFilterRepresentation (at "' + path_duplicateRuleFilters_item + '")\n';
|
|
20905
20905
|
message += referencepath_duplicateRuleFilters_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -20919,7 +20919,7 @@ function validate$1f(obj, path = 'DuplicateRuleRepresentation') {
|
|
|
20919
20919
|
for (let i = 0; i < obj_matchRules.length; i++) {
|
|
20920
20920
|
const obj_matchRules_item = obj_matchRules[i];
|
|
20921
20921
|
const path_matchRules_item = path_matchRules + '[' + i + ']';
|
|
20922
|
-
const referencepath_matchRules_itemValidationError = validate$
|
|
20922
|
+
const referencepath_matchRules_itemValidationError = validate$1h(obj_matchRules_item, path_matchRules_item);
|
|
20923
20923
|
if (referencepath_matchRules_itemValidationError !== null) {
|
|
20924
20924
|
let message = 'Object doesn\'t match MatchRuleRepresentation (at "' + path_matchRules_item + '")\n';
|
|
20925
20925
|
message += referencepath_matchRules_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -20958,12 +20958,12 @@ function validate$1f(obj, path = 'DuplicateRuleRepresentation') {
|
|
|
20958
20958
|
})();
|
|
20959
20959
|
return v_error === undefined ? null : v_error;
|
|
20960
20960
|
}
|
|
20961
|
-
const select$
|
|
20962
|
-
const { selections: DuplicateRuleFilterRepresentation__selections, opaque: DuplicateRuleFilterRepresentation__opaque, } = select$
|
|
20963
|
-
const { selections: MatchRuleRepresentation__selections, opaque: MatchRuleRepresentation__opaque, } = select$
|
|
20961
|
+
const select$2y = function DuplicateRuleRepresentationSelect() {
|
|
20962
|
+
const { selections: DuplicateRuleFilterRepresentation__selections, opaque: DuplicateRuleFilterRepresentation__opaque, } = select$2A();
|
|
20963
|
+
const { selections: MatchRuleRepresentation__selections, opaque: MatchRuleRepresentation__opaque, } = select$2z();
|
|
20964
20964
|
return {
|
|
20965
20965
|
kind: 'Fragment',
|
|
20966
|
-
version: VERSION$
|
|
20966
|
+
version: VERSION$28,
|
|
20967
20967
|
private: [
|
|
20968
20968
|
'eTag'
|
|
20969
20969
|
],
|
|
@@ -21011,8 +21011,8 @@ const select$2x = function DuplicateRuleRepresentationSelect() {
|
|
|
21011
21011
|
};
|
|
21012
21012
|
|
|
21013
21013
|
const TTL$r = 900000;
|
|
21014
|
-
const VERSION$
|
|
21015
|
-
function validate$
|
|
21014
|
+
const VERSION$27 = "be27ee99dc0dc43a1f66b8fe98dc532c";
|
|
21015
|
+
function validate$1f(obj, path = 'DuplicatesConfigurationRepresentation') {
|
|
21016
21016
|
const v_error = (() => {
|
|
21017
21017
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
21018
21018
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -21047,7 +21047,7 @@ function validate$1e(obj, path = 'DuplicatesConfigurationRepresentation') {
|
|
|
21047
21047
|
for (let i = 0; i < obj_duplicateRules.length; i++) {
|
|
21048
21048
|
const obj_duplicateRules_item = obj_duplicateRules[i];
|
|
21049
21049
|
const path_duplicateRules_item = path_duplicateRules + '[' + i + ']';
|
|
21050
|
-
const referencepath_duplicateRules_itemValidationError = validate$
|
|
21050
|
+
const referencepath_duplicateRules_itemValidationError = validate$1g(obj_duplicateRules_item, path_duplicateRules_item);
|
|
21051
21051
|
if (referencepath_duplicateRules_itemValidationError !== null) {
|
|
21052
21052
|
let message = 'Object doesn\'t match DuplicateRuleRepresentation (at "' + path_duplicateRules_item + '")\n';
|
|
21053
21053
|
message += referencepath_duplicateRules_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -21071,11 +21071,11 @@ const RepresentationType$A = 'DuplicatesConfigurationRepresentation';
|
|
|
21071
21071
|
function normalize$t(input, existing, path, luvio, store, timestamp) {
|
|
21072
21072
|
return input;
|
|
21073
21073
|
}
|
|
21074
|
-
const select$
|
|
21075
|
-
const { selections: DuplicateRuleRepresentation__selections, opaque: DuplicateRuleRepresentation__opaque, } = select$
|
|
21074
|
+
const select$2x = function DuplicatesConfigurationRepresentationSelect() {
|
|
21075
|
+
const { selections: DuplicateRuleRepresentation__selections, opaque: DuplicateRuleRepresentation__opaque, } = select$2y();
|
|
21076
21076
|
return {
|
|
21077
21077
|
kind: 'Fragment',
|
|
21078
|
-
version: VERSION$
|
|
21078
|
+
version: VERSION$27,
|
|
21079
21079
|
private: [
|
|
21080
21080
|
'eTag'
|
|
21081
21081
|
],
|
|
@@ -21106,7 +21106,7 @@ const select$2w = function DuplicatesConfigurationRepresentationSelect() {
|
|
|
21106
21106
|
]
|
|
21107
21107
|
};
|
|
21108
21108
|
};
|
|
21109
|
-
function equals$
|
|
21109
|
+
function equals$H(existing, incoming) {
|
|
21110
21110
|
if (existing.eTag !== incoming.eTag) {
|
|
21111
21111
|
return false;
|
|
21112
21112
|
}
|
|
@@ -21114,14 +21114,14 @@ function equals$G(existing, incoming) {
|
|
|
21114
21114
|
}
|
|
21115
21115
|
const ingest$1P = function DuplicatesConfigurationRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
21116
21116
|
if (process.env.NODE_ENV !== 'production') {
|
|
21117
|
-
const validateError = validate$
|
|
21117
|
+
const validateError = validate$1f(input);
|
|
21118
21118
|
if (validateError !== null) {
|
|
21119
21119
|
throw validateError;
|
|
21120
21120
|
}
|
|
21121
21121
|
}
|
|
21122
21122
|
const key = path.fullPath;
|
|
21123
21123
|
const ttlToUse = TTL$r;
|
|
21124
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$t, "UiApi", VERSION$
|
|
21124
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$t, "UiApi", VERSION$27, RepresentationType$A, equals$H);
|
|
21125
21125
|
return createLink$1(key);
|
|
21126
21126
|
};
|
|
21127
21127
|
function getTypeCacheKeys$1S(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -21134,8 +21134,8 @@ function getTypeCacheKeys$1S(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
21134
21134
|
});
|
|
21135
21135
|
}
|
|
21136
21136
|
|
|
21137
|
-
function select$
|
|
21138
|
-
return select$
|
|
21137
|
+
function select$2w(luvio, params) {
|
|
21138
|
+
return select$2x();
|
|
21139
21139
|
}
|
|
21140
21140
|
function keyBuilder$2A(luvio, params) {
|
|
21141
21141
|
return keyPrefix + '::DuplicatesConfigurationRepresentation:(' + 'recordTypeId:' + params.queryParams.recordTypeId + ',' + 'objectApiName:' + params.urlParams.objectApiName + ')';
|
|
@@ -21149,7 +21149,7 @@ function ingestSuccess$C(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
21149
21149
|
luvio.storeIngest(key, ingest$1P, body);
|
|
21150
21150
|
const snapshot = luvio.storeLookup({
|
|
21151
21151
|
recordId: key,
|
|
21152
|
-
node: select$
|
|
21152
|
+
node: select$2w(),
|
|
21153
21153
|
variables: {},
|
|
21154
21154
|
}, snapshotRefresh);
|
|
21155
21155
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -21166,7 +21166,7 @@ function ingestError$u(luvio, params, error, snapshotRefresh) {
|
|
|
21166
21166
|
const storeMetadataParams = {
|
|
21167
21167
|
ttl: TTL$r,
|
|
21168
21168
|
namespace: keyPrefix,
|
|
21169
|
-
version: VERSION$
|
|
21169
|
+
version: VERSION$27,
|
|
21170
21170
|
representationName: RepresentationType$A
|
|
21171
21171
|
};
|
|
21172
21172
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -21217,7 +21217,7 @@ function validateAdapterConfig$R(untrustedConfig, configPropertyNames) {
|
|
|
21217
21217
|
}
|
|
21218
21218
|
function adapterFragment$t(luvio, config) {
|
|
21219
21219
|
createResourceParams$K(config);
|
|
21220
|
-
return select$
|
|
21220
|
+
return select$2w();
|
|
21221
21221
|
}
|
|
21222
21222
|
function onFetchResponseSuccess$x(luvio, config, resourceParams, response) {
|
|
21223
21223
|
const snapshot = ingestSuccess$C(luvio, resourceParams, response, {
|
|
@@ -21305,7 +21305,7 @@ function ingestError$t(luvio, params, error, snapshotRefresh) {
|
|
|
21305
21305
|
const storeMetadataParams = {
|
|
21306
21306
|
ttl: TTL$C,
|
|
21307
21307
|
namespace: keyPrefix,
|
|
21308
|
-
version: VERSION$
|
|
21308
|
+
version: VERSION$2x,
|
|
21309
21309
|
representationName: RepresentationType$S
|
|
21310
21310
|
};
|
|
21311
21311
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -21331,7 +21331,7 @@ function onFetchResponseSuccess$w(luvio, config, resourceParams, response) {
|
|
|
21331
21331
|
luvio.storeIngest(key, ingest$24, body);
|
|
21332
21332
|
const snapshot = luvio.storeLookup({
|
|
21333
21333
|
recordId: key,
|
|
21334
|
-
node: select$
|
|
21334
|
+
node: select$38(),
|
|
21335
21335
|
variables: {},
|
|
21336
21336
|
}, {
|
|
21337
21337
|
config,
|
|
@@ -21377,7 +21377,7 @@ function buildCachedSnapshotCachePolicy$z(context, storeLookup) {
|
|
|
21377
21377
|
const { luvio, config } = context;
|
|
21378
21378
|
const selector = {
|
|
21379
21379
|
recordId: keyBuilder$3g(luvio, config),
|
|
21380
|
-
node: select$
|
|
21380
|
+
node: select$38(),
|
|
21381
21381
|
variables: {},
|
|
21382
21382
|
};
|
|
21383
21383
|
return storeLookup(selector, {
|
|
@@ -21474,7 +21474,7 @@ function buildCachedSnapshot$5(luvio, config) {
|
|
|
21474
21474
|
});
|
|
21475
21475
|
const selector = {
|
|
21476
21476
|
recordId: key,
|
|
21477
|
-
node: select$
|
|
21477
|
+
node: select$37(),
|
|
21478
21478
|
variables: {},
|
|
21479
21479
|
};
|
|
21480
21480
|
return luvio.storeLookup(selector, {
|
|
@@ -21592,7 +21592,7 @@ function buildCachedSnapshotCachePolicy$y(context, storeLookup) {
|
|
|
21592
21592
|
layoutType,
|
|
21593
21593
|
mode,
|
|
21594
21594
|
}),
|
|
21595
|
-
node: select$
|
|
21595
|
+
node: select$37(),
|
|
21596
21596
|
variables: {},
|
|
21597
21597
|
};
|
|
21598
21598
|
return storeLookup(selector, {
|
|
@@ -21648,8 +21648,8 @@ function keyBuilder$2x(luvio, params) {
|
|
|
21648
21648
|
});
|
|
21649
21649
|
}
|
|
21650
21650
|
|
|
21651
|
-
function select$
|
|
21652
|
-
return select$
|
|
21651
|
+
function select$2v(luvio, params) {
|
|
21652
|
+
return select$3p();
|
|
21653
21653
|
}
|
|
21654
21654
|
function getResponseCacheKeys$J(storeKeyMap, luvio, resourceParams, response) {
|
|
21655
21655
|
getTypeCacheKeys$2j(storeKeyMap, luvio, response);
|
|
@@ -21660,7 +21660,7 @@ function ingestSuccess$B(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
21660
21660
|
luvio.storeIngest(key, ingest$2f, body);
|
|
21661
21661
|
const snapshot = luvio.storeLookup({
|
|
21662
21662
|
recordId: key,
|
|
21663
|
-
node: select$
|
|
21663
|
+
node: select$2v(),
|
|
21664
21664
|
variables: {},
|
|
21665
21665
|
}, snapshotRefresh);
|
|
21666
21666
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -21677,7 +21677,7 @@ function ingestError$s(luvio, params, error, snapshotRefresh) {
|
|
|
21677
21677
|
const storeMetadataParams = {
|
|
21678
21678
|
ttl: TTL$H,
|
|
21679
21679
|
namespace: keyPrefix,
|
|
21680
|
-
version: VERSION$
|
|
21680
|
+
version: VERSION$2K,
|
|
21681
21681
|
representationName: RepresentationType$11
|
|
21682
21682
|
};
|
|
21683
21683
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -21742,7 +21742,7 @@ function selectChildResourceParams$6(luvio, childResources, resourceParams) {
|
|
|
21742
21742
|
reader.enterPath(envelopeBodyPath);
|
|
21743
21743
|
const childResource = childResources[i];
|
|
21744
21744
|
const childKey = keyBuilder$2x(luvio, childResource);
|
|
21745
|
-
const childFragment = select$
|
|
21745
|
+
const childFragment = select$2v();
|
|
21746
21746
|
const isMissingDataBeforeChildRead = reader.getIsDataMissing();
|
|
21747
21747
|
const childSnapshot = reader.read({
|
|
21748
21748
|
recordId: childKey,
|
|
@@ -21822,7 +21822,7 @@ function selectChildResourceParams$6(luvio, childResources, resourceParams) {
|
|
|
21822
21822
|
}
|
|
21823
21823
|
};
|
|
21824
21824
|
}
|
|
21825
|
-
function select$
|
|
21825
|
+
function select$2u(luvio, resourceParams) {
|
|
21826
21826
|
const childResources = createChildResourceParams$7(resourceParams);
|
|
21827
21827
|
return selectChildResourceParams$6(luvio, childResources, resourceParams);
|
|
21828
21828
|
}
|
|
@@ -21936,7 +21936,7 @@ function ingestSuccess$A(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
21936
21936
|
seenRecords: seenRecords,
|
|
21937
21937
|
select: {
|
|
21938
21938
|
recordId: key,
|
|
21939
|
-
node: select$
|
|
21939
|
+
node: select$2u(luvio, resourceParams),
|
|
21940
21940
|
variables: {},
|
|
21941
21941
|
},
|
|
21942
21942
|
refresh: snapshotRefresh,
|
|
@@ -21997,7 +21997,7 @@ function validateAdapterConfig$M(untrustedConfig, configPropertyNames) {
|
|
|
21997
21997
|
}
|
|
21998
21998
|
function adapterFragment$s(luvio, config) {
|
|
21999
21999
|
const resourceParams = createResourceParams$I(config);
|
|
22000
|
-
return select$
|
|
22000
|
+
return select$2u(luvio, resourceParams);
|
|
22001
22001
|
}
|
|
22002
22002
|
function onFetchResponseSuccess$u(luvio, config, resourceParams, response) {
|
|
22003
22003
|
const snapshot = ingestSuccess$A(luvio, resourceParams, response, {
|
|
@@ -22060,9 +22060,9 @@ function createPaginationParams$1(params) {
|
|
|
22060
22060
|
pageSize: queryParams.pageSize === undefined ? 20 : queryParams.pageSize
|
|
22061
22061
|
};
|
|
22062
22062
|
}
|
|
22063
|
-
function select$
|
|
22063
|
+
function select$2t(luvio, params) {
|
|
22064
22064
|
const paginationParams = createPaginationParams$1(params);
|
|
22065
|
-
return select$
|
|
22065
|
+
return select$3f(paginationParams);
|
|
22066
22066
|
}
|
|
22067
22067
|
function keyBuilder$2u(luvio, params) {
|
|
22068
22068
|
return keyBuilder$3q(luvio, {
|
|
@@ -22080,7 +22080,7 @@ function ingestSuccess$z(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
22080
22080
|
luvio.storeIngest(key, ingest$28, body);
|
|
22081
22081
|
const snapshot = luvio.storeLookup({
|
|
22082
22082
|
recordId: key,
|
|
22083
|
-
node: select$
|
|
22083
|
+
node: select$2t(luvio, resourceParams),
|
|
22084
22084
|
variables: {},
|
|
22085
22085
|
}, snapshotRefresh);
|
|
22086
22086
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -22145,7 +22145,7 @@ function validateAdapterConfig$L(untrustedConfig, configPropertyNames) {
|
|
|
22145
22145
|
}
|
|
22146
22146
|
function adapterFragment$r(luvio, config) {
|
|
22147
22147
|
const resourceParams = createResourceParams$H(config);
|
|
22148
|
-
return select$
|
|
22148
|
+
return select$2t(luvio, resourceParams);
|
|
22149
22149
|
}
|
|
22150
22150
|
function onFetchResponseSuccess$t(luvio, config, resourceParams, response) {
|
|
22151
22151
|
const snapshot = ingestSuccess$z(luvio, resourceParams, response, {
|
|
@@ -22213,7 +22213,7 @@ function getPaginationMetadata$2(luvio, resourceParams) {
|
|
|
22213
22213
|
recordId: key,
|
|
22214
22214
|
node: {
|
|
22215
22215
|
kind: 'Fragment',
|
|
22216
|
-
version: VERSION$
|
|
22216
|
+
version: VERSION$2B,
|
|
22217
22217
|
private: [],
|
|
22218
22218
|
selections: [
|
|
22219
22219
|
{
|
|
@@ -22279,7 +22279,7 @@ const getListInfosByObjectNameAdapterFactory = (luvio) => function UiApi__getLis
|
|
|
22279
22279
|
buildCachedSnapshotCachePolicy$w, buildNetworkSnapshotCachePolicy$x);
|
|
22280
22280
|
};
|
|
22281
22281
|
|
|
22282
|
-
function validate$
|
|
22282
|
+
function validate$1e(obj, path = 'ListFilterByInfoInputRepresentation') {
|
|
22283
22283
|
const v_error = (() => {
|
|
22284
22284
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22285
22285
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22310,7 +22310,7 @@ function validate$1d(obj, path = 'ListFilterByInfoInputRepresentation') {
|
|
|
22310
22310
|
return v_error === undefined ? null : v_error;
|
|
22311
22311
|
}
|
|
22312
22312
|
|
|
22313
|
-
function validate$
|
|
22313
|
+
function validate$1d(obj, path = 'ListScopeInputRepresentation') {
|
|
22314
22314
|
const v_error = (() => {
|
|
22315
22315
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22316
22316
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22380,8 +22380,8 @@ function validate$1c(obj, path = 'ListScopeInputRepresentation') {
|
|
|
22380
22380
|
return v_error === undefined ? null : v_error;
|
|
22381
22381
|
}
|
|
22382
22382
|
|
|
22383
|
-
function select$
|
|
22384
|
-
return select$
|
|
22383
|
+
function select$2s(luvio, params) {
|
|
22384
|
+
return select$3p();
|
|
22385
22385
|
}
|
|
22386
22386
|
function getResponseCacheKeys$G(storeKeyMap, luvio, resourceParams, response) {
|
|
22387
22387
|
getTypeCacheKeys$2j(storeKeyMap, luvio, response);
|
|
@@ -22392,7 +22392,7 @@ function ingestSuccess$y(luvio, resourceParams, response) {
|
|
|
22392
22392
|
luvio.storeIngest(key, ingest$2f, body);
|
|
22393
22393
|
const snapshot = luvio.storeLookup({
|
|
22394
22394
|
recordId: key,
|
|
22395
|
-
node: select$
|
|
22395
|
+
node: select$2s(),
|
|
22396
22396
|
variables: {},
|
|
22397
22397
|
});
|
|
22398
22398
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -22440,7 +22440,7 @@ function typeCheckConfig$J(untrustedConfig) {
|
|
|
22440
22440
|
const untrustedConfig_filteredByInfo_array = [];
|
|
22441
22441
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
22442
22442
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
22443
|
-
const referenceListFilterByInfoInputRepresentationValidationError = validate$
|
|
22443
|
+
const referenceListFilterByInfoInputRepresentationValidationError = validate$1e(untrustedConfig_filteredByInfo_item);
|
|
22444
22444
|
if (referenceListFilterByInfoInputRepresentationValidationError === null) {
|
|
22445
22445
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
22446
22446
|
}
|
|
@@ -22448,7 +22448,7 @@ function typeCheckConfig$J(untrustedConfig) {
|
|
|
22448
22448
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
22449
22449
|
}
|
|
22450
22450
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
22451
|
-
const referenceListScopeInputRepresentationValidationError = validate$
|
|
22451
|
+
const referenceListScopeInputRepresentationValidationError = validate$1d(untrustedConfig_scope);
|
|
22452
22452
|
if (referenceListScopeInputRepresentationValidationError === null) {
|
|
22453
22453
|
config.scope = untrustedConfig_scope;
|
|
22454
22454
|
}
|
|
@@ -22615,7 +22615,7 @@ function validateAdapterConfig$I(untrustedConfig, configPropertyNames) {
|
|
|
22615
22615
|
}
|
|
22616
22616
|
function adapterFragment$q(luvio, config) {
|
|
22617
22617
|
createResourceParams$E(config);
|
|
22618
|
-
return select$
|
|
22618
|
+
return select$2v();
|
|
22619
22619
|
}
|
|
22620
22620
|
function onFetchResponseSuccess$s(luvio, config, resourceParams, response) {
|
|
22621
22621
|
const snapshot = ingestSuccess$B(luvio, resourceParams, response, {
|
|
@@ -22671,8 +22671,8 @@ const getListInfoByNameAdapterFactory = (luvio) => function UiApi__getListInfoBy
|
|
|
22671
22671
|
buildCachedSnapshotCachePolicy$v, buildNetworkSnapshotCachePolicy$w);
|
|
22672
22672
|
};
|
|
22673
22673
|
|
|
22674
|
-
function select$
|
|
22675
|
-
return select$
|
|
22674
|
+
function select$2r(luvio, params) {
|
|
22675
|
+
return select$3p();
|
|
22676
22676
|
}
|
|
22677
22677
|
function getResponseCacheKeys$E(storeKeyMap, luvio, resourceParams, response) {
|
|
22678
22678
|
getTypeCacheKeys$2j(storeKeyMap, luvio, response);
|
|
@@ -22683,7 +22683,7 @@ function ingestSuccess$x(luvio, resourceParams, response) {
|
|
|
22683
22683
|
luvio.storeIngest(key, ingest$2f, body);
|
|
22684
22684
|
const snapshot = luvio.storeLookup({
|
|
22685
22685
|
recordId: key,
|
|
22686
|
-
node: select$
|
|
22686
|
+
node: select$2r(),
|
|
22687
22687
|
variables: {},
|
|
22688
22688
|
});
|
|
22689
22689
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -22730,7 +22730,7 @@ function typeCheckConfig$G(untrustedConfig) {
|
|
|
22730
22730
|
const untrustedConfig_filteredByInfo_array = [];
|
|
22731
22731
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
22732
22732
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
22733
|
-
const referenceListFilterByInfoInputRepresentationValidationError = validate$
|
|
22733
|
+
const referenceListFilterByInfoInputRepresentationValidationError = validate$1e(untrustedConfig_filteredByInfo_item);
|
|
22734
22734
|
if (referenceListFilterByInfoInputRepresentationValidationError === null) {
|
|
22735
22735
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
22736
22736
|
}
|
|
@@ -22738,7 +22738,7 @@ function typeCheckConfig$G(untrustedConfig) {
|
|
|
22738
22738
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
22739
22739
|
}
|
|
22740
22740
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
22741
|
-
const referenceListScopeInputRepresentationValidationError = validate$
|
|
22741
|
+
const referenceListScopeInputRepresentationValidationError = validate$1d(untrustedConfig_scope);
|
|
22742
22742
|
if (referenceListScopeInputRepresentationValidationError === null) {
|
|
22743
22743
|
config.scope = untrustedConfig_scope;
|
|
22744
22744
|
}
|
|
@@ -22787,8 +22787,8 @@ const updateListInfoByNameAdapterFactory = (luvio) => {
|
|
|
22787
22787
|
};
|
|
22788
22788
|
};
|
|
22789
22789
|
|
|
22790
|
-
const VERSION$
|
|
22791
|
-
function validate$
|
|
22790
|
+
const VERSION$26 = "d77026c4d63ef00cdd7e3d600687a40d";
|
|
22791
|
+
function validate$1c(obj, path = 'ListObjectScopeAvailableEntityRepresentation') {
|
|
22792
22792
|
const v_error = (() => {
|
|
22793
22793
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22794
22794
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22806,10 +22806,10 @@ function validate$1b(obj, path = 'ListObjectScopeAvailableEntityRepresentation')
|
|
|
22806
22806
|
})();
|
|
22807
22807
|
return v_error === undefined ? null : v_error;
|
|
22808
22808
|
}
|
|
22809
|
-
const select$
|
|
22809
|
+
const select$2q = function ListObjectScopeAvailableEntityRepresentationSelect() {
|
|
22810
22810
|
return {
|
|
22811
22811
|
kind: 'Fragment',
|
|
22812
|
-
version: VERSION$
|
|
22812
|
+
version: VERSION$26,
|
|
22813
22813
|
private: [],
|
|
22814
22814
|
selections: [
|
|
22815
22815
|
{
|
|
@@ -22823,7 +22823,7 @@ const select$2p = function ListObjectScopeAvailableEntityRepresentationSelect()
|
|
|
22823
22823
|
]
|
|
22824
22824
|
};
|
|
22825
22825
|
};
|
|
22826
|
-
function equals$
|
|
22826
|
+
function equals$G(existing, incoming) {
|
|
22827
22827
|
const existing_id = existing.id;
|
|
22828
22828
|
const incoming_id = incoming.id;
|
|
22829
22829
|
if (!(existing_id === incoming_id)) {
|
|
@@ -22837,8 +22837,8 @@ function equals$F(existing, incoming) {
|
|
|
22837
22837
|
return true;
|
|
22838
22838
|
}
|
|
22839
22839
|
|
|
22840
|
-
const VERSION$
|
|
22841
|
-
function validate$
|
|
22840
|
+
const VERSION$25 = "355933ff2970aa91a2848a94565e956a";
|
|
22841
|
+
function validate$1b(obj, path = 'ListObjectScopeRepresentation') {
|
|
22842
22842
|
const v_error = (() => {
|
|
22843
22843
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22844
22844
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22856,7 +22856,7 @@ function validate$1a(obj, path = 'ListObjectScopeRepresentation') {
|
|
|
22856
22856
|
for (let i = 0; i < obj_availableEntities.length; i++) {
|
|
22857
22857
|
const obj_availableEntities_item = obj_availableEntities[i];
|
|
22858
22858
|
const path_availableEntities_item = path_availableEntities + '[' + i + ']';
|
|
22859
|
-
const referencepath_availableEntities_itemValidationError = validate$
|
|
22859
|
+
const referencepath_availableEntities_itemValidationError = validate$1c(obj_availableEntities_item, path_availableEntities_item);
|
|
22860
22860
|
if (referencepath_availableEntities_itemValidationError !== null) {
|
|
22861
22861
|
let message = 'Object doesn\'t match ListObjectScopeAvailableEntityRepresentation (at "' + path_availableEntities_item + '")\n';
|
|
22862
22862
|
message += referencepath_availableEntities_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -22871,11 +22871,11 @@ function validate$1a(obj, path = 'ListObjectScopeRepresentation') {
|
|
|
22871
22871
|
})();
|
|
22872
22872
|
return v_error === undefined ? null : v_error;
|
|
22873
22873
|
}
|
|
22874
|
-
const select$
|
|
22875
|
-
const { selections: ListObjectScopeAvailableEntityRepresentation__selections, opaque: ListObjectScopeAvailableEntityRepresentation__opaque, } = select$
|
|
22874
|
+
const select$2p = function ListObjectScopeRepresentationSelect() {
|
|
22875
|
+
const { selections: ListObjectScopeAvailableEntityRepresentation__selections, opaque: ListObjectScopeAvailableEntityRepresentation__opaque, } = select$2q();
|
|
22876
22876
|
return {
|
|
22877
22877
|
kind: 'Fragment',
|
|
22878
|
-
version: VERSION$
|
|
22878
|
+
version: VERSION$25,
|
|
22879
22879
|
private: [],
|
|
22880
22880
|
selections: [
|
|
22881
22881
|
{
|
|
@@ -22895,7 +22895,7 @@ const select$2o = function ListObjectScopeRepresentationSelect() {
|
|
|
22895
22895
|
]
|
|
22896
22896
|
};
|
|
22897
22897
|
};
|
|
22898
|
-
function equals$
|
|
22898
|
+
function equals$F(existing, incoming) {
|
|
22899
22899
|
const existing_apiName = existing.apiName;
|
|
22900
22900
|
const incoming_apiName = incoming.apiName;
|
|
22901
22901
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -22909,7 +22909,7 @@ function equals$E(existing, incoming) {
|
|
|
22909
22909
|
const existing_availableEntities = existing.availableEntities;
|
|
22910
22910
|
const incoming_availableEntities = incoming.availableEntities;
|
|
22911
22911
|
const equals_availableEntities_items = equalsArray(existing_availableEntities, incoming_availableEntities, (existing_availableEntities_item, incoming_availableEntities_item) => {
|
|
22912
|
-
if (!(equals$
|
|
22912
|
+
if (!(equals$G(existing_availableEntities_item, incoming_availableEntities_item))) {
|
|
22913
22913
|
return false;
|
|
22914
22914
|
}
|
|
22915
22915
|
});
|
|
@@ -22919,8 +22919,8 @@ function equals$E(existing, incoming) {
|
|
|
22919
22919
|
return true;
|
|
22920
22920
|
}
|
|
22921
22921
|
|
|
22922
|
-
const VERSION$
|
|
22923
|
-
function validate$
|
|
22922
|
+
const VERSION$24 = "c5c08ea834378670c9d6f235ff71c9f0";
|
|
22923
|
+
function validate$1a(obj, path = 'ListObjectPicklistValueRepresentation') {
|
|
22924
22924
|
const v_error = (() => {
|
|
22925
22925
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22926
22926
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -22938,10 +22938,10 @@ function validate$19(obj, path = 'ListObjectPicklistValueRepresentation') {
|
|
|
22938
22938
|
})();
|
|
22939
22939
|
return v_error === undefined ? null : v_error;
|
|
22940
22940
|
}
|
|
22941
|
-
const select$
|
|
22941
|
+
const select$2o = function ListObjectPicklistValueRepresentationSelect() {
|
|
22942
22942
|
return {
|
|
22943
22943
|
kind: 'Fragment',
|
|
22944
|
-
version: VERSION$
|
|
22944
|
+
version: VERSION$24,
|
|
22945
22945
|
private: [],
|
|
22946
22946
|
selections: [
|
|
22947
22947
|
{
|
|
@@ -22955,7 +22955,7 @@ const select$2n = function ListObjectPicklistValueRepresentationSelect() {
|
|
|
22955
22955
|
]
|
|
22956
22956
|
};
|
|
22957
22957
|
};
|
|
22958
|
-
function equals$
|
|
22958
|
+
function equals$E(existing, incoming) {
|
|
22959
22959
|
const existing_apiName = existing.apiName;
|
|
22960
22960
|
const incoming_apiName = incoming.apiName;
|
|
22961
22961
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -22969,7 +22969,105 @@ function equals$D(existing, incoming) {
|
|
|
22969
22969
|
return true;
|
|
22970
22970
|
}
|
|
22971
22971
|
|
|
22972
|
-
const VERSION$
|
|
22972
|
+
const VERSION$23 = "98f8e97eae828e3f165bd05c518ae8df";
|
|
22973
|
+
function validate$19(obj, path = 'ListObjectQuickFilterOverridesRepresentation') {
|
|
22974
|
+
const v_error = (() => {
|
|
22975
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
22976
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
22977
|
+
}
|
|
22978
|
+
const obj_dataType = obj.dataType;
|
|
22979
|
+
const path_dataType = path + '.dataType';
|
|
22980
|
+
let obj_dataType_union0 = null;
|
|
22981
|
+
const obj_dataType_union0_error = (() => {
|
|
22982
|
+
if (typeof obj_dataType !== 'string') {
|
|
22983
|
+
return new TypeError('Expected "string" but received "' + typeof obj_dataType + '" (at "' + path_dataType + '")');
|
|
22984
|
+
}
|
|
22985
|
+
})();
|
|
22986
|
+
if (obj_dataType_union0_error != null) {
|
|
22987
|
+
obj_dataType_union0 = obj_dataType_union0_error.message;
|
|
22988
|
+
}
|
|
22989
|
+
let obj_dataType_union1 = null;
|
|
22990
|
+
const obj_dataType_union1_error = (() => {
|
|
22991
|
+
if (obj_dataType !== null) {
|
|
22992
|
+
return new TypeError('Expected "null" but received "' + typeof obj_dataType + '" (at "' + path_dataType + '")');
|
|
22993
|
+
}
|
|
22994
|
+
})();
|
|
22995
|
+
if (obj_dataType_union1_error != null) {
|
|
22996
|
+
obj_dataType_union1 = obj_dataType_union1_error.message;
|
|
22997
|
+
}
|
|
22998
|
+
if (obj_dataType_union0 && obj_dataType_union1) {
|
|
22999
|
+
let message = 'Object doesn\'t match union (at "' + path_dataType + '")';
|
|
23000
|
+
message += '\n' + obj_dataType_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
23001
|
+
message += '\n' + obj_dataType_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
23002
|
+
return new TypeError(message);
|
|
23003
|
+
}
|
|
23004
|
+
const obj_picklistValues = obj.picklistValues;
|
|
23005
|
+
const path_picklistValues = path + '.picklistValues';
|
|
23006
|
+
if (!ArrayIsArray(obj_picklistValues)) {
|
|
23007
|
+
return new TypeError('Expected "array" but received "' + typeof obj_picklistValues + '" (at "' + path_picklistValues + '")');
|
|
23008
|
+
}
|
|
23009
|
+
for (let i = 0; i < obj_picklistValues.length; i++) {
|
|
23010
|
+
const obj_picklistValues_item = obj_picklistValues[i];
|
|
23011
|
+
const path_picklistValues_item = path_picklistValues + '[' + i + ']';
|
|
23012
|
+
if (typeof obj_picklistValues_item !== 'object' || ArrayIsArray(obj_picklistValues_item) || obj_picklistValues_item === null) {
|
|
23013
|
+
return new TypeError('Expected "object" but received "' + typeof obj_picklistValues_item + '" (at "' + path_picklistValues_item + '")');
|
|
23014
|
+
}
|
|
23015
|
+
const obj_picklistValues_item_keys = ObjectKeys(obj_picklistValues_item);
|
|
23016
|
+
for (let i = 0; i < obj_picklistValues_item_keys.length; i++) {
|
|
23017
|
+
const key = obj_picklistValues_item_keys[i];
|
|
23018
|
+
const obj_picklistValues_item_prop = obj_picklistValues_item[key];
|
|
23019
|
+
const path_picklistValues_item_prop = path_picklistValues_item + '["' + key + '"]';
|
|
23020
|
+
if (typeof obj_picklistValues_item_prop !== 'string') {
|
|
23021
|
+
return new TypeError('Expected "string" but received "' + typeof obj_picklistValues_item_prop + '" (at "' + path_picklistValues_item_prop + '")');
|
|
23022
|
+
}
|
|
23023
|
+
}
|
|
23024
|
+
}
|
|
23025
|
+
})();
|
|
23026
|
+
return v_error === undefined ? null : v_error;
|
|
23027
|
+
}
|
|
23028
|
+
const select$2n = function ListObjectQuickFilterOverridesRepresentationSelect() {
|
|
23029
|
+
return {
|
|
23030
|
+
kind: 'Fragment',
|
|
23031
|
+
version: VERSION$23,
|
|
23032
|
+
private: [],
|
|
23033
|
+
selections: [
|
|
23034
|
+
{
|
|
23035
|
+
name: 'dataType',
|
|
23036
|
+
kind: 'Scalar'
|
|
23037
|
+
},
|
|
23038
|
+
{
|
|
23039
|
+
name: 'picklistValues',
|
|
23040
|
+
kind: 'Scalar',
|
|
23041
|
+
map: true
|
|
23042
|
+
}
|
|
23043
|
+
]
|
|
23044
|
+
};
|
|
23045
|
+
};
|
|
23046
|
+
function equals$D(existing, incoming) {
|
|
23047
|
+
const existing_dataType = existing.dataType;
|
|
23048
|
+
const incoming_dataType = incoming.dataType;
|
|
23049
|
+
if (!(existing_dataType === incoming_dataType)) {
|
|
23050
|
+
return false;
|
|
23051
|
+
}
|
|
23052
|
+
const existing_picklistValues = existing.picklistValues;
|
|
23053
|
+
const incoming_picklistValues = incoming.picklistValues;
|
|
23054
|
+
const equals_picklistValues_items = equalsArray(existing_picklistValues, incoming_picklistValues, (existing_picklistValues_item, incoming_picklistValues_item) => {
|
|
23055
|
+
const equals_picklistValues_items_props = equalsObject(existing_picklistValues_item, incoming_picklistValues_item, (existing_picklistValues_item_prop, incoming_picklistValues_item_prop) => {
|
|
23056
|
+
if (!(existing_picklistValues_item_prop === incoming_picklistValues_item_prop)) {
|
|
23057
|
+
return false;
|
|
23058
|
+
}
|
|
23059
|
+
});
|
|
23060
|
+
if (equals_picklistValues_items_props === false) {
|
|
23061
|
+
return false;
|
|
23062
|
+
}
|
|
23063
|
+
});
|
|
23064
|
+
if (equals_picklistValues_items === false) {
|
|
23065
|
+
return false;
|
|
23066
|
+
}
|
|
23067
|
+
return true;
|
|
23068
|
+
}
|
|
23069
|
+
|
|
23070
|
+
const VERSION$22 = "394e8d71b515892fe366021cc2872dae";
|
|
22973
23071
|
function validate$18(obj, path = 'ListObjectColumnRepresentation') {
|
|
22974
23072
|
const v_error = (() => {
|
|
22975
23073
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -23039,13 +23137,73 @@ function validate$18(obj, path = 'ListObjectColumnRepresentation') {
|
|
|
23039
23137
|
for (let i = 0; i < obj_picklistValues.length; i++) {
|
|
23040
23138
|
const obj_picklistValues_item = obj_picklistValues[i];
|
|
23041
23139
|
const path_picklistValues_item = path_picklistValues + '[' + i + ']';
|
|
23042
|
-
const referencepath_picklistValues_itemValidationError = validate$
|
|
23140
|
+
const referencepath_picklistValues_itemValidationError = validate$1a(obj_picklistValues_item, path_picklistValues_item);
|
|
23043
23141
|
if (referencepath_picklistValues_itemValidationError !== null) {
|
|
23044
23142
|
let message = 'Object doesn\'t match ListObjectPicklistValueRepresentation (at "' + path_picklistValues_item + '")\n';
|
|
23045
23143
|
message += referencepath_picklistValues_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
23046
23144
|
return new TypeError(message);
|
|
23047
23145
|
}
|
|
23048
23146
|
}
|
|
23147
|
+
const obj_quickFilterOperator = obj.quickFilterOperator;
|
|
23148
|
+
const path_quickFilterOperator = path + '.quickFilterOperator';
|
|
23149
|
+
let obj_quickFilterOperator_union0 = null;
|
|
23150
|
+
const obj_quickFilterOperator_union0_error = (() => {
|
|
23151
|
+
if (typeof obj_quickFilterOperator !== 'string') {
|
|
23152
|
+
return new TypeError('Expected "string" but received "' + typeof obj_quickFilterOperator + '" (at "' + path_quickFilterOperator + '")');
|
|
23153
|
+
}
|
|
23154
|
+
})();
|
|
23155
|
+
if (obj_quickFilterOperator_union0_error != null) {
|
|
23156
|
+
obj_quickFilterOperator_union0 = obj_quickFilterOperator_union0_error.message;
|
|
23157
|
+
}
|
|
23158
|
+
let obj_quickFilterOperator_union1 = null;
|
|
23159
|
+
const obj_quickFilterOperator_union1_error = (() => {
|
|
23160
|
+
if (obj_quickFilterOperator !== null) {
|
|
23161
|
+
return new TypeError('Expected "null" but received "' + typeof obj_quickFilterOperator + '" (at "' + path_quickFilterOperator + '")');
|
|
23162
|
+
}
|
|
23163
|
+
})();
|
|
23164
|
+
if (obj_quickFilterOperator_union1_error != null) {
|
|
23165
|
+
obj_quickFilterOperator_union1 = obj_quickFilterOperator_union1_error.message;
|
|
23166
|
+
}
|
|
23167
|
+
if (obj_quickFilterOperator_union0 && obj_quickFilterOperator_union1) {
|
|
23168
|
+
let message = 'Object doesn\'t match union (at "' + path_quickFilterOperator + '")';
|
|
23169
|
+
message += '\n' + obj_quickFilterOperator_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
23170
|
+
message += '\n' + obj_quickFilterOperator_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
23171
|
+
return new TypeError(message);
|
|
23172
|
+
}
|
|
23173
|
+
const obj_quickFilterOverrides = obj.quickFilterOverrides;
|
|
23174
|
+
const path_quickFilterOverrides = path + '.quickFilterOverrides';
|
|
23175
|
+
let obj_quickFilterOverrides_union0 = null;
|
|
23176
|
+
const obj_quickFilterOverrides_union0_error = (() => {
|
|
23177
|
+
const referencepath_quickFilterOverridesValidationError = validate$19(obj_quickFilterOverrides, path_quickFilterOverrides);
|
|
23178
|
+
if (referencepath_quickFilterOverridesValidationError !== null) {
|
|
23179
|
+
let message = 'Object doesn\'t match ListObjectQuickFilterOverridesRepresentation (at "' + path_quickFilterOverrides + '")\n';
|
|
23180
|
+
message += referencepath_quickFilterOverridesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
23181
|
+
return new TypeError(message);
|
|
23182
|
+
}
|
|
23183
|
+
})();
|
|
23184
|
+
if (obj_quickFilterOverrides_union0_error != null) {
|
|
23185
|
+
obj_quickFilterOverrides_union0 = obj_quickFilterOverrides_union0_error.message;
|
|
23186
|
+
}
|
|
23187
|
+
let obj_quickFilterOverrides_union1 = null;
|
|
23188
|
+
const obj_quickFilterOverrides_union1_error = (() => {
|
|
23189
|
+
if (obj_quickFilterOverrides !== null) {
|
|
23190
|
+
return new TypeError('Expected "null" but received "' + typeof obj_quickFilterOverrides + '" (at "' + path_quickFilterOverrides + '")');
|
|
23191
|
+
}
|
|
23192
|
+
})();
|
|
23193
|
+
if (obj_quickFilterOverrides_union1_error != null) {
|
|
23194
|
+
obj_quickFilterOverrides_union1 = obj_quickFilterOverrides_union1_error.message;
|
|
23195
|
+
}
|
|
23196
|
+
if (obj_quickFilterOverrides_union0 && obj_quickFilterOverrides_union1) {
|
|
23197
|
+
let message = 'Object doesn\'t match union (at "' + path_quickFilterOverrides + '")';
|
|
23198
|
+
message += '\n' + obj_quickFilterOverrides_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
23199
|
+
message += '\n' + obj_quickFilterOverrides_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
23200
|
+
return new TypeError(message);
|
|
23201
|
+
}
|
|
23202
|
+
const obj_quickFilterable = obj.quickFilterable;
|
|
23203
|
+
const path_quickFilterable = path + '.quickFilterable';
|
|
23204
|
+
if (typeof obj_quickFilterable !== 'boolean') {
|
|
23205
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_quickFilterable + '" (at "' + path_quickFilterable + '")');
|
|
23206
|
+
}
|
|
23049
23207
|
const obj_sortable = obj.sortable;
|
|
23050
23208
|
const path_sortable = path + '.sortable';
|
|
23051
23209
|
if (typeof obj_sortable !== 'boolean') {
|
|
@@ -23067,7 +23225,8 @@ function validate$18(obj, path = 'ListObjectColumnRepresentation') {
|
|
|
23067
23225
|
return v_error === undefined ? null : v_error;
|
|
23068
23226
|
}
|
|
23069
23227
|
const select$2m = function ListObjectColumnRepresentationSelect() {
|
|
23070
|
-
const { selections: ListObjectPicklistValueRepresentation__selections, opaque: ListObjectPicklistValueRepresentation__opaque, } = select$
|
|
23228
|
+
const { selections: ListObjectPicklistValueRepresentation__selections, opaque: ListObjectPicklistValueRepresentation__opaque, } = select$2o();
|
|
23229
|
+
const { selections: ListObjectQuickFilterOverridesRepresentation__selections, opaque: ListObjectQuickFilterOverridesRepresentation__opaque, } = select$2n();
|
|
23071
23230
|
return {
|
|
23072
23231
|
kind: 'Fragment',
|
|
23073
23232
|
version: VERSION$22,
|
|
@@ -23107,6 +23266,20 @@ const select$2m = function ListObjectColumnRepresentationSelect() {
|
|
|
23107
23266
|
plural: true,
|
|
23108
23267
|
selections: ListObjectPicklistValueRepresentation__selections
|
|
23109
23268
|
},
|
|
23269
|
+
{
|
|
23270
|
+
name: 'quickFilterOperator',
|
|
23271
|
+
kind: 'Scalar'
|
|
23272
|
+
},
|
|
23273
|
+
{
|
|
23274
|
+
name: 'quickFilterOverrides',
|
|
23275
|
+
kind: 'Object',
|
|
23276
|
+
nullable: true,
|
|
23277
|
+
selections: ListObjectQuickFilterOverridesRepresentation__selections
|
|
23278
|
+
},
|
|
23279
|
+
{
|
|
23280
|
+
name: 'quickFilterable',
|
|
23281
|
+
kind: 'Scalar'
|
|
23282
|
+
},
|
|
23110
23283
|
{
|
|
23111
23284
|
name: 'sortable',
|
|
23112
23285
|
kind: 'Scalar'
|
|
@@ -23130,6 +23303,11 @@ function equals$C(existing, incoming) {
|
|
|
23130
23303
|
if (!(existing_filterable === incoming_filterable)) {
|
|
23131
23304
|
return false;
|
|
23132
23305
|
}
|
|
23306
|
+
const existing_quickFilterable = existing.quickFilterable;
|
|
23307
|
+
const incoming_quickFilterable = incoming.quickFilterable;
|
|
23308
|
+
if (!(existing_quickFilterable === incoming_quickFilterable)) {
|
|
23309
|
+
return false;
|
|
23310
|
+
}
|
|
23133
23311
|
const existing_sortable = existing.sortable;
|
|
23134
23312
|
const incoming_sortable = incoming.sortable;
|
|
23135
23313
|
if (!(existing_sortable === incoming_sortable)) {
|
|
@@ -23163,13 +23341,26 @@ function equals$C(existing, incoming) {
|
|
|
23163
23341
|
const existing_picklistValues = existing.picklistValues;
|
|
23164
23342
|
const incoming_picklistValues = incoming.picklistValues;
|
|
23165
23343
|
const equals_picklistValues_items = equalsArray(existing_picklistValues, incoming_picklistValues, (existing_picklistValues_item, incoming_picklistValues_item) => {
|
|
23166
|
-
if (!(equals$
|
|
23344
|
+
if (!(equals$E(existing_picklistValues_item, incoming_picklistValues_item))) {
|
|
23167
23345
|
return false;
|
|
23168
23346
|
}
|
|
23169
23347
|
});
|
|
23170
23348
|
if (equals_picklistValues_items === false) {
|
|
23171
23349
|
return false;
|
|
23172
23350
|
}
|
|
23351
|
+
const existing_quickFilterOperator = existing.quickFilterOperator;
|
|
23352
|
+
const incoming_quickFilterOperator = incoming.quickFilterOperator;
|
|
23353
|
+
if (!(existing_quickFilterOperator === incoming_quickFilterOperator)) {
|
|
23354
|
+
return false;
|
|
23355
|
+
}
|
|
23356
|
+
const existing_quickFilterOverrides = existing.quickFilterOverrides;
|
|
23357
|
+
const incoming_quickFilterOverrides = incoming.quickFilterOverrides;
|
|
23358
|
+
if (!(existing_quickFilterOverrides === incoming_quickFilterOverrides
|
|
23359
|
+
|| (existing_quickFilterOverrides != null &&
|
|
23360
|
+
incoming_quickFilterOverrides != null &&
|
|
23361
|
+
equals$D(existing_quickFilterOverrides, incoming_quickFilterOverrides)))) {
|
|
23362
|
+
return false;
|
|
23363
|
+
}
|
|
23173
23364
|
const existing_supportedFilterOperators = existing.supportedFilterOperators;
|
|
23174
23365
|
const incoming_supportedFilterOperators = incoming.supportedFilterOperators;
|
|
23175
23366
|
const equals_supportedFilterOperators_items = equalsArray(existing_supportedFilterOperators, incoming_supportedFilterOperators, (existing_supportedFilterOperators_item, incoming_supportedFilterOperators_item) => {
|
|
@@ -23198,7 +23389,7 @@ function validate$17(obj, path = 'ListObjectInfoRepresentation') {
|
|
|
23198
23389
|
for (let i = 0; i < obj_availableScopes.length; i++) {
|
|
23199
23390
|
const obj_availableScopes_item = obj_availableScopes[i];
|
|
23200
23391
|
const path_availableScopes_item = path_availableScopes + '[' + i + ']';
|
|
23201
|
-
const referencepath_availableScopes_itemValidationError = validate$
|
|
23392
|
+
const referencepath_availableScopes_itemValidationError = validate$1b(obj_availableScopes_item, path_availableScopes_item);
|
|
23202
23393
|
if (referencepath_availableScopes_itemValidationError !== null) {
|
|
23203
23394
|
let message = 'Object doesn\'t match ListObjectScopeRepresentation (at "' + path_availableScopes_item + '")\n';
|
|
23204
23395
|
message += referencepath_availableScopes_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -23278,7 +23469,7 @@ function normalize$s(input, existing, path, luvio, store, timestamp) {
|
|
|
23278
23469
|
return input;
|
|
23279
23470
|
}
|
|
23280
23471
|
const select$2l = function ListObjectInfoRepresentationSelect() {
|
|
23281
|
-
const { selections: ListObjectScopeRepresentation__selections, opaque: ListObjectScopeRepresentation__opaque, } = select$
|
|
23472
|
+
const { selections: ListObjectScopeRepresentation__selections, opaque: ListObjectScopeRepresentation__opaque, } = select$2p();
|
|
23282
23473
|
const { selections: ListObjectColumnRepresentation__selections, opaque: ListObjectColumnRepresentation__opaque, } = select$2m();
|
|
23283
23474
|
return {
|
|
23284
23475
|
kind: 'Fragment',
|
|
@@ -23335,7 +23526,7 @@ function equals$B(existing, incoming) {
|
|
|
23335
23526
|
const existing_availableScopes = existing.availableScopes;
|
|
23336
23527
|
const incoming_availableScopes = incoming.availableScopes;
|
|
23337
23528
|
const equals_availableScopes_items = equalsArray(existing_availableScopes, incoming_availableScopes, (existing_availableScopes_item, incoming_availableScopes_item) => {
|
|
23338
|
-
if (!(equals$
|
|
23529
|
+
if (!(equals$F(existing_availableScopes_item, incoming_availableScopes_item))) {
|
|
23339
23530
|
return false;
|
|
23340
23531
|
}
|
|
23341
23532
|
});
|
|
@@ -23559,7 +23750,7 @@ function validate$16(obj, path = 'ListPreferencesRepresentation') {
|
|
|
23559
23750
|
}
|
|
23560
23751
|
const obj_listReference = obj.listReference;
|
|
23561
23752
|
const path_listReference = path + '.listReference';
|
|
23562
|
-
const referencepath_listReferenceValidationError = validate$
|
|
23753
|
+
const referencepath_listReferenceValidationError = validate$2d(obj_listReference, path_listReference);
|
|
23563
23754
|
if (referencepath_listReferenceValidationError !== null) {
|
|
23564
23755
|
let message = 'Object doesn\'t match ListReferenceRepresentation (at "' + path_listReference + '")\n';
|
|
23565
23756
|
message += referencepath_listReferenceValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -23573,7 +23764,7 @@ function validate$16(obj, path = 'ListPreferencesRepresentation') {
|
|
|
23573
23764
|
for (let i = 0; i < obj_orderedBy.length; i++) {
|
|
23574
23765
|
const obj_orderedBy_item = obj_orderedBy[i];
|
|
23575
23766
|
const path_orderedBy_item = path_orderedBy + '[' + i + ']';
|
|
23576
|
-
const referencepath_orderedBy_itemValidationError = validate$
|
|
23767
|
+
const referencepath_orderedBy_itemValidationError = validate$2a(obj_orderedBy_item, path_orderedBy_item);
|
|
23577
23768
|
if (referencepath_orderedBy_itemValidationError !== null) {
|
|
23578
23769
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedBy_item + '")\n';
|
|
23579
23770
|
message += referencepath_orderedBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -23598,8 +23789,8 @@ function normalize$r(input, existing, path, luvio, store, timestamp) {
|
|
|
23598
23789
|
return input;
|
|
23599
23790
|
}
|
|
23600
23791
|
const select$2j = function ListPreferencesRepresentationSelect() {
|
|
23601
|
-
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$
|
|
23602
|
-
const { selections: ListOrderByInfoRepresentation__selections, opaque: ListOrderByInfoRepresentation__opaque, } = select$
|
|
23792
|
+
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$3y();
|
|
23793
|
+
const { selections: ListOrderByInfoRepresentation__selections, opaque: ListOrderByInfoRepresentation__opaque, } = select$3v();
|
|
23603
23794
|
return {
|
|
23604
23795
|
kind: 'Fragment',
|
|
23605
23796
|
version: VERSION$20,
|
|
@@ -23652,13 +23843,13 @@ function equals$A(existing, incoming) {
|
|
|
23652
23843
|
}
|
|
23653
23844
|
const existing_listReference = existing.listReference;
|
|
23654
23845
|
const incoming_listReference = incoming.listReference;
|
|
23655
|
-
if (!(equals$
|
|
23846
|
+
if (!(equals$1g(existing_listReference, incoming_listReference))) {
|
|
23656
23847
|
return false;
|
|
23657
23848
|
}
|
|
23658
23849
|
const existing_orderedBy = existing.orderedBy;
|
|
23659
23850
|
const incoming_orderedBy = incoming.orderedBy;
|
|
23660
23851
|
const equals_orderedBy_items = equalsArray(existing_orderedBy, incoming_orderedBy, (existing_orderedBy_item, incoming_orderedBy_item) => {
|
|
23661
|
-
if (!(equals$
|
|
23852
|
+
if (!(equals$1f(existing_orderedBy_item, incoming_orderedBy_item))) {
|
|
23662
23853
|
return false;
|
|
23663
23854
|
}
|
|
23664
23855
|
});
|
|
@@ -24083,7 +24274,7 @@ const select$2g = function NavItemsRepresentationSelect() {
|
|
|
24083
24274
|
name: 'navItems',
|
|
24084
24275
|
kind: 'Link',
|
|
24085
24276
|
plural: true,
|
|
24086
|
-
fragment: select$
|
|
24277
|
+
fragment: select$2H()
|
|
24087
24278
|
},
|
|
24088
24279
|
{
|
|
24089
24280
|
name: 'nextPageUrl',
|
|
@@ -24289,7 +24480,7 @@ const getNavItemsAdapterFactory = (luvio) => function UiApi__getNavItems(untrust
|
|
|
24289
24480
|
};
|
|
24290
24481
|
|
|
24291
24482
|
function select$2e(luvio, params) {
|
|
24292
|
-
return select$
|
|
24483
|
+
return select$35();
|
|
24293
24484
|
}
|
|
24294
24485
|
function keyBuilder$2i(luvio, params) {
|
|
24295
24486
|
return keyPrefix + '::ObjectInfoDirectoryRepresentation:(' + ')';
|
|
@@ -24455,7 +24646,7 @@ function selectChildResourceParams$5(luvio, childResources, resourceParams) {
|
|
|
24455
24646
|
reader.enterPath(envelopeBodyPath);
|
|
24456
24647
|
const childResource = childResources[i];
|
|
24457
24648
|
const childKey = keyBuilder$3i(luvio, childResource);
|
|
24458
|
-
const childFragment = select$
|
|
24649
|
+
const childFragment = select$39();
|
|
24459
24650
|
const isMissingDataBeforeChildRead = reader.getIsDataMissing();
|
|
24460
24651
|
const childSnapshot = reader.read({
|
|
24461
24652
|
recordId: childKey,
|
|
@@ -25578,7 +25769,7 @@ const getPicklistValuesAdapterFactory = (luvio) => function UiApi__getPicklistVa
|
|
|
25578
25769
|
};
|
|
25579
25770
|
|
|
25580
25771
|
function select$23(luvio, params) {
|
|
25581
|
-
return select$
|
|
25772
|
+
return select$38();
|
|
25582
25773
|
}
|
|
25583
25774
|
function keyBuilder$2b(luvio, params) {
|
|
25584
25775
|
return keyBuilder$3g(luvio, {
|
|
@@ -25616,7 +25807,7 @@ function ingestError$j(luvio, params, error, snapshotRefresh) {
|
|
|
25616
25807
|
const storeMetadataParams = {
|
|
25617
25808
|
ttl: TTL$C,
|
|
25618
25809
|
namespace: keyPrefix,
|
|
25619
|
-
version: VERSION$
|
|
25810
|
+
version: VERSION$2x,
|
|
25620
25811
|
representationName: RepresentationType$S
|
|
25621
25812
|
};
|
|
25622
25813
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -28714,7 +28905,7 @@ function validate$K(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
28714
28905
|
for (let i = 0; i < obj_filteredByInfo.length; i++) {
|
|
28715
28906
|
const obj_filteredByInfo_item = obj_filteredByInfo[i];
|
|
28716
28907
|
const path_filteredByInfo_item = path_filteredByInfo + '[' + i + ']';
|
|
28717
|
-
const referencepath_filteredByInfo_itemValidationError = validate$
|
|
28908
|
+
const referencepath_filteredByInfo_itemValidationError = validate$2f(obj_filteredByInfo_item, path_filteredByInfo_item);
|
|
28718
28909
|
if (referencepath_filteredByInfo_itemValidationError !== null) {
|
|
28719
28910
|
let message = 'Object doesn\'t match ListFilterByInfoRepresentation (at "' + path_filteredByInfo_item + '")\n';
|
|
28720
28911
|
message += referencepath_filteredByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -28766,7 +28957,7 @@ function validate$K(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
28766
28957
|
for (let i = 0; i < obj_orderedByInfo.length; i++) {
|
|
28767
28958
|
const obj_orderedByInfo_item = obj_orderedByInfo[i];
|
|
28768
28959
|
const path_orderedByInfo_item = path_orderedByInfo + '[' + i + ']';
|
|
28769
|
-
const referencepath_orderedByInfo_itemValidationError = validate$
|
|
28960
|
+
const referencepath_orderedByInfo_itemValidationError = validate$2a(obj_orderedByInfo_item, path_orderedByInfo_item);
|
|
28770
28961
|
if (referencepath_orderedByInfo_itemValidationError !== null) {
|
|
28771
28962
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedByInfo_item + '")\n';
|
|
28772
28963
|
message += referencepath_orderedByInfo_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -28785,7 +28976,7 @@ function validate$K(obj, path = 'RelatedListInfoRepresentation') {
|
|
|
28785
28976
|
}
|
|
28786
28977
|
const obj_userPreferences = obj.userPreferences;
|
|
28787
28978
|
const path_userPreferences = path + '.userPreferences';
|
|
28788
|
-
const referencepath_userPreferencesValidationError = validate$
|
|
28979
|
+
const referencepath_userPreferencesValidationError = validate$26(obj_userPreferences, path_userPreferences);
|
|
28789
28980
|
if (referencepath_userPreferencesValidationError !== null) {
|
|
28790
28981
|
let message = 'Object doesn\'t match ListUserPreferenceRepresentation (at "' + path_userPreferences + '")\n';
|
|
28791
28982
|
message += referencepath_userPreferencesValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -29459,7 +29650,7 @@ function validate$J(obj, path = 'RelatedListSummaryInfoRepresentation') {
|
|
|
29459
29650
|
const path_themeInfo = path + '.themeInfo';
|
|
29460
29651
|
let obj_themeInfo_union0 = null;
|
|
29461
29652
|
const obj_themeInfo_union0_error = (() => {
|
|
29462
|
-
const referencepath_themeInfoValidationError = validate$
|
|
29653
|
+
const referencepath_themeInfoValidationError = validate$1P(obj_themeInfo, path_themeInfo);
|
|
29463
29654
|
if (referencepath_themeInfoValidationError !== null) {
|
|
29464
29655
|
let message = 'Object doesn\'t match ThemeInfoRepresentation (at "' + path_themeInfo + '")\n';
|
|
29465
29656
|
message += referencepath_themeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -30044,7 +30235,7 @@ function validate$G(obj, path = 'RelatedListUserPreferencesRepresentation') {
|
|
|
30044
30235
|
for (let i = 0; i < obj_orderedBy.length; i++) {
|
|
30045
30236
|
const obj_orderedBy_item = obj_orderedBy[i];
|
|
30046
30237
|
const path_orderedBy_item = path_orderedBy + '[' + i + ']';
|
|
30047
|
-
const referencepath_orderedBy_itemValidationError = validate$
|
|
30238
|
+
const referencepath_orderedBy_itemValidationError = validate$2a(obj_orderedBy_item, path_orderedBy_item);
|
|
30048
30239
|
if (referencepath_orderedBy_itemValidationError !== null) {
|
|
30049
30240
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderedBy_item + '")\n';
|
|
30050
30241
|
message += referencepath_orderedBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -31306,7 +31497,7 @@ const dynamicSelect$4 = function dynamicRelatedListRecordCollectionRepresentatio
|
|
|
31306
31497
|
const recordsPathSelection = params.records === undefined ? {
|
|
31307
31498
|
name: 'records',
|
|
31308
31499
|
kind: 'Link',
|
|
31309
|
-
fragment: select$
|
|
31500
|
+
fragment: select$3l()
|
|
31310
31501
|
} : params.records;
|
|
31311
31502
|
const { selections: RelatedListReferenceRepresentation__selections, opaque: RelatedListReferenceRepresentation__opaque, } = select$1T();
|
|
31312
31503
|
return {
|
|
@@ -31591,7 +31782,7 @@ function select$1F(luvio, params) {
|
|
|
31591
31782
|
kind: 'Fragment',
|
|
31592
31783
|
private: ['eTag', 'weakEtag'],
|
|
31593
31784
|
selections: buildSelectionFromFields(fields, optionalFields),
|
|
31594
|
-
version: VERSION$
|
|
31785
|
+
version: VERSION$2G
|
|
31595
31786
|
},
|
|
31596
31787
|
},
|
|
31597
31788
|
}, createPaginationParams(params));
|
|
@@ -33513,7 +33704,7 @@ function validate$n(obj, path = 'SearchResultCollectionRepresentation') {
|
|
|
33513
33704
|
for (let i = 0; i < obj_orderBy.length; i++) {
|
|
33514
33705
|
const obj_orderBy_item = obj_orderBy[i];
|
|
33515
33706
|
const path_orderBy_item = path_orderBy + '[' + i + ']';
|
|
33516
|
-
const referencepath_orderBy_itemValidationError = validate$
|
|
33707
|
+
const referencepath_orderBy_itemValidationError = validate$2a(obj_orderBy_item, path_orderBy_item);
|
|
33517
33708
|
if (referencepath_orderBy_itemValidationError !== null) {
|
|
33518
33709
|
let message = 'Object doesn\'t match ListOrderByInfoRepresentation (at "' + path_orderBy_item + '")\n';
|
|
33519
33710
|
message += referencepath_orderBy_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -38661,7 +38852,7 @@ function readFieldValueAndConvertToGQL(reader, fieldData, hasFormat, hasLabel, _
|
|
|
38661
38852
|
kind: 'Fragment',
|
|
38662
38853
|
private: [],
|
|
38663
38854
|
opaque: true,
|
|
38664
|
-
version: VERSION$
|
|
38855
|
+
version: VERSION$2I,
|
|
38665
38856
|
},
|
|
38666
38857
|
variables: {},
|
|
38667
38858
|
});
|
|
@@ -39689,7 +39880,7 @@ function selectType$S(typename, sel, fieldData, reader, key, sink, variables, fr
|
|
|
39689
39880
|
}
|
|
39690
39881
|
case 'PolymorphicParentRelationship':
|
|
39691
39882
|
case 'RecordRepresentation': {
|
|
39692
|
-
const spanningFieldLink = resolveLink(reader, fieldData, VERSION$
|
|
39883
|
+
const spanningFieldLink = resolveLink(reader, fieldData, VERSION$2I);
|
|
39693
39884
|
const resolvedSpanningFieldValue = spanningFieldLink && spanningFieldLink.data;
|
|
39694
39885
|
const fieldDataRef = fieldData.__ref;
|
|
39695
39886
|
if (resolvedSpanningFieldValue !== undefined) {
|
|
@@ -39789,7 +39980,7 @@ function attachMappedData(source, reader) {
|
|
|
39789
39980
|
kind: 'Fragment',
|
|
39790
39981
|
private: [],
|
|
39791
39982
|
opaque: true,
|
|
39792
|
-
version: VERSION$
|
|
39983
|
+
version: VERSION$2G,
|
|
39793
39984
|
},
|
|
39794
39985
|
variables: {},
|
|
39795
39986
|
});
|
|
@@ -40785,8 +40976,9 @@ function ingestPaginationMetadata$3(astNode, state, key, sink, existingData) {
|
|
|
40785
40976
|
const nextOffset = startOffset + edges.length;
|
|
40786
40977
|
const incomingPaginationMetadata = createPaginationMetadata(startOffset, edges);
|
|
40787
40978
|
if (hasNextPage) {
|
|
40788
|
-
//
|
|
40789
|
-
if (existingPaginationMetadata !== undefined && existingPaginationMetadata.__END__ !== undefined && existingPaginationMetadata.__END__
|
|
40979
|
+
// we know the data extends beyond NEXT_OFFSET_IDENTIFIER; clean up any old __END__ markers that say the data ended at/before that offset
|
|
40980
|
+
if (existingPaginationMetadata !== undefined && existingPaginationMetadata.__END__ !== undefined && existingPaginationMetadata.__END__ <= nextOffset) {
|
|
40981
|
+
existingPaginationMetadata = { ...existingPaginationMetadata };
|
|
40790
40982
|
delete existingPaginationMetadata.__END__;
|
|
40791
40983
|
}
|
|
40792
40984
|
}
|
|
@@ -46047,8 +46239,9 @@ function ingestPaginationMetadata$2(astNode, state, key, sink, existingData) {
|
|
|
46047
46239
|
const nextOffset = startOffset + edges.length;
|
|
46048
46240
|
const incomingPaginationMetadata = createPaginationMetadata(startOffset, edges);
|
|
46049
46241
|
if (hasNextPage) {
|
|
46050
|
-
//
|
|
46051
|
-
if (existingPaginationMetadata !== undefined && existingPaginationMetadata.__END__ !== undefined && existingPaginationMetadata.__END__
|
|
46242
|
+
// we know the data extends beyond NEXT_OFFSET_IDENTIFIER; clean up any old __END__ markers that say the data ended at/before that offset
|
|
46243
|
+
if (existingPaginationMetadata !== undefined && existingPaginationMetadata.__END__ !== undefined && existingPaginationMetadata.__END__ <= nextOffset) {
|
|
46244
|
+
existingPaginationMetadata = { ...existingPaginationMetadata };
|
|
46052
46245
|
delete existingPaginationMetadata.__END__;
|
|
46053
46246
|
}
|
|
46054
46247
|
}
|
|
@@ -50961,8 +51154,9 @@ function ingestPaginationMetadata$1(astNode, state, key, sink, existingData) {
|
|
|
50961
51154
|
const nextOffset = startOffset + edges.length;
|
|
50962
51155
|
const incomingPaginationMetadata = createPaginationMetadata(startOffset, edges);
|
|
50963
51156
|
if (hasNextPage) {
|
|
50964
|
-
//
|
|
50965
|
-
if (existingPaginationMetadata !== undefined && existingPaginationMetadata.__END__ !== undefined && existingPaginationMetadata.__END__
|
|
51157
|
+
// we know the data extends beyond NEXT_OFFSET_IDENTIFIER; clean up any old __END__ markers that say the data ended at/before that offset
|
|
51158
|
+
if (existingPaginationMetadata !== undefined && existingPaginationMetadata.__END__ !== undefined && existingPaginationMetadata.__END__ <= nextOffset) {
|
|
51159
|
+
existingPaginationMetadata = { ...existingPaginationMetadata };
|
|
50966
51160
|
delete existingPaginationMetadata.__END__;
|
|
50967
51161
|
}
|
|
50968
51162
|
}
|
|
@@ -52316,8 +52510,9 @@ function ingestPaginationMetadata(astNode, state, key, sink, existingData) {
|
|
|
52316
52510
|
const nextOffset = startOffset + edges.length;
|
|
52317
52511
|
const incomingPaginationMetadata = createPaginationMetadata(startOffset, edges);
|
|
52318
52512
|
if (hasNextPage) {
|
|
52319
|
-
//
|
|
52320
|
-
if (existingPaginationMetadata !== undefined && existingPaginationMetadata.__END__ !== undefined && existingPaginationMetadata.__END__
|
|
52513
|
+
// we know the data extends beyond NEXT_OFFSET_IDENTIFIER; clean up any old __END__ markers that say the data ended at/before that offset
|
|
52514
|
+
if (existingPaginationMetadata !== undefined && existingPaginationMetadata.__END__ !== undefined && existingPaginationMetadata.__END__ <= nextOffset) {
|
|
52515
|
+
existingPaginationMetadata = { ...existingPaginationMetadata };
|
|
52321
52516
|
delete existingPaginationMetadata.__END__;
|
|
52322
52517
|
}
|
|
52323
52518
|
}
|
|
@@ -55813,7 +56008,7 @@ const factory$e = (luvio) => function graphql(untrustedConfig, requestContext) {
|
|
|
55813
56008
|
};
|
|
55814
56009
|
|
|
55815
56010
|
function select$5(luvio, params) {
|
|
55816
|
-
return select$
|
|
56011
|
+
return select$34();
|
|
55817
56012
|
}
|
|
55818
56013
|
function getResponseCacheKeys$9(storeKeyMap, luvio, resourceParams, response) {
|
|
55819
56014
|
getTypeCacheKeys$23(storeKeyMap, luvio, response);
|
|
@@ -55877,7 +56072,7 @@ function buildNetworkSnapshot$b(luvio, config, options) {
|
|
|
55877
56072
|
}
|
|
55878
56073
|
|
|
55879
56074
|
function select$4(luvio, params) {
|
|
55880
|
-
return select$
|
|
56075
|
+
return select$34();
|
|
55881
56076
|
}
|
|
55882
56077
|
function getResponseCacheKeys$8(storeKeyMap, luvio, resourceParams, response) {
|
|
55883
56078
|
getTypeCacheKeys$23(storeKeyMap, luvio, response);
|
|
@@ -56202,7 +56397,7 @@ function validateAdapterConfig$9(untrustedConfig, configPropertyNames) {
|
|
|
56202
56397
|
}
|
|
56203
56398
|
function adapterFragment$1(luvio, config) {
|
|
56204
56399
|
const resourceParams = createResourceParams$8(config);
|
|
56205
|
-
return select$
|
|
56400
|
+
return select$3e(luvio, resourceParams);
|
|
56206
56401
|
}
|
|
56207
56402
|
function onFetchResponseSuccess$2(luvio, config, resourceParams, response) {
|
|
56208
56403
|
const snapshot = ingestSuccess$U(luvio, resourceParams, response, {
|
|
@@ -56270,7 +56465,7 @@ function getPaginationMetadata(luvio, resourceParams) {
|
|
|
56270
56465
|
recordId: key,
|
|
56271
56466
|
node: {
|
|
56272
56467
|
kind: 'Fragment',
|
|
56273
|
-
version: VERSION$
|
|
56468
|
+
version: VERSION$2E,
|
|
56274
56469
|
private: [],
|
|
56275
56470
|
selections: [
|
|
56276
56471
|
{
|
|
@@ -56922,7 +57117,7 @@ function validate$a(obj, path = 'RecordCreateDefaultRecordRepresentation') {
|
|
|
56922
57117
|
const path_recordTypeInfo = path + '.recordTypeInfo';
|
|
56923
57118
|
let obj_recordTypeInfo_union0 = null;
|
|
56924
57119
|
const obj_recordTypeInfo_union0_error = (() => {
|
|
56925
|
-
const referencepath_recordTypeInfoValidationError = validate$
|
|
57120
|
+
const referencepath_recordTypeInfoValidationError = validate$21(obj_recordTypeInfo, path_recordTypeInfo);
|
|
56926
57121
|
if (referencepath_recordTypeInfoValidationError !== null) {
|
|
56927
57122
|
let message = 'Object doesn\'t match RecordTypeInfoRepresentation (at "' + path_recordTypeInfo + '")\n';
|
|
56928
57123
|
message += referencepath_recordTypeInfoValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -57084,7 +57279,7 @@ function equals$a(existing, incoming) {
|
|
|
57084
57279
|
if (!(existing_recordTypeInfo === incoming_recordTypeInfo
|
|
57085
57280
|
|| (existing_recordTypeInfo != null &&
|
|
57086
57281
|
incoming_recordTypeInfo != null &&
|
|
57087
|
-
equals$
|
|
57282
|
+
equals$1c(existing_recordTypeInfo, incoming_recordTypeInfo)))) {
|
|
57088
57283
|
return false;
|
|
57089
57284
|
}
|
|
57090
57285
|
const existing_systemModstamp = existing.systemModstamp;
|
|
@@ -57345,8 +57540,8 @@ function validateAdapterConfig$6(untrustedConfig, configPropertyNames) {
|
|
|
57345
57540
|
}
|
|
57346
57541
|
|
|
57347
57542
|
const contextId$2 = `${keyPrefix}__${adapterName$4}`;
|
|
57348
|
-
const layoutSelections = select$
|
|
57349
|
-
const objectInfoSelections = select$
|
|
57543
|
+
const layoutSelections = select$38();
|
|
57544
|
+
const objectInfoSelections = select$3a();
|
|
57350
57545
|
function buildSelector(resp) {
|
|
57351
57546
|
const recordSelections = buildSelectionFromRecord(resp.record);
|
|
57352
57547
|
return [
|
|
@@ -57606,7 +57801,7 @@ const select$3 = function RecordTemplateCloneRepresentationSelect() {
|
|
|
57606
57801
|
name: 'fields',
|
|
57607
57802
|
kind: 'Link',
|
|
57608
57803
|
map: true,
|
|
57609
|
-
fragment: select$
|
|
57804
|
+
fragment: select$3n()
|
|
57610
57805
|
},
|
|
57611
57806
|
{
|
|
57612
57807
|
name: 'recordTypeId',
|
|
@@ -57620,7 +57815,7 @@ const dynamicSelect$3 = function dynamicRecordTemplateCloneRepresentationSelect(
|
|
|
57620
57815
|
name: 'fields',
|
|
57621
57816
|
kind: 'Link',
|
|
57622
57817
|
map: true,
|
|
57623
|
-
fragment: select$
|
|
57818
|
+
fragment: select$3n()
|
|
57624
57819
|
} : params.fields;
|
|
57625
57820
|
return {
|
|
57626
57821
|
kind: 'Fragment',
|
|
@@ -57783,7 +57978,7 @@ const dynamicSelect$2 = function dynamicRecordDefaultsTemplateCloneRepresentatio
|
|
|
57783
57978
|
name: 'objectInfos',
|
|
57784
57979
|
kind: 'Link',
|
|
57785
57980
|
map: true,
|
|
57786
|
-
fragment: select$
|
|
57981
|
+
fragment: select$3a()
|
|
57787
57982
|
} : params.objectInfos;
|
|
57788
57983
|
const recordPathSelection = params.record === undefined ? {
|
|
57789
57984
|
name: 'record',
|
|
@@ -58252,7 +58447,7 @@ const select$1 = function RecordTemplateCreateRepresentationSelect() {
|
|
|
58252
58447
|
name: 'fields',
|
|
58253
58448
|
kind: 'Link',
|
|
58254
58449
|
map: true,
|
|
58255
|
-
fragment: select$
|
|
58450
|
+
fragment: select$3n()
|
|
58256
58451
|
},
|
|
58257
58452
|
{
|
|
58258
58453
|
name: 'recordTypeId',
|
|
@@ -58266,7 +58461,7 @@ const dynamicSelect$1 = function dynamicRecordTemplateCreateRepresentationSelect
|
|
|
58266
58461
|
name: 'fields',
|
|
58267
58462
|
kind: 'Link',
|
|
58268
58463
|
map: true,
|
|
58269
|
-
fragment: select$
|
|
58464
|
+
fragment: select$3n()
|
|
58270
58465
|
} : params.fields;
|
|
58271
58466
|
return {
|
|
58272
58467
|
kind: 'Fragment',
|
|
@@ -58420,7 +58615,7 @@ const dynamicSelect = function dynamicRecordDefaultsTemplateCreateRepresentation
|
|
|
58420
58615
|
name: 'objectInfos',
|
|
58421
58616
|
kind: 'Link',
|
|
58422
58617
|
map: true,
|
|
58423
|
-
fragment: select$
|
|
58618
|
+
fragment: select$3a()
|
|
58424
58619
|
} : params.objectInfos;
|
|
58425
58620
|
const recordPathSelection = params.record === undefined ? {
|
|
58426
58621
|
name: 'record',
|
|
@@ -58834,7 +59029,7 @@ function onResponseSuccess(luvio, response, recordIngest, conflictMap) {
|
|
|
58834
59029
|
kind: 'Fragment',
|
|
58835
59030
|
private: [],
|
|
58836
59031
|
selections,
|
|
58837
|
-
version: VERSION$
|
|
59032
|
+
version: VERSION$2G,
|
|
58838
59033
|
},
|
|
58839
59034
|
variables: {},
|
|
58840
59035
|
});
|
|
@@ -59337,7 +59532,7 @@ const select = function ContentDocumentCompositeRepresentationSelect(body) {
|
|
|
59337
59532
|
fragment: {
|
|
59338
59533
|
kind: 'Fragment',
|
|
59339
59534
|
private: [],
|
|
59340
|
-
version: VERSION$
|
|
59535
|
+
version: VERSION$2G,
|
|
59341
59536
|
selections: buildSelectionFromRecord(body.contentDocument),
|
|
59342
59537
|
},
|
|
59343
59538
|
},
|
|
@@ -59348,7 +59543,7 @@ const select = function ContentDocumentCompositeRepresentationSelect(body) {
|
|
|
59348
59543
|
fragment: {
|
|
59349
59544
|
kind: 'Fragment',
|
|
59350
59545
|
private: [],
|
|
59351
|
-
version: VERSION$
|
|
59546
|
+
version: VERSION$2G,
|
|
59352
59547
|
selections: buildSelectionFromRecord(body.contentDocumentLinks[0] || { fields: {} }),
|
|
59353
59548
|
},
|
|
59354
59549
|
},
|
|
@@ -59358,7 +59553,7 @@ const select = function ContentDocumentCompositeRepresentationSelect(body) {
|
|
|
59358
59553
|
fragment: {
|
|
59359
59554
|
kind: 'Fragment',
|
|
59360
59555
|
private: [],
|
|
59361
|
-
version: VERSION$
|
|
59556
|
+
version: VERSION$2G,
|
|
59362
59557
|
selections: buildSelectionFromRecord(body.contentVersion),
|
|
59363
59558
|
},
|
|
59364
59559
|
},
|
|
@@ -59954,4 +60149,4 @@ function getRecordIngestionOverride() {
|
|
|
59954
60149
|
return getRecordRepresentationIngestionOverride();
|
|
59955
60150
|
}
|
|
59956
60151
|
|
|
59957
|
-
export { API_NAMESPACE, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$3 as NotifyListInfoSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$4 as NotifyListRecordCollectionUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$5 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$T as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$_ as RecordRepresentationRepresentationType, TTL$F as RecordRepresentationTTL, RepresentationType$_ as RecordRepresentationType, VERSION$
|
|
60152
|
+
export { API_NAMESPACE, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$3 as NotifyListInfoSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$4 as NotifyListRecordCollectionUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$5 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$T as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$_ as RecordRepresentationRepresentationType, TTL$F as RecordRepresentationTTL, RepresentationType$_ as RecordRepresentationType, VERSION$2G as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, getFieldApiNamesArray as coerceFieldIdArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, createRelatedListAdapterWithPrediction, createRelatedListPlusAdapterWithPrediction, deleteListInfoAdapterFactory, factory$3 as deleteRecordAdapterFactory, factory$f as executeBatchRecordOperationsAdapterFactory, extractRecordIdFromStoreKey, generateRecordInputForCreate, generateRecordInputForUpdate, getActionOverridesAdapterFactory, getAllAppsAdapterFactory, getAppDetailsAdapterFactory, getDuplicateConfigurationAdapterFactory, getDuplicatesAdapterFactory, getFieldDisplayValue$1 as getFieldDisplayValue, getFieldValue, getFlexipageFormulaOverridesAdapterFactory, getGlobalActionsAdapterFactory, getKeywordSearchResultsAdapterFactory, getLayoutAdapterFactory, getLayoutUserStateAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByNameAdapterFactory, getListInfosByObjectNameAdapterFactory, getListObjectInfoAdapterFactory, getListPreferencesAdapterFactory, factory$a as getListRecordsByNameAdapterFactory, factory$j as getListUiAdapterFactory, getListUiByApiNameAdapterFactory, getListUiByListViewIdAdapterFactory, getListViewSummaryCollectionAdapterFactory, getLookupActionsAdapterFactory, getLookupMetadataAdapterFactory, factory$9 as getLookupRecordsAdapterFactory, factory$k as getMruListUiAdapterFactory, getNavItemsAdapterFactory, getObjectCreateActionsAdapterFactory, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfosAdapterFactory, getPathLayoutAdapterFactory, getPicklistValuesAdapterFactory, getPicklistValuesByRecordTypeAdapterFactory, getQuickActionDefaultsAdapterFactory, getQuickActionInfoAdapterFactory, getQuickActionLayoutAdapterFactory, getRecordActionsAdapterFactory, factory$h as getRecordAdapterFactory, getRecordAvatarsAdapterFactory, factory$7 as getRecordCreateDefaultsAdapterFactory, getRecordEditActionsAdapterFactory, getRecordId18, getRecordId18Array, getRecordIngestionOverride, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$i as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$2h as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$g as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$1P as ingestDuplicateConfiguration, ingest$1J as ingestDuplicatesRepresentation, ingest$2f as ingestListInfo, ingest$2b as ingestListRecords, ingest$25 as ingestObjectInfo, ingest$1$ as ingestQuickActionExecutionRepresentation, ingest$2c as ingestRecord, ingest$22 as ingestRecordUi, ingest$1B as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1y as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1A as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, isStoreKeyRecordViewEntity, isSupportedEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$D as keyBuilderFromTypeRecordRepresentation, keyBuilder$3j as keyBuilderObjectInfo, keyBuilder$3c as keyBuilderQuickActionExecutionRepresentation, keyBuilder$3A as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, registerPrefetcher, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, updateListPreferencesAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
|