@salesforce/lwc-adapters-uiapi 1.207.0 → 1.208.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +688 -2066
- package/package.json +2 -2
package/dist/main.js
CHANGED
|
@@ -364,7 +364,70 @@ var FragmentReadResultState;
|
|
|
364
364
|
({
|
|
365
365
|
state: FragmentReadResultState.Missing,
|
|
366
366
|
});
|
|
367
|
-
|
|
367
|
+
|
|
368
|
+
var ScalarTypes;
|
|
369
|
+
(function (ScalarTypes) {
|
|
370
|
+
ScalarTypes[ScalarTypes["String"] = 0] = "String";
|
|
371
|
+
ScalarTypes[ScalarTypes["Boolean"] = 1] = "Boolean";
|
|
372
|
+
ScalarTypes[ScalarTypes["Number"] = 2] = "Number";
|
|
373
|
+
ScalarTypes[ScalarTypes["Integer"] = 3] = "Integer";
|
|
374
|
+
})(ScalarTypes || (ScalarTypes = {}));
|
|
375
|
+
function isCorrectScalarType(value, type) {
|
|
376
|
+
switch (type) {
|
|
377
|
+
case ScalarTypes.String:
|
|
378
|
+
return typeof value === 'string';
|
|
379
|
+
case ScalarTypes.Boolean:
|
|
380
|
+
return typeof value === 'boolean';
|
|
381
|
+
case ScalarTypes.Number:
|
|
382
|
+
return typeof value === 'number';
|
|
383
|
+
case ScalarTypes.Integer:
|
|
384
|
+
return typeof value === 'number' && Math.floor(value) === value;
|
|
385
|
+
default:
|
|
386
|
+
return false;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
function typeCheckScalars(untrustedConfig, config, scalars) {
|
|
390
|
+
const paramNames = Object.keys(scalars);
|
|
391
|
+
for (const paramName of paramNames) {
|
|
392
|
+
const value = scalars[paramName];
|
|
393
|
+
const untrustedConfig_field = untrustedConfig[paramName];
|
|
394
|
+
if (isCorrectScalarType(untrustedConfig_field, value)) {
|
|
395
|
+
config[paramName] = untrustedConfig_field;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
function typeCheckArrayOfScalars(untrustedConfig, config, scalars) {
|
|
400
|
+
const paramNames = Object.keys(scalars);
|
|
401
|
+
for (const paramName of paramNames) {
|
|
402
|
+
const value = scalars[paramName];
|
|
403
|
+
const untrustedConfig_field = untrustedConfig[paramName];
|
|
404
|
+
if (isArray$1(untrustedConfig_field)) {
|
|
405
|
+
const untrustedConfig_field_array = [];
|
|
406
|
+
for (let i = 0, arrayLength = untrustedConfig_field.length; i < arrayLength; i++) {
|
|
407
|
+
const untrustedConfig_field_item = untrustedConfig_field[i];
|
|
408
|
+
if (isCorrectScalarType(untrustedConfig_field_item, value)) {
|
|
409
|
+
untrustedConfig_field_array.push(untrustedConfig_field_item);
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
config[paramName] = untrustedConfig_field_array;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
function coerceConfig$6(uncoercedConfig, parametersBag) {
|
|
417
|
+
const config = {};
|
|
418
|
+
const paramNames = Object.keys(parametersBag);
|
|
419
|
+
for (const paramName of paramNames) {
|
|
420
|
+
const paramValue = parametersBag[paramName];
|
|
421
|
+
const value = typeof paramValue === 'function'
|
|
422
|
+
? paramValue(uncoercedConfig[paramName])
|
|
423
|
+
: uncoercedConfig[paramName];
|
|
424
|
+
if (value !== undefined) {
|
|
425
|
+
config[paramName] = value;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
return config;
|
|
429
|
+
}
|
|
430
|
+
// engine version: 0.144.2-0928b9a8
|
|
368
431
|
|
|
369
432
|
/**
|
|
370
433
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -12771,125 +12834,33 @@ function createResourceParams$Y(config) {
|
|
|
12771
12834
|
return resourceParams;
|
|
12772
12835
|
}
|
|
12773
12836
|
function coerceConfig$D(config) {
|
|
12774
|
-
|
|
12775
|
-
|
|
12776
|
-
|
|
12777
|
-
|
|
12778
|
-
|
|
12779
|
-
|
|
12780
|
-
|
|
12781
|
-
|
|
12782
|
-
|
|
12783
|
-
|
|
12784
|
-
|
|
12785
|
-
coercedConfig.fields = fields;
|
|
12786
|
-
}
|
|
12787
|
-
const forms = config.forms;
|
|
12788
|
-
if (forms !== undefined) {
|
|
12789
|
-
coercedConfig.forms = forms;
|
|
12790
|
-
}
|
|
12791
|
-
const layoutTypes = toSortedStringArray(config.layoutTypes);
|
|
12792
|
-
if (layoutTypes !== undefined) {
|
|
12793
|
-
coercedConfig.layoutTypes = layoutTypes;
|
|
12794
|
-
}
|
|
12795
|
-
const modes = toSortedStringArray(config.modes);
|
|
12796
|
-
if (modes !== undefined) {
|
|
12797
|
-
coercedConfig.modes = modes;
|
|
12798
|
-
}
|
|
12799
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
12800
|
-
if (optionalFields !== undefined) {
|
|
12801
|
-
coercedConfig.optionalFields = optionalFields;
|
|
12802
|
-
}
|
|
12803
|
-
const pageSize = config.pageSize;
|
|
12804
|
-
if (pageSize !== undefined) {
|
|
12805
|
-
coercedConfig.pageSize = pageSize;
|
|
12806
|
-
}
|
|
12807
|
-
const updateMru = config.updateMru;
|
|
12808
|
-
if (updateMru !== undefined) {
|
|
12809
|
-
coercedConfig.updateMru = updateMru;
|
|
12810
|
-
}
|
|
12811
|
-
return coercedConfig;
|
|
12837
|
+
return coerceConfig$6(config, {
|
|
12838
|
+
'recordId': getRecordId18,
|
|
12839
|
+
'childRelationships': 1,
|
|
12840
|
+
'fields': getFieldApiNamesArray,
|
|
12841
|
+
'forms': 1,
|
|
12842
|
+
'layoutTypes': toSortedStringArray,
|
|
12843
|
+
'modes': toSortedStringArray,
|
|
12844
|
+
'optionalFields': getFieldApiNamesArray,
|
|
12845
|
+
'pageSize': 1,
|
|
12846
|
+
'updateMru': 1,
|
|
12847
|
+
});
|
|
12812
12848
|
}
|
|
12813
12849
|
function typeCheckConfig$12(untrustedConfig) {
|
|
12814
12850
|
const config = {};
|
|
12815
|
-
|
|
12816
|
-
|
|
12817
|
-
|
|
12818
|
-
|
|
12819
|
-
|
|
12820
|
-
|
|
12821
|
-
|
|
12822
|
-
|
|
12823
|
-
|
|
12824
|
-
|
|
12825
|
-
|
|
12826
|
-
|
|
12827
|
-
|
|
12828
|
-
config.childRelationships = untrustedConfig_childRelationships_array;
|
|
12829
|
-
}
|
|
12830
|
-
const untrustedConfig_fields = untrustedConfig.fields;
|
|
12831
|
-
if (ArrayIsArray$1(untrustedConfig_fields)) {
|
|
12832
|
-
const untrustedConfig_fields_array = [];
|
|
12833
|
-
for (let i = 0, arrayLength = untrustedConfig_fields.length; i < arrayLength; i++) {
|
|
12834
|
-
const untrustedConfig_fields_item = untrustedConfig_fields[i];
|
|
12835
|
-
if (typeof untrustedConfig_fields_item === 'string') {
|
|
12836
|
-
untrustedConfig_fields_array.push(untrustedConfig_fields_item);
|
|
12837
|
-
}
|
|
12838
|
-
}
|
|
12839
|
-
config.fields = untrustedConfig_fields_array;
|
|
12840
|
-
}
|
|
12841
|
-
const untrustedConfig_forms = untrustedConfig.forms;
|
|
12842
|
-
if (ArrayIsArray$1(untrustedConfig_forms)) {
|
|
12843
|
-
const untrustedConfig_forms_array = [];
|
|
12844
|
-
for (let i = 0, arrayLength = untrustedConfig_forms.length; i < arrayLength; i++) {
|
|
12845
|
-
const untrustedConfig_forms_item = untrustedConfig_forms[i];
|
|
12846
|
-
if (typeof untrustedConfig_forms_item === 'string') {
|
|
12847
|
-
untrustedConfig_forms_array.push(untrustedConfig_forms_item);
|
|
12848
|
-
}
|
|
12849
|
-
}
|
|
12850
|
-
config.forms = untrustedConfig_forms_array;
|
|
12851
|
-
}
|
|
12852
|
-
const untrustedConfig_layoutTypes = untrustedConfig.layoutTypes;
|
|
12853
|
-
if (ArrayIsArray$1(untrustedConfig_layoutTypes)) {
|
|
12854
|
-
const untrustedConfig_layoutTypes_array = [];
|
|
12855
|
-
for (let i = 0, arrayLength = untrustedConfig_layoutTypes.length; i < arrayLength; i++) {
|
|
12856
|
-
const untrustedConfig_layoutTypes_item = untrustedConfig_layoutTypes[i];
|
|
12857
|
-
if (typeof untrustedConfig_layoutTypes_item === 'string') {
|
|
12858
|
-
untrustedConfig_layoutTypes_array.push(untrustedConfig_layoutTypes_item);
|
|
12859
|
-
}
|
|
12860
|
-
}
|
|
12861
|
-
config.layoutTypes = untrustedConfig_layoutTypes_array;
|
|
12862
|
-
}
|
|
12863
|
-
const untrustedConfig_modes = untrustedConfig.modes;
|
|
12864
|
-
if (ArrayIsArray$1(untrustedConfig_modes)) {
|
|
12865
|
-
const untrustedConfig_modes_array = [];
|
|
12866
|
-
for (let i = 0, arrayLength = untrustedConfig_modes.length; i < arrayLength; i++) {
|
|
12867
|
-
const untrustedConfig_modes_item = untrustedConfig_modes[i];
|
|
12868
|
-
if (typeof untrustedConfig_modes_item === 'string') {
|
|
12869
|
-
untrustedConfig_modes_array.push(untrustedConfig_modes_item);
|
|
12870
|
-
}
|
|
12871
|
-
}
|
|
12872
|
-
config.modes = untrustedConfig_modes_array;
|
|
12873
|
-
}
|
|
12874
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
12875
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
12876
|
-
const untrustedConfig_optionalFields_array = [];
|
|
12877
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
12878
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
12879
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
12880
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
12881
|
-
}
|
|
12882
|
-
}
|
|
12883
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
12884
|
-
}
|
|
12885
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
12886
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
12887
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
12888
|
-
}
|
|
12889
|
-
const untrustedConfig_updateMru = untrustedConfig.updateMru;
|
|
12890
|
-
if (typeof untrustedConfig_updateMru === 'boolean') {
|
|
12891
|
-
config.updateMru = untrustedConfig_updateMru;
|
|
12892
|
-
}
|
|
12851
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
12852
|
+
recordId: 0 /* String */,
|
|
12853
|
+
pageSize: 3 /* Integer */,
|
|
12854
|
+
updateMru: 1 /* Boolean */,
|
|
12855
|
+
});
|
|
12856
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
12857
|
+
childRelationships: 0 /* String */,
|
|
12858
|
+
fields: 0 /* String */,
|
|
12859
|
+
forms: 0 /* String */,
|
|
12860
|
+
layoutTypes: 0 /* String */,
|
|
12861
|
+
modes: 0 /* String */,
|
|
12862
|
+
optionalFields: 0 /* String */,
|
|
12863
|
+
});
|
|
12893
12864
|
return config;
|
|
12894
12865
|
}
|
|
12895
12866
|
function validateAdapterConfig$13(untrustedConfig, configPropertyNames) {
|
|
@@ -14548,88 +14519,29 @@ function createResourceParams$W(config) {
|
|
|
14548
14519
|
return resourceParams;
|
|
14549
14520
|
}
|
|
14550
14521
|
function coerceConfig$C(config) {
|
|
14551
|
-
|
|
14552
|
-
|
|
14553
|
-
|
|
14554
|
-
|
|
14555
|
-
|
|
14556
|
-
|
|
14557
|
-
|
|
14558
|
-
|
|
14559
|
-
}
|
|
14560
|
-
const fields = getFieldApiNamesArray(config.fields);
|
|
14561
|
-
if (fields !== undefined) {
|
|
14562
|
-
coercedConfig.fields = fields;
|
|
14563
|
-
}
|
|
14564
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
14565
|
-
if (optionalFields !== undefined) {
|
|
14566
|
-
coercedConfig.optionalFields = optionalFields;
|
|
14567
|
-
}
|
|
14568
|
-
const pageSize = config.pageSize;
|
|
14569
|
-
if (pageSize !== undefined) {
|
|
14570
|
-
coercedConfig.pageSize = pageSize;
|
|
14571
|
-
}
|
|
14572
|
-
const pageToken = config.pageToken;
|
|
14573
|
-
if (pageToken !== undefined) {
|
|
14574
|
-
coercedConfig.pageToken = pageToken;
|
|
14575
|
-
}
|
|
14576
|
-
const sortBy = getFieldApiNamesArray(config.sortBy);
|
|
14577
|
-
if (sortBy !== undefined) {
|
|
14578
|
-
coercedConfig.sortBy = sortBy;
|
|
14579
|
-
}
|
|
14580
|
-
return coercedConfig;
|
|
14522
|
+
return coerceConfig$6(config, {
|
|
14523
|
+
'listViewApiName': 1,
|
|
14524
|
+
'objectApiName': getObjectApiName$1,
|
|
14525
|
+
'fields': getFieldApiNamesArray,
|
|
14526
|
+
'optionalFields': getFieldApiNamesArray,
|
|
14527
|
+
'pageSize': 1,
|
|
14528
|
+
'pageToken': 1,
|
|
14529
|
+
'sortBy': getFieldApiNamesArray,
|
|
14530
|
+
});
|
|
14581
14531
|
}
|
|
14582
14532
|
function typeCheckConfig$11(untrustedConfig) {
|
|
14583
14533
|
const config = {};
|
|
14584
|
-
|
|
14585
|
-
|
|
14586
|
-
|
|
14587
|
-
|
|
14588
|
-
|
|
14589
|
-
|
|
14590
|
-
|
|
14591
|
-
|
|
14592
|
-
|
|
14593
|
-
|
|
14594
|
-
|
|
14595
|
-
for (let i = 0, arrayLength = untrustedConfig_fields.length; i < arrayLength; i++) {
|
|
14596
|
-
const untrustedConfig_fields_item = untrustedConfig_fields[i];
|
|
14597
|
-
if (typeof untrustedConfig_fields_item === 'string') {
|
|
14598
|
-
untrustedConfig_fields_array.push(untrustedConfig_fields_item);
|
|
14599
|
-
}
|
|
14600
|
-
}
|
|
14601
|
-
config.fields = untrustedConfig_fields_array;
|
|
14602
|
-
}
|
|
14603
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
14604
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
14605
|
-
const untrustedConfig_optionalFields_array = [];
|
|
14606
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
14607
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
14608
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
14609
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
14610
|
-
}
|
|
14611
|
-
}
|
|
14612
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
14613
|
-
}
|
|
14614
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
14615
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
14616
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
14617
|
-
}
|
|
14618
|
-
const untrustedConfig_pageToken = untrustedConfig.pageToken;
|
|
14619
|
-
if (typeof untrustedConfig_pageToken === 'string') {
|
|
14620
|
-
config.pageToken = untrustedConfig_pageToken;
|
|
14621
|
-
}
|
|
14622
|
-
const untrustedConfig_sortBy = untrustedConfig.sortBy;
|
|
14623
|
-
if (ArrayIsArray$1(untrustedConfig_sortBy)) {
|
|
14624
|
-
const untrustedConfig_sortBy_array = [];
|
|
14625
|
-
for (let i = 0, arrayLength = untrustedConfig_sortBy.length; i < arrayLength; i++) {
|
|
14626
|
-
const untrustedConfig_sortBy_item = untrustedConfig_sortBy[i];
|
|
14627
|
-
if (typeof untrustedConfig_sortBy_item === 'string') {
|
|
14628
|
-
untrustedConfig_sortBy_array.push(untrustedConfig_sortBy_item);
|
|
14629
|
-
}
|
|
14630
|
-
}
|
|
14631
|
-
config.sortBy = untrustedConfig_sortBy_array;
|
|
14632
|
-
}
|
|
14534
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
14535
|
+
listViewApiName: 0 /* String */,
|
|
14536
|
+
objectApiName: 0 /* String */,
|
|
14537
|
+
pageSize: 3 /* Integer */,
|
|
14538
|
+
pageToken: 0 /* String */,
|
|
14539
|
+
});
|
|
14540
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
14541
|
+
fields: 0 /* String */,
|
|
14542
|
+
optionalFields: 0 /* String */,
|
|
14543
|
+
sortBy: 0 /* String */,
|
|
14544
|
+
});
|
|
14633
14545
|
return config;
|
|
14634
14546
|
}
|
|
14635
14547
|
function validateAdapterConfig$12(untrustedConfig, configPropertyNames) {
|
|
@@ -14687,80 +14599,27 @@ function createResourceParams$V(config) {
|
|
|
14687
14599
|
return resourceParams;
|
|
14688
14600
|
}
|
|
14689
14601
|
function coerceConfig$B(config) {
|
|
14690
|
-
|
|
14691
|
-
|
|
14692
|
-
|
|
14693
|
-
|
|
14694
|
-
|
|
14695
|
-
|
|
14696
|
-
|
|
14697
|
-
|
|
14698
|
-
}
|
|
14699
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
14700
|
-
if (optionalFields !== undefined) {
|
|
14701
|
-
coercedConfig.optionalFields = optionalFields;
|
|
14702
|
-
}
|
|
14703
|
-
const pageSize = config.pageSize;
|
|
14704
|
-
if (pageSize !== undefined) {
|
|
14705
|
-
coercedConfig.pageSize = pageSize;
|
|
14706
|
-
}
|
|
14707
|
-
const pageToken = config.pageToken;
|
|
14708
|
-
if (pageToken !== undefined) {
|
|
14709
|
-
coercedConfig.pageToken = pageToken;
|
|
14710
|
-
}
|
|
14711
|
-
const sortBy = getFieldApiNamesArray(config.sortBy);
|
|
14712
|
-
if (sortBy !== undefined) {
|
|
14713
|
-
coercedConfig.sortBy = sortBy;
|
|
14714
|
-
}
|
|
14715
|
-
return coercedConfig;
|
|
14602
|
+
return coerceConfig$6(config, {
|
|
14603
|
+
'listViewId': 1,
|
|
14604
|
+
'fields': getFieldApiNamesArray,
|
|
14605
|
+
'optionalFields': getFieldApiNamesArray,
|
|
14606
|
+
'pageSize': 1,
|
|
14607
|
+
'pageToken': 1,
|
|
14608
|
+
'sortBy': getFieldApiNamesArray,
|
|
14609
|
+
});
|
|
14716
14610
|
}
|
|
14717
14611
|
function typeCheckConfig$10(untrustedConfig) {
|
|
14718
14612
|
const config = {};
|
|
14719
|
-
|
|
14720
|
-
|
|
14721
|
-
|
|
14722
|
-
|
|
14723
|
-
|
|
14724
|
-
|
|
14725
|
-
|
|
14726
|
-
|
|
14727
|
-
|
|
14728
|
-
|
|
14729
|
-
untrustedConfig_fields_array.push(untrustedConfig_fields_item);
|
|
14730
|
-
}
|
|
14731
|
-
}
|
|
14732
|
-
config.fields = untrustedConfig_fields_array;
|
|
14733
|
-
}
|
|
14734
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
14735
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
14736
|
-
const untrustedConfig_optionalFields_array = [];
|
|
14737
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
14738
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
14739
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
14740
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
14741
|
-
}
|
|
14742
|
-
}
|
|
14743
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
14744
|
-
}
|
|
14745
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
14746
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
14747
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
14748
|
-
}
|
|
14749
|
-
const untrustedConfig_pageToken = untrustedConfig.pageToken;
|
|
14750
|
-
if (typeof untrustedConfig_pageToken === 'string') {
|
|
14751
|
-
config.pageToken = untrustedConfig_pageToken;
|
|
14752
|
-
}
|
|
14753
|
-
const untrustedConfig_sortBy = untrustedConfig.sortBy;
|
|
14754
|
-
if (ArrayIsArray$1(untrustedConfig_sortBy)) {
|
|
14755
|
-
const untrustedConfig_sortBy_array = [];
|
|
14756
|
-
for (let i = 0, arrayLength = untrustedConfig_sortBy.length; i < arrayLength; i++) {
|
|
14757
|
-
const untrustedConfig_sortBy_item = untrustedConfig_sortBy[i];
|
|
14758
|
-
if (typeof untrustedConfig_sortBy_item === 'string') {
|
|
14759
|
-
untrustedConfig_sortBy_array.push(untrustedConfig_sortBy_item);
|
|
14760
|
-
}
|
|
14761
|
-
}
|
|
14762
|
-
config.sortBy = untrustedConfig_sortBy_array;
|
|
14763
|
-
}
|
|
14613
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
14614
|
+
listViewId: 0 /* String */,
|
|
14615
|
+
pageSize: 3 /* Integer */,
|
|
14616
|
+
pageToken: 0 /* String */,
|
|
14617
|
+
});
|
|
14618
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
14619
|
+
fields: 0 /* String */,
|
|
14620
|
+
optionalFields: 0 /* String */,
|
|
14621
|
+
sortBy: 0 /* String */,
|
|
14622
|
+
});
|
|
14764
14623
|
return config;
|
|
14765
14624
|
}
|
|
14766
14625
|
function validateAdapterConfig$11(untrustedConfig, configPropertyNames) {
|
|
@@ -15889,28 +15748,13 @@ function createResourceParams$U(config) {
|
|
|
15889
15748
|
return resourceParams;
|
|
15890
15749
|
}
|
|
15891
15750
|
function coerceConfig$A(config) {
|
|
15892
|
-
|
|
15893
|
-
|
|
15894
|
-
|
|
15895
|
-
|
|
15896
|
-
|
|
15897
|
-
|
|
15898
|
-
|
|
15899
|
-
coercedConfig.pageSize = pageSize;
|
|
15900
|
-
}
|
|
15901
|
-
const pageToken = config.pageToken;
|
|
15902
|
-
if (pageToken !== undefined) {
|
|
15903
|
-
coercedConfig.pageToken = pageToken;
|
|
15904
|
-
}
|
|
15905
|
-
const q = config.q;
|
|
15906
|
-
if (q !== undefined) {
|
|
15907
|
-
coercedConfig.q = q;
|
|
15908
|
-
}
|
|
15909
|
-
const recentListsOnly = config.recentListsOnly;
|
|
15910
|
-
if (recentListsOnly !== undefined) {
|
|
15911
|
-
coercedConfig.recentListsOnly = recentListsOnly;
|
|
15912
|
-
}
|
|
15913
|
-
return coercedConfig;
|
|
15751
|
+
return coerceConfig$6(config, {
|
|
15752
|
+
'objectApiName': getObjectApiName$1,
|
|
15753
|
+
'pageSize': 1,
|
|
15754
|
+
'pageToken': 1,
|
|
15755
|
+
'q': 1,
|
|
15756
|
+
'recentListsOnly': 1,
|
|
15757
|
+
});
|
|
15914
15758
|
}
|
|
15915
15759
|
function keyBuilder$2T(luvio, config) {
|
|
15916
15760
|
const resourceParams = createResourceParams$U(config);
|
|
@@ -15918,26 +15762,13 @@ function keyBuilder$2T(luvio, config) {
|
|
|
15918
15762
|
}
|
|
15919
15763
|
function typeCheckConfig$$(untrustedConfig) {
|
|
15920
15764
|
const config = {};
|
|
15921
|
-
|
|
15922
|
-
|
|
15923
|
-
|
|
15924
|
-
|
|
15925
|
-
|
|
15926
|
-
|
|
15927
|
-
|
|
15928
|
-
}
|
|
15929
|
-
const untrustedConfig_pageToken = untrustedConfig.pageToken;
|
|
15930
|
-
if (typeof untrustedConfig_pageToken === 'string') {
|
|
15931
|
-
config.pageToken = untrustedConfig_pageToken;
|
|
15932
|
-
}
|
|
15933
|
-
const untrustedConfig_q = untrustedConfig.q;
|
|
15934
|
-
if (typeof untrustedConfig_q === 'string') {
|
|
15935
|
-
config.q = untrustedConfig_q;
|
|
15936
|
-
}
|
|
15937
|
-
const untrustedConfig_recentListsOnly = untrustedConfig.recentListsOnly;
|
|
15938
|
-
if (typeof untrustedConfig_recentListsOnly === 'boolean') {
|
|
15939
|
-
config.recentListsOnly = untrustedConfig_recentListsOnly;
|
|
15940
|
-
}
|
|
15765
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
15766
|
+
objectApiName: 0 /* String */,
|
|
15767
|
+
pageSize: 3 /* Integer */,
|
|
15768
|
+
pageToken: 0 /* String */,
|
|
15769
|
+
q: 0 /* String */,
|
|
15770
|
+
recentListsOnly: 1 /* Boolean */,
|
|
15771
|
+
});
|
|
15941
15772
|
return config;
|
|
15942
15773
|
}
|
|
15943
15774
|
function validateAdapterConfig$10(untrustedConfig, configPropertyNames) {
|
|
@@ -16152,80 +15983,27 @@ function createResourceParams$T(config) {
|
|
|
16152
15983
|
return resourceParams;
|
|
16153
15984
|
}
|
|
16154
15985
|
function coerceConfig$z(config) {
|
|
16155
|
-
|
|
16156
|
-
|
|
16157
|
-
|
|
16158
|
-
|
|
16159
|
-
|
|
16160
|
-
|
|
16161
|
-
|
|
16162
|
-
|
|
16163
|
-
}
|
|
16164
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
16165
|
-
if (optionalFields !== undefined) {
|
|
16166
|
-
coercedConfig.optionalFields = optionalFields;
|
|
16167
|
-
}
|
|
16168
|
-
const pageSize = config.pageSize;
|
|
16169
|
-
if (pageSize !== undefined) {
|
|
16170
|
-
coercedConfig.pageSize = pageSize;
|
|
16171
|
-
}
|
|
16172
|
-
const pageToken = config.pageToken;
|
|
16173
|
-
if (pageToken !== undefined) {
|
|
16174
|
-
coercedConfig.pageToken = pageToken;
|
|
16175
|
-
}
|
|
16176
|
-
const sortBy = getFieldApiNamesArray(config.sortBy);
|
|
16177
|
-
if (sortBy !== undefined) {
|
|
16178
|
-
coercedConfig.sortBy = sortBy;
|
|
16179
|
-
}
|
|
16180
|
-
return coercedConfig;
|
|
15986
|
+
return coerceConfig$6(config, {
|
|
15987
|
+
'objectApiName': getObjectApiName$1,
|
|
15988
|
+
'fields': getFieldApiNamesArray,
|
|
15989
|
+
'optionalFields': getFieldApiNamesArray,
|
|
15990
|
+
'pageSize': 1,
|
|
15991
|
+
'pageToken': 1,
|
|
15992
|
+
'sortBy': getFieldApiNamesArray,
|
|
15993
|
+
});
|
|
16181
15994
|
}
|
|
16182
15995
|
function typeCheckConfig$_(untrustedConfig) {
|
|
16183
15996
|
const config = {};
|
|
16184
|
-
|
|
16185
|
-
|
|
16186
|
-
|
|
16187
|
-
|
|
16188
|
-
|
|
16189
|
-
|
|
16190
|
-
|
|
16191
|
-
|
|
16192
|
-
|
|
16193
|
-
|
|
16194
|
-
untrustedConfig_fields_array.push(untrustedConfig_fields_item);
|
|
16195
|
-
}
|
|
16196
|
-
}
|
|
16197
|
-
config.fields = untrustedConfig_fields_array;
|
|
16198
|
-
}
|
|
16199
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
16200
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
16201
|
-
const untrustedConfig_optionalFields_array = [];
|
|
16202
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
16203
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
16204
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
16205
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
16206
|
-
}
|
|
16207
|
-
}
|
|
16208
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
16209
|
-
}
|
|
16210
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
16211
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
16212
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
16213
|
-
}
|
|
16214
|
-
const untrustedConfig_pageToken = untrustedConfig.pageToken;
|
|
16215
|
-
if (typeof untrustedConfig_pageToken === 'string') {
|
|
16216
|
-
config.pageToken = untrustedConfig_pageToken;
|
|
16217
|
-
}
|
|
16218
|
-
const untrustedConfig_sortBy = untrustedConfig.sortBy;
|
|
16219
|
-
if (ArrayIsArray$1(untrustedConfig_sortBy)) {
|
|
16220
|
-
const untrustedConfig_sortBy_array = [];
|
|
16221
|
-
for (let i = 0, arrayLength = untrustedConfig_sortBy.length; i < arrayLength; i++) {
|
|
16222
|
-
const untrustedConfig_sortBy_item = untrustedConfig_sortBy[i];
|
|
16223
|
-
if (typeof untrustedConfig_sortBy_item === 'string') {
|
|
16224
|
-
untrustedConfig_sortBy_array.push(untrustedConfig_sortBy_item);
|
|
16225
|
-
}
|
|
16226
|
-
}
|
|
16227
|
-
config.sortBy = untrustedConfig_sortBy_array;
|
|
16228
|
-
}
|
|
15997
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
15998
|
+
objectApiName: 0 /* String */,
|
|
15999
|
+
pageSize: 3 /* Integer */,
|
|
16000
|
+
pageToken: 0 /* String */,
|
|
16001
|
+
});
|
|
16002
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
16003
|
+
fields: 0 /* String */,
|
|
16004
|
+
optionalFields: 0 /* String */,
|
|
16005
|
+
sortBy: 0 /* String */,
|
|
16006
|
+
});
|
|
16229
16007
|
return config;
|
|
16230
16008
|
}
|
|
16231
16009
|
function validateAdapterConfig$$(untrustedConfig, configPropertyNames) {
|
|
@@ -18009,12 +17787,9 @@ function createResourceParams$S(config) {
|
|
|
18009
17787
|
return resourceParams;
|
|
18010
17788
|
}
|
|
18011
17789
|
function coerceConfig$y(config) {
|
|
18012
|
-
|
|
18013
|
-
|
|
18014
|
-
|
|
18015
|
-
coercedConfig.objectApiName = objectApiName;
|
|
18016
|
-
}
|
|
18017
|
-
return coercedConfig;
|
|
17790
|
+
return coerceConfig$6(config, {
|
|
17791
|
+
'objectApiName': getObjectApiName$1,
|
|
17792
|
+
});
|
|
18018
17793
|
}
|
|
18019
17794
|
function keyBuilder$2P(luvio, config) {
|
|
18020
17795
|
const resourceParams = createResourceParams$S(config);
|
|
@@ -18022,10 +17797,9 @@ function keyBuilder$2P(luvio, config) {
|
|
|
18022
17797
|
}
|
|
18023
17798
|
function typeCheckConfig$Z(untrustedConfig) {
|
|
18024
17799
|
const config = {};
|
|
18025
|
-
|
|
18026
|
-
|
|
18027
|
-
|
|
18028
|
-
}
|
|
17800
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
17801
|
+
objectApiName: 0 /* String */,
|
|
17802
|
+
});
|
|
18029
17803
|
return config;
|
|
18030
17804
|
}
|
|
18031
17805
|
function validateAdapterConfig$_(untrustedConfig, configPropertyNames) {
|
|
@@ -19119,110 +18893,31 @@ function getRecordId18Array(value) {
|
|
|
19119
18893
|
}
|
|
19120
18894
|
|
|
19121
18895
|
function coerceConfig$x(config) {
|
|
19122
|
-
|
|
19123
|
-
|
|
19124
|
-
|
|
19125
|
-
|
|
19126
|
-
|
|
19127
|
-
|
|
19128
|
-
|
|
19129
|
-
|
|
19130
|
-
|
|
19131
|
-
|
|
19132
|
-
if (formFactor !== undefined) {
|
|
19133
|
-
coercedConfig.formFactor = formFactor;
|
|
19134
|
-
}
|
|
19135
|
-
const layoutTypes = toSortedStringArray(config.layoutTypes);
|
|
19136
|
-
if (layoutTypes !== undefined) {
|
|
19137
|
-
coercedConfig.layoutTypes = layoutTypes;
|
|
19138
|
-
}
|
|
19139
|
-
const modes = toSortedStringArray(config.modes);
|
|
19140
|
-
if (modes !== undefined) {
|
|
19141
|
-
coercedConfig.modes = modes;
|
|
19142
|
-
}
|
|
19143
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
19144
|
-
if (optionalFields !== undefined) {
|
|
19145
|
-
coercedConfig.optionalFields = optionalFields;
|
|
19146
|
-
}
|
|
19147
|
-
const pageSize = config.pageSize;
|
|
19148
|
-
if (pageSize !== undefined) {
|
|
19149
|
-
coercedConfig.pageSize = pageSize;
|
|
19150
|
-
}
|
|
19151
|
-
const updateMru = config.updateMru;
|
|
19152
|
-
if (updateMru !== undefined) {
|
|
19153
|
-
coercedConfig.updateMru = updateMru;
|
|
19154
|
-
}
|
|
19155
|
-
return coercedConfig;
|
|
18896
|
+
return coerceConfig$6(config, {
|
|
18897
|
+
'recordIds': getRecordId18Array,
|
|
18898
|
+
'childRelationships': 1,
|
|
18899
|
+
'formFactor': 1,
|
|
18900
|
+
'layoutTypes': toSortedStringArray,
|
|
18901
|
+
'modes': toSortedStringArray,
|
|
18902
|
+
'optionalFields': getFieldApiNamesArray,
|
|
18903
|
+
'pageSize': 1,
|
|
18904
|
+
'updateMru': 1,
|
|
18905
|
+
});
|
|
19156
18906
|
}
|
|
19157
18907
|
function typeCheckConfig$Y(untrustedConfig) {
|
|
19158
18908
|
const config = {};
|
|
19159
|
-
|
|
19160
|
-
|
|
19161
|
-
|
|
19162
|
-
|
|
19163
|
-
|
|
19164
|
-
|
|
19165
|
-
|
|
19166
|
-
|
|
19167
|
-
|
|
19168
|
-
|
|
19169
|
-
|
|
19170
|
-
|
|
19171
|
-
if (ArrayIsArray$1(untrustedConfig_childRelationships)) {
|
|
19172
|
-
const untrustedConfig_childRelationships_array = [];
|
|
19173
|
-
for (let i = 0, arrayLength = untrustedConfig_childRelationships.length; i < arrayLength; i++) {
|
|
19174
|
-
const untrustedConfig_childRelationships_item = untrustedConfig_childRelationships[i];
|
|
19175
|
-
if (typeof untrustedConfig_childRelationships_item === 'string') {
|
|
19176
|
-
untrustedConfig_childRelationships_array.push(untrustedConfig_childRelationships_item);
|
|
19177
|
-
}
|
|
19178
|
-
}
|
|
19179
|
-
config.childRelationships = untrustedConfig_childRelationships_array;
|
|
19180
|
-
}
|
|
19181
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
19182
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
19183
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
19184
|
-
}
|
|
19185
|
-
const untrustedConfig_layoutTypes = untrustedConfig.layoutTypes;
|
|
19186
|
-
if (ArrayIsArray$1(untrustedConfig_layoutTypes)) {
|
|
19187
|
-
const untrustedConfig_layoutTypes_array = [];
|
|
19188
|
-
for (let i = 0, arrayLength = untrustedConfig_layoutTypes.length; i < arrayLength; i++) {
|
|
19189
|
-
const untrustedConfig_layoutTypes_item = untrustedConfig_layoutTypes[i];
|
|
19190
|
-
if (typeof untrustedConfig_layoutTypes_item === 'string') {
|
|
19191
|
-
untrustedConfig_layoutTypes_array.push(untrustedConfig_layoutTypes_item);
|
|
19192
|
-
}
|
|
19193
|
-
}
|
|
19194
|
-
config.layoutTypes = untrustedConfig_layoutTypes_array;
|
|
19195
|
-
}
|
|
19196
|
-
const untrustedConfig_modes = untrustedConfig.modes;
|
|
19197
|
-
if (ArrayIsArray$1(untrustedConfig_modes)) {
|
|
19198
|
-
const untrustedConfig_modes_array = [];
|
|
19199
|
-
for (let i = 0, arrayLength = untrustedConfig_modes.length; i < arrayLength; i++) {
|
|
19200
|
-
const untrustedConfig_modes_item = untrustedConfig_modes[i];
|
|
19201
|
-
if (typeof untrustedConfig_modes_item === 'string') {
|
|
19202
|
-
untrustedConfig_modes_array.push(untrustedConfig_modes_item);
|
|
19203
|
-
}
|
|
19204
|
-
}
|
|
19205
|
-
config.modes = untrustedConfig_modes_array;
|
|
19206
|
-
}
|
|
19207
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
19208
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
19209
|
-
const untrustedConfig_optionalFields_array = [];
|
|
19210
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
19211
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
19212
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
19213
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
19214
|
-
}
|
|
19215
|
-
}
|
|
19216
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
19217
|
-
}
|
|
19218
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
19219
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
19220
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
19221
|
-
}
|
|
19222
|
-
const untrustedConfig_updateMru = untrustedConfig.updateMru;
|
|
19223
|
-
if (typeof untrustedConfig_updateMru === 'boolean') {
|
|
19224
|
-
config.updateMru = untrustedConfig_updateMru;
|
|
19225
|
-
}
|
|
18909
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
18910
|
+
formFactor: 0 /* String */,
|
|
18911
|
+
pageSize: 3 /* Integer */,
|
|
18912
|
+
updateMru: 1 /* Boolean */,
|
|
18913
|
+
});
|
|
18914
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
18915
|
+
recordIds: 0 /* String */,
|
|
18916
|
+
childRelationships: 0 /* String */,
|
|
18917
|
+
layoutTypes: 0 /* String */,
|
|
18918
|
+
modes: 0 /* String */,
|
|
18919
|
+
optionalFields: 0 /* String */,
|
|
18920
|
+
});
|
|
19226
18921
|
return config;
|
|
19227
18922
|
}
|
|
19228
18923
|
function validateAdapterConfig$Z(untrustedConfig, configPropertyNames) {
|
|
@@ -21464,28 +21159,13 @@ function createResourceParams$R(config) {
|
|
|
21464
21159
|
return resourceParams;
|
|
21465
21160
|
}
|
|
21466
21161
|
function coerceConfig$w(config) {
|
|
21467
|
-
|
|
21468
|
-
|
|
21469
|
-
|
|
21470
|
-
|
|
21471
|
-
|
|
21472
|
-
|
|
21473
|
-
|
|
21474
|
-
coercedConfig.apiNames = apiNames;
|
|
21475
|
-
}
|
|
21476
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
21477
|
-
if (formFactor !== undefined) {
|
|
21478
|
-
coercedConfig.formFactor = formFactor;
|
|
21479
|
-
}
|
|
21480
|
-
const retrievalMode = config.retrievalMode;
|
|
21481
|
-
if (retrievalMode !== undefined) {
|
|
21482
|
-
coercedConfig.retrievalMode = retrievalMode;
|
|
21483
|
-
}
|
|
21484
|
-
const sections = toSortedStringArray(config.sections);
|
|
21485
|
-
if (sections !== undefined) {
|
|
21486
|
-
coercedConfig.sections = sections;
|
|
21487
|
-
}
|
|
21488
|
-
return coercedConfig;
|
|
21162
|
+
return coerceConfig$6(config, {
|
|
21163
|
+
'actionTypes': 1,
|
|
21164
|
+
'apiNames': toSortedStringArrayAllowEmpty,
|
|
21165
|
+
'formFactor': coerceFormFactor,
|
|
21166
|
+
'retrievalMode': 1,
|
|
21167
|
+
'sections': toSortedStringArray,
|
|
21168
|
+
});
|
|
21489
21169
|
}
|
|
21490
21170
|
function keyBuilder$2H(luvio, config) {
|
|
21491
21171
|
const resourceParams = createResourceParams$R(config);
|
|
@@ -21493,47 +21173,15 @@ function keyBuilder$2H(luvio, config) {
|
|
|
21493
21173
|
}
|
|
21494
21174
|
function typeCheckConfig$X(untrustedConfig) {
|
|
21495
21175
|
const config = {};
|
|
21496
|
-
|
|
21497
|
-
|
|
21498
|
-
|
|
21499
|
-
|
|
21500
|
-
|
|
21501
|
-
|
|
21502
|
-
|
|
21503
|
-
|
|
21504
|
-
|
|
21505
|
-
config.actionTypes = untrustedConfig_actionTypes_array;
|
|
21506
|
-
}
|
|
21507
|
-
const untrustedConfig_apiNames = untrustedConfig.apiNames;
|
|
21508
|
-
if (ArrayIsArray$1(untrustedConfig_apiNames)) {
|
|
21509
|
-
const untrustedConfig_apiNames_array = [];
|
|
21510
|
-
for (let i = 0, arrayLength = untrustedConfig_apiNames.length; i < arrayLength; i++) {
|
|
21511
|
-
const untrustedConfig_apiNames_item = untrustedConfig_apiNames[i];
|
|
21512
|
-
if (typeof untrustedConfig_apiNames_item === 'string') {
|
|
21513
|
-
untrustedConfig_apiNames_array.push(untrustedConfig_apiNames_item);
|
|
21514
|
-
}
|
|
21515
|
-
}
|
|
21516
|
-
config.apiNames = untrustedConfig_apiNames_array;
|
|
21517
|
-
}
|
|
21518
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
21519
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
21520
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
21521
|
-
}
|
|
21522
|
-
const untrustedConfig_retrievalMode = untrustedConfig.retrievalMode;
|
|
21523
|
-
if (typeof untrustedConfig_retrievalMode === 'string') {
|
|
21524
|
-
config.retrievalMode = untrustedConfig_retrievalMode;
|
|
21525
|
-
}
|
|
21526
|
-
const untrustedConfig_sections = untrustedConfig.sections;
|
|
21527
|
-
if (ArrayIsArray$1(untrustedConfig_sections)) {
|
|
21528
|
-
const untrustedConfig_sections_array = [];
|
|
21529
|
-
for (let i = 0, arrayLength = untrustedConfig_sections.length; i < arrayLength; i++) {
|
|
21530
|
-
const untrustedConfig_sections_item = untrustedConfig_sections[i];
|
|
21531
|
-
if (typeof untrustedConfig_sections_item === 'string') {
|
|
21532
|
-
untrustedConfig_sections_array.push(untrustedConfig_sections_item);
|
|
21533
|
-
}
|
|
21534
|
-
}
|
|
21535
|
-
config.sections = untrustedConfig_sections_array;
|
|
21536
|
-
}
|
|
21176
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
21177
|
+
formFactor: 0 /* String */,
|
|
21178
|
+
retrievalMode: 0 /* String */,
|
|
21179
|
+
});
|
|
21180
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
21181
|
+
actionTypes: 0 /* String */,
|
|
21182
|
+
apiNames: 0 /* String */,
|
|
21183
|
+
sections: 0 /* String */,
|
|
21184
|
+
});
|
|
21537
21185
|
return config;
|
|
21538
21186
|
}
|
|
21539
21187
|
function validateAdapterConfig$Y(untrustedConfig, configPropertyNames) {
|
|
@@ -21804,10 +21452,9 @@ function keyBuilder$2E(luvio, config) {
|
|
|
21804
21452
|
}
|
|
21805
21453
|
function typeCheckConfig$W(untrustedConfig) {
|
|
21806
21454
|
const config = {};
|
|
21807
|
-
|
|
21808
|
-
|
|
21809
|
-
|
|
21810
|
-
}
|
|
21455
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
21456
|
+
actionApiName: 0 /* String */,
|
|
21457
|
+
});
|
|
21811
21458
|
return config;
|
|
21812
21459
|
}
|
|
21813
21460
|
function validateAdapterConfig$X(untrustedConfig, configPropertyNames) {
|
|
@@ -21998,24 +21645,12 @@ function createResourceParams$P(config) {
|
|
|
21998
21645
|
return resourceParams;
|
|
21999
21646
|
}
|
|
22000
21647
|
function coerceConfig$v(config) {
|
|
22001
|
-
|
|
22002
|
-
|
|
22003
|
-
|
|
22004
|
-
|
|
22005
|
-
|
|
22006
|
-
|
|
22007
|
-
if (actionTypes !== undefined) {
|
|
22008
|
-
coercedConfig.actionTypes = actionTypes;
|
|
22009
|
-
}
|
|
22010
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
22011
|
-
if (formFactor !== undefined) {
|
|
22012
|
-
coercedConfig.formFactor = formFactor;
|
|
22013
|
-
}
|
|
22014
|
-
const sections = toSortedStringArray(config.sections);
|
|
22015
|
-
if (sections !== undefined) {
|
|
22016
|
-
coercedConfig.sections = sections;
|
|
22017
|
-
}
|
|
22018
|
-
return coercedConfig;
|
|
21648
|
+
return coerceConfig$6(config, {
|
|
21649
|
+
'objectApiNames': getSortedObjectApiNamesArray,
|
|
21650
|
+
'actionTypes': toSortedStringArray,
|
|
21651
|
+
'formFactor': coerceFormFactor,
|
|
21652
|
+
'sections': toSortedStringArray,
|
|
21653
|
+
});
|
|
22019
21654
|
}
|
|
22020
21655
|
function keyBuilder$2C(luvio, config) {
|
|
22021
21656
|
const resourceParams = createResourceParams$P(config);
|
|
@@ -22023,43 +21658,14 @@ function keyBuilder$2C(luvio, config) {
|
|
|
22023
21658
|
}
|
|
22024
21659
|
function typeCheckConfig$V(untrustedConfig) {
|
|
22025
21660
|
const config = {};
|
|
22026
|
-
|
|
22027
|
-
|
|
22028
|
-
|
|
22029
|
-
|
|
22030
|
-
|
|
22031
|
-
|
|
22032
|
-
|
|
22033
|
-
|
|
22034
|
-
}
|
|
22035
|
-
config.objectApiNames = untrustedConfig_objectApiNames_array;
|
|
22036
|
-
}
|
|
22037
|
-
const untrustedConfig_actionTypes = untrustedConfig.actionTypes;
|
|
22038
|
-
if (ArrayIsArray$1(untrustedConfig_actionTypes)) {
|
|
22039
|
-
const untrustedConfig_actionTypes_array = [];
|
|
22040
|
-
for (let i = 0, arrayLength = untrustedConfig_actionTypes.length; i < arrayLength; i++) {
|
|
22041
|
-
const untrustedConfig_actionTypes_item = untrustedConfig_actionTypes[i];
|
|
22042
|
-
if (typeof untrustedConfig_actionTypes_item === 'string') {
|
|
22043
|
-
untrustedConfig_actionTypes_array.push(untrustedConfig_actionTypes_item);
|
|
22044
|
-
}
|
|
22045
|
-
}
|
|
22046
|
-
config.actionTypes = untrustedConfig_actionTypes_array;
|
|
22047
|
-
}
|
|
22048
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
22049
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
22050
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
22051
|
-
}
|
|
22052
|
-
const untrustedConfig_sections = untrustedConfig.sections;
|
|
22053
|
-
if (ArrayIsArray$1(untrustedConfig_sections)) {
|
|
22054
|
-
const untrustedConfig_sections_array = [];
|
|
22055
|
-
for (let i = 0, arrayLength = untrustedConfig_sections.length; i < arrayLength; i++) {
|
|
22056
|
-
const untrustedConfig_sections_item = untrustedConfig_sections[i];
|
|
22057
|
-
if (typeof untrustedConfig_sections_item === 'string') {
|
|
22058
|
-
untrustedConfig_sections_array.push(untrustedConfig_sections_item);
|
|
22059
|
-
}
|
|
22060
|
-
}
|
|
22061
|
-
config.sections = untrustedConfig_sections_array;
|
|
22062
|
-
}
|
|
21661
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
21662
|
+
formFactor: 0 /* String */,
|
|
21663
|
+
});
|
|
21664
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
21665
|
+
objectApiNames: 0 /* String */,
|
|
21666
|
+
actionTypes: 0 /* String */,
|
|
21667
|
+
sections: 0 /* String */,
|
|
21668
|
+
});
|
|
22063
21669
|
return config;
|
|
22064
21670
|
}
|
|
22065
21671
|
function validateAdapterConfig$W(untrustedConfig, configPropertyNames) {
|
|
@@ -22219,24 +21825,12 @@ function createResourceParams$O(config) {
|
|
|
22219
21825
|
return resourceParams;
|
|
22220
21826
|
}
|
|
22221
21827
|
function coerceConfig$u(config) {
|
|
22222
|
-
|
|
22223
|
-
|
|
22224
|
-
|
|
22225
|
-
|
|
22226
|
-
|
|
22227
|
-
|
|
22228
|
-
if (actionTypes !== undefined) {
|
|
22229
|
-
coercedConfig.actionTypes = actionTypes;
|
|
22230
|
-
}
|
|
22231
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
22232
|
-
if (formFactor !== undefined) {
|
|
22233
|
-
coercedConfig.formFactor = formFactor;
|
|
22234
|
-
}
|
|
22235
|
-
const sections = toSortedStringArray(config.sections);
|
|
22236
|
-
if (sections !== undefined) {
|
|
22237
|
-
coercedConfig.sections = sections;
|
|
22238
|
-
}
|
|
22239
|
-
return coercedConfig;
|
|
21828
|
+
return coerceConfig$6(config, {
|
|
21829
|
+
'objectApiName': getObjectApiName$1,
|
|
21830
|
+
'actionTypes': 1,
|
|
21831
|
+
'formFactor': coerceFormFactor,
|
|
21832
|
+
'sections': toSortedStringArray,
|
|
21833
|
+
});
|
|
22240
21834
|
}
|
|
22241
21835
|
function keyBuilder$2A(luvio, config) {
|
|
22242
21836
|
const resourceParams = createResourceParams$O(config);
|
|
@@ -22244,36 +21838,14 @@ function keyBuilder$2A(luvio, config) {
|
|
|
22244
21838
|
}
|
|
22245
21839
|
function typeCheckConfig$U(untrustedConfig) {
|
|
22246
21840
|
const config = {};
|
|
22247
|
-
|
|
22248
|
-
|
|
22249
|
-
|
|
22250
|
-
}
|
|
22251
|
-
|
|
22252
|
-
|
|
22253
|
-
|
|
22254
|
-
|
|
22255
|
-
const untrustedConfig_actionTypes_item = untrustedConfig_actionTypes[i];
|
|
22256
|
-
if (typeof untrustedConfig_actionTypes_item === 'string') {
|
|
22257
|
-
untrustedConfig_actionTypes_array.push(untrustedConfig_actionTypes_item);
|
|
22258
|
-
}
|
|
22259
|
-
}
|
|
22260
|
-
config.actionTypes = untrustedConfig_actionTypes_array;
|
|
22261
|
-
}
|
|
22262
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
22263
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
22264
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
22265
|
-
}
|
|
22266
|
-
const untrustedConfig_sections = untrustedConfig.sections;
|
|
22267
|
-
if (ArrayIsArray$1(untrustedConfig_sections)) {
|
|
22268
|
-
const untrustedConfig_sections_array = [];
|
|
22269
|
-
for (let i = 0, arrayLength = untrustedConfig_sections.length; i < arrayLength; i++) {
|
|
22270
|
-
const untrustedConfig_sections_item = untrustedConfig_sections[i];
|
|
22271
|
-
if (typeof untrustedConfig_sections_item === 'string') {
|
|
22272
|
-
untrustedConfig_sections_array.push(untrustedConfig_sections_item);
|
|
22273
|
-
}
|
|
22274
|
-
}
|
|
22275
|
-
config.sections = untrustedConfig_sections_array;
|
|
22276
|
-
}
|
|
21841
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
21842
|
+
objectApiName: 0 /* String */,
|
|
21843
|
+
formFactor: 0 /* String */,
|
|
21844
|
+
});
|
|
21845
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
21846
|
+
actionTypes: 0 /* String */,
|
|
21847
|
+
sections: 0 /* String */,
|
|
21848
|
+
});
|
|
22277
21849
|
return config;
|
|
22278
21850
|
}
|
|
22279
21851
|
function validateAdapterConfig$V(untrustedConfig, configPropertyNames) {
|
|
@@ -22499,16 +22071,10 @@ function createResourceParams$N(config) {
|
|
|
22499
22071
|
return resourceParams;
|
|
22500
22072
|
}
|
|
22501
22073
|
function coerceConfig$t(config) {
|
|
22502
|
-
|
|
22503
|
-
|
|
22504
|
-
|
|
22505
|
-
|
|
22506
|
-
}
|
|
22507
|
-
const type = config.type;
|
|
22508
|
-
if (type !== undefined) {
|
|
22509
|
-
coercedConfig.type = type;
|
|
22510
|
-
}
|
|
22511
|
-
return coercedConfig;
|
|
22074
|
+
return coerceConfig$6(config, {
|
|
22075
|
+
'objectApiName': getObjectApiName$1,
|
|
22076
|
+
'type': 1,
|
|
22077
|
+
});
|
|
22512
22078
|
}
|
|
22513
22079
|
function keyBuilder$2y(luvio, config) {
|
|
22514
22080
|
const resourceParams = createResourceParams$N(config);
|
|
@@ -22516,14 +22082,10 @@ function keyBuilder$2y(luvio, config) {
|
|
|
22516
22082
|
}
|
|
22517
22083
|
function typeCheckConfig$T(untrustedConfig) {
|
|
22518
22084
|
const config = {};
|
|
22519
|
-
|
|
22520
|
-
|
|
22521
|
-
|
|
22522
|
-
}
|
|
22523
|
-
const untrustedConfig_type = untrustedConfig.type;
|
|
22524
|
-
if (typeof untrustedConfig_type === 'string') {
|
|
22525
|
-
config.type = untrustedConfig_type;
|
|
22526
|
-
}
|
|
22085
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
22086
|
+
objectApiName: 0 /* String */,
|
|
22087
|
+
type: 0 /* String */,
|
|
22088
|
+
});
|
|
22527
22089
|
return config;
|
|
22528
22090
|
}
|
|
22529
22091
|
function validateAdapterConfig$U(untrustedConfig, configPropertyNames) {
|
|
@@ -22937,20 +22499,11 @@ function createResourceParams$M(config) {
|
|
|
22937
22499
|
return resourceParams;
|
|
22938
22500
|
}
|
|
22939
22501
|
function coerceConfig$s(config) {
|
|
22940
|
-
|
|
22941
|
-
|
|
22942
|
-
|
|
22943
|
-
|
|
22944
|
-
}
|
|
22945
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
22946
|
-
if (optionalFields !== undefined) {
|
|
22947
|
-
coercedConfig.optionalFields = optionalFields;
|
|
22948
|
-
}
|
|
22949
|
-
const parentRecordId = config.parentRecordId;
|
|
22950
|
-
if (parentRecordId !== undefined) {
|
|
22951
|
-
coercedConfig.parentRecordId = parentRecordId;
|
|
22952
|
-
}
|
|
22953
|
-
return coercedConfig;
|
|
22502
|
+
return coerceConfig$6(config, {
|
|
22503
|
+
'actionApiName': getObjectApiName$1,
|
|
22504
|
+
'optionalFields': getFieldApiNamesArray,
|
|
22505
|
+
'parentRecordId': 1,
|
|
22506
|
+
});
|
|
22954
22507
|
}
|
|
22955
22508
|
function keyBuilder$2v(luvio, config) {
|
|
22956
22509
|
const resourceParams = createResourceParams$M(config);
|
|
@@ -22958,25 +22511,13 @@ function keyBuilder$2v(luvio, config) {
|
|
|
22958
22511
|
}
|
|
22959
22512
|
function typeCheckConfig$S(untrustedConfig) {
|
|
22960
22513
|
const config = {};
|
|
22961
|
-
|
|
22962
|
-
|
|
22963
|
-
|
|
22964
|
-
}
|
|
22965
|
-
|
|
22966
|
-
|
|
22967
|
-
|
|
22968
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
22969
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
22970
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
22971
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
22972
|
-
}
|
|
22973
|
-
}
|
|
22974
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
22975
|
-
}
|
|
22976
|
-
const untrustedConfig_parentRecordId = untrustedConfig.parentRecordId;
|
|
22977
|
-
if (typeof untrustedConfig_parentRecordId === 'string') {
|
|
22978
|
-
config.parentRecordId = untrustedConfig_parentRecordId;
|
|
22979
|
-
}
|
|
22514
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
22515
|
+
actionApiName: 0 /* String */,
|
|
22516
|
+
parentRecordId: 0 /* String */,
|
|
22517
|
+
});
|
|
22518
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
22519
|
+
optionalFields: 0 /* String */,
|
|
22520
|
+
});
|
|
22980
22521
|
return config;
|
|
22981
22522
|
}
|
|
22982
22523
|
function validateAdapterConfig$T(untrustedConfig, configPropertyNames) {
|
|
@@ -23126,32 +22667,14 @@ function createResourceParams$L(config) {
|
|
|
23126
22667
|
return resourceParams;
|
|
23127
22668
|
}
|
|
23128
22669
|
function coerceConfig$r(config) {
|
|
23129
|
-
|
|
23130
|
-
|
|
23131
|
-
|
|
23132
|
-
|
|
23133
|
-
|
|
23134
|
-
|
|
23135
|
-
|
|
23136
|
-
|
|
23137
|
-
}
|
|
23138
|
-
const apiNames = toSortedStringArrayAllowEmpty(config.apiNames);
|
|
23139
|
-
if (apiNames !== undefined) {
|
|
23140
|
-
coercedConfig.apiNames = apiNames;
|
|
23141
|
-
}
|
|
23142
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
23143
|
-
if (formFactor !== undefined) {
|
|
23144
|
-
coercedConfig.formFactor = formFactor;
|
|
23145
|
-
}
|
|
23146
|
-
const retrievalMode = config.retrievalMode;
|
|
23147
|
-
if (retrievalMode !== undefined) {
|
|
23148
|
-
coercedConfig.retrievalMode = retrievalMode;
|
|
23149
|
-
}
|
|
23150
|
-
const sections = toSortedStringArray(config.sections);
|
|
23151
|
-
if (sections !== undefined) {
|
|
23152
|
-
coercedConfig.sections = sections;
|
|
23153
|
-
}
|
|
23154
|
-
return coercedConfig;
|
|
22670
|
+
return coerceConfig$6(config, {
|
|
22671
|
+
'recordIds': getRecordId18Array,
|
|
22672
|
+
'actionTypes': 1,
|
|
22673
|
+
'apiNames': toSortedStringArrayAllowEmpty,
|
|
22674
|
+
'formFactor': coerceFormFactor,
|
|
22675
|
+
'retrievalMode': 1,
|
|
22676
|
+
'sections': toSortedStringArray,
|
|
22677
|
+
});
|
|
23155
22678
|
}
|
|
23156
22679
|
function keyBuilder$2t(luvio, config) {
|
|
23157
22680
|
const resourceParams = createResourceParams$L(config);
|
|
@@ -23159,58 +22682,16 @@ function keyBuilder$2t(luvio, config) {
|
|
|
23159
22682
|
}
|
|
23160
22683
|
function typeCheckConfig$R(untrustedConfig) {
|
|
23161
22684
|
const config = {};
|
|
23162
|
-
|
|
23163
|
-
|
|
23164
|
-
|
|
23165
|
-
|
|
23166
|
-
|
|
23167
|
-
|
|
23168
|
-
|
|
23169
|
-
|
|
23170
|
-
|
|
23171
|
-
|
|
23172
|
-
}
|
|
23173
|
-
const untrustedConfig_actionTypes = untrustedConfig.actionTypes;
|
|
23174
|
-
if (ArrayIsArray$1(untrustedConfig_actionTypes)) {
|
|
23175
|
-
const untrustedConfig_actionTypes_array = [];
|
|
23176
|
-
for (let i = 0, arrayLength = untrustedConfig_actionTypes.length; i < arrayLength; i++) {
|
|
23177
|
-
const untrustedConfig_actionTypes_item = untrustedConfig_actionTypes[i];
|
|
23178
|
-
if (typeof untrustedConfig_actionTypes_item === 'string') {
|
|
23179
|
-
untrustedConfig_actionTypes_array.push(untrustedConfig_actionTypes_item);
|
|
23180
|
-
}
|
|
23181
|
-
}
|
|
23182
|
-
config.actionTypes = untrustedConfig_actionTypes_array;
|
|
23183
|
-
}
|
|
23184
|
-
const untrustedConfig_apiNames = untrustedConfig.apiNames;
|
|
23185
|
-
if (ArrayIsArray$1(untrustedConfig_apiNames)) {
|
|
23186
|
-
const untrustedConfig_apiNames_array = [];
|
|
23187
|
-
for (let i = 0, arrayLength = untrustedConfig_apiNames.length; i < arrayLength; i++) {
|
|
23188
|
-
const untrustedConfig_apiNames_item = untrustedConfig_apiNames[i];
|
|
23189
|
-
if (typeof untrustedConfig_apiNames_item === 'string') {
|
|
23190
|
-
untrustedConfig_apiNames_array.push(untrustedConfig_apiNames_item);
|
|
23191
|
-
}
|
|
23192
|
-
}
|
|
23193
|
-
config.apiNames = untrustedConfig_apiNames_array;
|
|
23194
|
-
}
|
|
23195
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
23196
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
23197
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
23198
|
-
}
|
|
23199
|
-
const untrustedConfig_retrievalMode = untrustedConfig.retrievalMode;
|
|
23200
|
-
if (typeof untrustedConfig_retrievalMode === 'string') {
|
|
23201
|
-
config.retrievalMode = untrustedConfig_retrievalMode;
|
|
23202
|
-
}
|
|
23203
|
-
const untrustedConfig_sections = untrustedConfig.sections;
|
|
23204
|
-
if (ArrayIsArray$1(untrustedConfig_sections)) {
|
|
23205
|
-
const untrustedConfig_sections_array = [];
|
|
23206
|
-
for (let i = 0, arrayLength = untrustedConfig_sections.length; i < arrayLength; i++) {
|
|
23207
|
-
const untrustedConfig_sections_item = untrustedConfig_sections[i];
|
|
23208
|
-
if (typeof untrustedConfig_sections_item === 'string') {
|
|
23209
|
-
untrustedConfig_sections_array.push(untrustedConfig_sections_item);
|
|
23210
|
-
}
|
|
23211
|
-
}
|
|
23212
|
-
config.sections = untrustedConfig_sections_array;
|
|
23213
|
-
}
|
|
22685
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
22686
|
+
formFactor: 0 /* String */,
|
|
22687
|
+
retrievalMode: 0 /* String */,
|
|
22688
|
+
});
|
|
22689
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
22690
|
+
recordIds: 0 /* String */,
|
|
22691
|
+
actionTypes: 0 /* String */,
|
|
22692
|
+
apiNames: 0 /* String */,
|
|
22693
|
+
sections: 0 /* String */,
|
|
22694
|
+
});
|
|
23214
22695
|
return config;
|
|
23215
22696
|
}
|
|
23216
22697
|
function validateAdapterConfig$S(untrustedConfig, configPropertyNames) {
|
|
@@ -23374,24 +22855,12 @@ function createResourceParams$K(config) {
|
|
|
23374
22855
|
return resourceParams;
|
|
23375
22856
|
}
|
|
23376
22857
|
function coerceConfig$q(config) {
|
|
23377
|
-
|
|
23378
|
-
|
|
23379
|
-
|
|
23380
|
-
|
|
23381
|
-
|
|
23382
|
-
|
|
23383
|
-
if (actionTypes !== undefined) {
|
|
23384
|
-
coercedConfig.actionTypes = actionTypes;
|
|
23385
|
-
}
|
|
23386
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
23387
|
-
if (formFactor !== undefined) {
|
|
23388
|
-
coercedConfig.formFactor = formFactor;
|
|
23389
|
-
}
|
|
23390
|
-
const sections = toSortedStringArray(config.sections);
|
|
23391
|
-
if (sections !== undefined) {
|
|
23392
|
-
coercedConfig.sections = sections;
|
|
23393
|
-
}
|
|
23394
|
-
return coercedConfig;
|
|
22858
|
+
return coerceConfig$6(config, {
|
|
22859
|
+
'recordIds': getRecordId18Array,
|
|
22860
|
+
'actionTypes': 1,
|
|
22861
|
+
'formFactor': coerceFormFactor,
|
|
22862
|
+
'sections': toSortedStringArray,
|
|
22863
|
+
});
|
|
23395
22864
|
}
|
|
23396
22865
|
function keyBuilder$2r(luvio, config) {
|
|
23397
22866
|
const resourceParams = createResourceParams$K(config);
|
|
@@ -23399,43 +22868,14 @@ function keyBuilder$2r(luvio, config) {
|
|
|
23399
22868
|
}
|
|
23400
22869
|
function typeCheckConfig$Q(untrustedConfig) {
|
|
23401
22870
|
const config = {};
|
|
23402
|
-
|
|
23403
|
-
|
|
23404
|
-
|
|
23405
|
-
|
|
23406
|
-
|
|
23407
|
-
|
|
23408
|
-
|
|
23409
|
-
|
|
23410
|
-
}
|
|
23411
|
-
config.recordIds = untrustedConfig_recordIds_array;
|
|
23412
|
-
}
|
|
23413
|
-
const untrustedConfig_actionTypes = untrustedConfig.actionTypes;
|
|
23414
|
-
if (ArrayIsArray$1(untrustedConfig_actionTypes)) {
|
|
23415
|
-
const untrustedConfig_actionTypes_array = [];
|
|
23416
|
-
for (let i = 0, arrayLength = untrustedConfig_actionTypes.length; i < arrayLength; i++) {
|
|
23417
|
-
const untrustedConfig_actionTypes_item = untrustedConfig_actionTypes[i];
|
|
23418
|
-
if (typeof untrustedConfig_actionTypes_item === 'string') {
|
|
23419
|
-
untrustedConfig_actionTypes_array.push(untrustedConfig_actionTypes_item);
|
|
23420
|
-
}
|
|
23421
|
-
}
|
|
23422
|
-
config.actionTypes = untrustedConfig_actionTypes_array;
|
|
23423
|
-
}
|
|
23424
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
23425
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
23426
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
23427
|
-
}
|
|
23428
|
-
const untrustedConfig_sections = untrustedConfig.sections;
|
|
23429
|
-
if (ArrayIsArray$1(untrustedConfig_sections)) {
|
|
23430
|
-
const untrustedConfig_sections_array = [];
|
|
23431
|
-
for (let i = 0, arrayLength = untrustedConfig_sections.length; i < arrayLength; i++) {
|
|
23432
|
-
const untrustedConfig_sections_item = untrustedConfig_sections[i];
|
|
23433
|
-
if (typeof untrustedConfig_sections_item === 'string') {
|
|
23434
|
-
untrustedConfig_sections_array.push(untrustedConfig_sections_item);
|
|
23435
|
-
}
|
|
23436
|
-
}
|
|
23437
|
-
config.sections = untrustedConfig_sections_array;
|
|
23438
|
-
}
|
|
22871
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
22872
|
+
formFactor: 0 /* String */,
|
|
22873
|
+
});
|
|
22874
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
22875
|
+
recordIds: 0 /* String */,
|
|
22876
|
+
actionTypes: 0 /* String */,
|
|
22877
|
+
sections: 0 /* String */,
|
|
22878
|
+
});
|
|
23439
22879
|
return config;
|
|
23440
22880
|
}
|
|
23441
22881
|
function validateAdapterConfig$R(untrustedConfig, configPropertyNames) {
|
|
@@ -23896,16 +23336,10 @@ function createResourceParams$J(config) {
|
|
|
23896
23336
|
return resourceParams;
|
|
23897
23337
|
}
|
|
23898
23338
|
function coerceConfig$p(config) {
|
|
23899
|
-
|
|
23900
|
-
|
|
23901
|
-
|
|
23902
|
-
|
|
23903
|
-
}
|
|
23904
|
-
const relatedListsActionParameters = config.relatedListsActionParameters;
|
|
23905
|
-
if (relatedListsActionParameters !== undefined) {
|
|
23906
|
-
coercedConfig.relatedListsActionParameters = relatedListsActionParameters;
|
|
23907
|
-
}
|
|
23908
|
-
return coercedConfig;
|
|
23339
|
+
return coerceConfig$6(config, {
|
|
23340
|
+
'recordIds': getRecordId18Array,
|
|
23341
|
+
'relatedListsActionParameters': 1,
|
|
23342
|
+
});
|
|
23909
23343
|
}
|
|
23910
23344
|
function keyBuilder$2o(luvio, config) {
|
|
23911
23345
|
const resourceParams = createResourceParams$J(config);
|
|
@@ -23913,17 +23347,9 @@ function keyBuilder$2o(luvio, config) {
|
|
|
23913
23347
|
}
|
|
23914
23348
|
function typeCheckConfig$P(untrustedConfig) {
|
|
23915
23349
|
const config = {};
|
|
23916
|
-
|
|
23917
|
-
|
|
23918
|
-
|
|
23919
|
-
for (let i = 0, arrayLength = untrustedConfig_recordIds.length; i < arrayLength; i++) {
|
|
23920
|
-
const untrustedConfig_recordIds_item = untrustedConfig_recordIds[i];
|
|
23921
|
-
if (typeof untrustedConfig_recordIds_item === 'string') {
|
|
23922
|
-
untrustedConfig_recordIds_array.push(untrustedConfig_recordIds_item);
|
|
23923
|
-
}
|
|
23924
|
-
}
|
|
23925
|
-
config.recordIds = untrustedConfig_recordIds_array;
|
|
23926
|
-
}
|
|
23350
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
23351
|
+
recordIds: 0 /* String */,
|
|
23352
|
+
});
|
|
23927
23353
|
const untrustedConfig_relatedListsActionParameters = untrustedConfig.relatedListsActionParameters;
|
|
23928
23354
|
if (ArrayIsArray$1(untrustedConfig_relatedListsActionParameters)) {
|
|
23929
23355
|
const untrustedConfig_relatedListsActionParameters_array = [];
|
|
@@ -24053,36 +23479,15 @@ function createResourceParams$I(config) {
|
|
|
24053
23479
|
return resourceParams;
|
|
24054
23480
|
}
|
|
24055
23481
|
function coerceConfig$o(config) {
|
|
24056
|
-
|
|
24057
|
-
|
|
24058
|
-
|
|
24059
|
-
|
|
24060
|
-
|
|
24061
|
-
|
|
24062
|
-
|
|
24063
|
-
|
|
24064
|
-
}
|
|
24065
|
-
const actionTypes = config.actionTypes;
|
|
24066
|
-
if (actionTypes !== undefined) {
|
|
24067
|
-
coercedConfig.actionTypes = actionTypes;
|
|
24068
|
-
}
|
|
24069
|
-
const apiNames = toSortedStringArrayAllowEmpty(config.apiNames);
|
|
24070
|
-
if (apiNames !== undefined) {
|
|
24071
|
-
coercedConfig.apiNames = apiNames;
|
|
24072
|
-
}
|
|
24073
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
24074
|
-
if (formFactor !== undefined) {
|
|
24075
|
-
coercedConfig.formFactor = formFactor;
|
|
24076
|
-
}
|
|
24077
|
-
const retrievalMode = config.retrievalMode;
|
|
24078
|
-
if (retrievalMode !== undefined) {
|
|
24079
|
-
coercedConfig.retrievalMode = retrievalMode;
|
|
24080
|
-
}
|
|
24081
|
-
const sections = toSortedStringArray(config.sections);
|
|
24082
|
-
if (sections !== undefined) {
|
|
24083
|
-
coercedConfig.sections = sections;
|
|
24084
|
-
}
|
|
24085
|
-
return coercedConfig;
|
|
23482
|
+
return coerceConfig$6(config, {
|
|
23483
|
+
'recordIds': getRecordId18Array,
|
|
23484
|
+
'relatedListId': 1,
|
|
23485
|
+
'actionTypes': 1,
|
|
23486
|
+
'apiNames': toSortedStringArrayAllowEmpty,
|
|
23487
|
+
'formFactor': coerceFormFactor,
|
|
23488
|
+
'retrievalMode': 1,
|
|
23489
|
+
'sections': toSortedStringArray,
|
|
23490
|
+
});
|
|
24086
23491
|
}
|
|
24087
23492
|
function keyBuilder$2n(luvio, config) {
|
|
24088
23493
|
const resourceParams = createResourceParams$I(config);
|
|
@@ -24090,62 +23495,17 @@ function keyBuilder$2n(luvio, config) {
|
|
|
24090
23495
|
}
|
|
24091
23496
|
function typeCheckConfig$O(untrustedConfig) {
|
|
24092
23497
|
const config = {};
|
|
24093
|
-
|
|
24094
|
-
|
|
24095
|
-
|
|
24096
|
-
|
|
24097
|
-
|
|
24098
|
-
|
|
24099
|
-
|
|
24100
|
-
|
|
24101
|
-
|
|
24102
|
-
|
|
24103
|
-
}
|
|
24104
|
-
const untrustedConfig_relatedListId = untrustedConfig.relatedListId;
|
|
24105
|
-
if (typeof untrustedConfig_relatedListId === 'string') {
|
|
24106
|
-
config.relatedListId = untrustedConfig_relatedListId;
|
|
24107
|
-
}
|
|
24108
|
-
const untrustedConfig_actionTypes = untrustedConfig.actionTypes;
|
|
24109
|
-
if (ArrayIsArray$1(untrustedConfig_actionTypes)) {
|
|
24110
|
-
const untrustedConfig_actionTypes_array = [];
|
|
24111
|
-
for (let i = 0, arrayLength = untrustedConfig_actionTypes.length; i < arrayLength; i++) {
|
|
24112
|
-
const untrustedConfig_actionTypes_item = untrustedConfig_actionTypes[i];
|
|
24113
|
-
if (typeof untrustedConfig_actionTypes_item === 'string') {
|
|
24114
|
-
untrustedConfig_actionTypes_array.push(untrustedConfig_actionTypes_item);
|
|
24115
|
-
}
|
|
24116
|
-
}
|
|
24117
|
-
config.actionTypes = untrustedConfig_actionTypes_array;
|
|
24118
|
-
}
|
|
24119
|
-
const untrustedConfig_apiNames = untrustedConfig.apiNames;
|
|
24120
|
-
if (ArrayIsArray$1(untrustedConfig_apiNames)) {
|
|
24121
|
-
const untrustedConfig_apiNames_array = [];
|
|
24122
|
-
for (let i = 0, arrayLength = untrustedConfig_apiNames.length; i < arrayLength; i++) {
|
|
24123
|
-
const untrustedConfig_apiNames_item = untrustedConfig_apiNames[i];
|
|
24124
|
-
if (typeof untrustedConfig_apiNames_item === 'string') {
|
|
24125
|
-
untrustedConfig_apiNames_array.push(untrustedConfig_apiNames_item);
|
|
24126
|
-
}
|
|
24127
|
-
}
|
|
24128
|
-
config.apiNames = untrustedConfig_apiNames_array;
|
|
24129
|
-
}
|
|
24130
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
24131
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
24132
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
24133
|
-
}
|
|
24134
|
-
const untrustedConfig_retrievalMode = untrustedConfig.retrievalMode;
|
|
24135
|
-
if (typeof untrustedConfig_retrievalMode === 'string') {
|
|
24136
|
-
config.retrievalMode = untrustedConfig_retrievalMode;
|
|
24137
|
-
}
|
|
24138
|
-
const untrustedConfig_sections = untrustedConfig.sections;
|
|
24139
|
-
if (ArrayIsArray$1(untrustedConfig_sections)) {
|
|
24140
|
-
const untrustedConfig_sections_array = [];
|
|
24141
|
-
for (let i = 0, arrayLength = untrustedConfig_sections.length; i < arrayLength; i++) {
|
|
24142
|
-
const untrustedConfig_sections_item = untrustedConfig_sections[i];
|
|
24143
|
-
if (typeof untrustedConfig_sections_item === 'string') {
|
|
24144
|
-
untrustedConfig_sections_array.push(untrustedConfig_sections_item);
|
|
24145
|
-
}
|
|
24146
|
-
}
|
|
24147
|
-
config.sections = untrustedConfig_sections_array;
|
|
24148
|
-
}
|
|
23498
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
23499
|
+
relatedListId: 0 /* String */,
|
|
23500
|
+
formFactor: 0 /* String */,
|
|
23501
|
+
retrievalMode: 0 /* String */,
|
|
23502
|
+
});
|
|
23503
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
23504
|
+
recordIds: 0 /* String */,
|
|
23505
|
+
actionTypes: 0 /* String */,
|
|
23506
|
+
apiNames: 0 /* String */,
|
|
23507
|
+
sections: 0 /* String */,
|
|
23508
|
+
});
|
|
24149
23509
|
return config;
|
|
24150
23510
|
}
|
|
24151
23511
|
function validateAdapterConfig$P(untrustedConfig, configPropertyNames) {
|
|
@@ -24305,28 +23665,13 @@ function createResourceParams$H(config) {
|
|
|
24305
23665
|
return resourceParams;
|
|
24306
23666
|
}
|
|
24307
23667
|
function coerceConfig$n(config) {
|
|
24308
|
-
|
|
24309
|
-
|
|
24310
|
-
|
|
24311
|
-
|
|
24312
|
-
|
|
24313
|
-
|
|
24314
|
-
|
|
24315
|
-
coercedConfig.relatedListRecordIds = relatedListRecordIds;
|
|
24316
|
-
}
|
|
24317
|
-
const actionTypes = toSortedStringArray(config.actionTypes);
|
|
24318
|
-
if (actionTypes !== undefined) {
|
|
24319
|
-
coercedConfig.actionTypes = actionTypes;
|
|
24320
|
-
}
|
|
24321
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
24322
|
-
if (formFactor !== undefined) {
|
|
24323
|
-
coercedConfig.formFactor = formFactor;
|
|
24324
|
-
}
|
|
24325
|
-
const sections = toSortedStringArray(config.sections);
|
|
24326
|
-
if (sections !== undefined) {
|
|
24327
|
-
coercedConfig.sections = sections;
|
|
24328
|
-
}
|
|
24329
|
-
return coercedConfig;
|
|
23668
|
+
return coerceConfig$6(config, {
|
|
23669
|
+
'recordIds': getRecordId18Array,
|
|
23670
|
+
'relatedListRecordIds': getRecordId18Array,
|
|
23671
|
+
'actionTypes': toSortedStringArray,
|
|
23672
|
+
'formFactor': coerceFormFactor,
|
|
23673
|
+
'sections': toSortedStringArray,
|
|
23674
|
+
});
|
|
24330
23675
|
}
|
|
24331
23676
|
function keyBuilder$2l(luvio, config) {
|
|
24332
23677
|
const resourceParams = createResourceParams$H(config);
|
|
@@ -24334,54 +23679,15 @@ function keyBuilder$2l(luvio, config) {
|
|
|
24334
23679
|
}
|
|
24335
23680
|
function typeCheckConfig$N(untrustedConfig) {
|
|
24336
23681
|
const config = {};
|
|
24337
|
-
|
|
24338
|
-
|
|
24339
|
-
|
|
24340
|
-
|
|
24341
|
-
|
|
24342
|
-
|
|
24343
|
-
|
|
24344
|
-
|
|
24345
|
-
|
|
24346
|
-
config.recordIds = untrustedConfig_recordIds_array;
|
|
24347
|
-
}
|
|
24348
|
-
const untrustedConfig_relatedListRecordIds = untrustedConfig.relatedListRecordIds;
|
|
24349
|
-
if (ArrayIsArray$1(untrustedConfig_relatedListRecordIds)) {
|
|
24350
|
-
const untrustedConfig_relatedListRecordIds_array = [];
|
|
24351
|
-
for (let i = 0, arrayLength = untrustedConfig_relatedListRecordIds.length; i < arrayLength; i++) {
|
|
24352
|
-
const untrustedConfig_relatedListRecordIds_item = untrustedConfig_relatedListRecordIds[i];
|
|
24353
|
-
if (typeof untrustedConfig_relatedListRecordIds_item === 'string') {
|
|
24354
|
-
untrustedConfig_relatedListRecordIds_array.push(untrustedConfig_relatedListRecordIds_item);
|
|
24355
|
-
}
|
|
24356
|
-
}
|
|
24357
|
-
config.relatedListRecordIds = untrustedConfig_relatedListRecordIds_array;
|
|
24358
|
-
}
|
|
24359
|
-
const untrustedConfig_actionTypes = untrustedConfig.actionTypes;
|
|
24360
|
-
if (ArrayIsArray$1(untrustedConfig_actionTypes)) {
|
|
24361
|
-
const untrustedConfig_actionTypes_array = [];
|
|
24362
|
-
for (let i = 0, arrayLength = untrustedConfig_actionTypes.length; i < arrayLength; i++) {
|
|
24363
|
-
const untrustedConfig_actionTypes_item = untrustedConfig_actionTypes[i];
|
|
24364
|
-
if (typeof untrustedConfig_actionTypes_item === 'string') {
|
|
24365
|
-
untrustedConfig_actionTypes_array.push(untrustedConfig_actionTypes_item);
|
|
24366
|
-
}
|
|
24367
|
-
}
|
|
24368
|
-
config.actionTypes = untrustedConfig_actionTypes_array;
|
|
24369
|
-
}
|
|
24370
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
24371
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
24372
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
24373
|
-
}
|
|
24374
|
-
const untrustedConfig_sections = untrustedConfig.sections;
|
|
24375
|
-
if (ArrayIsArray$1(untrustedConfig_sections)) {
|
|
24376
|
-
const untrustedConfig_sections_array = [];
|
|
24377
|
-
for (let i = 0, arrayLength = untrustedConfig_sections.length; i < arrayLength; i++) {
|
|
24378
|
-
const untrustedConfig_sections_item = untrustedConfig_sections[i];
|
|
24379
|
-
if (typeof untrustedConfig_sections_item === 'string') {
|
|
24380
|
-
untrustedConfig_sections_array.push(untrustedConfig_sections_item);
|
|
24381
|
-
}
|
|
24382
|
-
}
|
|
24383
|
-
config.sections = untrustedConfig_sections_array;
|
|
24384
|
-
}
|
|
23682
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
23683
|
+
formFactor: 0 /* String */,
|
|
23684
|
+
});
|
|
23685
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
23686
|
+
recordIds: 0 /* String */,
|
|
23687
|
+
relatedListRecordIds: 0 /* String */,
|
|
23688
|
+
actionTypes: 0 /* String */,
|
|
23689
|
+
sections: 0 /* String */,
|
|
23690
|
+
});
|
|
24385
23691
|
return config;
|
|
24386
23692
|
}
|
|
24387
23693
|
function validateAdapterConfig$O(untrustedConfig, configPropertyNames) {
|
|
@@ -25689,16 +24995,10 @@ function createResourceParams$G(config) {
|
|
|
25689
24995
|
return resourceParams;
|
|
25690
24996
|
}
|
|
25691
24997
|
function coerceConfig$m(config) {
|
|
25692
|
-
|
|
25693
|
-
|
|
25694
|
-
|
|
25695
|
-
|
|
25696
|
-
}
|
|
25697
|
-
const userCustomizations = config.userCustomizations;
|
|
25698
|
-
if (userCustomizations !== undefined) {
|
|
25699
|
-
coercedConfig.userCustomizations = userCustomizations;
|
|
25700
|
-
}
|
|
25701
|
-
return coercedConfig;
|
|
24998
|
+
return coerceConfig$6(config, {
|
|
24999
|
+
'formFactor': coerceFormFactor,
|
|
25000
|
+
'userCustomizations': 1,
|
|
25001
|
+
});
|
|
25702
25002
|
}
|
|
25703
25003
|
function keyBuilder$2h(luvio, config) {
|
|
25704
25004
|
const resourceParams = createResourceParams$G(config);
|
|
@@ -25706,14 +25006,10 @@ function keyBuilder$2h(luvio, config) {
|
|
|
25706
25006
|
}
|
|
25707
25007
|
function typeCheckConfig$M(untrustedConfig) {
|
|
25708
25008
|
const config = {};
|
|
25709
|
-
|
|
25710
|
-
|
|
25711
|
-
|
|
25712
|
-
}
|
|
25713
|
-
const untrustedConfig_userCustomizations = untrustedConfig.userCustomizations;
|
|
25714
|
-
if (typeof untrustedConfig_userCustomizations === 'boolean') {
|
|
25715
|
-
config.userCustomizations = untrustedConfig_userCustomizations;
|
|
25716
|
-
}
|
|
25009
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
25010
|
+
formFactor: 0 /* String */,
|
|
25011
|
+
userCustomizations: 1 /* Boolean */,
|
|
25012
|
+
});
|
|
25717
25013
|
return config;
|
|
25718
25014
|
}
|
|
25719
25015
|
function validateAdapterConfig$N(untrustedConfig, configPropertyNames) {
|
|
@@ -25875,20 +25171,11 @@ function createResourceParams$E(config) {
|
|
|
25875
25171
|
return resourceParams;
|
|
25876
25172
|
}
|
|
25877
25173
|
function coerceConfig$l(config) {
|
|
25878
|
-
|
|
25879
|
-
|
|
25880
|
-
|
|
25881
|
-
|
|
25882
|
-
}
|
|
25883
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
25884
|
-
if (formFactor !== undefined) {
|
|
25885
|
-
coercedConfig.formFactor = formFactor;
|
|
25886
|
-
}
|
|
25887
|
-
const userCustomizations = config.userCustomizations;
|
|
25888
|
-
if (userCustomizations !== undefined) {
|
|
25889
|
-
coercedConfig.userCustomizations = userCustomizations;
|
|
25890
|
-
}
|
|
25891
|
-
return coercedConfig;
|
|
25174
|
+
return coerceConfig$6(config, {
|
|
25175
|
+
'appId': 1,
|
|
25176
|
+
'formFactor': coerceFormFactor,
|
|
25177
|
+
'userCustomizations': 1,
|
|
25178
|
+
});
|
|
25892
25179
|
}
|
|
25893
25180
|
function keyBuilder$2d(luvio, config) {
|
|
25894
25181
|
const resourceParams = createResourceParams$E(config);
|
|
@@ -25896,18 +25183,11 @@ function keyBuilder$2d(luvio, config) {
|
|
|
25896
25183
|
}
|
|
25897
25184
|
function typeCheckConfig$K(untrustedConfig) {
|
|
25898
25185
|
const config = {};
|
|
25899
|
-
|
|
25900
|
-
|
|
25901
|
-
|
|
25902
|
-
|
|
25903
|
-
|
|
25904
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
25905
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
25906
|
-
}
|
|
25907
|
-
const untrustedConfig_userCustomizations = untrustedConfig.userCustomizations;
|
|
25908
|
-
if (typeof untrustedConfig_userCustomizations === 'boolean') {
|
|
25909
|
-
config.userCustomizations = untrustedConfig_userCustomizations;
|
|
25910
|
-
}
|
|
25186
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
25187
|
+
appId: 0 /* String */,
|
|
25188
|
+
formFactor: 0 /* String */,
|
|
25189
|
+
userCustomizations: 1 /* Boolean */,
|
|
25190
|
+
});
|
|
25911
25191
|
return config;
|
|
25912
25192
|
}
|
|
25913
25193
|
function validateAdapterConfig$L(untrustedConfig, configPropertyNames) {
|
|
@@ -26552,14 +25832,10 @@ function keyBuilder$2b(luvio, config) {
|
|
|
26552
25832
|
}
|
|
26553
25833
|
function typeCheckConfig$J(untrustedConfig) {
|
|
26554
25834
|
const config = {};
|
|
26555
|
-
|
|
26556
|
-
|
|
26557
|
-
|
|
26558
|
-
}
|
|
26559
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
26560
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
26561
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
26562
|
-
}
|
|
25835
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
25836
|
+
objectApiName: 0 /* String */,
|
|
25837
|
+
recordTypeId: 0 /* String */,
|
|
25838
|
+
});
|
|
26563
25839
|
return config;
|
|
26564
25840
|
}
|
|
26565
25841
|
function validateAdapterConfig$K(untrustedConfig, configPropertyNames) {
|
|
@@ -26772,51 +26048,23 @@ function createResourceParams$C(config) {
|
|
|
26772
26048
|
return resourceParams;
|
|
26773
26049
|
}
|
|
26774
26050
|
function coerceConfig$k(config) {
|
|
26775
|
-
|
|
26776
|
-
|
|
26777
|
-
|
|
26778
|
-
|
|
26779
|
-
|
|
26780
|
-
|
|
26781
|
-
|
|
26782
|
-
coercedConfig.formFactor = formFactor;
|
|
26783
|
-
}
|
|
26784
|
-
const layoutType = coerceLayoutType(config.layoutType);
|
|
26785
|
-
if (layoutType !== undefined) {
|
|
26786
|
-
coercedConfig.layoutType = layoutType;
|
|
26787
|
-
}
|
|
26788
|
-
const mode = coerceLayoutMode(config.mode);
|
|
26789
|
-
if (mode !== undefined) {
|
|
26790
|
-
coercedConfig.mode = mode;
|
|
26791
|
-
}
|
|
26792
|
-
const recordTypeId = getRecordId18(config.recordTypeId);
|
|
26793
|
-
if (recordTypeId !== undefined) {
|
|
26794
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
26795
|
-
}
|
|
26796
|
-
return coercedConfig;
|
|
26051
|
+
return coerceConfig$6(config, {
|
|
26052
|
+
'objectApiName': getObjectApiName$1,
|
|
26053
|
+
'formFactor': 1,
|
|
26054
|
+
'layoutType': coerceLayoutType,
|
|
26055
|
+
'mode': coerceLayoutMode,
|
|
26056
|
+
'recordTypeId': getRecordId18,
|
|
26057
|
+
});
|
|
26797
26058
|
}
|
|
26798
26059
|
function typeCheckConfig$I(untrustedConfig) {
|
|
26799
26060
|
const config = {};
|
|
26800
|
-
|
|
26801
|
-
|
|
26802
|
-
|
|
26803
|
-
|
|
26804
|
-
|
|
26805
|
-
|
|
26806
|
-
|
|
26807
|
-
}
|
|
26808
|
-
const untrustedConfig_layoutType = untrustedConfig.layoutType;
|
|
26809
|
-
if (typeof untrustedConfig_layoutType === 'string') {
|
|
26810
|
-
config.layoutType = untrustedConfig_layoutType;
|
|
26811
|
-
}
|
|
26812
|
-
const untrustedConfig_mode = untrustedConfig.mode;
|
|
26813
|
-
if (typeof untrustedConfig_mode === 'string') {
|
|
26814
|
-
config.mode = untrustedConfig_mode;
|
|
26815
|
-
}
|
|
26816
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
26817
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
26818
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
26819
|
-
}
|
|
26061
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
26062
|
+
objectApiName: 0 /* String */,
|
|
26063
|
+
formFactor: 0 /* String */,
|
|
26064
|
+
layoutType: 0 /* String */,
|
|
26065
|
+
mode: 0 /* String */,
|
|
26066
|
+
recordTypeId: 0 /* String */,
|
|
26067
|
+
});
|
|
26820
26068
|
return config;
|
|
26821
26069
|
}
|
|
26822
26070
|
function validateAdapterConfig$I(untrustedConfig, configPropertyNames) {
|
|
@@ -27036,51 +26284,23 @@ function buildCachedSnapshotCachePolicy$u(context, storeLookup) {
|
|
|
27036
26284
|
}
|
|
27037
26285
|
|
|
27038
26286
|
function coerceConfig$j(config) {
|
|
27039
|
-
|
|
27040
|
-
|
|
27041
|
-
|
|
27042
|
-
|
|
27043
|
-
|
|
27044
|
-
|
|
27045
|
-
|
|
27046
|
-
coercedConfig.formFactor = formFactor;
|
|
27047
|
-
}
|
|
27048
|
-
const layoutType = coerceLayoutType(config.layoutType);
|
|
27049
|
-
if (layoutType !== undefined) {
|
|
27050
|
-
coercedConfig.layoutType = layoutType;
|
|
27051
|
-
}
|
|
27052
|
-
const mode = coerceLayoutMode(config.mode);
|
|
27053
|
-
if (mode !== undefined) {
|
|
27054
|
-
coercedConfig.mode = mode;
|
|
27055
|
-
}
|
|
27056
|
-
const recordTypeId = getRecordId18(config.recordTypeId);
|
|
27057
|
-
if (recordTypeId !== undefined) {
|
|
27058
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
27059
|
-
}
|
|
27060
|
-
return coercedConfig;
|
|
26287
|
+
return coerceConfig$6(config, {
|
|
26288
|
+
'objectApiName': getObjectApiName$1,
|
|
26289
|
+
'formFactor': 1,
|
|
26290
|
+
'layoutType': coerceLayoutType,
|
|
26291
|
+
'mode': coerceLayoutMode,
|
|
26292
|
+
'recordTypeId': getRecordId18,
|
|
26293
|
+
});
|
|
27061
26294
|
}
|
|
27062
26295
|
function typeCheckConfig$H(untrustedConfig) {
|
|
27063
26296
|
const config = {};
|
|
27064
|
-
|
|
27065
|
-
|
|
27066
|
-
|
|
27067
|
-
|
|
27068
|
-
|
|
27069
|
-
|
|
27070
|
-
|
|
27071
|
-
}
|
|
27072
|
-
const untrustedConfig_layoutType = untrustedConfig.layoutType;
|
|
27073
|
-
if (typeof untrustedConfig_layoutType === 'string') {
|
|
27074
|
-
config.layoutType = untrustedConfig_layoutType;
|
|
27075
|
-
}
|
|
27076
|
-
const untrustedConfig_mode = untrustedConfig.mode;
|
|
27077
|
-
if (typeof untrustedConfig_mode === 'string') {
|
|
27078
|
-
config.mode = untrustedConfig_mode;
|
|
27079
|
-
}
|
|
27080
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
27081
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
27082
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
27083
|
-
}
|
|
26297
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
26298
|
+
objectApiName: 0 /* String */,
|
|
26299
|
+
formFactor: 0 /* String */,
|
|
26300
|
+
layoutType: 0 /* String */,
|
|
26301
|
+
mode: 0 /* String */,
|
|
26302
|
+
recordTypeId: 0 /* String */,
|
|
26303
|
+
});
|
|
27084
26304
|
return config;
|
|
27085
26305
|
}
|
|
27086
26306
|
function validateAdapterConfig$G(untrustedConfig, configPropertyNames) {
|
|
@@ -27504,28 +26724,10 @@ function keyBuilder$26(luvio, config) {
|
|
|
27504
26724
|
}
|
|
27505
26725
|
function typeCheckConfig$G(untrustedConfig) {
|
|
27506
26726
|
const config = {};
|
|
27507
|
-
|
|
27508
|
-
|
|
27509
|
-
|
|
27510
|
-
|
|
27511
|
-
const untrustedConfig_ids_item = untrustedConfig_ids[i];
|
|
27512
|
-
if (typeof untrustedConfig_ids_item === 'string') {
|
|
27513
|
-
untrustedConfig_ids_array.push(untrustedConfig_ids_item);
|
|
27514
|
-
}
|
|
27515
|
-
}
|
|
27516
|
-
config.ids = untrustedConfig_ids_array;
|
|
27517
|
-
}
|
|
27518
|
-
const untrustedConfig_names = untrustedConfig.names;
|
|
27519
|
-
if (ArrayIsArray$1(untrustedConfig_names)) {
|
|
27520
|
-
const untrustedConfig_names_array = [];
|
|
27521
|
-
for (let i = 0, arrayLength = untrustedConfig_names.length; i < arrayLength; i++) {
|
|
27522
|
-
const untrustedConfig_names_item = untrustedConfig_names[i];
|
|
27523
|
-
if (typeof untrustedConfig_names_item === 'string') {
|
|
27524
|
-
untrustedConfig_names_array.push(untrustedConfig_names_item);
|
|
27525
|
-
}
|
|
27526
|
-
}
|
|
27527
|
-
config.names = untrustedConfig_names_array;
|
|
27528
|
-
}
|
|
26727
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
26728
|
+
ids: 0 /* String */,
|
|
26729
|
+
names: 0 /* String */,
|
|
26730
|
+
});
|
|
27529
26731
|
return config;
|
|
27530
26732
|
}
|
|
27531
26733
|
function validateAdapterConfig$F(untrustedConfig, configPropertyNames) {
|
|
@@ -27634,14 +26836,10 @@ function keyBuilder$25(luvio, config) {
|
|
|
27634
26836
|
}
|
|
27635
26837
|
function typeCheckConfig$F(untrustedConfig) {
|
|
27636
26838
|
const config = {};
|
|
27637
|
-
|
|
27638
|
-
|
|
27639
|
-
|
|
27640
|
-
}
|
|
27641
|
-
const untrustedConfig_objectApiName = untrustedConfig.objectApiName;
|
|
27642
|
-
if (typeof untrustedConfig_objectApiName === 'string') {
|
|
27643
|
-
config.objectApiName = untrustedConfig_objectApiName;
|
|
27644
|
-
}
|
|
26839
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
26840
|
+
listViewApiName: 0 /* String */,
|
|
26841
|
+
objectApiName: 0 /* String */,
|
|
26842
|
+
});
|
|
27645
26843
|
return config;
|
|
27646
26844
|
}
|
|
27647
26845
|
function validateAdapterConfig$E(untrustedConfig, configPropertyNames) {
|
|
@@ -27798,47 +26996,24 @@ function createResourceParams$z(config) {
|
|
|
27798
26996
|
return resourceParams;
|
|
27799
26997
|
}
|
|
27800
26998
|
function coerceConfig$i(config) {
|
|
27801
|
-
|
|
27802
|
-
|
|
27803
|
-
|
|
27804
|
-
|
|
27805
|
-
|
|
27806
|
-
|
|
27807
|
-
|
|
27808
|
-
|
|
27809
|
-
}
|
|
27810
|
-
const filterLogicString = config.filterLogicString;
|
|
27811
|
-
if (filterLogicString !== undefined) {
|
|
27812
|
-
coercedConfig.filterLogicString = filterLogicString;
|
|
27813
|
-
}
|
|
27814
|
-
const filteredByInfo = config.filteredByInfo;
|
|
27815
|
-
if (filteredByInfo !== undefined) {
|
|
27816
|
-
coercedConfig.filteredByInfo = filteredByInfo;
|
|
27817
|
-
}
|
|
27818
|
-
const label = config.label;
|
|
27819
|
-
if (label !== undefined) {
|
|
27820
|
-
coercedConfig.label = label;
|
|
27821
|
-
}
|
|
27822
|
-
const scope = config.scope;
|
|
27823
|
-
if (scope !== undefined) {
|
|
27824
|
-
coercedConfig.scope = scope;
|
|
27825
|
-
}
|
|
27826
|
-
const visibility = config.visibility;
|
|
27827
|
-
if (visibility !== undefined) {
|
|
27828
|
-
coercedConfig.visibility = visibility;
|
|
27829
|
-
}
|
|
27830
|
-
return coercedConfig;
|
|
26999
|
+
return coerceConfig$6(config, {
|
|
27000
|
+
'listViewApiName': 1,
|
|
27001
|
+
'objectApiName': getObjectApiName$1,
|
|
27002
|
+
'filterLogicString': 1,
|
|
27003
|
+
'filteredByInfo': 1,
|
|
27004
|
+
'label': 1,
|
|
27005
|
+
'scope': 1,
|
|
27006
|
+
'visibility': 1,
|
|
27007
|
+
});
|
|
27831
27008
|
}
|
|
27832
27009
|
function typeCheckConfig$E(untrustedConfig) {
|
|
27833
27010
|
const config = {};
|
|
27834
|
-
|
|
27835
|
-
|
|
27836
|
-
|
|
27837
|
-
|
|
27838
|
-
|
|
27839
|
-
|
|
27840
|
-
config.objectApiName = untrustedConfig_objectApiName;
|
|
27841
|
-
}
|
|
27011
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
27012
|
+
listViewApiName: 0 /* String */,
|
|
27013
|
+
objectApiName: 0 /* String */,
|
|
27014
|
+
label: 0 /* String */,
|
|
27015
|
+
visibility: 0 /* String */,
|
|
27016
|
+
});
|
|
27842
27017
|
const untrustedConfig_filterLogicString = untrustedConfig.filterLogicString;
|
|
27843
27018
|
if (typeof untrustedConfig_filterLogicString === 'string') {
|
|
27844
27019
|
config.filterLogicString = untrustedConfig_filterLogicString;
|
|
@@ -27858,10 +27033,6 @@ function typeCheckConfig$E(untrustedConfig) {
|
|
|
27858
27033
|
}
|
|
27859
27034
|
config.filteredByInfo = untrustedConfig_filteredByInfo_array;
|
|
27860
27035
|
}
|
|
27861
|
-
const untrustedConfig_label = untrustedConfig.label;
|
|
27862
|
-
if (typeof untrustedConfig_label === 'string') {
|
|
27863
|
-
config.label = untrustedConfig_label;
|
|
27864
|
-
}
|
|
27865
27036
|
const untrustedConfig_scope = untrustedConfig.scope;
|
|
27866
27037
|
const referenceListScopeRepresentationValidationError = validate$1F(untrustedConfig_scope);
|
|
27867
27038
|
if (referenceListScopeRepresentationValidationError === null) {
|
|
@@ -27870,10 +27041,6 @@ function typeCheckConfig$E(untrustedConfig) {
|
|
|
27870
27041
|
if (untrustedConfig_scope === null) {
|
|
27871
27042
|
config.scope = untrustedConfig_scope;
|
|
27872
27043
|
}
|
|
27873
|
-
const untrustedConfig_visibility = untrustedConfig.visibility;
|
|
27874
|
-
if (typeof untrustedConfig_visibility === 'string') {
|
|
27875
|
-
config.visibility = untrustedConfig_visibility;
|
|
27876
|
-
}
|
|
27877
27044
|
return config;
|
|
27878
27045
|
}
|
|
27879
27046
|
function validateAdapterConfig$D(untrustedConfig, configPropertyNames) {
|
|
@@ -28423,12 +27590,9 @@ function createResourceParams$y(config) {
|
|
|
28423
27590
|
return resourceParams;
|
|
28424
27591
|
}
|
|
28425
27592
|
function coerceConfig$h(config) {
|
|
28426
|
-
|
|
28427
|
-
|
|
28428
|
-
|
|
28429
|
-
coercedConfig.objectApiName = objectApiName;
|
|
28430
|
-
}
|
|
28431
|
-
return coercedConfig;
|
|
27593
|
+
return coerceConfig$6(config, {
|
|
27594
|
+
'objectApiName': getObjectApiName$1,
|
|
27595
|
+
});
|
|
28432
27596
|
}
|
|
28433
27597
|
function keyBuilder$22(luvio, config) {
|
|
28434
27598
|
const resourceParams = createResourceParams$y(config);
|
|
@@ -28436,10 +27600,9 @@ function keyBuilder$22(luvio, config) {
|
|
|
28436
27600
|
}
|
|
28437
27601
|
function typeCheckConfig$D(untrustedConfig) {
|
|
28438
27602
|
const config = {};
|
|
28439
|
-
|
|
28440
|
-
|
|
28441
|
-
|
|
28442
|
-
}
|
|
27603
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
27604
|
+
objectApiName: 0 /* String */,
|
|
27605
|
+
});
|
|
28443
27606
|
return config;
|
|
28444
27607
|
}
|
|
28445
27608
|
function validateAdapterConfig$C(untrustedConfig, configPropertyNames) {
|
|
@@ -28768,24 +27931,12 @@ function createResourceParams$x(config) {
|
|
|
28768
27931
|
return resourceParams;
|
|
28769
27932
|
}
|
|
28770
27933
|
function coerceConfig$g(config) {
|
|
28771
|
-
|
|
28772
|
-
|
|
28773
|
-
|
|
28774
|
-
|
|
28775
|
-
|
|
28776
|
-
|
|
28777
|
-
if (navItemNames !== undefined) {
|
|
28778
|
-
coercedConfig.navItemNames = navItemNames;
|
|
28779
|
-
}
|
|
28780
|
-
const page = config.page;
|
|
28781
|
-
if (page !== undefined) {
|
|
28782
|
-
coercedConfig.page = page;
|
|
28783
|
-
}
|
|
28784
|
-
const pageSize = config.pageSize;
|
|
28785
|
-
if (pageSize !== undefined) {
|
|
28786
|
-
coercedConfig.pageSize = pageSize;
|
|
28787
|
-
}
|
|
28788
|
-
return coercedConfig;
|
|
27934
|
+
return coerceConfig$6(config, {
|
|
27935
|
+
'formFactor': coerceFormFactor,
|
|
27936
|
+
'navItemNames': 1,
|
|
27937
|
+
'page': 1,
|
|
27938
|
+
'pageSize': 1,
|
|
27939
|
+
});
|
|
28789
27940
|
}
|
|
28790
27941
|
function keyBuilder$20(luvio, config) {
|
|
28791
27942
|
const resourceParams = createResourceParams$x(config);
|
|
@@ -28793,29 +27944,14 @@ function keyBuilder$20(luvio, config) {
|
|
|
28793
27944
|
}
|
|
28794
27945
|
function typeCheckConfig$C(untrustedConfig) {
|
|
28795
27946
|
const config = {};
|
|
28796
|
-
|
|
28797
|
-
|
|
28798
|
-
|
|
28799
|
-
|
|
28800
|
-
|
|
28801
|
-
|
|
28802
|
-
|
|
28803
|
-
|
|
28804
|
-
const untrustedConfig_navItemNames_item = untrustedConfig_navItemNames[i];
|
|
28805
|
-
if (typeof untrustedConfig_navItemNames_item === 'string') {
|
|
28806
|
-
untrustedConfig_navItemNames_array.push(untrustedConfig_navItemNames_item);
|
|
28807
|
-
}
|
|
28808
|
-
}
|
|
28809
|
-
config.navItemNames = untrustedConfig_navItemNames_array;
|
|
28810
|
-
}
|
|
28811
|
-
const untrustedConfig_page = untrustedConfig.page;
|
|
28812
|
-
if (typeof untrustedConfig_page === 'number' && Math.floor(untrustedConfig_page) === untrustedConfig_page) {
|
|
28813
|
-
config.page = untrustedConfig_page;
|
|
28814
|
-
}
|
|
28815
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
28816
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
28817
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
28818
|
-
}
|
|
27947
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
27948
|
+
formFactor: 0 /* String */,
|
|
27949
|
+
page: 3 /* Integer */,
|
|
27950
|
+
pageSize: 3 /* Integer */,
|
|
27951
|
+
});
|
|
27952
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
27953
|
+
navItemNames: 0 /* String */,
|
|
27954
|
+
});
|
|
28819
27955
|
return config;
|
|
28820
27956
|
}
|
|
28821
27957
|
function validateAdapterConfig$B(untrustedConfig, configPropertyNames) {
|
|
@@ -29182,12 +28318,9 @@ function createResourceParams$w(config) {
|
|
|
29182
28318
|
return resourceParams;
|
|
29183
28319
|
}
|
|
29184
28320
|
function coerceConfig$f(config) {
|
|
29185
|
-
|
|
29186
|
-
|
|
29187
|
-
|
|
29188
|
-
coercedConfig.objectApiNames = objectApiNames;
|
|
29189
|
-
}
|
|
29190
|
-
return coercedConfig;
|
|
28321
|
+
return coerceConfig$6(config, {
|
|
28322
|
+
'objectApiNames': getObjectApiNamesArray,
|
|
28323
|
+
});
|
|
29191
28324
|
}
|
|
29192
28325
|
function keyBuilder$1_(luvio, config) {
|
|
29193
28326
|
const resourceParams = createResourceParams$w(config);
|
|
@@ -29195,17 +28328,9 @@ function keyBuilder$1_(luvio, config) {
|
|
|
29195
28328
|
}
|
|
29196
28329
|
function typeCheckConfig$B(untrustedConfig) {
|
|
29197
28330
|
const config = {};
|
|
29198
|
-
|
|
29199
|
-
|
|
29200
|
-
|
|
29201
|
-
for (let i = 0, arrayLength = untrustedConfig_objectApiNames.length; i < arrayLength; i++) {
|
|
29202
|
-
const untrustedConfig_objectApiNames_item = untrustedConfig_objectApiNames[i];
|
|
29203
|
-
if (typeof untrustedConfig_objectApiNames_item === 'string') {
|
|
29204
|
-
untrustedConfig_objectApiNames_array.push(untrustedConfig_objectApiNames_item);
|
|
29205
|
-
}
|
|
29206
|
-
}
|
|
29207
|
-
config.objectApiNames = untrustedConfig_objectApiNames_array;
|
|
29208
|
-
}
|
|
28331
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
28332
|
+
objectApiNames: 0 /* String */,
|
|
28333
|
+
});
|
|
29209
28334
|
return config;
|
|
29210
28335
|
}
|
|
29211
28336
|
function validateAdapterConfig$A(untrustedConfig, configPropertyNames) {
|
|
@@ -29870,16 +28995,10 @@ function createResourceParams$v(config) {
|
|
|
29870
28995
|
return resourceParams;
|
|
29871
28996
|
}
|
|
29872
28997
|
function coerceConfig$e(config) {
|
|
29873
|
-
|
|
29874
|
-
|
|
29875
|
-
|
|
29876
|
-
|
|
29877
|
-
}
|
|
29878
|
-
const recordTypeId = getRecordId18(config.recordTypeId);
|
|
29879
|
-
if (recordTypeId !== undefined) {
|
|
29880
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
29881
|
-
}
|
|
29882
|
-
return coercedConfig;
|
|
28998
|
+
return coerceConfig$6(config, {
|
|
28999
|
+
'objectApiName': getObjectApiName$1,
|
|
29000
|
+
'recordTypeId': getRecordId18,
|
|
29001
|
+
});
|
|
29883
29002
|
}
|
|
29884
29003
|
function keyBuilder$1X(luvio, config) {
|
|
29885
29004
|
const resourceParams = createResourceParams$v(config);
|
|
@@ -29887,14 +29006,10 @@ function keyBuilder$1X(luvio, config) {
|
|
|
29887
29006
|
}
|
|
29888
29007
|
function typeCheckConfig$A(untrustedConfig) {
|
|
29889
29008
|
const config = {};
|
|
29890
|
-
|
|
29891
|
-
|
|
29892
|
-
|
|
29893
|
-
}
|
|
29894
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
29895
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
29896
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
29897
|
-
}
|
|
29009
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
29010
|
+
objectApiName: 0 /* String */,
|
|
29011
|
+
recordTypeId: 0 /* String */,
|
|
29012
|
+
});
|
|
29898
29013
|
return config;
|
|
29899
29014
|
}
|
|
29900
29015
|
function validateAdapterConfig$z(untrustedConfig, configPropertyNames) {
|
|
@@ -30119,35 +29234,19 @@ function validateAdapterConfig$y(untrusted, _config) {
|
|
|
30119
29234
|
}
|
|
30120
29235
|
|
|
30121
29236
|
function coerceConfig$d(config) {
|
|
30122
|
-
|
|
30123
|
-
|
|
30124
|
-
|
|
30125
|
-
|
|
30126
|
-
}
|
|
30127
|
-
const objectApiName = config.objectApiName;
|
|
30128
|
-
if (objectApiName !== undefined) {
|
|
30129
|
-
coercedConfig.objectApiName = objectApiName;
|
|
30130
|
-
}
|
|
30131
|
-
const recordTypeId = getRecordId18(config.recordTypeId);
|
|
30132
|
-
if (recordTypeId !== undefined) {
|
|
30133
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
30134
|
-
}
|
|
30135
|
-
return coercedConfig;
|
|
29237
|
+
return coerceConfig$6(config, {
|
|
29238
|
+
'fieldApiName': getFieldApiName,
|
|
29239
|
+
'objectApiName': 1,
|
|
29240
|
+
'recordTypeId': getRecordId18,
|
|
29241
|
+
});
|
|
30136
29242
|
}
|
|
30137
29243
|
function typeCheckConfig$z(untrustedConfig) {
|
|
30138
29244
|
const config = {};
|
|
30139
|
-
|
|
30140
|
-
|
|
30141
|
-
|
|
30142
|
-
|
|
30143
|
-
|
|
30144
|
-
if (typeof untrustedConfig_objectApiName === 'string') {
|
|
30145
|
-
config.objectApiName = untrustedConfig_objectApiName;
|
|
30146
|
-
}
|
|
30147
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
30148
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
30149
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
30150
|
-
}
|
|
29245
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
29246
|
+
fieldApiName: 0 /* String */,
|
|
29247
|
+
objectApiName: 0 /* String */,
|
|
29248
|
+
recordTypeId: 0 /* String */,
|
|
29249
|
+
});
|
|
30151
29250
|
return config;
|
|
30152
29251
|
}
|
|
30153
29252
|
function validateAdapterConfig$x(untrustedConfig, configPropertyNames) {
|
|
@@ -30454,14 +29553,10 @@ function keyBuilder$1V(luvio, config) {
|
|
|
30454
29553
|
}
|
|
30455
29554
|
function typeCheckConfig$y(untrustedConfig) {
|
|
30456
29555
|
const config = {};
|
|
30457
|
-
|
|
30458
|
-
|
|
30459
|
-
|
|
30460
|
-
}
|
|
30461
|
-
const untrustedConfig_apiName = untrustedConfig.apiName;
|
|
30462
|
-
if (typeof untrustedConfig_apiName === 'string') {
|
|
30463
|
-
config.apiName = untrustedConfig_apiName;
|
|
30464
|
-
}
|
|
29556
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
29557
|
+
allowSaveOnDuplicate: 1 /* Boolean */,
|
|
29558
|
+
apiName: 0 /* String */,
|
|
29559
|
+
});
|
|
30465
29560
|
const untrustedConfig_fields = untrustedConfig.fields;
|
|
30466
29561
|
if (untrustedIsObject(untrustedConfig_fields)) {
|
|
30467
29562
|
const untrustedConfig_fields_object = {};
|
|
@@ -31978,34 +31073,19 @@ function createResourceParams$t(config) {
|
|
|
31978
31073
|
return resourceParams;
|
|
31979
31074
|
}
|
|
31980
31075
|
function coerceConfig$c(config) {
|
|
31981
|
-
|
|
31982
|
-
|
|
31983
|
-
|
|
31984
|
-
|
|
31985
|
-
}
|
|
31986
|
-
const formFactor = coerceFormFactor(config.formFactor);
|
|
31987
|
-
if (formFactor !== undefined) {
|
|
31988
|
-
coercedConfig.formFactor = formFactor;
|
|
31989
|
-
}
|
|
31990
|
-
return coercedConfig;
|
|
31076
|
+
return coerceConfig$6(config, {
|
|
31077
|
+
'recordIds': getRecordId18Array,
|
|
31078
|
+
'formFactor': coerceFormFactor,
|
|
31079
|
+
});
|
|
31991
31080
|
}
|
|
31992
31081
|
function typeCheckConfig$x(untrustedConfig) {
|
|
31993
31082
|
const config = {};
|
|
31994
|
-
|
|
31995
|
-
|
|
31996
|
-
|
|
31997
|
-
|
|
31998
|
-
|
|
31999
|
-
|
|
32000
|
-
untrustedConfig_recordIds_array.push(untrustedConfig_recordIds_item);
|
|
32001
|
-
}
|
|
32002
|
-
}
|
|
32003
|
-
config.recordIds = untrustedConfig_recordIds_array;
|
|
32004
|
-
}
|
|
32005
|
-
const untrustedConfig_formFactor = untrustedConfig.formFactor;
|
|
32006
|
-
if (typeof untrustedConfig_formFactor === 'string') {
|
|
32007
|
-
config.formFactor = untrustedConfig_formFactor;
|
|
32008
|
-
}
|
|
31083
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
31084
|
+
formFactor: 0 /* String */,
|
|
31085
|
+
});
|
|
31086
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
31087
|
+
recordIds: 0 /* String */,
|
|
31088
|
+
});
|
|
32009
31089
|
return config;
|
|
32010
31090
|
}
|
|
32011
31091
|
function validateAdapterConfig$v(untrustedConfig, configPropertyNames) {
|
|
@@ -32986,20 +32066,11 @@ function createResourceParams$s(config) {
|
|
|
32986
32066
|
return resourceParams;
|
|
32987
32067
|
}
|
|
32988
32068
|
function coerceConfig$a(config) {
|
|
32989
|
-
|
|
32990
|
-
|
|
32991
|
-
|
|
32992
|
-
|
|
32993
|
-
}
|
|
32994
|
-
const relatedListNames = getFieldApiNamesArray(config.relatedListNames);
|
|
32995
|
-
if (relatedListNames !== undefined) {
|
|
32996
|
-
coercedConfig.relatedListNames = relatedListNames;
|
|
32997
|
-
}
|
|
32998
|
-
const maxCount = config.maxCount;
|
|
32999
|
-
if (maxCount !== undefined) {
|
|
33000
|
-
coercedConfig.maxCount = maxCount;
|
|
33001
|
-
}
|
|
33002
|
-
return coercedConfig;
|
|
32069
|
+
return coerceConfig$6(config, {
|
|
32070
|
+
'parentRecordId': 1,
|
|
32071
|
+
'relatedListNames': getFieldApiNamesArray,
|
|
32072
|
+
'maxCount': 1,
|
|
32073
|
+
});
|
|
33003
32074
|
}
|
|
33004
32075
|
function keyBuilder$1O(luvio, config) {
|
|
33005
32076
|
const resourceParams = createResourceParams$s(config);
|
|
@@ -33007,25 +32078,13 @@ function keyBuilder$1O(luvio, config) {
|
|
|
33007
32078
|
}
|
|
33008
32079
|
function typeCheckConfig$v(untrustedConfig) {
|
|
33009
32080
|
const config = {};
|
|
33010
|
-
|
|
33011
|
-
|
|
33012
|
-
|
|
33013
|
-
}
|
|
33014
|
-
|
|
33015
|
-
|
|
33016
|
-
|
|
33017
|
-
for (let i = 0, arrayLength = untrustedConfig_relatedListNames.length; i < arrayLength; i++) {
|
|
33018
|
-
const untrustedConfig_relatedListNames_item = untrustedConfig_relatedListNames[i];
|
|
33019
|
-
if (typeof untrustedConfig_relatedListNames_item === 'string') {
|
|
33020
|
-
untrustedConfig_relatedListNames_array.push(untrustedConfig_relatedListNames_item);
|
|
33021
|
-
}
|
|
33022
|
-
}
|
|
33023
|
-
config.relatedListNames = untrustedConfig_relatedListNames_array;
|
|
33024
|
-
}
|
|
33025
|
-
const untrustedConfig_maxCount = untrustedConfig.maxCount;
|
|
33026
|
-
if (typeof untrustedConfig_maxCount === 'number' && Math.floor(untrustedConfig_maxCount) === untrustedConfig_maxCount) {
|
|
33027
|
-
config.maxCount = untrustedConfig_maxCount;
|
|
33028
|
-
}
|
|
32081
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
32082
|
+
parentRecordId: 0 /* String */,
|
|
32083
|
+
maxCount: 3 /* Integer */,
|
|
32084
|
+
});
|
|
32085
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
32086
|
+
relatedListNames: 0 /* String */,
|
|
32087
|
+
});
|
|
33029
32088
|
return config;
|
|
33030
32089
|
}
|
|
33031
32090
|
function validateAdapterConfig$t(untrustedConfig, configPropertyNames) {
|
|
@@ -33138,18 +32197,11 @@ function keyBuilder$1N(luvio, config) {
|
|
|
33138
32197
|
}
|
|
33139
32198
|
function typeCheckConfig$u(untrustedConfig) {
|
|
33140
32199
|
const config = {};
|
|
33141
|
-
|
|
33142
|
-
|
|
33143
|
-
|
|
33144
|
-
|
|
33145
|
-
|
|
33146
|
-
if (typeof untrustedConfig_relatedListId === 'string') {
|
|
33147
|
-
config.relatedListId = untrustedConfig_relatedListId;
|
|
33148
|
-
}
|
|
33149
|
-
const untrustedConfig_maxCount = untrustedConfig.maxCount;
|
|
33150
|
-
if (typeof untrustedConfig_maxCount === 'number' && Math.floor(untrustedConfig_maxCount) === untrustedConfig_maxCount) {
|
|
33151
|
-
config.maxCount = untrustedConfig_maxCount;
|
|
33152
|
-
}
|
|
32200
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
32201
|
+
parentRecordId: 0 /* String */,
|
|
32202
|
+
relatedListId: 0 /* String */,
|
|
32203
|
+
maxCount: 3 /* Integer */,
|
|
32204
|
+
});
|
|
33153
32205
|
return config;
|
|
33154
32206
|
}
|
|
33155
32207
|
function validateAdapterConfig$s(untrustedConfig, configPropertyNames) {
|
|
@@ -34060,20 +33112,11 @@ function createResourceParams$q(config) {
|
|
|
34060
33112
|
return resourceParams;
|
|
34061
33113
|
}
|
|
34062
33114
|
function coerceConfig$9(config) {
|
|
34063
|
-
|
|
34064
|
-
|
|
34065
|
-
|
|
34066
|
-
|
|
34067
|
-
}
|
|
34068
|
-
const relatedListNames = config.relatedListNames;
|
|
34069
|
-
if (relatedListNames !== undefined) {
|
|
34070
|
-
coercedConfig.relatedListNames = relatedListNames;
|
|
34071
|
-
}
|
|
34072
|
-
const recordTypeId = config.recordTypeId;
|
|
34073
|
-
if (recordTypeId !== undefined) {
|
|
34074
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
34075
|
-
}
|
|
34076
|
-
return coercedConfig;
|
|
33115
|
+
return coerceConfig$6(config, {
|
|
33116
|
+
'parentObjectApiName': getObjectApiName$1,
|
|
33117
|
+
'relatedListNames': 1,
|
|
33118
|
+
'recordTypeId': 1,
|
|
33119
|
+
});
|
|
34077
33120
|
}
|
|
34078
33121
|
function keyBuilder$1J(luvio, config) {
|
|
34079
33122
|
const resourceParams = createResourceParams$q(config);
|
|
@@ -34081,25 +33124,13 @@ function keyBuilder$1J(luvio, config) {
|
|
|
34081
33124
|
}
|
|
34082
33125
|
function typeCheckConfig$t(untrustedConfig) {
|
|
34083
33126
|
const config = {};
|
|
34084
|
-
|
|
34085
|
-
|
|
34086
|
-
|
|
34087
|
-
}
|
|
34088
|
-
|
|
34089
|
-
|
|
34090
|
-
|
|
34091
|
-
for (let i = 0, arrayLength = untrustedConfig_relatedListNames.length; i < arrayLength; i++) {
|
|
34092
|
-
const untrustedConfig_relatedListNames_item = untrustedConfig_relatedListNames[i];
|
|
34093
|
-
if (typeof untrustedConfig_relatedListNames_item === 'string') {
|
|
34094
|
-
untrustedConfig_relatedListNames_array.push(untrustedConfig_relatedListNames_item);
|
|
34095
|
-
}
|
|
34096
|
-
}
|
|
34097
|
-
config.relatedListNames = untrustedConfig_relatedListNames_array;
|
|
34098
|
-
}
|
|
34099
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
34100
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
34101
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
34102
|
-
}
|
|
33127
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
33128
|
+
parentObjectApiName: 0 /* String */,
|
|
33129
|
+
recordTypeId: 0 /* String */,
|
|
33130
|
+
});
|
|
33131
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
33132
|
+
relatedListNames: 0 /* String */,
|
|
33133
|
+
});
|
|
34103
33134
|
return config;
|
|
34104
33135
|
}
|
|
34105
33136
|
function validateAdapterConfig$r(untrustedConfig, configPropertyNames) {
|
|
@@ -34530,16 +33561,10 @@ function createResourceParams$p(config) {
|
|
|
34530
33561
|
return resourceParams;
|
|
34531
33562
|
}
|
|
34532
33563
|
function coerceConfig$8(config) {
|
|
34533
|
-
|
|
34534
|
-
|
|
34535
|
-
|
|
34536
|
-
|
|
34537
|
-
}
|
|
34538
|
-
const recordTypeId = config.recordTypeId;
|
|
34539
|
-
if (recordTypeId !== undefined) {
|
|
34540
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
34541
|
-
}
|
|
34542
|
-
return coercedConfig;
|
|
33564
|
+
return coerceConfig$6(config, {
|
|
33565
|
+
'parentObjectApiName': getObjectApiName$1,
|
|
33566
|
+
'recordTypeId': 1,
|
|
33567
|
+
});
|
|
34543
33568
|
}
|
|
34544
33569
|
function keyBuilder$1G(luvio, config) {
|
|
34545
33570
|
const resourceParams = createResourceParams$p(config);
|
|
@@ -34547,14 +33572,10 @@ function keyBuilder$1G(luvio, config) {
|
|
|
34547
33572
|
}
|
|
34548
33573
|
function typeCheckConfig$s(untrustedConfig) {
|
|
34549
33574
|
const config = {};
|
|
34550
|
-
|
|
34551
|
-
|
|
34552
|
-
|
|
34553
|
-
}
|
|
34554
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
34555
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
34556
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
34557
|
-
}
|
|
33575
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
33576
|
+
parentObjectApiName: 0 /* String */,
|
|
33577
|
+
recordTypeId: 0 /* String */,
|
|
33578
|
+
});
|
|
34558
33579
|
return config;
|
|
34559
33580
|
}
|
|
34560
33581
|
function validateAdapterConfig$q(untrustedConfig, configPropertyNames) {
|
|
@@ -34662,32 +33683,14 @@ function createResourceParams$o(config) {
|
|
|
34662
33683
|
return resourceParams;
|
|
34663
33684
|
}
|
|
34664
33685
|
function coerceConfig$7(config) {
|
|
34665
|
-
|
|
34666
|
-
|
|
34667
|
-
|
|
34668
|
-
|
|
34669
|
-
|
|
34670
|
-
|
|
34671
|
-
|
|
34672
|
-
|
|
34673
|
-
}
|
|
34674
|
-
const fields = config.fields;
|
|
34675
|
-
if (fields !== undefined) {
|
|
34676
|
-
coercedConfig.fields = fields;
|
|
34677
|
-
}
|
|
34678
|
-
const optionalFields = config.optionalFields;
|
|
34679
|
-
if (optionalFields !== undefined) {
|
|
34680
|
-
coercedConfig.optionalFields = optionalFields;
|
|
34681
|
-
}
|
|
34682
|
-
const recordTypeId = config.recordTypeId;
|
|
34683
|
-
if (recordTypeId !== undefined) {
|
|
34684
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
34685
|
-
}
|
|
34686
|
-
const restrictColumnsToLayout = config.restrictColumnsToLayout;
|
|
34687
|
-
if (restrictColumnsToLayout !== undefined) {
|
|
34688
|
-
coercedConfig.restrictColumnsToLayout = restrictColumnsToLayout;
|
|
34689
|
-
}
|
|
34690
|
-
return coercedConfig;
|
|
33686
|
+
return coerceConfig$6(config, {
|
|
33687
|
+
'parentObjectApiName': getObjectApiName$1,
|
|
33688
|
+
'relatedListId': 1,
|
|
33689
|
+
'fields': 1,
|
|
33690
|
+
'optionalFields': 1,
|
|
33691
|
+
'recordTypeId': 1,
|
|
33692
|
+
'restrictColumnsToLayout': 1,
|
|
33693
|
+
});
|
|
34691
33694
|
}
|
|
34692
33695
|
function keyBuilder$1F(luvio, config) {
|
|
34693
33696
|
const resourceParams = createResourceParams$o(config);
|
|
@@ -34695,44 +33698,16 @@ function keyBuilder$1F(luvio, config) {
|
|
|
34695
33698
|
}
|
|
34696
33699
|
function typeCheckConfig$r(untrustedConfig) {
|
|
34697
33700
|
const config = {};
|
|
34698
|
-
|
|
34699
|
-
|
|
34700
|
-
|
|
34701
|
-
|
|
34702
|
-
|
|
34703
|
-
|
|
34704
|
-
|
|
34705
|
-
|
|
34706
|
-
|
|
34707
|
-
|
|
34708
|
-
const untrustedConfig_fields_array = [];
|
|
34709
|
-
for (let i = 0, arrayLength = untrustedConfig_fields.length; i < arrayLength; i++) {
|
|
34710
|
-
const untrustedConfig_fields_item = untrustedConfig_fields[i];
|
|
34711
|
-
if (typeof untrustedConfig_fields_item === 'string') {
|
|
34712
|
-
untrustedConfig_fields_array.push(untrustedConfig_fields_item);
|
|
34713
|
-
}
|
|
34714
|
-
}
|
|
34715
|
-
config.fields = untrustedConfig_fields_array;
|
|
34716
|
-
}
|
|
34717
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
34718
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
34719
|
-
const untrustedConfig_optionalFields_array = [];
|
|
34720
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
34721
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
34722
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
34723
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
34724
|
-
}
|
|
34725
|
-
}
|
|
34726
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
34727
|
-
}
|
|
34728
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
34729
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
34730
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
34731
|
-
}
|
|
34732
|
-
const untrustedConfig_restrictColumnsToLayout = untrustedConfig.restrictColumnsToLayout;
|
|
34733
|
-
if (typeof untrustedConfig_restrictColumnsToLayout === 'boolean') {
|
|
34734
|
-
config.restrictColumnsToLayout = untrustedConfig_restrictColumnsToLayout;
|
|
34735
|
-
}
|
|
33701
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
33702
|
+
parentObjectApiName: 0 /* String */,
|
|
33703
|
+
relatedListId: 0 /* String */,
|
|
33704
|
+
recordTypeId: 0 /* String */,
|
|
33705
|
+
restrictColumnsToLayout: 1 /* Boolean */,
|
|
33706
|
+
});
|
|
33707
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
33708
|
+
fields: 0 /* String */,
|
|
33709
|
+
optionalFields: 0 /* String */,
|
|
33710
|
+
});
|
|
34736
33711
|
return config;
|
|
34737
33712
|
}
|
|
34738
33713
|
function validateAdapterConfig$p(untrustedConfig, configPropertyNames) {
|
|
@@ -35283,17 +34258,9 @@ function keyBuilder$1B(luvio, config) {
|
|
|
35283
34258
|
}
|
|
35284
34259
|
function typeCheckConfig$p(untrustedConfig) {
|
|
35285
34260
|
const config = {};
|
|
35286
|
-
|
|
35287
|
-
|
|
35288
|
-
|
|
35289
|
-
for (let i = 0, arrayLength = untrustedConfig_preferencesIds.length; i < arrayLength; i++) {
|
|
35290
|
-
const untrustedConfig_preferencesIds_item = untrustedConfig_preferencesIds[i];
|
|
35291
|
-
if (typeof untrustedConfig_preferencesIds_item === 'string') {
|
|
35292
|
-
untrustedConfig_preferencesIds_array.push(untrustedConfig_preferencesIds_item);
|
|
35293
|
-
}
|
|
35294
|
-
}
|
|
35295
|
-
config.preferencesIds = untrustedConfig_preferencesIds_array;
|
|
35296
|
-
}
|
|
34261
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
34262
|
+
preferencesIds: 0 /* String */,
|
|
34263
|
+
});
|
|
35297
34264
|
return config;
|
|
35298
34265
|
}
|
|
35299
34266
|
function validateAdapterConfig$n(untrustedConfig, configPropertyNames) {
|
|
@@ -35402,10 +34369,9 @@ function keyBuilder$1A(luvio, config) {
|
|
|
35402
34369
|
}
|
|
35403
34370
|
function typeCheckConfig$o(untrustedConfig) {
|
|
35404
34371
|
const config = {};
|
|
35405
|
-
|
|
35406
|
-
|
|
35407
|
-
|
|
35408
|
-
}
|
|
34372
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
34373
|
+
preferencesId: 0 /* String */,
|
|
34374
|
+
});
|
|
35409
34375
|
return config;
|
|
35410
34376
|
}
|
|
35411
34377
|
function validateAdapterConfig$m(untrustedConfig, configPropertyNames) {
|
|
@@ -36736,10 +35702,9 @@ function keyBuilder$1w(luvio, config) {
|
|
|
36736
35702
|
}
|
|
36737
35703
|
function typeCheckConfig$m(untrustedConfig) {
|
|
36738
35704
|
const config = {};
|
|
36739
|
-
|
|
36740
|
-
|
|
36741
|
-
|
|
36742
|
-
}
|
|
35705
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
35706
|
+
parentRecordId: 0 /* String */,
|
|
35707
|
+
});
|
|
36743
35708
|
const untrustedConfig_relatedListParameters = untrustedConfig.relatedListParameters;
|
|
36744
35709
|
if (ArrayIsArray$1(untrustedConfig_relatedListParameters)) {
|
|
36745
35710
|
const untrustedConfig_relatedListParameters_array = [];
|
|
@@ -36876,59 +35841,18 @@ function keyBuilder$1v(luvio, config) {
|
|
|
36876
35841
|
}
|
|
36877
35842
|
function typeCheckConfig$l(untrustedConfig) {
|
|
36878
35843
|
const config = {};
|
|
36879
|
-
|
|
36880
|
-
|
|
36881
|
-
|
|
36882
|
-
|
|
36883
|
-
|
|
36884
|
-
|
|
36885
|
-
|
|
36886
|
-
|
|
36887
|
-
|
|
36888
|
-
|
|
36889
|
-
|
|
36890
|
-
|
|
36891
|
-
const untrustedConfig_fields_item = untrustedConfig_fields[i];
|
|
36892
|
-
if (typeof untrustedConfig_fields_item === 'string') {
|
|
36893
|
-
untrustedConfig_fields_array.push(untrustedConfig_fields_item);
|
|
36894
|
-
}
|
|
36895
|
-
}
|
|
36896
|
-
config.fields = untrustedConfig_fields_array;
|
|
36897
|
-
}
|
|
36898
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
36899
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
36900
|
-
const untrustedConfig_optionalFields_array = [];
|
|
36901
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
36902
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
36903
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
36904
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
36905
|
-
}
|
|
36906
|
-
}
|
|
36907
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
36908
|
-
}
|
|
36909
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
36910
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
36911
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
36912
|
-
}
|
|
36913
|
-
const untrustedConfig_pageToken = untrustedConfig.pageToken;
|
|
36914
|
-
if (typeof untrustedConfig_pageToken === 'string') {
|
|
36915
|
-
config.pageToken = untrustedConfig_pageToken;
|
|
36916
|
-
}
|
|
36917
|
-
const untrustedConfig_sortBy = untrustedConfig.sortBy;
|
|
36918
|
-
if (ArrayIsArray$1(untrustedConfig_sortBy)) {
|
|
36919
|
-
const untrustedConfig_sortBy_array = [];
|
|
36920
|
-
for (let i = 0, arrayLength = untrustedConfig_sortBy.length; i < arrayLength; i++) {
|
|
36921
|
-
const untrustedConfig_sortBy_item = untrustedConfig_sortBy[i];
|
|
36922
|
-
if (typeof untrustedConfig_sortBy_item === 'string') {
|
|
36923
|
-
untrustedConfig_sortBy_array.push(untrustedConfig_sortBy_item);
|
|
36924
|
-
}
|
|
36925
|
-
}
|
|
36926
|
-
config.sortBy = untrustedConfig_sortBy_array;
|
|
36927
|
-
}
|
|
36928
|
-
const untrustedConfig_where = untrustedConfig.where;
|
|
36929
|
-
if (typeof untrustedConfig_where === 'string') {
|
|
36930
|
-
config.where = untrustedConfig_where;
|
|
36931
|
-
}
|
|
35844
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
35845
|
+
parentRecordId: 0 /* String */,
|
|
35846
|
+
relatedListId: 0 /* String */,
|
|
35847
|
+
pageSize: 3 /* Integer */,
|
|
35848
|
+
pageToken: 0 /* String */,
|
|
35849
|
+
where: 0 /* String */,
|
|
35850
|
+
});
|
|
35851
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
35852
|
+
fields: 0 /* String */,
|
|
35853
|
+
optionalFields: 0 /* String */,
|
|
35854
|
+
sortBy: 0 /* String */,
|
|
35855
|
+
});
|
|
36932
35856
|
return config;
|
|
36933
35857
|
}
|
|
36934
35858
|
function validateAdapterConfig$j(untrustedConfig, configPropertyNames) {
|
|
@@ -37550,10 +36474,9 @@ function keyBuilder$1s(luvio, config) {
|
|
|
37550
36474
|
}
|
|
37551
36475
|
function typeCheckConfig$k(untrustedConfig) {
|
|
37552
36476
|
const config = {};
|
|
37553
|
-
|
|
37554
|
-
|
|
37555
|
-
|
|
37556
|
-
}
|
|
36477
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
36478
|
+
objectApiName: 0 /* String */,
|
|
36479
|
+
});
|
|
37557
36480
|
return config;
|
|
37558
36481
|
}
|
|
37559
36482
|
function validateAdapterConfig$i(untrustedConfig, configPropertyNames) {
|
|
@@ -37851,18 +36774,11 @@ function keyBuilder$1p(luvio, config) {
|
|
|
37851
36774
|
}
|
|
37852
36775
|
function typeCheckConfig$j(untrustedConfig) {
|
|
37853
36776
|
const config = {};
|
|
37854
|
-
|
|
37855
|
-
|
|
37856
|
-
|
|
37857
|
-
|
|
37858
|
-
|
|
37859
|
-
if (typeof untrustedConfig_objectApiName === 'string') {
|
|
37860
|
-
config.objectApiName = untrustedConfig_objectApiName;
|
|
37861
|
-
}
|
|
37862
|
-
const untrustedConfig_q = untrustedConfig.q;
|
|
37863
|
-
if (typeof untrustedConfig_q === 'string') {
|
|
37864
|
-
config.q = untrustedConfig_q;
|
|
37865
|
-
}
|
|
36777
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
36778
|
+
filterApiName: 0 /* String */,
|
|
36779
|
+
objectApiName: 0 /* String */,
|
|
36780
|
+
q: 0 /* String */,
|
|
36781
|
+
});
|
|
37866
36782
|
return config;
|
|
37867
36783
|
}
|
|
37868
36784
|
function validateAdapterConfig$h(untrustedConfig, configPropertyNames) {
|
|
@@ -38254,14 +37170,10 @@ function keyBuilder$1m(luvio, config) {
|
|
|
38254
37170
|
}
|
|
38255
37171
|
function typeCheckConfig$i(untrustedConfig) {
|
|
38256
37172
|
const config = {};
|
|
38257
|
-
|
|
38258
|
-
|
|
38259
|
-
|
|
38260
|
-
}
|
|
38261
|
-
const untrustedConfig_objectApiName = untrustedConfig.objectApiName;
|
|
38262
|
-
if (typeof untrustedConfig_objectApiName === 'string') {
|
|
38263
|
-
config.objectApiName = untrustedConfig_objectApiName;
|
|
38264
|
-
}
|
|
37173
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
37174
|
+
fieldApiName: 0 /* String */,
|
|
37175
|
+
objectApiName: 0 /* String */,
|
|
37176
|
+
});
|
|
38265
37177
|
return config;
|
|
38266
37178
|
}
|
|
38267
37179
|
function validateAdapterConfig$g(untrustedConfig, configPropertyNames) {
|
|
@@ -38844,32 +37756,13 @@ function keyBuilder$1j(luvio, config) {
|
|
|
38844
37756
|
}
|
|
38845
37757
|
function typeCheckConfig$h(untrustedConfig) {
|
|
38846
37758
|
const config = {};
|
|
38847
|
-
|
|
38848
|
-
|
|
38849
|
-
|
|
38850
|
-
|
|
38851
|
-
|
|
38852
|
-
|
|
38853
|
-
|
|
38854
|
-
for (let i = 0, arrayLength = untrustedConfig_answerTypes.length; i < arrayLength; i++) {
|
|
38855
|
-
const untrustedConfig_answerTypes_item = untrustedConfig_answerTypes[i];
|
|
38856
|
-
if (typeof untrustedConfig_answerTypes_item === 'string') {
|
|
38857
|
-
untrustedConfig_answerTypes_array.push(untrustedConfig_answerTypes_item);
|
|
38858
|
-
}
|
|
38859
|
-
}
|
|
38860
|
-
config.answerTypes = untrustedConfig_answerTypes_array;
|
|
38861
|
-
}
|
|
38862
|
-
const untrustedConfig_objectApiNames = untrustedConfig.objectApiNames;
|
|
38863
|
-
if (ArrayIsArray$1(untrustedConfig_objectApiNames)) {
|
|
38864
|
-
const untrustedConfig_objectApiNames_array = [];
|
|
38865
|
-
for (let i = 0, arrayLength = untrustedConfig_objectApiNames.length; i < arrayLength; i++) {
|
|
38866
|
-
const untrustedConfig_objectApiNames_item = untrustedConfig_objectApiNames[i];
|
|
38867
|
-
if (typeof untrustedConfig_objectApiNames_item === 'string') {
|
|
38868
|
-
untrustedConfig_objectApiNames_array.push(untrustedConfig_objectApiNames_item);
|
|
38869
|
-
}
|
|
38870
|
-
}
|
|
38871
|
-
config.objectApiNames = untrustedConfig_objectApiNames_array;
|
|
38872
|
-
}
|
|
37759
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
37760
|
+
q: 0 /* String */,
|
|
37761
|
+
});
|
|
37762
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
37763
|
+
answerTypes: 0 /* String */,
|
|
37764
|
+
objectApiNames: 0 /* String */,
|
|
37765
|
+
});
|
|
38873
37766
|
return config;
|
|
38874
37767
|
}
|
|
38875
37768
|
function validateAdapterConfig$f(untrustedConfig, configPropertyNames) {
|
|
@@ -39216,14 +38109,13 @@ function keyBuilder$1g(luvio, config) {
|
|
|
39216
38109
|
}
|
|
39217
38110
|
function typeCheckConfig$g(untrustedConfig) {
|
|
39218
38111
|
const config = {};
|
|
39219
|
-
|
|
39220
|
-
|
|
39221
|
-
|
|
39222
|
-
|
|
39223
|
-
|
|
39224
|
-
|
|
39225
|
-
|
|
39226
|
-
}
|
|
38112
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
38113
|
+
objectApiName: 0 /* String */,
|
|
38114
|
+
q: 0 /* String */,
|
|
38115
|
+
pageSize: 3 /* Integer */,
|
|
38116
|
+
pageToken: 0 /* String */,
|
|
38117
|
+
sortBy: 0 /* String */,
|
|
38118
|
+
});
|
|
39227
38119
|
const untrustedConfig_filters = untrustedConfig.filters;
|
|
39228
38120
|
if (ArrayIsArray$1(untrustedConfig_filters)) {
|
|
39229
38121
|
const untrustedConfig_filters_array = [];
|
|
@@ -39236,18 +38128,6 @@ function typeCheckConfig$g(untrustedConfig) {
|
|
|
39236
38128
|
}
|
|
39237
38129
|
config.filters = untrustedConfig_filters_array;
|
|
39238
38130
|
}
|
|
39239
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
39240
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
39241
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
39242
|
-
}
|
|
39243
|
-
const untrustedConfig_pageToken = untrustedConfig.pageToken;
|
|
39244
|
-
if (typeof untrustedConfig_pageToken === 'string') {
|
|
39245
|
-
config.pageToken = untrustedConfig_pageToken;
|
|
39246
|
-
}
|
|
39247
|
-
const untrustedConfig_sortBy = untrustedConfig.sortBy;
|
|
39248
|
-
if (typeof untrustedConfig_sortBy === 'string') {
|
|
39249
|
-
config.sortBy = untrustedConfig_sortBy;
|
|
39250
|
-
}
|
|
39251
38131
|
return config;
|
|
39252
38132
|
}
|
|
39253
38133
|
function validateAdapterConfig$e(untrustedConfig, configPropertyNames) {
|
|
@@ -55718,22 +54598,12 @@ function createResourceParams$a(config) {
|
|
|
55718
54598
|
}
|
|
55719
54599
|
function typeCheckConfig$d(untrustedConfig) {
|
|
55720
54600
|
const config = {};
|
|
55721
|
-
|
|
55722
|
-
|
|
55723
|
-
|
|
55724
|
-
|
|
55725
|
-
|
|
55726
|
-
|
|
55727
|
-
config.allowSaveOnDuplicate = untrustedConfig_allowSaveOnDuplicate;
|
|
55728
|
-
}
|
|
55729
|
-
const untrustedConfig_apiName = untrustedConfig.apiName;
|
|
55730
|
-
if (typeof untrustedConfig_apiName === 'string') {
|
|
55731
|
-
config.apiName = untrustedConfig_apiName;
|
|
55732
|
-
}
|
|
55733
|
-
const untrustedConfig_contextId = untrustedConfig.contextId;
|
|
55734
|
-
if (typeof untrustedConfig_contextId === 'string') {
|
|
55735
|
-
config.contextId = untrustedConfig_contextId;
|
|
55736
|
-
}
|
|
54601
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
54602
|
+
actionApiName: 0 /* String */,
|
|
54603
|
+
allowSaveOnDuplicate: 1 /* Boolean */,
|
|
54604
|
+
apiName: 0 /* String */,
|
|
54605
|
+
contextId: 0 /* String */,
|
|
54606
|
+
});
|
|
55737
54607
|
const untrustedConfig_fields = untrustedConfig.fields;
|
|
55738
54608
|
if (untrustedIsObject(untrustedConfig_fields)) {
|
|
55739
54609
|
const untrustedConfig_fields_object = {};
|
|
@@ -55875,22 +54745,12 @@ function createResourceParams$9(config) {
|
|
|
55875
54745
|
}
|
|
55876
54746
|
function typeCheckConfig$c(untrustedConfig) {
|
|
55877
54747
|
const config = {};
|
|
55878
|
-
|
|
55879
|
-
|
|
55880
|
-
|
|
55881
|
-
|
|
55882
|
-
|
|
55883
|
-
|
|
55884
|
-
config.allowSaveOnDuplicate = untrustedConfig_allowSaveOnDuplicate;
|
|
55885
|
-
}
|
|
55886
|
-
const untrustedConfig_apiName = untrustedConfig.apiName;
|
|
55887
|
-
if (typeof untrustedConfig_apiName === 'string') {
|
|
55888
|
-
config.apiName = untrustedConfig_apiName;
|
|
55889
|
-
}
|
|
55890
|
-
const untrustedConfig_contextId = untrustedConfig.contextId;
|
|
55891
|
-
if (typeof untrustedConfig_contextId === 'string') {
|
|
55892
|
-
config.contextId = untrustedConfig_contextId;
|
|
55893
|
-
}
|
|
54748
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
54749
|
+
actionApiName: 0 /* String */,
|
|
54750
|
+
allowSaveOnDuplicate: 1 /* Boolean */,
|
|
54751
|
+
apiName: 0 /* String */,
|
|
54752
|
+
contextId: 0 /* String */,
|
|
54753
|
+
});
|
|
55894
54754
|
const untrustedConfig_fields = untrustedConfig.fields;
|
|
55895
54755
|
if (untrustedIsObject(untrustedConfig_fields)) {
|
|
55896
54756
|
const untrustedConfig_fields_object = {};
|
|
@@ -56015,55 +54875,17 @@ function keyBuilder$9(luvio, config) {
|
|
|
56015
54875
|
}
|
|
56016
54876
|
function typeCheckConfig$b(untrustedConfig) {
|
|
56017
54877
|
const config = {};
|
|
56018
|
-
|
|
56019
|
-
|
|
56020
|
-
|
|
56021
|
-
|
|
56022
|
-
|
|
56023
|
-
|
|
56024
|
-
|
|
56025
|
-
|
|
56026
|
-
|
|
56027
|
-
|
|
56028
|
-
|
|
56029
|
-
for (let i = 0, arrayLength = untrustedConfig_fields.length; i < arrayLength; i++) {
|
|
56030
|
-
const untrustedConfig_fields_item = untrustedConfig_fields[i];
|
|
56031
|
-
if (typeof untrustedConfig_fields_item === 'string') {
|
|
56032
|
-
untrustedConfig_fields_array.push(untrustedConfig_fields_item);
|
|
56033
|
-
}
|
|
56034
|
-
}
|
|
56035
|
-
config.fields = untrustedConfig_fields_array;
|
|
56036
|
-
}
|
|
56037
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
56038
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
56039
|
-
const untrustedConfig_optionalFields_array = [];
|
|
56040
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
56041
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
56042
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
56043
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
56044
|
-
}
|
|
56045
|
-
}
|
|
56046
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
56047
|
-
}
|
|
56048
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
56049
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
56050
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
56051
|
-
}
|
|
56052
|
-
const untrustedConfig_pageToken = untrustedConfig.pageToken;
|
|
56053
|
-
if (typeof untrustedConfig_pageToken === 'string') {
|
|
56054
|
-
config.pageToken = untrustedConfig_pageToken;
|
|
56055
|
-
}
|
|
56056
|
-
const untrustedConfig_sortBy = untrustedConfig.sortBy;
|
|
56057
|
-
if (ArrayIsArray$1(untrustedConfig_sortBy)) {
|
|
56058
|
-
const untrustedConfig_sortBy_array = [];
|
|
56059
|
-
for (let i = 0, arrayLength = untrustedConfig_sortBy.length; i < arrayLength; i++) {
|
|
56060
|
-
const untrustedConfig_sortBy_item = untrustedConfig_sortBy[i];
|
|
56061
|
-
if (typeof untrustedConfig_sortBy_item === 'string') {
|
|
56062
|
-
untrustedConfig_sortBy_array.push(untrustedConfig_sortBy_item);
|
|
56063
|
-
}
|
|
56064
|
-
}
|
|
56065
|
-
config.sortBy = untrustedConfig_sortBy_array;
|
|
56066
|
-
}
|
|
54878
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
54879
|
+
listViewApiName: 0 /* String */,
|
|
54880
|
+
objectApiName: 0 /* String */,
|
|
54881
|
+
pageSize: 3 /* Integer */,
|
|
54882
|
+
pageToken: 0 /* String */,
|
|
54883
|
+
});
|
|
54884
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
54885
|
+
fields: 0 /* String */,
|
|
54886
|
+
optionalFields: 0 /* String */,
|
|
54887
|
+
sortBy: 0 /* String */,
|
|
54888
|
+
});
|
|
56067
54889
|
return config;
|
|
56068
54890
|
}
|
|
56069
54891
|
function validateAdapterConfig$9(untrustedConfig, configPropertyNames) {
|
|
@@ -56285,90 +55107,33 @@ function createResourceRequest$9(config) {
|
|
|
56285
55107
|
}
|
|
56286
55108
|
|
|
56287
55109
|
function coerceConfig$5(config) {
|
|
56288
|
-
|
|
56289
|
-
|
|
56290
|
-
|
|
56291
|
-
|
|
56292
|
-
|
|
56293
|
-
|
|
56294
|
-
|
|
56295
|
-
|
|
56296
|
-
|
|
56297
|
-
|
|
56298
|
-
|
|
56299
|
-
coercedConfig.dependentFieldBindings = dependentFieldBindings;
|
|
56300
|
-
}
|
|
56301
|
-
const page = config.page;
|
|
56302
|
-
if (page !== undefined) {
|
|
56303
|
-
coercedConfig.page = page;
|
|
56304
|
-
}
|
|
56305
|
-
const pageSize = config.pageSize;
|
|
56306
|
-
if (pageSize !== undefined) {
|
|
56307
|
-
coercedConfig.pageSize = pageSize;
|
|
56308
|
-
}
|
|
56309
|
-
const q = config.q;
|
|
56310
|
-
if (q !== undefined) {
|
|
56311
|
-
coercedConfig.q = q;
|
|
56312
|
-
}
|
|
56313
|
-
const searchType = config.searchType;
|
|
56314
|
-
if (searchType !== undefined) {
|
|
56315
|
-
coercedConfig.searchType = searchType;
|
|
56316
|
-
}
|
|
56317
|
-
const sourceRecordId = config.sourceRecordId;
|
|
56318
|
-
if (sourceRecordId !== undefined) {
|
|
56319
|
-
coercedConfig.sourceRecordId = sourceRecordId;
|
|
56320
|
-
}
|
|
56321
|
-
const targetApiName = getObjectApiName$1(config.targetApiName);
|
|
56322
|
-
if (targetApiName !== undefined) {
|
|
56323
|
-
coercedConfig.targetApiName = targetApiName;
|
|
56324
|
-
}
|
|
56325
|
-
return coercedConfig;
|
|
55110
|
+
return coerceConfig$6(config, {
|
|
55111
|
+
'fieldApiName': getFieldApiName,
|
|
55112
|
+
'objectApiName': 1,
|
|
55113
|
+
'dependentFieldBindings': 1,
|
|
55114
|
+
'page': 1,
|
|
55115
|
+
'pageSize': 1,
|
|
55116
|
+
'q': 1,
|
|
55117
|
+
'searchType': 1,
|
|
55118
|
+
'sourceRecordId': 1,
|
|
55119
|
+
'targetApiName': getObjectApiName$1,
|
|
55120
|
+
});
|
|
56326
55121
|
}
|
|
56327
55122
|
function typeCheckConfig$a(untrustedConfig) {
|
|
56328
55123
|
const config = {};
|
|
56329
|
-
|
|
56330
|
-
|
|
56331
|
-
|
|
56332
|
-
|
|
56333
|
-
|
|
56334
|
-
|
|
56335
|
-
|
|
56336
|
-
|
|
56337
|
-
|
|
56338
|
-
|
|
56339
|
-
|
|
56340
|
-
|
|
56341
|
-
|
|
56342
|
-
if (typeof untrustedConfig_dependentFieldBindings_item === 'string') {
|
|
56343
|
-
untrustedConfig_dependentFieldBindings_array.push(untrustedConfig_dependentFieldBindings_item);
|
|
56344
|
-
}
|
|
56345
|
-
}
|
|
56346
|
-
config.dependentFieldBindings = untrustedConfig_dependentFieldBindings_array;
|
|
56347
|
-
}
|
|
56348
|
-
const untrustedConfig_page = untrustedConfig.page;
|
|
56349
|
-
if (typeof untrustedConfig_page === 'number' && Math.floor(untrustedConfig_page) === untrustedConfig_page) {
|
|
56350
|
-
config.page = untrustedConfig_page;
|
|
56351
|
-
}
|
|
56352
|
-
const untrustedConfig_pageSize = untrustedConfig.pageSize;
|
|
56353
|
-
if (typeof untrustedConfig_pageSize === 'number' && Math.floor(untrustedConfig_pageSize) === untrustedConfig_pageSize) {
|
|
56354
|
-
config.pageSize = untrustedConfig_pageSize;
|
|
56355
|
-
}
|
|
56356
|
-
const untrustedConfig_q = untrustedConfig.q;
|
|
56357
|
-
if (typeof untrustedConfig_q === 'string') {
|
|
56358
|
-
config.q = untrustedConfig_q;
|
|
56359
|
-
}
|
|
56360
|
-
const untrustedConfig_searchType = untrustedConfig.searchType;
|
|
56361
|
-
if (typeof untrustedConfig_searchType === 'string') {
|
|
56362
|
-
config.searchType = untrustedConfig_searchType;
|
|
56363
|
-
}
|
|
56364
|
-
const untrustedConfig_sourceRecordId = untrustedConfig.sourceRecordId;
|
|
56365
|
-
if (typeof untrustedConfig_sourceRecordId === 'string') {
|
|
56366
|
-
config.sourceRecordId = untrustedConfig_sourceRecordId;
|
|
56367
|
-
}
|
|
56368
|
-
const untrustedConfig_targetApiName = untrustedConfig.targetApiName;
|
|
56369
|
-
if (typeof untrustedConfig_targetApiName === 'string') {
|
|
56370
|
-
config.targetApiName = untrustedConfig_targetApiName;
|
|
56371
|
-
}
|
|
55124
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
55125
|
+
fieldApiName: 0 /* String */,
|
|
55126
|
+
objectApiName: 0 /* String */,
|
|
55127
|
+
page: 3 /* Integer */,
|
|
55128
|
+
pageSize: 3 /* Integer */,
|
|
55129
|
+
q: 0 /* String */,
|
|
55130
|
+
searchType: 0 /* String */,
|
|
55131
|
+
sourceRecordId: 0 /* String */,
|
|
55132
|
+
targetApiName: 0 /* String */,
|
|
55133
|
+
});
|
|
55134
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
55135
|
+
dependentFieldBindings: 0 /* String */,
|
|
55136
|
+
});
|
|
56372
55137
|
return config;
|
|
56373
55138
|
}
|
|
56374
55139
|
function validateAdapterConfig$8(untrustedConfig, configPropertyNames) {
|
|
@@ -56575,30 +55340,14 @@ const updateRecordAvatar_ConfigPropertyNames = {
|
|
|
56575
55340
|
};
|
|
56576
55341
|
function typeCheckConfig$9(untrustedConfig) {
|
|
56577
55342
|
const config = {};
|
|
56578
|
-
|
|
56579
|
-
|
|
56580
|
-
|
|
56581
|
-
|
|
56582
|
-
|
|
56583
|
-
|
|
56584
|
-
|
|
56585
|
-
}
|
|
56586
|
-
const untrustedConfig_blueMasterId = untrustedConfig.blueMasterId;
|
|
56587
|
-
if (typeof untrustedConfig_blueMasterId === 'string') {
|
|
56588
|
-
config.blueMasterId = untrustedConfig_blueMasterId;
|
|
56589
|
-
}
|
|
56590
|
-
const untrustedConfig_externalId = untrustedConfig.externalId;
|
|
56591
|
-
if (typeof untrustedConfig_externalId === 'string') {
|
|
56592
|
-
config.externalId = untrustedConfig_externalId;
|
|
56593
|
-
}
|
|
56594
|
-
const untrustedConfig_photoUrl = untrustedConfig.photoUrl;
|
|
56595
|
-
if (typeof untrustedConfig_photoUrl === 'string') {
|
|
56596
|
-
config.photoUrl = untrustedConfig_photoUrl;
|
|
56597
|
-
}
|
|
56598
|
-
const untrustedConfig_profileName = untrustedConfig.profileName;
|
|
56599
|
-
if (typeof untrustedConfig_profileName === 'string') {
|
|
56600
|
-
config.profileName = untrustedConfig_profileName;
|
|
56601
|
-
}
|
|
55343
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
55344
|
+
recordId: 0 /* String */,
|
|
55345
|
+
actionType: 0 /* String */,
|
|
55346
|
+
blueMasterId: 0 /* String */,
|
|
55347
|
+
externalId: 0 /* String */,
|
|
55348
|
+
photoUrl: 0 /* String */,
|
|
55349
|
+
profileName: 0 /* String */,
|
|
55350
|
+
});
|
|
56602
55351
|
return config;
|
|
56603
55352
|
}
|
|
56604
55353
|
function validateAdapterConfig$7(untrustedConfig, configPropertyNames) {
|
|
@@ -57251,50 +56000,23 @@ function createResourceParams$7(config) {
|
|
|
57251
56000
|
return resourceParams;
|
|
57252
56001
|
}
|
|
57253
56002
|
function coerceConfig$4(config) {
|
|
57254
|
-
|
|
57255
|
-
|
|
57256
|
-
|
|
57257
|
-
|
|
57258
|
-
|
|
57259
|
-
|
|
57260
|
-
if (formFactor !== undefined) {
|
|
57261
|
-
coercedConfig.formFactor = formFactor;
|
|
57262
|
-
}
|
|
57263
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
57264
|
-
if (optionalFields !== undefined) {
|
|
57265
|
-
coercedConfig.optionalFields = optionalFields;
|
|
57266
|
-
}
|
|
57267
|
-
const recordTypeId = getRecordId18(config.recordTypeId);
|
|
57268
|
-
if (recordTypeId !== undefined) {
|
|
57269
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
57270
|
-
}
|
|
57271
|
-
return coercedConfig;
|
|
56003
|
+
return coerceConfig$6(config, {
|
|
56004
|
+
'objectApiName': getObjectApiName$1,
|
|
56005
|
+
'formFactor': coerceFormFactor,
|
|
56006
|
+
'optionalFields': getFieldApiNamesArray,
|
|
56007
|
+
'recordTypeId': getRecordId18,
|
|
56008
|
+
});
|
|
57272
56009
|
}
|
|
57273
56010
|
function typeCheckConfig$8(untrustedConfig) {
|
|
57274
56011
|
const config = {};
|
|
57275
|
-
|
|
57276
|
-
|
|
57277
|
-
|
|
57278
|
-
|
|
57279
|
-
|
|
57280
|
-
|
|
57281
|
-
|
|
57282
|
-
}
|
|
57283
|
-
const untrustedConfig_optionalFields = untrustedConfig.optionalFields;
|
|
57284
|
-
if (ArrayIsArray$1(untrustedConfig_optionalFields)) {
|
|
57285
|
-
const untrustedConfig_optionalFields_array = [];
|
|
57286
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
57287
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
57288
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
57289
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
57290
|
-
}
|
|
57291
|
-
}
|
|
57292
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
57293
|
-
}
|
|
57294
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
57295
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
57296
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
57297
|
-
}
|
|
56012
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
56013
|
+
objectApiName: 0 /* String */,
|
|
56014
|
+
formFactor: 0 /* String */,
|
|
56015
|
+
recordTypeId: 0 /* String */,
|
|
56016
|
+
});
|
|
56017
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
56018
|
+
optionalFields: 0 /* String */,
|
|
56019
|
+
});
|
|
57298
56020
|
return config;
|
|
57299
56021
|
}
|
|
57300
56022
|
function validateAdapterConfig$6(untrustedConfig, configPropertyNames) {
|
|
@@ -57969,42 +56691,21 @@ function createResourceParams$6(config) {
|
|
|
57969
56691
|
return resourceParams;
|
|
57970
56692
|
}
|
|
57971
56693
|
function coerceConfig$3(config) {
|
|
57972
|
-
|
|
57973
|
-
|
|
57974
|
-
|
|
57975
|
-
|
|
57976
|
-
}
|
|
57977
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
57978
|
-
if (optionalFields !== undefined) {
|
|
57979
|
-
coercedConfig.optionalFields = optionalFields;
|
|
57980
|
-
}
|
|
57981
|
-
const recordTypeId = config.recordTypeId;
|
|
57982
|
-
if (recordTypeId !== undefined) {
|
|
57983
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
57984
|
-
}
|
|
57985
|
-
return coercedConfig;
|
|
56694
|
+
return coerceConfig$6(config, {
|
|
56695
|
+
'recordId': getRecordId18,
|
|
56696
|
+
'optionalFields': getFieldApiNamesArray,
|
|
56697
|
+
'recordTypeId': 1,
|
|
56698
|
+
});
|
|
57986
56699
|
}
|
|
57987
56700
|
function typeCheckConfig$7(untrustedConfig) {
|
|
57988
56701
|
const config = {};
|
|
57989
|
-
|
|
57990
|
-
|
|
57991
|
-
|
|
57992
|
-
}
|
|
57993
|
-
|
|
57994
|
-
|
|
57995
|
-
|
|
57996
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
57997
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
57998
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
57999
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
58000
|
-
}
|
|
58001
|
-
}
|
|
58002
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
58003
|
-
}
|
|
58004
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
58005
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
58006
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
58007
|
-
}
|
|
56702
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
56703
|
+
recordId: 0 /* String */,
|
|
56704
|
+
recordTypeId: 0 /* String */,
|
|
56705
|
+
});
|
|
56706
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
56707
|
+
optionalFields: 0 /* String */,
|
|
56708
|
+
});
|
|
58008
56709
|
return config;
|
|
58009
56710
|
}
|
|
58010
56711
|
function validateAdapterConfig$5(untrustedConfig, configPropertyNames) {
|
|
@@ -58685,42 +57386,21 @@ function createResourceParams$5(config) {
|
|
|
58685
57386
|
return resourceParams;
|
|
58686
57387
|
}
|
|
58687
57388
|
function coerceConfig$2(config) {
|
|
58688
|
-
|
|
58689
|
-
|
|
58690
|
-
|
|
58691
|
-
|
|
58692
|
-
}
|
|
58693
|
-
const optionalFields = getFieldApiNamesArray(config.optionalFields);
|
|
58694
|
-
if (optionalFields !== undefined) {
|
|
58695
|
-
coercedConfig.optionalFields = optionalFields;
|
|
58696
|
-
}
|
|
58697
|
-
const recordTypeId = config.recordTypeId;
|
|
58698
|
-
if (recordTypeId !== undefined) {
|
|
58699
|
-
coercedConfig.recordTypeId = recordTypeId;
|
|
58700
|
-
}
|
|
58701
|
-
return coercedConfig;
|
|
57389
|
+
return coerceConfig$6(config, {
|
|
57390
|
+
'objectApiName': getObjectApiName$1,
|
|
57391
|
+
'optionalFields': getFieldApiNamesArray,
|
|
57392
|
+
'recordTypeId': 1,
|
|
57393
|
+
});
|
|
58702
57394
|
}
|
|
58703
57395
|
function typeCheckConfig$6(untrustedConfig) {
|
|
58704
57396
|
const config = {};
|
|
58705
|
-
|
|
58706
|
-
|
|
58707
|
-
|
|
58708
|
-
}
|
|
58709
|
-
|
|
58710
|
-
|
|
58711
|
-
|
|
58712
|
-
for (let i = 0, arrayLength = untrustedConfig_optionalFields.length; i < arrayLength; i++) {
|
|
58713
|
-
const untrustedConfig_optionalFields_item = untrustedConfig_optionalFields[i];
|
|
58714
|
-
if (typeof untrustedConfig_optionalFields_item === 'string') {
|
|
58715
|
-
untrustedConfig_optionalFields_array.push(untrustedConfig_optionalFields_item);
|
|
58716
|
-
}
|
|
58717
|
-
}
|
|
58718
|
-
config.optionalFields = untrustedConfig_optionalFields_array;
|
|
58719
|
-
}
|
|
58720
|
-
const untrustedConfig_recordTypeId = untrustedConfig.recordTypeId;
|
|
58721
|
-
if (typeof untrustedConfig_recordTypeId === 'string') {
|
|
58722
|
-
config.recordTypeId = untrustedConfig_recordTypeId;
|
|
58723
|
-
}
|
|
57397
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
57398
|
+
objectApiName: 0 /* String */,
|
|
57399
|
+
recordTypeId: 0 /* String */,
|
|
57400
|
+
});
|
|
57401
|
+
typeCheckArrayOfScalars(untrustedConfig, config, {
|
|
57402
|
+
optionalFields: 0 /* String */,
|
|
57403
|
+
});
|
|
58724
57404
|
return config;
|
|
58725
57405
|
}
|
|
58726
57406
|
function validateAdapterConfig$4(untrustedConfig, configPropertyNames) {
|
|
@@ -59035,19 +57715,15 @@ function createResourceParams$3(config) {
|
|
|
59035
57715
|
return resourceParams;
|
|
59036
57716
|
}
|
|
59037
57717
|
function coerceConfig$1(config) {
|
|
59038
|
-
|
|
59039
|
-
|
|
59040
|
-
|
|
59041
|
-
coercedConfig.recordId = recordId;
|
|
59042
|
-
}
|
|
59043
|
-
return coercedConfig;
|
|
57718
|
+
return coerceConfig$6(config, {
|
|
57719
|
+
'recordId': getRecordId18,
|
|
57720
|
+
});
|
|
59044
57721
|
}
|
|
59045
57722
|
function typeCheckConfig$5(untrustedConfig) {
|
|
59046
57723
|
const config = {};
|
|
59047
|
-
|
|
59048
|
-
|
|
59049
|
-
|
|
59050
|
-
}
|
|
57724
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
57725
|
+
recordId: 0 /* String */,
|
|
57726
|
+
});
|
|
59051
57727
|
return config;
|
|
59052
57728
|
}
|
|
59053
57729
|
function validateAdapterConfig$3(untrustedConfig, configPropertyNames) {
|
|
@@ -59157,67 +57833,28 @@ function createResourceParams$2(config) {
|
|
|
59157
57833
|
return resourceParams;
|
|
59158
57834
|
}
|
|
59159
57835
|
function coerceConfig(config) {
|
|
59160
|
-
|
|
59161
|
-
|
|
59162
|
-
|
|
59163
|
-
|
|
59164
|
-
|
|
59165
|
-
|
|
59166
|
-
|
|
59167
|
-
|
|
59168
|
-
|
|
59169
|
-
|
|
59170
|
-
if (triggerUserEmail !== undefined) {
|
|
59171
|
-
coercedConfig.triggerUserEmail = triggerUserEmail;
|
|
59172
|
-
}
|
|
59173
|
-
const useDefaultRule = config.useDefaultRule;
|
|
59174
|
-
if (useDefaultRule !== undefined) {
|
|
59175
|
-
coercedConfig.useDefaultRule = useDefaultRule;
|
|
59176
|
-
}
|
|
59177
|
-
const allowSaveOnDuplicate = config.allowSaveOnDuplicate;
|
|
59178
|
-
if (allowSaveOnDuplicate !== undefined) {
|
|
59179
|
-
coercedConfig.allowSaveOnDuplicate = allowSaveOnDuplicate;
|
|
59180
|
-
}
|
|
59181
|
-
const apiName = config.apiName;
|
|
59182
|
-
if (apiName !== undefined) {
|
|
59183
|
-
coercedConfig.apiName = apiName;
|
|
59184
|
-
}
|
|
59185
|
-
const fields = config.fields;
|
|
59186
|
-
if (fields !== undefined) {
|
|
59187
|
-
coercedConfig.fields = fields;
|
|
59188
|
-
}
|
|
59189
|
-
const ifUnmodifiedSince = config.ifUnmodifiedSince;
|
|
59190
|
-
if (ifUnmodifiedSince !== undefined) {
|
|
59191
|
-
coercedConfig.ifUnmodifiedSince = ifUnmodifiedSince;
|
|
59192
|
-
}
|
|
59193
|
-
return coercedConfig;
|
|
57836
|
+
return coerceConfig$6(config, {
|
|
57837
|
+
'recordId': getRecordId18,
|
|
57838
|
+
'triggerOtherEmail': 1,
|
|
57839
|
+
'triggerUserEmail': 1,
|
|
57840
|
+
'useDefaultRule': 1,
|
|
57841
|
+
'allowSaveOnDuplicate': 1,
|
|
57842
|
+
'apiName': 1,
|
|
57843
|
+
'fields': 1,
|
|
57844
|
+
'ifUnmodifiedSince': 1,
|
|
57845
|
+
});
|
|
59194
57846
|
}
|
|
59195
57847
|
function typeCheckConfig$4(untrustedConfig) {
|
|
59196
57848
|
const config = {};
|
|
59197
|
-
|
|
59198
|
-
|
|
59199
|
-
|
|
59200
|
-
|
|
59201
|
-
|
|
59202
|
-
|
|
59203
|
-
|
|
59204
|
-
|
|
59205
|
-
|
|
59206
|
-
if (typeof untrustedConfig_triggerUserEmail === 'boolean') {
|
|
59207
|
-
config.triggerUserEmail = untrustedConfig_triggerUserEmail;
|
|
59208
|
-
}
|
|
59209
|
-
const untrustedConfig_useDefaultRule = untrustedConfig.useDefaultRule;
|
|
59210
|
-
if (typeof untrustedConfig_useDefaultRule === 'boolean') {
|
|
59211
|
-
config.useDefaultRule = untrustedConfig_useDefaultRule;
|
|
59212
|
-
}
|
|
59213
|
-
const untrustedConfig_allowSaveOnDuplicate = untrustedConfig.allowSaveOnDuplicate;
|
|
59214
|
-
if (typeof untrustedConfig_allowSaveOnDuplicate === 'boolean') {
|
|
59215
|
-
config.allowSaveOnDuplicate = untrustedConfig_allowSaveOnDuplicate;
|
|
59216
|
-
}
|
|
59217
|
-
const untrustedConfig_apiName = untrustedConfig.apiName;
|
|
59218
|
-
if (typeof untrustedConfig_apiName === 'string') {
|
|
59219
|
-
config.apiName = untrustedConfig_apiName;
|
|
59220
|
-
}
|
|
57849
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
57850
|
+
recordId: 0 /* String */,
|
|
57851
|
+
triggerOtherEmail: 1 /* Boolean */,
|
|
57852
|
+
triggerUserEmail: 1 /* Boolean */,
|
|
57853
|
+
useDefaultRule: 1 /* Boolean */,
|
|
57854
|
+
allowSaveOnDuplicate: 1 /* Boolean */,
|
|
57855
|
+
apiName: 0 /* String */,
|
|
57856
|
+
ifUnmodifiedSince: 0 /* String */,
|
|
57857
|
+
});
|
|
59221
57858
|
const untrustedConfig_fields = untrustedConfig.fields;
|
|
59222
57859
|
if (untrustedIsObject(untrustedConfig_fields)) {
|
|
59223
57860
|
const untrustedConfig_fields_object = {};
|
|
@@ -59250,10 +57887,6 @@ function typeCheckConfig$4(untrustedConfig) {
|
|
|
59250
57887
|
config.fields = untrustedConfig_fields_object;
|
|
59251
57888
|
}
|
|
59252
57889
|
}
|
|
59253
|
-
const untrustedConfig_ifUnmodifiedSince = untrustedConfig.ifUnmodifiedSince;
|
|
59254
|
-
if (typeof untrustedConfig_ifUnmodifiedSince === 'string') {
|
|
59255
|
-
config.ifUnmodifiedSince = untrustedConfig_ifUnmodifiedSince;
|
|
59256
|
-
}
|
|
59257
57890
|
return config;
|
|
59258
57891
|
}
|
|
59259
57892
|
function validateAdapterConfig$2(untrustedConfig, configPropertyNames) {
|
|
@@ -59699,14 +58332,10 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
59699
58332
|
|
|
59700
58333
|
function typeCheckConfig$3(untrustedConfig) {
|
|
59701
58334
|
const config = {};
|
|
59702
|
-
|
|
59703
|
-
|
|
59704
|
-
|
|
59705
|
-
}
|
|
59706
|
-
const untrustedConfig_title = untrustedConfig.title;
|
|
59707
|
-
if (typeof untrustedConfig_title === 'string') {
|
|
59708
|
-
config.title = untrustedConfig_title;
|
|
59709
|
-
}
|
|
58335
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
58336
|
+
description: 0 /* String */,
|
|
58337
|
+
title: 0 /* String */,
|
|
58338
|
+
});
|
|
59710
58339
|
return config;
|
|
59711
58340
|
}
|
|
59712
58341
|
|
|
@@ -59779,18 +58408,11 @@ function createDispatchResourceRequestContext$1(requestContext) {
|
|
|
59779
58408
|
|
|
59780
58409
|
function typeCheckConfig$1(untrustedConfig) {
|
|
59781
58410
|
const config = {};
|
|
59782
|
-
|
|
59783
|
-
|
|
59784
|
-
|
|
59785
|
-
|
|
59786
|
-
|
|
59787
|
-
if (typeof untrustedConfig_description === 'string') {
|
|
59788
|
-
config.description = untrustedConfig_description;
|
|
59789
|
-
}
|
|
59790
|
-
const untrustedConfig_title = untrustedConfig.title;
|
|
59791
|
-
if (typeof untrustedConfig_title === 'string') {
|
|
59792
|
-
config.title = untrustedConfig_title;
|
|
59793
|
-
}
|
|
58411
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
58412
|
+
contentDocumentId: 0 /* String */,
|
|
58413
|
+
description: 0 /* String */,
|
|
58414
|
+
title: 0 /* String */,
|
|
58415
|
+
});
|
|
59794
58416
|
return config;
|
|
59795
58417
|
}
|
|
59796
58418
|
|