@salesforce/lds-adapters-uiapi 1.430.0 → 1.432.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/types/src/configuration.d.ts +0 -4
- package/dist/es/es2018/types/src/main.d.ts +0 -4
- package/dist/es/es2018/types/src/predictive-loading/registry.d.ts +0 -2
- package/dist/es/es2018/uiapi-records-service.js +82 -122
- package/package.json +7 -7
- package/sfdc/graphqlAdapters.js +3 -23
- package/sfdc/index.js +87 -127
- package/sfdc/uiapi-static-functions.js +0 -20
- package/src/raml/api.raml +1 -1
|
@@ -68,14 +68,6 @@ let oneStoreGetObjectInfoAdapter = undefined;
|
|
|
68
68
|
* One store enabled Get Object Infos adapter
|
|
69
69
|
*/
|
|
70
70
|
let oneStoreGetObjectInfosAdapter = undefined;
|
|
71
|
-
/**
|
|
72
|
-
* Determines when to include PDL strategies for Related Lists
|
|
73
|
-
*/
|
|
74
|
-
let relatedListsPredictionsEnabled = false;
|
|
75
|
-
/**
|
|
76
|
-
* Determines whether to include additional PDL strategies for Related Lists
|
|
77
|
-
*/
|
|
78
|
-
let relatedListsPlusPredictionsEnabled = false;
|
|
79
71
|
let recordRepresentationIngestionOverride = undefined;
|
|
80
72
|
/**
|
|
81
73
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
@@ -170,18 +162,6 @@ const configurationForRestAdapters = {
|
|
|
170
162
|
getTrackedFieldLeafNodeIdAndNameOnly: function () {
|
|
171
163
|
return trackedFieldLeafNodeIdAndNameOnly;
|
|
172
164
|
},
|
|
173
|
-
setRelatedListsPredictionsEnabled: function (f) {
|
|
174
|
-
relatedListsPredictionsEnabled = f;
|
|
175
|
-
},
|
|
176
|
-
areRelatedListsPredictionsEnabled: function () {
|
|
177
|
-
return relatedListsPredictionsEnabled === true;
|
|
178
|
-
},
|
|
179
|
-
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
180
|
-
relatedListsPlusPredictionsEnabled = f;
|
|
181
|
-
},
|
|
182
|
-
areRelatedListsPlusPredictionsEnabled: function () {
|
|
183
|
-
return relatedListsPlusPredictionsEnabled === true;
|
|
184
|
-
},
|
|
185
165
|
setRecordRepresentationIngestionOverride: function (ingest) {
|
|
186
166
|
recordRepresentationIngestionOverride = ingest;
|
|
187
167
|
},
|
|
@@ -321,26 +301,6 @@ function createLDSAdapterWithPrediction(adapter, luvio, name) {
|
|
|
321
301
|
return result;
|
|
322
302
|
};
|
|
323
303
|
}
|
|
324
|
-
function createRelatedListAdapterWithPrediction(adapter, luvio, name) {
|
|
325
|
-
if (configurationForRestAdapters.areRelatedListsPredictionsEnabled() /* gate is open */) {
|
|
326
|
-
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
327
|
-
}
|
|
328
|
-
else {
|
|
329
|
-
return (config, requestContext) => {
|
|
330
|
-
return adapter(config, requestContext);
|
|
331
|
-
};
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
function createRelatedListPlusAdapterWithPrediction(adapter, luvio, name) {
|
|
335
|
-
if (configurationForRestAdapters.areRelatedListsPlusPredictionsEnabled() /* gate is open */) {
|
|
336
|
-
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
337
|
-
}
|
|
338
|
-
else {
|
|
339
|
-
return (config, requestContext) => {
|
|
340
|
-
return adapter(config, requestContext);
|
|
341
|
-
};
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
304
|
|
|
345
305
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
346
306
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -4467,7 +4427,7 @@ function getResponseCacheKeys$17(storeKeyMap, luvio, resourceParams, response) {
|
|
|
4467
4427
|
function createResourceRequest$1g(config) {
|
|
4468
4428
|
const headers = {};
|
|
4469
4429
|
return {
|
|
4470
|
-
baseUri: '/services/data/
|
|
4430
|
+
baseUri: '/services/data/v68.0',
|
|
4471
4431
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
4472
4432
|
method: 'get',
|
|
4473
4433
|
body: null,
|
|
@@ -4909,7 +4869,7 @@ function ingestError$Q(luvio, params, error, snapshotRefresh) {
|
|
|
4909
4869
|
function createResourceRequest$1f(config) {
|
|
4910
4870
|
const headers = {};
|
|
4911
4871
|
return {
|
|
4912
|
-
baseUri: '/services/data/
|
|
4872
|
+
baseUri: '/services/data/v68.0',
|
|
4913
4873
|
basePath: '/ui-api/records/batch/' + config.urlParams.recordIds + '',
|
|
4914
4874
|
method: 'get',
|
|
4915
4875
|
body: null,
|
|
@@ -6246,7 +6206,7 @@ function ingestError$P(luvio, params, error, snapshotRefresh) {
|
|
|
6246
6206
|
function createResourceRequest$1e(config) {
|
|
6247
6207
|
const headers = {};
|
|
6248
6208
|
return {
|
|
6249
|
-
baseUri: '/services/data/
|
|
6209
|
+
baseUri: '/services/data/v68.0',
|
|
6250
6210
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
6251
6211
|
method: 'get',
|
|
6252
6212
|
body: null,
|
|
@@ -6396,7 +6356,7 @@ function ingestError$O(luvio, params, error, snapshotRefresh) {
|
|
|
6396
6356
|
function createResourceRequest$1d(config) {
|
|
6397
6357
|
const headers = {};
|
|
6398
6358
|
return {
|
|
6399
|
-
baseUri: '/services/data/
|
|
6359
|
+
baseUri: '/services/data/v68.0',
|
|
6400
6360
|
basePath: '/ui-api/list-ui/' + config.urlParams.listViewId + '',
|
|
6401
6361
|
method: 'get',
|
|
6402
6362
|
body: null,
|
|
@@ -6505,7 +6465,7 @@ const getListUiByListViewIdAdapterFactory = (luvio) => function UiApi__getListUi
|
|
|
6505
6465
|
function createResourceRequest$1c(config) {
|
|
6506
6466
|
const headers = {};
|
|
6507
6467
|
return {
|
|
6508
|
-
baseUri: '/services/data/
|
|
6468
|
+
baseUri: '/services/data/v68.0',
|
|
6509
6469
|
basePath: '/ui-api/list-records/' + config.urlParams.listViewId + '',
|
|
6510
6470
|
method: 'get',
|
|
6511
6471
|
body: null,
|
|
@@ -7489,7 +7449,7 @@ function ingestError$N(luvio, params, error, snapshotRefresh) {
|
|
|
7489
7449
|
function createResourceRequest$1b(config) {
|
|
7490
7450
|
const headers = {};
|
|
7491
7451
|
return {
|
|
7492
|
-
baseUri: '/services/data/
|
|
7452
|
+
baseUri: '/services/data/v68.0',
|
|
7493
7453
|
basePath: '/ui-api/list-records/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
7494
7454
|
method: 'post',
|
|
7495
7455
|
body: config.body,
|
|
@@ -8225,7 +8185,7 @@ function ingestError$M(luvio, params, error, snapshotRefresh) {
|
|
|
8225
8185
|
function createResourceRequest$1a(config) {
|
|
8226
8186
|
const headers = {};
|
|
8227
8187
|
return {
|
|
8228
|
-
baseUri: '/services/data/
|
|
8188
|
+
baseUri: '/services/data/v68.0',
|
|
8229
8189
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '',
|
|
8230
8190
|
method: 'get',
|
|
8231
8191
|
body: null,
|
|
@@ -8423,7 +8383,7 @@ function keyBuilder$3E(luvio, params) {
|
|
|
8423
8383
|
function createResourceRequest$19(config) {
|
|
8424
8384
|
const headers = {};
|
|
8425
8385
|
return {
|
|
8426
|
-
baseUri: '/services/data/
|
|
8386
|
+
baseUri: '/services/data/v68.0',
|
|
8427
8387
|
basePath: '/ui-api/mru-list-ui/' + config.urlParams.objectApiName + '',
|
|
8428
8388
|
method: 'get',
|
|
8429
8389
|
body: null,
|
|
@@ -8468,7 +8428,7 @@ function validateAdapterConfig$18(untrustedConfig, configPropertyNames) {
|
|
|
8468
8428
|
function createResourceRequest$18(config) {
|
|
8469
8429
|
const headers = {};
|
|
8470
8430
|
return {
|
|
8471
|
-
baseUri: '/services/data/
|
|
8431
|
+
baseUri: '/services/data/v68.0',
|
|
8472
8432
|
basePath: '/ui-api/mru-list-records/' + config.urlParams.objectApiName + '',
|
|
8473
8433
|
method: 'get',
|
|
8474
8434
|
body: null,
|
|
@@ -10273,7 +10233,7 @@ function ingestError$L(luvio, params, error, snapshotRefresh) {
|
|
|
10273
10233
|
function createResourceRequest$17(config) {
|
|
10274
10234
|
const headers = {};
|
|
10275
10235
|
return {
|
|
10276
|
-
baseUri: '/services/data/
|
|
10236
|
+
baseUri: '/services/data/v68.0',
|
|
10277
10237
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '',
|
|
10278
10238
|
method: 'get',
|
|
10279
10239
|
body: null,
|
|
@@ -11331,7 +11291,7 @@ const ingest$2p = function RecordUiRepresentationIngest(input, path, luvio, stor
|
|
|
11331
11291
|
function createResourceRequest$16(config) {
|
|
11332
11292
|
const headers = {};
|
|
11333
11293
|
return {
|
|
11334
|
-
baseUri: '/services/data/
|
|
11294
|
+
baseUri: '/services/data/v68.0',
|
|
11335
11295
|
basePath: '/ui-api/record-ui/' + config.urlParams.recordIds + '',
|
|
11336
11296
|
method: 'get',
|
|
11337
11297
|
body: null,
|
|
@@ -14006,7 +13966,7 @@ function ingestError$K(luvio, params, error, snapshotRefresh) {
|
|
|
14006
13966
|
function createResourceRequest$15(config) {
|
|
14007
13967
|
const headers = {};
|
|
14008
13968
|
return {
|
|
14009
|
-
baseUri: '/services/data/
|
|
13969
|
+
baseUri: '/services/data/v68.0',
|
|
14010
13970
|
basePath: '/ui-api/actions/global',
|
|
14011
13971
|
method: 'get',
|
|
14012
13972
|
body: null,
|
|
@@ -14240,7 +14200,7 @@ function ingestError$J(luvio, params, error, snapshotRefresh) {
|
|
|
14240
14200
|
function createResourceRequest$14(config) {
|
|
14241
14201
|
const headers = {};
|
|
14242
14202
|
return {
|
|
14243
|
-
baseUri: '/services/data/
|
|
14203
|
+
baseUri: '/services/data/v68.0',
|
|
14244
14204
|
basePath: '/ui-api/actions/layout/' + config.urlParams.actionApiName + '',
|
|
14245
14205
|
method: 'get',
|
|
14246
14206
|
body: null,
|
|
@@ -14412,7 +14372,7 @@ function ingestError$I(luvio, params, error, snapshotRefresh) {
|
|
|
14412
14372
|
function createResourceRequest$13(config) {
|
|
14413
14373
|
const headers = {};
|
|
14414
14374
|
return {
|
|
14415
|
-
baseUri: '/services/data/
|
|
14375
|
+
baseUri: '/services/data/v68.0',
|
|
14416
14376
|
basePath: '/ui-api/actions/lookup/' + config.urlParams.objectApiNames + '',
|
|
14417
14377
|
method: 'get',
|
|
14418
14378
|
body: null,
|
|
@@ -14554,7 +14514,7 @@ function ingestError$H(luvio, params, error, snapshotRefresh) {
|
|
|
14554
14514
|
function createResourceRequest$12(config) {
|
|
14555
14515
|
const headers = {};
|
|
14556
14516
|
return {
|
|
14557
|
-
baseUri: '/services/data/
|
|
14517
|
+
baseUri: '/services/data/v68.0',
|
|
14558
14518
|
basePath: '/ui-api/actions/object/' + config.urlParams.objectApiName + '/record-create',
|
|
14559
14519
|
method: 'get',
|
|
14560
14520
|
body: null,
|
|
@@ -14744,7 +14704,7 @@ function ingestError$G(luvio, params, error, snapshotRefresh) {
|
|
|
14744
14704
|
function createResourceRequest$11(config) {
|
|
14745
14705
|
const headers = {};
|
|
14746
14706
|
return {
|
|
14747
|
-
baseUri: '/services/data/
|
|
14707
|
+
baseUri: '/services/data/v68.0',
|
|
14748
14708
|
basePath: '/ui-api/actions/overrides/' + config.urlParams.objectApiName + '',
|
|
14749
14709
|
method: 'get',
|
|
14750
14710
|
body: null,
|
|
@@ -15008,7 +14968,7 @@ function ingestError$F(luvio, params, error, snapshotRefresh) {
|
|
|
15008
14968
|
function createResourceRequest$10(config) {
|
|
15009
14969
|
const headers = {};
|
|
15010
14970
|
return {
|
|
15011
|
-
baseUri: '/services/data/
|
|
14971
|
+
baseUri: '/services/data/v68.0',
|
|
15012
14972
|
basePath: '/ui-api/actions/formula-activation/' + config.urlParams.actionFeature + '',
|
|
15013
14973
|
method: 'get',
|
|
15014
14974
|
body: null,
|
|
@@ -16219,7 +16179,7 @@ function ingestError$E(luvio, params, error, snapshotRefresh) {
|
|
|
16219
16179
|
function createResourceRequest$$(config) {
|
|
16220
16180
|
const headers = {};
|
|
16221
16181
|
return {
|
|
16222
|
-
baseUri: '/services/data/
|
|
16182
|
+
baseUri: '/services/data/v68.0',
|
|
16223
16183
|
basePath: '/ui-api/actions/quick-action-info/' + config.urlParams.actionApiName + '',
|
|
16224
16184
|
method: 'get',
|
|
16225
16185
|
body: null,
|
|
@@ -16430,7 +16390,7 @@ function ingestError$D(luvio, params, error, snapshotRefresh) {
|
|
|
16430
16390
|
function createResourceRequest$_(config) {
|
|
16431
16391
|
const headers = {};
|
|
16432
16392
|
return {
|
|
16433
|
-
baseUri: '/services/data/
|
|
16393
|
+
baseUri: '/services/data/v68.0',
|
|
16434
16394
|
basePath: '/ui-api/actions/record-defaults/' + config.urlParams.actionApiName + '',
|
|
16435
16395
|
method: 'get',
|
|
16436
16396
|
body: null,
|
|
@@ -16599,7 +16559,7 @@ function ingestError$C(luvio, params, error, snapshotRefresh) {
|
|
|
16599
16559
|
function createResourceRequest$Z(config) {
|
|
16600
16560
|
const headers = {};
|
|
16601
16561
|
return {
|
|
16602
|
-
baseUri: '/services/data/
|
|
16562
|
+
baseUri: '/services/data/v68.0',
|
|
16603
16563
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '',
|
|
16604
16564
|
method: 'get',
|
|
16605
16565
|
body: null,
|
|
@@ -16751,7 +16711,7 @@ function ingestError$B(luvio, params, error, snapshotRefresh) {
|
|
|
16751
16711
|
function createResourceRequest$Y(config) {
|
|
16752
16712
|
const headers = {};
|
|
16753
16713
|
return {
|
|
16754
|
-
baseUri: '/services/data/
|
|
16714
|
+
baseUri: '/services/data/v68.0',
|
|
16755
16715
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/record-edit',
|
|
16756
16716
|
method: 'get',
|
|
16757
16717
|
body: null,
|
|
@@ -16963,7 +16923,7 @@ function ingestError$A(luvio, params, error, snapshotRefresh) {
|
|
|
16963
16923
|
function createResourceRequest$X(config) {
|
|
16964
16924
|
const headers = {};
|
|
16965
16925
|
return {
|
|
16966
|
-
baseUri: '/services/data/
|
|
16926
|
+
baseUri: '/services/data/v68.0',
|
|
16967
16927
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/' + config.urlParams.relatedListId + '',
|
|
16968
16928
|
method: 'post',
|
|
16969
16929
|
body: config.body,
|
|
@@ -17248,7 +17208,7 @@ function ingestError$z(luvio, params, error, snapshotRefresh) {
|
|
|
17248
17208
|
function createResourceRequest$W(config) {
|
|
17249
17209
|
const headers = {};
|
|
17250
17210
|
return {
|
|
17251
|
-
baseUri: '/services/data/
|
|
17211
|
+
baseUri: '/services/data/v68.0',
|
|
17252
17212
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/batch',
|
|
17253
17213
|
method: 'post',
|
|
17254
17214
|
body: config.body,
|
|
@@ -17493,7 +17453,7 @@ function ingestError$y(luvio, params, error, snapshotRefresh) {
|
|
|
17493
17453
|
function createResourceRequest$V(config) {
|
|
17494
17454
|
const headers = {};
|
|
17495
17455
|
return {
|
|
17496
|
-
baseUri: '/services/data/
|
|
17456
|
+
baseUri: '/services/data/v68.0',
|
|
17497
17457
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list-record/' + config.urlParams.relatedListRecordIds + '',
|
|
17498
17458
|
method: 'get',
|
|
17499
17459
|
body: null,
|
|
@@ -18750,7 +18710,7 @@ function ingestError$x(luvio, params, error, snapshotRefresh) {
|
|
|
18750
18710
|
function createResourceRequest$U(config) {
|
|
18751
18711
|
const headers = {};
|
|
18752
18712
|
return {
|
|
18753
|
-
baseUri: '/services/data/
|
|
18713
|
+
baseUri: '/services/data/v68.0',
|
|
18754
18714
|
basePath: '/ui-api/apps',
|
|
18755
18715
|
method: 'get',
|
|
18756
18716
|
body: null,
|
|
@@ -18890,7 +18850,7 @@ function ingestError$w(luvio, params, error, snapshotRefresh) {
|
|
|
18890
18850
|
function createResourceRequest$T(config) {
|
|
18891
18851
|
const headers = {};
|
|
18892
18852
|
return {
|
|
18893
|
-
baseUri: '/services/data/
|
|
18853
|
+
baseUri: '/services/data/v68.0',
|
|
18894
18854
|
basePath: '/ui-api/apps/selected',
|
|
18895
18855
|
method: 'get',
|
|
18896
18856
|
body: null,
|
|
@@ -19031,7 +18991,7 @@ function ingestError$v(luvio, params, error, snapshotRefresh) {
|
|
|
19031
18991
|
function createResourceRequest$S(config) {
|
|
19032
18992
|
const headers = {};
|
|
19033
18993
|
return {
|
|
19034
|
-
baseUri: '/services/data/
|
|
18994
|
+
baseUri: '/services/data/v68.0',
|
|
19035
18995
|
basePath: '/ui-api/apps/' + config.urlParams.appId + '',
|
|
19036
18996
|
method: 'get',
|
|
19037
18997
|
body: null,
|
|
@@ -19634,7 +19594,7 @@ function ingestError$u(luvio, params, error, snapshotRefresh) {
|
|
|
19634
19594
|
function createResourceRequest$R(config) {
|
|
19635
19595
|
const headers = {};
|
|
19636
19596
|
return {
|
|
19637
|
-
baseUri: '/services/data/
|
|
19597
|
+
baseUri: '/services/data/v68.0',
|
|
19638
19598
|
basePath: '/ui-api/duplicates/' + config.urlParams.objectApiName + '',
|
|
19639
19599
|
method: 'get',
|
|
19640
19600
|
body: null,
|
|
@@ -19773,7 +19733,7 @@ function ingestError$t(luvio, params, error, snapshotRefresh) {
|
|
|
19773
19733
|
function createResourceRequest$Q(config) {
|
|
19774
19734
|
const headers = {};
|
|
19775
19735
|
return {
|
|
19776
|
-
baseUri: '/services/data/
|
|
19736
|
+
baseUri: '/services/data/v68.0',
|
|
19777
19737
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '',
|
|
19778
19738
|
method: 'get',
|
|
19779
19739
|
body: null,
|
|
@@ -19912,7 +19872,7 @@ function getResponseCacheKeys$K(storeKeyMap, luvio, resourceParams, response) {
|
|
|
19912
19872
|
function createResourceRequest$P(config) {
|
|
19913
19873
|
const headers = {};
|
|
19914
19874
|
return {
|
|
19915
|
-
baseUri: '/services/data/
|
|
19875
|
+
baseUri: '/services/data/v68.0',
|
|
19916
19876
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
19917
19877
|
method: 'get',
|
|
19918
19878
|
body: null,
|
|
@@ -20145,7 +20105,7 @@ function ingestError$s(luvio, params, error, snapshotRefresh) {
|
|
|
20145
20105
|
function createResourceRequest$O(config) {
|
|
20146
20106
|
const headers = {};
|
|
20147
20107
|
return {
|
|
20148
|
-
baseUri: '/services/data/
|
|
20108
|
+
baseUri: '/services/data/v68.0',
|
|
20149
20109
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
20150
20110
|
method: 'get',
|
|
20151
20111
|
body: null,
|
|
@@ -20414,7 +20374,7 @@ function ingestError$r(luvio, params, error, snapshotRefresh) {
|
|
|
20414
20374
|
function createResourceRequest$N(config) {
|
|
20415
20375
|
const headers = {};
|
|
20416
20376
|
return {
|
|
20417
|
-
baseUri: '/services/data/
|
|
20377
|
+
baseUri: '/services/data/v68.0',
|
|
20418
20378
|
basePath: '/ui-api/list-info/batch',
|
|
20419
20379
|
method: 'get',
|
|
20420
20380
|
body: null,
|
|
@@ -20559,7 +20519,7 @@ function ingestError$q(luvio, params, error, snapshotRefresh) {
|
|
|
20559
20519
|
function createResourceRequest$M(config) {
|
|
20560
20520
|
const headers = {};
|
|
20561
20521
|
return {
|
|
20562
|
-
baseUri: '/services/data/
|
|
20522
|
+
baseUri: '/services/data/v68.0',
|
|
20563
20523
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
20564
20524
|
method: 'get',
|
|
20565
20525
|
body: null,
|
|
@@ -20865,7 +20825,7 @@ function ingestSuccess$y(luvio, resourceParams, response) {
|
|
|
20865
20825
|
function createResourceRequest$L(config) {
|
|
20866
20826
|
const headers = {};
|
|
20867
20827
|
return {
|
|
20868
|
-
baseUri: '/services/data/
|
|
20828
|
+
baseUri: '/services/data/v68.0',
|
|
20869
20829
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
20870
20830
|
method: 'post',
|
|
20871
20831
|
body: config.body,
|
|
@@ -20978,7 +20938,7 @@ function evictSuccess$1(luvio, resourceParams) {
|
|
|
20978
20938
|
function createResourceRequest$K(config) {
|
|
20979
20939
|
const headers = {};
|
|
20980
20940
|
return {
|
|
20981
|
-
baseUri: '/services/data/
|
|
20941
|
+
baseUri: '/services/data/v68.0',
|
|
20982
20942
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
20983
20943
|
method: 'delete',
|
|
20984
20944
|
body: null,
|
|
@@ -21156,7 +21116,7 @@ function ingestSuccess$x(luvio, resourceParams, response) {
|
|
|
21156
21116
|
function createResourceRequest$J(config) {
|
|
21157
21117
|
const headers = {};
|
|
21158
21118
|
return {
|
|
21159
|
-
baseUri: '/services/data/
|
|
21119
|
+
baseUri: '/services/data/v68.0',
|
|
21160
21120
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
21161
21121
|
method: 'patch',
|
|
21162
21122
|
body: config.body,
|
|
@@ -22102,7 +22062,7 @@ function ingestError$p(luvio, params, error, snapshotRefresh) {
|
|
|
22102
22062
|
function createResourceRequest$I(config) {
|
|
22103
22063
|
const headers = {};
|
|
22104
22064
|
return {
|
|
22105
|
-
baseUri: '/services/data/
|
|
22065
|
+
baseUri: '/services/data/v68.0',
|
|
22106
22066
|
basePath: '/ui-api/list-object-info/' + config.urlParams.objectApiName + '',
|
|
22107
22067
|
method: 'get',
|
|
22108
22068
|
body: null,
|
|
@@ -22411,7 +22371,7 @@ function ingestError$o(luvio, params, error, snapshotRefresh) {
|
|
|
22411
22371
|
function createResourceRequest$H(config) {
|
|
22412
22372
|
const headers = {};
|
|
22413
22373
|
return {
|
|
22414
|
-
baseUri: '/services/data/
|
|
22374
|
+
baseUri: '/services/data/v68.0',
|
|
22415
22375
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22416
22376
|
method: 'get',
|
|
22417
22377
|
body: null,
|
|
@@ -22555,7 +22515,7 @@ function ingestSuccess$u(luvio, resourceParams, response) {
|
|
|
22555
22515
|
function createResourceRequest$G(config) {
|
|
22556
22516
|
const headers = {};
|
|
22557
22517
|
return {
|
|
22558
|
-
baseUri: '/services/data/
|
|
22518
|
+
baseUri: '/services/data/v68.0',
|
|
22559
22519
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22560
22520
|
method: 'patch',
|
|
22561
22521
|
body: config.body,
|
|
@@ -22865,7 +22825,7 @@ function ingestError$n(luvio, params, error, snapshotRefresh) {
|
|
|
22865
22825
|
function createResourceRequest$F(config) {
|
|
22866
22826
|
const headers = {};
|
|
22867
22827
|
return {
|
|
22868
|
-
baseUri: '/services/data/
|
|
22828
|
+
baseUri: '/services/data/v68.0',
|
|
22869
22829
|
basePath: '/ui-api/nav-items',
|
|
22870
22830
|
method: 'get',
|
|
22871
22831
|
body: null,
|
|
@@ -23001,7 +22961,7 @@ function ingestError$m(luvio, params, error, snapshotRefresh) {
|
|
|
23001
22961
|
function createResourceRequest$E(config) {
|
|
23002
22962
|
const headers = {};
|
|
23003
22963
|
return {
|
|
23004
|
-
baseUri: '/services/data/
|
|
22964
|
+
baseUri: '/services/data/v68.0',
|
|
23005
22965
|
basePath: '/ui-api/object-info',
|
|
23006
22966
|
method: 'get',
|
|
23007
22967
|
body: null,
|
|
@@ -23346,7 +23306,7 @@ function ingestError$l(luvio, params, error, snapshotRefresh) {
|
|
|
23346
23306
|
function createResourceRequest$D(config) {
|
|
23347
23307
|
const headers = {};
|
|
23348
23308
|
return {
|
|
23349
|
-
baseUri: '/services/data/
|
|
23309
|
+
baseUri: '/services/data/v68.0',
|
|
23350
23310
|
basePath: '/ui-api/object-info/batch/' + config.urlParams.objectApiNames + '',
|
|
23351
23311
|
method: 'get',
|
|
23352
23312
|
body: null,
|
|
@@ -23675,8 +23635,8 @@ const select$2u = function PicklistValueRepresentationSelect() {
|
|
|
23675
23635
|
const keyBuilderFromType$i =
|
|
23676
23636
|
/**
|
|
23677
23637
|
* custom key builder from PicklistValuesRepresentation.
|
|
23678
|
-
* PicklistValuesRepresentation.url is like /services/data/
|
|
23679
|
-
* the '/services/data/
|
|
23638
|
+
* PicklistValuesRepresentation.url is like /services/data/v68.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/AccountSource
|
|
23639
|
+
* the '/services/data/v68.0' in the key make trouble for new js release. so chop it off make the key unique cross releases.
|
|
23680
23640
|
*/
|
|
23681
23641
|
function PicklistValuesRepresentationKeyBuilderFromType(luvio, object) {
|
|
23682
23642
|
const id = object.url.substring(object.url.indexOf('/ui-api'));
|
|
@@ -23986,7 +23946,7 @@ function ingestError$k(luvio, params, error, snapshotRefresh) {
|
|
|
23986
23946
|
function createResourceRequest$C(config) {
|
|
23987
23947
|
const headers = {};
|
|
23988
23948
|
return {
|
|
23989
|
-
baseUri: '/services/data/
|
|
23949
|
+
baseUri: '/services/data/v68.0',
|
|
23990
23950
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '',
|
|
23991
23951
|
method: 'get',
|
|
23992
23952
|
body: null,
|
|
@@ -24091,7 +24051,7 @@ function getResponseCacheKeys$w(storeKeyMap, luvio, resourceParams, response) {
|
|
|
24091
24051
|
function createResourceRequest$B(config) {
|
|
24092
24052
|
const headers = {};
|
|
24093
24053
|
return {
|
|
24094
|
-
baseUri: '/services/data/
|
|
24054
|
+
baseUri: '/services/data/v68.0',
|
|
24095
24055
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '/' + config.urlParams.fieldApiName + '',
|
|
24096
24056
|
method: 'get',
|
|
24097
24057
|
body: null,
|
|
@@ -24309,7 +24269,7 @@ function ingestError$j(luvio, params, error, snapshotRefresh) {
|
|
|
24309
24269
|
function createResourceRequest$A(config) {
|
|
24310
24270
|
const headers = {};
|
|
24311
24271
|
return {
|
|
24312
|
-
baseUri: '/services/data/
|
|
24272
|
+
baseUri: '/services/data/v68.0',
|
|
24313
24273
|
basePath: '/ui-api/path/layout/' + config.urlParams.objectApiName + '',
|
|
24314
24274
|
method: 'get',
|
|
24315
24275
|
body: null,
|
|
@@ -24635,7 +24595,7 @@ function ingestError$i(luvio, params, error, snapshotRefresh) {
|
|
|
24635
24595
|
function createResourceRequest$z(config) {
|
|
24636
24596
|
const headers = {};
|
|
24637
24597
|
return {
|
|
24638
|
-
baseUri: '/services/data/
|
|
24598
|
+
baseUri: '/services/data/v68.0',
|
|
24639
24599
|
basePath: '/ui-api/predupe',
|
|
24640
24600
|
method: 'post',
|
|
24641
24601
|
body: config.body,
|
|
@@ -25866,7 +25826,7 @@ function ingestError$h(luvio, params, error, snapshotRefresh) {
|
|
|
25866
25826
|
function createResourceRequest$y(config) {
|
|
25867
25827
|
const headers = {};
|
|
25868
25828
|
return {
|
|
25869
|
-
baseUri: '/services/data/
|
|
25829
|
+
baseUri: '/services/data/v68.0',
|
|
25870
25830
|
basePath: '/ui-api/record-avatars/batch/' + config.urlParams.recordIds + '',
|
|
25871
25831
|
method: 'get',
|
|
25872
25832
|
body: null,
|
|
@@ -26730,7 +26690,7 @@ function ingestError$g(luvio, params, error, snapshotRefresh) {
|
|
|
26730
26690
|
function createResourceRequest$x(config) {
|
|
26731
26691
|
const headers = {};
|
|
26732
26692
|
return {
|
|
26733
|
-
baseUri: '/services/data/
|
|
26693
|
+
baseUri: '/services/data/v68.0',
|
|
26734
26694
|
basePath: '/ui-api/related-list-count/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
26735
26695
|
method: 'get',
|
|
26736
26696
|
body: null,
|
|
@@ -26995,7 +26955,7 @@ function ingestError$f(luvio, params, error, snapshotRefresh) {
|
|
|
26995
26955
|
function createResourceRequest$w(config) {
|
|
26996
26956
|
const headers = {};
|
|
26997
26957
|
return {
|
|
26998
|
-
baseUri: '/services/data/
|
|
26958
|
+
baseUri: '/services/data/v68.0',
|
|
26999
26959
|
basePath: '/ui-api/related-list-count/batch/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListNames + '',
|
|
27000
26960
|
method: 'get',
|
|
27001
26961
|
body: null,
|
|
@@ -27689,7 +27649,7 @@ function ingestError$e(luvio, params, error, snapshotRefresh) {
|
|
|
27689
27649
|
function createResourceRequest$v(config) {
|
|
27690
27650
|
const headers = {};
|
|
27691
27651
|
return {
|
|
27692
|
-
baseUri: '/services/data/
|
|
27652
|
+
baseUri: '/services/data/v68.0',
|
|
27693
27653
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
27694
27654
|
method: 'get',
|
|
27695
27655
|
body: null,
|
|
@@ -27959,7 +27919,7 @@ function ingestError$d(luvio, params, error, snapshotRefresh) {
|
|
|
27959
27919
|
function createResourceRequest$u(config) {
|
|
27960
27920
|
const headers = {};
|
|
27961
27921
|
return {
|
|
27962
|
-
baseUri: '/services/data/
|
|
27922
|
+
baseUri: '/services/data/v68.0',
|
|
27963
27923
|
basePath: '/ui-api/related-list-info/batch/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListNames + '',
|
|
27964
27924
|
method: 'get',
|
|
27965
27925
|
body: null,
|
|
@@ -28353,7 +28313,7 @@ function ingestError$c(luvio, params, error, snapshotRefresh) {
|
|
|
28353
28313
|
function createResourceRequest$t(config) {
|
|
28354
28314
|
const headers = {};
|
|
28355
28315
|
return {
|
|
28356
|
-
baseUri: '/services/data/
|
|
28316
|
+
baseUri: '/services/data/v68.0',
|
|
28357
28317
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '',
|
|
28358
28318
|
method: 'get',
|
|
28359
28319
|
body: null,
|
|
@@ -28607,7 +28567,7 @@ function ingestSuccess$h(luvio, resourceParams, response) {
|
|
|
28607
28567
|
function createResourceRequest$s(config) {
|
|
28608
28568
|
const headers = {};
|
|
28609
28569
|
return {
|
|
28610
|
-
baseUri: '/services/data/
|
|
28570
|
+
baseUri: '/services/data/v68.0',
|
|
28611
28571
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
28612
28572
|
method: 'patch',
|
|
28613
28573
|
body: config.body,
|
|
@@ -28847,7 +28807,7 @@ function ingestError$b(luvio, params, error, snapshotRefresh) {
|
|
|
28847
28807
|
function createResourceRequest$r(config) {
|
|
28848
28808
|
const headers = {};
|
|
28849
28809
|
return {
|
|
28850
|
-
baseUri: '/services/data/
|
|
28810
|
+
baseUri: '/services/data/v68.0',
|
|
28851
28811
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
28852
28812
|
method: 'get',
|
|
28853
28813
|
body: null,
|
|
@@ -29109,7 +29069,7 @@ function ingestError$a(luvio, params, error, snapshotRefresh) {
|
|
|
29109
29069
|
function createResourceRequest$q(config) {
|
|
29110
29070
|
const headers = {};
|
|
29111
29071
|
return {
|
|
29112
|
-
baseUri: '/services/data/
|
|
29072
|
+
baseUri: '/services/data/v68.0',
|
|
29113
29073
|
basePath: '/ui-api/related-list-preferences/batch/' + config.urlParams.preferencesIds + '',
|
|
29114
29074
|
method: 'get',
|
|
29115
29075
|
body: null,
|
|
@@ -29318,7 +29278,7 @@ function ingestSuccess$e(luvio, resourceParams, response) {
|
|
|
29318
29278
|
function createResourceRequest$p(config) {
|
|
29319
29279
|
const headers = {};
|
|
29320
29280
|
return {
|
|
29321
|
-
baseUri: '/services/data/
|
|
29281
|
+
baseUri: '/services/data/v68.0',
|
|
29322
29282
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
29323
29283
|
method: 'patch',
|
|
29324
29284
|
body: config.body,
|
|
@@ -30382,7 +30342,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
|
|
|
30382
30342
|
function createResourceRequest$o(config) {
|
|
30383
30343
|
const headers = {};
|
|
30384
30344
|
return {
|
|
30385
|
-
baseUri: '/services/data/
|
|
30345
|
+
baseUri: '/services/data/v68.0',
|
|
30386
30346
|
basePath: '/ui-api/related-list-records/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
30387
30347
|
method: 'post',
|
|
30388
30348
|
body: config.body,
|
|
@@ -30667,7 +30627,7 @@ function ingestError$8(luvio, params, error, snapshotRefresh) {
|
|
|
30667
30627
|
function createResourceRequest$n(config) {
|
|
30668
30628
|
const headers = {};
|
|
30669
30629
|
return {
|
|
30670
|
-
baseUri: '/services/data/
|
|
30630
|
+
baseUri: '/services/data/v68.0',
|
|
30671
30631
|
basePath: '/ui-api/related-list-records/batch/' + config.urlParams.parentRecordId + '',
|
|
30672
30632
|
method: 'post',
|
|
30673
30633
|
body: config.body,
|
|
@@ -31210,7 +31170,7 @@ function ingestError$7(luvio, params, error, snapshotRefresh) {
|
|
|
31210
31170
|
function createResourceRequest$m(config) {
|
|
31211
31171
|
const headers = {};
|
|
31212
31172
|
return {
|
|
31213
|
-
baseUri: '/services/data/
|
|
31173
|
+
baseUri: '/services/data/v68.0',
|
|
31214
31174
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters',
|
|
31215
31175
|
method: 'get',
|
|
31216
31176
|
body: null,
|
|
@@ -31466,7 +31426,7 @@ function ingestError$6(luvio, params, error, snapshotRefresh) {
|
|
|
31466
31426
|
function createResourceRequest$l(config) {
|
|
31467
31427
|
const headers = {};
|
|
31468
31428
|
return {
|
|
31469
|
-
baseUri: '/services/data/
|
|
31429
|
+
baseUri: '/services/data/v68.0',
|
|
31470
31430
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters/' + config.urlParams.filterApiName + '/options',
|
|
31471
31431
|
method: 'get',
|
|
31472
31432
|
body: null,
|
|
@@ -31884,7 +31844,7 @@ function ingestError$5(luvio, params, error, snapshotRefresh) {
|
|
|
31884
31844
|
function createResourceRequest$k(config) {
|
|
31885
31845
|
const headers = {};
|
|
31886
31846
|
return {
|
|
31887
|
-
baseUri: '/services/data/
|
|
31847
|
+
baseUri: '/services/data/v68.0',
|
|
31888
31848
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/lookup/' + config.urlParams.fieldApiName + '',
|
|
31889
31849
|
method: 'get',
|
|
31890
31850
|
body: null,
|
|
@@ -32893,7 +32853,7 @@ function ingestError$4(luvio, params, error, snapshotRefresh) {
|
|
|
32893
32853
|
function createResourceRequest$j(config) {
|
|
32894
32854
|
const headers = {};
|
|
32895
32855
|
return {
|
|
32896
|
-
baseUri: '/services/data/
|
|
32856
|
+
baseUri: '/services/data/v68.0',
|
|
32897
32857
|
basePath: '/ui-api/search/results',
|
|
32898
32858
|
method: 'post',
|
|
32899
32859
|
body: config.body,
|
|
@@ -33167,7 +33127,7 @@ function ingestError$3(luvio, params, error, snapshotRefresh) {
|
|
|
33167
33127
|
function createResourceRequest$i(config) {
|
|
33168
33128
|
const headers = {};
|
|
33169
33129
|
return {
|
|
33170
|
-
baseUri: '/services/data/
|
|
33130
|
+
baseUri: '/services/data/v68.0',
|
|
33171
33131
|
basePath: '/ui-api/search/results/keyword',
|
|
33172
33132
|
method: 'post',
|
|
33173
33133
|
body: config.body,
|
|
@@ -60250,7 +60210,7 @@ function ingestError$2(luvio, config, params, error, snapshotRefresh) {
|
|
|
60250
60210
|
function createResourceRequest$h(config) {
|
|
60251
60211
|
const headers = {};
|
|
60252
60212
|
return {
|
|
60253
|
-
baseUri: '/services/data/
|
|
60213
|
+
baseUri: '/services/data/v68.0',
|
|
60254
60214
|
basePath: '/graphql',
|
|
60255
60215
|
method: 'post',
|
|
60256
60216
|
body: { ...config.body,
|
|
@@ -60301,7 +60261,7 @@ function createResourceRequest$f(config) {
|
|
|
60301
60261
|
const headers = {};
|
|
60302
60262
|
const transformedConfig = stripDocumentsOfMetaschema(config);
|
|
60303
60263
|
return {
|
|
60304
|
-
baseUri: '/services/data/
|
|
60264
|
+
baseUri: '/services/data/v68.0',
|
|
60305
60265
|
basePath: '/graphql/batch',
|
|
60306
60266
|
method: 'post',
|
|
60307
60267
|
body: transformedConfig.body,
|
|
@@ -60849,7 +60809,7 @@ function ingestSuccess$4(luvio, response) {
|
|
|
60849
60809
|
function createResourceRequest$e(config) {
|
|
60850
60810
|
const headers = {};
|
|
60851
60811
|
return {
|
|
60852
|
-
baseUri: '/services/data/
|
|
60812
|
+
baseUri: '/services/data/v68.0',
|
|
60853
60813
|
basePath: '/ui-api/records/batch',
|
|
60854
60814
|
method: 'post',
|
|
60855
60815
|
body: config.body,
|
|
@@ -61124,7 +61084,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
|
|
|
61124
61084
|
function createResourceRequest$d(config) {
|
|
61125
61085
|
const headers = {};
|
|
61126
61086
|
return {
|
|
61127
|
-
baseUri: '/services/data/
|
|
61087
|
+
baseUri: '/services/data/v68.0',
|
|
61128
61088
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
61129
61089
|
method: 'patch',
|
|
61130
61090
|
body: config.body,
|
|
@@ -61188,7 +61148,7 @@ function ingestSuccess$2(luvio, resourceParams, response) {
|
|
|
61188
61148
|
function createResourceRequest$c(config) {
|
|
61189
61149
|
const headers = {};
|
|
61190
61150
|
return {
|
|
61191
|
-
baseUri: '/services/data/
|
|
61151
|
+
baseUri: '/services/data/v68.0',
|
|
61192
61152
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
61193
61153
|
method: 'post',
|
|
61194
61154
|
body: config.body,
|
|
@@ -61257,7 +61217,7 @@ const factory$c = (luvio) => {
|
|
|
61257
61217
|
function createResourceRequest$b(config) {
|
|
61258
61218
|
const headers = {};
|
|
61259
61219
|
return {
|
|
61260
|
-
baseUri: '/services/data/
|
|
61220
|
+
baseUri: '/services/data/v68.0',
|
|
61261
61221
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
61262
61222
|
method: 'patch',
|
|
61263
61223
|
body: config.body,
|
|
@@ -61756,7 +61716,7 @@ function getResponseCacheKeys$7(storeKeyMap, luvio, resourceParams, response) {
|
|
|
61756
61716
|
function createResourceRequest$a(config) {
|
|
61757
61717
|
const headers = {};
|
|
61758
61718
|
return {
|
|
61759
|
-
baseUri: '/services/data/
|
|
61719
|
+
baseUri: '/services/data/v68.0',
|
|
61760
61720
|
basePath: '/ui-api/lookups/' + config.urlParams.objectApiName + '/' + config.urlParams.fieldApiName + '',
|
|
61761
61721
|
method: 'post',
|
|
61762
61722
|
body: config.body,
|
|
@@ -61998,7 +61958,7 @@ const factory$9 = (luvio) => {
|
|
|
61998
61958
|
function createResourceRequest$9(config) {
|
|
61999
61959
|
const headers = {};
|
|
62000
61960
|
return {
|
|
62001
|
-
baseUri: '/services/data/
|
|
61961
|
+
baseUri: '/services/data/v68.0',
|
|
62002
61962
|
basePath: '/ui-api/record-avatars/' + config.urlParams.recordId + '/association',
|
|
62003
61963
|
method: 'post',
|
|
62004
61964
|
body: config.body,
|
|
@@ -62607,7 +62567,7 @@ function getResponseCacheKeys$6(storeKeyMap, luvio, resourceParams, response) {
|
|
|
62607
62567
|
function createResourceRequest$8(config) {
|
|
62608
62568
|
const headers = {};
|
|
62609
62569
|
return {
|
|
62610
|
-
baseUri: '/services/data/
|
|
62570
|
+
baseUri: '/services/data/v68.0',
|
|
62611
62571
|
basePath: '/ui-api/record-defaults/create/' + config.urlParams.objectApiName + '',
|
|
62612
62572
|
method: 'get',
|
|
62613
62573
|
body: null,
|
|
@@ -63249,7 +63209,7 @@ function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
|
|
|
63249
63209
|
function createResourceRequest$7(config) {
|
|
63250
63210
|
const headers = {};
|
|
63251
63211
|
return {
|
|
63252
|
-
baseUri: '/services/data/
|
|
63212
|
+
baseUri: '/services/data/v68.0',
|
|
63253
63213
|
basePath: '/ui-api/record-defaults/template/clone/' + config.urlParams.recordId + '',
|
|
63254
63214
|
method: 'get',
|
|
63255
63215
|
body: null,
|
|
@@ -63880,7 +63840,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
63880
63840
|
function createResourceRequest$6(config) {
|
|
63881
63841
|
const headers = {};
|
|
63882
63842
|
return {
|
|
63883
|
-
baseUri: '/services/data/
|
|
63843
|
+
baseUri: '/services/data/v68.0',
|
|
63884
63844
|
basePath: '/ui-api/record-defaults/template/create/' + config.urlParams.objectApiName + '',
|
|
63885
63845
|
method: 'get',
|
|
63886
63846
|
body: null,
|
|
@@ -64093,7 +64053,7 @@ function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
|
64093
64053
|
function createResourceRequest$5(config) {
|
|
64094
64054
|
const headers = {};
|
|
64095
64055
|
return {
|
|
64096
|
-
baseUri: '/services/data/
|
|
64056
|
+
baseUri: '/services/data/v68.0',
|
|
64097
64057
|
basePath: '/ui-api/records',
|
|
64098
64058
|
method: 'post',
|
|
64099
64059
|
body: config.body,
|
|
@@ -64199,7 +64159,7 @@ function evictSuccess(luvio, resourceParams) {
|
|
|
64199
64159
|
function createResourceRequest$3(config) {
|
|
64200
64160
|
const headers = {};
|
|
64201
64161
|
return {
|
|
64202
|
-
baseUri: '/services/data/
|
|
64162
|
+
baseUri: '/services/data/v68.0',
|
|
64203
64163
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
64204
64164
|
method: 'delete',
|
|
64205
64165
|
body: null,
|
|
@@ -64289,7 +64249,7 @@ function createResourceRequest$2(config) {
|
|
|
64289
64249
|
headers['If-Unmodified-Since'] = header_ifUnmodifiedSince;
|
|
64290
64250
|
}
|
|
64291
64251
|
return {
|
|
64292
|
-
baseUri: '/services/data/
|
|
64252
|
+
baseUri: '/services/data/v68.0',
|
|
64293
64253
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
64294
64254
|
method: 'patch',
|
|
64295
64255
|
body: config.body,
|
|
@@ -64628,7 +64588,7 @@ function createResourceParams$1(config) {
|
|
|
64628
64588
|
function createResourceRequest$1(config) {
|
|
64629
64589
|
const headers = {};
|
|
64630
64590
|
return {
|
|
64631
|
-
baseUri: '/services/data/
|
|
64591
|
+
baseUri: '/services/data/v68.0',
|
|
64632
64592
|
basePath: '/ui-api/records/content-documents/' +
|
|
64633
64593
|
config.urlParams.contentDocumentId +
|
|
64634
64594
|
'/content-versions',
|
|
@@ -64746,7 +64706,7 @@ function createResourceParams(config) {
|
|
|
64746
64706
|
function createResourceRequest(config) {
|
|
64747
64707
|
const headers = {};
|
|
64748
64708
|
return {
|
|
64749
|
-
baseUri: '/services/data/
|
|
64709
|
+
baseUri: '/services/data/v68.0',
|
|
64750
64710
|
basePath: '/ui-api/records/content-documents/content-versions',
|
|
64751
64711
|
method: 'post',
|
|
64752
64712
|
body: config.body,
|
|
@@ -65303,4 +65263,4 @@ function getRecordIngestionOverride() {
|
|
|
65303
65263
|
return getRecordRepresentationIngestionOverride();
|
|
65304
65264
|
}
|
|
65305
65265
|
|
|
65306
|
-
export { API_NAMESPACE, VERSION$33 as FieldValueRepresentationVersion, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$3 as NotifyListInfoSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$4 as NotifyListRecordCollectionUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$5 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$T as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$_ as RecordRepresentationRepresentationType, TTL$F as RecordRepresentationTTL, RepresentationType$_ as RecordRepresentationType, VERSION$31 as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields,
|
|
65266
|
+
export { API_NAMESPACE, VERSION$33 as FieldValueRepresentationVersion, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$3 as NotifyListInfoSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$4 as NotifyListRecordCollectionUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$5 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$T as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$_ as RecordRepresentationRepresentationType, TTL$F as RecordRepresentationTTL, RepresentationType$_ as RecordRepresentationType, VERSION$31 as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, deleteListInfoAdapterFactory, factory$3 as deleteRecordAdapterFactory, factory$f as executeBatchRecordOperationsAdapterFactory, extractRecordIdFromStoreKey, generateRecordInputForCreate, generateRecordInputForUpdate, getActionOverridesAdapterFactory, getAllAppsAdapterFactory, getAppDetailsAdapterFactory, getDuplicateConfigurationAdapterFactory, getDuplicatesAdapterFactory, getFieldDisplayValue$1 as getFieldDisplayValue, getFieldValue, getFlexipageFormulaOverridesAdapterFactory, getGlobalActionsAdapterFactory, getKeywordSearchResultsAdapterFactory, getLayoutAdapterFactory, getLayoutUserStateAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByNameAdapterFactory, getListInfosByObjectNameAdapterFactory, getListObjectInfoAdapterFactory, getListPreferencesAdapterFactory, factory$a as getListRecordsByNameAdapterFactory, factory$j as getListUiAdapterFactory, getListUiByApiNameAdapterFactory, getListUiByListViewIdAdapterFactory, getListViewSummaryCollectionAdapterFactory, getLookupActionsAdapterFactory, getLookupMetadataAdapterFactory, factory$9 as getLookupRecordsAdapterFactory, factory$k as getMruListUiAdapterFactory, getNavItemsAdapterFactory, getObjectCreateActionsAdapterFactory, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfosAdapterFactory, getPathLayoutAdapterFactory, getPicklistValuesAdapterFactory, getPicklistValuesByRecordTypeAdapterFactory, getQuickActionDefaultsAdapterFactory, getQuickActionInfoAdapterFactory, getQuickActionLayoutAdapterFactory, getRecordActionsAdapterFactory, factory$h as getRecordAdapterFactory, getRecordAvatarsAdapterFactory, factory$7 as getRecordCreateDefaultsAdapterFactory, getRecordEditActionsAdapterFactory, getRecordId18, getRecordId18Array, getRecordIngestionOverride, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$i as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$2E as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$g as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$2a as ingestDuplicateConfiguration, ingest$24 as ingestDuplicatesRepresentation, ingest$2C as ingestListInfo, ingest$2y as ingestListRecords, ingest$2s as ingestObjectInfo, ingest$2m as ingestQuickActionExecutionRepresentation, ingest$2z as ingestRecord, ingest$2p as ingestRecordUi, ingest$1Y as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1V as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1X as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$E as keyBuilderFromTypeRecordRepresentation, keyBuilder$3D as keyBuilderObjectInfo, keyBuilder$3w as keyBuilderQuickActionExecutionRepresentation, keyBuilder$3U as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, registerPrefetcher, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, updateListPreferencesAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
|