@salesforce/lds-worker-api 1.236.0 → 1.237.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.
|
@@ -3982,7 +3982,7 @@ function withDefaultLuvio(callback) {
|
|
|
3982
3982
|
}
|
|
3983
3983
|
callbacks.push(callback);
|
|
3984
3984
|
}
|
|
3985
|
-
// version: 1.
|
|
3985
|
+
// version: 1.237.0-5cc894ce9
|
|
3986
3986
|
|
|
3987
3987
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
3988
3988
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -15443,7 +15443,7 @@ function gql(literals, ...subs) {
|
|
|
15443
15443
|
}
|
|
15444
15444
|
return superResult;
|
|
15445
15445
|
}
|
|
15446
|
-
// version: 1.
|
|
15446
|
+
// version: 1.237.0-5cc894ce9
|
|
15447
15447
|
|
|
15448
15448
|
function unwrap(data) {
|
|
15449
15449
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16368,7 +16368,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
|
|
|
16368
16368
|
const { apiFamily, name } = metadata;
|
|
16369
16369
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16370
16370
|
}
|
|
16371
|
-
// version: 1.
|
|
16371
|
+
// version: 1.237.0-5cc894ce9
|
|
16372
16372
|
|
|
16373
16373
|
/**
|
|
16374
16374
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -17055,11 +17055,60 @@ function assignMetadataLink$1(entry, metadataKey) {
|
|
|
17055
17055
|
entry['__metadata'] = createLink$3(metadataKey);
|
|
17056
17056
|
}
|
|
17057
17057
|
|
|
17058
|
-
const VERSION$
|
|
17059
|
-
|
|
17058
|
+
const VERSION$1m = "275ae22194003d1e53f548b81219c5cb";
|
|
17059
|
+
function validate$1K(obj, path = 'ListColumnRepresentation') {
|
|
17060
|
+
const v_error = (() => {
|
|
17061
|
+
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
17062
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
17063
|
+
}
|
|
17064
|
+
const obj_fieldApiName = obj.fieldApiName;
|
|
17065
|
+
const path_fieldApiName = path + '.fieldApiName';
|
|
17066
|
+
if (typeof obj_fieldApiName !== 'string') {
|
|
17067
|
+
return new TypeError('Expected "string" but received "' + typeof obj_fieldApiName + '" (at "' + path_fieldApiName + '")');
|
|
17068
|
+
}
|
|
17069
|
+
const obj_label = obj.label;
|
|
17070
|
+
const path_label = path + '.label';
|
|
17071
|
+
if (typeof obj_label !== 'string') {
|
|
17072
|
+
return new TypeError('Expected "string" but received "' + typeof obj_label + '" (at "' + path_label + '")');
|
|
17073
|
+
}
|
|
17074
|
+
const obj_lookupId = obj.lookupId;
|
|
17075
|
+
const path_lookupId = path + '.lookupId';
|
|
17076
|
+
let obj_lookupId_union0 = null;
|
|
17077
|
+
const obj_lookupId_union0_error = (() => {
|
|
17078
|
+
if (typeof obj_lookupId !== 'string') {
|
|
17079
|
+
return new TypeError('Expected "string" but received "' + typeof obj_lookupId + '" (at "' + path_lookupId + '")');
|
|
17080
|
+
}
|
|
17081
|
+
})();
|
|
17082
|
+
if (obj_lookupId_union0_error != null) {
|
|
17083
|
+
obj_lookupId_union0 = obj_lookupId_union0_error.message;
|
|
17084
|
+
}
|
|
17085
|
+
let obj_lookupId_union1 = null;
|
|
17086
|
+
const obj_lookupId_union1_error = (() => {
|
|
17087
|
+
if (obj_lookupId !== null) {
|
|
17088
|
+
return new TypeError('Expected "null" but received "' + typeof obj_lookupId + '" (at "' + path_lookupId + '")');
|
|
17089
|
+
}
|
|
17090
|
+
})();
|
|
17091
|
+
if (obj_lookupId_union1_error != null) {
|
|
17092
|
+
obj_lookupId_union1 = obj_lookupId_union1_error.message;
|
|
17093
|
+
}
|
|
17094
|
+
if (obj_lookupId_union0 && obj_lookupId_union1) {
|
|
17095
|
+
let message = 'Object doesn\'t match union (at "' + path_lookupId + '")';
|
|
17096
|
+
message += '\n' + obj_lookupId_union0.split('\n').map((line) => '\t' + line).join('\n');
|
|
17097
|
+
message += '\n' + obj_lookupId_union1.split('\n').map((line) => '\t' + line).join('\n');
|
|
17098
|
+
return new TypeError(message);
|
|
17099
|
+
}
|
|
17100
|
+
const obj_sortable = obj.sortable;
|
|
17101
|
+
const path_sortable = path + '.sortable';
|
|
17102
|
+
if (typeof obj_sortable !== 'boolean') {
|
|
17103
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_sortable + '" (at "' + path_sortable + '")');
|
|
17104
|
+
}
|
|
17105
|
+
})();
|
|
17106
|
+
return v_error === undefined ? null : v_error;
|
|
17107
|
+
}
|
|
17108
|
+
const select$1T = function ListColumnRepresentationSelect() {
|
|
17060
17109
|
return {
|
|
17061
17110
|
kind: 'Fragment',
|
|
17062
|
-
version: VERSION$
|
|
17111
|
+
version: VERSION$1m,
|
|
17063
17112
|
private: [],
|
|
17064
17113
|
selections: [
|
|
17065
17114
|
{
|
|
@@ -17082,8 +17131,8 @@ const select$1R = function ListColumnRepresentationSelect() {
|
|
|
17082
17131
|
};
|
|
17083
17132
|
};
|
|
17084
17133
|
|
|
17085
|
-
const VERSION$
|
|
17086
|
-
function validate$
|
|
17134
|
+
const VERSION$1l = "623aa9ce3a11031e35faf5671a41746e";
|
|
17135
|
+
function validate$1J(obj, path = 'ListFilterByInfoRepresentation') {
|
|
17087
17136
|
const v_error = (() => {
|
|
17088
17137
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
17089
17138
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17118,10 +17167,10 @@ function validate$1H(obj, path = 'ListFilterByInfoRepresentation') {
|
|
|
17118
17167
|
})();
|
|
17119
17168
|
return v_error === undefined ? null : v_error;
|
|
17120
17169
|
}
|
|
17121
|
-
const select$
|
|
17170
|
+
const select$1S = function ListFilterByInfoRepresentationSelect() {
|
|
17122
17171
|
return {
|
|
17123
17172
|
kind: 'Fragment',
|
|
17124
|
-
version: VERSION$
|
|
17173
|
+
version: VERSION$1l,
|
|
17125
17174
|
private: [],
|
|
17126
17175
|
selections: [
|
|
17127
17176
|
{
|
|
@@ -17145,11 +17194,11 @@ const select$1Q = function ListFilterByInfoRepresentationSelect() {
|
|
|
17145
17194
|
};
|
|
17146
17195
|
};
|
|
17147
17196
|
|
|
17148
|
-
const VERSION$
|
|
17149
|
-
const select$
|
|
17197
|
+
const VERSION$1k = "76042ff4af603b2ac0ec69fa0bd12046";
|
|
17198
|
+
const select$1R = function ListReferenceRepresentationSelect() {
|
|
17150
17199
|
return {
|
|
17151
17200
|
kind: 'Fragment',
|
|
17152
|
-
version: VERSION$
|
|
17201
|
+
version: VERSION$1k,
|
|
17153
17202
|
private: [],
|
|
17154
17203
|
selections: [
|
|
17155
17204
|
{
|
|
@@ -17171,7 +17220,7 @@ const select$1P = function ListReferenceRepresentationSelect() {
|
|
|
17171
17220
|
]
|
|
17172
17221
|
};
|
|
17173
17222
|
};
|
|
17174
|
-
function equals
|
|
17223
|
+
function equals$11(existing, incoming) {
|
|
17175
17224
|
const existing_objectApiName = existing.objectApiName;
|
|
17176
17225
|
const incoming_objectApiName = incoming.objectApiName;
|
|
17177
17226
|
if (!(existing_objectApiName === incoming_objectApiName)) {
|
|
@@ -17195,11 +17244,11 @@ function equals$$(existing, incoming) {
|
|
|
17195
17244
|
return true;
|
|
17196
17245
|
}
|
|
17197
17246
|
|
|
17198
|
-
const VERSION$
|
|
17199
|
-
const select$
|
|
17247
|
+
const VERSION$1j = "32def9b631252c12b91a8209c1f49f5a";
|
|
17248
|
+
const select$1Q = function ListOrderByInfoRepresentationSelect() {
|
|
17200
17249
|
return {
|
|
17201
17250
|
kind: 'Fragment',
|
|
17202
|
-
version: VERSION$
|
|
17251
|
+
version: VERSION$1j,
|
|
17203
17252
|
private: [],
|
|
17204
17253
|
selections: [
|
|
17205
17254
|
{
|
|
@@ -17218,8 +17267,8 @@ const select$1O = function ListOrderByInfoRepresentationSelect() {
|
|
|
17218
17267
|
};
|
|
17219
17268
|
};
|
|
17220
17269
|
|
|
17221
|
-
const VERSION$
|
|
17222
|
-
function validate$
|
|
17270
|
+
const VERSION$1i = "2634258f216db34315c06d759a35676d";
|
|
17271
|
+
function validate$1G(obj, path = 'ListScopeEntityRepresentation') {
|
|
17223
17272
|
const v_error = (() => {
|
|
17224
17273
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
17225
17274
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17237,10 +17286,10 @@ function validate$1E(obj, path = 'ListScopeEntityRepresentation') {
|
|
|
17237
17286
|
})();
|
|
17238
17287
|
return v_error === undefined ? null : v_error;
|
|
17239
17288
|
}
|
|
17240
|
-
const select$
|
|
17289
|
+
const select$1P = function ListScopeEntityRepresentationSelect() {
|
|
17241
17290
|
return {
|
|
17242
17291
|
kind: 'Fragment',
|
|
17243
|
-
version: VERSION$
|
|
17292
|
+
version: VERSION$1i,
|
|
17244
17293
|
private: [],
|
|
17245
17294
|
selections: [
|
|
17246
17295
|
{
|
|
@@ -17255,8 +17304,8 @@ const select$1N = function ListScopeEntityRepresentationSelect() {
|
|
|
17255
17304
|
};
|
|
17256
17305
|
};
|
|
17257
17306
|
|
|
17258
|
-
const VERSION$
|
|
17259
|
-
function validate$
|
|
17307
|
+
const VERSION$1h = "3b85c5a08d50ce328481b9f8ab56127b";
|
|
17308
|
+
function validate$1F(obj, path = 'ListScopeRelatedEntityRepresentation') {
|
|
17260
17309
|
const v_error = (() => {
|
|
17261
17310
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
17262
17311
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17279,10 +17328,10 @@ function validate$1D(obj, path = 'ListScopeRelatedEntityRepresentation') {
|
|
|
17279
17328
|
})();
|
|
17280
17329
|
return v_error === undefined ? null : v_error;
|
|
17281
17330
|
}
|
|
17282
|
-
const select$
|
|
17331
|
+
const select$1O = function ListScopeRelatedEntityRepresentationSelect() {
|
|
17283
17332
|
return {
|
|
17284
17333
|
kind: 'Fragment',
|
|
17285
|
-
version: VERSION$
|
|
17334
|
+
version: VERSION$1h,
|
|
17286
17335
|
private: [],
|
|
17287
17336
|
selections: [
|
|
17288
17337
|
{
|
|
@@ -17301,8 +17350,8 @@ const select$1M = function ListScopeRelatedEntityRepresentationSelect() {
|
|
|
17301
17350
|
};
|
|
17302
17351
|
};
|
|
17303
17352
|
|
|
17304
|
-
const VERSION$
|
|
17305
|
-
function validate$
|
|
17353
|
+
const VERSION$1g = "a51de242c746e5500a833e84dfaa2170";
|
|
17354
|
+
function validate$1E(obj, path = 'ListScopeRepresentation') {
|
|
17306
17355
|
const v_error = (() => {
|
|
17307
17356
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
17308
17357
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -17316,7 +17365,7 @@ function validate$1C(obj, path = 'ListScopeRepresentation') {
|
|
|
17316
17365
|
const path_entity = path + '.entity';
|
|
17317
17366
|
let obj_entity_union0 = null;
|
|
17318
17367
|
const obj_entity_union0_error = (() => {
|
|
17319
|
-
const referencepath_entityValidationError = validate$
|
|
17368
|
+
const referencepath_entityValidationError = validate$1G(obj_entity, path_entity);
|
|
17320
17369
|
if (referencepath_entityValidationError !== null) {
|
|
17321
17370
|
let message = 'Object doesn\'t match ListScopeEntityRepresentation (at "' + path_entity + '")\n';
|
|
17322
17371
|
message += referencepath_entityValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17350,7 +17399,7 @@ function validate$1C(obj, path = 'ListScopeRepresentation') {
|
|
|
17350
17399
|
const path_relatedEntity = path + '.relatedEntity';
|
|
17351
17400
|
let obj_relatedEntity_union0 = null;
|
|
17352
17401
|
const obj_relatedEntity_union0_error = (() => {
|
|
17353
|
-
const referencepath_relatedEntityValidationError = validate$
|
|
17402
|
+
const referencepath_relatedEntityValidationError = validate$1F(obj_relatedEntity, path_relatedEntity);
|
|
17354
17403
|
if (referencepath_relatedEntityValidationError !== null) {
|
|
17355
17404
|
let message = 'Object doesn\'t match ListScopeRelatedEntityRepresentation (at "' + path_relatedEntity + '")\n';
|
|
17356
17405
|
message += referencepath_relatedEntityValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -17378,12 +17427,12 @@ function validate$1C(obj, path = 'ListScopeRepresentation') {
|
|
|
17378
17427
|
})();
|
|
17379
17428
|
return v_error === undefined ? null : v_error;
|
|
17380
17429
|
}
|
|
17381
|
-
const select$
|
|
17382
|
-
const { selections: ListScopeEntityRepresentation__selections, opaque: ListScopeEntityRepresentation__opaque, } = select$
|
|
17383
|
-
const { selections: ListScopeRelatedEntityRepresentation__selections, opaque: ListScopeRelatedEntityRepresentation__opaque, } = select$
|
|
17430
|
+
const select$1N = function ListScopeRepresentationSelect() {
|
|
17431
|
+
const { selections: ListScopeEntityRepresentation__selections, opaque: ListScopeEntityRepresentation__opaque, } = select$1P();
|
|
17432
|
+
const { selections: ListScopeRelatedEntityRepresentation__selections, opaque: ListScopeRelatedEntityRepresentation__opaque, } = select$1O();
|
|
17384
17433
|
return {
|
|
17385
17434
|
kind: 'Fragment',
|
|
17386
|
-
version: VERSION$
|
|
17435
|
+
version: VERSION$1g,
|
|
17387
17436
|
private: [],
|
|
17388
17437
|
selections: [
|
|
17389
17438
|
{
|
|
@@ -17410,11 +17459,11 @@ const select$1L = function ListScopeRepresentationSelect() {
|
|
|
17410
17459
|
};
|
|
17411
17460
|
};
|
|
17412
17461
|
|
|
17413
|
-
const VERSION$
|
|
17414
|
-
const select$
|
|
17462
|
+
const VERSION$1f = "6506134f4d72fdfa349fe60ef1af2413";
|
|
17463
|
+
const select$1M = function ListUserPreferenceRepresentationSelect() {
|
|
17415
17464
|
return {
|
|
17416
17465
|
kind: 'Fragment',
|
|
17417
|
-
version: VERSION$
|
|
17466
|
+
version: VERSION$1f,
|
|
17418
17467
|
private: [],
|
|
17419
17468
|
selections: [
|
|
17420
17469
|
{
|
|
@@ -17432,7 +17481,7 @@ const select$1K = function ListUserPreferenceRepresentationSelect() {
|
|
|
17432
17481
|
};
|
|
17433
17482
|
|
|
17434
17483
|
const TTL$y = 900000;
|
|
17435
|
-
const VERSION$
|
|
17484
|
+
const VERSION$1e = "8b55d621d80c84ec2e331abc4e12fc56";
|
|
17436
17485
|
const RepresentationType$R = 'ListInfoRepresentation';
|
|
17437
17486
|
function keyBuilder$1V(luvio, config) {
|
|
17438
17487
|
return keyPrefix$1 + '::' + RepresentationType$R + ':' + (config.listViewApiName === null ? '' : config.listViewApiName) + ':' + config.objectApiName + ':' + config.type;
|
|
@@ -17448,16 +17497,16 @@ function keyBuilderFromType$A(luvio, object) {
|
|
|
17448
17497
|
function normalize$L(input, existing, path, luvio, store, timestamp) {
|
|
17449
17498
|
return input;
|
|
17450
17499
|
}
|
|
17451
|
-
const select$
|
|
17452
|
-
const { selections: ListColumnRepresentation__selections, opaque: ListColumnRepresentation__opaque, } = select$
|
|
17453
|
-
const { selections: ListFilterByInfoRepresentation__selections, opaque: ListFilterByInfoRepresentation__opaque, } = select$
|
|
17454
|
-
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$
|
|
17455
|
-
const { selections: ListOrderByInfoRepresentation__selections, opaque: ListOrderByInfoRepresentation__opaque, } = select$
|
|
17456
|
-
const { selections: ListScopeRepresentation__selections, opaque: ListScopeRepresentation__opaque, } = select$
|
|
17457
|
-
const { selections: ListUserPreferenceRepresentation__selections, opaque: ListUserPreferenceRepresentation__opaque, } = select$
|
|
17500
|
+
const select$1L = function ListInfoRepresentationSelect() {
|
|
17501
|
+
const { selections: ListColumnRepresentation__selections, opaque: ListColumnRepresentation__opaque, } = select$1T();
|
|
17502
|
+
const { selections: ListFilterByInfoRepresentation__selections, opaque: ListFilterByInfoRepresentation__opaque, } = select$1S();
|
|
17503
|
+
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$1R();
|
|
17504
|
+
const { selections: ListOrderByInfoRepresentation__selections, opaque: ListOrderByInfoRepresentation__opaque, } = select$1Q();
|
|
17505
|
+
const { selections: ListScopeRepresentation__selections, opaque: ListScopeRepresentation__opaque, } = select$1N();
|
|
17506
|
+
const { selections: ListUserPreferenceRepresentation__selections, opaque: ListUserPreferenceRepresentation__opaque, } = select$1M();
|
|
17458
17507
|
return {
|
|
17459
17508
|
kind: 'Fragment',
|
|
17460
|
-
version: VERSION$
|
|
17509
|
+
version: VERSION$1e,
|
|
17461
17510
|
private: [
|
|
17462
17511
|
'eTag'
|
|
17463
17512
|
],
|
|
@@ -17538,7 +17587,7 @@ const select$1J = function ListInfoRepresentationSelect() {
|
|
|
17538
17587
|
]
|
|
17539
17588
|
};
|
|
17540
17589
|
};
|
|
17541
|
-
function equals$
|
|
17590
|
+
function equals$10(existing, incoming) {
|
|
17542
17591
|
if (existing.eTag !== incoming.eTag) {
|
|
17543
17592
|
return false;
|
|
17544
17593
|
}
|
|
@@ -17547,7 +17596,7 @@ function equals$_(existing, incoming) {
|
|
|
17547
17596
|
const ingest$L$1 = function ListInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17548
17597
|
const key = keyBuilderFromType$A(luvio, input);
|
|
17549
17598
|
const ttlToUse = TTL$y;
|
|
17550
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$L, "UiApi", VERSION$
|
|
17599
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$L, "UiApi", VERSION$1e, RepresentationType$R, equals$10);
|
|
17551
17600
|
return createLink$3(key);
|
|
17552
17601
|
};
|
|
17553
17602
|
function getTypeCacheKeys$S$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -17608,11 +17657,11 @@ function toSortedStringArray(value) {
|
|
|
17608
17657
|
return undefined;
|
|
17609
17658
|
}
|
|
17610
17659
|
|
|
17611
|
-
const VERSION$
|
|
17612
|
-
const select$
|
|
17660
|
+
const VERSION$1d$1 = "d1e589a127fb1060c89070cdb6f500b2";
|
|
17661
|
+
const select$1K = function RecordTypeInfoRepresentationSelect() {
|
|
17613
17662
|
return {
|
|
17614
17663
|
kind: 'Fragment',
|
|
17615
|
-
version: VERSION$
|
|
17664
|
+
version: VERSION$1d$1,
|
|
17616
17665
|
private: [],
|
|
17617
17666
|
selections: [
|
|
17618
17667
|
{
|
|
@@ -17638,7 +17687,7 @@ const select$1I = function RecordTypeInfoRepresentationSelect() {
|
|
|
17638
17687
|
]
|
|
17639
17688
|
};
|
|
17640
17689
|
};
|
|
17641
|
-
function equals
|
|
17690
|
+
function equals$$(existing, incoming) {
|
|
17642
17691
|
const existing_available = existing.available;
|
|
17643
17692
|
const incoming_available = incoming.available;
|
|
17644
17693
|
if (!(existing_available === incoming_available)) {
|
|
@@ -17667,7 +17716,7 @@ function equals$Z(existing, incoming) {
|
|
|
17667
17716
|
return true;
|
|
17668
17717
|
}
|
|
17669
17718
|
|
|
17670
|
-
const VERSION$
|
|
17719
|
+
const VERSION$1c$1 = "195d918987a35f45e1aa4dce9a11d8c5";
|
|
17671
17720
|
const RepresentationType$Q = 'FieldValueRepresentation';
|
|
17672
17721
|
function normalize$K(input, existing, path, luvio, store, timestamp) {
|
|
17673
17722
|
const input_value = input.value;
|
|
@@ -17686,10 +17735,10 @@ function normalize$K(input, existing, path, luvio, store, timestamp) {
|
|
|
17686
17735
|
}
|
|
17687
17736
|
return input;
|
|
17688
17737
|
}
|
|
17689
|
-
const select$
|
|
17738
|
+
const select$1J = function FieldValueRepresentationSelect() {
|
|
17690
17739
|
return {
|
|
17691
17740
|
kind: 'Fragment',
|
|
17692
|
-
version: VERSION$
|
|
17741
|
+
version: VERSION$1c$1,
|
|
17693
17742
|
private: [],
|
|
17694
17743
|
selections: [
|
|
17695
17744
|
{
|
|
@@ -17700,12 +17749,12 @@ const select$1H = function FieldValueRepresentationSelect() {
|
|
|
17700
17749
|
name: 'value',
|
|
17701
17750
|
kind: 'Link',
|
|
17702
17751
|
nullable: true,
|
|
17703
|
-
fragment: select$
|
|
17752
|
+
fragment: select$1H()
|
|
17704
17753
|
}
|
|
17705
17754
|
]
|
|
17706
17755
|
};
|
|
17707
17756
|
};
|
|
17708
|
-
function equals$
|
|
17757
|
+
function equals$_(existing, incoming) {
|
|
17709
17758
|
const existing_displayValue = existing.displayValue;
|
|
17710
17759
|
const incoming_displayValue = incoming.displayValue;
|
|
17711
17760
|
if (!(existing_displayValue === incoming_displayValue)) {
|
|
@@ -17726,7 +17775,7 @@ function equals$Y(existing, incoming) {
|
|
|
17726
17775
|
const ingest$K$1 = function FieldValueRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17727
17776
|
const key = path.fullPath;
|
|
17728
17777
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
17729
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$K, "UiApi", VERSION$
|
|
17778
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$K, "UiApi", VERSION$1c$1, RepresentationType$Q, equals$_);
|
|
17730
17779
|
return createLink$3(key);
|
|
17731
17780
|
};
|
|
17732
17781
|
function getTypeCacheKeys$R$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -17769,7 +17818,7 @@ const getTypeCacheKeys$Q$1 = (rootKeySet, luvio, input, _fullPathFactory) => {
|
|
|
17769
17818
|
};
|
|
17770
17819
|
|
|
17771
17820
|
const TTL$x = 120000;
|
|
17772
|
-
const VERSION$
|
|
17821
|
+
const VERSION$1b$1 = "79cb5ac9f44542f683d00245fdfe500d";
|
|
17773
17822
|
const RepresentationType$P = 'RecordCollectionRepresentation';
|
|
17774
17823
|
function normalize$J(input, existing, path, luvio, store, timestamp) {
|
|
17775
17824
|
const input_records = input.records;
|
|
@@ -17790,10 +17839,10 @@ function normalize$J(input, existing, path, luvio, store, timestamp) {
|
|
|
17790
17839
|
}
|
|
17791
17840
|
return input;
|
|
17792
17841
|
}
|
|
17793
|
-
const select$
|
|
17842
|
+
const select$1I = function RecordCollectionRepresentationSelect() {
|
|
17794
17843
|
return {
|
|
17795
17844
|
kind: 'Fragment',
|
|
17796
|
-
version: VERSION$
|
|
17845
|
+
version: VERSION$1b$1,
|
|
17797
17846
|
private: [],
|
|
17798
17847
|
selections: [
|
|
17799
17848
|
{
|
|
@@ -17828,12 +17877,12 @@ const select$1G = function RecordCollectionRepresentationSelect() {
|
|
|
17828
17877
|
name: 'records',
|
|
17829
17878
|
kind: 'Link',
|
|
17830
17879
|
plural: true,
|
|
17831
|
-
fragment: select$
|
|
17880
|
+
fragment: select$1H()
|
|
17832
17881
|
}
|
|
17833
17882
|
]
|
|
17834
17883
|
};
|
|
17835
17884
|
};
|
|
17836
|
-
function equals$
|
|
17885
|
+
function equals$Z(existing, incoming) {
|
|
17837
17886
|
const existing_count = existing.count;
|
|
17838
17887
|
const incoming_count = incoming.count;
|
|
17839
17888
|
if (!(existing_count === incoming_count)) {
|
|
@@ -17884,7 +17933,7 @@ function equals$X(existing, incoming) {
|
|
|
17884
17933
|
const ingest$J$1 = function RecordCollectionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
17885
17934
|
const key = path.fullPath;
|
|
17886
17935
|
const ttlToUse = TTL$x;
|
|
17887
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$J, "UiApi", VERSION$
|
|
17936
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$J, "UiApi", VERSION$1b$1, RepresentationType$P, equals$Z);
|
|
17888
17937
|
return createLink$3(key);
|
|
17889
17938
|
};
|
|
17890
17939
|
function getTypeCacheKeys$P$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -17912,7 +17961,7 @@ const keyBuilderFromType$z = function RecordRepresentationKeyBuilderFromType(luv
|
|
|
17912
17961
|
};
|
|
17913
17962
|
|
|
17914
17963
|
const TTL$w = 30000;
|
|
17915
|
-
const VERSION$
|
|
17964
|
+
const VERSION$1a$1 = "98c5b18512e48ca8d28727549507e4ba";
|
|
17916
17965
|
const RepresentationType$O = 'RecordRepresentation';
|
|
17917
17966
|
function keyBuilder$1U(luvio, config) {
|
|
17918
17967
|
return keyPrefix$1 + '::' + RepresentationType$O + ':' + config.recordId;
|
|
@@ -17966,11 +18015,11 @@ function dynamicNormalize$5(ingestParams) {
|
|
|
17966
18015
|
return input;
|
|
17967
18016
|
};
|
|
17968
18017
|
}
|
|
17969
|
-
const select$
|
|
17970
|
-
const { selections: RecordTypeInfoRepresentation__selections, opaque: RecordTypeInfoRepresentation__opaque, } = select$
|
|
18018
|
+
const select$1H = function RecordRepresentationSelect() {
|
|
18019
|
+
const { selections: RecordTypeInfoRepresentation__selections, opaque: RecordTypeInfoRepresentation__opaque, } = select$1K();
|
|
17971
18020
|
return {
|
|
17972
18021
|
kind: 'Fragment',
|
|
17973
|
-
version: VERSION$
|
|
18022
|
+
version: VERSION$1a$1,
|
|
17974
18023
|
private: [
|
|
17975
18024
|
'eTag',
|
|
17976
18025
|
'weakEtag'
|
|
@@ -17984,13 +18033,13 @@ const select$1F = function RecordRepresentationSelect() {
|
|
|
17984
18033
|
name: 'childRelationships',
|
|
17985
18034
|
kind: 'Link',
|
|
17986
18035
|
map: true,
|
|
17987
|
-
fragment: select$
|
|
18036
|
+
fragment: select$1I()
|
|
17988
18037
|
},
|
|
17989
18038
|
{
|
|
17990
18039
|
name: 'fields',
|
|
17991
18040
|
kind: 'Link',
|
|
17992
18041
|
map: true,
|
|
17993
|
-
fragment: select$
|
|
18042
|
+
fragment: select$1J()
|
|
17994
18043
|
},
|
|
17995
18044
|
{
|
|
17996
18045
|
name: 'id',
|
|
@@ -18026,18 +18075,18 @@ const dynamicSelect$8 = function dynamicRecordRepresentationSelect(params) {
|
|
|
18026
18075
|
name: 'childRelationships',
|
|
18027
18076
|
kind: 'Link',
|
|
18028
18077
|
map: true,
|
|
18029
|
-
fragment: select$
|
|
18078
|
+
fragment: select$1I()
|
|
18030
18079
|
} : params.childRelationships;
|
|
18031
18080
|
const fieldsPathSelection = params.fields === undefined ? {
|
|
18032
18081
|
name: 'fields',
|
|
18033
18082
|
kind: 'Link',
|
|
18034
18083
|
map: true,
|
|
18035
|
-
fragment: select$
|
|
18084
|
+
fragment: select$1J()
|
|
18036
18085
|
} : params.fields;
|
|
18037
|
-
const { selections: RecordTypeInfoRepresentation__selections, opaque: RecordTypeInfoRepresentation__opaque, } = select$
|
|
18086
|
+
const { selections: RecordTypeInfoRepresentation__selections, opaque: RecordTypeInfoRepresentation__opaque, } = select$1K();
|
|
18038
18087
|
return {
|
|
18039
18088
|
kind: 'Fragment',
|
|
18040
|
-
version: VERSION$
|
|
18089
|
+
version: VERSION$1a$1,
|
|
18041
18090
|
private: [
|
|
18042
18091
|
'eTag',
|
|
18043
18092
|
'weakEtag'
|
|
@@ -18078,7 +18127,7 @@ const dynamicSelect$8 = function dynamicRecordRepresentationSelect(params) {
|
|
|
18078
18127
|
]
|
|
18079
18128
|
};
|
|
18080
18129
|
};
|
|
18081
|
-
function equals$
|
|
18130
|
+
function equals$Y(existing, incoming) {
|
|
18082
18131
|
const existing_weakEtag = existing.weakEtag;
|
|
18083
18132
|
const incoming_weakEtag = incoming.weakEtag;
|
|
18084
18133
|
if (!(existing_weakEtag === incoming_weakEtag)) {
|
|
@@ -18139,7 +18188,7 @@ function equals$W(existing, incoming) {
|
|
|
18139
18188
|
if (!(existing_recordTypeInfo === incoming_recordTypeInfo
|
|
18140
18189
|
|| (existing_recordTypeInfo != null &&
|
|
18141
18190
|
incoming_recordTypeInfo != null &&
|
|
18142
|
-
equals
|
|
18191
|
+
equals$$(existing_recordTypeInfo, incoming_recordTypeInfo)))) {
|
|
18143
18192
|
return false;
|
|
18144
18193
|
}
|
|
18145
18194
|
const existing_systemModstamp = existing.systemModstamp;
|
|
@@ -19554,7 +19603,7 @@ function createPathSelection(propertyName, fieldDefinition) {
|
|
|
19554
19603
|
kind: 'Fragment',
|
|
19555
19604
|
private: ['eTag', 'weakEtag'],
|
|
19556
19605
|
selections: createRecordSelection(childFieldDefinition),
|
|
19557
|
-
version: VERSION$
|
|
19606
|
+
version: VERSION$1a$1,
|
|
19558
19607
|
},
|
|
19559
19608
|
};
|
|
19560
19609
|
}
|
|
@@ -19564,7 +19613,7 @@ function createPathSelection(propertyName, fieldDefinition) {
|
|
|
19564
19613
|
required: childFieldDefinition.optional === true ? false : undefined,
|
|
19565
19614
|
fragment: {
|
|
19566
19615
|
kind: 'Fragment',
|
|
19567
|
-
version: VERSION$
|
|
19616
|
+
version: VERSION$1c$1,
|
|
19568
19617
|
private: [],
|
|
19569
19618
|
selections: [DISPLAY_VALUE_SELECTION, fieldValueSelection],
|
|
19570
19619
|
},
|
|
@@ -19596,7 +19645,7 @@ function createPathSelectionFromValue(fields) {
|
|
|
19596
19645
|
kind: 'Fragment',
|
|
19597
19646
|
private: [],
|
|
19598
19647
|
selections: buildSelectionFromRecord(fieldValue),
|
|
19599
|
-
version: VERSION$
|
|
19648
|
+
version: VERSION$1a$1,
|
|
19600
19649
|
},
|
|
19601
19650
|
};
|
|
19602
19651
|
}
|
|
@@ -19606,7 +19655,7 @@ function createPathSelectionFromValue(fields) {
|
|
|
19606
19655
|
required: undefined,
|
|
19607
19656
|
fragment: {
|
|
19608
19657
|
kind: 'Fragment',
|
|
19609
|
-
version: VERSION$
|
|
19658
|
+
version: VERSION$1c$1,
|
|
19610
19659
|
private: [],
|
|
19611
19660
|
selections: [DISPLAY_VALUE_SELECTION, fieldValueSelection],
|
|
19612
19661
|
},
|
|
@@ -20339,7 +20388,7 @@ function makeIngest(fieldsTrie, optionalFieldsTrie, recordConflictMap) {
|
|
|
20339
20388
|
// read again after children ingested in case of a circular ref
|
|
20340
20389
|
existingRecord = store.readEntry(key);
|
|
20341
20390
|
incomingRecord = merge$2(existingRecord, incomingRecord, luvio, path);
|
|
20342
|
-
if (existingRecord === undefined || equals$
|
|
20391
|
+
if (existingRecord === undefined || equals$_(existingRecord, incomingRecord) === false) {
|
|
20343
20392
|
luvio.storePublish(key, incomingRecord);
|
|
20344
20393
|
}
|
|
20345
20394
|
return createLink$3(key);
|
|
@@ -20423,7 +20472,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
20423
20472
|
existingRecord = store.readEntry(key);
|
|
20424
20473
|
incomingRecord = merge$3(existingRecord, incomingRecord, luvio, path, recordConflictMap);
|
|
20425
20474
|
if (existingRecord === undefined ||
|
|
20426
|
-
equals$
|
|
20475
|
+
equals$Y(existingRecord, incomingRecord) === false ||
|
|
20427
20476
|
// always publish if existing record has drafts
|
|
20428
20477
|
existingRecord.drafts !==
|
|
20429
20478
|
undefined) {
|
|
@@ -20433,7 +20482,7 @@ const createRecordIngest = (fieldsTrie, optionalFieldsTrie, recordConflictMap) =
|
|
|
20433
20482
|
ttl: TTL$w,
|
|
20434
20483
|
representationName: RepresentationType$O,
|
|
20435
20484
|
namespace: keyPrefix$1,
|
|
20436
|
-
version: VERSION$
|
|
20485
|
+
version: VERSION$1a$1,
|
|
20437
20486
|
});
|
|
20438
20487
|
return createLink$3(key);
|
|
20439
20488
|
};
|
|
@@ -20594,7 +20643,7 @@ function buildRecordSelector(luvio, recordId, fields, optionalFields) {
|
|
|
20594
20643
|
kind: 'Fragment',
|
|
20595
20644
|
private: ['eTag', 'weakEtag'],
|
|
20596
20645
|
selections: buildSelectionFromFields(fields, optionalFields),
|
|
20597
|
-
version: VERSION$
|
|
20646
|
+
version: VERSION$1a$1,
|
|
20598
20647
|
},
|
|
20599
20648
|
variables: {},
|
|
20600
20649
|
};
|
|
@@ -20712,7 +20761,7 @@ function isSingleBatchRecordResponse(response) {
|
|
|
20712
20761
|
response.results.length === 1);
|
|
20713
20762
|
}
|
|
20714
20763
|
|
|
20715
|
-
const VERSION$
|
|
20764
|
+
const VERSION$19$1 = "98cce53b8d13b1883d001bbdaab24383";
|
|
20716
20765
|
|
|
20717
20766
|
const nonCachedErrors$7 = ObjectCreate$1$1(null);
|
|
20718
20767
|
function ingestSuccessChildResourceParams$7(luvio, childResourceParamsArray, childEnvelopes, serverRequestCount = 0) {
|
|
@@ -20813,7 +20862,7 @@ function selectChildResourceParams$7(luvio, childResources, resourceParams) {
|
|
|
20813
20862
|
node: {
|
|
20814
20863
|
kind: 'Fragment',
|
|
20815
20864
|
private: [],
|
|
20816
|
-
version: VERSION$
|
|
20865
|
+
version: VERSION$19$1,
|
|
20817
20866
|
},
|
|
20818
20867
|
variables: {},
|
|
20819
20868
|
});
|
|
@@ -21227,7 +21276,7 @@ function tokenForAtMost$1(paginationMetadata, maxOffset) {
|
|
|
21227
21276
|
}
|
|
21228
21277
|
|
|
21229
21278
|
const TTL$v = 30000;
|
|
21230
|
-
const VERSION$
|
|
21279
|
+
const VERSION$18$1 = "614ef19823027c07fa6deb9a149619d2";
|
|
21231
21280
|
const RepresentationType$N = 'ListRecordCollectionRepresentation';
|
|
21232
21281
|
function keyBuilder$1R(luvio, config) {
|
|
21233
21282
|
return keyPrefix$1 + '::' + RepresentationType$N + ':' + (config.listViewId === null ? '' : config.listViewId) + ':' + (config.sortBy === null ? '' : '[' + config.sortBy.join(',') + ']') + ':' + config.objectApiName + ':' + (config.listViewApiName === null ? '' : config.listViewApiName);
|
|
@@ -21263,13 +21312,13 @@ function normalize$H(input, existing, path, luvio, store, timestamp) {
|
|
|
21263
21312
|
}
|
|
21264
21313
|
return input;
|
|
21265
21314
|
}
|
|
21266
|
-
const select$
|
|
21267
|
-
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$
|
|
21315
|
+
const select$1G = function ListRecordCollectionRepresentationSelect(paginationParams) {
|
|
21316
|
+
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$1R();
|
|
21268
21317
|
return {
|
|
21269
21318
|
kind: 'Fragment',
|
|
21270
21319
|
reader: true,
|
|
21271
21320
|
synthetic: false,
|
|
21272
|
-
version: VERSION$
|
|
21321
|
+
version: VERSION$18$1,
|
|
21273
21322
|
read: (source, reader) => {
|
|
21274
21323
|
const sink = {};
|
|
21275
21324
|
if (paginationParams === undefined) {
|
|
@@ -21289,7 +21338,7 @@ const select$1E = function ListRecordCollectionRepresentationSelect(paginationPa
|
|
|
21289
21338
|
reader.readSingleLink(i, {
|
|
21290
21339
|
name: 'records',
|
|
21291
21340
|
kind: 'Link',
|
|
21292
|
-
fragment: select$
|
|
21341
|
+
fragment: select$1H()
|
|
21293
21342
|
}, itemsSource, allSink, i - startOffset);
|
|
21294
21343
|
if (reader.getIsDataMissing() === false) {
|
|
21295
21344
|
itemsSink[i - startOffset] = allSink[i - startOffset];
|
|
@@ -21376,14 +21425,14 @@ const dynamicSelect$7 = function dynamicListRecordCollectionRepresentationSelect
|
|
|
21376
21425
|
const recordsPathSelection = params.records === undefined ? {
|
|
21377
21426
|
name: 'records',
|
|
21378
21427
|
kind: 'Link',
|
|
21379
|
-
fragment: select$
|
|
21428
|
+
fragment: select$1H()
|
|
21380
21429
|
} : params.records;
|
|
21381
|
-
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$
|
|
21430
|
+
const { selections: ListReferenceRepresentation__selections, opaque: ListReferenceRepresentation__opaque, } = select$1R();
|
|
21382
21431
|
return {
|
|
21383
21432
|
kind: 'Fragment',
|
|
21384
21433
|
reader: true,
|
|
21385
21434
|
synthetic: false,
|
|
21386
|
-
version: VERSION$
|
|
21435
|
+
version: VERSION$18$1,
|
|
21387
21436
|
read: (source, reader) => {
|
|
21388
21437
|
const sink = {};
|
|
21389
21438
|
if (paginationParams === undefined) {
|
|
@@ -21452,7 +21501,7 @@ const dynamicSelect$7 = function dynamicListRecordCollectionRepresentationSelect
|
|
|
21452
21501
|
},
|
|
21453
21502
|
};
|
|
21454
21503
|
};
|
|
21455
|
-
function equals$
|
|
21504
|
+
function equals$X(existing, incoming) {
|
|
21456
21505
|
const existing_count = existing.count;
|
|
21457
21506
|
const incoming_count = incoming.count;
|
|
21458
21507
|
if (!(existing_count === incoming_count)) {
|
|
@@ -21490,7 +21539,7 @@ function equals$V(existing, incoming) {
|
|
|
21490
21539
|
}
|
|
21491
21540
|
const existing_listReference = existing.listReference;
|
|
21492
21541
|
const incoming_listReference = incoming.listReference;
|
|
21493
|
-
if (!(equals
|
|
21542
|
+
if (!(equals$11(existing_listReference, incoming_listReference))) {
|
|
21494
21543
|
return false;
|
|
21495
21544
|
}
|
|
21496
21545
|
const existing_nextPageToken = existing.nextPageToken;
|
|
@@ -21601,14 +21650,14 @@ const ingest$H$1 = function ListRecordCollectionRepresentationIngest(input, path
|
|
|
21601
21650
|
...existingRecord.records.slice(nextOffset),
|
|
21602
21651
|
];
|
|
21603
21652
|
}
|
|
21604
|
-
if (existingRecord === undefined || equals$
|
|
21653
|
+
if (existingRecord === undefined || equals$X(existingRecord, incomingRecord) === false) {
|
|
21605
21654
|
luvio.storePublish(key, incomingRecord);
|
|
21606
21655
|
}
|
|
21607
21656
|
{
|
|
21608
21657
|
const storeMetadataParams = {
|
|
21609
21658
|
ttl: ttlToUse,
|
|
21610
21659
|
namespace: "UiApi",
|
|
21611
|
-
version: VERSION$
|
|
21660
|
+
version: VERSION$18$1,
|
|
21612
21661
|
representationName: RepresentationType$N,
|
|
21613
21662
|
};
|
|
21614
21663
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
@@ -21634,7 +21683,7 @@ function getTypeCacheKeys$N$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
21634
21683
|
}
|
|
21635
21684
|
}
|
|
21636
21685
|
|
|
21637
|
-
const VERSION$
|
|
21686
|
+
const VERSION$17$1 = "cf8d2eb042188974da26ffe6618cfd07";
|
|
21638
21687
|
const RepresentationType$M = 'ListUiRepresentation';
|
|
21639
21688
|
function keyBuilder$1Q(luvio, config) {
|
|
21640
21689
|
return keyPrefix$1 + '::' + RepresentationType$M + ':' + (config.listViewApiName === null ? '' : config.listViewApiName) + ':' + config.objectApiName + ':' + config.type + ':' + (config.sortBy === null ? '' : '[' + config.sortBy.join(',') + ']');
|
|
@@ -21679,16 +21728,16 @@ const dynamicSelect$6 = function dynamicListUiRepresentationSelect(params, pagin
|
|
|
21679
21728
|
const infoPathSelection = params.info === undefined ? {
|
|
21680
21729
|
name: 'info',
|
|
21681
21730
|
kind: 'Link',
|
|
21682
|
-
fragment: select$
|
|
21731
|
+
fragment: select$1L()
|
|
21683
21732
|
} : params.info;
|
|
21684
21733
|
const recordsPathSelection = params.records === undefined ? {
|
|
21685
21734
|
name: 'records',
|
|
21686
21735
|
kind: 'Link',
|
|
21687
|
-
fragment: select$
|
|
21736
|
+
fragment: select$1G(paginationParams)
|
|
21688
21737
|
} : params.records;
|
|
21689
21738
|
return {
|
|
21690
21739
|
kind: 'Fragment',
|
|
21691
|
-
version: VERSION$
|
|
21740
|
+
version: VERSION$17$1,
|
|
21692
21741
|
private: [
|
|
21693
21742
|
'eTag'
|
|
21694
21743
|
],
|
|
@@ -21698,7 +21747,7 @@ const dynamicSelect$6 = function dynamicListUiRepresentationSelect(params, pagin
|
|
|
21698
21747
|
]
|
|
21699
21748
|
};
|
|
21700
21749
|
};
|
|
21701
|
-
function equals$
|
|
21750
|
+
function equals$W(existing, incoming) {
|
|
21702
21751
|
const existing_eTag = existing.eTag;
|
|
21703
21752
|
const incoming_eTag = incoming.eTag;
|
|
21704
21753
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -21719,7 +21768,7 @@ function equals$U(existing, incoming) {
|
|
|
21719
21768
|
const ingest$G$1 = function ListUiRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
21720
21769
|
const key = keyBuilderFromType$w(luvio, input);
|
|
21721
21770
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
21722
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$G, "UiApi", VERSION$
|
|
21771
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$G, "UiApi", VERSION$17$1, RepresentationType$M, equals$W);
|
|
21723
21772
|
return createLink$3(key);
|
|
21724
21773
|
};
|
|
21725
21774
|
function getTypeCacheKeys$M$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -21890,11 +21939,11 @@ function getListReference(query, context) {
|
|
|
21890
21939
|
/**
|
|
21891
21940
|
* Reader selections to copy a list info
|
|
21892
21941
|
*/
|
|
21893
|
-
const LIST_INFO_SELECTIONS = select$
|
|
21942
|
+
const LIST_INFO_SELECTIONS = select$1L().selections;
|
|
21894
21943
|
/**
|
|
21895
21944
|
* List info private memebers
|
|
21896
21945
|
*/
|
|
21897
|
-
select$
|
|
21946
|
+
select$1L().private;
|
|
21898
21947
|
const LIST_INFO_SELECTIONS_ETAG = [
|
|
21899
21948
|
...LIST_INFO_SELECTIONS,
|
|
21900
21949
|
{ kind: 'Scalar', name: 'eTag' },
|
|
@@ -21914,7 +21963,7 @@ function getListInfo(luvio, listRef, storeLookup) {
|
|
|
21914
21963
|
kind: 'Fragment',
|
|
21915
21964
|
selections: LIST_INFO_SELECTIONS_ETAG,
|
|
21916
21965
|
private: [],
|
|
21917
|
-
version: VERSION$
|
|
21966
|
+
version: VERSION$1e,
|
|
21918
21967
|
},
|
|
21919
21968
|
variables: {},
|
|
21920
21969
|
});
|
|
@@ -22107,7 +22156,7 @@ function keyBuilder$1P(luvio, params) {
|
|
|
22107
22156
|
});
|
|
22108
22157
|
}
|
|
22109
22158
|
|
|
22110
|
-
function select$
|
|
22159
|
+
function select$1F(luvio, params) {
|
|
22111
22160
|
const { fields = [], optionalFields = [] } = params.queryParams;
|
|
22112
22161
|
return dynamicSelect$7({
|
|
22113
22162
|
records: {
|
|
@@ -22117,7 +22166,7 @@ function select$1D(luvio, params) {
|
|
|
22117
22166
|
kind: 'Fragment',
|
|
22118
22167
|
private: ['eTag', 'weakEtag'],
|
|
22119
22168
|
selections: buildSelectionFromFields(fields, optionalFields),
|
|
22120
|
-
version: VERSION$
|
|
22169
|
+
version: VERSION$1a$1
|
|
22121
22170
|
},
|
|
22122
22171
|
},
|
|
22123
22172
|
}, createPaginationParams$3(params));
|
|
@@ -22133,7 +22182,7 @@ function ingestSuccess$J(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
22133
22182
|
}
|
|
22134
22183
|
const snapshot = luvio.storeLookup({
|
|
22135
22184
|
recordId: key,
|
|
22136
|
-
node: select$
|
|
22185
|
+
node: select$1F(luvio, resourceParams),
|
|
22137
22186
|
variables: {},
|
|
22138
22187
|
}, snapshotRefresh);
|
|
22139
22188
|
return snapshot;
|
|
@@ -22166,7 +22215,7 @@ function ingestError$F(luvio, params, error, snapshotRefresh) {
|
|
|
22166
22215
|
const storeMetadataParams = {
|
|
22167
22216
|
ttl: TTL$v,
|
|
22168
22217
|
namespace: keyPrefix$1,
|
|
22169
|
-
version: VERSION$
|
|
22218
|
+
version: VERSION$18$1,
|
|
22170
22219
|
representationName: RepresentationType$N
|
|
22171
22220
|
};
|
|
22172
22221
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -22239,7 +22288,7 @@ function isErrorSnapshot(snapshot) {
|
|
|
22239
22288
|
return snapshot.state === 'Error';
|
|
22240
22289
|
}
|
|
22241
22290
|
|
|
22242
|
-
const VERSION$
|
|
22291
|
+
const VERSION$16$1 = "3529c5f7d0eb2206c90a52c6d9f721d4";
|
|
22243
22292
|
const RepresentationType$L = 'ListViewSummaryRepresentation';
|
|
22244
22293
|
function keyBuilder$1O(luvio, config) {
|
|
22245
22294
|
return keyPrefix$1 + '::' + RepresentationType$L + ':' + (config.id === null ? '' : config.id);
|
|
@@ -22253,10 +22302,10 @@ function keyBuilderFromType$v(luvio, object) {
|
|
|
22253
22302
|
function normalize$F(input, existing, path, luvio, store, timestamp) {
|
|
22254
22303
|
return input;
|
|
22255
22304
|
}
|
|
22256
|
-
const select$
|
|
22305
|
+
const select$1E = function ListViewSummaryRepresentationSelect() {
|
|
22257
22306
|
return {
|
|
22258
22307
|
kind: 'Fragment',
|
|
22259
|
-
version: VERSION$
|
|
22308
|
+
version: VERSION$16$1,
|
|
22260
22309
|
private: [],
|
|
22261
22310
|
selections: [
|
|
22262
22311
|
{
|
|
@@ -22278,7 +22327,7 @@ const select$1C = function ListViewSummaryRepresentationSelect() {
|
|
|
22278
22327
|
]
|
|
22279
22328
|
};
|
|
22280
22329
|
};
|
|
22281
|
-
function equals$
|
|
22330
|
+
function equals$V(existing, incoming) {
|
|
22282
22331
|
const existing_apiName = existing.apiName;
|
|
22283
22332
|
const incoming_apiName = incoming.apiName;
|
|
22284
22333
|
if (!(existing_apiName === incoming_apiName)) {
|
|
@@ -22304,7 +22353,7 @@ function equals$T(existing, incoming) {
|
|
|
22304
22353
|
const ingest$F$1 = function ListViewSummaryRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
22305
22354
|
const key = keyBuilderFromType$v(luvio, input);
|
|
22306
22355
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
22307
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$F, "UiApi", VERSION$
|
|
22356
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$F, "UiApi", VERSION$16$1, RepresentationType$L, equals$V);
|
|
22308
22357
|
return createLink$3(key);
|
|
22309
22358
|
};
|
|
22310
22359
|
function getTypeCacheKeys$L$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -22317,7 +22366,7 @@ function getTypeCacheKeys$L$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
22317
22366
|
});
|
|
22318
22367
|
}
|
|
22319
22368
|
|
|
22320
|
-
const VERSION$
|
|
22369
|
+
const VERSION$15$1 = "f4c79fe066da3558499d5ee88c72abcd";
|
|
22321
22370
|
const RepresentationType$K = 'ListViewSummaryCollectionRepresentation';
|
|
22322
22371
|
function keyBuilder$1N(luvio, config) {
|
|
22323
22372
|
return keyPrefix$1 + '::' + RepresentationType$K + ':' + config.objectApiName + ':' + (config.queryString === null ? '' : config.queryString) + ':' + config.recentListsOnly;
|
|
@@ -22349,12 +22398,12 @@ function normalize$E(input, existing, path, luvio, store, timestamp) {
|
|
|
22349
22398
|
}
|
|
22350
22399
|
return input;
|
|
22351
22400
|
}
|
|
22352
|
-
const select$
|
|
22401
|
+
const select$1D = function ListViewSummaryCollectionRepresentationSelect(paginationParams) {
|
|
22353
22402
|
return {
|
|
22354
22403
|
kind: 'Fragment',
|
|
22355
22404
|
reader: true,
|
|
22356
22405
|
synthetic: false,
|
|
22357
|
-
version: VERSION$
|
|
22406
|
+
version: VERSION$15$1,
|
|
22358
22407
|
read: (source, reader) => {
|
|
22359
22408
|
const sink = {};
|
|
22360
22409
|
if (paginationParams === undefined) {
|
|
@@ -22374,7 +22423,7 @@ const select$1B = function ListViewSummaryCollectionRepresentationSelect(paginat
|
|
|
22374
22423
|
reader.readSingleLink(i, {
|
|
22375
22424
|
name: 'lists',
|
|
22376
22425
|
kind: 'Link',
|
|
22377
|
-
fragment: select$
|
|
22426
|
+
fragment: select$1E()
|
|
22378
22427
|
}, itemsSource, allSink, i - startOffset);
|
|
22379
22428
|
if (reader.getIsDataMissing() === false) {
|
|
22380
22429
|
itemsSink[i - startOffset] = allSink[i - startOffset];
|
|
@@ -22442,7 +22491,7 @@ function getPageMetadata$1(paginationMetadata, paginationParams) {
|
|
|
22442
22491
|
metadataProperties.count = endOffset - startOffset;
|
|
22443
22492
|
return sink;
|
|
22444
22493
|
}
|
|
22445
|
-
function equals$
|
|
22494
|
+
function equals$U(existing, incoming) {
|
|
22446
22495
|
const existing_recentListsOnly = existing.recentListsOnly;
|
|
22447
22496
|
const incoming_recentListsOnly = incoming.recentListsOnly;
|
|
22448
22497
|
if (!(existing_recentListsOnly === incoming_recentListsOnly)) {
|
|
@@ -22564,14 +22613,14 @@ const ingest$E$1 = function ListViewSummaryCollectionRepresentationIngest(input,
|
|
|
22564
22613
|
...existingRecord.lists.slice(nextOffset),
|
|
22565
22614
|
];
|
|
22566
22615
|
}
|
|
22567
|
-
if (existingRecord === undefined || equals$
|
|
22616
|
+
if (existingRecord === undefined || equals$U(existingRecord, incomingRecord) === false) {
|
|
22568
22617
|
luvio.storePublish(key, incomingRecord);
|
|
22569
22618
|
}
|
|
22570
22619
|
if (ttlToUse !== undefined) {
|
|
22571
22620
|
const storeMetadataParams = {
|
|
22572
22621
|
ttl: ttlToUse,
|
|
22573
22622
|
namespace: "UiApi",
|
|
22574
|
-
version: VERSION$
|
|
22623
|
+
version: VERSION$15$1,
|
|
22575
22624
|
representationName: RepresentationType$K,
|
|
22576
22625
|
};
|
|
22577
22626
|
luvio.publishStoreMetadata(key, storeMetadataParams);
|
|
@@ -22610,9 +22659,9 @@ function createPaginationParams$2(params) {
|
|
|
22610
22659
|
pageSize: queryParams.pageSize === undefined ? 20 : queryParams.pageSize
|
|
22611
22660
|
};
|
|
22612
22661
|
}
|
|
22613
|
-
function select$
|
|
22662
|
+
function select$1C(luvio, params) {
|
|
22614
22663
|
const paginationParams = createPaginationParams$2(params);
|
|
22615
|
-
return select$
|
|
22664
|
+
return select$1D(paginationParams);
|
|
22616
22665
|
}
|
|
22617
22666
|
function keyBuilder$1M(luvio, params) {
|
|
22618
22667
|
return keyBuilder$1N(luvio, {
|
|
@@ -22630,7 +22679,7 @@ function ingestSuccess$I(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
22630
22679
|
luvio.storeIngest(key, ingest$E$1, body);
|
|
22631
22680
|
const snapshot = luvio.storeLookup({
|
|
22632
22681
|
recordId: key,
|
|
22633
|
-
node: select$
|
|
22682
|
+
node: select$1C(luvio, resourceParams),
|
|
22634
22683
|
variables: {},
|
|
22635
22684
|
}, snapshotRefresh);
|
|
22636
22685
|
deepFreeze(snapshot.data);
|
|
@@ -22688,7 +22737,7 @@ function validateAdapterConfig$_(untrustedConfig, configPropertyNames) {
|
|
|
22688
22737
|
}
|
|
22689
22738
|
function adapterFragment$D(luvio, config) {
|
|
22690
22739
|
const resourceParams = createResourceParams$S(config);
|
|
22691
|
-
return select$
|
|
22740
|
+
return select$1C(luvio, resourceParams);
|
|
22692
22741
|
}
|
|
22693
22742
|
function onFetchResponseSuccess$H(luvio, config, resourceParams, response) {
|
|
22694
22743
|
const snapshot = ingestSuccess$I(luvio, resourceParams, response, {
|
|
@@ -22756,7 +22805,7 @@ function getPaginationMetadata$2(luvio, resourceParams) {
|
|
|
22756
22805
|
recordId: key,
|
|
22757
22806
|
node: {
|
|
22758
22807
|
kind: 'Fragment',
|
|
22759
|
-
version: VERSION$
|
|
22808
|
+
version: VERSION$15$1,
|
|
22760
22809
|
private: [],
|
|
22761
22810
|
selections: [
|
|
22762
22811
|
{
|
|
@@ -22943,7 +22992,7 @@ function buildListUiFragment$1(config, fields) {
|
|
|
22943
22992
|
kind: 'Fragment',
|
|
22944
22993
|
private: ['eTag', 'weakEtag'],
|
|
22945
22994
|
selections: buildSelectionFromFields(...fields.getRecordSelectionFieldSets()),
|
|
22946
|
-
version: VERSION$
|
|
22995
|
+
version: VERSION$1a$1,
|
|
22947
22996
|
},
|
|
22948
22997
|
},
|
|
22949
22998
|
};
|
|
@@ -23253,7 +23302,7 @@ function buildListUiFragment(config, context, fields) {
|
|
|
23253
23302
|
kind: 'Fragment',
|
|
23254
23303
|
private: ['eTag', 'weakEtag'],
|
|
23255
23304
|
selections: buildSelectionFromFields(...fields.getRecordSelectionFieldSets()),
|
|
23256
|
-
version: VERSION$
|
|
23305
|
+
version: VERSION$1a$1,
|
|
23257
23306
|
},
|
|
23258
23307
|
},
|
|
23259
23308
|
};
|
|
@@ -23632,7 +23681,7 @@ const factory$g = (luvio) => {
|
|
|
23632
23681
|
};
|
|
23633
23682
|
|
|
23634
23683
|
const TTL$u = 900000;
|
|
23635
|
-
const VERSION$
|
|
23684
|
+
const VERSION$14$1 = "ec9370a0cd56f4769fe9ec5cd942ff30";
|
|
23636
23685
|
const RepresentationType$J = 'ObjectInfoRepresentation';
|
|
23637
23686
|
function keyBuilder$1J(luvio, config) {
|
|
23638
23687
|
return keyPrefix$1 + '::' + RepresentationType$J + ':' + config.apiName;
|
|
@@ -23646,10 +23695,10 @@ function keyBuilderFromType$t(luvio, object) {
|
|
|
23646
23695
|
function normalize$D(input, existing, path, luvio, store, timestamp) {
|
|
23647
23696
|
return input;
|
|
23648
23697
|
}
|
|
23649
|
-
const select$
|
|
23698
|
+
const select$1B = function ObjectInfoRepresentationSelect() {
|
|
23650
23699
|
return {
|
|
23651
23700
|
kind: 'Fragment',
|
|
23652
|
-
version: VERSION$
|
|
23701
|
+
version: VERSION$14$1,
|
|
23653
23702
|
private: [
|
|
23654
23703
|
'eTag'
|
|
23655
23704
|
],
|
|
@@ -23751,7 +23800,7 @@ const select$1z = function ObjectInfoRepresentationSelect() {
|
|
|
23751
23800
|
]
|
|
23752
23801
|
};
|
|
23753
23802
|
};
|
|
23754
|
-
function equals$
|
|
23803
|
+
function equals$T(existing, incoming) {
|
|
23755
23804
|
if (existing.eTag !== incoming.eTag) {
|
|
23756
23805
|
return false;
|
|
23757
23806
|
}
|
|
@@ -23760,7 +23809,7 @@ function equals$R(existing, incoming) {
|
|
|
23760
23809
|
const ingest$D$1 = function ObjectInfoRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
23761
23810
|
const key = keyBuilderFromType$t(luvio, input);
|
|
23762
23811
|
const ttlToUse = TTL$u;
|
|
23763
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$D, "UiApi", VERSION$
|
|
23812
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$D, "UiApi", VERSION$14$1, RepresentationType$J, equals$T);
|
|
23764
23813
|
return createLink$3(key);
|
|
23765
23814
|
};
|
|
23766
23815
|
function getTypeCacheKeys$J$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -23773,8 +23822,8 @@ function getTypeCacheKeys$J$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
23773
23822
|
});
|
|
23774
23823
|
}
|
|
23775
23824
|
|
|
23776
|
-
function select$
|
|
23777
|
-
return select$
|
|
23825
|
+
function select$1A(luvio, params) {
|
|
23826
|
+
return select$1B();
|
|
23778
23827
|
}
|
|
23779
23828
|
function keyBuilder$1I(luvio, params) {
|
|
23780
23829
|
return keyBuilder$1J(luvio, {
|
|
@@ -23790,7 +23839,7 @@ function ingestSuccess$H(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
23790
23839
|
luvio.storeIngest(key, ingest$D$1, body);
|
|
23791
23840
|
const snapshot = luvio.storeLookup({
|
|
23792
23841
|
recordId: key,
|
|
23793
|
-
node: select$
|
|
23842
|
+
node: select$1A(),
|
|
23794
23843
|
variables: {},
|
|
23795
23844
|
}, snapshotRefresh);
|
|
23796
23845
|
deepFreeze(snapshot.data);
|
|
@@ -23802,7 +23851,7 @@ function ingestError$D(luvio, params, error, snapshotRefresh) {
|
|
|
23802
23851
|
const storeMetadataParams = {
|
|
23803
23852
|
ttl: TTL$u,
|
|
23804
23853
|
namespace: keyPrefix$1,
|
|
23805
|
-
version: VERSION$
|
|
23854
|
+
version: VERSION$14$1,
|
|
23806
23855
|
representationName: RepresentationType$J
|
|
23807
23856
|
};
|
|
23808
23857
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -23850,7 +23899,7 @@ function validateAdapterConfig$Y(untrustedConfig, configPropertyNames) {
|
|
|
23850
23899
|
}
|
|
23851
23900
|
function adapterFragment$C(luvio, config) {
|
|
23852
23901
|
createResourceParams$Q(config);
|
|
23853
|
-
return select$
|
|
23902
|
+
return select$1A();
|
|
23854
23903
|
}
|
|
23855
23904
|
function onFetchResponseSuccess$G(luvio, config, resourceParams, response) {
|
|
23856
23905
|
const snapshot = ingestSuccess$H(luvio, resourceParams, response, {
|
|
@@ -23917,7 +23966,7 @@ var DiscriminatorValues$4;
|
|
|
23917
23966
|
})(DiscriminatorValues$4 || (DiscriminatorValues$4 = {}));
|
|
23918
23967
|
|
|
23919
23968
|
const TTL$t = 900000;
|
|
23920
|
-
const VERSION$
|
|
23969
|
+
const VERSION$13$1 = "fb515e25a89ca1ec154dc865e72b913a";
|
|
23921
23970
|
const RepresentationType$I = 'RecordLayoutRepresentation';
|
|
23922
23971
|
function keyBuilder$1G(luvio, config) {
|
|
23923
23972
|
return keyPrefix$1 + '::' + RepresentationType$I + ':' + (config.recordTypeId === null ? '' : config.recordTypeId) + ':' + (config.objectApiName === null ? '' : config.objectApiName) + ':' + config.layoutType + ':' + config.mode;
|
|
@@ -23934,10 +23983,10 @@ function keyBuilderFromType$s(luvio, object) {
|
|
|
23934
23983
|
function normalize$C(input, existing, path, luvio, store, timestamp) {
|
|
23935
23984
|
return input;
|
|
23936
23985
|
}
|
|
23937
|
-
const select$
|
|
23986
|
+
const select$1z = function RecordLayoutRepresentationSelect() {
|
|
23938
23987
|
return {
|
|
23939
23988
|
kind: 'Fragment',
|
|
23940
|
-
version: VERSION$
|
|
23989
|
+
version: VERSION$13$1,
|
|
23941
23990
|
private: [
|
|
23942
23991
|
'eTag'
|
|
23943
23992
|
],
|
|
@@ -23975,7 +24024,7 @@ const select$1x = function RecordLayoutRepresentationSelect() {
|
|
|
23975
24024
|
]
|
|
23976
24025
|
};
|
|
23977
24026
|
};
|
|
23978
|
-
function equals$
|
|
24027
|
+
function equals$S(existing, incoming) {
|
|
23979
24028
|
if (existing.eTag !== incoming.eTag) {
|
|
23980
24029
|
return false;
|
|
23981
24030
|
}
|
|
@@ -23984,7 +24033,7 @@ function equals$Q(existing, incoming) {
|
|
|
23984
24033
|
const ingest$C$1 = function RecordLayoutRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
23985
24034
|
const key = keyBuilderFromType$s(luvio, input);
|
|
23986
24035
|
const ttlToUse = TTL$t;
|
|
23987
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$C, "UiApi", VERSION$
|
|
24036
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$C, "UiApi", VERSION$13$1, RepresentationType$I, equals$S);
|
|
23988
24037
|
return createLink$3(key);
|
|
23989
24038
|
};
|
|
23990
24039
|
function getTypeCacheKeys$I$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -24020,7 +24069,7 @@ function getRecordId18Array(value) {
|
|
|
24020
24069
|
}
|
|
24021
24070
|
|
|
24022
24071
|
const TTL$s = 900000;
|
|
24023
|
-
const VERSION$
|
|
24072
|
+
const VERSION$12$1 = "4ba42e1fa0fb00cf78fce86082da41c9";
|
|
24024
24073
|
const RepresentationType$H = 'RecordLayoutUserStateRepresentation';
|
|
24025
24074
|
function keyBuilder$1F(luvio, config) {
|
|
24026
24075
|
return keyPrefix$1 + '::' + RepresentationType$H + ':' + config.recordTypeId + ':' + config.apiName + ':' + config.layoutType + ':' + config.mode;
|
|
@@ -24037,10 +24086,10 @@ function keyBuilderFromType$r(luvio, object) {
|
|
|
24037
24086
|
function normalize$B(input, existing, path, luvio, store, timestamp) {
|
|
24038
24087
|
return input;
|
|
24039
24088
|
}
|
|
24040
|
-
const select$
|
|
24089
|
+
const select$1y = function RecordLayoutUserStateRepresentationSelect() {
|
|
24041
24090
|
return {
|
|
24042
24091
|
kind: 'Fragment',
|
|
24043
|
-
version: VERSION$
|
|
24092
|
+
version: VERSION$12$1,
|
|
24044
24093
|
private: [
|
|
24045
24094
|
'apiName',
|
|
24046
24095
|
'recordTypeId',
|
|
@@ -24060,7 +24109,7 @@ const select$1w = function RecordLayoutUserStateRepresentationSelect() {
|
|
|
24060
24109
|
]
|
|
24061
24110
|
};
|
|
24062
24111
|
};
|
|
24063
|
-
function equals$
|
|
24112
|
+
function equals$R(existing, incoming) {
|
|
24064
24113
|
if (JSONStringify$2(incoming) !== JSONStringify$2(existing)) {
|
|
24065
24114
|
return false;
|
|
24066
24115
|
}
|
|
@@ -24069,7 +24118,7 @@ function equals$P(existing, incoming) {
|
|
|
24069
24118
|
const ingest$B$1 = function RecordLayoutUserStateRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
24070
24119
|
const key = keyBuilderFromType$r(luvio, input);
|
|
24071
24120
|
const ttlToUse = TTL$s;
|
|
24072
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$B, "UiApi", VERSION$
|
|
24121
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$B, "UiApi", VERSION$12$1, RepresentationType$H, equals$R);
|
|
24073
24122
|
return createLink$3(key);
|
|
24074
24123
|
};
|
|
24075
24124
|
function getTypeCacheKeys$H$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -24083,7 +24132,7 @@ function getTypeCacheKeys$H$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
24083
24132
|
}
|
|
24084
24133
|
|
|
24085
24134
|
const TTL$r = 900000;
|
|
24086
|
-
const VERSION
|
|
24135
|
+
const VERSION$11$1 = "49cdd4bc235a6094c3559cc7735b3b6d";
|
|
24087
24136
|
const RepresentationType$G = 'RecordUiRepresentation';
|
|
24088
24137
|
function normalize$A(input, existing, path, luvio, store, timestamp) {
|
|
24089
24138
|
const input_layoutUserStates = input.layoutUserStates;
|
|
@@ -24185,7 +24234,7 @@ function normalize$A(input, existing, path, luvio, store, timestamp) {
|
|
|
24185
24234
|
}
|
|
24186
24235
|
return input;
|
|
24187
24236
|
}
|
|
24188
|
-
function equals$
|
|
24237
|
+
function equals$Q(existing, incoming) {
|
|
24189
24238
|
const existing_eTag = existing.eTag;
|
|
24190
24239
|
const incoming_eTag = incoming.eTag;
|
|
24191
24240
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -24251,7 +24300,7 @@ function equals$O(existing, incoming) {
|
|
|
24251
24300
|
const ingest$A$1 = function RecordUiRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
24252
24301
|
const key = path.fullPath;
|
|
24253
24302
|
const ttlToUse = TTL$r;
|
|
24254
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$A, "UiApi", VERSION
|
|
24303
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$A, "UiApi", VERSION$11$1, RepresentationType$G, equals$Q);
|
|
24255
24304
|
return createLink$3(key);
|
|
24256
24305
|
};
|
|
24257
24306
|
|
|
@@ -24296,9 +24345,9 @@ function validateAdapterConfig$X(untrustedConfig, configPropertyNames) {
|
|
|
24296
24345
|
return config;
|
|
24297
24346
|
}
|
|
24298
24347
|
|
|
24299
|
-
const layoutSelections$2 = select$
|
|
24300
|
-
const objectInfoPathSelection = select$
|
|
24301
|
-
const layoutUserStatePathSelector = select$
|
|
24348
|
+
const layoutSelections$2 = select$1z();
|
|
24349
|
+
const objectInfoPathSelection = select$1B();
|
|
24350
|
+
const layoutUserStatePathSelector = select$1y();
|
|
24302
24351
|
function buildRecordUiSelector(recordDefs, layoutTypes, modes, recordOptionalFields) {
|
|
24303
24352
|
const layoutTypeSelections = [];
|
|
24304
24353
|
for (let i = 0, len = layoutTypes.length; i < len; i += 1) {
|
|
@@ -24346,7 +24395,7 @@ function buildRecordUiSelector(recordDefs, layoutTypes, modes, recordOptionalFie
|
|
|
24346
24395
|
return {
|
|
24347
24396
|
kind: 'Fragment',
|
|
24348
24397
|
private: ['eTag'],
|
|
24349
|
-
version: VERSION
|
|
24398
|
+
version: VERSION$11$1,
|
|
24350
24399
|
selections: [
|
|
24351
24400
|
{
|
|
24352
24401
|
kind: 'Link',
|
|
@@ -24824,7 +24873,7 @@ var LayoutMode$1;
|
|
|
24824
24873
|
})(LayoutMode$1 || (LayoutMode$1 = {}));
|
|
24825
24874
|
|
|
24826
24875
|
const DEFAULT_MODE = LayoutMode$1.View;
|
|
24827
|
-
const layoutSelections$1 = select$
|
|
24876
|
+
const layoutSelections$1 = select$1z();
|
|
24828
24877
|
function buildSnapshotRefresh$3(luvio, config) {
|
|
24829
24878
|
return {
|
|
24830
24879
|
config,
|
|
@@ -25018,7 +25067,7 @@ function buildRecordLayoutCachedSnapshot(context, storeLookup) {
|
|
|
25018
25067
|
kind: 'Fragment',
|
|
25019
25068
|
private: [],
|
|
25020
25069
|
selections: recordLayoutFragmentSelector,
|
|
25021
|
-
version: VERSION$
|
|
25070
|
+
version: VERSION$1a$1,
|
|
25022
25071
|
},
|
|
25023
25072
|
variables: {},
|
|
25024
25073
|
});
|
|
@@ -25055,18 +25104,28 @@ const buildLayoutModeCacheSnapshot = (apiName, recordTypeId, layoutType, mode) =
|
|
|
25055
25104
|
* These are intermediate lookups to check if the record is in the L2 cache
|
|
25056
25105
|
* @param {Luvio} luvio
|
|
25057
25106
|
* @param {GetRecordLayoutTypeConfig} config
|
|
25058
|
-
* @param {BuildCachedSnapshot<BuildSnapshotContext} cachedSnapshot
|
|
25107
|
+
* @param {BuildCachedSnapshot<BuildSnapshotContext>} cachedSnapshot
|
|
25059
25108
|
*/
|
|
25060
25109
|
function makeCacheOnlySnapshot(luvio, config, adapterContext, cachedSnapshot) {
|
|
25061
|
-
return luvio.applyCachePolicy(
|
|
25062
|
-
|
|
25063
|
-
|
|
25064
|
-
|
|
25065
|
-
},
|
|
25066
|
-
}, { config, luvio, adapterContext }, cachedSnapshot,
|
|
25067
|
-
// this won't be invoked since we're requesting only-if-cached
|
|
25110
|
+
return luvio.applyCachePolicy(
|
|
25111
|
+
// Pass empty context so environment will use its default cache-policy
|
|
25112
|
+
{}, { config, luvio, adapterContext }, cachedSnapshot,
|
|
25113
|
+
// disallow hitting the network by returning a gateway timeout
|
|
25068
25114
|
() => {
|
|
25069
|
-
|
|
25115
|
+
return new Promise((resolve) => {
|
|
25116
|
+
resolve({
|
|
25117
|
+
state: 'Error',
|
|
25118
|
+
data: undefined,
|
|
25119
|
+
error: {
|
|
25120
|
+
body: undefined,
|
|
25121
|
+
headers: {},
|
|
25122
|
+
ok: false,
|
|
25123
|
+
status: 504,
|
|
25124
|
+
statusText: 'Gateway Timeout',
|
|
25125
|
+
errorType: 'fetchResponse',
|
|
25126
|
+
},
|
|
25127
|
+
});
|
|
25128
|
+
});
|
|
25070
25129
|
});
|
|
25071
25130
|
}
|
|
25072
25131
|
/**
|
|
@@ -25352,7 +25411,7 @@ const notifyUpdateAvailableFactory$1 = (luvio) => {
|
|
|
25352
25411
|
};
|
|
25353
25412
|
};
|
|
25354
25413
|
|
|
25355
|
-
const VERSION$
|
|
25414
|
+
const VERSION$10$1 = "7e00c51105cbf56a79ab8fcddf462c1e";
|
|
25356
25415
|
const RepresentationType$F = 'QuickActionExecutionRepresentation';
|
|
25357
25416
|
function keyBuilder$1D(luvio, config) {
|
|
25358
25417
|
return keyPrefix$1 + '::' + RepresentationType$F + ':' + config.id;
|
|
@@ -25366,10 +25425,10 @@ function keyBuilderFromType$q(luvio, object) {
|
|
|
25366
25425
|
function normalize$z(input, existing, path, luvio, store, timestamp) {
|
|
25367
25426
|
return input;
|
|
25368
25427
|
}
|
|
25369
|
-
const select$
|
|
25428
|
+
const select$1x = function QuickActionExecutionRepresentationSelect() {
|
|
25370
25429
|
return {
|
|
25371
25430
|
kind: 'Fragment',
|
|
25372
|
-
version: VERSION$
|
|
25431
|
+
version: VERSION$10$1,
|
|
25373
25432
|
private: [
|
|
25374
25433
|
'eTag'
|
|
25375
25434
|
],
|
|
@@ -25401,7 +25460,7 @@ const select$1v = function QuickActionExecutionRepresentationSelect() {
|
|
|
25401
25460
|
]
|
|
25402
25461
|
};
|
|
25403
25462
|
};
|
|
25404
|
-
function equals$
|
|
25463
|
+
function equals$P(existing, incoming) {
|
|
25405
25464
|
const existing_isCreated = existing.isCreated;
|
|
25406
25465
|
const incoming_isCreated = incoming.isCreated;
|
|
25407
25466
|
if (!(existing_isCreated === incoming_isCreated)) {
|
|
@@ -25442,7 +25501,7 @@ function equals$N(existing, incoming) {
|
|
|
25442
25501
|
const ingest$z$1 = function QuickActionExecutionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
25443
25502
|
const key = keyBuilderFromType$q(luvio, input);
|
|
25444
25503
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
25445
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$z, "UiApi", VERSION$
|
|
25504
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$z, "UiApi", VERSION$10$1, RepresentationType$F, equals$P);
|
|
25446
25505
|
return createLink$3(key);
|
|
25447
25506
|
};
|
|
25448
25507
|
function getTypeCacheKeys$G$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -25456,7 +25515,7 @@ function getTypeCacheKeys$G$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
25456
25515
|
}
|
|
25457
25516
|
|
|
25458
25517
|
const TTL$q = 900000;
|
|
25459
|
-
const VERSION
|
|
25518
|
+
const VERSION$$$1 = "993b0a7bce6056c4f57ed300ec153d9c";
|
|
25460
25519
|
const RepresentationType$E = 'QuickActionDefaultsRepresentation';
|
|
25461
25520
|
function keyBuilder$1C(luvio, config) {
|
|
25462
25521
|
return keyPrefix$1 + '::' + RepresentationType$E + ':' + config.actionApiName;
|
|
@@ -25496,11 +25555,11 @@ const dynamicSelect$5 = function dynamicQuickActionDefaultsRepresentationSelect(
|
|
|
25496
25555
|
name: 'fields',
|
|
25497
25556
|
kind: 'Link',
|
|
25498
25557
|
map: true,
|
|
25499
|
-
fragment: select$
|
|
25558
|
+
fragment: select$1J()
|
|
25500
25559
|
} : params.fields;
|
|
25501
25560
|
return {
|
|
25502
25561
|
kind: 'Fragment',
|
|
25503
|
-
version: VERSION
|
|
25562
|
+
version: VERSION$$$1,
|
|
25504
25563
|
private: [
|
|
25505
25564
|
'eTag'
|
|
25506
25565
|
],
|
|
@@ -25517,7 +25576,7 @@ const dynamicSelect$5 = function dynamicQuickActionDefaultsRepresentationSelect(
|
|
|
25517
25576
|
]
|
|
25518
25577
|
};
|
|
25519
25578
|
};
|
|
25520
|
-
function equals$
|
|
25579
|
+
function equals$O(existing, incoming) {
|
|
25521
25580
|
const existing_actionApiName = existing.actionApiName;
|
|
25522
25581
|
const incoming_actionApiName = incoming.actionApiName;
|
|
25523
25582
|
if (!(existing_actionApiName === incoming_actionApiName)) {
|
|
@@ -25590,7 +25649,7 @@ function coerceFormFactor(form) {
|
|
|
25590
25649
|
return undefined;
|
|
25591
25650
|
}
|
|
25592
25651
|
|
|
25593
|
-
const VERSION$
|
|
25652
|
+
const VERSION$_$1 = "3f49d751896cf66e6e29788d8880e2cc";
|
|
25594
25653
|
const RepresentationType$D = 'PlatformActionRepresentation';
|
|
25595
25654
|
function keyBuilder$1B(luvio, config) {
|
|
25596
25655
|
return keyPrefix$1 + '::' + RepresentationType$D + ':' + config.externalId + ':' + (config.relatedSourceObject === null ? '' : config.relatedSourceObject) + ':' + (config.relatedListRecordId === null ? '' : config.relatedListRecordId);
|
|
@@ -25606,10 +25665,10 @@ function keyBuilderFromType$o(luvio, object) {
|
|
|
25606
25665
|
function normalize$y(input, existing, path, luvio, store, timestamp) {
|
|
25607
25666
|
return input;
|
|
25608
25667
|
}
|
|
25609
|
-
const select$
|
|
25668
|
+
const select$1w = function PlatformActionRepresentationSelect() {
|
|
25610
25669
|
return {
|
|
25611
25670
|
kind: 'Fragment',
|
|
25612
|
-
version: VERSION$
|
|
25671
|
+
version: VERSION$_$1,
|
|
25613
25672
|
private: [
|
|
25614
25673
|
'id'
|
|
25615
25674
|
],
|
|
@@ -25689,7 +25748,7 @@ const select$1u = function PlatformActionRepresentationSelect() {
|
|
|
25689
25748
|
]
|
|
25690
25749
|
};
|
|
25691
25750
|
};
|
|
25692
|
-
function equals$
|
|
25751
|
+
function equals$N(existing, incoming) {
|
|
25693
25752
|
const existing_actionListContext = existing.actionListContext;
|
|
25694
25753
|
const incoming_actionListContext = incoming.actionListContext;
|
|
25695
25754
|
if (!(existing_actionListContext === incoming_actionListContext)) {
|
|
@@ -25790,7 +25849,7 @@ function equals$L(existing, incoming) {
|
|
|
25790
25849
|
const ingest$y$1 = function PlatformActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
25791
25850
|
const key = keyBuilderFromType$o(luvio, input);
|
|
25792
25851
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
25793
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$y, "UiApi", VERSION$
|
|
25852
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$y, "UiApi", VERSION$_$1, RepresentationType$D, equals$N);
|
|
25794
25853
|
return createLink$3(key);
|
|
25795
25854
|
};
|
|
25796
25855
|
function getTypeCacheKeys$E$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -25803,7 +25862,7 @@ function getTypeCacheKeys$E$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
25803
25862
|
});
|
|
25804
25863
|
}
|
|
25805
25864
|
|
|
25806
|
-
const VERSION$
|
|
25865
|
+
const VERSION$Z$1 = "378d506f563a4bd724b322d440df33d1";
|
|
25807
25866
|
const RepresentationType$C = 'EntityActionRepresentation';
|
|
25808
25867
|
function keyBuilder$1A(luvio, config) {
|
|
25809
25868
|
return keyPrefix$1 + '::' + RepresentationType$C + ':' + config.url;
|
|
@@ -25833,10 +25892,10 @@ function normalize$x(input, existing, path, luvio, store, timestamp) {
|
|
|
25833
25892
|
}
|
|
25834
25893
|
return input;
|
|
25835
25894
|
}
|
|
25836
|
-
const select$
|
|
25895
|
+
const select$1v = function EntityActionRepresentationSelect() {
|
|
25837
25896
|
return {
|
|
25838
25897
|
kind: 'Fragment',
|
|
25839
|
-
version: VERSION$
|
|
25898
|
+
version: VERSION$Z$1,
|
|
25840
25899
|
private: [
|
|
25841
25900
|
'links',
|
|
25842
25901
|
'url'
|
|
@@ -25846,12 +25905,12 @@ const select$1t = function EntityActionRepresentationSelect() {
|
|
|
25846
25905
|
name: 'actions',
|
|
25847
25906
|
kind: 'Link',
|
|
25848
25907
|
plural: true,
|
|
25849
|
-
fragment: select$
|
|
25908
|
+
fragment: select$1w()
|
|
25850
25909
|
}
|
|
25851
25910
|
]
|
|
25852
25911
|
};
|
|
25853
25912
|
};
|
|
25854
|
-
function equals$
|
|
25913
|
+
function equals$M(existing, incoming) {
|
|
25855
25914
|
const existing_url = existing.url;
|
|
25856
25915
|
const incoming_url = incoming.url;
|
|
25857
25916
|
if (!(existing_url === incoming_url)) {
|
|
@@ -25882,7 +25941,7 @@ function equals$K(existing, incoming) {
|
|
|
25882
25941
|
const ingest$x$1 = function EntityActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
25883
25942
|
const key = keyBuilderFromType$n(luvio, input);
|
|
25884
25943
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
25885
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$x, "UiApi", VERSION$
|
|
25944
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$x, "UiApi", VERSION$Z$1, RepresentationType$C, equals$M);
|
|
25886
25945
|
return createLink$3(key);
|
|
25887
25946
|
};
|
|
25888
25947
|
function getTypeCacheKeys$D$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -25900,7 +25959,7 @@ function getTypeCacheKeys$D$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
25900
25959
|
}
|
|
25901
25960
|
|
|
25902
25961
|
const TTL$p = 300000;
|
|
25903
|
-
const VERSION$
|
|
25962
|
+
const VERSION$Y$1 = "e485d96c1402a9ca2f56e56485af0216";
|
|
25904
25963
|
const RepresentationType$B = 'ActionRepresentation';
|
|
25905
25964
|
function normalize$w(input, existing, path, luvio, store, timestamp) {
|
|
25906
25965
|
const input_actions = input.actions;
|
|
@@ -25924,10 +25983,10 @@ function normalize$w(input, existing, path, luvio, store, timestamp) {
|
|
|
25924
25983
|
}
|
|
25925
25984
|
return input;
|
|
25926
25985
|
}
|
|
25927
|
-
const select$
|
|
25986
|
+
const select$1u = function ActionRepresentationSelect() {
|
|
25928
25987
|
return {
|
|
25929
25988
|
kind: 'Fragment',
|
|
25930
|
-
version: VERSION$
|
|
25989
|
+
version: VERSION$Y$1,
|
|
25931
25990
|
private: [
|
|
25932
25991
|
'eTag',
|
|
25933
25992
|
'url'
|
|
@@ -25937,12 +25996,12 @@ const select$1s = function ActionRepresentationSelect() {
|
|
|
25937
25996
|
name: 'actions',
|
|
25938
25997
|
kind: 'Link',
|
|
25939
25998
|
map: true,
|
|
25940
|
-
fragment: select$
|
|
25999
|
+
fragment: select$1v()
|
|
25941
26000
|
}
|
|
25942
26001
|
]
|
|
25943
26002
|
};
|
|
25944
26003
|
};
|
|
25945
|
-
function equals$
|
|
26004
|
+
function equals$L(existing, incoming) {
|
|
25946
26005
|
const existing_eTag = existing.eTag;
|
|
25947
26006
|
const incoming_eTag = incoming.eTag;
|
|
25948
26007
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -25968,7 +26027,7 @@ function equals$J(existing, incoming) {
|
|
|
25968
26027
|
const ingest$w$1 = function ActionRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
25969
26028
|
const key = path.fullPath;
|
|
25970
26029
|
const ttlToUse = TTL$p;
|
|
25971
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$w, "UiApi", VERSION$
|
|
26030
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$w, "UiApi", VERSION$Y$1, RepresentationType$B, equals$L);
|
|
25972
26031
|
return createLink$3(key);
|
|
25973
26032
|
};
|
|
25974
26033
|
function getTypeCacheKeys$C$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -25988,8 +26047,8 @@ function getTypeCacheKeys$C$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
25988
26047
|
}
|
|
25989
26048
|
}
|
|
25990
26049
|
|
|
25991
|
-
function select$
|
|
25992
|
-
return select$
|
|
26050
|
+
function select$1t(luvio, params) {
|
|
26051
|
+
return select$1u();
|
|
25993
26052
|
}
|
|
25994
26053
|
function keyBuilder$1z(luvio, params) {
|
|
25995
26054
|
return keyPrefix$1 + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'apiNames:' + params.queryParams.apiNames + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'retrievalMode:' + params.queryParams.retrievalMode + ',' + 'sections:' + params.queryParams.sections + ')';
|
|
@@ -26003,7 +26062,7 @@ function ingestSuccess$G(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
26003
26062
|
luvio.storeIngest(key, ingest$w$1, body);
|
|
26004
26063
|
const snapshot = luvio.storeLookup({
|
|
26005
26064
|
recordId: key,
|
|
26006
|
-
node: select$
|
|
26065
|
+
node: select$1t(),
|
|
26007
26066
|
variables: {},
|
|
26008
26067
|
}, snapshotRefresh);
|
|
26009
26068
|
deepFreeze(snapshot.data);
|
|
@@ -26015,7 +26074,7 @@ function ingestError$C(luvio, params, error, snapshotRefresh) {
|
|
|
26015
26074
|
const storeMetadataParams = {
|
|
26016
26075
|
ttl: TTL$p,
|
|
26017
26076
|
namespace: keyPrefix$1,
|
|
26018
|
-
version: VERSION$
|
|
26077
|
+
version: VERSION$Y$1,
|
|
26019
26078
|
representationName: RepresentationType$B
|
|
26020
26079
|
};
|
|
26021
26080
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -26067,7 +26126,7 @@ function validateAdapterConfig$W(untrustedConfig, configPropertyNames) {
|
|
|
26067
26126
|
}
|
|
26068
26127
|
function adapterFragment$B(luvio, config) {
|
|
26069
26128
|
createResourceParams$P(config);
|
|
26070
|
-
return select$
|
|
26129
|
+
return select$1t();
|
|
26071
26130
|
}
|
|
26072
26131
|
function onFetchResponseSuccess$E(luvio, config, resourceParams, response) {
|
|
26073
26132
|
const snapshot = ingestSuccess$G(luvio, resourceParams, response, {
|
|
@@ -26124,7 +26183,7 @@ const getGlobalActionsAdapterFactory = (luvio) => function UiApi__getGlobalActio
|
|
|
26124
26183
|
};
|
|
26125
26184
|
|
|
26126
26185
|
const TTL$o = 900000;
|
|
26127
|
-
const VERSION$
|
|
26186
|
+
const VERSION$X$1 = "35f3eec8ce7f6001c6d5d17821b75bb9";
|
|
26128
26187
|
const RepresentationType$A = 'QuickActionLayoutRepresentation';
|
|
26129
26188
|
function keyBuilder$1x(luvio, config) {
|
|
26130
26189
|
return keyPrefix$1 + '::' + RepresentationType$A + ':' + config.actionApiName;
|
|
@@ -26138,10 +26197,10 @@ function keyBuilderFromType$m(luvio, object) {
|
|
|
26138
26197
|
function normalize$v(input, existing, path, luvio, store, timestamp) {
|
|
26139
26198
|
return input;
|
|
26140
26199
|
}
|
|
26141
|
-
const select$
|
|
26200
|
+
const select$1s = function QuickActionLayoutRepresentationSelect() {
|
|
26142
26201
|
return {
|
|
26143
26202
|
kind: 'Fragment',
|
|
26144
|
-
version: VERSION$
|
|
26203
|
+
version: VERSION$X$1,
|
|
26145
26204
|
private: [
|
|
26146
26205
|
'eTag'
|
|
26147
26206
|
],
|
|
@@ -26158,7 +26217,7 @@ const select$1q = function QuickActionLayoutRepresentationSelect() {
|
|
|
26158
26217
|
]
|
|
26159
26218
|
};
|
|
26160
26219
|
};
|
|
26161
|
-
function equals$
|
|
26220
|
+
function equals$K(existing, incoming) {
|
|
26162
26221
|
if (existing.eTag !== incoming.eTag) {
|
|
26163
26222
|
return false;
|
|
26164
26223
|
}
|
|
@@ -26167,7 +26226,7 @@ function equals$I(existing, incoming) {
|
|
|
26167
26226
|
const ingest$v$1 = function QuickActionLayoutRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
26168
26227
|
const key = keyBuilderFromType$m(luvio, input);
|
|
26169
26228
|
const ttlToUse = TTL$o;
|
|
26170
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$v, "UiApi", VERSION$
|
|
26229
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$v, "UiApi", VERSION$X$1, RepresentationType$A, equals$K);
|
|
26171
26230
|
return createLink$3(key);
|
|
26172
26231
|
};
|
|
26173
26232
|
function getTypeCacheKeys$B$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -26180,8 +26239,8 @@ function getTypeCacheKeys$B$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
26180
26239
|
});
|
|
26181
26240
|
}
|
|
26182
26241
|
|
|
26183
|
-
function select$
|
|
26184
|
-
return select$
|
|
26242
|
+
function select$1r(luvio, params) {
|
|
26243
|
+
return select$1s();
|
|
26185
26244
|
}
|
|
26186
26245
|
function keyBuilder$1w(luvio, params) {
|
|
26187
26246
|
return keyBuilder$1x(luvio, {
|
|
@@ -26197,7 +26256,7 @@ function ingestSuccess$F(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
26197
26256
|
luvio.storeIngest(key, ingest$v$1, body);
|
|
26198
26257
|
const snapshot = luvio.storeLookup({
|
|
26199
26258
|
recordId: key,
|
|
26200
|
-
node: select$
|
|
26259
|
+
node: select$1r(),
|
|
26201
26260
|
variables: {},
|
|
26202
26261
|
}, snapshotRefresh);
|
|
26203
26262
|
deepFreeze(snapshot.data);
|
|
@@ -26209,7 +26268,7 @@ function ingestError$B(luvio, params, error, snapshotRefresh) {
|
|
|
26209
26268
|
const storeMetadataParams = {
|
|
26210
26269
|
ttl: TTL$o,
|
|
26211
26270
|
namespace: keyPrefix$1,
|
|
26212
|
-
version: VERSION$
|
|
26271
|
+
version: VERSION$X$1,
|
|
26213
26272
|
representationName: RepresentationType$A
|
|
26214
26273
|
};
|
|
26215
26274
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -26256,7 +26315,7 @@ function validateAdapterConfig$V(untrustedConfig, configPropertyNames) {
|
|
|
26256
26315
|
}
|
|
26257
26316
|
function adapterFragment$A(luvio, config) {
|
|
26258
26317
|
createResourceParams$O(config);
|
|
26259
|
-
return select$
|
|
26318
|
+
return select$1r();
|
|
26260
26319
|
}
|
|
26261
26320
|
function onFetchResponseSuccess$D(luvio, config, resourceParams, response) {
|
|
26262
26321
|
const snapshot = ingestSuccess$F(luvio, resourceParams, response, {
|
|
@@ -26344,8 +26403,8 @@ function getSortedObjectApiNamesArray(value) {
|
|
|
26344
26403
|
return unsortedArray === undefined ? undefined : unsortedArray.sort();
|
|
26345
26404
|
}
|
|
26346
26405
|
|
|
26347
|
-
function select$
|
|
26348
|
-
return select$
|
|
26406
|
+
function select$1q(luvio, params) {
|
|
26407
|
+
return select$1u();
|
|
26349
26408
|
}
|
|
26350
26409
|
function keyBuilder$1u(luvio, params) {
|
|
26351
26410
|
return keyPrefix$1 + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'sections:' + params.queryParams.sections + ',' + 'objectApiNames:' + params.urlParams.objectApiNames + ')';
|
|
@@ -26359,7 +26418,7 @@ function ingestSuccess$E(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
26359
26418
|
luvio.storeIngest(key, ingest$w$1, body);
|
|
26360
26419
|
const snapshot = luvio.storeLookup({
|
|
26361
26420
|
recordId: key,
|
|
26362
|
-
node: select$
|
|
26421
|
+
node: select$1q(),
|
|
26363
26422
|
variables: {},
|
|
26364
26423
|
}, snapshotRefresh);
|
|
26365
26424
|
deepFreeze(snapshot.data);
|
|
@@ -26371,7 +26430,7 @@ function ingestError$A(luvio, params, error, snapshotRefresh) {
|
|
|
26371
26430
|
const storeMetadataParams = {
|
|
26372
26431
|
ttl: TTL$p,
|
|
26373
26432
|
namespace: keyPrefix$1,
|
|
26374
|
-
version: VERSION$
|
|
26433
|
+
version: VERSION$Y$1,
|
|
26375
26434
|
representationName: RepresentationType$B
|
|
26376
26435
|
};
|
|
26377
26436
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -26422,7 +26481,7 @@ function validateAdapterConfig$U(untrustedConfig, configPropertyNames) {
|
|
|
26422
26481
|
}
|
|
26423
26482
|
function adapterFragment$z(luvio, config) {
|
|
26424
26483
|
createResourceParams$N(config);
|
|
26425
|
-
return select$
|
|
26484
|
+
return select$1q();
|
|
26426
26485
|
}
|
|
26427
26486
|
function onFetchResponseSuccess$C(luvio, config, resourceParams, response) {
|
|
26428
26487
|
const snapshot = ingestSuccess$E(luvio, resourceParams, response, {
|
|
@@ -26478,8 +26537,8 @@ const getLookupActionsAdapterFactory = (luvio) => function UiApi__getLookupActio
|
|
|
26478
26537
|
buildCachedSnapshotCachePolicy$G, buildNetworkSnapshotCachePolicy$G);
|
|
26479
26538
|
};
|
|
26480
26539
|
|
|
26481
|
-
function select$
|
|
26482
|
-
return select$
|
|
26540
|
+
function select$1p(luvio, params) {
|
|
26541
|
+
return select$1u();
|
|
26483
26542
|
}
|
|
26484
26543
|
function keyBuilder$1s(luvio, params) {
|
|
26485
26544
|
return keyPrefix$1 + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'sections:' + params.queryParams.sections + ',' + 'objectApiName:' + params.urlParams.objectApiName + ')';
|
|
@@ -26493,7 +26552,7 @@ function ingestSuccess$D(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
26493
26552
|
luvio.storeIngest(key, ingest$w$1, body);
|
|
26494
26553
|
const snapshot = luvio.storeLookup({
|
|
26495
26554
|
recordId: key,
|
|
26496
|
-
node: select$
|
|
26555
|
+
node: select$1p(),
|
|
26497
26556
|
variables: {},
|
|
26498
26557
|
}, snapshotRefresh);
|
|
26499
26558
|
deepFreeze(snapshot.data);
|
|
@@ -26505,7 +26564,7 @@ function ingestError$z(luvio, params, error, snapshotRefresh) {
|
|
|
26505
26564
|
const storeMetadataParams = {
|
|
26506
26565
|
ttl: TTL$p,
|
|
26507
26566
|
namespace: keyPrefix$1,
|
|
26508
|
-
version: VERSION$
|
|
26567
|
+
version: VERSION$Y$1,
|
|
26509
26568
|
representationName: RepresentationType$B
|
|
26510
26569
|
};
|
|
26511
26570
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -26556,7 +26615,7 @@ function validateAdapterConfig$T(untrustedConfig, configPropertyNames) {
|
|
|
26556
26615
|
}
|
|
26557
26616
|
function adapterFragment$y(luvio, config) {
|
|
26558
26617
|
createResourceParams$M(config);
|
|
26559
|
-
return select$
|
|
26618
|
+
return select$1p();
|
|
26560
26619
|
}
|
|
26561
26620
|
function onFetchResponseSuccess$B(luvio, config, resourceParams, response) {
|
|
26562
26621
|
const snapshot = ingestSuccess$D(luvio, resourceParams, response, {
|
|
@@ -26612,20 +26671,20 @@ const getObjectCreateActionsAdapterFactory = (luvio) => function UiApi__getObjec
|
|
|
26612
26671
|
buildCachedSnapshotCachePolicy$F, buildNetworkSnapshotCachePolicy$F);
|
|
26613
26672
|
};
|
|
26614
26673
|
|
|
26615
|
-
const VERSION$
|
|
26674
|
+
const VERSION$W$1 = "fecd80e9e24a1c1e75fd5395cd34ff2e";
|
|
26616
26675
|
const RepresentationType$z = 'ActionOverrideRepresentation';
|
|
26617
26676
|
function normalize$u(input, existing, path, luvio, store, timestamp) {
|
|
26618
26677
|
return input;
|
|
26619
26678
|
}
|
|
26620
|
-
const select$
|
|
26679
|
+
const select$1o = function ActionOverrideRepresentationSelect() {
|
|
26621
26680
|
return {
|
|
26622
26681
|
kind: 'Fragment',
|
|
26623
|
-
version: VERSION$
|
|
26682
|
+
version: VERSION$W$1,
|
|
26624
26683
|
private: [],
|
|
26625
26684
|
opaque: true
|
|
26626
26685
|
};
|
|
26627
26686
|
};
|
|
26628
|
-
function equals$
|
|
26687
|
+
function equals$J(existing, incoming) {
|
|
26629
26688
|
if (JSONStringify$2(incoming) !== JSONStringify$2(existing)) {
|
|
26630
26689
|
return false;
|
|
26631
26690
|
}
|
|
@@ -26634,7 +26693,7 @@ function equals$H(existing, incoming) {
|
|
|
26634
26693
|
const ingest$u$1 = function ActionOverrideRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
26635
26694
|
const key = path.fullPath;
|
|
26636
26695
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
26637
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$u, "UiApi", VERSION$
|
|
26696
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$u, "UiApi", VERSION$W$1, RepresentationType$z, equals$J);
|
|
26638
26697
|
return createLink$3(key);
|
|
26639
26698
|
};
|
|
26640
26699
|
function getTypeCacheKeys$A$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -26647,8 +26706,8 @@ function getTypeCacheKeys$A$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
26647
26706
|
});
|
|
26648
26707
|
}
|
|
26649
26708
|
|
|
26650
|
-
function select$
|
|
26651
|
-
return select$
|
|
26709
|
+
function select$1n(luvio, params) {
|
|
26710
|
+
return select$1o();
|
|
26652
26711
|
}
|
|
26653
26712
|
function keyBuilder$1q(luvio, params) {
|
|
26654
26713
|
return keyPrefix$1 + '::ActionOverrideRepresentation:(' + 'type:' + params.queryParams.type + ',' + 'objectApiName:' + params.urlParams.objectApiName + ')';
|
|
@@ -26662,7 +26721,7 @@ function ingestSuccess$C(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
26662
26721
|
luvio.storeIngest(key, ingest$u$1, body);
|
|
26663
26722
|
const snapshot = luvio.storeLookup({
|
|
26664
26723
|
recordId: key,
|
|
26665
|
-
node: select$
|
|
26724
|
+
node: select$1n(),
|
|
26666
26725
|
variables: {},
|
|
26667
26726
|
}, snapshotRefresh);
|
|
26668
26727
|
deepFreeze(snapshot.data);
|
|
@@ -26717,7 +26776,7 @@ function validateAdapterConfig$S(untrustedConfig, configPropertyNames) {
|
|
|
26717
26776
|
}
|
|
26718
26777
|
function adapterFragment$x(luvio, config) {
|
|
26719
26778
|
createResourceParams$L(config);
|
|
26720
|
-
return select$
|
|
26779
|
+
return select$1n();
|
|
26721
26780
|
}
|
|
26722
26781
|
function onFetchResponseSuccess$A(luvio, config, resourceParams, response) {
|
|
26723
26782
|
const snapshot = ingestSuccess$C(luvio, resourceParams, response, {
|
|
@@ -26777,7 +26836,7 @@ const QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS = {
|
|
|
26777
26836
|
ttl: TTL$q,
|
|
26778
26837
|
namespace: keyPrefix$1,
|
|
26779
26838
|
representationName: RepresentationType$E,
|
|
26780
|
-
version: VERSION
|
|
26839
|
+
version: VERSION$$$1,
|
|
26781
26840
|
};
|
|
26782
26841
|
function merge$1(existing, incoming) {
|
|
26783
26842
|
if (existing === undefined) {
|
|
@@ -26802,7 +26861,7 @@ const dynamicIngest$4 = (ingestParams) => {
|
|
|
26802
26861
|
propertyName: path.propertyName,
|
|
26803
26862
|
}, luvio, store, timestamp);
|
|
26804
26863
|
incomingRecord = merge$1(existingRecord, incomingRecord);
|
|
26805
|
-
if (existingRecord === undefined || equals$
|
|
26864
|
+
if (existingRecord === undefined || equals$O(existingRecord, incomingRecord) === false) {
|
|
26806
26865
|
luvio.storePublish(key, incomingRecord);
|
|
26807
26866
|
}
|
|
26808
26867
|
luvio.publishStoreMetadata(key, QUICK_ACTION_DEFAULTS_STORE_METADATA_PARAMS);
|
|
@@ -26867,7 +26926,7 @@ function ingestError$x(luvio, params, error, snapshotRefresh) {
|
|
|
26867
26926
|
const storeMetadataParams = {
|
|
26868
26927
|
ttl: TTL$q,
|
|
26869
26928
|
namespace: keyPrefix$1,
|
|
26870
|
-
version: VERSION
|
|
26929
|
+
version: VERSION$$$1,
|
|
26871
26930
|
representationName: RepresentationType$E
|
|
26872
26931
|
};
|
|
26873
26932
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -26996,8 +27055,8 @@ const getQuickActionDefaultsAdapterFactory = (luvio) => function UiApi__getQuick
|
|
|
26996
27055
|
buildCachedSnapshotCachePolicy$D, buildNetworkSnapshotCachePolicy$D);
|
|
26997
27056
|
};
|
|
26998
27057
|
|
|
26999
|
-
function select$
|
|
27000
|
-
return select$
|
|
27058
|
+
function select$1m(luvio, params) {
|
|
27059
|
+
return select$1u();
|
|
27001
27060
|
}
|
|
27002
27061
|
function keyBuilder$1m(luvio, params) {
|
|
27003
27062
|
return keyPrefix$1 + '::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 + ')';
|
|
@@ -27011,7 +27070,7 @@ function ingestSuccess$B(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
27011
27070
|
luvio.storeIngest(key, ingest$w$1, body);
|
|
27012
27071
|
const snapshot = luvio.storeLookup({
|
|
27013
27072
|
recordId: key,
|
|
27014
|
-
node: select$
|
|
27073
|
+
node: select$1m(),
|
|
27015
27074
|
variables: {},
|
|
27016
27075
|
}, snapshotRefresh);
|
|
27017
27076
|
deepFreeze(snapshot.data);
|
|
@@ -27023,7 +27082,7 @@ function ingestError$w(luvio, params, error, snapshotRefresh) {
|
|
|
27023
27082
|
const storeMetadataParams = {
|
|
27024
27083
|
ttl: TTL$p,
|
|
27025
27084
|
namespace: keyPrefix$1,
|
|
27026
|
-
version: VERSION$
|
|
27085
|
+
version: VERSION$Y$1,
|
|
27027
27086
|
representationName: RepresentationType$B
|
|
27028
27087
|
};
|
|
27029
27088
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -27080,7 +27139,7 @@ function validateAdapterConfig$Q(untrustedConfig, configPropertyNames) {
|
|
|
27080
27139
|
}
|
|
27081
27140
|
function adapterFragment$v(luvio, config) {
|
|
27082
27141
|
createResourceParams$J(config);
|
|
27083
|
-
return select$
|
|
27142
|
+
return select$1m();
|
|
27084
27143
|
}
|
|
27085
27144
|
function onFetchResponseSuccess$z(luvio, config, resourceParams, response) {
|
|
27086
27145
|
const snapshot = ingestSuccess$B(luvio, resourceParams, response, {
|
|
@@ -27136,8 +27195,8 @@ const getRecordActionsAdapterFactory = (luvio) => function UiApi__getRecordActio
|
|
|
27136
27195
|
buildCachedSnapshotCachePolicy$C, buildNetworkSnapshotCachePolicy$C);
|
|
27137
27196
|
};
|
|
27138
27197
|
|
|
27139
|
-
function select$
|
|
27140
|
-
return select$
|
|
27198
|
+
function select$1l(luvio, params) {
|
|
27199
|
+
return select$1u();
|
|
27141
27200
|
}
|
|
27142
27201
|
function keyBuilder$1k(luvio, params) {
|
|
27143
27202
|
return keyPrefix$1 + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'sections:' + params.queryParams.sections + ',' + 'recordIds:' + params.urlParams.recordIds + ')';
|
|
@@ -27151,7 +27210,7 @@ function ingestSuccess$A(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
27151
27210
|
luvio.storeIngest(key, ingest$w$1, body);
|
|
27152
27211
|
const snapshot = luvio.storeLookup({
|
|
27153
27212
|
recordId: key,
|
|
27154
|
-
node: select$
|
|
27213
|
+
node: select$1l(),
|
|
27155
27214
|
variables: {},
|
|
27156
27215
|
}, snapshotRefresh);
|
|
27157
27216
|
deepFreeze(snapshot.data);
|
|
@@ -27163,7 +27222,7 @@ function ingestError$v(luvio, params, error, snapshotRefresh) {
|
|
|
27163
27222
|
const storeMetadataParams = {
|
|
27164
27223
|
ttl: TTL$p,
|
|
27165
27224
|
namespace: keyPrefix$1,
|
|
27166
|
-
version: VERSION$
|
|
27225
|
+
version: VERSION$Y$1,
|
|
27167
27226
|
representationName: RepresentationType$B
|
|
27168
27227
|
};
|
|
27169
27228
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -27214,7 +27273,7 @@ function validateAdapterConfig$P(untrustedConfig, configPropertyNames) {
|
|
|
27214
27273
|
}
|
|
27215
27274
|
function adapterFragment$u(luvio, config) {
|
|
27216
27275
|
createResourceParams$I(config);
|
|
27217
|
-
return select$
|
|
27276
|
+
return select$1l();
|
|
27218
27277
|
}
|
|
27219
27278
|
function onFetchResponseSuccess$y(luvio, config, resourceParams, response) {
|
|
27220
27279
|
const snapshot = ingestSuccess$A(luvio, resourceParams, response, {
|
|
@@ -27270,7 +27329,7 @@ const getRecordEditActionsAdapterFactory = (luvio) => function UiApi__getRecordE
|
|
|
27270
27329
|
buildCachedSnapshotCachePolicy$B, buildNetworkSnapshotCachePolicy$B);
|
|
27271
27330
|
};
|
|
27272
27331
|
|
|
27273
|
-
function validate$
|
|
27332
|
+
function validate$17(obj, path = 'ActionRelatedListSingleBatchInputRepresentation') {
|
|
27274
27333
|
const v_error = (() => {
|
|
27275
27334
|
if (typeof obj !== 'object' || ArrayIsArray$2(obj) || obj === null) {
|
|
27276
27335
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -27340,8 +27399,8 @@ function validate$15(obj, path = 'ActionRelatedListSingleBatchInputRepresentatio
|
|
|
27340
27399
|
return v_error === undefined ? null : v_error;
|
|
27341
27400
|
}
|
|
27342
27401
|
|
|
27343
|
-
function select$
|
|
27344
|
-
return select$
|
|
27402
|
+
function select$1k(luvio, params) {
|
|
27403
|
+
return select$1u();
|
|
27345
27404
|
}
|
|
27346
27405
|
function keyBuilder$1i(luvio, params) {
|
|
27347
27406
|
return keyPrefix$1 + '::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) + ')';
|
|
@@ -27355,7 +27414,7 @@ function ingestSuccess$z(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
27355
27414
|
luvio.storeIngest(key, ingest$w$1, body);
|
|
27356
27415
|
const snapshot = luvio.storeLookup({
|
|
27357
27416
|
recordId: key,
|
|
27358
|
-
node: select$
|
|
27417
|
+
node: select$1k(),
|
|
27359
27418
|
variables: {},
|
|
27360
27419
|
}, snapshotRefresh);
|
|
27361
27420
|
deepFreeze(snapshot.data);
|
|
@@ -27367,7 +27426,7 @@ function ingestError$u(luvio, params, error, snapshotRefresh) {
|
|
|
27367
27426
|
const storeMetadataParams = {
|
|
27368
27427
|
ttl: TTL$p,
|
|
27369
27428
|
namespace: keyPrefix$1,
|
|
27370
|
-
version: VERSION$
|
|
27429
|
+
version: VERSION$Y$1,
|
|
27371
27430
|
representationName: RepresentationType$B
|
|
27372
27431
|
};
|
|
27373
27432
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -27448,7 +27507,7 @@ function selectChildResourceParams$6(luvio, childResources, resourceParams) {
|
|
|
27448
27507
|
reader.enterPath(envelopeBodyPath);
|
|
27449
27508
|
const childResource = childResources[i];
|
|
27450
27509
|
const childKey = keyBuilder$1i(luvio, childResource);
|
|
27451
|
-
const childFragment = select$
|
|
27510
|
+
const childFragment = select$1k();
|
|
27452
27511
|
const isMissingDataBeforeChildRead = reader.getIsDataMissing();
|
|
27453
27512
|
const childSnapshot = reader.read({
|
|
27454
27513
|
recordId: childKey,
|
|
@@ -27528,7 +27587,7 @@ function selectChildResourceParams$6(luvio, childResources, resourceParams) {
|
|
|
27528
27587
|
}
|
|
27529
27588
|
};
|
|
27530
27589
|
}
|
|
27531
|
-
function select$
|
|
27590
|
+
function select$1j(luvio, resourceParams) {
|
|
27532
27591
|
const childResources = createChildResourceParams$8(resourceParams);
|
|
27533
27592
|
return selectChildResourceParams$6(luvio, childResources, resourceParams);
|
|
27534
27593
|
}
|
|
@@ -27632,7 +27691,7 @@ function ingestSuccess$y(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
27632
27691
|
seenRecords: seenRecords,
|
|
27633
27692
|
select: {
|
|
27634
27693
|
recordId: key,
|
|
27635
|
-
node: select$
|
|
27694
|
+
node: select$1j(luvio, resourceParams),
|
|
27636
27695
|
variables: {},
|
|
27637
27696
|
},
|
|
27638
27697
|
refresh: snapshotRefresh,
|
|
@@ -27681,7 +27740,7 @@ function typeCheckConfig$M(untrustedConfig) {
|
|
|
27681
27740
|
const untrustedConfig_relatedListsActionParameters_array = [];
|
|
27682
27741
|
for (let i = 0, arrayLength = untrustedConfig_relatedListsActionParameters.length; i < arrayLength; i++) {
|
|
27683
27742
|
const untrustedConfig_relatedListsActionParameters_item = untrustedConfig_relatedListsActionParameters[i];
|
|
27684
|
-
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$
|
|
27743
|
+
const referenceActionRelatedListSingleBatchInputRepresentationValidationError = validate$17(untrustedConfig_relatedListsActionParameters_item);
|
|
27685
27744
|
if (referenceActionRelatedListSingleBatchInputRepresentationValidationError === null) {
|
|
27686
27745
|
untrustedConfig_relatedListsActionParameters_array.push(untrustedConfig_relatedListsActionParameters_item);
|
|
27687
27746
|
}
|
|
@@ -27703,7 +27762,7 @@ function validateAdapterConfig$O(untrustedConfig, configPropertyNames) {
|
|
|
27703
27762
|
}
|
|
27704
27763
|
function adapterFragment$t(luvio, config) {
|
|
27705
27764
|
const resourceParams = createResourceParams$H(config);
|
|
27706
|
-
return select$
|
|
27765
|
+
return select$1j(luvio, resourceParams);
|
|
27707
27766
|
}
|
|
27708
27767
|
function onFetchResponseSuccess$x(luvio, config, resourceParams, response) {
|
|
27709
27768
|
const snapshot = ingestSuccess$y(luvio, resourceParams, response, {
|
|
@@ -27793,7 +27852,7 @@ function validateAdapterConfig$N(untrustedConfig, configPropertyNames) {
|
|
|
27793
27852
|
}
|
|
27794
27853
|
function adapterFragment$s(luvio, config) {
|
|
27795
27854
|
createResourceParams$G(config);
|
|
27796
|
-
return select$
|
|
27855
|
+
return select$1k();
|
|
27797
27856
|
}
|
|
27798
27857
|
function onFetchResponseSuccess$w(luvio, config, resourceParams, response) {
|
|
27799
27858
|
const snapshot = ingestSuccess$z(luvio, resourceParams, response, {
|
|
@@ -27849,8 +27908,8 @@ const getRelatedListActionsAdapterFactory = (luvio) => function UiApi__getRelate
|
|
|
27849
27908
|
buildCachedSnapshotCachePolicy$z, buildNetworkSnapshotCachePolicy$z);
|
|
27850
27909
|
};
|
|
27851
27910
|
|
|
27852
|
-
function select$
|
|
27853
|
-
return select$
|
|
27911
|
+
function select$1i(luvio, params) {
|
|
27912
|
+
return select$1u();
|
|
27854
27913
|
}
|
|
27855
27914
|
function keyBuilder$1e(luvio, params) {
|
|
27856
27915
|
return keyPrefix$1 + '::ActionRepresentation:(' + 'actionTypes:' + params.queryParams.actionTypes + ',' + 'formFactor:' + params.queryParams.formFactor + ',' + 'sections:' + params.queryParams.sections + ',' + 'recordIds:' + params.urlParams.recordIds + ',' + 'relatedListRecordIds:' + params.urlParams.relatedListRecordIds + ')';
|
|
@@ -27864,7 +27923,7 @@ function ingestSuccess$x(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
27864
27923
|
luvio.storeIngest(key, ingest$w$1, body);
|
|
27865
27924
|
const snapshot = luvio.storeLookup({
|
|
27866
27925
|
recordId: key,
|
|
27867
|
-
node: select$
|
|
27926
|
+
node: select$1i(),
|
|
27868
27927
|
variables: {},
|
|
27869
27928
|
}, snapshotRefresh);
|
|
27870
27929
|
deepFreeze(snapshot.data);
|
|
@@ -27876,7 +27935,7 @@ function ingestError$s(luvio, params, error, snapshotRefresh) {
|
|
|
27876
27935
|
const storeMetadataParams = {
|
|
27877
27936
|
ttl: TTL$p,
|
|
27878
27937
|
namespace: keyPrefix$1,
|
|
27879
|
-
version: VERSION$
|
|
27938
|
+
version: VERSION$Y$1,
|
|
27880
27939
|
representationName: RepresentationType$B
|
|
27881
27940
|
};
|
|
27882
27941
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -27928,7 +27987,7 @@ function validateAdapterConfig$M(untrustedConfig, configPropertyNames) {
|
|
|
27928
27987
|
}
|
|
27929
27988
|
function adapterFragment$r(luvio, config) {
|
|
27930
27989
|
createResourceParams$F(config);
|
|
27931
|
-
return select$
|
|
27990
|
+
return select$1i();
|
|
27932
27991
|
}
|
|
27933
27992
|
function onFetchResponseSuccess$v(luvio, config, resourceParams, response) {
|
|
27934
27993
|
const snapshot = ingestSuccess$x(luvio, resourceParams, response, {
|
|
@@ -27984,20 +28043,20 @@ const getRelatedListRecordActionsAdapterFactory = (luvio) => function UiApi__get
|
|
|
27984
28043
|
buildCachedSnapshotCachePolicy$y, buildNetworkSnapshotCachePolicy$y);
|
|
27985
28044
|
};
|
|
27986
28045
|
|
|
27987
|
-
const VERSION$
|
|
28046
|
+
const VERSION$V$1 = "a316b3bba367f54adc67d7552ed7d36d";
|
|
27988
28047
|
const RepresentationType$y = 'PageReferenceRepresentation';
|
|
27989
28048
|
function normalize$t(input, existing, path, luvio, store, timestamp) {
|
|
27990
28049
|
return input;
|
|
27991
28050
|
}
|
|
27992
|
-
const select$
|
|
28051
|
+
const select$1h = function PageReferenceRepresentationSelect() {
|
|
27993
28052
|
return {
|
|
27994
28053
|
kind: 'Fragment',
|
|
27995
|
-
version: VERSION$
|
|
28054
|
+
version: VERSION$V$1,
|
|
27996
28055
|
private: [],
|
|
27997
28056
|
opaque: true
|
|
27998
28057
|
};
|
|
27999
28058
|
};
|
|
28000
|
-
function equals$
|
|
28059
|
+
function equals$I(existing, incoming) {
|
|
28001
28060
|
if (JSONStringify$2(incoming) !== JSONStringify$2(existing)) {
|
|
28002
28061
|
return false;
|
|
28003
28062
|
}
|
|
@@ -28006,7 +28065,7 @@ function equals$G(existing, incoming) {
|
|
|
28006
28065
|
const ingest$t$1 = function PageReferenceRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
28007
28066
|
const key = path.fullPath;
|
|
28008
28067
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
28009
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$t, "UiApi", VERSION$
|
|
28068
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$t, "UiApi", VERSION$V$1, RepresentationType$y, equals$I);
|
|
28010
28069
|
return createLink$3(key);
|
|
28011
28070
|
};
|
|
28012
28071
|
function getTypeCacheKeys$z$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -28020,7 +28079,7 @@ function getTypeCacheKeys$z$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
28020
28079
|
}
|
|
28021
28080
|
|
|
28022
28081
|
const TTL$n = 120000;
|
|
28023
|
-
const VERSION$
|
|
28082
|
+
const VERSION$U$1 = "09884ca5bf90ea4662092a4e48817081";
|
|
28024
28083
|
const RepresentationType$x = 'NavItemRepresentation';
|
|
28025
28084
|
function keyBuilder$1c(luvio, config) {
|
|
28026
28085
|
return keyPrefix$1 + '::' + RepresentationType$x + ':' + config.developerName;
|
|
@@ -28048,10 +28107,10 @@ function normalize$s(input, existing, path, luvio, store, timestamp) {
|
|
|
28048
28107
|
}
|
|
28049
28108
|
return input;
|
|
28050
28109
|
}
|
|
28051
|
-
const select$
|
|
28110
|
+
const select$1g = function NavItemRepresentationSelect() {
|
|
28052
28111
|
return {
|
|
28053
28112
|
kind: 'Fragment',
|
|
28054
|
-
version: VERSION$
|
|
28113
|
+
version: VERSION$U$1,
|
|
28055
28114
|
private: [],
|
|
28056
28115
|
selections: [
|
|
28057
28116
|
{
|
|
@@ -28110,7 +28169,7 @@ const select$1e = function NavItemRepresentationSelect() {
|
|
|
28110
28169
|
name: 'pageReference',
|
|
28111
28170
|
kind: 'Link',
|
|
28112
28171
|
nullable: true,
|
|
28113
|
-
fragment: select$
|
|
28172
|
+
fragment: select$1h()
|
|
28114
28173
|
},
|
|
28115
28174
|
{
|
|
28116
28175
|
name: 'standardType',
|
|
@@ -28119,7 +28178,7 @@ const select$1e = function NavItemRepresentationSelect() {
|
|
|
28119
28178
|
]
|
|
28120
28179
|
};
|
|
28121
28180
|
};
|
|
28122
|
-
function equals$
|
|
28181
|
+
function equals$H(existing, incoming) {
|
|
28123
28182
|
const existing_availableInClassic = existing.availableInClassic;
|
|
28124
28183
|
const incoming_availableInClassic = incoming.availableInClassic;
|
|
28125
28184
|
if (!(existing_availableInClassic === incoming_availableInClassic)) {
|
|
@@ -28205,7 +28264,7 @@ function equals$F(existing, incoming) {
|
|
|
28205
28264
|
const ingest$s$1 = function NavItemRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
28206
28265
|
const key = keyBuilderFromType$l(luvio, input);
|
|
28207
28266
|
const ttlToUse = TTL$n;
|
|
28208
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$s, "UiApi", VERSION$
|
|
28267
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$s, "UiApi", VERSION$U$1, RepresentationType$x, equals$H);
|
|
28209
28268
|
return createLink$3(key);
|
|
28210
28269
|
};
|
|
28211
28270
|
function getTypeCacheKeys$y$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -28222,7 +28281,7 @@ function getTypeCacheKeys$y$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
28222
28281
|
}
|
|
28223
28282
|
|
|
28224
28283
|
const TTL$m = 300000;
|
|
28225
|
-
const VERSION$
|
|
28284
|
+
const VERSION$T$1 = "1781f2d3d4e413cf0c681774d82d02cd";
|
|
28226
28285
|
const RepresentationType$w = 'AppRepresentation';
|
|
28227
28286
|
function keyBuilder$1b(luvio, config) {
|
|
28228
28287
|
return keyPrefix$1 + '::' + RepresentationType$w + ':' + (config.appId === null ? '' : config.appId);
|
|
@@ -28268,10 +28327,10 @@ function normalize$r(input, existing, path, luvio, store, timestamp) {
|
|
|
28268
28327
|
}
|
|
28269
28328
|
return input;
|
|
28270
28329
|
}
|
|
28271
|
-
const select$
|
|
28330
|
+
const select$1f = function AppRepresentationSelect() {
|
|
28272
28331
|
return {
|
|
28273
28332
|
kind: 'Fragment',
|
|
28274
|
-
version: VERSION$
|
|
28333
|
+
version: VERSION$T$1,
|
|
28275
28334
|
private: [
|
|
28276
28335
|
'eTag'
|
|
28277
28336
|
],
|
|
@@ -28329,7 +28388,7 @@ const select$1d$1 = function AppRepresentationSelect() {
|
|
|
28329
28388
|
name: 'navItems',
|
|
28330
28389
|
kind: 'Link',
|
|
28331
28390
|
plural: true,
|
|
28332
|
-
fragment: select$
|
|
28391
|
+
fragment: select$1g()
|
|
28333
28392
|
},
|
|
28334
28393
|
{
|
|
28335
28394
|
name: 'selected',
|
|
@@ -28347,12 +28406,12 @@ const select$1d$1 = function AppRepresentationSelect() {
|
|
|
28347
28406
|
name: 'userNavItems',
|
|
28348
28407
|
kind: 'Link',
|
|
28349
28408
|
plural: true,
|
|
28350
|
-
fragment: select$
|
|
28409
|
+
fragment: select$1g()
|
|
28351
28410
|
}
|
|
28352
28411
|
]
|
|
28353
28412
|
};
|
|
28354
28413
|
};
|
|
28355
|
-
function equals$
|
|
28414
|
+
function equals$G(existing, incoming) {
|
|
28356
28415
|
const existing_isNavAutoTempTabsDisabled = existing.isNavAutoTempTabsDisabled;
|
|
28357
28416
|
const incoming_isNavAutoTempTabsDisabled = incoming.isNavAutoTempTabsDisabled;
|
|
28358
28417
|
if (!(existing_isNavAutoTempTabsDisabled === incoming_isNavAutoTempTabsDisabled)) {
|
|
@@ -28463,7 +28522,7 @@ function equals$E(existing, incoming) {
|
|
|
28463
28522
|
const ingest$r$1 = function AppRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
28464
28523
|
const key = keyBuilderFromType$k(luvio, input);
|
|
28465
28524
|
const ttlToUse = TTL$m;
|
|
28466
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$r, "UiApi", VERSION$
|
|
28525
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$r, "UiApi", VERSION$T$1, RepresentationType$w, equals$G);
|
|
28467
28526
|
return createLink$3(key);
|
|
28468
28527
|
};
|
|
28469
28528
|
function getTypeCacheKeys$x$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -28485,7 +28544,7 @@ function getTypeCacheKeys$x$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
28485
28544
|
}
|
|
28486
28545
|
|
|
28487
28546
|
const TTL$l = 300000;
|
|
28488
|
-
const VERSION$
|
|
28547
|
+
const VERSION$S$1 = "a254babf0b6414315db7808a157fd9fc";
|
|
28489
28548
|
const RepresentationType$v = 'AppsRepresentation';
|
|
28490
28549
|
function normalize$q(input, existing, path, luvio, store, timestamp) {
|
|
28491
28550
|
const input_apps = input.apps;
|
|
@@ -28506,10 +28565,10 @@ function normalize$q(input, existing, path, luvio, store, timestamp) {
|
|
|
28506
28565
|
}
|
|
28507
28566
|
return input;
|
|
28508
28567
|
}
|
|
28509
|
-
const select$
|
|
28568
|
+
const select$1e = function AppsRepresentationSelect() {
|
|
28510
28569
|
return {
|
|
28511
28570
|
kind: 'Fragment',
|
|
28512
|
-
version: VERSION$
|
|
28571
|
+
version: VERSION$S$1,
|
|
28513
28572
|
private: [
|
|
28514
28573
|
'eTag'
|
|
28515
28574
|
],
|
|
@@ -28518,12 +28577,12 @@ const select$1c$1 = function AppsRepresentationSelect() {
|
|
|
28518
28577
|
name: 'apps',
|
|
28519
28578
|
kind: 'Link',
|
|
28520
28579
|
plural: true,
|
|
28521
|
-
fragment: select$
|
|
28580
|
+
fragment: select$1f()
|
|
28522
28581
|
}
|
|
28523
28582
|
]
|
|
28524
28583
|
};
|
|
28525
28584
|
};
|
|
28526
|
-
function equals$
|
|
28585
|
+
function equals$F(existing, incoming) {
|
|
28527
28586
|
const existing_eTag = existing.eTag;
|
|
28528
28587
|
const incoming_eTag = incoming.eTag;
|
|
28529
28588
|
if (!(existing_eTag === incoming_eTag)) {
|
|
@@ -28544,7 +28603,7 @@ function equals$D(existing, incoming) {
|
|
|
28544
28603
|
const ingest$q$1 = function AppsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
28545
28604
|
const key = path.fullPath;
|
|
28546
28605
|
const ttlToUse = TTL$l;
|
|
28547
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$q, "UiApi", VERSION$
|
|
28606
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$q, "UiApi", VERSION$S$1, RepresentationType$v, equals$F);
|
|
28548
28607
|
return createLink$3(key);
|
|
28549
28608
|
};
|
|
28550
28609
|
function getTypeCacheKeys$w$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -28561,8 +28620,8 @@ function getTypeCacheKeys$w$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
28561
28620
|
}
|
|
28562
28621
|
}
|
|
28563
28622
|
|
|
28564
|
-
function select$
|
|
28565
|
-
return select$
|
|
28623
|
+
function select$1d$1(luvio, params) {
|
|
28624
|
+
return select$1e();
|
|
28566
28625
|
}
|
|
28567
28626
|
function keyBuilder$1a(luvio, params) {
|
|
28568
28627
|
return keyPrefix$1 + '::AppsRepresentation:(' + 'formFactor:' + params.queryParams.formFactor + ',' + 'userCustomizations:' + params.queryParams.userCustomizations + ')';
|
|
@@ -28576,7 +28635,7 @@ function ingestSuccess$w(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
28576
28635
|
luvio.storeIngest(key, ingest$q$1, body);
|
|
28577
28636
|
const snapshot = luvio.storeLookup({
|
|
28578
28637
|
recordId: key,
|
|
28579
|
-
node: select$
|
|
28638
|
+
node: select$1d$1(),
|
|
28580
28639
|
variables: {},
|
|
28581
28640
|
}, snapshotRefresh);
|
|
28582
28641
|
deepFreeze(snapshot.data);
|
|
@@ -28588,7 +28647,7 @@ function ingestError$r(luvio, params, error, snapshotRefresh) {
|
|
|
28588
28647
|
const storeMetadataParams = {
|
|
28589
28648
|
ttl: TTL$l,
|
|
28590
28649
|
namespace: keyPrefix$1,
|
|
28591
|
-
version: VERSION$
|
|
28650
|
+
version: VERSION$S$1,
|
|
28592
28651
|
representationName: RepresentationType$v
|
|
28593
28652
|
};
|
|
28594
28653
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -28637,7 +28696,7 @@ function validateAdapterConfig$L(untrustedConfig, configPropertyNames) {
|
|
|
28637
28696
|
}
|
|
28638
28697
|
function adapterFragment$q(luvio, config) {
|
|
28639
28698
|
createResourceParams$E(config);
|
|
28640
|
-
return select$
|
|
28699
|
+
return select$1d$1();
|
|
28641
28700
|
}
|
|
28642
28701
|
function onFetchResponseSuccess$u(luvio, config, resourceParams, response) {
|
|
28643
28702
|
const snapshot = ingestSuccess$w(luvio, resourceParams, response, {
|
|
@@ -28693,8 +28752,8 @@ const getAllAppsAdapterFactory = (luvio) => function UiApi__getAllApps(untrusted
|
|
|
28693
28752
|
buildCachedSnapshotCachePolicy$x, buildNetworkSnapshotCachePolicy$x);
|
|
28694
28753
|
};
|
|
28695
28754
|
|
|
28696
|
-
function select$
|
|
28697
|
-
return select$
|
|
28755
|
+
function select$1c$1(luvio, params) {
|
|
28756
|
+
return select$1f();
|
|
28698
28757
|
}
|
|
28699
28758
|
function keyBuilder$18$1(luvio, params) {
|
|
28700
28759
|
return keyBuilder$1b(luvio, {
|
|
@@ -28710,7 +28769,7 @@ function ingestSuccess$v(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
28710
28769
|
luvio.storeIngest(key, ingest$r$1, body);
|
|
28711
28770
|
const snapshot = luvio.storeLookup({
|
|
28712
28771
|
recordId: key,
|
|
28713
|
-
node: select$
|
|
28772
|
+
node: select$1c$1(),
|
|
28714
28773
|
variables: {},
|
|
28715
28774
|
}, snapshotRefresh);
|
|
28716
28775
|
deepFreeze(snapshot.data);
|
|
@@ -28722,7 +28781,7 @@ function ingestError$q(luvio, params, error, snapshotRefresh) {
|
|
|
28722
28781
|
const storeMetadataParams = {
|
|
28723
28782
|
ttl: TTL$m,
|
|
28724
28783
|
namespace: keyPrefix$1,
|
|
28725
|
-
version: VERSION$
|
|
28784
|
+
version: VERSION$T$1,
|
|
28726
28785
|
representationName: RepresentationType$w
|
|
28727
28786
|
};
|
|
28728
28787
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -28772,7 +28831,7 @@ function validateAdapterConfig$K(untrustedConfig, configPropertyNames) {
|
|
|
28772
28831
|
}
|
|
28773
28832
|
function adapterFragment$p(luvio, config) {
|
|
28774
28833
|
createResourceParams$D(config);
|
|
28775
|
-
return select$
|
|
28834
|
+
return select$1c$1();
|
|
28776
28835
|
}
|
|
28777
28836
|
function onFetchResponseSuccess$t(luvio, config, resourceParams, response) {
|
|
28778
28837
|
const snapshot = ingestSuccess$v(luvio, resourceParams, response, {
|
|
@@ -28828,11 +28887,11 @@ const getAppDetailsAdapterFactory = (luvio) => function UiApi__getAppDetails(unt
|
|
|
28828
28887
|
buildCachedSnapshotCachePolicy$w, buildNetworkSnapshotCachePolicy$w);
|
|
28829
28888
|
};
|
|
28830
28889
|
|
|
28831
|
-
const VERSION$
|
|
28832
|
-
const select$
|
|
28890
|
+
const VERSION$R$1 = "f43ef90ffde4d488414d6868e3aaefcb";
|
|
28891
|
+
const select$1b$1 = function DuplicateRuleFilterItemRepresentationSelect() {
|
|
28833
28892
|
return {
|
|
28834
28893
|
kind: 'Fragment',
|
|
28835
|
-
version: VERSION$
|
|
28894
|
+
version: VERSION$R$1,
|
|
28836
28895
|
private: [
|
|
28837
28896
|
'eTag'
|
|
28838
28897
|
],
|
|
@@ -28857,12 +28916,12 @@ const select$19$1 = function DuplicateRuleFilterItemRepresentationSelect() {
|
|
|
28857
28916
|
};
|
|
28858
28917
|
};
|
|
28859
28918
|
|
|
28860
|
-
const VERSION$
|
|
28861
|
-
const select$
|
|
28862
|
-
const { selections: DuplicateRuleFilterItemRepresentation__selections, opaque: DuplicateRuleFilterItemRepresentation__opaque, } = select$
|
|
28919
|
+
const VERSION$Q$1 = "320d7f254687278f2763d4b490dab3fb";
|
|
28920
|
+
const select$1a$1 = function DuplicateRuleFilterRepresentationSelect() {
|
|
28921
|
+
const { selections: DuplicateRuleFilterItemRepresentation__selections, opaque: DuplicateRuleFilterItemRepresentation__opaque, } = select$1b$1();
|
|
28863
28922
|
return {
|
|
28864
28923
|
kind: 'Fragment',
|
|
28865
|
-
version: VERSION$
|
|
28924
|
+
version: VERSION$Q$1,
|
|
28866
28925
|
private: [
|
|
28867
28926
|
'eTag'
|
|
28868
28927
|
],
|
|
@@ -28885,11 +28944,11 @@ const select$18$1 = function DuplicateRuleFilterRepresentationSelect() {
|
|
|
28885
28944
|
};
|
|
28886
28945
|
};
|
|
28887
28946
|
|
|
28888
|
-
const VERSION$
|
|
28889
|
-
const select$
|
|
28947
|
+
const VERSION$P$1 = "b47b44e260e5ce777beaf3da9088997c";
|
|
28948
|
+
const select$19$1 = function MatchRuleRepresentationSelect() {
|
|
28890
28949
|
return {
|
|
28891
28950
|
kind: 'Fragment',
|
|
28892
|
-
version: VERSION$
|
|
28951
|
+
version: VERSION$P$1,
|
|
28893
28952
|
private: [
|
|
28894
28953
|
'eTag'
|
|
28895
28954
|
],
|
|
@@ -28915,13 +28974,13 @@ const select$17$1 = function MatchRuleRepresentationSelect() {
|
|
|
28915
28974
|
};
|
|
28916
28975
|
};
|
|
28917
28976
|
|
|
28918
|
-
const VERSION$
|
|
28919
|
-
const select$
|
|
28920
|
-
const { selections: DuplicateRuleFilterRepresentation__selections, opaque: DuplicateRuleFilterRepresentation__opaque, } = select$
|
|
28921
|
-
const { selections: MatchRuleRepresentation__selections, opaque: MatchRuleRepresentation__opaque, } = select$
|
|
28977
|
+
const VERSION$O$1 = "bb83d7210bb1d7861b6188bc5f552617";
|
|
28978
|
+
const select$18$1 = function DuplicateRuleRepresentationSelect() {
|
|
28979
|
+
const { selections: DuplicateRuleFilterRepresentation__selections, opaque: DuplicateRuleFilterRepresentation__opaque, } = select$1a$1();
|
|
28980
|
+
const { selections: MatchRuleRepresentation__selections, opaque: MatchRuleRepresentation__opaque, } = select$19$1();
|
|
28922
28981
|
return {
|
|
28923
28982
|
kind: 'Fragment',
|
|
28924
|
-
version: VERSION$
|
|
28983
|
+
version: VERSION$O$1,
|
|
28925
28984
|
private: [
|
|
28926
28985
|
'eTag'
|
|
28927
28986
|
],
|
|
@@ -28969,16 +29028,16 @@ const select$16$1 = function DuplicateRuleRepresentationSelect() {
|
|
|
28969
29028
|
};
|
|
28970
29029
|
|
|
28971
29030
|
const TTL$k = 900000;
|
|
28972
|
-
const VERSION$
|
|
29031
|
+
const VERSION$N$1 = "be27ee99dc0dc43a1f66b8fe98dc532c";
|
|
28973
29032
|
const RepresentationType$u = 'DuplicatesConfigurationRepresentation';
|
|
28974
29033
|
function normalize$p(input, existing, path, luvio, store, timestamp) {
|
|
28975
29034
|
return input;
|
|
28976
29035
|
}
|
|
28977
|
-
const select$
|
|
28978
|
-
const { selections: DuplicateRuleRepresentation__selections, opaque: DuplicateRuleRepresentation__opaque, } = select$
|
|
29036
|
+
const select$17$1 = function DuplicatesConfigurationRepresentationSelect() {
|
|
29037
|
+
const { selections: DuplicateRuleRepresentation__selections, opaque: DuplicateRuleRepresentation__opaque, } = select$18$1();
|
|
28979
29038
|
return {
|
|
28980
29039
|
kind: 'Fragment',
|
|
28981
|
-
version: VERSION$
|
|
29040
|
+
version: VERSION$N$1,
|
|
28982
29041
|
private: [
|
|
28983
29042
|
'eTag'
|
|
28984
29043
|
],
|
|
@@ -29009,7 +29068,7 @@ const select$15$1 = function DuplicatesConfigurationRepresentationSelect() {
|
|
|
29009
29068
|
]
|
|
29010
29069
|
};
|
|
29011
29070
|
};
|
|
29012
|
-
function equals$
|
|
29071
|
+
function equals$E(existing, incoming) {
|
|
29013
29072
|
if (existing.eTag !== incoming.eTag) {
|
|
29014
29073
|
return false;
|
|
29015
29074
|
}
|
|
@@ -29018,7 +29077,7 @@ function equals$C(existing, incoming) {
|
|
|
29018
29077
|
const ingest$p$1 = function DuplicatesConfigurationRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
29019
29078
|
const key = path.fullPath;
|
|
29020
29079
|
const ttlToUse = TTL$k;
|
|
29021
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$p, "UiApi", VERSION$
|
|
29080
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$p, "UiApi", VERSION$N$1, RepresentationType$u, equals$E);
|
|
29022
29081
|
return createLink$3(key);
|
|
29023
29082
|
};
|
|
29024
29083
|
function getTypeCacheKeys$v$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -29031,8 +29090,8 @@ function getTypeCacheKeys$v$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
|
29031
29090
|
});
|
|
29032
29091
|
}
|
|
29033
29092
|
|
|
29034
|
-
function select$
|
|
29035
|
-
return select$
|
|
29093
|
+
function select$16$1(luvio, params) {
|
|
29094
|
+
return select$17$1();
|
|
29036
29095
|
}
|
|
29037
29096
|
function keyBuilder$16$1(luvio, params) {
|
|
29038
29097
|
return keyPrefix$1 + '::DuplicatesConfigurationRepresentation:(' + 'recordTypeId:' + params.queryParams.recordTypeId + ',' + 'objectApiName:' + params.urlParams.objectApiName + ')';
|
|
@@ -29046,7 +29105,7 @@ function ingestSuccess$u(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
29046
29105
|
luvio.storeIngest(key, ingest$p$1, body);
|
|
29047
29106
|
const snapshot = luvio.storeLookup({
|
|
29048
29107
|
recordId: key,
|
|
29049
|
-
node: select$
|
|
29108
|
+
node: select$16$1(),
|
|
29050
29109
|
variables: {},
|
|
29051
29110
|
}, snapshotRefresh);
|
|
29052
29111
|
deepFreeze(snapshot.data);
|
|
@@ -29058,7 +29117,7 @@ function ingestError$p(luvio, params, error, snapshotRefresh) {
|
|
|
29058
29117
|
const storeMetadataParams = {
|
|
29059
29118
|
ttl: TTL$k,
|
|
29060
29119
|
namespace: keyPrefix$1,
|
|
29061
|
-
version: VERSION$
|
|
29120
|
+
version: VERSION$N$1,
|
|
29062
29121
|
representationName: RepresentationType$u
|
|
29063
29122
|
};
|
|
29064
29123
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -29106,7 +29165,7 @@ function validateAdapterConfig$J(untrustedConfig, configPropertyNames) {
|
|
|
29106
29165
|
}
|
|
29107
29166
|
function adapterFragment$o(luvio, config) {
|
|
29108
29167
|
createResourceParams$C(config);
|
|
29109
|
-
return select$
|
|
29168
|
+
return select$16$1();
|
|
29110
29169
|
}
|
|
29111
29170
|
function onFetchResponseSuccess$s(luvio, config, resourceParams, response) {
|
|
29112
29171
|
const snapshot = ingestSuccess$u(luvio, resourceParams, response, {
|
|
@@ -29194,7 +29253,7 @@ function ingestError$o(luvio, params, error, snapshotRefresh) {
|
|
|
29194
29253
|
const storeMetadataParams = {
|
|
29195
29254
|
ttl: TTL$t,
|
|
29196
29255
|
namespace: keyPrefix$1,
|
|
29197
|
-
version: VERSION$
|
|
29256
|
+
version: VERSION$13$1,
|
|
29198
29257
|
representationName: RepresentationType$I
|
|
29199
29258
|
};
|
|
29200
29259
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -29220,7 +29279,7 @@ function onFetchResponseSuccess$r(luvio, config, resourceParams, response) {
|
|
|
29220
29279
|
luvio.storeIngest(key, ingest$C$1, body);
|
|
29221
29280
|
const snapshot = luvio.storeLookup({
|
|
29222
29281
|
recordId: key,
|
|
29223
|
-
node: select$
|
|
29282
|
+
node: select$1z(),
|
|
29224
29283
|
variables: {},
|
|
29225
29284
|
}, {
|
|
29226
29285
|
config,
|
|
@@ -29266,7 +29325,7 @@ function buildCachedSnapshotCachePolicy$u(context, storeLookup) {
|
|
|
29266
29325
|
const { luvio, config } = context;
|
|
29267
29326
|
const selector = {
|
|
29268
29327
|
recordId: keyBuilder$1G(luvio, config),
|
|
29269
|
-
node: select$
|
|
29328
|
+
node: select$1z(),
|
|
29270
29329
|
variables: {},
|
|
29271
29330
|
};
|
|
29272
29331
|
return storeLookup(selector, {
|
|
@@ -29361,7 +29420,7 @@ function buildCachedSnapshot$4(luvio, config) {
|
|
|
29361
29420
|
});
|
|
29362
29421
|
const selector = {
|
|
29363
29422
|
recordId: key,
|
|
29364
|
-
node: select$
|
|
29423
|
+
node: select$1y(),
|
|
29365
29424
|
variables: {},
|
|
29366
29425
|
};
|
|
29367
29426
|
return luvio.storeLookup(selector, {
|
|
@@ -29479,7 +29538,7 @@ function buildCachedSnapshotCachePolicy$t(context, storeLookup) {
|
|
|
29479
29538
|
layoutType,
|
|
29480
29539
|
mode,
|
|
29481
29540
|
}),
|
|
29482
|
-
node: select$
|
|
29541
|
+
node: select$1y(),
|
|
29483
29542
|
variables: {},
|
|
29484
29543
|
};
|
|
29485
29544
|
return storeLookup(selector, {
|
|
@@ -29533,8 +29592,8 @@ function keyBuilder$13$1(luvio, params) {
|
|
|
29533
29592
|
});
|
|
29534
29593
|
}
|
|
29535
29594
|
|
|
29536
|
-
function select$
|
|
29537
|
-
return select$
|
|
29595
|
+
function select$15$1(luvio, params) {
|
|
29596
|
+
return select$1L();
|
|
29538
29597
|
}
|
|
29539
29598
|
function getResponseCacheKeys$z(storeKeyMap, luvio, resourceParams, response) {
|
|
29540
29599
|
getTypeCacheKeys$S$1(storeKeyMap, luvio, response);
|
|
@@ -29545,7 +29604,7 @@ function ingestSuccess$t(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
29545
29604
|
luvio.storeIngest(key, ingest$L$1, body);
|
|
29546
29605
|
const snapshot = luvio.storeLookup({
|
|
29547
29606
|
recordId: key,
|
|
29548
|
-
node: select$
|
|
29607
|
+
node: select$15$1(),
|
|
29549
29608
|
variables: {},
|
|
29550
29609
|
}, snapshotRefresh);
|
|
29551
29610
|
deepFreeze(snapshot.data);
|
|
@@ -29557,7 +29616,7 @@ function ingestError$n(luvio, params, error, snapshotRefresh) {
|
|
|
29557
29616
|
const storeMetadataParams = {
|
|
29558
29617
|
ttl: TTL$y,
|
|
29559
29618
|
namespace: keyPrefix$1,
|
|
29560
|
-
version: VERSION$
|
|
29619
|
+
version: VERSION$1e,
|
|
29561
29620
|
representationName: RepresentationType$R
|
|
29562
29621
|
};
|
|
29563
29622
|
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
@@ -29622,7 +29681,7 @@ function selectChildResourceParams$5(luvio, childResources, resourceParams) {
|
|
|
29622
29681
|
reader.enterPath(envelopeBodyPath);
|
|
29623
29682
|
const childResource = childResources[i];
|
|
29624
29683
|
const childKey = keyBuilder$13$1(luvio, childResource);
|
|
29625
|
-
const childFragment = select$
|
|
29684
|
+
const childFragment = select$15$1();
|
|
29626
29685
|
const isMissingDataBeforeChildRead = reader.getIsDataMissing();
|
|
29627
29686
|
const childSnapshot = reader.read({
|
|
29628
29687
|
recordId: childKey,
|
|
@@ -29702,7 +29761,7 @@ function selectChildResourceParams$5(luvio, childResources, resourceParams) {
|
|
|
29702
29761
|
}
|
|
29703
29762
|
};
|
|
29704
29763
|
}
|
|
29705
|
-
function select$
|
|
29764
|
+
function select$14$1(luvio, resourceParams) {
|
|
29706
29765
|
const childResources = createChildResourceParams$6(resourceParams);
|
|
29707
29766
|
return selectChildResourceParams$5(luvio, childResources, resourceParams);
|
|
29708
29767
|
}
|
|
@@ -29806,7 +29865,7 @@ function ingestSuccess$s(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
29806
29865
|
seenRecords: seenRecords,
|
|
29807
29866
|
select: {
|
|
29808
29867
|
recordId: key,
|
|
29809
|
-
node: select$
|
|
29868
|
+
node: select$14$1(luvio, resourceParams),
|
|
29810
29869
|
variables: {},
|
|
29811
29870
|
},
|
|
29812
29871
|
refresh: snapshotRefresh,
|
|
@@ -29864,7 +29923,7 @@ function validateAdapterConfig$E(untrustedConfig, configPropertyNames) {
|
|
|
29864
29923
|
}
|
|
29865
29924
|
function adapterFragment$n(luvio, config) {
|
|
29866
29925
|
const resourceParams = createResourceParams$A(config);
|
|
29867
|
-
return select$
|
|
29926
|
+
return select$14$1(luvio, resourceParams);
|
|
29868
29927
|
}
|
|
29869
29928
|
function onFetchResponseSuccess$p(luvio, config, resourceParams, response) {
|
|
29870
29929
|
const snapshot = ingestSuccess$s(luvio, resourceParams, response, {
|
|
@@ -29948,7 +30007,7 @@ function validateAdapterConfig$D(untrustedConfig, configPropertyNames) {
|
|
|
29948
30007
|
}
|
|
29949
30008
|
function adapterFragment$m(luvio, config) {
|
|
29950
30009
|
createResourceParams$z(config);
|
|
29951
|
-
return select$
|
|
30010
|
+
return select$15$1();
|
|
29952
30011
|
}
|
|
29953
30012
|
function onFetchResponseSuccess$o(luvio, config, resourceParams, response) {
|
|
29954
30013
|
const snapshot = ingestSuccess$t(luvio, resourceParams, response, {
|
|
@@ -30004,8 +30063,8 @@ const getListInfoByNameAdapterFactory = (luvio) => function UiApi__getListInfoBy
|
|
|
30004
30063
|
buildCachedSnapshotCachePolicy$r, buildNetworkSnapshotCachePolicy$r);
|
|
30005
30064
|
};
|
|
30006
30065
|
|
|
30007
|
-
function select$
|
|
30008
|
-
return select$
|
|
30066
|
+
function select$13$1(luvio, params) {
|
|
30067
|
+
return select$1L();
|
|
30009
30068
|
}
|
|
30010
30069
|
function getResponseCacheKeys$x(storeKeyMap, luvio, resourceParams, response) {
|
|
30011
30070
|
getTypeCacheKeys$S$1(storeKeyMap, luvio, response);
|
|
@@ -30016,7 +30075,7 @@ function ingestSuccess$r(luvio, resourceParams, response) {
|
|
|
30016
30075
|
luvio.storeIngest(key, ingest$L$1, body);
|
|
30017
30076
|
const snapshot = luvio.storeLookup({
|
|
30018
30077
|
recordId: key,
|
|
30019
|
-
node: select$
|
|
30078
|
+
node: select$13$1(),
|
|
30020
30079
|
variables: {},
|
|
30021
30080
|
});
|
|
30022
30081
|
deepFreeze(snapshot.data);
|
|
@@ -30040,6 +30099,7 @@ const adapterName$y = 'updateListInfoByName';
|
|
|
30040
30099
|
const updateListInfoByName_ConfigPropertyMetadata = [
|
|
30041
30100
|
generateParamConfigMetadata$1('listViewApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
30042
30101
|
generateParamConfigMetadata$1('objectApiName', true, 0 /* UrlParameter */, 0 /* String */, false, getObjectApiName$1),
|
|
30102
|
+
generateParamConfigMetadata$1('displayColumns', false, 2 /* Body */, 4 /* Unsupported */, true),
|
|
30043
30103
|
generateParamConfigMetadata$1('filterLogicString', false, 2 /* Body */, 4 /* Unsupported */),
|
|
30044
30104
|
generateParamConfigMetadata$1('filteredByInfo', false, 2 /* Body */, 4 /* Unsupported */, true),
|
|
30045
30105
|
generateParamConfigMetadata$1('label', false, 2 /* Body */, 0 /* String */),
|
|
@@ -30051,6 +30111,21 @@ const createResourceParams$y = /*#__PURE__*/ createResourceParams$Y(updateListIn
|
|
|
30051
30111
|
function typeCheckConfig$C(untrustedConfig) {
|
|
30052
30112
|
const config = {};
|
|
30053
30113
|
typeCheckConfig$11(untrustedConfig, config, updateListInfoByName_ConfigPropertyMetadata);
|
|
30114
|
+
const untrustedConfig_displayColumns = untrustedConfig.displayColumns;
|
|
30115
|
+
if (ArrayIsArray$1(untrustedConfig_displayColumns)) {
|
|
30116
|
+
const untrustedConfig_displayColumns_array = [];
|
|
30117
|
+
for (let i = 0, arrayLength = untrustedConfig_displayColumns.length; i < arrayLength; i++) {
|
|
30118
|
+
const untrustedConfig_displayColumns_item = untrustedConfig_displayColumns[i];
|
|
30119
|
+
const referenceListColumnRepresentationValidationError = validate$1K(untrustedConfig_displayColumns_item);
|
|
30120
|
+
if (referenceListColumnRepresentationValidationError === null) {
|
|
30121
|
+
untrustedConfig_displayColumns_array.push(untrustedConfig_displayColumns_item);
|
|
30122
|
+
}
|
|
30123
|
+
if (untrustedConfig_displayColumns_item === null) {
|
|
30124
|
+
untrustedConfig_displayColumns_array.push(untrustedConfig_displayColumns_item);
|
|
30125
|
+
}
|
|
30126
|
+
}
|
|
30127
|
+
config.displayColumns = untrustedConfig_displayColumns_array;
|
|
30128
|
+
}
|
|
30054
30129
|
const untrustedConfig_filterLogicString = untrustedConfig.filterLogicString;
|
|
30055
30130
|
if (typeof untrustedConfig_filterLogicString === 'string') {
|
|
30056
30131
|
config.filterLogicString = untrustedConfig_filterLogicString;
|
|
@@ -30063,7 +30138,7 @@ function typeCheckConfig$C(untrustedConfig) {
|
|
|
30063
30138
|
const untrustedConfig_filteredByInfo_array = [];
|
|
30064
30139
|
for (let i = 0, arrayLength = untrustedConfig_filteredByInfo.length; i < arrayLength; i++) {
|
|
30065
30140
|
const untrustedConfig_filteredByInfo_item = untrustedConfig_filteredByInfo[i];
|
|
30066
|
-
const referenceListFilterByInfoRepresentationValidationError = validate$
|
|
30141
|
+
const referenceListFilterByInfoRepresentationValidationError = validate$1J(untrustedConfig_filteredByInfo_item);
|
|
30067
30142
|
if (referenceListFilterByInfoRepresentationValidationError === null) {
|
|
30068
30143
|
untrustedConfig_filteredByInfo_array.push(untrustedConfig_filteredByInfo_item);
|
|
30069
30144
|
}
|
|
@@ -30071,7 +30146,7 @@ function typeCheckConfig$C(untrustedConfig) {
|
|
|
30071
30146
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
30072
30147
|
}
|
|
30073
30148
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
30074
|
-
const referenceListScopeRepresentationValidationError = validate$
|
|
30149
|
+
const referenceListScopeRepresentationValidationError = validate$1E(untrustedConfig_scope);
|
|
30075
30150
|
if (referenceListScopeRepresentationValidationError === null) {
|
|
30076
30151
|
config.scope = untrustedConfig_scope;
|
|
30077
30152
|
}
|
|
@@ -30120,6 +30195,87 @@ const updateListInfoByNameAdapterFactory = (luvio) => {
|
|
|
30120
30195
|
};
|
|
30121
30196
|
};
|
|
30122
30197
|
|
|
30198
|
+
const VERSION$M$1 = "d77026c4d63ef00cdd7e3d600687a40d";
|
|
30199
|
+
const select$12$1 = function ListObjectScopeAvailableEntityRepresentationSelect() {
|
|
30200
|
+
return {
|
|
30201
|
+
kind: 'Fragment',
|
|
30202
|
+
version: VERSION$M$1,
|
|
30203
|
+
private: [],
|
|
30204
|
+
selections: [
|
|
30205
|
+
{
|
|
30206
|
+
name: 'id',
|
|
30207
|
+
kind: 'Scalar'
|
|
30208
|
+
},
|
|
30209
|
+
{
|
|
30210
|
+
name: 'label',
|
|
30211
|
+
kind: 'Scalar'
|
|
30212
|
+
}
|
|
30213
|
+
]
|
|
30214
|
+
};
|
|
30215
|
+
};
|
|
30216
|
+
function equals$D(existing, incoming) {
|
|
30217
|
+
const existing_id = existing.id;
|
|
30218
|
+
const incoming_id = incoming.id;
|
|
30219
|
+
if (!(existing_id === incoming_id)) {
|
|
30220
|
+
return false;
|
|
30221
|
+
}
|
|
30222
|
+
const existing_label = existing.label;
|
|
30223
|
+
const incoming_label = incoming.label;
|
|
30224
|
+
if (!(existing_label === incoming_label)) {
|
|
30225
|
+
return false;
|
|
30226
|
+
}
|
|
30227
|
+
return true;
|
|
30228
|
+
}
|
|
30229
|
+
|
|
30230
|
+
const VERSION$L$1 = "355933ff2970aa91a2848a94565e956a";
|
|
30231
|
+
const select$11$1 = function ListObjectScopeRepresentationSelect() {
|
|
30232
|
+
const { selections: ListObjectScopeAvailableEntityRepresentation__selections, opaque: ListObjectScopeAvailableEntityRepresentation__opaque, } = select$12$1();
|
|
30233
|
+
return {
|
|
30234
|
+
kind: 'Fragment',
|
|
30235
|
+
version: VERSION$L$1,
|
|
30236
|
+
private: [],
|
|
30237
|
+
selections: [
|
|
30238
|
+
{
|
|
30239
|
+
name: 'apiName',
|
|
30240
|
+
kind: 'Scalar'
|
|
30241
|
+
},
|
|
30242
|
+
{
|
|
30243
|
+
name: 'availableEntities',
|
|
30244
|
+
kind: 'Object',
|
|
30245
|
+
plural: true,
|
|
30246
|
+
selections: ListObjectScopeAvailableEntityRepresentation__selections
|
|
30247
|
+
},
|
|
30248
|
+
{
|
|
30249
|
+
name: 'label',
|
|
30250
|
+
kind: 'Scalar'
|
|
30251
|
+
}
|
|
30252
|
+
]
|
|
30253
|
+
};
|
|
30254
|
+
};
|
|
30255
|
+
function equals$C(existing, incoming) {
|
|
30256
|
+
const existing_apiName = existing.apiName;
|
|
30257
|
+
const incoming_apiName = incoming.apiName;
|
|
30258
|
+
if (!(existing_apiName === incoming_apiName)) {
|
|
30259
|
+
return false;
|
|
30260
|
+
}
|
|
30261
|
+
const existing_label = existing.label;
|
|
30262
|
+
const incoming_label = incoming.label;
|
|
30263
|
+
if (!(existing_label === incoming_label)) {
|
|
30264
|
+
return false;
|
|
30265
|
+
}
|
|
30266
|
+
const existing_availableEntities = existing.availableEntities;
|
|
30267
|
+
const incoming_availableEntities = incoming.availableEntities;
|
|
30268
|
+
const equals_availableEntities_items = equalsArray(existing_availableEntities, incoming_availableEntities, (existing_availableEntities_item, incoming_availableEntities_item) => {
|
|
30269
|
+
if (!(equals$D(existing_availableEntities_item, incoming_availableEntities_item))) {
|
|
30270
|
+
return false;
|
|
30271
|
+
}
|
|
30272
|
+
});
|
|
30273
|
+
if (equals_availableEntities_items === false) {
|
|
30274
|
+
return false;
|
|
30275
|
+
}
|
|
30276
|
+
return true;
|
|
30277
|
+
}
|
|
30278
|
+
|
|
30123
30279
|
const VERSION$K$1 = "c5c08ea834378670c9d6f235ff71c9f0";
|
|
30124
30280
|
const select$10$1 = function ListObjectPicklistValueRepresentationSelect() {
|
|
30125
30281
|
return {
|
|
@@ -30152,7 +30308,7 @@ function equals$B(existing, incoming) {
|
|
|
30152
30308
|
return true;
|
|
30153
30309
|
}
|
|
30154
30310
|
|
|
30155
|
-
const VERSION$J$1 = "
|
|
30311
|
+
const VERSION$J$1 = "2c35f797fead79b5c45b521e77dd6ace";
|
|
30156
30312
|
const select$$$1 = function ListObjectColumnRepresentationSelect() {
|
|
30157
30313
|
const { selections: ListObjectPicklistValueRepresentation__selections, opaque: ListObjectPicklistValueRepresentation__opaque, } = select$10$1();
|
|
30158
30314
|
return {
|
|
@@ -30227,11 +30383,6 @@ function equals$A(existing, incoming) {
|
|
|
30227
30383
|
if (!(existing_alias === incoming_alias)) {
|
|
30228
30384
|
return false;
|
|
30229
30385
|
}
|
|
30230
|
-
const existing_dataType = existing.dataType;
|
|
30231
|
-
const incoming_dataType = incoming.dataType;
|
|
30232
|
-
if (!(existing_dataType === incoming_dataType)) {
|
|
30233
|
-
return false;
|
|
30234
|
-
}
|
|
30235
30386
|
const existing_defaultFilterOperator = existing.defaultFilterOperator;
|
|
30236
30387
|
const incoming_defaultFilterOperator = incoming.defaultFilterOperator;
|
|
30237
30388
|
if (!(existing_defaultFilterOperator === incoming_defaultFilterOperator)) {
|
|
@@ -30247,6 +30398,11 @@ function equals$A(existing, incoming) {
|
|
|
30247
30398
|
if (!(existing_label === incoming_label)) {
|
|
30248
30399
|
return false;
|
|
30249
30400
|
}
|
|
30401
|
+
const existing_dataType = existing.dataType;
|
|
30402
|
+
const incoming_dataType = incoming.dataType;
|
|
30403
|
+
if (!(existing_dataType === incoming_dataType)) {
|
|
30404
|
+
return false;
|
|
30405
|
+
}
|
|
30250
30406
|
const existing_picklistValues = existing.picklistValues;
|
|
30251
30407
|
const incoming_picklistValues = incoming.picklistValues;
|
|
30252
30408
|
const equals_picklistValues_items = equalsArray(existing_picklistValues, incoming_picklistValues, (existing_picklistValues_item, incoming_picklistValues_item) => {
|
|
@@ -30271,7 +30427,7 @@ function equals$A(existing, incoming) {
|
|
|
30271
30427
|
}
|
|
30272
30428
|
|
|
30273
30429
|
const TTL$j = 900000;
|
|
30274
|
-
const VERSION$I$1 = "
|
|
30430
|
+
const VERSION$I$1 = "84e1e3ffdfcb59f65d7b8906e33027ac";
|
|
30275
30431
|
const RepresentationType$t = 'ListObjectInfoRepresentation';
|
|
30276
30432
|
function keyBuilder$$$1(luvio, config) {
|
|
30277
30433
|
return keyPrefix$1 + '::' + RepresentationType$t + ':' + config.objectApiName;
|
|
@@ -30286,12 +30442,19 @@ function normalize$o(input, existing, path, luvio, store, timestamp) {
|
|
|
30286
30442
|
return input;
|
|
30287
30443
|
}
|
|
30288
30444
|
const select$_$1 = function ListObjectInfoRepresentationSelect() {
|
|
30445
|
+
const { selections: ListObjectScopeRepresentation__selections, opaque: ListObjectScopeRepresentation__opaque, } = select$11$1();
|
|
30289
30446
|
const { selections: ListObjectColumnRepresentation__selections, opaque: ListObjectColumnRepresentation__opaque, } = select$$$1();
|
|
30290
30447
|
return {
|
|
30291
30448
|
kind: 'Fragment',
|
|
30292
30449
|
version: VERSION$I$1,
|
|
30293
30450
|
private: [],
|
|
30294
30451
|
selections: [
|
|
30452
|
+
{
|
|
30453
|
+
name: 'availableScopes',
|
|
30454
|
+
kind: 'Object',
|
|
30455
|
+
plural: true,
|
|
30456
|
+
selections: ListObjectScopeRepresentation__selections
|
|
30457
|
+
},
|
|
30295
30458
|
{
|
|
30296
30459
|
name: 'columns',
|
|
30297
30460
|
kind: 'Object',
|
|
@@ -30324,6 +30487,16 @@ function equals$z(existing, incoming) {
|
|
|
30324
30487
|
if (!(existing_objectApiName === incoming_objectApiName)) {
|
|
30325
30488
|
return false;
|
|
30326
30489
|
}
|
|
30490
|
+
const existing_availableScopes = existing.availableScopes;
|
|
30491
|
+
const incoming_availableScopes = incoming.availableScopes;
|
|
30492
|
+
const equals_availableScopes_items = equalsArray(existing_availableScopes, incoming_availableScopes, (existing_availableScopes_item, incoming_availableScopes_item) => {
|
|
30493
|
+
if (!(equals$C(existing_availableScopes_item, incoming_availableScopes_item))) {
|
|
30494
|
+
return false;
|
|
30495
|
+
}
|
|
30496
|
+
});
|
|
30497
|
+
if (equals_availableScopes_items === false) {
|
|
30498
|
+
return false;
|
|
30499
|
+
}
|
|
30327
30500
|
const existing_columns = existing.columns;
|
|
30328
30501
|
const incoming_columns = incoming.columns;
|
|
30329
30502
|
const equals_columns_items = equalsArray(existing_columns, incoming_columns, (existing_columns_item, incoming_columns_item) => {
|
|
@@ -30525,7 +30698,7 @@ const select$Y$1 = function NavItemsRepresentationSelect() {
|
|
|
30525
30698
|
name: 'navItems',
|
|
30526
30699
|
kind: 'Link',
|
|
30527
30700
|
plural: true,
|
|
30528
|
-
fragment: select$
|
|
30701
|
+
fragment: select$1g()
|
|
30529
30702
|
},
|
|
30530
30703
|
{
|
|
30531
30704
|
name: 'nextPageUrl',
|
|
@@ -30754,7 +30927,7 @@ function selectChildResourceParams$4(luvio, childResources, resourceParams) {
|
|
|
30754
30927
|
reader.enterPath(envelopeBodyPath);
|
|
30755
30928
|
const childResource = childResources[i];
|
|
30756
30929
|
const childKey = keyBuilder$1I(luvio, childResource);
|
|
30757
|
-
const childFragment = select$
|
|
30930
|
+
const childFragment = select$1A();
|
|
30758
30931
|
const isMissingDataBeforeChildRead = reader.getIsDataMissing();
|
|
30759
30932
|
const childSnapshot = reader.read({
|
|
30760
30933
|
recordId: childKey,
|
|
@@ -35492,7 +35665,7 @@ const dynamicSelect$4 = function dynamicRelatedListRecordCollectionRepresentatio
|
|
|
35492
35665
|
const recordsPathSelection = params.records === undefined ? {
|
|
35493
35666
|
name: 'records',
|
|
35494
35667
|
kind: 'Link',
|
|
35495
|
-
fragment: select$
|
|
35668
|
+
fragment: select$1H()
|
|
35496
35669
|
} : params.records;
|
|
35497
35670
|
const { selections: RelatedListReferenceRepresentation__selections, opaque: RelatedListReferenceRepresentation__opaque, } = select$B$1();
|
|
35498
35671
|
return {
|
|
@@ -35764,7 +35937,7 @@ function select$n$1(luvio, params) {
|
|
|
35764
35937
|
kind: 'Fragment',
|
|
35765
35938
|
private: ['eTag', 'weakEtag'],
|
|
35766
35939
|
selections: buildSelectionFromFields(fields, optionalFields),
|
|
35767
|
-
version: VERSION$
|
|
35940
|
+
version: VERSION$1a$1
|
|
35768
35941
|
},
|
|
35769
35942
|
},
|
|
35770
35943
|
}, createPaginationParams(params));
|
|
@@ -37562,7 +37735,7 @@ const getKeywordSearchResultsAdapterFactory = (luvio) => function UiApi__getKeyw
|
|
|
37562
37735
|
ObjectCreate$1$1(null);
|
|
37563
37736
|
|
|
37564
37737
|
function select$6$1(luvio, params) {
|
|
37565
|
-
return select$
|
|
37738
|
+
return select$1x();
|
|
37566
37739
|
}
|
|
37567
37740
|
function getResponseCacheKeys$9(storeKeyMap, luvio, resourceParams, response) {
|
|
37568
37741
|
getTypeCacheKeys$G$1(storeKeyMap, luvio, response);
|
|
@@ -37682,7 +37855,7 @@ const performUpdateRecordQuickActionAdapterFactory = (luvio) => {
|
|
|
37682
37855
|
const factory$d = performUpdateRecordQuickActionAdapterFactory;
|
|
37683
37856
|
|
|
37684
37857
|
function select$5$1(luvio, params) {
|
|
37685
|
-
return select$
|
|
37858
|
+
return select$1x();
|
|
37686
37859
|
}
|
|
37687
37860
|
function getResponseCacheKeys$8(storeKeyMap, luvio, resourceParams, response) {
|
|
37688
37861
|
getTypeCacheKeys$G$1(storeKeyMap, luvio, response);
|
|
@@ -38005,7 +38178,7 @@ function validateAdapterConfig$a(untrustedConfig, configPropertyNames) {
|
|
|
38005
38178
|
}
|
|
38006
38179
|
function adapterFragment$2(luvio, config) {
|
|
38007
38180
|
const resourceParams = createResourceParams$9(config);
|
|
38008
|
-
return select$
|
|
38181
|
+
return select$1F(luvio, resourceParams);
|
|
38009
38182
|
}
|
|
38010
38183
|
function onFetchResponseSuccess$3(luvio, config, resourceParams, response) {
|
|
38011
38184
|
const snapshot = ingestSuccess$J(luvio, resourceParams, response, {
|
|
@@ -38073,7 +38246,7 @@ function getPaginationMetadata(luvio, resourceParams) {
|
|
|
38073
38246
|
recordId: key,
|
|
38074
38247
|
node: {
|
|
38075
38248
|
kind: 'Fragment',
|
|
38076
|
-
version: VERSION$
|
|
38249
|
+
version: VERSION$18$1,
|
|
38077
38250
|
private: [],
|
|
38078
38251
|
selections: [
|
|
38079
38252
|
{
|
|
@@ -38705,7 +38878,7 @@ function equals$6(existing, incoming) {
|
|
|
38705
38878
|
if (!(existing_recordTypeInfo === incoming_recordTypeInfo
|
|
38706
38879
|
|| (existing_recordTypeInfo != null &&
|
|
38707
38880
|
incoming_recordTypeInfo != null &&
|
|
38708
|
-
equals
|
|
38881
|
+
equals$$(existing_recordTypeInfo, incoming_recordTypeInfo)))) {
|
|
38709
38882
|
return false;
|
|
38710
38883
|
}
|
|
38711
38884
|
const existing_systemModstamp = existing.systemModstamp;
|
|
@@ -38898,8 +39071,8 @@ function validateAdapterConfig$6(untrustedConfig, configPropertyNames) {
|
|
|
38898
39071
|
}
|
|
38899
39072
|
|
|
38900
39073
|
const contextId$2 = `${keyPrefix$1}__${adapterName$4$1}`;
|
|
38901
|
-
const layoutSelections = select$
|
|
38902
|
-
const objectInfoSelections = select$
|
|
39074
|
+
const layoutSelections = select$1z();
|
|
39075
|
+
const objectInfoSelections = select$1B();
|
|
38903
39076
|
function buildSelector(resp) {
|
|
38904
39077
|
const recordSelections = buildSelectionFromRecord(resp.record);
|
|
38905
39078
|
return [
|
|
@@ -39100,7 +39273,7 @@ const select$3$1 = function RecordTemplateCloneRepresentationSelect() {
|
|
|
39100
39273
|
name: 'fields',
|
|
39101
39274
|
kind: 'Link',
|
|
39102
39275
|
map: true,
|
|
39103
|
-
fragment: select$
|
|
39276
|
+
fragment: select$1J()
|
|
39104
39277
|
},
|
|
39105
39278
|
{
|
|
39106
39279
|
name: 'recordTypeId',
|
|
@@ -39114,7 +39287,7 @@ const dynamicSelect$3 = function dynamicRecordTemplateCloneRepresentationSelect(
|
|
|
39114
39287
|
name: 'fields',
|
|
39115
39288
|
kind: 'Link',
|
|
39116
39289
|
map: true,
|
|
39117
|
-
fragment: select$
|
|
39290
|
+
fragment: select$1J()
|
|
39118
39291
|
} : params.fields;
|
|
39119
39292
|
return {
|
|
39120
39293
|
kind: 'Fragment',
|
|
@@ -39244,7 +39417,7 @@ const dynamicSelect$2 = function dynamicRecordDefaultsTemplateCloneRepresentatio
|
|
|
39244
39417
|
name: 'objectInfos',
|
|
39245
39418
|
kind: 'Link',
|
|
39246
39419
|
map: true,
|
|
39247
|
-
fragment: select$
|
|
39420
|
+
fragment: select$1B()
|
|
39248
39421
|
} : params.objectInfos;
|
|
39249
39422
|
const recordPathSelection = params.record === undefined ? {
|
|
39250
39423
|
name: 'record',
|
|
@@ -39634,7 +39807,7 @@ const select$1$1 = function RecordTemplateCreateRepresentationSelect() {
|
|
|
39634
39807
|
name: 'fields',
|
|
39635
39808
|
kind: 'Link',
|
|
39636
39809
|
map: true,
|
|
39637
|
-
fragment: select$
|
|
39810
|
+
fragment: select$1J()
|
|
39638
39811
|
},
|
|
39639
39812
|
{
|
|
39640
39813
|
name: 'recordTypeId',
|
|
@@ -39648,7 +39821,7 @@ const dynamicSelect$1 = function dynamicRecordTemplateCreateRepresentationSelect
|
|
|
39648
39821
|
name: 'fields',
|
|
39649
39822
|
kind: 'Link',
|
|
39650
39823
|
map: true,
|
|
39651
|
-
fragment: select$
|
|
39824
|
+
fragment: select$1J()
|
|
39652
39825
|
} : params.fields;
|
|
39653
39826
|
return {
|
|
39654
39827
|
kind: 'Fragment',
|
|
@@ -39769,7 +39942,7 @@ const dynamicSelect = function dynamicRecordDefaultsTemplateCreateRepresentation
|
|
|
39769
39942
|
name: 'objectInfos',
|
|
39770
39943
|
kind: 'Link',
|
|
39771
39944
|
map: true,
|
|
39772
|
-
fragment: select$
|
|
39945
|
+
fragment: select$1B()
|
|
39773
39946
|
} : params.objectInfos;
|
|
39774
39947
|
const recordPathSelection = params.record === undefined ? {
|
|
39775
39948
|
name: 'record',
|
|
@@ -40160,7 +40333,7 @@ function onResponseSuccess$1(luvio, response, recordIngest, conflictMap) {
|
|
|
40160
40333
|
kind: 'Fragment',
|
|
40161
40334
|
private: [],
|
|
40162
40335
|
selections,
|
|
40163
|
-
version: VERSION$
|
|
40336
|
+
version: VERSION$1a$1,
|
|
40164
40337
|
},
|
|
40165
40338
|
variables: {},
|
|
40166
40339
|
});
|
|
@@ -40398,7 +40571,7 @@ function onResponseSuccess(luvio, response, recordId, recordIngest, conflictMap)
|
|
|
40398
40571
|
kind: 'Fragment',
|
|
40399
40572
|
private: [],
|
|
40400
40573
|
selections: sel,
|
|
40401
|
-
version: VERSION$
|
|
40574
|
+
version: VERSION$1a$1,
|
|
40402
40575
|
},
|
|
40403
40576
|
variables: {},
|
|
40404
40577
|
});
|
|
@@ -40447,7 +40620,7 @@ const factory$2 = (luvio) => {
|
|
|
40447
40620
|
};
|
|
40448
40621
|
};
|
|
40449
40622
|
|
|
40450
|
-
const VERSION$
|
|
40623
|
+
const VERSION$1n = "5f97eb4f2c3f805ef9d98ba7f0530b3e";
|
|
40451
40624
|
const RepresentationType$S = 'ContentDocumentCompositeRepresentation';
|
|
40452
40625
|
function keyBuilder$1W(luvio, config) {
|
|
40453
40626
|
return keyPrefix$1 + '::' + RepresentationType$S + ':' + config.contentDocumentId;
|
|
@@ -40501,7 +40674,7 @@ function normalize(input, existing, path, luvio, store, timestamp) {
|
|
|
40501
40674
|
}, luvio, store, timestamp);
|
|
40502
40675
|
return input;
|
|
40503
40676
|
}
|
|
40504
|
-
function equals$
|
|
40677
|
+
function equals$12(existing, incoming) {
|
|
40505
40678
|
const existing_contentDocument = existing.contentDocument;
|
|
40506
40679
|
const incoming_contentDocument = incoming.contentDocument;
|
|
40507
40680
|
if (!(existing_contentDocument.__ref === incoming_contentDocument.__ref)) {
|
|
@@ -40527,7 +40700,7 @@ function equals$10(existing, incoming) {
|
|
|
40527
40700
|
const ingest$15 = function ContentDocumentCompositeRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
40528
40701
|
const key = keyBuilderFromType$B(luvio, input);
|
|
40529
40702
|
const ttlToUse = path.ttl !== undefined ? path.ttl : 2592000000;
|
|
40530
|
-
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize, "UiApi", VERSION$
|
|
40703
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize, "UiApi", VERSION$1n, RepresentationType$S, equals$12);
|
|
40531
40704
|
return createLink$3(key);
|
|
40532
40705
|
};
|
|
40533
40706
|
function getTypeCacheKeys$18(rootKeySet, luvio, input, fullPathFactory) {
|
|
@@ -40594,11 +40767,11 @@ function createResourceRequest$1$1(config) {
|
|
|
40594
40767
|
priority: 'normal',
|
|
40595
40768
|
};
|
|
40596
40769
|
}
|
|
40597
|
-
const select$
|
|
40770
|
+
const select$1U = function ContentDocumentCompositeRepresentationSelect(body) {
|
|
40598
40771
|
return {
|
|
40599
40772
|
kind: 'Fragment',
|
|
40600
40773
|
private: [],
|
|
40601
|
-
version: VERSION$
|
|
40774
|
+
version: VERSION$1n,
|
|
40602
40775
|
selections: [
|
|
40603
40776
|
{
|
|
40604
40777
|
name: 'contentDocument',
|
|
@@ -40606,7 +40779,7 @@ const select$1S = function ContentDocumentCompositeRepresentationSelect(body) {
|
|
|
40606
40779
|
fragment: {
|
|
40607
40780
|
kind: 'Fragment',
|
|
40608
40781
|
private: [],
|
|
40609
|
-
version: VERSION$
|
|
40782
|
+
version: VERSION$1a$1,
|
|
40610
40783
|
selections: buildSelectionFromRecord(body.contentDocument),
|
|
40611
40784
|
},
|
|
40612
40785
|
},
|
|
@@ -40617,7 +40790,7 @@ const select$1S = function ContentDocumentCompositeRepresentationSelect(body) {
|
|
|
40617
40790
|
fragment: {
|
|
40618
40791
|
kind: 'Fragment',
|
|
40619
40792
|
private: [],
|
|
40620
|
-
version: VERSION$
|
|
40793
|
+
version: VERSION$1a$1,
|
|
40621
40794
|
selections: buildSelectionFromRecord(body.contentDocumentLinks[0] || { fields: {} }),
|
|
40622
40795
|
},
|
|
40623
40796
|
},
|
|
@@ -40627,7 +40800,7 @@ const select$1S = function ContentDocumentCompositeRepresentationSelect(body) {
|
|
|
40627
40800
|
fragment: {
|
|
40628
40801
|
kind: 'Fragment',
|
|
40629
40802
|
private: [],
|
|
40630
|
-
version: VERSION$
|
|
40803
|
+
version: VERSION$1a$1,
|
|
40631
40804
|
selections: buildSelectionFromRecord(body.contentVersion),
|
|
40632
40805
|
},
|
|
40633
40806
|
},
|
|
@@ -40637,7 +40810,7 @@ const select$1S = function ContentDocumentCompositeRepresentationSelect(body) {
|
|
|
40637
40810
|
function ingestSuccess$1$1(luvio, resourceParams, response) {
|
|
40638
40811
|
const { body } = response;
|
|
40639
40812
|
const key = keyBuilderFromType$B(luvio, body);
|
|
40640
|
-
const node = select$
|
|
40813
|
+
const node = select$1U(body);
|
|
40641
40814
|
luvio.storeIngest(key, ingest$15, body);
|
|
40642
40815
|
const snapshot = luvio.storeLookup({
|
|
40643
40816
|
recordId: key,
|
|
@@ -40708,7 +40881,7 @@ function createResourceRequest$13(config) {
|
|
|
40708
40881
|
function ingestSuccess$L(luvio, resourceParams, response) {
|
|
40709
40882
|
const { body } = response;
|
|
40710
40883
|
const key = keyBuilderFromType$B(luvio, body);
|
|
40711
|
-
const node = select$
|
|
40884
|
+
const node = select$1U(body);
|
|
40712
40885
|
luvio.storeIngest(key, ingest$15, body);
|
|
40713
40886
|
const snapshot = luvio.storeLookup({
|
|
40714
40887
|
recordId: key,
|
|
@@ -41365,7 +41538,7 @@ withDefaultLuvio((luvio) => {
|
|
|
41365
41538
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory$1));
|
|
41366
41539
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyQuickActionDefaultsUpdateAvailable', notifyUpdateAvailableFactory));
|
|
41367
41540
|
});
|
|
41368
|
-
// version: 1.
|
|
41541
|
+
// version: 1.237.0-7b19a35c5
|
|
41369
41542
|
|
|
41370
41543
|
var caseSensitiveUserId = '005B0000000GR4OIAW';
|
|
41371
41544
|
|
|
@@ -57920,7 +58093,7 @@ class RecordIngestor {
|
|
|
57920
58093
|
namespace: keyPrefix$1,
|
|
57921
58094
|
representationName: RepresentationType$O,
|
|
57922
58095
|
metadataVersion: DURABLE_METADATA_VERSION,
|
|
57923
|
-
version: VERSION$
|
|
58096
|
+
version: VERSION$1a$1,
|
|
57924
58097
|
};
|
|
57925
58098
|
return this.store.writeRecords(syntheticRecords.map((record) => ({ record, metadata })), overwrite);
|
|
57926
58099
|
}
|
|
@@ -58340,7 +58513,7 @@ register({
|
|
|
58340
58513
|
id: '@salesforce/lds-network-adapter',
|
|
58341
58514
|
instrument: instrument$1,
|
|
58342
58515
|
});
|
|
58343
|
-
// version: 1.
|
|
58516
|
+
// version: 1.237.0-5cc894ce9
|
|
58344
58517
|
|
|
58345
58518
|
const { create: create$2, keys: keys$2 } = Object;
|
|
58346
58519
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -76811,7 +76984,7 @@ register({
|
|
|
76811
76984
|
configuration: { ...configurationForGraphQLAdapters },
|
|
76812
76985
|
instrument,
|
|
76813
76986
|
});
|
|
76814
|
-
// version: 1.
|
|
76987
|
+
// version: 1.237.0-7b19a35c5
|
|
76815
76988
|
|
|
76816
76989
|
// On core the unstable adapters are re-exported with different names,
|
|
76817
76990
|
// we want to match them here.
|
|
@@ -79060,7 +79233,7 @@ withDefaultLuvio((luvio) => {
|
|
|
79060
79233
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
79061
79234
|
graphQLImperative = ldsAdapter;
|
|
79062
79235
|
});
|
|
79063
|
-
// version: 1.
|
|
79236
|
+
// version: 1.237.0-7b19a35c5
|
|
79064
79237
|
|
|
79065
79238
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
79066
79239
|
__proto__: null,
|
|
@@ -79777,4 +79950,4 @@ const { luvio } = getRuntime();
|
|
|
79777
79950
|
setDefaultLuvio({ luvio });
|
|
79778
79951
|
|
|
79779
79952
|
export { createPrimingSession, draftManager, draftQueue, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, subscribeToAdapter };
|
|
79780
|
-
// version: 1.
|
|
79953
|
+
// version: 1.237.0-5cc894ce9
|