@salesforce/lds-adapters-uiapi 1.334.0 → 1.336.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 +2 -0
- package/dist/es/es2018/types/src/main.d.ts +3 -0
- package/dist/es/es2018/types/src/predictive-loading/registry.d.ts +1 -0
- package/dist/es/es2018/types/src/sfdc_rest.d.ts +1 -1
- package/dist/es/es2018/uiapi-records-service.js +102 -82
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +13 -3
- package/sfdc/index.js +101 -81
- package/sfdc/uiapi-static-functions.js +10 -0
- package/src/raml/api.raml +1 -1
package/sfdc/index.js
CHANGED
|
@@ -118,6 +118,10 @@ let oneStoreGetObjectInfosAdapter = undefined;
|
|
|
118
118
|
* Determines when to include PDL strategies for Related Lists
|
|
119
119
|
*/
|
|
120
120
|
let relatedListsPredictionsEnabled = false;
|
|
121
|
+
/**
|
|
122
|
+
* Determines whether to include additional PDL strategies for Related Lists
|
|
123
|
+
*/
|
|
124
|
+
let relatedListsPlusPredictionsEnabled = false;
|
|
121
125
|
/**
|
|
122
126
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
123
127
|
* Configuration for one store enabled REST adapters only.
|
|
@@ -226,6 +230,12 @@ const configurationForRestAdapters = {
|
|
|
226
230
|
areRelatedListsPredictionsEnabled: function () {
|
|
227
231
|
return relatedListsPredictionsEnabled === true;
|
|
228
232
|
},
|
|
233
|
+
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
234
|
+
relatedListsPlusPredictionsEnabled = f;
|
|
235
|
+
},
|
|
236
|
+
areRelatedListsPlusPredictionsEnabled: function () {
|
|
237
|
+
return relatedListsPlusPredictionsEnabled === true;
|
|
238
|
+
},
|
|
229
239
|
// createRecord
|
|
230
240
|
getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.getAdapter,
|
|
231
241
|
setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.setAdapter,
|
|
@@ -369,6 +379,16 @@ function createRelatedListAdapterWithPrediction(adapter, luvio, name) {
|
|
|
369
379
|
};
|
|
370
380
|
}
|
|
371
381
|
}
|
|
382
|
+
function createRelatedListPlusAdapterWithPrediction(adapter, luvio, name) {
|
|
383
|
+
if (configurationForRestAdapters.areRelatedListsPlusPredictionsEnabled() /* gate is open */) {
|
|
384
|
+
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
385
|
+
}
|
|
386
|
+
else {
|
|
387
|
+
return (config, requestContext) => {
|
|
388
|
+
return adapter(config, requestContext);
|
|
389
|
+
};
|
|
390
|
+
}
|
|
391
|
+
}
|
|
372
392
|
|
|
373
393
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
374
394
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -5864,7 +5884,7 @@ function getResponseCacheKeys$12(storeKeyMap, luvio, resourceParams, response) {
|
|
|
5864
5884
|
function createResourceRequest$1c(config) {
|
|
5865
5885
|
const headers = {};
|
|
5866
5886
|
return {
|
|
5867
|
-
baseUri: '/services/data/
|
|
5887
|
+
baseUri: '/services/data/v64.0',
|
|
5868
5888
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
5869
5889
|
method: 'get',
|
|
5870
5890
|
body: null,
|
|
@@ -6306,7 +6326,7 @@ function ingestError$L(luvio, params, error, snapshotRefresh) {
|
|
|
6306
6326
|
function createResourceRequest$1b(config) {
|
|
6307
6327
|
const headers = {};
|
|
6308
6328
|
return {
|
|
6309
|
-
baseUri: '/services/data/
|
|
6329
|
+
baseUri: '/services/data/v64.0',
|
|
6310
6330
|
basePath: '/ui-api/records/batch/' + config.urlParams.recordIds + '',
|
|
6311
6331
|
method: 'get',
|
|
6312
6332
|
body: null,
|
|
@@ -7462,7 +7482,7 @@ function createPaginationParams$6(params) {
|
|
|
7462
7482
|
function createResourceRequest$1a(config) {
|
|
7463
7483
|
const headers = {};
|
|
7464
7484
|
return {
|
|
7465
|
-
baseUri: '/services/data/
|
|
7485
|
+
baseUri: '/services/data/v64.0',
|
|
7466
7486
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
7467
7487
|
method: 'get',
|
|
7468
7488
|
body: null,
|
|
@@ -7515,7 +7535,7 @@ function createPaginationParams$5(params) {
|
|
|
7515
7535
|
function createResourceRequest$19(config) {
|
|
7516
7536
|
const headers = {};
|
|
7517
7537
|
return {
|
|
7518
|
-
baseUri: '/services/data/
|
|
7538
|
+
baseUri: '/services/data/v64.0',
|
|
7519
7539
|
basePath: '/ui-api/list-ui/' + config.urlParams.listViewId + '',
|
|
7520
7540
|
method: 'get',
|
|
7521
7541
|
body: null,
|
|
@@ -7560,7 +7580,7 @@ function validateAdapterConfig$16(untrustedConfig, configPropertyNames) {
|
|
|
7560
7580
|
function createResourceRequest$18(config) {
|
|
7561
7581
|
const headers = {};
|
|
7562
7582
|
return {
|
|
7563
|
-
baseUri: '/services/data/
|
|
7583
|
+
baseUri: '/services/data/v64.0',
|
|
7564
7584
|
basePath: '/ui-api/list-records/' + config.urlParams.listViewId + '',
|
|
7565
7585
|
method: 'get',
|
|
7566
7586
|
body: null,
|
|
@@ -8645,7 +8665,7 @@ function ingestError$K(luvio, params, error, snapshotRefresh) {
|
|
|
8645
8665
|
function createResourceRequest$17(config) {
|
|
8646
8666
|
const headers = {};
|
|
8647
8667
|
return {
|
|
8648
|
-
baseUri: '/services/data/
|
|
8668
|
+
baseUri: '/services/data/v64.0',
|
|
8649
8669
|
basePath: '/ui-api/list-records/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
8650
8670
|
method: 'post',
|
|
8651
8671
|
body: config.body,
|
|
@@ -9381,7 +9401,7 @@ function ingestError$J(luvio, params, error, snapshotRefresh) {
|
|
|
9381
9401
|
function createResourceRequest$16(config) {
|
|
9382
9402
|
const headers = {};
|
|
9383
9403
|
return {
|
|
9384
|
-
baseUri: '/services/data/
|
|
9404
|
+
baseUri: '/services/data/v64.0',
|
|
9385
9405
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '',
|
|
9386
9406
|
method: 'get',
|
|
9387
9407
|
body: null,
|
|
@@ -9579,7 +9599,7 @@ function keyBuilder$1Z(luvio, params) {
|
|
|
9579
9599
|
function createResourceRequest$15(config) {
|
|
9580
9600
|
const headers = {};
|
|
9581
9601
|
return {
|
|
9582
|
-
baseUri: '/services/data/
|
|
9602
|
+
baseUri: '/services/data/v64.0',
|
|
9583
9603
|
basePath: '/ui-api/mru-list-ui/' + config.urlParams.objectApiName + '',
|
|
9584
9604
|
method: 'get',
|
|
9585
9605
|
body: null,
|
|
@@ -9624,7 +9644,7 @@ function validateAdapterConfig$14(untrustedConfig, configPropertyNames) {
|
|
|
9624
9644
|
function createResourceRequest$14(config) {
|
|
9625
9645
|
const headers = {};
|
|
9626
9646
|
return {
|
|
9627
|
-
baseUri: '/services/data/
|
|
9647
|
+
baseUri: '/services/data/v64.0',
|
|
9628
9648
|
basePath: '/ui-api/mru-list-records/' + config.urlParams.objectApiName + '',
|
|
9629
9649
|
method: 'get',
|
|
9630
9650
|
body: null,
|
|
@@ -11429,7 +11449,7 @@ function ingestError$I(luvio, params, error, snapshotRefresh) {
|
|
|
11429
11449
|
function createResourceRequest$13(config) {
|
|
11430
11450
|
const headers = {};
|
|
11431
11451
|
return {
|
|
11432
|
-
baseUri: '/services/data/
|
|
11452
|
+
baseUri: '/services/data/v64.0',
|
|
11433
11453
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '',
|
|
11434
11454
|
method: 'get',
|
|
11435
11455
|
body: null,
|
|
@@ -12487,7 +12507,7 @@ const ingest$E = function RecordUiRepresentationIngest(input, path, luvio, store
|
|
|
12487
12507
|
function createResourceRequest$12(config) {
|
|
12488
12508
|
const headers = {};
|
|
12489
12509
|
return {
|
|
12490
|
-
baseUri: '/services/data/
|
|
12510
|
+
baseUri: '/services/data/v64.0',
|
|
12491
12511
|
basePath: '/ui-api/record-ui/' + config.urlParams.recordIds + '',
|
|
12492
12512
|
method: 'get',
|
|
12493
12513
|
body: null,
|
|
@@ -15162,7 +15182,7 @@ function ingestError$H(luvio, params, error, snapshotRefresh) {
|
|
|
15162
15182
|
function createResourceRequest$11(config) {
|
|
15163
15183
|
const headers = {};
|
|
15164
15184
|
return {
|
|
15165
|
-
baseUri: '/services/data/
|
|
15185
|
+
baseUri: '/services/data/v64.0',
|
|
15166
15186
|
basePath: '/ui-api/actions/global',
|
|
15167
15187
|
method: 'get',
|
|
15168
15188
|
body: null,
|
|
@@ -15396,7 +15416,7 @@ function ingestError$G(luvio, params, error, snapshotRefresh) {
|
|
|
15396
15416
|
function createResourceRequest$10(config) {
|
|
15397
15417
|
const headers = {};
|
|
15398
15418
|
return {
|
|
15399
|
-
baseUri: '/services/data/
|
|
15419
|
+
baseUri: '/services/data/v64.0',
|
|
15400
15420
|
basePath: '/ui-api/actions/layout/' + config.urlParams.actionApiName + '',
|
|
15401
15421
|
method: 'get',
|
|
15402
15422
|
body: null,
|
|
@@ -15568,7 +15588,7 @@ function ingestError$F(luvio, params, error, snapshotRefresh) {
|
|
|
15568
15588
|
function createResourceRequest$$(config) {
|
|
15569
15589
|
const headers = {};
|
|
15570
15590
|
return {
|
|
15571
|
-
baseUri: '/services/data/
|
|
15591
|
+
baseUri: '/services/data/v64.0',
|
|
15572
15592
|
basePath: '/ui-api/actions/lookup/' + config.urlParams.objectApiNames + '',
|
|
15573
15593
|
method: 'get',
|
|
15574
15594
|
body: null,
|
|
@@ -15710,7 +15730,7 @@ function ingestError$E(luvio, params, error, snapshotRefresh) {
|
|
|
15710
15730
|
function createResourceRequest$_(config) {
|
|
15711
15731
|
const headers = {};
|
|
15712
15732
|
return {
|
|
15713
|
-
baseUri: '/services/data/
|
|
15733
|
+
baseUri: '/services/data/v64.0',
|
|
15714
15734
|
basePath: '/ui-api/actions/object/' + config.urlParams.objectApiName + '/record-create',
|
|
15715
15735
|
method: 'get',
|
|
15716
15736
|
body: null,
|
|
@@ -15900,7 +15920,7 @@ function ingestError$D(luvio, params, error, snapshotRefresh) {
|
|
|
15900
15920
|
function createResourceRequest$Z(config) {
|
|
15901
15921
|
const headers = {};
|
|
15902
15922
|
return {
|
|
15903
|
-
baseUri: '/services/data/
|
|
15923
|
+
baseUri: '/services/data/v64.0',
|
|
15904
15924
|
basePath: '/ui-api/actions/overrides/' + config.urlParams.objectApiName + '',
|
|
15905
15925
|
method: 'get',
|
|
15906
15926
|
body: null,
|
|
@@ -16164,7 +16184,7 @@ function ingestError$C(luvio, params, error, snapshotRefresh) {
|
|
|
16164
16184
|
function createResourceRequest$Y(config) {
|
|
16165
16185
|
const headers = {};
|
|
16166
16186
|
return {
|
|
16167
|
-
baseUri: '/services/data/
|
|
16187
|
+
baseUri: '/services/data/v64.0',
|
|
16168
16188
|
basePath: '/ui-api/actions/formula-activation/' + config.urlParams.actionFeature + '',
|
|
16169
16189
|
method: 'get',
|
|
16170
16190
|
body: null,
|
|
@@ -17375,7 +17395,7 @@ function ingestError$B(luvio, params, error, snapshotRefresh) {
|
|
|
17375
17395
|
function createResourceRequest$X(config) {
|
|
17376
17396
|
const headers = {};
|
|
17377
17397
|
return {
|
|
17378
|
-
baseUri: '/services/data/
|
|
17398
|
+
baseUri: '/services/data/v64.0',
|
|
17379
17399
|
basePath: '/ui-api/actions/quick-action-info/' + config.urlParams.actionApiName + '',
|
|
17380
17400
|
method: 'get',
|
|
17381
17401
|
body: null,
|
|
@@ -17586,7 +17606,7 @@ function ingestError$A(luvio, params, error, snapshotRefresh) {
|
|
|
17586
17606
|
function createResourceRequest$W(config) {
|
|
17587
17607
|
const headers = {};
|
|
17588
17608
|
return {
|
|
17589
|
-
baseUri: '/services/data/
|
|
17609
|
+
baseUri: '/services/data/v64.0',
|
|
17590
17610
|
basePath: '/ui-api/actions/record-defaults/' + config.urlParams.actionApiName + '',
|
|
17591
17611
|
method: 'get',
|
|
17592
17612
|
body: null,
|
|
@@ -17755,7 +17775,7 @@ function ingestError$z(luvio, params, error, snapshotRefresh) {
|
|
|
17755
17775
|
function createResourceRequest$V(config) {
|
|
17756
17776
|
const headers = {};
|
|
17757
17777
|
return {
|
|
17758
|
-
baseUri: '/services/data/
|
|
17778
|
+
baseUri: '/services/data/v64.0',
|
|
17759
17779
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '',
|
|
17760
17780
|
method: 'get',
|
|
17761
17781
|
body: null,
|
|
@@ -17907,7 +17927,7 @@ function ingestError$y(luvio, params, error, snapshotRefresh) {
|
|
|
17907
17927
|
function createResourceRequest$U(config) {
|
|
17908
17928
|
const headers = {};
|
|
17909
17929
|
return {
|
|
17910
|
-
baseUri: '/services/data/
|
|
17930
|
+
baseUri: '/services/data/v64.0',
|
|
17911
17931
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/record-edit',
|
|
17912
17932
|
method: 'get',
|
|
17913
17933
|
body: null,
|
|
@@ -18119,7 +18139,7 @@ function ingestError$x(luvio, params, error, snapshotRefresh) {
|
|
|
18119
18139
|
function createResourceRequest$T(config) {
|
|
18120
18140
|
const headers = {};
|
|
18121
18141
|
return {
|
|
18122
|
-
baseUri: '/services/data/
|
|
18142
|
+
baseUri: '/services/data/v64.0',
|
|
18123
18143
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/' + config.urlParams.relatedListId + '',
|
|
18124
18144
|
method: 'post',
|
|
18125
18145
|
body: config.body,
|
|
@@ -18404,7 +18424,7 @@ function ingestError$w(luvio, params, error, snapshotRefresh) {
|
|
|
18404
18424
|
function createResourceRequest$S(config) {
|
|
18405
18425
|
const headers = {};
|
|
18406
18426
|
return {
|
|
18407
|
-
baseUri: '/services/data/
|
|
18427
|
+
baseUri: '/services/data/v64.0',
|
|
18408
18428
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/batch',
|
|
18409
18429
|
method: 'post',
|
|
18410
18430
|
body: config.body,
|
|
@@ -18649,7 +18669,7 @@ function ingestError$v(luvio, params, error, snapshotRefresh) {
|
|
|
18649
18669
|
function createResourceRequest$R(config) {
|
|
18650
18670
|
const headers = {};
|
|
18651
18671
|
return {
|
|
18652
|
-
baseUri: '/services/data/
|
|
18672
|
+
baseUri: '/services/data/v64.0',
|
|
18653
18673
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list-record/' + config.urlParams.relatedListRecordIds + '',
|
|
18654
18674
|
method: 'get',
|
|
18655
18675
|
body: null,
|
|
@@ -19906,7 +19926,7 @@ function ingestError$u(luvio, params, error, snapshotRefresh) {
|
|
|
19906
19926
|
function createResourceRequest$Q(config) {
|
|
19907
19927
|
const headers = {};
|
|
19908
19928
|
return {
|
|
19909
|
-
baseUri: '/services/data/
|
|
19929
|
+
baseUri: '/services/data/v64.0',
|
|
19910
19930
|
basePath: '/ui-api/apps',
|
|
19911
19931
|
method: 'get',
|
|
19912
19932
|
body: null,
|
|
@@ -20048,7 +20068,7 @@ function ingestError$t(luvio, params, error, snapshotRefresh) {
|
|
|
20048
20068
|
function createResourceRequest$P(config) {
|
|
20049
20069
|
const headers = {};
|
|
20050
20070
|
return {
|
|
20051
|
-
baseUri: '/services/data/
|
|
20071
|
+
baseUri: '/services/data/v64.0',
|
|
20052
20072
|
basePath: '/ui-api/apps/' + config.urlParams.appId + '',
|
|
20053
20073
|
method: 'get',
|
|
20054
20074
|
body: null,
|
|
@@ -20651,7 +20671,7 @@ function ingestError$s(luvio, params, error, snapshotRefresh) {
|
|
|
20651
20671
|
function createResourceRequest$O(config) {
|
|
20652
20672
|
const headers = {};
|
|
20653
20673
|
return {
|
|
20654
|
-
baseUri: '/services/data/
|
|
20674
|
+
baseUri: '/services/data/v64.0',
|
|
20655
20675
|
basePath: '/ui-api/duplicates/' + config.urlParams.objectApiName + '',
|
|
20656
20676
|
method: 'get',
|
|
20657
20677
|
body: null,
|
|
@@ -20790,7 +20810,7 @@ function ingestError$r(luvio, params, error, snapshotRefresh) {
|
|
|
20790
20810
|
function createResourceRequest$N(config) {
|
|
20791
20811
|
const headers = {};
|
|
20792
20812
|
return {
|
|
20793
|
-
baseUri: '/services/data/
|
|
20813
|
+
baseUri: '/services/data/v64.0',
|
|
20794
20814
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '',
|
|
20795
20815
|
method: 'get',
|
|
20796
20816
|
body: null,
|
|
@@ -20930,7 +20950,7 @@ function getResponseCacheKeys$I(storeKeyMap, luvio, resourceParams, response) {
|
|
|
20930
20950
|
function createResourceRequest$M(config) {
|
|
20931
20951
|
const headers = {};
|
|
20932
20952
|
return {
|
|
20933
|
-
baseUri: '/services/data/
|
|
20953
|
+
baseUri: '/services/data/v64.0',
|
|
20934
20954
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
20935
20955
|
method: 'get',
|
|
20936
20956
|
body: null,
|
|
@@ -21164,7 +21184,7 @@ function ingestError$q(luvio, params, error, snapshotRefresh) {
|
|
|
21164
21184
|
function createResourceRequest$L(config) {
|
|
21165
21185
|
const headers = {};
|
|
21166
21186
|
return {
|
|
21167
|
-
baseUri: '/services/data/
|
|
21187
|
+
baseUri: '/services/data/v64.0',
|
|
21168
21188
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
21169
21189
|
method: 'get',
|
|
21170
21190
|
body: null,
|
|
@@ -21433,7 +21453,7 @@ function ingestError$p(luvio, params, error, snapshotRefresh) {
|
|
|
21433
21453
|
function createResourceRequest$K(config) {
|
|
21434
21454
|
const headers = {};
|
|
21435
21455
|
return {
|
|
21436
|
-
baseUri: '/services/data/
|
|
21456
|
+
baseUri: '/services/data/v64.0',
|
|
21437
21457
|
basePath: '/ui-api/list-info/batch',
|
|
21438
21458
|
method: 'get',
|
|
21439
21459
|
body: null,
|
|
@@ -21578,7 +21598,7 @@ function ingestError$o(luvio, params, error, snapshotRefresh) {
|
|
|
21578
21598
|
function createResourceRequest$J(config) {
|
|
21579
21599
|
const headers = {};
|
|
21580
21600
|
return {
|
|
21581
|
-
baseUri: '/services/data/
|
|
21601
|
+
baseUri: '/services/data/v64.0',
|
|
21582
21602
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
21583
21603
|
method: 'get',
|
|
21584
21604
|
body: null,
|
|
@@ -21884,7 +21904,7 @@ function ingestSuccess$w(luvio, resourceParams, response) {
|
|
|
21884
21904
|
function createResourceRequest$I(config) {
|
|
21885
21905
|
const headers = {};
|
|
21886
21906
|
return {
|
|
21887
|
-
baseUri: '/services/data/
|
|
21907
|
+
baseUri: '/services/data/v64.0',
|
|
21888
21908
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
21889
21909
|
method: 'post',
|
|
21890
21910
|
body: config.body,
|
|
@@ -21997,7 +22017,7 @@ function evictSuccess$1(luvio, resourceParams) {
|
|
|
21997
22017
|
function createResourceRequest$H(config) {
|
|
21998
22018
|
const headers = {};
|
|
21999
22019
|
return {
|
|
22000
|
-
baseUri: '/services/data/
|
|
22020
|
+
baseUri: '/services/data/v64.0',
|
|
22001
22021
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22002
22022
|
method: 'delete',
|
|
22003
22023
|
body: null,
|
|
@@ -22175,7 +22195,7 @@ function ingestSuccess$v(luvio, resourceParams, response) {
|
|
|
22175
22195
|
function createResourceRequest$G(config) {
|
|
22176
22196
|
const headers = {};
|
|
22177
22197
|
return {
|
|
22178
|
-
baseUri: '/services/data/
|
|
22198
|
+
baseUri: '/services/data/v64.0',
|
|
22179
22199
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22180
22200
|
method: 'patch',
|
|
22181
22201
|
body: config.body,
|
|
@@ -22902,7 +22922,7 @@ function ingestError$n(luvio, params, error, snapshotRefresh) {
|
|
|
22902
22922
|
function createResourceRequest$F(config) {
|
|
22903
22923
|
const headers = {};
|
|
22904
22924
|
return {
|
|
22905
|
-
baseUri: '/services/data/
|
|
22925
|
+
baseUri: '/services/data/v64.0',
|
|
22906
22926
|
basePath: '/ui-api/list-object-info/' + config.urlParams.objectApiName + '',
|
|
22907
22927
|
method: 'get',
|
|
22908
22928
|
body: null,
|
|
@@ -23211,7 +23231,7 @@ function ingestError$m(luvio, params, error, snapshotRefresh) {
|
|
|
23211
23231
|
function createResourceRequest$E(config) {
|
|
23212
23232
|
const headers = {};
|
|
23213
23233
|
return {
|
|
23214
|
-
baseUri: '/services/data/
|
|
23234
|
+
baseUri: '/services/data/v64.0',
|
|
23215
23235
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
23216
23236
|
method: 'get',
|
|
23217
23237
|
body: null,
|
|
@@ -23355,7 +23375,7 @@ function ingestSuccess$s(luvio, resourceParams, response) {
|
|
|
23355
23375
|
function createResourceRequest$D(config) {
|
|
23356
23376
|
const headers = {};
|
|
23357
23377
|
return {
|
|
23358
|
-
baseUri: '/services/data/
|
|
23378
|
+
baseUri: '/services/data/v64.0',
|
|
23359
23379
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
23360
23380
|
method: 'patch',
|
|
23361
23381
|
body: config.body,
|
|
@@ -23665,7 +23685,7 @@ function ingestError$l(luvio, params, error, snapshotRefresh) {
|
|
|
23665
23685
|
function createResourceRequest$C(config) {
|
|
23666
23686
|
const headers = {};
|
|
23667
23687
|
return {
|
|
23668
|
-
baseUri: '/services/data/
|
|
23688
|
+
baseUri: '/services/data/v64.0',
|
|
23669
23689
|
basePath: '/ui-api/nav-items',
|
|
23670
23690
|
method: 'get',
|
|
23671
23691
|
body: null,
|
|
@@ -23801,7 +23821,7 @@ function ingestError$k(luvio, params, error, snapshotRefresh) {
|
|
|
23801
23821
|
function createResourceRequest$B(config) {
|
|
23802
23822
|
const headers = {};
|
|
23803
23823
|
return {
|
|
23804
|
-
baseUri: '/services/data/
|
|
23824
|
+
baseUri: '/services/data/v64.0',
|
|
23805
23825
|
basePath: '/ui-api/object-info',
|
|
23806
23826
|
method: 'get',
|
|
23807
23827
|
body: null,
|
|
@@ -24146,7 +24166,7 @@ function ingestError$j(luvio, params, error, snapshotRefresh) {
|
|
|
24146
24166
|
function createResourceRequest$A(config) {
|
|
24147
24167
|
const headers = {};
|
|
24148
24168
|
return {
|
|
24149
|
-
baseUri: '/services/data/
|
|
24169
|
+
baseUri: '/services/data/v64.0',
|
|
24150
24170
|
basePath: '/ui-api/object-info/batch/' + config.urlParams.objectApiNames + '',
|
|
24151
24171
|
method: 'get',
|
|
24152
24172
|
body: null,
|
|
@@ -24475,8 +24495,8 @@ const select$L = function PicklistValueRepresentationSelect() {
|
|
|
24475
24495
|
const keyBuilderFromType$i =
|
|
24476
24496
|
/**
|
|
24477
24497
|
* custom key builder from PicklistValuesRepresentation.
|
|
24478
|
-
* PicklistValuesRepresentation.url is like /services/data/
|
|
24479
|
-
* the '/services/data/
|
|
24498
|
+
* PicklistValuesRepresentation.url is like /services/data/v64.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/AccountSource
|
|
24499
|
+
* the '/services/data/v64.0' in the key make trouble for new js release. so chop it off make the key unique cross releases.
|
|
24480
24500
|
*/
|
|
24481
24501
|
function PicklistValuesRepresentationKeyBuilderFromType(luvio, object) {
|
|
24482
24502
|
const id = object.url.substring(object.url.indexOf('/ui-api'));
|
|
@@ -24786,7 +24806,7 @@ function ingestError$i(luvio, params, error, snapshotRefresh) {
|
|
|
24786
24806
|
function createResourceRequest$z(config) {
|
|
24787
24807
|
const headers = {};
|
|
24788
24808
|
return {
|
|
24789
|
-
baseUri: '/services/data/
|
|
24809
|
+
baseUri: '/services/data/v64.0',
|
|
24790
24810
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '',
|
|
24791
24811
|
method: 'get',
|
|
24792
24812
|
body: null,
|
|
@@ -24891,7 +24911,7 @@ function getResponseCacheKeys$u(storeKeyMap, luvio, resourceParams, response) {
|
|
|
24891
24911
|
function createResourceRequest$y(config) {
|
|
24892
24912
|
const headers = {};
|
|
24893
24913
|
return {
|
|
24894
|
-
baseUri: '/services/data/
|
|
24914
|
+
baseUri: '/services/data/v64.0',
|
|
24895
24915
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '/' + config.urlParams.fieldApiName + '',
|
|
24896
24916
|
method: 'get',
|
|
24897
24917
|
body: null,
|
|
@@ -25104,7 +25124,7 @@ function ingestError$h(luvio, params, error, snapshotRefresh) {
|
|
|
25104
25124
|
function createResourceRequest$x(config) {
|
|
25105
25125
|
const headers = {};
|
|
25106
25126
|
return {
|
|
25107
|
-
baseUri: '/services/data/
|
|
25127
|
+
baseUri: '/services/data/v64.0',
|
|
25108
25128
|
basePath: '/ui-api/path/layout/' + config.urlParams.objectApiName + '',
|
|
25109
25129
|
method: 'get',
|
|
25110
25130
|
body: null,
|
|
@@ -25430,7 +25450,7 @@ function ingestError$g(luvio, params, error, snapshotRefresh) {
|
|
|
25430
25450
|
function createResourceRequest$w(config) {
|
|
25431
25451
|
const headers = {};
|
|
25432
25452
|
return {
|
|
25433
|
-
baseUri: '/services/data/
|
|
25453
|
+
baseUri: '/services/data/v64.0',
|
|
25434
25454
|
basePath: '/ui-api/predupe',
|
|
25435
25455
|
method: 'post',
|
|
25436
25456
|
body: config.body,
|
|
@@ -26649,7 +26669,7 @@ function ingestError$f(luvio, params, error, snapshotRefresh) {
|
|
|
26649
26669
|
function createResourceRequest$v(config) {
|
|
26650
26670
|
const headers = {};
|
|
26651
26671
|
return {
|
|
26652
|
-
baseUri: '/services/data/
|
|
26672
|
+
baseUri: '/services/data/v64.0',
|
|
26653
26673
|
basePath: '/ui-api/record-avatars/batch/' + config.urlParams.recordIds + '',
|
|
26654
26674
|
method: 'get',
|
|
26655
26675
|
body: null,
|
|
@@ -27514,7 +27534,7 @@ function ingestError$e(luvio, params, error, snapshotRefresh) {
|
|
|
27514
27534
|
function createResourceRequest$u(config) {
|
|
27515
27535
|
const headers = {};
|
|
27516
27536
|
return {
|
|
27517
|
-
baseUri: '/services/data/
|
|
27537
|
+
baseUri: '/services/data/v64.0',
|
|
27518
27538
|
basePath: '/ui-api/related-list-count/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
27519
27539
|
method: 'get',
|
|
27520
27540
|
body: null,
|
|
@@ -27779,7 +27799,7 @@ function ingestError$d(luvio, params, error, snapshotRefresh) {
|
|
|
27779
27799
|
function createResourceRequest$t(config) {
|
|
27780
27800
|
const headers = {};
|
|
27781
27801
|
return {
|
|
27782
|
-
baseUri: '/services/data/
|
|
27802
|
+
baseUri: '/services/data/v64.0',
|
|
27783
27803
|
basePath: '/ui-api/related-list-count/batch/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListNames + '',
|
|
27784
27804
|
method: 'get',
|
|
27785
27805
|
body: null,
|
|
@@ -28473,7 +28493,7 @@ function ingestError$c(luvio, params, error, snapshotRefresh) {
|
|
|
28473
28493
|
function createResourceRequest$s(config) {
|
|
28474
28494
|
const headers = {};
|
|
28475
28495
|
return {
|
|
28476
|
-
baseUri: '/services/data/
|
|
28496
|
+
baseUri: '/services/data/v64.0',
|
|
28477
28497
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
28478
28498
|
method: 'get',
|
|
28479
28499
|
body: null,
|
|
@@ -28743,7 +28763,7 @@ function ingestError$b(luvio, params, error, snapshotRefresh) {
|
|
|
28743
28763
|
function createResourceRequest$r(config) {
|
|
28744
28764
|
const headers = {};
|
|
28745
28765
|
return {
|
|
28746
|
-
baseUri: '/services/data/
|
|
28766
|
+
baseUri: '/services/data/v64.0',
|
|
28747
28767
|
basePath: '/ui-api/related-list-info/batch/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListNames + '',
|
|
28748
28768
|
method: 'get',
|
|
28749
28769
|
body: null,
|
|
@@ -29137,7 +29157,7 @@ function ingestError$a(luvio, params, error, snapshotRefresh) {
|
|
|
29137
29157
|
function createResourceRequest$q(config) {
|
|
29138
29158
|
const headers = {};
|
|
29139
29159
|
return {
|
|
29140
|
-
baseUri: '/services/data/
|
|
29160
|
+
baseUri: '/services/data/v64.0',
|
|
29141
29161
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '',
|
|
29142
29162
|
method: 'get',
|
|
29143
29163
|
body: null,
|
|
@@ -29391,7 +29411,7 @@ function ingestSuccess$f(luvio, resourceParams, response) {
|
|
|
29391
29411
|
function createResourceRequest$p(config) {
|
|
29392
29412
|
const headers = {};
|
|
29393
29413
|
return {
|
|
29394
|
-
baseUri: '/services/data/
|
|
29414
|
+
baseUri: '/services/data/v64.0',
|
|
29395
29415
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
29396
29416
|
method: 'patch',
|
|
29397
29417
|
body: config.body,
|
|
@@ -29631,7 +29651,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
|
|
|
29631
29651
|
function createResourceRequest$o(config) {
|
|
29632
29652
|
const headers = {};
|
|
29633
29653
|
return {
|
|
29634
|
-
baseUri: '/services/data/
|
|
29654
|
+
baseUri: '/services/data/v64.0',
|
|
29635
29655
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
29636
29656
|
method: 'get',
|
|
29637
29657
|
body: null,
|
|
@@ -29893,7 +29913,7 @@ function ingestError$8(luvio, params, error, snapshotRefresh) {
|
|
|
29893
29913
|
function createResourceRequest$n(config) {
|
|
29894
29914
|
const headers = {};
|
|
29895
29915
|
return {
|
|
29896
|
-
baseUri: '/services/data/
|
|
29916
|
+
baseUri: '/services/data/v64.0',
|
|
29897
29917
|
basePath: '/ui-api/related-list-preferences/batch/' + config.urlParams.preferencesIds + '',
|
|
29898
29918
|
method: 'get',
|
|
29899
29919
|
body: null,
|
|
@@ -30102,7 +30122,7 @@ function ingestSuccess$c(luvio, resourceParams, response) {
|
|
|
30102
30122
|
function createResourceRequest$m(config) {
|
|
30103
30123
|
const headers = {};
|
|
30104
30124
|
return {
|
|
30105
|
-
baseUri: '/services/data/
|
|
30125
|
+
baseUri: '/services/data/v64.0',
|
|
30106
30126
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
30107
30127
|
method: 'patch',
|
|
30108
30128
|
body: config.body,
|
|
@@ -31137,7 +31157,7 @@ function ingestError$7(luvio, params, error, snapshotRefresh) {
|
|
|
31137
31157
|
function createResourceRequest$l(config) {
|
|
31138
31158
|
const headers = {};
|
|
31139
31159
|
return {
|
|
31140
|
-
baseUri: '/services/data/
|
|
31160
|
+
baseUri: '/services/data/v64.0',
|
|
31141
31161
|
basePath: '/ui-api/related-list-records/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
31142
31162
|
method: 'post',
|
|
31143
31163
|
body: config.body,
|
|
@@ -31422,7 +31442,7 @@ function ingestError$6(luvio, params, error, snapshotRefresh) {
|
|
|
31422
31442
|
function createResourceRequest$k(config) {
|
|
31423
31443
|
const headers = {};
|
|
31424
31444
|
return {
|
|
31425
|
-
baseUri: '/services/data/
|
|
31445
|
+
baseUri: '/services/data/v64.0',
|
|
31426
31446
|
basePath: '/ui-api/related-list-records/batch/' + config.urlParams.parentRecordId + '',
|
|
31427
31447
|
method: 'post',
|
|
31428
31448
|
body: config.body,
|
|
@@ -31964,7 +31984,7 @@ function ingestError$5(luvio, params, error, snapshotRefresh) {
|
|
|
31964
31984
|
function createResourceRequest$j(config) {
|
|
31965
31985
|
const headers = {};
|
|
31966
31986
|
return {
|
|
31967
|
-
baseUri: '/services/data/
|
|
31987
|
+
baseUri: '/services/data/v64.0',
|
|
31968
31988
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters',
|
|
31969
31989
|
method: 'get',
|
|
31970
31990
|
body: null,
|
|
@@ -32220,7 +32240,7 @@ function ingestError$4(luvio, params, error, snapshotRefresh) {
|
|
|
32220
32240
|
function createResourceRequest$i(config) {
|
|
32221
32241
|
const headers = {};
|
|
32222
32242
|
return {
|
|
32223
|
-
baseUri: '/services/data/
|
|
32243
|
+
baseUri: '/services/data/v64.0',
|
|
32224
32244
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters/' + config.urlParams.filterApiName + '/options',
|
|
32225
32245
|
method: 'get',
|
|
32226
32246
|
body: null,
|
|
@@ -32638,7 +32658,7 @@ function ingestError$3(luvio, params, error, snapshotRefresh) {
|
|
|
32638
32658
|
function createResourceRequest$h(config) {
|
|
32639
32659
|
const headers = {};
|
|
32640
32660
|
return {
|
|
32641
|
-
baseUri: '/services/data/
|
|
32661
|
+
baseUri: '/services/data/v64.0',
|
|
32642
32662
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/lookup/' + config.urlParams.fieldApiName + '',
|
|
32643
32663
|
method: 'get',
|
|
32644
32664
|
body: null,
|
|
@@ -33647,7 +33667,7 @@ function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
|
33647
33667
|
function createResourceRequest$g(config) {
|
|
33648
33668
|
const headers = {};
|
|
33649
33669
|
return {
|
|
33650
|
-
baseUri: '/services/data/
|
|
33670
|
+
baseUri: '/services/data/v64.0',
|
|
33651
33671
|
basePath: '/ui-api/search/results',
|
|
33652
33672
|
method: 'post',
|
|
33653
33673
|
body: config.body,
|
|
@@ -33921,7 +33941,7 @@ function ingestError$1(luvio, params, error, snapshotRefresh) {
|
|
|
33921
33941
|
function createResourceRequest$f(config) {
|
|
33922
33942
|
const headers = {};
|
|
33923
33943
|
return {
|
|
33924
|
-
baseUri: '/services/data/
|
|
33944
|
+
baseUri: '/services/data/v64.0',
|
|
33925
33945
|
basePath: '/ui-api/search/results/keyword',
|
|
33926
33946
|
method: 'post',
|
|
33927
33947
|
body: config.body,
|
|
@@ -34167,7 +34187,7 @@ function ingestSuccess$4(luvio, response) {
|
|
|
34167
34187
|
function createResourceRequest$e(config) {
|
|
34168
34188
|
const headers = {};
|
|
34169
34189
|
return {
|
|
34170
|
-
baseUri: '/services/data/
|
|
34190
|
+
baseUri: '/services/data/v64.0',
|
|
34171
34191
|
basePath: '/ui-api/records/batch',
|
|
34172
34192
|
method: 'post',
|
|
34173
34193
|
body: config.body,
|
|
@@ -34289,7 +34309,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
|
|
|
34289
34309
|
function createResourceRequest$d(config) {
|
|
34290
34310
|
const headers = {};
|
|
34291
34311
|
return {
|
|
34292
|
-
baseUri: '/services/data/
|
|
34312
|
+
baseUri: '/services/data/v64.0',
|
|
34293
34313
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
34294
34314
|
method: 'patch',
|
|
34295
34315
|
body: config.body,
|
|
@@ -34353,7 +34373,7 @@ function ingestSuccess$2(luvio, resourceParams, response) {
|
|
|
34353
34373
|
function createResourceRequest$c(config) {
|
|
34354
34374
|
const headers = {};
|
|
34355
34375
|
return {
|
|
34356
|
-
baseUri: '/services/data/
|
|
34376
|
+
baseUri: '/services/data/v64.0',
|
|
34357
34377
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
34358
34378
|
method: 'post',
|
|
34359
34379
|
body: config.body,
|
|
@@ -34422,7 +34442,7 @@ const factory$c = (luvio) => {
|
|
|
34422
34442
|
function createResourceRequest$b(config) {
|
|
34423
34443
|
const headers = {};
|
|
34424
34444
|
return {
|
|
34425
|
-
baseUri: '/services/data/
|
|
34445
|
+
baseUri: '/services/data/v64.0',
|
|
34426
34446
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
34427
34447
|
method: 'patch',
|
|
34428
34448
|
body: config.body,
|
|
@@ -34903,7 +34923,7 @@ function getResponseCacheKeys$7(storeKeyMap, luvio, resourceParams, response) {
|
|
|
34903
34923
|
function createResourceRequest$a(config) {
|
|
34904
34924
|
const headers = {};
|
|
34905
34925
|
return {
|
|
34906
|
-
baseUri: '/services/data/
|
|
34926
|
+
baseUri: '/services/data/v64.0',
|
|
34907
34927
|
basePath: '/ui-api/lookups/' + config.urlParams.objectApiName + '/' + config.urlParams.fieldApiName + '',
|
|
34908
34928
|
method: 'post',
|
|
34909
34929
|
body: config.body,
|
|
@@ -35145,7 +35165,7 @@ const factory$9 = (luvio) => {
|
|
|
35145
35165
|
function createResourceRequest$9(config) {
|
|
35146
35166
|
const headers = {};
|
|
35147
35167
|
return {
|
|
35148
|
-
baseUri: '/services/data/
|
|
35168
|
+
baseUri: '/services/data/v64.0',
|
|
35149
35169
|
basePath: '/ui-api/record-avatars/' + config.urlParams.recordId + '/association',
|
|
35150
35170
|
method: 'post',
|
|
35151
35171
|
body: config.body,
|
|
@@ -35754,7 +35774,7 @@ function getResponseCacheKeys$6(storeKeyMap, luvio, resourceParams, response) {
|
|
|
35754
35774
|
function createResourceRequest$8(config) {
|
|
35755
35775
|
const headers = {};
|
|
35756
35776
|
return {
|
|
35757
|
-
baseUri: '/services/data/
|
|
35777
|
+
baseUri: '/services/data/v64.0',
|
|
35758
35778
|
basePath: '/ui-api/record-defaults/create/' + config.urlParams.objectApiName + '',
|
|
35759
35779
|
method: 'get',
|
|
35760
35780
|
body: null,
|
|
@@ -36396,7 +36416,7 @@ function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
|
|
|
36396
36416
|
function createResourceRequest$7(config) {
|
|
36397
36417
|
const headers = {};
|
|
36398
36418
|
return {
|
|
36399
|
-
baseUri: '/services/data/
|
|
36419
|
+
baseUri: '/services/data/v64.0',
|
|
36400
36420
|
basePath: '/ui-api/record-defaults/template/clone/' + config.urlParams.recordId + '',
|
|
36401
36421
|
method: 'get',
|
|
36402
36422
|
body: null,
|
|
@@ -37027,7 +37047,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
37027
37047
|
function createResourceRequest$6(config) {
|
|
37028
37048
|
const headers = {};
|
|
37029
37049
|
return {
|
|
37030
|
-
baseUri: '/services/data/
|
|
37050
|
+
baseUri: '/services/data/v64.0',
|
|
37031
37051
|
basePath: '/ui-api/record-defaults/template/create/' + config.urlParams.objectApiName + '',
|
|
37032
37052
|
method: 'get',
|
|
37033
37053
|
body: null,
|
|
@@ -37240,7 +37260,7 @@ function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
|
37240
37260
|
function createResourceRequest$5(config) {
|
|
37241
37261
|
const headers = {};
|
|
37242
37262
|
return {
|
|
37243
|
-
baseUri: '/services/data/
|
|
37263
|
+
baseUri: '/services/data/v64.0',
|
|
37244
37264
|
basePath: '/ui-api/records',
|
|
37245
37265
|
method: 'post',
|
|
37246
37266
|
body: config.body,
|
|
@@ -37346,7 +37366,7 @@ function evictSuccess(luvio, resourceParams) {
|
|
|
37346
37366
|
function createResourceRequest$3(config) {
|
|
37347
37367
|
const headers = {};
|
|
37348
37368
|
return {
|
|
37349
|
-
baseUri: '/services/data/
|
|
37369
|
+
baseUri: '/services/data/v64.0',
|
|
37350
37370
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
37351
37371
|
method: 'delete',
|
|
37352
37372
|
body: null,
|
|
@@ -37436,7 +37456,7 @@ function createResourceRequest$2(config) {
|
|
|
37436
37456
|
headers['If-Unmodified-Since'] = header_ifUnmodifiedSince;
|
|
37437
37457
|
}
|
|
37438
37458
|
return {
|
|
37439
|
-
baseUri: '/services/data/
|
|
37459
|
+
baseUri: '/services/data/v64.0',
|
|
37440
37460
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
37441
37461
|
method: 'patch',
|
|
37442
37462
|
body: config.body,
|
|
@@ -37763,7 +37783,7 @@ function createResourceParams$1(config) {
|
|
|
37763
37783
|
function createResourceRequest$1(config) {
|
|
37764
37784
|
const headers = {};
|
|
37765
37785
|
return {
|
|
37766
|
-
baseUri: '/services/data/
|
|
37786
|
+
baseUri: '/services/data/v64.0',
|
|
37767
37787
|
basePath: '/ui-api/records/content-documents/' +
|
|
37768
37788
|
config.urlParams.contentDocumentId +
|
|
37769
37789
|
'/content-versions',
|
|
@@ -37881,7 +37901,7 @@ function createResourceParams(config) {
|
|
|
37881
37901
|
function createResourceRequest(config) {
|
|
37882
37902
|
const headers = {};
|
|
37883
37903
|
return {
|
|
37884
|
-
baseUri: '/services/data/
|
|
37904
|
+
baseUri: '/services/data/v64.0',
|
|
37885
37905
|
basePath: '/ui-api/records/content-documents/content-versions',
|
|
37886
37906
|
method: 'post',
|
|
37887
37907
|
body: config.body,
|
|
@@ -38361,7 +38381,7 @@ function bindExportsTo(luvio) {
|
|
|
38361
38381
|
const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecordsBatch', configurationForEnvironmentFactoryOverrides.getRelatedListRecordsBatchAdapterFactory() ?? getRelatedListRecordsBatchAdapterFactory), luvio, 'getRelatedListRecordsBatch'), getRelatedListRecordsBatchMetadata);
|
|
38362
38382
|
const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsActions', getRelatedListsActionsAdapterFactory), luvio, 'getRelatedListsActions'), getRelatedListsActionsMetadata);
|
|
38363
38383
|
const getRelatedListsCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsCount', getRelatedListsCountAdapterFactory), getRelatedListsCountMetadata);
|
|
38364
|
-
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsInfo', getRelatedListsInfoAdapterFactory), getRelatedListsInfoMetadata);
|
|
38384
|
+
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(createRelatedListPlusAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsInfo', getRelatedListsInfoAdapterFactory), luvio, 'getRelatedListsInfo'), getRelatedListsInfoMetadata);
|
|
38365
38385
|
const getSearchFilterMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterMetadata', getSearchFilterMetadataAdapterFactory), getSearchFilterMetadataMetadata);
|
|
38366
38386
|
const getSearchFilterOptions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterOptions', getSearchFilterOptionsAdapterFactory), getSearchFilterOptionsMetadata);
|
|
38367
38387
|
const getSearchResults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchResults', configurationForEnvironmentFactoryOverrides.getSearchResultsAdapterFactory() ?? getSearchResultsAdapterFactory), getSearchResultsMetadata);
|
|
@@ -38704,5 +38724,5 @@ withDefaultLuvio((luvio) => {
|
|
|
38704
38724
|
notifyAllListInfoSummaryUpdateAvailable = throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
38705
38725
|
});
|
|
38706
38726
|
|
|
38707
|
-
export { API_NAMESPACE, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$J as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$O as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$V as RecordRepresentationRepresentationType, TTL$z as RecordRepresentationTTL, RepresentationType$V as RecordRepresentationType, VERSION$1f as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord, createRelatedListAdapterWithPrediction, deleteListInfo, deleteRecord, executeBatchRecordOperations, extractRecordIdFromStoreKey, getActionOverrides, getActionOverrides_imperative, getAllApps, getAllApps_imperative, getAppDetails, getAppDetails_imperative, getDuplicateConfiguration, getDuplicateConfiguration_imperative, getDuplicates, getDuplicates_imperative, getFlexipageFormulaOverrides, getFlexipageFormulaOverrides_imperative, getGlobalActions, getGlobalActions_imperative, getKeywordSearchResults, getKeywordSearchResults_imperative, getLayout, getLayoutUserState, getLayoutUserState_imperative, getLayout_imperative, getListInfoByName, getListInfoByNameAdapterFactory, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListInfosByObjectName, getListInfosByObjectNameAdapterFactory, getListInfosByObjectName_imperative, getListObjectInfo, getListObjectInfoAdapterFactory, getListObjectInfo_imperative, getListPreferences, getListPreferences_imperative, getListRecordsByName, factory$a as getListRecordsByNameAdapterFactory, getListRecordsByName_imperative, getListUi, getListUi_imperative, getLookupActions, getLookupActions_imperative, getLookupMetadata, getLookupMetadata_imperative, getLookupRecords, getLookupRecords_imperative, getNavItems, getNavItems_imperative, getObjectCreateActions, getObjectCreateActions_imperative, getObjectInfo, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfo_imperative, getObjectInfos, getObjectInfosAdapterFactory, getObjectInfos_imperative, getPathLayout, getPathLayout_imperative, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionInfo, getQuickActionInfo_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActionsAdapterFactory, getRecordActions_imperative, factory$f as getRecordAdapterFactory, getRecordAvatars, getRecordAvatarsAdapterFactory, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoAdapterFactory, getRelatedListInfoBatch, getRelatedListInfoBatchAdapterFactory, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatch, getRelatedListRecordsBatchAdapterFactory, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActionsAdapterFactory, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$X as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$H as ingestObjectInfo, ingest$B as ingestQuickActionExecutionRepresentation, ingest$O as ingestRecord, instrument, isStoreKeyRecordViewEntity, isSupportedEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$D as keyBuilderFromTypeRecordRepresentation, keyBuilder$1Y as keyBuilderObjectInfo, keyBuilder$1R as keyBuilderQuickActionExecutionRepresentation, keyBuilder$29 as keyBuilderRecord, notifyAllListInfoSummaryUpdateAvailable, notifyAllListRecordUpdateAvailable, notifyListInfoSummaryUpdateAvailable, notifyListInfoUpdateAvailable, notifyListRecordCollectionUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyQuickActionDefaultsUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, registerPrefetcher, updateLayoutUserState, updateListInfoByName, updateListPreferences, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
|
|
38708
|
-
// version: 1.
|
|
38727
|
+
export { API_NAMESPACE, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$J as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$O as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$V as RecordRepresentationRepresentationType, TTL$z as RecordRepresentationTTL, RepresentationType$V as RecordRepresentationType, VERSION$1f as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord, createRelatedListAdapterWithPrediction, createRelatedListPlusAdapterWithPrediction, deleteListInfo, deleteRecord, executeBatchRecordOperations, extractRecordIdFromStoreKey, getActionOverrides, getActionOverrides_imperative, getAllApps, getAllApps_imperative, getAppDetails, getAppDetails_imperative, getDuplicateConfiguration, getDuplicateConfiguration_imperative, getDuplicates, getDuplicates_imperative, getFlexipageFormulaOverrides, getFlexipageFormulaOverrides_imperative, getGlobalActions, getGlobalActions_imperative, getKeywordSearchResults, getKeywordSearchResults_imperative, getLayout, getLayoutUserState, getLayoutUserState_imperative, getLayout_imperative, getListInfoByName, getListInfoByNameAdapterFactory, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListInfosByObjectName, getListInfosByObjectNameAdapterFactory, getListInfosByObjectName_imperative, getListObjectInfo, getListObjectInfoAdapterFactory, getListObjectInfo_imperative, getListPreferences, getListPreferences_imperative, getListRecordsByName, factory$a as getListRecordsByNameAdapterFactory, getListRecordsByName_imperative, getListUi, getListUi_imperative, getLookupActions, getLookupActions_imperative, getLookupMetadata, getLookupMetadata_imperative, getLookupRecords, getLookupRecords_imperative, getNavItems, getNavItems_imperative, getObjectCreateActions, getObjectCreateActions_imperative, getObjectInfo, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfo_imperative, getObjectInfos, getObjectInfosAdapterFactory, getObjectInfos_imperative, getPathLayout, getPathLayout_imperative, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionInfo, getQuickActionInfo_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActionsAdapterFactory, getRecordActions_imperative, factory$f as getRecordAdapterFactory, getRecordAvatars, getRecordAvatarsAdapterFactory, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoAdapterFactory, getRelatedListInfoBatch, getRelatedListInfoBatchAdapterFactory, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatch, getRelatedListRecordsBatchAdapterFactory, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActionsAdapterFactory, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfoAdapterFactory, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$X as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$H as ingestObjectInfo, ingest$B as ingestQuickActionExecutionRepresentation, ingest$O as ingestRecord, instrument, isStoreKeyRecordViewEntity, isSupportedEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$D as keyBuilderFromTypeRecordRepresentation, keyBuilder$1Y as keyBuilderObjectInfo, keyBuilder$1R as keyBuilderQuickActionExecutionRepresentation, keyBuilder$29 as keyBuilderRecord, notifyAllListInfoSummaryUpdateAvailable, notifyAllListRecordUpdateAvailable, notifyListInfoSummaryUpdateAvailable, notifyListInfoUpdateAvailable, notifyListRecordCollectionUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyQuickActionDefaultsUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, registerPrefetcher, updateLayoutUserState, updateListInfoByName, updateListPreferences, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
|
|
38728
|
+
// version: 1.336.0-1b35a3afd9
|