@salesforce/lds-adapters-uiapi 1.430.0 → 1.432.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/types/src/configuration.d.ts +0 -4
- package/dist/es/es2018/types/src/main.d.ts +0 -4
- package/dist/es/es2018/types/src/predictive-loading/registry.d.ts +0 -2
- package/dist/es/es2018/uiapi-records-service.js +82 -122
- package/package.json +7 -7
- package/sfdc/graphqlAdapters.js +3 -23
- package/sfdc/index.js +87 -127
- package/sfdc/uiapi-static-functions.js +0 -20
- package/src/raml/api.raml +1 -1
package/sfdc/index.js
CHANGED
|
@@ -116,14 +116,6 @@ let oneStoreGetObjectInfoAdapter = undefined;
|
|
|
116
116
|
* One store enabled Get Object Infos adapter
|
|
117
117
|
*/
|
|
118
118
|
let oneStoreGetObjectInfosAdapter = undefined;
|
|
119
|
-
/**
|
|
120
|
-
* Determines when to include PDL strategies for Related Lists
|
|
121
|
-
*/
|
|
122
|
-
let relatedListsPredictionsEnabled = false;
|
|
123
|
-
/**
|
|
124
|
-
* Determines whether to include additional PDL strategies for Related Lists
|
|
125
|
-
*/
|
|
126
|
-
let relatedListsPlusPredictionsEnabled = false;
|
|
127
119
|
let recordRepresentationIngestionOverride = undefined;
|
|
128
120
|
/**
|
|
129
121
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
@@ -227,18 +219,6 @@ const configurationForRestAdapters = {
|
|
|
227
219
|
getTrackedFieldLeafNodeIdAndNameOnly: function () {
|
|
228
220
|
return trackedFieldLeafNodeIdAndNameOnly;
|
|
229
221
|
},
|
|
230
|
-
setRelatedListsPredictionsEnabled: function (f) {
|
|
231
|
-
relatedListsPredictionsEnabled = f;
|
|
232
|
-
},
|
|
233
|
-
areRelatedListsPredictionsEnabled: function () {
|
|
234
|
-
return relatedListsPredictionsEnabled === true;
|
|
235
|
-
},
|
|
236
|
-
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
237
|
-
relatedListsPlusPredictionsEnabled = f;
|
|
238
|
-
},
|
|
239
|
-
areRelatedListsPlusPredictionsEnabled: function () {
|
|
240
|
-
return relatedListsPlusPredictionsEnabled === true;
|
|
241
|
-
},
|
|
242
222
|
setRecordRepresentationIngestionOverride: function (ingest) {
|
|
243
223
|
recordRepresentationIngestionOverride = ingest;
|
|
244
224
|
},
|
|
@@ -378,26 +358,6 @@ function createLDSAdapterWithPrediction(adapter, luvio, name) {
|
|
|
378
358
|
return result;
|
|
379
359
|
};
|
|
380
360
|
}
|
|
381
|
-
function createRelatedListAdapterWithPrediction(adapter, luvio, name) {
|
|
382
|
-
if (configurationForRestAdapters.areRelatedListsPredictionsEnabled() /* gate is open */) {
|
|
383
|
-
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
384
|
-
}
|
|
385
|
-
else {
|
|
386
|
-
return (config, requestContext) => {
|
|
387
|
-
return adapter(config, requestContext);
|
|
388
|
-
};
|
|
389
|
-
}
|
|
390
|
-
}
|
|
391
|
-
function createRelatedListPlusAdapterWithPrediction(adapter, luvio, name) {
|
|
392
|
-
if (configurationForRestAdapters.areRelatedListsPlusPredictionsEnabled() /* gate is open */) {
|
|
393
|
-
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
394
|
-
}
|
|
395
|
-
else {
|
|
396
|
-
return (config, requestContext) => {
|
|
397
|
-
return adapter(config, requestContext);
|
|
398
|
-
};
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
361
|
|
|
402
362
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
403
363
|
const { keys: ObjectKeys$1, create: ObjectCreate$1 } = Object;
|
|
@@ -4335,7 +4295,7 @@ function getResponseCacheKeys$12(storeKeyMap, luvio, resourceParams, response) {
|
|
|
4335
4295
|
function createResourceRequest$1c(config) {
|
|
4336
4296
|
const headers = {};
|
|
4337
4297
|
return {
|
|
4338
|
-
baseUri: '/services/data/
|
|
4298
|
+
baseUri: '/services/data/v68.0',
|
|
4339
4299
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
4340
4300
|
method: 'get',
|
|
4341
4301
|
body: null,
|
|
@@ -4777,7 +4737,7 @@ function ingestError$L(luvio, params, error, snapshotRefresh) {
|
|
|
4777
4737
|
function createResourceRequest$1b(config) {
|
|
4778
4738
|
const headers = {};
|
|
4779
4739
|
return {
|
|
4780
|
-
baseUri: '/services/data/
|
|
4740
|
+
baseUri: '/services/data/v68.0',
|
|
4781
4741
|
basePath: '/ui-api/records/batch/' + config.urlParams.recordIds + '',
|
|
4782
4742
|
method: 'get',
|
|
4783
4743
|
body: null,
|
|
@@ -5941,7 +5901,7 @@ function createPaginationParams$6(params) {
|
|
|
5941
5901
|
function createResourceRequest$1a(config) {
|
|
5942
5902
|
const headers = {};
|
|
5943
5903
|
return {
|
|
5944
|
-
baseUri: '/services/data/
|
|
5904
|
+
baseUri: '/services/data/v68.0',
|
|
5945
5905
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
5946
5906
|
method: 'get',
|
|
5947
5907
|
body: null,
|
|
@@ -5994,7 +5954,7 @@ function createPaginationParams$5(params) {
|
|
|
5994
5954
|
function createResourceRequest$19(config) {
|
|
5995
5955
|
const headers = {};
|
|
5996
5956
|
return {
|
|
5997
|
-
baseUri: '/services/data/
|
|
5957
|
+
baseUri: '/services/data/v68.0',
|
|
5998
5958
|
basePath: '/ui-api/list-ui/' + config.urlParams.listViewId + '',
|
|
5999
5959
|
method: 'get',
|
|
6000
5960
|
body: null,
|
|
@@ -6039,7 +5999,7 @@ function validateAdapterConfig$16(untrustedConfig, configPropertyNames) {
|
|
|
6039
5999
|
function createResourceRequest$18(config) {
|
|
6040
6000
|
const headers = {};
|
|
6041
6001
|
return {
|
|
6042
|
-
baseUri: '/services/data/
|
|
6002
|
+
baseUri: '/services/data/v68.0',
|
|
6043
6003
|
basePath: '/ui-api/list-records/' + config.urlParams.listViewId + '',
|
|
6044
6004
|
method: 'get',
|
|
6045
6005
|
body: null,
|
|
@@ -7124,7 +7084,7 @@ function ingestError$K(luvio, params, error, snapshotRefresh) {
|
|
|
7124
7084
|
function createResourceRequest$17(config) {
|
|
7125
7085
|
const headers = {};
|
|
7126
7086
|
return {
|
|
7127
|
-
baseUri: '/services/data/
|
|
7087
|
+
baseUri: '/services/data/v68.0',
|
|
7128
7088
|
basePath: '/ui-api/list-records/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
7129
7089
|
method: 'post',
|
|
7130
7090
|
body: config.body,
|
|
@@ -7860,7 +7820,7 @@ function ingestError$J(luvio, params, error, snapshotRefresh) {
|
|
|
7860
7820
|
function createResourceRequest$16(config) {
|
|
7861
7821
|
const headers = {};
|
|
7862
7822
|
return {
|
|
7863
|
-
baseUri: '/services/data/
|
|
7823
|
+
baseUri: '/services/data/v68.0',
|
|
7864
7824
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '',
|
|
7865
7825
|
method: 'get',
|
|
7866
7826
|
body: null,
|
|
@@ -8058,7 +8018,7 @@ function keyBuilder$1Z(luvio, params) {
|
|
|
8058
8018
|
function createResourceRequest$15(config) {
|
|
8059
8019
|
const headers = {};
|
|
8060
8020
|
return {
|
|
8061
|
-
baseUri: '/services/data/
|
|
8021
|
+
baseUri: '/services/data/v68.0',
|
|
8062
8022
|
basePath: '/ui-api/mru-list-ui/' + config.urlParams.objectApiName + '',
|
|
8063
8023
|
method: 'get',
|
|
8064
8024
|
body: null,
|
|
@@ -8103,7 +8063,7 @@ function validateAdapterConfig$14(untrustedConfig, configPropertyNames) {
|
|
|
8103
8063
|
function createResourceRequest$14(config) {
|
|
8104
8064
|
const headers = {};
|
|
8105
8065
|
return {
|
|
8106
|
-
baseUri: '/services/data/
|
|
8066
|
+
baseUri: '/services/data/v68.0',
|
|
8107
8067
|
basePath: '/ui-api/mru-list-records/' + config.urlParams.objectApiName + '',
|
|
8108
8068
|
method: 'get',
|
|
8109
8069
|
body: null,
|
|
@@ -9908,7 +9868,7 @@ function ingestError$I(luvio, params, error, snapshotRefresh) {
|
|
|
9908
9868
|
function createResourceRequest$13(config) {
|
|
9909
9869
|
const headers = {};
|
|
9910
9870
|
return {
|
|
9911
|
-
baseUri: '/services/data/
|
|
9871
|
+
baseUri: '/services/data/v68.0',
|
|
9912
9872
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '',
|
|
9913
9873
|
method: 'get',
|
|
9914
9874
|
body: null,
|
|
@@ -10966,7 +10926,7 @@ const ingest$E = function RecordUiRepresentationIngest(input, path, luvio, store
|
|
|
10966
10926
|
function createResourceRequest$12(config) {
|
|
10967
10927
|
const headers = {};
|
|
10968
10928
|
return {
|
|
10969
|
-
baseUri: '/services/data/
|
|
10929
|
+
baseUri: '/services/data/v68.0',
|
|
10970
10930
|
basePath: '/ui-api/record-ui/' + config.urlParams.recordIds + '',
|
|
10971
10931
|
method: 'get',
|
|
10972
10932
|
body: null,
|
|
@@ -13641,7 +13601,7 @@ function ingestError$H(luvio, params, error, snapshotRefresh) {
|
|
|
13641
13601
|
function createResourceRequest$11(config) {
|
|
13642
13602
|
const headers = {};
|
|
13643
13603
|
return {
|
|
13644
|
-
baseUri: '/services/data/
|
|
13604
|
+
baseUri: '/services/data/v68.0',
|
|
13645
13605
|
basePath: '/ui-api/actions/global',
|
|
13646
13606
|
method: 'get',
|
|
13647
13607
|
body: null,
|
|
@@ -13875,7 +13835,7 @@ function ingestError$G(luvio, params, error, snapshotRefresh) {
|
|
|
13875
13835
|
function createResourceRequest$10(config) {
|
|
13876
13836
|
const headers = {};
|
|
13877
13837
|
return {
|
|
13878
|
-
baseUri: '/services/data/
|
|
13838
|
+
baseUri: '/services/data/v68.0',
|
|
13879
13839
|
basePath: '/ui-api/actions/layout/' + config.urlParams.actionApiName + '',
|
|
13880
13840
|
method: 'get',
|
|
13881
13841
|
body: null,
|
|
@@ -14047,7 +14007,7 @@ function ingestError$F(luvio, params, error, snapshotRefresh) {
|
|
|
14047
14007
|
function createResourceRequest$$(config) {
|
|
14048
14008
|
const headers = {};
|
|
14049
14009
|
return {
|
|
14050
|
-
baseUri: '/services/data/
|
|
14010
|
+
baseUri: '/services/data/v68.0',
|
|
14051
14011
|
basePath: '/ui-api/actions/lookup/' + config.urlParams.objectApiNames + '',
|
|
14052
14012
|
method: 'get',
|
|
14053
14013
|
body: null,
|
|
@@ -14189,7 +14149,7 @@ function ingestError$E(luvio, params, error, snapshotRefresh) {
|
|
|
14189
14149
|
function createResourceRequest$_(config) {
|
|
14190
14150
|
const headers = {};
|
|
14191
14151
|
return {
|
|
14192
|
-
baseUri: '/services/data/
|
|
14152
|
+
baseUri: '/services/data/v68.0',
|
|
14193
14153
|
basePath: '/ui-api/actions/object/' + config.urlParams.objectApiName + '/record-create',
|
|
14194
14154
|
method: 'get',
|
|
14195
14155
|
body: null,
|
|
@@ -14379,7 +14339,7 @@ function ingestError$D(luvio, params, error, snapshotRefresh) {
|
|
|
14379
14339
|
function createResourceRequest$Z(config) {
|
|
14380
14340
|
const headers = {};
|
|
14381
14341
|
return {
|
|
14382
|
-
baseUri: '/services/data/
|
|
14342
|
+
baseUri: '/services/data/v68.0',
|
|
14383
14343
|
basePath: '/ui-api/actions/overrides/' + config.urlParams.objectApiName + '',
|
|
14384
14344
|
method: 'get',
|
|
14385
14345
|
body: null,
|
|
@@ -14643,7 +14603,7 @@ function ingestError$C(luvio, params, error, snapshotRefresh) {
|
|
|
14643
14603
|
function createResourceRequest$Y(config) {
|
|
14644
14604
|
const headers = {};
|
|
14645
14605
|
return {
|
|
14646
|
-
baseUri: '/services/data/
|
|
14606
|
+
baseUri: '/services/data/v68.0',
|
|
14647
14607
|
basePath: '/ui-api/actions/formula-activation/' + config.urlParams.actionFeature + '',
|
|
14648
14608
|
method: 'get',
|
|
14649
14609
|
body: null,
|
|
@@ -15854,7 +15814,7 @@ function ingestError$B(luvio, params, error, snapshotRefresh) {
|
|
|
15854
15814
|
function createResourceRequest$X(config) {
|
|
15855
15815
|
const headers = {};
|
|
15856
15816
|
return {
|
|
15857
|
-
baseUri: '/services/data/
|
|
15817
|
+
baseUri: '/services/data/v68.0',
|
|
15858
15818
|
basePath: '/ui-api/actions/quick-action-info/' + config.urlParams.actionApiName + '',
|
|
15859
15819
|
method: 'get',
|
|
15860
15820
|
body: null,
|
|
@@ -16065,7 +16025,7 @@ function ingestError$A(luvio, params, error, snapshotRefresh) {
|
|
|
16065
16025
|
function createResourceRequest$W(config) {
|
|
16066
16026
|
const headers = {};
|
|
16067
16027
|
return {
|
|
16068
|
-
baseUri: '/services/data/
|
|
16028
|
+
baseUri: '/services/data/v68.0',
|
|
16069
16029
|
basePath: '/ui-api/actions/record-defaults/' + config.urlParams.actionApiName + '',
|
|
16070
16030
|
method: 'get',
|
|
16071
16031
|
body: null,
|
|
@@ -16234,7 +16194,7 @@ function ingestError$z(luvio, params, error, snapshotRefresh) {
|
|
|
16234
16194
|
function createResourceRequest$V(config) {
|
|
16235
16195
|
const headers = {};
|
|
16236
16196
|
return {
|
|
16237
|
-
baseUri: '/services/data/
|
|
16197
|
+
baseUri: '/services/data/v68.0',
|
|
16238
16198
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '',
|
|
16239
16199
|
method: 'get',
|
|
16240
16200
|
body: null,
|
|
@@ -16386,7 +16346,7 @@ function ingestError$y(luvio, params, error, snapshotRefresh) {
|
|
|
16386
16346
|
function createResourceRequest$U(config) {
|
|
16387
16347
|
const headers = {};
|
|
16388
16348
|
return {
|
|
16389
|
-
baseUri: '/services/data/
|
|
16349
|
+
baseUri: '/services/data/v68.0',
|
|
16390
16350
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/record-edit',
|
|
16391
16351
|
method: 'get',
|
|
16392
16352
|
body: null,
|
|
@@ -16598,7 +16558,7 @@ function ingestError$x(luvio, params, error, snapshotRefresh) {
|
|
|
16598
16558
|
function createResourceRequest$T(config) {
|
|
16599
16559
|
const headers = {};
|
|
16600
16560
|
return {
|
|
16601
|
-
baseUri: '/services/data/
|
|
16561
|
+
baseUri: '/services/data/v68.0',
|
|
16602
16562
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/' + config.urlParams.relatedListId + '',
|
|
16603
16563
|
method: 'post',
|
|
16604
16564
|
body: config.body,
|
|
@@ -16883,7 +16843,7 @@ function ingestError$w(luvio, params, error, snapshotRefresh) {
|
|
|
16883
16843
|
function createResourceRequest$S(config) {
|
|
16884
16844
|
const headers = {};
|
|
16885
16845
|
return {
|
|
16886
|
-
baseUri: '/services/data/
|
|
16846
|
+
baseUri: '/services/data/v68.0',
|
|
16887
16847
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/batch',
|
|
16888
16848
|
method: 'post',
|
|
16889
16849
|
body: config.body,
|
|
@@ -17128,7 +17088,7 @@ function ingestError$v(luvio, params, error, snapshotRefresh) {
|
|
|
17128
17088
|
function createResourceRequest$R(config) {
|
|
17129
17089
|
const headers = {};
|
|
17130
17090
|
return {
|
|
17131
|
-
baseUri: '/services/data/
|
|
17091
|
+
baseUri: '/services/data/v68.0',
|
|
17132
17092
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list-record/' + config.urlParams.relatedListRecordIds + '',
|
|
17133
17093
|
method: 'get',
|
|
17134
17094
|
body: null,
|
|
@@ -18385,7 +18345,7 @@ function ingestError$u(luvio, params, error, snapshotRefresh) {
|
|
|
18385
18345
|
function createResourceRequest$Q(config) {
|
|
18386
18346
|
const headers = {};
|
|
18387
18347
|
return {
|
|
18388
|
-
baseUri: '/services/data/
|
|
18348
|
+
baseUri: '/services/data/v68.0',
|
|
18389
18349
|
basePath: '/ui-api/apps',
|
|
18390
18350
|
method: 'get',
|
|
18391
18351
|
body: null,
|
|
@@ -18527,7 +18487,7 @@ function ingestError$t(luvio, params, error, snapshotRefresh) {
|
|
|
18527
18487
|
function createResourceRequest$P(config) {
|
|
18528
18488
|
const headers = {};
|
|
18529
18489
|
return {
|
|
18530
|
-
baseUri: '/services/data/
|
|
18490
|
+
baseUri: '/services/data/v68.0',
|
|
18531
18491
|
basePath: '/ui-api/apps/' + config.urlParams.appId + '',
|
|
18532
18492
|
method: 'get',
|
|
18533
18493
|
body: null,
|
|
@@ -19130,7 +19090,7 @@ function ingestError$s(luvio, params, error, snapshotRefresh) {
|
|
|
19130
19090
|
function createResourceRequest$O(config) {
|
|
19131
19091
|
const headers = {};
|
|
19132
19092
|
return {
|
|
19133
|
-
baseUri: '/services/data/
|
|
19093
|
+
baseUri: '/services/data/v68.0',
|
|
19134
19094
|
basePath: '/ui-api/duplicates/' + config.urlParams.objectApiName + '',
|
|
19135
19095
|
method: 'get',
|
|
19136
19096
|
body: null,
|
|
@@ -19269,7 +19229,7 @@ function ingestError$r(luvio, params, error, snapshotRefresh) {
|
|
|
19269
19229
|
function createResourceRequest$N(config) {
|
|
19270
19230
|
const headers = {};
|
|
19271
19231
|
return {
|
|
19272
|
-
baseUri: '/services/data/
|
|
19232
|
+
baseUri: '/services/data/v68.0',
|
|
19273
19233
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '',
|
|
19274
19234
|
method: 'get',
|
|
19275
19235
|
body: null,
|
|
@@ -19409,7 +19369,7 @@ function getResponseCacheKeys$I(storeKeyMap, luvio, resourceParams, response) {
|
|
|
19409
19369
|
function createResourceRequest$M(config) {
|
|
19410
19370
|
const headers = {};
|
|
19411
19371
|
return {
|
|
19412
|
-
baseUri: '/services/data/
|
|
19372
|
+
baseUri: '/services/data/v68.0',
|
|
19413
19373
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
19414
19374
|
method: 'get',
|
|
19415
19375
|
body: null,
|
|
@@ -19643,7 +19603,7 @@ function ingestError$q(luvio, params, error, snapshotRefresh) {
|
|
|
19643
19603
|
function createResourceRequest$L(config) {
|
|
19644
19604
|
const headers = {};
|
|
19645
19605
|
return {
|
|
19646
|
-
baseUri: '/services/data/
|
|
19606
|
+
baseUri: '/services/data/v68.0',
|
|
19647
19607
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
19648
19608
|
method: 'get',
|
|
19649
19609
|
body: null,
|
|
@@ -19912,7 +19872,7 @@ function ingestError$p(luvio, params, error, snapshotRefresh) {
|
|
|
19912
19872
|
function createResourceRequest$K(config) {
|
|
19913
19873
|
const headers = {};
|
|
19914
19874
|
return {
|
|
19915
|
-
baseUri: '/services/data/
|
|
19875
|
+
baseUri: '/services/data/v68.0',
|
|
19916
19876
|
basePath: '/ui-api/list-info/batch',
|
|
19917
19877
|
method: 'get',
|
|
19918
19878
|
body: null,
|
|
@@ -20057,7 +20017,7 @@ function ingestError$o(luvio, params, error, snapshotRefresh) {
|
|
|
20057
20017
|
function createResourceRequest$J(config) {
|
|
20058
20018
|
const headers = {};
|
|
20059
20019
|
return {
|
|
20060
|
-
baseUri: '/services/data/
|
|
20020
|
+
baseUri: '/services/data/v68.0',
|
|
20061
20021
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
20062
20022
|
method: 'get',
|
|
20063
20023
|
body: null,
|
|
@@ -20363,7 +20323,7 @@ function ingestSuccess$w(luvio, resourceParams, response) {
|
|
|
20363
20323
|
function createResourceRequest$I(config) {
|
|
20364
20324
|
const headers = {};
|
|
20365
20325
|
return {
|
|
20366
|
-
baseUri: '/services/data/
|
|
20326
|
+
baseUri: '/services/data/v68.0',
|
|
20367
20327
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
20368
20328
|
method: 'post',
|
|
20369
20329
|
body: config.body,
|
|
@@ -20476,7 +20436,7 @@ function evictSuccess$1(luvio, resourceParams) {
|
|
|
20476
20436
|
function createResourceRequest$H(config) {
|
|
20477
20437
|
const headers = {};
|
|
20478
20438
|
return {
|
|
20479
|
-
baseUri: '/services/data/
|
|
20439
|
+
baseUri: '/services/data/v68.0',
|
|
20480
20440
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
20481
20441
|
method: 'delete',
|
|
20482
20442
|
body: null,
|
|
@@ -20654,7 +20614,7 @@ function ingestSuccess$v(luvio, resourceParams, response) {
|
|
|
20654
20614
|
function createResourceRequest$G(config) {
|
|
20655
20615
|
const headers = {};
|
|
20656
20616
|
return {
|
|
20657
|
-
baseUri: '/services/data/
|
|
20617
|
+
baseUri: '/services/data/v68.0',
|
|
20658
20618
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
20659
20619
|
method: 'patch',
|
|
20660
20620
|
body: config.body,
|
|
@@ -21600,7 +21560,7 @@ function ingestError$n(luvio, params, error, snapshotRefresh) {
|
|
|
21600
21560
|
function createResourceRequest$F(config) {
|
|
21601
21561
|
const headers = {};
|
|
21602
21562
|
return {
|
|
21603
|
-
baseUri: '/services/data/
|
|
21563
|
+
baseUri: '/services/data/v68.0',
|
|
21604
21564
|
basePath: '/ui-api/list-object-info/' + config.urlParams.objectApiName + '',
|
|
21605
21565
|
method: 'get',
|
|
21606
21566
|
body: null,
|
|
@@ -21909,7 +21869,7 @@ function ingestError$m(luvio, params, error, snapshotRefresh) {
|
|
|
21909
21869
|
function createResourceRequest$E(config) {
|
|
21910
21870
|
const headers = {};
|
|
21911
21871
|
return {
|
|
21912
|
-
baseUri: '/services/data/
|
|
21872
|
+
baseUri: '/services/data/v68.0',
|
|
21913
21873
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
21914
21874
|
method: 'get',
|
|
21915
21875
|
body: null,
|
|
@@ -22053,7 +22013,7 @@ function ingestSuccess$s(luvio, resourceParams, response) {
|
|
|
22053
22013
|
function createResourceRequest$D(config) {
|
|
22054
22014
|
const headers = {};
|
|
22055
22015
|
return {
|
|
22056
|
-
baseUri: '/services/data/
|
|
22016
|
+
baseUri: '/services/data/v68.0',
|
|
22057
22017
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22058
22018
|
method: 'patch',
|
|
22059
22019
|
body: config.body,
|
|
@@ -22363,7 +22323,7 @@ function ingestError$l(luvio, params, error, snapshotRefresh) {
|
|
|
22363
22323
|
function createResourceRequest$C(config) {
|
|
22364
22324
|
const headers = {};
|
|
22365
22325
|
return {
|
|
22366
|
-
baseUri: '/services/data/
|
|
22326
|
+
baseUri: '/services/data/v68.0',
|
|
22367
22327
|
basePath: '/ui-api/nav-items',
|
|
22368
22328
|
method: 'get',
|
|
22369
22329
|
body: null,
|
|
@@ -22499,7 +22459,7 @@ function ingestError$k(luvio, params, error, snapshotRefresh) {
|
|
|
22499
22459
|
function createResourceRequest$B(config) {
|
|
22500
22460
|
const headers = {};
|
|
22501
22461
|
return {
|
|
22502
|
-
baseUri: '/services/data/
|
|
22462
|
+
baseUri: '/services/data/v68.0',
|
|
22503
22463
|
basePath: '/ui-api/object-info',
|
|
22504
22464
|
method: 'get',
|
|
22505
22465
|
body: null,
|
|
@@ -22844,7 +22804,7 @@ function ingestError$j(luvio, params, error, snapshotRefresh) {
|
|
|
22844
22804
|
function createResourceRequest$A(config) {
|
|
22845
22805
|
const headers = {};
|
|
22846
22806
|
return {
|
|
22847
|
-
baseUri: '/services/data/
|
|
22807
|
+
baseUri: '/services/data/v68.0',
|
|
22848
22808
|
basePath: '/ui-api/object-info/batch/' + config.urlParams.objectApiNames + '',
|
|
22849
22809
|
method: 'get',
|
|
22850
22810
|
body: null,
|
|
@@ -23173,8 +23133,8 @@ const select$L = function PicklistValueRepresentationSelect() {
|
|
|
23173
23133
|
const keyBuilderFromType$i =
|
|
23174
23134
|
/**
|
|
23175
23135
|
* custom key builder from PicklistValuesRepresentation.
|
|
23176
|
-
* PicklistValuesRepresentation.url is like /services/data/
|
|
23177
|
-
* the '/services/data/
|
|
23136
|
+
* PicklistValuesRepresentation.url is like /services/data/v68.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/AccountSource
|
|
23137
|
+
* the '/services/data/v68.0' in the key make trouble for new js release. so chop it off make the key unique cross releases.
|
|
23178
23138
|
*/
|
|
23179
23139
|
function PicklistValuesRepresentationKeyBuilderFromType(luvio, object) {
|
|
23180
23140
|
const id = object.url.substring(object.url.indexOf('/ui-api'));
|
|
@@ -23484,7 +23444,7 @@ function ingestError$i(luvio, params, error, snapshotRefresh) {
|
|
|
23484
23444
|
function createResourceRequest$z(config) {
|
|
23485
23445
|
const headers = {};
|
|
23486
23446
|
return {
|
|
23487
|
-
baseUri: '/services/data/
|
|
23447
|
+
baseUri: '/services/data/v68.0',
|
|
23488
23448
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '',
|
|
23489
23449
|
method: 'get',
|
|
23490
23450
|
body: null,
|
|
@@ -23589,7 +23549,7 @@ function getResponseCacheKeys$u(storeKeyMap, luvio, resourceParams, response) {
|
|
|
23589
23549
|
function createResourceRequest$y(config) {
|
|
23590
23550
|
const headers = {};
|
|
23591
23551
|
return {
|
|
23592
|
-
baseUri: '/services/data/
|
|
23552
|
+
baseUri: '/services/data/v68.0',
|
|
23593
23553
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '/' + config.urlParams.fieldApiName + '',
|
|
23594
23554
|
method: 'get',
|
|
23595
23555
|
body: null,
|
|
@@ -23808,7 +23768,7 @@ function ingestError$h(luvio, params, error, snapshotRefresh) {
|
|
|
23808
23768
|
function createResourceRequest$x(config) {
|
|
23809
23769
|
const headers = {};
|
|
23810
23770
|
return {
|
|
23811
|
-
baseUri: '/services/data/
|
|
23771
|
+
baseUri: '/services/data/v68.0',
|
|
23812
23772
|
basePath: '/ui-api/path/layout/' + config.urlParams.objectApiName + '',
|
|
23813
23773
|
method: 'get',
|
|
23814
23774
|
body: null,
|
|
@@ -24134,7 +24094,7 @@ function ingestError$g(luvio, params, error, snapshotRefresh) {
|
|
|
24134
24094
|
function createResourceRequest$w(config) {
|
|
24135
24095
|
const headers = {};
|
|
24136
24096
|
return {
|
|
24137
|
-
baseUri: '/services/data/
|
|
24097
|
+
baseUri: '/services/data/v68.0',
|
|
24138
24098
|
basePath: '/ui-api/predupe',
|
|
24139
24099
|
method: 'post',
|
|
24140
24100
|
body: config.body,
|
|
@@ -25365,7 +25325,7 @@ function ingestError$f(luvio, params, error, snapshotRefresh) {
|
|
|
25365
25325
|
function createResourceRequest$v(config) {
|
|
25366
25326
|
const headers = {};
|
|
25367
25327
|
return {
|
|
25368
|
-
baseUri: '/services/data/
|
|
25328
|
+
baseUri: '/services/data/v68.0',
|
|
25369
25329
|
basePath: '/ui-api/record-avatars/batch/' + config.urlParams.recordIds + '',
|
|
25370
25330
|
method: 'get',
|
|
25371
25331
|
body: null,
|
|
@@ -26230,7 +26190,7 @@ function ingestError$e(luvio, params, error, snapshotRefresh) {
|
|
|
26230
26190
|
function createResourceRequest$u(config) {
|
|
26231
26191
|
const headers = {};
|
|
26232
26192
|
return {
|
|
26233
|
-
baseUri: '/services/data/
|
|
26193
|
+
baseUri: '/services/data/v68.0',
|
|
26234
26194
|
basePath: '/ui-api/related-list-count/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
26235
26195
|
method: 'get',
|
|
26236
26196
|
body: null,
|
|
@@ -26495,7 +26455,7 @@ function ingestError$d(luvio, params, error, snapshotRefresh) {
|
|
|
26495
26455
|
function createResourceRequest$t(config) {
|
|
26496
26456
|
const headers = {};
|
|
26497
26457
|
return {
|
|
26498
|
-
baseUri: '/services/data/
|
|
26458
|
+
baseUri: '/services/data/v68.0',
|
|
26499
26459
|
basePath: '/ui-api/related-list-count/batch/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListNames + '',
|
|
26500
26460
|
method: 'get',
|
|
26501
26461
|
body: null,
|
|
@@ -27189,7 +27149,7 @@ function ingestError$c(luvio, params, error, snapshotRefresh) {
|
|
|
27189
27149
|
function createResourceRequest$s(config) {
|
|
27190
27150
|
const headers = {};
|
|
27191
27151
|
return {
|
|
27192
|
-
baseUri: '/services/data/
|
|
27152
|
+
baseUri: '/services/data/v68.0',
|
|
27193
27153
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
27194
27154
|
method: 'get',
|
|
27195
27155
|
body: null,
|
|
@@ -27459,7 +27419,7 @@ function ingestError$b(luvio, params, error, snapshotRefresh) {
|
|
|
27459
27419
|
function createResourceRequest$r(config) {
|
|
27460
27420
|
const headers = {};
|
|
27461
27421
|
return {
|
|
27462
|
-
baseUri: '/services/data/
|
|
27422
|
+
baseUri: '/services/data/v68.0',
|
|
27463
27423
|
basePath: '/ui-api/related-list-info/batch/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListNames + '',
|
|
27464
27424
|
method: 'get',
|
|
27465
27425
|
body: null,
|
|
@@ -27853,7 +27813,7 @@ function ingestError$a(luvio, params, error, snapshotRefresh) {
|
|
|
27853
27813
|
function createResourceRequest$q(config) {
|
|
27854
27814
|
const headers = {};
|
|
27855
27815
|
return {
|
|
27856
|
-
baseUri: '/services/data/
|
|
27816
|
+
baseUri: '/services/data/v68.0',
|
|
27857
27817
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '',
|
|
27858
27818
|
method: 'get',
|
|
27859
27819
|
body: null,
|
|
@@ -28107,7 +28067,7 @@ function ingestSuccess$f(luvio, resourceParams, response) {
|
|
|
28107
28067
|
function createResourceRequest$p(config) {
|
|
28108
28068
|
const headers = {};
|
|
28109
28069
|
return {
|
|
28110
|
-
baseUri: '/services/data/
|
|
28070
|
+
baseUri: '/services/data/v68.0',
|
|
28111
28071
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
28112
28072
|
method: 'patch',
|
|
28113
28073
|
body: config.body,
|
|
@@ -28347,7 +28307,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
|
|
|
28347
28307
|
function createResourceRequest$o(config) {
|
|
28348
28308
|
const headers = {};
|
|
28349
28309
|
return {
|
|
28350
|
-
baseUri: '/services/data/
|
|
28310
|
+
baseUri: '/services/data/v68.0',
|
|
28351
28311
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
28352
28312
|
method: 'get',
|
|
28353
28313
|
body: null,
|
|
@@ -28609,7 +28569,7 @@ function ingestError$8(luvio, params, error, snapshotRefresh) {
|
|
|
28609
28569
|
function createResourceRequest$n(config) {
|
|
28610
28570
|
const headers = {};
|
|
28611
28571
|
return {
|
|
28612
|
-
baseUri: '/services/data/
|
|
28572
|
+
baseUri: '/services/data/v68.0',
|
|
28613
28573
|
basePath: '/ui-api/related-list-preferences/batch/' + config.urlParams.preferencesIds + '',
|
|
28614
28574
|
method: 'get',
|
|
28615
28575
|
body: null,
|
|
@@ -28818,7 +28778,7 @@ function ingestSuccess$c(luvio, resourceParams, response) {
|
|
|
28818
28778
|
function createResourceRequest$m(config) {
|
|
28819
28779
|
const headers = {};
|
|
28820
28780
|
return {
|
|
28821
|
-
baseUri: '/services/data/
|
|
28781
|
+
baseUri: '/services/data/v68.0',
|
|
28822
28782
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
28823
28783
|
method: 'patch',
|
|
28824
28784
|
body: config.body,
|
|
@@ -29882,7 +29842,7 @@ function ingestError$7(luvio, params, error, snapshotRefresh) {
|
|
|
29882
29842
|
function createResourceRequest$l(config) {
|
|
29883
29843
|
const headers = {};
|
|
29884
29844
|
return {
|
|
29885
|
-
baseUri: '/services/data/
|
|
29845
|
+
baseUri: '/services/data/v68.0',
|
|
29886
29846
|
basePath: '/ui-api/related-list-records/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
29887
29847
|
method: 'post',
|
|
29888
29848
|
body: config.body,
|
|
@@ -30167,7 +30127,7 @@ function ingestError$6(luvio, params, error, snapshotRefresh) {
|
|
|
30167
30127
|
function createResourceRequest$k(config) {
|
|
30168
30128
|
const headers = {};
|
|
30169
30129
|
return {
|
|
30170
|
-
baseUri: '/services/data/
|
|
30130
|
+
baseUri: '/services/data/v68.0',
|
|
30171
30131
|
basePath: '/ui-api/related-list-records/batch/' + config.urlParams.parentRecordId + '',
|
|
30172
30132
|
method: 'post',
|
|
30173
30133
|
body: config.body,
|
|
@@ -30710,7 +30670,7 @@ function ingestError$5(luvio, params, error, snapshotRefresh) {
|
|
|
30710
30670
|
function createResourceRequest$j(config) {
|
|
30711
30671
|
const headers = {};
|
|
30712
30672
|
return {
|
|
30713
|
-
baseUri: '/services/data/
|
|
30673
|
+
baseUri: '/services/data/v68.0',
|
|
30714
30674
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters',
|
|
30715
30675
|
method: 'get',
|
|
30716
30676
|
body: null,
|
|
@@ -30966,7 +30926,7 @@ function ingestError$4(luvio, params, error, snapshotRefresh) {
|
|
|
30966
30926
|
function createResourceRequest$i(config) {
|
|
30967
30927
|
const headers = {};
|
|
30968
30928
|
return {
|
|
30969
|
-
baseUri: '/services/data/
|
|
30929
|
+
baseUri: '/services/data/v68.0',
|
|
30970
30930
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters/' + config.urlParams.filterApiName + '/options',
|
|
30971
30931
|
method: 'get',
|
|
30972
30932
|
body: null,
|
|
@@ -31384,7 +31344,7 @@ function ingestError$3(luvio, params, error, snapshotRefresh) {
|
|
|
31384
31344
|
function createResourceRequest$h(config) {
|
|
31385
31345
|
const headers = {};
|
|
31386
31346
|
return {
|
|
31387
|
-
baseUri: '/services/data/
|
|
31347
|
+
baseUri: '/services/data/v68.0',
|
|
31388
31348
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/lookup/' + config.urlParams.fieldApiName + '',
|
|
31389
31349
|
method: 'get',
|
|
31390
31350
|
body: null,
|
|
@@ -32393,7 +32353,7 @@ function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
|
32393
32353
|
function createResourceRequest$g(config) {
|
|
32394
32354
|
const headers = {};
|
|
32395
32355
|
return {
|
|
32396
|
-
baseUri: '/services/data/
|
|
32356
|
+
baseUri: '/services/data/v68.0',
|
|
32397
32357
|
basePath: '/ui-api/search/results',
|
|
32398
32358
|
method: 'post',
|
|
32399
32359
|
body: config.body,
|
|
@@ -32667,7 +32627,7 @@ function ingestError$1(luvio, params, error, snapshotRefresh) {
|
|
|
32667
32627
|
function createResourceRequest$f(config) {
|
|
32668
32628
|
const headers = {};
|
|
32669
32629
|
return {
|
|
32670
|
-
baseUri: '/services/data/
|
|
32630
|
+
baseUri: '/services/data/v68.0',
|
|
32671
32631
|
basePath: '/ui-api/search/results/keyword',
|
|
32672
32632
|
method: 'post',
|
|
32673
32633
|
body: config.body,
|
|
@@ -32926,7 +32886,7 @@ function ingestSuccess$4(luvio, response) {
|
|
|
32926
32886
|
function createResourceRequest$e(config) {
|
|
32927
32887
|
const headers = {};
|
|
32928
32888
|
return {
|
|
32929
|
-
baseUri: '/services/data/
|
|
32889
|
+
baseUri: '/services/data/v68.0',
|
|
32930
32890
|
basePath: '/ui-api/records/batch',
|
|
32931
32891
|
method: 'post',
|
|
32932
32892
|
body: config.body,
|
|
@@ -33054,7 +33014,7 @@ function ingestSuccess$3(luvio, resourceParams, response) {
|
|
|
33054
33014
|
function createResourceRequest$d(config) {
|
|
33055
33015
|
const headers = {};
|
|
33056
33016
|
return {
|
|
33057
|
-
baseUri: '/services/data/
|
|
33017
|
+
baseUri: '/services/data/v68.0',
|
|
33058
33018
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
33059
33019
|
method: 'patch',
|
|
33060
33020
|
body: config.body,
|
|
@@ -33118,7 +33078,7 @@ function ingestSuccess$2(luvio, resourceParams, response) {
|
|
|
33118
33078
|
function createResourceRequest$c(config) {
|
|
33119
33079
|
const headers = {};
|
|
33120
33080
|
return {
|
|
33121
|
-
baseUri: '/services/data/
|
|
33081
|
+
baseUri: '/services/data/v68.0',
|
|
33122
33082
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
33123
33083
|
method: 'post',
|
|
33124
33084
|
body: config.body,
|
|
@@ -33187,7 +33147,7 @@ const factory$c = (luvio) => {
|
|
|
33187
33147
|
function createResourceRequest$b(config) {
|
|
33188
33148
|
const headers = {};
|
|
33189
33149
|
return {
|
|
33190
|
-
baseUri: '/services/data/
|
|
33150
|
+
baseUri: '/services/data/v68.0',
|
|
33191
33151
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
33192
33152
|
method: 'patch',
|
|
33193
33153
|
body: config.body,
|
|
@@ -33685,7 +33645,7 @@ function getResponseCacheKeys$7(storeKeyMap, luvio, resourceParams, response) {
|
|
|
33685
33645
|
function createResourceRequest$a(config) {
|
|
33686
33646
|
const headers = {};
|
|
33687
33647
|
return {
|
|
33688
|
-
baseUri: '/services/data/
|
|
33648
|
+
baseUri: '/services/data/v68.0',
|
|
33689
33649
|
basePath: '/ui-api/lookups/' + config.urlParams.objectApiName + '/' + config.urlParams.fieldApiName + '',
|
|
33690
33650
|
method: 'post',
|
|
33691
33651
|
body: config.body,
|
|
@@ -33927,7 +33887,7 @@ const factory$9 = (luvio) => {
|
|
|
33927
33887
|
function createResourceRequest$9(config) {
|
|
33928
33888
|
const headers = {};
|
|
33929
33889
|
return {
|
|
33930
|
-
baseUri: '/services/data/
|
|
33890
|
+
baseUri: '/services/data/v68.0',
|
|
33931
33891
|
basePath: '/ui-api/record-avatars/' + config.urlParams.recordId + '/association',
|
|
33932
33892
|
method: 'post',
|
|
33933
33893
|
body: config.body,
|
|
@@ -34536,7 +34496,7 @@ function getResponseCacheKeys$6(storeKeyMap, luvio, resourceParams, response) {
|
|
|
34536
34496
|
function createResourceRequest$8(config) {
|
|
34537
34497
|
const headers = {};
|
|
34538
34498
|
return {
|
|
34539
|
-
baseUri: '/services/data/
|
|
34499
|
+
baseUri: '/services/data/v68.0',
|
|
34540
34500
|
basePath: '/ui-api/record-defaults/create/' + config.urlParams.objectApiName + '',
|
|
34541
34501
|
method: 'get',
|
|
34542
34502
|
body: null,
|
|
@@ -35178,7 +35138,7 @@ function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
|
|
|
35178
35138
|
function createResourceRequest$7(config) {
|
|
35179
35139
|
const headers = {};
|
|
35180
35140
|
return {
|
|
35181
|
-
baseUri: '/services/data/
|
|
35141
|
+
baseUri: '/services/data/v68.0',
|
|
35182
35142
|
basePath: '/ui-api/record-defaults/template/clone/' + config.urlParams.recordId + '',
|
|
35183
35143
|
method: 'get',
|
|
35184
35144
|
body: null,
|
|
@@ -35809,7 +35769,7 @@ function ingestError(luvio, params, error, snapshotRefresh) {
|
|
|
35809
35769
|
function createResourceRequest$6(config) {
|
|
35810
35770
|
const headers = {};
|
|
35811
35771
|
return {
|
|
35812
|
-
baseUri: '/services/data/
|
|
35772
|
+
baseUri: '/services/data/v68.0',
|
|
35813
35773
|
basePath: '/ui-api/record-defaults/template/create/' + config.urlParams.objectApiName + '',
|
|
35814
35774
|
method: 'get',
|
|
35815
35775
|
body: null,
|
|
@@ -36022,7 +35982,7 @@ function getResponseCacheKeys$3(storeKeyMap, luvio, resourceParams, response) {
|
|
|
36022
35982
|
function createResourceRequest$5(config) {
|
|
36023
35983
|
const headers = {};
|
|
36024
35984
|
return {
|
|
36025
|
-
baseUri: '/services/data/
|
|
35985
|
+
baseUri: '/services/data/v68.0',
|
|
36026
35986
|
basePath: '/ui-api/records',
|
|
36027
35987
|
method: 'post',
|
|
36028
35988
|
body: config.body,
|
|
@@ -36128,7 +36088,7 @@ function evictSuccess(luvio, resourceParams) {
|
|
|
36128
36088
|
function createResourceRequest$3(config) {
|
|
36129
36089
|
const headers = {};
|
|
36130
36090
|
return {
|
|
36131
|
-
baseUri: '/services/data/
|
|
36091
|
+
baseUri: '/services/data/v68.0',
|
|
36132
36092
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
36133
36093
|
method: 'delete',
|
|
36134
36094
|
body: null,
|
|
@@ -36218,7 +36178,7 @@ function createResourceRequest$2(config) {
|
|
|
36218
36178
|
headers['If-Unmodified-Since'] = header_ifUnmodifiedSince;
|
|
36219
36179
|
}
|
|
36220
36180
|
return {
|
|
36221
|
-
baseUri: '/services/data/
|
|
36181
|
+
baseUri: '/services/data/v68.0',
|
|
36222
36182
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
36223
36183
|
method: 'patch',
|
|
36224
36184
|
body: config.body,
|
|
@@ -36557,7 +36517,7 @@ function createResourceParams$1(config) {
|
|
|
36557
36517
|
function createResourceRequest$1(config) {
|
|
36558
36518
|
const headers = {};
|
|
36559
36519
|
return {
|
|
36560
|
-
baseUri: '/services/data/
|
|
36520
|
+
baseUri: '/services/data/v68.0',
|
|
36561
36521
|
basePath: '/ui-api/records/content-documents/' +
|
|
36562
36522
|
config.urlParams.contentDocumentId +
|
|
36563
36523
|
'/content-versions',
|
|
@@ -36675,7 +36635,7 @@ function createResourceParams(config) {
|
|
|
36675
36635
|
function createResourceRequest(config) {
|
|
36676
36636
|
const headers = {};
|
|
36677
36637
|
return {
|
|
36678
|
-
baseUri: '/services/data/
|
|
36638
|
+
baseUri: '/services/data/v68.0',
|
|
36679
36639
|
basePath: '/ui-api/records/content-documents/content-versions',
|
|
36680
36640
|
method: 'post',
|
|
36681
36641
|
body: config.body,
|
|
@@ -37182,18 +37142,18 @@ function bindExportsTo(luvio) {
|
|
|
37182
37142
|
const getRecordTemplateCreate_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordTemplateCreate', configurationForEnvironmentFactoryOverrides.getRecordTemplateCreateAdapterFactory() ?? factory$5), getRecordTemplateCreateMetadata);
|
|
37183
37143
|
const getRecordUi_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordUi', configurationForEnvironmentFactoryOverrides.getRecordUiAdapterFactory() ?? factory$g), getRecordUiMetadata);
|
|
37184
37144
|
const getRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRecords', configurationForEnvironmentFactoryOverrides.getRecordsAdapterFactory() ?? getRecordsAdapterFactory), luvio, 'getRecords'), getRecordsMetadata);
|
|
37185
|
-
const getRelatedListActions_ldsAdapter = createInstrumentedAdapter(
|
|
37145
|
+
const getRelatedListActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListActions', getRelatedListActionsAdapterFactory), luvio, 'getRelatedListActions'), getRelatedListActionsMetadata);
|
|
37186
37146
|
const getRelatedListCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListCount', getRelatedListCountAdapterFactory), getRelatedListCountMetadata);
|
|
37187
|
-
const getRelatedListInfo_ldsAdapter = createInstrumentedAdapter(
|
|
37188
|
-
const getRelatedListInfoBatch_ldsAdapter = createInstrumentedAdapter(
|
|
37147
|
+
const getRelatedListInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListInfo', getRelatedListInfoAdapterFactory), luvio, 'getRelatedListInfo'), getRelatedListInfoMetadata);
|
|
37148
|
+
const getRelatedListInfoBatch_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListInfoBatch', getRelatedListInfoBatchAdapterFactory), luvio, 'getRelatedListInfoBatch'), getRelatedListInfoBatchMetadata);
|
|
37189
37149
|
const getRelatedListPreferences_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListPreferences', getRelatedListPreferencesAdapterFactory), getRelatedListPreferencesMetadata);
|
|
37190
37150
|
const getRelatedListPreferencesBatch_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListPreferencesBatch', getRelatedListPreferencesBatchAdapterFactory), getRelatedListPreferencesBatchMetadata);
|
|
37191
37151
|
const getRelatedListRecordActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListRecordActions', getRelatedListRecordActionsAdapterFactory), getRelatedListRecordActionsMetadata);
|
|
37192
|
-
const getRelatedListRecords_ldsAdapter = createInstrumentedAdapter(
|
|
37193
|
-
const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(
|
|
37194
|
-
const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(
|
|
37152
|
+
const getRelatedListRecords_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecords', configurationForEnvironmentFactoryOverrides.getRelatedListRecordsAdapterFactory() ?? getRelatedListRecordsAdapterFactory), luvio, 'getRelatedListRecords'), getRelatedListRecordsMetadata);
|
|
37153
|
+
const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecordsBatch', configurationForEnvironmentFactoryOverrides.getRelatedListRecordsBatchAdapterFactory() ?? getRelatedListRecordsBatchAdapterFactory), luvio, 'getRelatedListRecordsBatch'), getRelatedListRecordsBatchMetadata);
|
|
37154
|
+
const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsActions', getRelatedListsActionsAdapterFactory), luvio, 'getRelatedListsActions'), getRelatedListsActionsMetadata);
|
|
37195
37155
|
const getRelatedListsCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsCount', getRelatedListsCountAdapterFactory), getRelatedListsCountMetadata);
|
|
37196
|
-
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(
|
|
37156
|
+
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsInfo', getRelatedListsInfoAdapterFactory), luvio, 'getRelatedListsInfo'), getRelatedListsInfoMetadata);
|
|
37197
37157
|
const getSearchFilterMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterMetadata', getSearchFilterMetadataAdapterFactory), getSearchFilterMetadataMetadata);
|
|
37198
37158
|
const getSearchFilterOptions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterOptions', getSearchFilterOptionsAdapterFactory), getSearchFilterOptionsMetadata);
|
|
37199
37159
|
const getSearchResults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchResults', configurationForEnvironmentFactoryOverrides.getSearchResultsAdapterFactory() ?? getSearchResultsAdapterFactory), getSearchResultsMetadata);
|
|
@@ -37536,5 +37496,5 @@ withDefaultLuvio((luvio) => {
|
|
|
37536
37496
|
notifyAllListInfoSummaryUpdateAvailable = throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
37537
37497
|
});
|
|
37538
37498
|
|
|
37539
|
-
export { API_NAMESPACE, VERSION$1i as FieldValueRepresentationVersion, 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$1g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord,
|
|
37540
|
-
// version: 1.
|
|
37499
|
+
export { API_NAMESPACE, VERSION$1i as FieldValueRepresentationVersion, 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$1g as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, coerceLayoutModeArray, getLayoutTypeArray as coerceLayoutTypeArray, getObjectApiName$1 as coerceObjectId, getObjectApiNamesArray as coerceObjectIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord, 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, getRecordId18Array, getRecordIngestionOverride, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActionsAdapterFactory, 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, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$E 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 };
|
|
37500
|
+
// version: 1.432.0-b99ba9d219
|