@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
|
@@ -70,6 +70,10 @@ let oneStoreGetObjectInfosAdapter = undefined;
|
|
|
70
70
|
* Determines when to include PDL strategies for Related Lists
|
|
71
71
|
*/
|
|
72
72
|
let relatedListsPredictionsEnabled = false;
|
|
73
|
+
/**
|
|
74
|
+
* Determines whether to include additional PDL strategies for Related Lists
|
|
75
|
+
*/
|
|
76
|
+
let relatedListsPlusPredictionsEnabled = false;
|
|
73
77
|
/**
|
|
74
78
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
75
79
|
* Configuration for one store enabled REST adapters only.
|
|
@@ -169,6 +173,12 @@ const configurationForRestAdapters = {
|
|
|
169
173
|
areRelatedListsPredictionsEnabled: function () {
|
|
170
174
|
return relatedListsPredictionsEnabled === true;
|
|
171
175
|
},
|
|
176
|
+
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
177
|
+
relatedListsPlusPredictionsEnabled = f;
|
|
178
|
+
},
|
|
179
|
+
areRelatedListsPlusPredictionsEnabled: function () {
|
|
180
|
+
return relatedListsPlusPredictionsEnabled === true;
|
|
181
|
+
},
|
|
172
182
|
// createRecord
|
|
173
183
|
getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.getAdapter,
|
|
174
184
|
setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.setAdapter,
|
|
@@ -312,6 +322,16 @@ function createRelatedListAdapterWithPrediction(adapter, luvio, name) {
|
|
|
312
322
|
};
|
|
313
323
|
}
|
|
314
324
|
}
|
|
325
|
+
function createRelatedListPlusAdapterWithPrediction(adapter, luvio, name) {
|
|
326
|
+
if (configurationForRestAdapters.areRelatedListsPlusPredictionsEnabled() /* gate is open */) {
|
|
327
|
+
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
328
|
+
}
|
|
329
|
+
else {
|
|
330
|
+
return (config, requestContext) => {
|
|
331
|
+
return adapter(config, requestContext);
|
|
332
|
+
};
|
|
333
|
+
}
|
|
334
|
+
}
|
|
315
335
|
|
|
316
336
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
317
337
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -5989,7 +6009,7 @@ function getResponseCacheKeys$17(storeKeyMap, luvio, resourceParams, response) {
|
|
|
5989
6009
|
function createResourceRequest$1g(config) {
|
|
5990
6010
|
const headers = {};
|
|
5991
6011
|
return {
|
|
5992
|
-
baseUri: '/services/data/
|
|
6012
|
+
baseUri: '/services/data/v64.0',
|
|
5993
6013
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
5994
6014
|
method: 'get',
|
|
5995
6015
|
body: null,
|
|
@@ -6431,7 +6451,7 @@ function ingestError$Q(luvio, params, error, snapshotRefresh) {
|
|
|
6431
6451
|
function createResourceRequest$1f(config) {
|
|
6432
6452
|
const headers = {};
|
|
6433
6453
|
return {
|
|
6434
|
-
baseUri: '/services/data/
|
|
6454
|
+
baseUri: '/services/data/v64.0',
|
|
6435
6455
|
basePath: '/ui-api/records/batch/' + config.urlParams.recordIds + '',
|
|
6436
6456
|
method: 'get',
|
|
6437
6457
|
body: null,
|
|
@@ -7760,7 +7780,7 @@ function ingestError$P(luvio, params, error, snapshotRefresh) {
|
|
|
7760
7780
|
function createResourceRequest$1e(config) {
|
|
7761
7781
|
const headers = {};
|
|
7762
7782
|
return {
|
|
7763
|
-
baseUri: '/services/data/
|
|
7783
|
+
baseUri: '/services/data/v64.0',
|
|
7764
7784
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
7765
7785
|
method: 'get',
|
|
7766
7786
|
body: null,
|
|
@@ -7910,7 +7930,7 @@ function ingestError$O(luvio, params, error, snapshotRefresh) {
|
|
|
7910
7930
|
function createResourceRequest$1d(config) {
|
|
7911
7931
|
const headers = {};
|
|
7912
7932
|
return {
|
|
7913
|
-
baseUri: '/services/data/
|
|
7933
|
+
baseUri: '/services/data/v64.0',
|
|
7914
7934
|
basePath: '/ui-api/list-ui/' + config.urlParams.listViewId + '',
|
|
7915
7935
|
method: 'get',
|
|
7916
7936
|
body: null,
|
|
@@ -8019,7 +8039,7 @@ const getListUiByListViewIdAdapterFactory = (luvio) => function UiApi__getListUi
|
|
|
8019
8039
|
function createResourceRequest$1c(config) {
|
|
8020
8040
|
const headers = {};
|
|
8021
8041
|
return {
|
|
8022
|
-
baseUri: '/services/data/
|
|
8042
|
+
baseUri: '/services/data/v64.0',
|
|
8023
8043
|
basePath: '/ui-api/list-records/' + config.urlParams.listViewId + '',
|
|
8024
8044
|
method: 'get',
|
|
8025
8045
|
body: null,
|
|
@@ -9003,7 +9023,7 @@ function ingestError$N(luvio, params, error, snapshotRefresh) {
|
|
|
9003
9023
|
function createResourceRequest$1b(config) {
|
|
9004
9024
|
const headers = {};
|
|
9005
9025
|
return {
|
|
9006
|
-
baseUri: '/services/data/
|
|
9026
|
+
baseUri: '/services/data/v64.0',
|
|
9007
9027
|
basePath: '/ui-api/list-records/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
9008
9028
|
method: 'post',
|
|
9009
9029
|
body: config.body,
|
|
@@ -9739,7 +9759,7 @@ function ingestError$M(luvio, params, error, snapshotRefresh) {
|
|
|
9739
9759
|
function createResourceRequest$1a(config) {
|
|
9740
9760
|
const headers = {};
|
|
9741
9761
|
return {
|
|
9742
|
-
baseUri: '/services/data/
|
|
9762
|
+
baseUri: '/services/data/v64.0',
|
|
9743
9763
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '',
|
|
9744
9764
|
method: 'get',
|
|
9745
9765
|
body: null,
|
|
@@ -9937,7 +9957,7 @@ function keyBuilder$3k(luvio, params) {
|
|
|
9937
9957
|
function createResourceRequest$19(config) {
|
|
9938
9958
|
const headers = {};
|
|
9939
9959
|
return {
|
|
9940
|
-
baseUri: '/services/data/
|
|
9960
|
+
baseUri: '/services/data/v64.0',
|
|
9941
9961
|
basePath: '/ui-api/mru-list-ui/' + config.urlParams.objectApiName + '',
|
|
9942
9962
|
method: 'get',
|
|
9943
9963
|
body: null,
|
|
@@ -9982,7 +10002,7 @@ function validateAdapterConfig$18(untrustedConfig, configPropertyNames) {
|
|
|
9982
10002
|
function createResourceRequest$18(config) {
|
|
9983
10003
|
const headers = {};
|
|
9984
10004
|
return {
|
|
9985
|
-
baseUri: '/services/data/
|
|
10005
|
+
baseUri: '/services/data/v64.0',
|
|
9986
10006
|
basePath: '/ui-api/mru-list-records/' + config.urlParams.objectApiName + '',
|
|
9987
10007
|
method: 'get',
|
|
9988
10008
|
body: null,
|
|
@@ -11787,7 +11807,7 @@ function ingestError$L(luvio, params, error, snapshotRefresh) {
|
|
|
11787
11807
|
function createResourceRequest$17(config) {
|
|
11788
11808
|
const headers = {};
|
|
11789
11809
|
return {
|
|
11790
|
-
baseUri: '/services/data/
|
|
11810
|
+
baseUri: '/services/data/v64.0',
|
|
11791
11811
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '',
|
|
11792
11812
|
method: 'get',
|
|
11793
11813
|
body: null,
|
|
@@ -12845,7 +12865,7 @@ const ingest$22 = function RecordUiRepresentationIngest(input, path, luvio, stor
|
|
|
12845
12865
|
function createResourceRequest$16(config) {
|
|
12846
12866
|
const headers = {};
|
|
12847
12867
|
return {
|
|
12848
|
-
baseUri: '/services/data/
|
|
12868
|
+
baseUri: '/services/data/v64.0',
|
|
12849
12869
|
basePath: '/ui-api/record-ui/' + config.urlParams.recordIds + '',
|
|
12850
12870
|
method: 'get',
|
|
12851
12871
|
body: null,
|
|
@@ -15520,7 +15540,7 @@ function ingestError$K(luvio, params, error, snapshotRefresh) {
|
|
|
15520
15540
|
function createResourceRequest$15(config) {
|
|
15521
15541
|
const headers = {};
|
|
15522
15542
|
return {
|
|
15523
|
-
baseUri: '/services/data/
|
|
15543
|
+
baseUri: '/services/data/v64.0',
|
|
15524
15544
|
basePath: '/ui-api/actions/global',
|
|
15525
15545
|
method: 'get',
|
|
15526
15546
|
body: null,
|
|
@@ -15754,7 +15774,7 @@ function ingestError$J(luvio, params, error, snapshotRefresh) {
|
|
|
15754
15774
|
function createResourceRequest$14(config) {
|
|
15755
15775
|
const headers = {};
|
|
15756
15776
|
return {
|
|
15757
|
-
baseUri: '/services/data/
|
|
15777
|
+
baseUri: '/services/data/v64.0',
|
|
15758
15778
|
basePath: '/ui-api/actions/layout/' + config.urlParams.actionApiName + '',
|
|
15759
15779
|
method: 'get',
|
|
15760
15780
|
body: null,
|
|
@@ -15926,7 +15946,7 @@ function ingestError$I(luvio, params, error, snapshotRefresh) {
|
|
|
15926
15946
|
function createResourceRequest$13(config) {
|
|
15927
15947
|
const headers = {};
|
|
15928
15948
|
return {
|
|
15929
|
-
baseUri: '/services/data/
|
|
15949
|
+
baseUri: '/services/data/v64.0',
|
|
15930
15950
|
basePath: '/ui-api/actions/lookup/' + config.urlParams.objectApiNames + '',
|
|
15931
15951
|
method: 'get',
|
|
15932
15952
|
body: null,
|
|
@@ -16068,7 +16088,7 @@ function ingestError$H(luvio, params, error, snapshotRefresh) {
|
|
|
16068
16088
|
function createResourceRequest$12(config) {
|
|
16069
16089
|
const headers = {};
|
|
16070
16090
|
return {
|
|
16071
|
-
baseUri: '/services/data/
|
|
16091
|
+
baseUri: '/services/data/v64.0',
|
|
16072
16092
|
basePath: '/ui-api/actions/object/' + config.urlParams.objectApiName + '/record-create',
|
|
16073
16093
|
method: 'get',
|
|
16074
16094
|
body: null,
|
|
@@ -16258,7 +16278,7 @@ function ingestError$G(luvio, params, error, snapshotRefresh) {
|
|
|
16258
16278
|
function createResourceRequest$11(config) {
|
|
16259
16279
|
const headers = {};
|
|
16260
16280
|
return {
|
|
16261
|
-
baseUri: '/services/data/
|
|
16281
|
+
baseUri: '/services/data/v64.0',
|
|
16262
16282
|
basePath: '/ui-api/actions/overrides/' + config.urlParams.objectApiName + '',
|
|
16263
16283
|
method: 'get',
|
|
16264
16284
|
body: null,
|
|
@@ -16522,7 +16542,7 @@ function ingestError$F(luvio, params, error, snapshotRefresh) {
|
|
|
16522
16542
|
function createResourceRequest$10(config) {
|
|
16523
16543
|
const headers = {};
|
|
16524
16544
|
return {
|
|
16525
|
-
baseUri: '/services/data/
|
|
16545
|
+
baseUri: '/services/data/v64.0',
|
|
16526
16546
|
basePath: '/ui-api/actions/formula-activation/' + config.urlParams.actionFeature + '',
|
|
16527
16547
|
method: 'get',
|
|
16528
16548
|
body: null,
|
|
@@ -17733,7 +17753,7 @@ function ingestError$E(luvio, params, error, snapshotRefresh) {
|
|
|
17733
17753
|
function createResourceRequest$$(config) {
|
|
17734
17754
|
const headers = {};
|
|
17735
17755
|
return {
|
|
17736
|
-
baseUri: '/services/data/
|
|
17756
|
+
baseUri: '/services/data/v64.0',
|
|
17737
17757
|
basePath: '/ui-api/actions/quick-action-info/' + config.urlParams.actionApiName + '',
|
|
17738
17758
|
method: 'get',
|
|
17739
17759
|
body: null,
|
|
@@ -17944,7 +17964,7 @@ function ingestError$D(luvio, params, error, snapshotRefresh) {
|
|
|
17944
17964
|
function createResourceRequest$_(config) {
|
|
17945
17965
|
const headers = {};
|
|
17946
17966
|
return {
|
|
17947
|
-
baseUri: '/services/data/
|
|
17967
|
+
baseUri: '/services/data/v64.0',
|
|
17948
17968
|
basePath: '/ui-api/actions/record-defaults/' + config.urlParams.actionApiName + '',
|
|
17949
17969
|
method: 'get',
|
|
17950
17970
|
body: null,
|
|
@@ -18113,7 +18133,7 @@ function ingestError$C(luvio, params, error, snapshotRefresh) {
|
|
|
18113
18133
|
function createResourceRequest$Z(config) {
|
|
18114
18134
|
const headers = {};
|
|
18115
18135
|
return {
|
|
18116
|
-
baseUri: '/services/data/
|
|
18136
|
+
baseUri: '/services/data/v64.0',
|
|
18117
18137
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '',
|
|
18118
18138
|
method: 'get',
|
|
18119
18139
|
body: null,
|
|
@@ -18265,7 +18285,7 @@ function ingestError$B(luvio, params, error, snapshotRefresh) {
|
|
|
18265
18285
|
function createResourceRequest$Y(config) {
|
|
18266
18286
|
const headers = {};
|
|
18267
18287
|
return {
|
|
18268
|
-
baseUri: '/services/data/
|
|
18288
|
+
baseUri: '/services/data/v64.0',
|
|
18269
18289
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/record-edit',
|
|
18270
18290
|
method: 'get',
|
|
18271
18291
|
body: null,
|
|
@@ -18477,7 +18497,7 @@ function ingestError$A(luvio, params, error, snapshotRefresh) {
|
|
|
18477
18497
|
function createResourceRequest$X(config) {
|
|
18478
18498
|
const headers = {};
|
|
18479
18499
|
return {
|
|
18480
|
-
baseUri: '/services/data/
|
|
18500
|
+
baseUri: '/services/data/v64.0',
|
|
18481
18501
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/' + config.urlParams.relatedListId + '',
|
|
18482
18502
|
method: 'post',
|
|
18483
18503
|
body: config.body,
|
|
@@ -18762,7 +18782,7 @@ function ingestError$z(luvio, params, error, snapshotRefresh) {
|
|
|
18762
18782
|
function createResourceRequest$W(config) {
|
|
18763
18783
|
const headers = {};
|
|
18764
18784
|
return {
|
|
18765
|
-
baseUri: '/services/data/
|
|
18785
|
+
baseUri: '/services/data/v64.0',
|
|
18766
18786
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/batch',
|
|
18767
18787
|
method: 'post',
|
|
18768
18788
|
body: config.body,
|
|
@@ -19007,7 +19027,7 @@ function ingestError$y(luvio, params, error, snapshotRefresh) {
|
|
|
19007
19027
|
function createResourceRequest$V(config) {
|
|
19008
19028
|
const headers = {};
|
|
19009
19029
|
return {
|
|
19010
|
-
baseUri: '/services/data/
|
|
19030
|
+
baseUri: '/services/data/v64.0',
|
|
19011
19031
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list-record/' + config.urlParams.relatedListRecordIds + '',
|
|
19012
19032
|
method: 'get',
|
|
19013
19033
|
body: null,
|
|
@@ -20264,7 +20284,7 @@ function ingestError$x(luvio, params, error, snapshotRefresh) {
|
|
|
20264
20284
|
function createResourceRequest$U(config) {
|
|
20265
20285
|
const headers = {};
|
|
20266
20286
|
return {
|
|
20267
|
-
baseUri: '/services/data/
|
|
20287
|
+
baseUri: '/services/data/v64.0',
|
|
20268
20288
|
basePath: '/ui-api/apps',
|
|
20269
20289
|
method: 'get',
|
|
20270
20290
|
body: null,
|
|
@@ -20404,7 +20424,7 @@ function ingestError$w(luvio, params, error, snapshotRefresh) {
|
|
|
20404
20424
|
function createResourceRequest$T(config) {
|
|
20405
20425
|
const headers = {};
|
|
20406
20426
|
return {
|
|
20407
|
-
baseUri: '/services/data/
|
|
20427
|
+
baseUri: '/services/data/v64.0',
|
|
20408
20428
|
basePath: '/ui-api/apps/selected',
|
|
20409
20429
|
method: 'get',
|
|
20410
20430
|
body: null,
|
|
@@ -20545,7 +20565,7 @@ function ingestError$v(luvio, params, error, snapshotRefresh) {
|
|
|
20545
20565
|
function createResourceRequest$S(config) {
|
|
20546
20566
|
const headers = {};
|
|
20547
20567
|
return {
|
|
20548
|
-
baseUri: '/services/data/
|
|
20568
|
+
baseUri: '/services/data/v64.0',
|
|
20549
20569
|
basePath: '/ui-api/apps/' + config.urlParams.appId + '',
|
|
20550
20570
|
method: 'get',
|
|
20551
20571
|
body: null,
|
|
@@ -21148,7 +21168,7 @@ function ingestError$u(luvio, params, error, snapshotRefresh) {
|
|
|
21148
21168
|
function createResourceRequest$R(config) {
|
|
21149
21169
|
const headers = {};
|
|
21150
21170
|
return {
|
|
21151
|
-
baseUri: '/services/data/
|
|
21171
|
+
baseUri: '/services/data/v64.0',
|
|
21152
21172
|
basePath: '/ui-api/duplicates/' + config.urlParams.objectApiName + '',
|
|
21153
21173
|
method: 'get',
|
|
21154
21174
|
body: null,
|
|
@@ -21287,7 +21307,7 @@ function ingestError$t(luvio, params, error, snapshotRefresh) {
|
|
|
21287
21307
|
function createResourceRequest$Q(config) {
|
|
21288
21308
|
const headers = {};
|
|
21289
21309
|
return {
|
|
21290
|
-
baseUri: '/services/data/
|
|
21310
|
+
baseUri: '/services/data/v64.0',
|
|
21291
21311
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '',
|
|
21292
21312
|
method: 'get',
|
|
21293
21313
|
body: null,
|
|
@@ -21426,7 +21446,7 @@ function getResponseCacheKeys$K(storeKeyMap, luvio, resourceParams, response) {
|
|
|
21426
21446
|
function createResourceRequest$P(config) {
|
|
21427
21447
|
const headers = {};
|
|
21428
21448
|
return {
|
|
21429
|
-
baseUri: '/services/data/
|
|
21449
|
+
baseUri: '/services/data/v64.0',
|
|
21430
21450
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
21431
21451
|
method: 'get',
|
|
21432
21452
|
body: null,
|
|
@@ -21659,7 +21679,7 @@ function ingestError$s(luvio, params, error, snapshotRefresh) {
|
|
|
21659
21679
|
function createResourceRequest$O(config) {
|
|
21660
21680
|
const headers = {};
|
|
21661
21681
|
return {
|
|
21662
|
-
baseUri: '/services/data/
|
|
21682
|
+
baseUri: '/services/data/v64.0',
|
|
21663
21683
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
21664
21684
|
method: 'get',
|
|
21665
21685
|
body: null,
|
|
@@ -21928,7 +21948,7 @@ function ingestError$r(luvio, params, error, snapshotRefresh) {
|
|
|
21928
21948
|
function createResourceRequest$N(config) {
|
|
21929
21949
|
const headers = {};
|
|
21930
21950
|
return {
|
|
21931
|
-
baseUri: '/services/data/
|
|
21951
|
+
baseUri: '/services/data/v64.0',
|
|
21932
21952
|
basePath: '/ui-api/list-info/batch',
|
|
21933
21953
|
method: 'get',
|
|
21934
21954
|
body: null,
|
|
@@ -22073,7 +22093,7 @@ function ingestError$q(luvio, params, error, snapshotRefresh) {
|
|
|
22073
22093
|
function createResourceRequest$M(config) {
|
|
22074
22094
|
const headers = {};
|
|
22075
22095
|
return {
|
|
22076
|
-
baseUri: '/services/data/
|
|
22096
|
+
baseUri: '/services/data/v64.0',
|
|
22077
22097
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
22078
22098
|
method: 'get',
|
|
22079
22099
|
body: null,
|
|
@@ -22379,7 +22399,7 @@ function ingestSuccess$y(luvio, resourceParams, response) {
|
|
|
22379
22399
|
function createResourceRequest$L(config) {
|
|
22380
22400
|
const headers = {};
|
|
22381
22401
|
return {
|
|
22382
|
-
baseUri: '/services/data/
|
|
22402
|
+
baseUri: '/services/data/v64.0',
|
|
22383
22403
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
22384
22404
|
method: 'post',
|
|
22385
22405
|
body: config.body,
|
|
@@ -22492,7 +22512,7 @@ function evictSuccess$1(luvio, resourceParams) {
|
|
|
22492
22512
|
function createResourceRequest$K(config) {
|
|
22493
22513
|
const headers = {};
|
|
22494
22514
|
return {
|
|
22495
|
-
baseUri: '/services/data/
|
|
22515
|
+
baseUri: '/services/data/v64.0',
|
|
22496
22516
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22497
22517
|
method: 'delete',
|
|
22498
22518
|
body: null,
|
|
@@ -22670,7 +22690,7 @@ function ingestSuccess$x(luvio, resourceParams, response) {
|
|
|
22670
22690
|
function createResourceRequest$J(config) {
|
|
22671
22691
|
const headers = {};
|
|
22672
22692
|
return {
|
|
22673
|
-
baseUri: '/services/data/
|
|
22693
|
+
baseUri: '/services/data/v64.0',
|
|
22674
22694
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22675
22695
|
method: 'patch',
|
|
22676
22696
|
body: config.body,
|
|
@@ -23397,7 +23417,7 @@ function ingestError$p(luvio, params, error, snapshotRefresh) {
|
|
|
23397
23417
|
function createResourceRequest$I(config) {
|
|
23398
23418
|
const headers = {};
|
|
23399
23419
|
return {
|
|
23400
|
-
baseUri: '/services/data/
|
|
23420
|
+
baseUri: '/services/data/v64.0',
|
|
23401
23421
|
basePath: '/ui-api/list-object-info/' + config.urlParams.objectApiName + '',
|
|
23402
23422
|
method: 'get',
|
|
23403
23423
|
body: null,
|
|
@@ -23706,7 +23726,7 @@ function ingestError$o(luvio, params, error, snapshotRefresh) {
|
|
|
23706
23726
|
function createResourceRequest$H(config) {
|
|
23707
23727
|
const headers = {};
|
|
23708
23728
|
return {
|
|
23709
|
-
baseUri: '/services/data/
|
|
23729
|
+
baseUri: '/services/data/v64.0',
|
|
23710
23730
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
23711
23731
|
method: 'get',
|
|
23712
23732
|
body: null,
|
|
@@ -23850,7 +23870,7 @@ function ingestSuccess$u(luvio, resourceParams, response) {
|
|
|
23850
23870
|
function createResourceRequest$G(config) {
|
|
23851
23871
|
const headers = {};
|
|
23852
23872
|
return {
|
|
23853
|
-
baseUri: '/services/data/
|
|
23873
|
+
baseUri: '/services/data/v64.0',
|
|
23854
23874
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
23855
23875
|
method: 'patch',
|
|
23856
23876
|
body: config.body,
|
|
@@ -24160,7 +24180,7 @@ function ingestError$n(luvio, params, error, snapshotRefresh) {
|
|
|
24160
24180
|
function createResourceRequest$F(config) {
|
|
24161
24181
|
const headers = {};
|
|
24162
24182
|
return {
|
|
24163
|
-
baseUri: '/services/data/
|
|
24183
|
+
baseUri: '/services/data/v64.0',
|
|
24164
24184
|
basePath: '/ui-api/nav-items',
|
|
24165
24185
|
method: 'get',
|
|
24166
24186
|
body: null,
|
|
@@ -24296,7 +24316,7 @@ function ingestError$m(luvio, params, error, snapshotRefresh) {
|
|
|
24296
24316
|
function createResourceRequest$E(config) {
|
|
24297
24317
|
const headers = {};
|
|
24298
24318
|
return {
|
|
24299
|
-
baseUri: '/services/data/
|
|
24319
|
+
baseUri: '/services/data/v64.0',
|
|
24300
24320
|
basePath: '/ui-api/object-info',
|
|
24301
24321
|
method: 'get',
|
|
24302
24322
|
body: null,
|
|
@@ -24641,7 +24661,7 @@ function ingestError$l(luvio, params, error, snapshotRefresh) {
|
|
|
24641
24661
|
function createResourceRequest$D(config) {
|
|
24642
24662
|
const headers = {};
|
|
24643
24663
|
return {
|
|
24644
|
-
baseUri: '/services/data/
|
|
24664
|
+
baseUri: '/services/data/v64.0',
|
|
24645
24665
|
basePath: '/ui-api/object-info/batch/' + config.urlParams.objectApiNames + '',
|
|
24646
24666
|
method: 'get',
|
|
24647
24667
|
body: null,
|
|
@@ -24970,8 +24990,8 @@ const select$27 = function PicklistValueRepresentationSelect() {
|
|
|
24970
24990
|
const keyBuilderFromType$i =
|
|
24971
24991
|
/**
|
|
24972
24992
|
* custom key builder from PicklistValuesRepresentation.
|
|
24973
|
-
* PicklistValuesRepresentation.url is like /services/data/
|
|
24974
|
-
* the '/services/data/
|
|
24993
|
+
* PicklistValuesRepresentation.url is like /services/data/v64.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/AccountSource
|
|
24994
|
+
* the '/services/data/v64.0' in the key make trouble for new js release. so chop it off make the key unique cross releases.
|
|
24975
24995
|
*/
|
|
24976
24996
|
function PicklistValuesRepresentationKeyBuilderFromType(luvio, object) {
|
|
24977
24997
|
const id = object.url.substring(object.url.indexOf('/ui-api'));
|
|
@@ -25281,7 +25301,7 @@ function ingestError$k(luvio, params, error, snapshotRefresh) {
|
|
|
25281
25301
|
function createResourceRequest$C(config) {
|
|
25282
25302
|
const headers = {};
|
|
25283
25303
|
return {
|
|
25284
|
-
baseUri: '/services/data/
|
|
25304
|
+
baseUri: '/services/data/v64.0',
|
|
25285
25305
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '',
|
|
25286
25306
|
method: 'get',
|
|
25287
25307
|
body: null,
|
|
@@ -25386,7 +25406,7 @@ function getResponseCacheKeys$w(storeKeyMap, luvio, resourceParams, response) {
|
|
|
25386
25406
|
function createResourceRequest$B(config) {
|
|
25387
25407
|
const headers = {};
|
|
25388
25408
|
return {
|
|
25389
|
-
baseUri: '/services/data/
|
|
25409
|
+
baseUri: '/services/data/v64.0',
|
|
25390
25410
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '/' + config.urlParams.fieldApiName + '',
|
|
25391
25411
|
method: 'get',
|
|
25392
25412
|
body: null,
|
|
@@ -25598,7 +25618,7 @@ function ingestError$j(luvio, params, error, snapshotRefresh) {
|
|
|
25598
25618
|
function createResourceRequest$A(config) {
|
|
25599
25619
|
const headers = {};
|
|
25600
25620
|
return {
|
|
25601
|
-
baseUri: '/services/data/
|
|
25621
|
+
baseUri: '/services/data/v64.0',
|
|
25602
25622
|
basePath: '/ui-api/path/layout/' + config.urlParams.objectApiName + '',
|
|
25603
25623
|
method: 'get',
|
|
25604
25624
|
body: null,
|
|
@@ -25924,7 +25944,7 @@ function ingestError$i(luvio, params, error, snapshotRefresh) {
|
|
|
25924
25944
|
function createResourceRequest$z(config) {
|
|
25925
25945
|
const headers = {};
|
|
25926
25946
|
return {
|
|
25927
|
-
baseUri: '/services/data/
|
|
25947
|
+
baseUri: '/services/data/v64.0',
|
|
25928
25948
|
basePath: '/ui-api/predupe',
|
|
25929
25949
|
method: 'post',
|
|
25930
25950
|
body: config.body,
|
|
@@ -27143,7 +27163,7 @@ function ingestError$h(luvio, params, error, snapshotRefresh) {
|
|
|
27143
27163
|
function createResourceRequest$y(config) {
|
|
27144
27164
|
const headers = {};
|
|
27145
27165
|
return {
|
|
27146
|
-
baseUri: '/services/data/
|
|
27166
|
+
baseUri: '/services/data/v64.0',
|
|
27147
27167
|
basePath: '/ui-api/record-avatars/batch/' + config.urlParams.recordIds + '',
|
|
27148
27168
|
method: 'get',
|
|
27149
27169
|
body: null,
|
|
@@ -28007,7 +28027,7 @@ function ingestError$g(luvio, params, error, snapshotRefresh) {
|
|
|
28007
28027
|
function createResourceRequest$x(config) {
|
|
28008
28028
|
const headers = {};
|
|
28009
28029
|
return {
|
|
28010
|
-
baseUri: '/services/data/
|
|
28030
|
+
baseUri: '/services/data/v64.0',
|
|
28011
28031
|
basePath: '/ui-api/related-list-count/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
28012
28032
|
method: 'get',
|
|
28013
28033
|
body: null,
|
|
@@ -28272,7 +28292,7 @@ function ingestError$f(luvio, params, error, snapshotRefresh) {
|
|
|
28272
28292
|
function createResourceRequest$w(config) {
|
|
28273
28293
|
const headers = {};
|
|
28274
28294
|
return {
|
|
28275
|
-
baseUri: '/services/data/
|
|
28295
|
+
baseUri: '/services/data/v64.0',
|
|
28276
28296
|
basePath: '/ui-api/related-list-count/batch/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListNames + '',
|
|
28277
28297
|
method: 'get',
|
|
28278
28298
|
body: null,
|
|
@@ -28966,7 +28986,7 @@ function ingestError$e(luvio, params, error, snapshotRefresh) {
|
|
|
28966
28986
|
function createResourceRequest$v(config) {
|
|
28967
28987
|
const headers = {};
|
|
28968
28988
|
return {
|
|
28969
|
-
baseUri: '/services/data/
|
|
28989
|
+
baseUri: '/services/data/v64.0',
|
|
28970
28990
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
28971
28991
|
method: 'get',
|
|
28972
28992
|
body: null,
|
|
@@ -29236,7 +29256,7 @@ function ingestError$d(luvio, params, error, snapshotRefresh) {
|
|
|
29236
29256
|
function createResourceRequest$u(config) {
|
|
29237
29257
|
const headers = {};
|
|
29238
29258
|
return {
|
|
29239
|
-
baseUri: '/services/data/
|
|
29259
|
+
baseUri: '/services/data/v64.0',
|
|
29240
29260
|
basePath: '/ui-api/related-list-info/batch/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListNames + '',
|
|
29241
29261
|
method: 'get',
|
|
29242
29262
|
body: null,
|
|
@@ -29630,7 +29650,7 @@ function ingestError$c(luvio, params, error, snapshotRefresh) {
|
|
|
29630
29650
|
function createResourceRequest$t(config) {
|
|
29631
29651
|
const headers = {};
|
|
29632
29652
|
return {
|
|
29633
|
-
baseUri: '/services/data/
|
|
29653
|
+
baseUri: '/services/data/v64.0',
|
|
29634
29654
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '',
|
|
29635
29655
|
method: 'get',
|
|
29636
29656
|
body: null,
|
|
@@ -29884,7 +29904,7 @@ function ingestSuccess$h(luvio, resourceParams, response) {
|
|
|
29884
29904
|
function createResourceRequest$s(config) {
|
|
29885
29905
|
const headers = {};
|
|
29886
29906
|
return {
|
|
29887
|
-
baseUri: '/services/data/
|
|
29907
|
+
baseUri: '/services/data/v64.0',
|
|
29888
29908
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
29889
29909
|
method: 'patch',
|
|
29890
29910
|
body: config.body,
|
|
@@ -30124,7 +30144,7 @@ function ingestError$b(luvio, params, error, snapshotRefresh) {
|
|
|
30124
30144
|
function createResourceRequest$r(config) {
|
|
30125
30145
|
const headers = {};
|
|
30126
30146
|
return {
|
|
30127
|
-
baseUri: '/services/data/
|
|
30147
|
+
baseUri: '/services/data/v64.0',
|
|
30128
30148
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
30129
30149
|
method: 'get',
|
|
30130
30150
|
body: null,
|
|
@@ -30386,7 +30406,7 @@ function ingestError$a(luvio, params, error, snapshotRefresh) {
|
|
|
30386
30406
|
function createResourceRequest$q(config) {
|
|
30387
30407
|
const headers = {};
|
|
30388
30408
|
return {
|
|
30389
|
-
baseUri: '/services/data/
|
|
30409
|
+
baseUri: '/services/data/v64.0',
|
|
30390
30410
|
basePath: '/ui-api/related-list-preferences/batch/' + config.urlParams.preferencesIds + '',
|
|
30391
30411
|
method: 'get',
|
|
30392
30412
|
body: null,
|
|
@@ -30595,7 +30615,7 @@ function ingestSuccess$e(luvio, resourceParams, response) {
|
|
|
30595
30615
|
function createResourceRequest$p(config) {
|
|
30596
30616
|
const headers = {};
|
|
30597
30617
|
return {
|
|
30598
|
-
baseUri: '/services/data/
|
|
30618
|
+
baseUri: '/services/data/v64.0',
|
|
30599
30619
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
30600
30620
|
method: 'patch',
|
|
30601
30621
|
body: config.body,
|
|
@@ -31630,7 +31650,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
|
|
|
31630
31650
|
function createResourceRequest$o(config) {
|
|
31631
31651
|
const headers = {};
|
|
31632
31652
|
return {
|
|
31633
|
-
baseUri: '/services/data/
|
|
31653
|
+
baseUri: '/services/data/v64.0',
|
|
31634
31654
|
basePath: '/ui-api/related-list-records/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
31635
31655
|
method: 'post',
|
|
31636
31656
|
body: config.body,
|
|
@@ -31915,7 +31935,7 @@ function ingestError$8(luvio, params, error, snapshotRefresh) {
|
|
|
31915
31935
|
function createResourceRequest$n(config) {
|
|
31916
31936
|
const headers = {};
|
|
31917
31937
|
return {
|
|
31918
|
-
baseUri: '/services/data/
|
|
31938
|
+
baseUri: '/services/data/v64.0',
|
|
31919
31939
|
basePath: '/ui-api/related-list-records/batch/' + config.urlParams.parentRecordId + '',
|
|
31920
31940
|
method: 'post',
|
|
31921
31941
|
body: config.body,
|
|
@@ -32457,7 +32477,7 @@ function ingestError$7(luvio, params, error, snapshotRefresh) {
|
|
|
32457
32477
|
function createResourceRequest$m(config) {
|
|
32458
32478
|
const headers = {};
|
|
32459
32479
|
return {
|
|
32460
|
-
baseUri: '/services/data/
|
|
32480
|
+
baseUri: '/services/data/v64.0',
|
|
32461
32481
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters',
|
|
32462
32482
|
method: 'get',
|
|
32463
32483
|
body: null,
|
|
@@ -32713,7 +32733,7 @@ function ingestError$6(luvio, params, error, snapshotRefresh) {
|
|
|
32713
32733
|
function createResourceRequest$l(config) {
|
|
32714
32734
|
const headers = {};
|
|
32715
32735
|
return {
|
|
32716
|
-
baseUri: '/services/data/
|
|
32736
|
+
baseUri: '/services/data/v64.0',
|
|
32717
32737
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters/' + config.urlParams.filterApiName + '/options',
|
|
32718
32738
|
method: 'get',
|
|
32719
32739
|
body: null,
|
|
@@ -33131,7 +33151,7 @@ function ingestError$5(luvio, params, error, snapshotRefresh) {
|
|
|
33131
33151
|
function createResourceRequest$k(config) {
|
|
33132
33152
|
const headers = {};
|
|
33133
33153
|
return {
|
|
33134
|
-
baseUri: '/services/data/
|
|
33154
|
+
baseUri: '/services/data/v64.0',
|
|
33135
33155
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/lookup/' + config.urlParams.fieldApiName + '',
|
|
33136
33156
|
method: 'get',
|
|
33137
33157
|
body: null,
|
|
@@ -34140,7 +34160,7 @@ function ingestError$4(luvio, params, error, snapshotRefresh) {
|
|
|
34140
34160
|
function createResourceRequest$j(config) {
|
|
34141
34161
|
const headers = {};
|
|
34142
34162
|
return {
|
|
34143
|
-
baseUri: '/services/data/
|
|
34163
|
+
baseUri: '/services/data/v64.0',
|
|
34144
34164
|
basePath: '/ui-api/search/results',
|
|
34145
34165
|
method: 'post',
|
|
34146
34166
|
body: config.body,
|
|
@@ -34414,7 +34434,7 @@ function ingestError$3(luvio, params, error, snapshotRefresh) {
|
|
|
34414
34434
|
function createResourceRequest$i(config) {
|
|
34415
34435
|
const headers = {};
|
|
34416
34436
|
return {
|
|
34417
|
-
baseUri: '/services/data/
|
|
34437
|
+
baseUri: '/services/data/v64.0',
|
|
34418
34438
|
basePath: '/ui-api/search/results/keyword',
|
|
34419
34439
|
method: 'post',
|
|
34420
34440
|
body: config.body,
|
|
@@ -54943,7 +54963,7 @@ function ingestError$2(luvio, config, params, error, snapshotRefresh) {
|
|
|
54943
54963
|
function createResourceRequest$h(config) {
|
|
54944
54964
|
const headers = {};
|
|
54945
54965
|
return {
|
|
54946
|
-
baseUri: '/services/data/
|
|
54966
|
+
baseUri: '/services/data/v64.0',
|
|
54947
54967
|
basePath: '/graphql',
|
|
54948
54968
|
method: 'post',
|
|
54949
54969
|
body: { ...config.body,
|
|
@@ -54994,7 +55014,7 @@ function createResourceRequest$f(config) {
|
|
|
54994
55014
|
const headers = {};
|
|
54995
55015
|
const transformedConfig = stripDocumentsOfMetaschema(config);
|
|
54996
55016
|
return {
|
|
54997
|
-
baseUri: '/services/data/
|
|
55017
|
+
baseUri: '/services/data/v64.0',
|
|
54998
55018
|
basePath: '/graphql/batch',
|
|
54999
55019
|
method: 'post',
|
|
55000
55020
|
body: transformedConfig.body,
|
|
@@ -55542,7 +55562,7 @@ function ingestSuccess$4(luvio, response) {
|
|
|
55542
55562
|
function createResourceRequest$e(config) {
|
|
55543
55563
|
const headers = {};
|
|
55544
55564
|
return {
|
|
55545
|
-
baseUri: '/services/data/
|
|
55565
|
+
baseUri: '/services/data/v64.0',
|
|
55546
55566
|
basePath: '/ui-api/records/batch',
|
|
55547
55567
|
method: 'post',
|
|
55548
55568
|
body: config.body,
|
|
@@ -55811,7 +55831,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
|
|
|
55811
55831
|
function createResourceRequest$d(config) {
|
|
55812
55832
|
const headers = {};
|
|
55813
55833
|
return {
|
|
55814
|
-
baseUri: '/services/data/
|
|
55834
|
+
baseUri: '/services/data/v64.0',
|
|
55815
55835
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
55816
55836
|
method: 'patch',
|
|
55817
55837
|
body: config.body,
|
|
@@ -55875,7 +55895,7 @@ function ingestSuccess$2(luvio, resourceParams, response) {
|
|
|
55875
55895
|
function createResourceRequest$c(config) {
|
|
55876
55896
|
const headers = {};
|
|
55877
55897
|
return {
|
|
55878
|
-
baseUri: '/services/data/
|
|
55898
|
+
baseUri: '/services/data/v64.0',
|
|
55879
55899
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
55880
55900
|
method: 'post',
|
|
55881
55901
|
body: config.body,
|
|
@@ -55944,7 +55964,7 @@ const factory$c = (luvio) => {
|
|
|
55944
55964
|
function createResourceRequest$b(config) {
|
|
55945
55965
|
const headers = {};
|
|
55946
55966
|
return {
|
|
55947
|
-
baseUri: '/services/data/
|
|
55967
|
+
baseUri: '/services/data/v64.0',
|
|
55948
55968
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
55949
55969
|
method: 'patch',
|
|
55950
55970
|
body: config.body,
|
|
@@ -56426,7 +56446,7 @@ function getResponseCacheKeys$7(storeKeyMap, luvio, resourceParams, response) {
|
|
|
56426
56446
|
function createResourceRequest$a(config) {
|
|
56427
56447
|
const headers = {};
|
|
56428
56448
|
return {
|
|
56429
|
-
baseUri: '/services/data/
|
|
56449
|
+
baseUri: '/services/data/v64.0',
|
|
56430
56450
|
basePath: '/ui-api/lookups/' + config.urlParams.objectApiName + '/' + config.urlParams.fieldApiName + '',
|
|
56431
56451
|
method: 'post',
|
|
56432
56452
|
body: config.body,
|
|
@@ -56668,7 +56688,7 @@ const factory$9 = (luvio) => {
|
|
|
56668
56688
|
function createResourceRequest$9(config) {
|
|
56669
56689
|
const headers = {};
|
|
56670
56690
|
return {
|
|
56671
|
-
baseUri: '/services/data/
|
|
56691
|
+
baseUri: '/services/data/v64.0',
|
|
56672
56692
|
basePath: '/ui-api/record-avatars/' + config.urlParams.recordId + '/association',
|
|
56673
56693
|
method: 'post',
|
|
56674
56694
|
body: config.body,
|
|
@@ -57277,7 +57297,7 @@ function getResponseCacheKeys$6(storeKeyMap, luvio, resourceParams, response) {
|
|
|
57277
57297
|
function createResourceRequest$8(config) {
|
|
57278
57298
|
const headers = {};
|
|
57279
57299
|
return {
|
|
57280
|
-
baseUri: '/services/data/
|
|
57300
|
+
baseUri: '/services/data/v64.0',
|
|
57281
57301
|
basePath: '/ui-api/record-defaults/create/' + config.urlParams.objectApiName + '',
|
|
57282
57302
|
method: 'get',
|
|
57283
57303
|
body: null,
|
|
@@ -57919,7 +57939,7 @@ function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
|
|
|
57919
57939
|
function createResourceRequest$7(config) {
|
|
57920
57940
|
const headers = {};
|
|
57921
57941
|
return {
|
|
57922
|
-
baseUri: '/services/data/
|
|
57942
|
+
baseUri: '/services/data/v64.0',
|
|
57923
57943
|
basePath: '/ui-api/record-defaults/template/clone/' + config.urlParams.recordId + '',
|
|
57924
57944
|
method: 'get',
|
|
57925
57945
|
body: null,
|
|
@@ -58550,7 +58570,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
58550
58570
|
function createResourceRequest$6(config) {
|
|
58551
58571
|
const headers = {};
|
|
58552
58572
|
return {
|
|
58553
|
-
baseUri: '/services/data/
|
|
58573
|
+
baseUri: '/services/data/v64.0',
|
|
58554
58574
|
basePath: '/ui-api/record-defaults/template/create/' + config.urlParams.objectApiName + '',
|
|
58555
58575
|
method: 'get',
|
|
58556
58576
|
body: null,
|
|
@@ -58763,7 +58783,7 @@ function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
|
58763
58783
|
function createResourceRequest$5(config) {
|
|
58764
58784
|
const headers = {};
|
|
58765
58785
|
return {
|
|
58766
|
-
baseUri: '/services/data/
|
|
58786
|
+
baseUri: '/services/data/v64.0',
|
|
58767
58787
|
basePath: '/ui-api/records',
|
|
58768
58788
|
method: 'post',
|
|
58769
58789
|
body: config.body,
|
|
@@ -58869,7 +58889,7 @@ function evictSuccess(luvio, resourceParams) {
|
|
|
58869
58889
|
function createResourceRequest$3(config) {
|
|
58870
58890
|
const headers = {};
|
|
58871
58891
|
return {
|
|
58872
|
-
baseUri: '/services/data/
|
|
58892
|
+
baseUri: '/services/data/v64.0',
|
|
58873
58893
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
58874
58894
|
method: 'delete',
|
|
58875
58895
|
body: null,
|
|
@@ -58959,7 +58979,7 @@ function createResourceRequest$2(config) {
|
|
|
58959
58979
|
headers['If-Unmodified-Since'] = header_ifUnmodifiedSince;
|
|
58960
58980
|
}
|
|
58961
58981
|
return {
|
|
58962
|
-
baseUri: '/services/data/
|
|
58982
|
+
baseUri: '/services/data/v64.0',
|
|
58963
58983
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
58964
58984
|
method: 'patch',
|
|
58965
58985
|
body: config.body,
|
|
@@ -59286,7 +59306,7 @@ function createResourceParams$1(config) {
|
|
|
59286
59306
|
function createResourceRequest$1(config) {
|
|
59287
59307
|
const headers = {};
|
|
59288
59308
|
return {
|
|
59289
|
-
baseUri: '/services/data/
|
|
59309
|
+
baseUri: '/services/data/v64.0',
|
|
59290
59310
|
basePath: '/ui-api/records/content-documents/' +
|
|
59291
59311
|
config.urlParams.contentDocumentId +
|
|
59292
59312
|
'/content-versions',
|
|
@@ -59404,7 +59424,7 @@ function createResourceParams(config) {
|
|
|
59404
59424
|
function createResourceRequest(config) {
|
|
59405
59425
|
const headers = {};
|
|
59406
59426
|
return {
|
|
59407
|
-
baseUri: '/services/data/
|
|
59427
|
+
baseUri: '/services/data/v64.0',
|
|
59408
59428
|
basePath: '/ui-api/records/content-documents/content-versions',
|
|
59409
59429
|
method: 'post',
|
|
59410
59430
|
body: config.body,
|
|
@@ -59923,4 +59943,4 @@ ensureRegisteredOnce({
|
|
|
59923
59943
|
instrument,
|
|
59924
59944
|
});
|
|
59925
59945
|
|
|
59926
|
-
export { API_NAMESPACE, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$3 as NotifyListInfoSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$4 as NotifyListRecordCollectionUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$5 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$T as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$_ as RecordRepresentationRepresentationType, TTL$F as RecordRepresentationTTL, RepresentationType$_ as RecordRepresentationType, VERSION$2F as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, getFieldApiNamesArray as coerceFieldIdArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, createRelatedListAdapterWithPrediction, 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, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$i as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$2h as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$g as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$1P as ingestDuplicateConfiguration, ingest$1J as ingestDuplicatesRepresentation, ingest$2f as ingestListInfo, ingest$2b as ingestListRecords, ingest$25 as ingestObjectInfo, ingest$1$ as ingestQuickActionExecutionRepresentation, ingest$2c as ingestRecord, ingest$22 as ingestRecordUi, ingest$1B as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1y as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1A as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, isStoreKeyRecordViewEntity, isSupportedEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$D as keyBuilderFromTypeRecordRepresentation, keyBuilder$3j as keyBuilderObjectInfo, keyBuilder$3c as keyBuilderQuickActionExecutionRepresentation, keyBuilder$3A as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, registerPrefetcher, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, updateListPreferencesAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
|
|
59946
|
+
export { API_NAMESPACE, notifyChangeFactory as GetRecordNotifyChange, InMemoryRecordRepresentationQueryEvaluator, MRU, notifyUpdateAvailableFactory$3 as NotifyListInfoSummaryUpdateAvailable, notifyUpdateAvailableFactory$1 as NotifyListInfoUpdateAvailable, notifyUpdateAvailableFactory$4 as NotifyListRecordCollectionUpdateAvailable, notifyUpdateAvailableFactory$2 as NotifyListViewSummaryUpdateAvailable, notifyUpdateAvailableFactory as NotifyQuickActionDefaultsUpdateAvailable, notifyUpdateAvailableFactory$5 as NotifyRecordUpdateAvailable, RepresentationType$O as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$T as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$_ as RecordRepresentationRepresentationType, TTL$F as RecordRepresentationTTL, RepresentationType$_ as RecordRepresentationType, VERSION$2F as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, buildSelectionFromFields, buildSelectionFromRecord, getFieldApiNamesArray as coerceFieldIdArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configuration, factory$1 as createContentDocumentAndVersionAdapterFactory, factory as createContentVersionAdapterFactory, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfoAdapterFactory, factory$4 as createRecordAdapterFactory, createRecordInputFilteredByEditedFields, createRelatedListAdapterWithPrediction, createRelatedListPlusAdapterWithPrediction, deleteListInfoAdapterFactory, factory$3 as deleteRecordAdapterFactory, factory$f as executeBatchRecordOperationsAdapterFactory, extractRecordIdFromStoreKey, generateRecordInputForCreate, generateRecordInputForUpdate, getActionOverridesAdapterFactory, getAllAppsAdapterFactory, getAppDetailsAdapterFactory, getDuplicateConfigurationAdapterFactory, getDuplicatesAdapterFactory, getFieldDisplayValue$1 as getFieldDisplayValue, getFieldValue, getFlexipageFormulaOverridesAdapterFactory, getGlobalActionsAdapterFactory, getKeywordSearchResultsAdapterFactory, getLayoutAdapterFactory, getLayoutUserStateAdapterFactory, getListInfoByNameAdapterFactory, getListInfosByNameAdapterFactory, getListInfosByObjectNameAdapterFactory, getListObjectInfoAdapterFactory, getListPreferencesAdapterFactory, factory$a as getListRecordsByNameAdapterFactory, factory$j as getListUiAdapterFactory, getListUiByApiNameAdapterFactory, getListUiByListViewIdAdapterFactory, getListViewSummaryCollectionAdapterFactory, getLookupActionsAdapterFactory, getLookupMetadataAdapterFactory, factory$9 as getLookupRecordsAdapterFactory, factory$k as getMruListUiAdapterFactory, getNavItemsAdapterFactory, getObjectCreateActionsAdapterFactory, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfosAdapterFactory, getPathLayoutAdapterFactory, getPicklistValuesAdapterFactory, getPicklistValuesByRecordTypeAdapterFactory, getQuickActionDefaultsAdapterFactory, getQuickActionInfoAdapterFactory, getQuickActionLayoutAdapterFactory, getRecordActionsAdapterFactory, factory$h as getRecordAdapterFactory, getRecordAvatarsAdapterFactory, factory$7 as getRecordCreateDefaultsAdapterFactory, getRecordEditActionsAdapterFactory, getRecordId18, getRecordInput, createFieldsIngestSuccess$3 as getRecordResourceIngest, factory$6 as getRecordTemplateCloneAdapterFactory, factory$5 as getRecordTemplateCreateAdapterFactory, factory$i as getRecordUiAdapterFactory, getRecordsAdapterFactory, getRelatedListActionsAdapterFactory, getRelatedListCountAdapterFactory, getRelatedListInfoAdapterFactory, getRelatedListInfoBatchAdapterFactory, getRelatedListPreferencesAdapterFactory, getRelatedListPreferencesBatchAdapterFactory, getRelatedListRecordActionsAdapterFactory, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatchAdapterFactory, getRelatedListsActionsAdapterFactory, getRelatedListsCountAdapterFactory, getRelatedListsInfoAdapterFactory, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadataAdapterFactory, getSearchFilterOptionsAdapterFactory, getSearchResultsAdapterFactory, getSelectedAppAdapterFactory, getTypeCacheKeys$2h as getTypeCacheKeysRecord, factory$e as graphqlAdapterFactory, factory$g as graphqlBatchAdapterFactory, ingest$4 as ingestContentDocumentCompositeRepresentation, ingest$1P as ingestDuplicateConfiguration, ingest$1J as ingestDuplicatesRepresentation, ingest$2f as ingestListInfo, ingest$2b as ingestListRecords, ingest$25 as ingestObjectInfo, ingest$1$ as ingestQuickActionExecutionRepresentation, ingest$2c as ingestRecord, ingest$22 as ingestRecordUi, ingest$1B as ingestRelatedListInfo, ingest$2 as ingestRelatedListInfoBatch, ingest$1y as ingestRelatedListRecords, ingest as ingestRelatedListRecordsBatch, ingest$1A as ingestRelatedListSummaryInfoCollection, ingest$7 as ingestUiApiGraphql, instrument, isStoreKeyRecordViewEntity, isSupportedEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$D as keyBuilderFromTypeRecordRepresentation, keyBuilder$3j as keyBuilderObjectInfo, keyBuilder$3c as keyBuilderQuickActionExecutionRepresentation, keyBuilder$3A as keyBuilderRecord, factory$c as performQuickActionAdapterFactory, factory$d as performUpdateRecordQuickActionAdapterFactory, registerPrefetcher, untrustedIsObject, factory$b as updateLayoutUserStateAdapterFactory, updateListInfoByNameAdapterFactory, updateListPreferencesAdapterFactory, factory$2 as updateRecordAdapterFactory, factory$8 as updateRecordAvatarAdapterFactory, updateRelatedListInfoAdapterFactory, updateRelatedListPreferencesAdapterFactory };
|