@salesforce/lds-worker-api 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.
|
@@ -4265,7 +4265,7 @@ function withDefaultLuvio(callback) {
|
|
|
4265
4265
|
}
|
|
4266
4266
|
callbacks.push(callback);
|
|
4267
4267
|
}
|
|
4268
|
-
// version: 1.
|
|
4268
|
+
// version: 1.336.0-7d2c781c74
|
|
4269
4269
|
|
|
4270
4270
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4271
4271
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -5213,7 +5213,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
|
|
|
5213
5213
|
const { apiFamily, name } = metadata;
|
|
5214
5214
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
5215
5215
|
}
|
|
5216
|
-
// version: 1.
|
|
5216
|
+
// version: 1.336.0-7d2c781c74
|
|
5217
5217
|
|
|
5218
5218
|
/**
|
|
5219
5219
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -5379,6 +5379,10 @@ let oneStoreGetObjectInfosAdapter$3 = undefined;
|
|
|
5379
5379
|
* Determines when to include PDL strategies for Related Lists
|
|
5380
5380
|
*/
|
|
5381
5381
|
let relatedListsPredictionsEnabled$3 = false;
|
|
5382
|
+
/**
|
|
5383
|
+
* Determines whether to include additional PDL strategies for Related Lists
|
|
5384
|
+
*/
|
|
5385
|
+
let relatedListsPlusPredictionsEnabled$3 = false;
|
|
5382
5386
|
/**
|
|
5383
5387
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
5384
5388
|
* Configuration for one store enabled REST adapters only.
|
|
@@ -5478,6 +5482,12 @@ const configurationForEnvironmentFactoryOverrides$3 = {
|
|
|
5478
5482
|
areRelatedListsPredictionsEnabled: function () {
|
|
5479
5483
|
return relatedListsPredictionsEnabled$3 === true;
|
|
5480
5484
|
},
|
|
5485
|
+
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
5486
|
+
relatedListsPlusPredictionsEnabled$3 = f;
|
|
5487
|
+
},
|
|
5488
|
+
areRelatedListsPlusPredictionsEnabled: function () {
|
|
5489
|
+
return relatedListsPlusPredictionsEnabled$3 === true;
|
|
5490
|
+
},
|
|
5481
5491
|
// createRecord
|
|
5482
5492
|
getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter$3.getAdapter,
|
|
5483
5493
|
setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter$3.setAdapter,
|
|
@@ -5627,6 +5637,10 @@ let oneStoreGetObjectInfosAdapter$2 = undefined;
|
|
|
5627
5637
|
* Determines when to include PDL strategies for Related Lists
|
|
5628
5638
|
*/
|
|
5629
5639
|
let relatedListsPredictionsEnabled$2 = false;
|
|
5640
|
+
/**
|
|
5641
|
+
* Determines whether to include additional PDL strategies for Related Lists
|
|
5642
|
+
*/
|
|
5643
|
+
let relatedListsPlusPredictionsEnabled$2 = false;
|
|
5630
5644
|
/**
|
|
5631
5645
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
5632
5646
|
* Configuration for one store enabled REST adapters only.
|
|
@@ -5735,6 +5749,12 @@ const configurationForRestAdapters$2 = {
|
|
|
5735
5749
|
areRelatedListsPredictionsEnabled: function () {
|
|
5736
5750
|
return relatedListsPredictionsEnabled$2 === true;
|
|
5737
5751
|
},
|
|
5752
|
+
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
5753
|
+
relatedListsPlusPredictionsEnabled$2 = f;
|
|
5754
|
+
},
|
|
5755
|
+
areRelatedListsPlusPredictionsEnabled: function () {
|
|
5756
|
+
return relatedListsPlusPredictionsEnabled$2 === true;
|
|
5757
|
+
},
|
|
5738
5758
|
// createRecord
|
|
5739
5759
|
getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter$2.getAdapter,
|
|
5740
5760
|
setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter$2.setAdapter,
|
|
@@ -5870,6 +5890,16 @@ function createRelatedListAdapterWithPrediction(adapter, luvio, name) {
|
|
|
5870
5890
|
};
|
|
5871
5891
|
}
|
|
5872
5892
|
}
|
|
5893
|
+
function createRelatedListPlusAdapterWithPrediction(adapter, luvio, name) {
|
|
5894
|
+
if (configurationForRestAdapters$2.areRelatedListsPlusPredictionsEnabled() /* gate is open */) {
|
|
5895
|
+
return createLDSAdapterWithPrediction(adapter, luvio, name);
|
|
5896
|
+
}
|
|
5897
|
+
else {
|
|
5898
|
+
return (config, requestContext) => {
|
|
5899
|
+
return adapter(config, requestContext);
|
|
5900
|
+
};
|
|
5901
|
+
}
|
|
5902
|
+
}
|
|
5873
5903
|
|
|
5874
5904
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty$3 } = Object.prototype;
|
|
5875
5905
|
const { keys: ObjectKeys$1$3, create: ObjectCreate$1$3 } = Object;
|
|
@@ -10020,7 +10050,7 @@ function getResponseCacheKeys$12(storeKeyMap, luvio, resourceParams, response) {
|
|
|
10020
10050
|
function createResourceRequest$1c(config) {
|
|
10021
10051
|
const headers = {};
|
|
10022
10052
|
return {
|
|
10023
|
-
baseUri: '/services/data/
|
|
10053
|
+
baseUri: '/services/data/v64.0',
|
|
10024
10054
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
10025
10055
|
method: 'get',
|
|
10026
10056
|
body: null,
|
|
@@ -10449,7 +10479,7 @@ function ingestError$L(luvio, params, error, snapshotRefresh) {
|
|
|
10449
10479
|
function createResourceRequest$1b(config) {
|
|
10450
10480
|
const headers = {};
|
|
10451
10481
|
return {
|
|
10452
|
-
baseUri: '/services/data/
|
|
10482
|
+
baseUri: '/services/data/v64.0',
|
|
10453
10483
|
basePath: '/ui-api/records/batch/' + config.urlParams.recordIds + '',
|
|
10454
10484
|
method: 'get',
|
|
10455
10485
|
body: null,
|
|
@@ -11261,7 +11291,7 @@ function createPaginationParams$6(params) {
|
|
|
11261
11291
|
function createResourceRequest$1a(config) {
|
|
11262
11292
|
const headers = {};
|
|
11263
11293
|
return {
|
|
11264
|
-
baseUri: '/services/data/
|
|
11294
|
+
baseUri: '/services/data/v64.0',
|
|
11265
11295
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
11266
11296
|
method: 'get',
|
|
11267
11297
|
body: null,
|
|
@@ -11311,7 +11341,7 @@ function createPaginationParams$5$1(params) {
|
|
|
11311
11341
|
function createResourceRequest$19(config) {
|
|
11312
11342
|
const headers = {};
|
|
11313
11343
|
return {
|
|
11314
|
-
baseUri: '/services/data/
|
|
11344
|
+
baseUri: '/services/data/v64.0',
|
|
11315
11345
|
basePath: '/ui-api/list-ui/' + config.urlParams.listViewId + '',
|
|
11316
11346
|
method: 'get',
|
|
11317
11347
|
body: null,
|
|
@@ -11353,7 +11383,7 @@ function validateAdapterConfig$16(untrustedConfig, configPropertyNames) {
|
|
|
11353
11383
|
function createResourceRequest$18(config) {
|
|
11354
11384
|
const headers = {};
|
|
11355
11385
|
return {
|
|
11356
|
-
baseUri: '/services/data/
|
|
11386
|
+
baseUri: '/services/data/v64.0',
|
|
11357
11387
|
basePath: '/ui-api/list-records/' + config.urlParams.listViewId + '',
|
|
11358
11388
|
method: 'get',
|
|
11359
11389
|
body: null,
|
|
@@ -12178,7 +12208,7 @@ function ingestError$K(luvio, params, error, snapshotRefresh) {
|
|
|
12178
12208
|
function createResourceRequest$17(config) {
|
|
12179
12209
|
const headers = {};
|
|
12180
12210
|
return {
|
|
12181
|
-
baseUri: '/services/data/
|
|
12211
|
+
baseUri: '/services/data/v64.0',
|
|
12182
12212
|
basePath: '/ui-api/list-records/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
12183
12213
|
method: 'post',
|
|
12184
12214
|
body: config.body,
|
|
@@ -12649,7 +12679,7 @@ function ingestError$J(luvio, params, error, snapshotRefresh) {
|
|
|
12649
12679
|
function createResourceRequest$16(config) {
|
|
12650
12680
|
const headers = {};
|
|
12651
12681
|
return {
|
|
12652
|
-
baseUri: '/services/data/
|
|
12682
|
+
baseUri: '/services/data/v64.0',
|
|
12653
12683
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '',
|
|
12654
12684
|
method: 'get',
|
|
12655
12685
|
body: null,
|
|
@@ -12844,7 +12874,7 @@ function keyBuilder$1Z(luvio, params) {
|
|
|
12844
12874
|
function createResourceRequest$15(config) {
|
|
12845
12875
|
const headers = {};
|
|
12846
12876
|
return {
|
|
12847
|
-
baseUri: '/services/data/
|
|
12877
|
+
baseUri: '/services/data/v64.0',
|
|
12848
12878
|
basePath: '/ui-api/mru-list-ui/' + config.urlParams.objectApiName + '',
|
|
12849
12879
|
method: 'get',
|
|
12850
12880
|
body: null,
|
|
@@ -12886,7 +12916,7 @@ function validateAdapterConfig$14(untrustedConfig, configPropertyNames) {
|
|
|
12886
12916
|
function createResourceRequest$14(config) {
|
|
12887
12917
|
const headers = {};
|
|
12888
12918
|
return {
|
|
12889
|
-
baseUri: '/services/data/
|
|
12919
|
+
baseUri: '/services/data/v64.0',
|
|
12890
12920
|
basePath: '/ui-api/mru-list-records/' + config.urlParams.objectApiName + '',
|
|
12891
12921
|
method: 'get',
|
|
12892
12922
|
body: null,
|
|
@@ -13861,7 +13891,7 @@ function ingestError$I(luvio, params, error, snapshotRefresh) {
|
|
|
13861
13891
|
function createResourceRequest$13(config) {
|
|
13862
13892
|
const headers = {};
|
|
13863
13893
|
return {
|
|
13864
|
-
baseUri: '/services/data/
|
|
13894
|
+
baseUri: '/services/data/v64.0',
|
|
13865
13895
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '',
|
|
13866
13896
|
method: 'get',
|
|
13867
13897
|
body: null,
|
|
@@ -14308,7 +14338,7 @@ const ingest$E$2 = function RecordUiRepresentationIngest(input, path, luvio, sto
|
|
|
14308
14338
|
function createResourceRequest$12(config) {
|
|
14309
14339
|
const headers = {};
|
|
14310
14340
|
return {
|
|
14311
|
-
baseUri: '/services/data/
|
|
14341
|
+
baseUri: '/services/data/v64.0',
|
|
14312
14342
|
basePath: '/ui-api/record-ui/' + config.urlParams.recordIds + '',
|
|
14313
14343
|
method: 'get',
|
|
14314
14344
|
body: null,
|
|
@@ -16310,7 +16340,7 @@ function ingestError$H(luvio, params, error, snapshotRefresh) {
|
|
|
16310
16340
|
function createResourceRequest$11(config) {
|
|
16311
16341
|
const headers = {};
|
|
16312
16342
|
return {
|
|
16313
|
-
baseUri: '/services/data/
|
|
16343
|
+
baseUri: '/services/data/v64.0',
|
|
16314
16344
|
basePath: '/ui-api/actions/global',
|
|
16315
16345
|
method: 'get',
|
|
16316
16346
|
body: null,
|
|
@@ -16504,7 +16534,7 @@ function ingestError$G(luvio, params, error, snapshotRefresh) {
|
|
|
16504
16534
|
function createResourceRequest$10(config) {
|
|
16505
16535
|
const headers = {};
|
|
16506
16536
|
return {
|
|
16507
|
-
baseUri: '/services/data/
|
|
16537
|
+
baseUri: '/services/data/v64.0',
|
|
16508
16538
|
basePath: '/ui-api/actions/layout/' + config.urlParams.actionApiName + '',
|
|
16509
16539
|
method: 'get',
|
|
16510
16540
|
body: null,
|
|
@@ -16668,7 +16698,7 @@ function ingestError$F(luvio, params, error, snapshotRefresh) {
|
|
|
16668
16698
|
function createResourceRequest$$(config) {
|
|
16669
16699
|
const headers = {};
|
|
16670
16700
|
return {
|
|
16671
|
-
baseUri: '/services/data/
|
|
16701
|
+
baseUri: '/services/data/v64.0',
|
|
16672
16702
|
basePath: '/ui-api/actions/lookup/' + config.urlParams.objectApiNames + '',
|
|
16673
16703
|
method: 'get',
|
|
16674
16704
|
body: null,
|
|
@@ -16802,7 +16832,7 @@ function ingestError$E(luvio, params, error, snapshotRefresh) {
|
|
|
16802
16832
|
function createResourceRequest$_(config) {
|
|
16803
16833
|
const headers = {};
|
|
16804
16834
|
return {
|
|
16805
|
-
baseUri: '/services/data/
|
|
16835
|
+
baseUri: '/services/data/v64.0',
|
|
16806
16836
|
basePath: '/ui-api/actions/object/' + config.urlParams.objectApiName + '/record-create',
|
|
16807
16837
|
method: 'get',
|
|
16808
16838
|
body: null,
|
|
@@ -16965,7 +16995,7 @@ function ingestError$D(luvio, params, error, snapshotRefresh) {
|
|
|
16965
16995
|
function createResourceRequest$Z(config) {
|
|
16966
16996
|
const headers = {};
|
|
16967
16997
|
return {
|
|
16968
|
-
baseUri: '/services/data/
|
|
16998
|
+
baseUri: '/services/data/v64.0',
|
|
16969
16999
|
basePath: '/ui-api/actions/overrides/' + config.urlParams.objectApiName + '',
|
|
16970
17000
|
method: 'get',
|
|
16971
17001
|
body: null,
|
|
@@ -17142,7 +17172,7 @@ function ingestError$C(luvio, params, error, snapshotRefresh) {
|
|
|
17142
17172
|
function createResourceRequest$Y(config) {
|
|
17143
17173
|
const headers = {};
|
|
17144
17174
|
return {
|
|
17145
|
-
baseUri: '/services/data/
|
|
17175
|
+
baseUri: '/services/data/v64.0',
|
|
17146
17176
|
basePath: '/ui-api/actions/formula-activation/' + config.urlParams.actionFeature + '',
|
|
17147
17177
|
method: 'get',
|
|
17148
17178
|
body: null,
|
|
@@ -17749,7 +17779,7 @@ function ingestError$B(luvio, params, error, snapshotRefresh) {
|
|
|
17749
17779
|
function createResourceRequest$X(config) {
|
|
17750
17780
|
const headers = {};
|
|
17751
17781
|
return {
|
|
17752
|
-
baseUri: '/services/data/
|
|
17782
|
+
baseUri: '/services/data/v64.0',
|
|
17753
17783
|
basePath: '/ui-api/actions/quick-action-info/' + config.urlParams.actionApiName + '',
|
|
17754
17784
|
method: 'get',
|
|
17755
17785
|
body: null,
|
|
@@ -17951,7 +17981,7 @@ function ingestError$A(luvio, params, error, snapshotRefresh) {
|
|
|
17951
17981
|
function createResourceRequest$W(config) {
|
|
17952
17982
|
const headers = {};
|
|
17953
17983
|
return {
|
|
17954
|
-
baseUri: '/services/data/
|
|
17984
|
+
baseUri: '/services/data/v64.0',
|
|
17955
17985
|
basePath: '/ui-api/actions/record-defaults/' + config.urlParams.actionApiName + '',
|
|
17956
17986
|
method: 'get',
|
|
17957
17987
|
body: null,
|
|
@@ -18107,7 +18137,7 @@ function ingestError$z(luvio, params, error, snapshotRefresh) {
|
|
|
18107
18137
|
function createResourceRequest$V(config) {
|
|
18108
18138
|
const headers = {};
|
|
18109
18139
|
return {
|
|
18110
|
-
baseUri: '/services/data/
|
|
18140
|
+
baseUri: '/services/data/v64.0',
|
|
18111
18141
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '',
|
|
18112
18142
|
method: 'get',
|
|
18113
18143
|
body: null,
|
|
@@ -18247,7 +18277,7 @@ function ingestError$y(luvio, params, error, snapshotRefresh) {
|
|
|
18247
18277
|
function createResourceRequest$U(config) {
|
|
18248
18278
|
const headers = {};
|
|
18249
18279
|
return {
|
|
18250
|
-
baseUri: '/services/data/
|
|
18280
|
+
baseUri: '/services/data/v64.0',
|
|
18251
18281
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/record-edit',
|
|
18252
18282
|
method: 'get',
|
|
18253
18283
|
body: null,
|
|
@@ -18451,7 +18481,7 @@ function ingestError$x(luvio, params, error, snapshotRefresh) {
|
|
|
18451
18481
|
function createResourceRequest$T(config) {
|
|
18452
18482
|
const headers = {};
|
|
18453
18483
|
return {
|
|
18454
|
-
baseUri: '/services/data/
|
|
18484
|
+
baseUri: '/services/data/v64.0',
|
|
18455
18485
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/' + config.urlParams.relatedListId + '',
|
|
18456
18486
|
method: 'post',
|
|
18457
18487
|
body: config.body,
|
|
@@ -18726,7 +18756,7 @@ function ingestError$w(luvio, params, error, snapshotRefresh) {
|
|
|
18726
18756
|
function createResourceRequest$S(config) {
|
|
18727
18757
|
const headers = {};
|
|
18728
18758
|
return {
|
|
18729
|
-
baseUri: '/services/data/
|
|
18759
|
+
baseUri: '/services/data/v64.0',
|
|
18730
18760
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/batch',
|
|
18731
18761
|
method: 'post',
|
|
18732
18762
|
body: config.body,
|
|
@@ -18960,7 +18990,7 @@ function ingestError$v(luvio, params, error, snapshotRefresh) {
|
|
|
18960
18990
|
function createResourceRequest$R(config) {
|
|
18961
18991
|
const headers = {};
|
|
18962
18992
|
return {
|
|
18963
|
-
baseUri: '/services/data/
|
|
18993
|
+
baseUri: '/services/data/v64.0',
|
|
18964
18994
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list-record/' + config.urlParams.relatedListRecordIds + '',
|
|
18965
18995
|
method: 'get',
|
|
18966
18996
|
body: null,
|
|
@@ -19681,7 +19711,7 @@ function ingestError$u(luvio, params, error, snapshotRefresh) {
|
|
|
19681
19711
|
function createResourceRequest$Q(config) {
|
|
19682
19712
|
const headers = {};
|
|
19683
19713
|
return {
|
|
19684
|
-
baseUri: '/services/data/
|
|
19714
|
+
baseUri: '/services/data/v64.0',
|
|
19685
19715
|
basePath: '/ui-api/apps',
|
|
19686
19716
|
method: 'get',
|
|
19687
19717
|
body: null,
|
|
@@ -19815,7 +19845,7 @@ function ingestError$t(luvio, params, error, snapshotRefresh) {
|
|
|
19815
19845
|
function createResourceRequest$P(config) {
|
|
19816
19846
|
const headers = {};
|
|
19817
19847
|
return {
|
|
19818
|
-
baseUri: '/services/data/
|
|
19848
|
+
baseUri: '/services/data/v64.0',
|
|
19819
19849
|
basePath: '/ui-api/apps/' + config.urlParams.appId + '',
|
|
19820
19850
|
method: 'get',
|
|
19821
19851
|
body: null,
|
|
@@ -20151,7 +20181,7 @@ function ingestError$s(luvio, params, error, snapshotRefresh) {
|
|
|
20151
20181
|
function createResourceRequest$O(config) {
|
|
20152
20182
|
const headers = {};
|
|
20153
20183
|
return {
|
|
20154
|
-
baseUri: '/services/data/
|
|
20184
|
+
baseUri: '/services/data/v64.0',
|
|
20155
20185
|
basePath: '/ui-api/duplicates/' + config.urlParams.objectApiName + '',
|
|
20156
20186
|
method: 'get',
|
|
20157
20187
|
body: null,
|
|
@@ -20287,7 +20317,7 @@ function ingestError$r(luvio, params, error, snapshotRefresh) {
|
|
|
20287
20317
|
function createResourceRequest$N(config) {
|
|
20288
20318
|
const headers = {};
|
|
20289
20319
|
return {
|
|
20290
|
-
baseUri: '/services/data/
|
|
20320
|
+
baseUri: '/services/data/v64.0',
|
|
20291
20321
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '',
|
|
20292
20322
|
method: 'get',
|
|
20293
20323
|
body: null,
|
|
@@ -20424,7 +20454,7 @@ function getResponseCacheKeys$I(storeKeyMap, luvio, resourceParams, response) {
|
|
|
20424
20454
|
function createResourceRequest$M(config) {
|
|
20425
20455
|
const headers = {};
|
|
20426
20456
|
return {
|
|
20427
|
-
baseUri: '/services/data/
|
|
20457
|
+
baseUri: '/services/data/v64.0',
|
|
20428
20458
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
20429
20459
|
method: 'get',
|
|
20430
20460
|
body: null,
|
|
@@ -20650,7 +20680,7 @@ function ingestError$q(luvio, params, error, snapshotRefresh) {
|
|
|
20650
20680
|
function createResourceRequest$L(config) {
|
|
20651
20681
|
const headers = {};
|
|
20652
20682
|
return {
|
|
20653
|
-
baseUri: '/services/data/
|
|
20683
|
+
baseUri: '/services/data/v64.0',
|
|
20654
20684
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
20655
20685
|
method: 'get',
|
|
20656
20686
|
body: null,
|
|
@@ -20909,7 +20939,7 @@ function ingestError$p(luvio, params, error, snapshotRefresh) {
|
|
|
20909
20939
|
function createResourceRequest$K(config) {
|
|
20910
20940
|
const headers = {};
|
|
20911
20941
|
return {
|
|
20912
|
-
baseUri: '/services/data/
|
|
20942
|
+
baseUri: '/services/data/v64.0',
|
|
20913
20943
|
basePath: '/ui-api/list-info/batch',
|
|
20914
20944
|
method: 'get',
|
|
20915
20945
|
body: null,
|
|
@@ -21046,7 +21076,7 @@ function ingestError$o(luvio, params, error, snapshotRefresh) {
|
|
|
21046
21076
|
function createResourceRequest$J(config) {
|
|
21047
21077
|
const headers = {};
|
|
21048
21078
|
return {
|
|
21049
|
-
baseUri: '/services/data/
|
|
21079
|
+
baseUri: '/services/data/v64.0',
|
|
21050
21080
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
21051
21081
|
method: 'get',
|
|
21052
21082
|
body: null,
|
|
@@ -21344,7 +21374,7 @@ function ingestSuccess$w(luvio, resourceParams, response) {
|
|
|
21344
21374
|
function createResourceRequest$I(config) {
|
|
21345
21375
|
const headers = {};
|
|
21346
21376
|
return {
|
|
21347
|
-
baseUri: '/services/data/
|
|
21377
|
+
baseUri: '/services/data/v64.0',
|
|
21348
21378
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
21349
21379
|
method: 'post',
|
|
21350
21380
|
body: config.body,
|
|
@@ -21454,7 +21484,7 @@ function evictSuccess$1(luvio, resourceParams) {
|
|
|
21454
21484
|
function createResourceRequest$H(config) {
|
|
21455
21485
|
const headers = {};
|
|
21456
21486
|
return {
|
|
21457
|
-
baseUri: '/services/data/
|
|
21487
|
+
baseUri: '/services/data/v64.0',
|
|
21458
21488
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
21459
21489
|
method: 'delete',
|
|
21460
21490
|
body: null,
|
|
@@ -21621,7 +21651,7 @@ function ingestSuccess$v(luvio, resourceParams, response) {
|
|
|
21621
21651
|
function createResourceRequest$G(config) {
|
|
21622
21652
|
const headers = {};
|
|
21623
21653
|
return {
|
|
21624
|
-
baseUri: '/services/data/
|
|
21654
|
+
baseUri: '/services/data/v64.0',
|
|
21625
21655
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
21626
21656
|
method: 'patch',
|
|
21627
21657
|
body: config.body,
|
|
@@ -22090,7 +22120,7 @@ function ingestError$n(luvio, params, error, snapshotRefresh) {
|
|
|
22090
22120
|
function createResourceRequest$F(config) {
|
|
22091
22121
|
const headers = {};
|
|
22092
22122
|
return {
|
|
22093
|
-
baseUri: '/services/data/
|
|
22123
|
+
baseUri: '/services/data/v64.0',
|
|
22094
22124
|
basePath: '/ui-api/list-object-info/' + config.urlParams.objectApiName + '',
|
|
22095
22125
|
method: 'get',
|
|
22096
22126
|
body: null,
|
|
@@ -22326,7 +22356,7 @@ function ingestError$m(luvio, params, error, snapshotRefresh) {
|
|
|
22326
22356
|
function createResourceRequest$E(config) {
|
|
22327
22357
|
const headers = {};
|
|
22328
22358
|
return {
|
|
22329
|
-
baseUri: '/services/data/
|
|
22359
|
+
baseUri: '/services/data/v64.0',
|
|
22330
22360
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22331
22361
|
method: 'get',
|
|
22332
22362
|
body: null,
|
|
@@ -22462,7 +22492,7 @@ function ingestSuccess$s(luvio, resourceParams, response) {
|
|
|
22462
22492
|
function createResourceRequest$D(config) {
|
|
22463
22493
|
const headers = {};
|
|
22464
22494
|
return {
|
|
22465
|
-
baseUri: '/services/data/
|
|
22495
|
+
baseUri: '/services/data/v64.0',
|
|
22466
22496
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22467
22497
|
method: 'patch',
|
|
22468
22498
|
body: config.body,
|
|
@@ -22702,7 +22732,7 @@ function ingestError$l(luvio, params, error, snapshotRefresh) {
|
|
|
22702
22732
|
function createResourceRequest$C(config) {
|
|
22703
22733
|
const headers = {};
|
|
22704
22734
|
return {
|
|
22705
|
-
baseUri: '/services/data/
|
|
22735
|
+
baseUri: '/services/data/v64.0',
|
|
22706
22736
|
basePath: '/ui-api/nav-items',
|
|
22707
22737
|
method: 'get',
|
|
22708
22738
|
body: null,
|
|
@@ -22830,7 +22860,7 @@ function ingestError$k(luvio, params, error, snapshotRefresh) {
|
|
|
22830
22860
|
function createResourceRequest$B(config) {
|
|
22831
22861
|
const headers = {};
|
|
22832
22862
|
return {
|
|
22833
|
-
baseUri: '/services/data/
|
|
22863
|
+
baseUri: '/services/data/v64.0',
|
|
22834
22864
|
basePath: '/ui-api/object-info',
|
|
22835
22865
|
method: 'get',
|
|
22836
22866
|
body: null,
|
|
@@ -23162,7 +23192,7 @@ function ingestError$j(luvio, params, error, snapshotRefresh) {
|
|
|
23162
23192
|
function createResourceRequest$A(config) {
|
|
23163
23193
|
const headers = {};
|
|
23164
23194
|
return {
|
|
23165
|
-
baseUri: '/services/data/
|
|
23195
|
+
baseUri: '/services/data/v64.0',
|
|
23166
23196
|
basePath: '/ui-api/object-info/batch/' + config.urlParams.objectApiNames + '',
|
|
23167
23197
|
method: 'get',
|
|
23168
23198
|
body: null,
|
|
@@ -23416,8 +23446,8 @@ const select$L$2 = function PicklistValueRepresentationSelect() {
|
|
|
23416
23446
|
const keyBuilderFromType$i$1 =
|
|
23417
23447
|
/**
|
|
23418
23448
|
* custom key builder from PicklistValuesRepresentation.
|
|
23419
|
-
* PicklistValuesRepresentation.url is like /services/data/
|
|
23420
|
-
* the '/services/data/
|
|
23449
|
+
* PicklistValuesRepresentation.url is like /services/data/v64.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/AccountSource
|
|
23450
|
+
* the '/services/data/v64.0' in the key make trouble for new js release. so chop it off make the key unique cross releases.
|
|
23421
23451
|
*/
|
|
23422
23452
|
function PicklistValuesRepresentationKeyBuilderFromType(luvio, object) {
|
|
23423
23453
|
const id = object.url.substring(object.url.indexOf('/ui-api'));
|
|
@@ -23607,7 +23637,7 @@ function ingestError$i(luvio, params, error, snapshotRefresh) {
|
|
|
23607
23637
|
function createResourceRequest$z(config) {
|
|
23608
23638
|
const headers = {};
|
|
23609
23639
|
return {
|
|
23610
|
-
baseUri: '/services/data/
|
|
23640
|
+
baseUri: '/services/data/v64.0',
|
|
23611
23641
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '',
|
|
23612
23642
|
method: 'get',
|
|
23613
23643
|
body: null,
|
|
@@ -23709,7 +23739,7 @@ function getResponseCacheKeys$u(storeKeyMap, luvio, resourceParams, response) {
|
|
|
23709
23739
|
function createResourceRequest$y(config) {
|
|
23710
23740
|
const headers = {};
|
|
23711
23741
|
return {
|
|
23712
|
-
baseUri: '/services/data/
|
|
23742
|
+
baseUri: '/services/data/v64.0',
|
|
23713
23743
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '/' + config.urlParams.fieldApiName + '',
|
|
23714
23744
|
method: 'get',
|
|
23715
23745
|
body: null,
|
|
@@ -23914,7 +23944,7 @@ function ingestError$h(luvio, params, error, snapshotRefresh) {
|
|
|
23914
23944
|
function createResourceRequest$x(config) {
|
|
23915
23945
|
const headers = {};
|
|
23916
23946
|
return {
|
|
23917
|
-
baseUri: '/services/data/
|
|
23947
|
+
baseUri: '/services/data/v64.0',
|
|
23918
23948
|
basePath: '/ui-api/path/layout/' + config.urlParams.objectApiName + '',
|
|
23919
23949
|
method: 'get',
|
|
23920
23950
|
body: null,
|
|
@@ -24085,7 +24115,7 @@ function ingestError$g(luvio, params, error, snapshotRefresh) {
|
|
|
24085
24115
|
function createResourceRequest$w(config) {
|
|
24086
24116
|
const headers = {};
|
|
24087
24117
|
return {
|
|
24088
|
-
baseUri: '/services/data/
|
|
24118
|
+
baseUri: '/services/data/v64.0',
|
|
24089
24119
|
basePath: '/ui-api/predupe',
|
|
24090
24120
|
method: 'post',
|
|
24091
24121
|
body: config.body,
|
|
@@ -24865,7 +24895,7 @@ function ingestError$f(luvio, params, error, snapshotRefresh) {
|
|
|
24865
24895
|
function createResourceRequest$v(config) {
|
|
24866
24896
|
const headers = {};
|
|
24867
24897
|
return {
|
|
24868
|
-
baseUri: '/services/data/
|
|
24898
|
+
baseUri: '/services/data/v64.0',
|
|
24869
24899
|
basePath: '/ui-api/record-avatars/batch/' + config.urlParams.recordIds + '',
|
|
24870
24900
|
method: 'get',
|
|
24871
24901
|
body: null,
|
|
@@ -25475,7 +25505,7 @@ function ingestError$e(luvio, params, error, snapshotRefresh) {
|
|
|
25475
25505
|
function createResourceRequest$u(config) {
|
|
25476
25506
|
const headers = {};
|
|
25477
25507
|
return {
|
|
25478
|
-
baseUri: '/services/data/
|
|
25508
|
+
baseUri: '/services/data/v64.0',
|
|
25479
25509
|
basePath: '/ui-api/related-list-count/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
25480
25510
|
method: 'get',
|
|
25481
25511
|
body: null,
|
|
@@ -25730,7 +25760,7 @@ function ingestError$d(luvio, params, error, snapshotRefresh) {
|
|
|
25730
25760
|
function createResourceRequest$t(config) {
|
|
25731
25761
|
const headers = {};
|
|
25732
25762
|
return {
|
|
25733
|
-
baseUri: '/services/data/
|
|
25763
|
+
baseUri: '/services/data/v64.0',
|
|
25734
25764
|
basePath: '/ui-api/related-list-count/batch/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListNames + '',
|
|
25735
25765
|
method: 'get',
|
|
25736
25766
|
body: null,
|
|
@@ -26093,7 +26123,7 @@ function ingestError$c$1(luvio, params, error, snapshotRefresh) {
|
|
|
26093
26123
|
function createResourceRequest$s(config) {
|
|
26094
26124
|
const headers = {};
|
|
26095
26125
|
return {
|
|
26096
|
-
baseUri: '/services/data/
|
|
26126
|
+
baseUri: '/services/data/v64.0',
|
|
26097
26127
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
26098
26128
|
method: 'get',
|
|
26099
26129
|
body: null,
|
|
@@ -26353,7 +26383,7 @@ function ingestError$b$1(luvio, params, error, snapshotRefresh) {
|
|
|
26353
26383
|
function createResourceRequest$r(config) {
|
|
26354
26384
|
const headers = {};
|
|
26355
26385
|
return {
|
|
26356
|
-
baseUri: '/services/data/
|
|
26386
|
+
baseUri: '/services/data/v64.0',
|
|
26357
26387
|
basePath: '/ui-api/related-list-info/batch/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListNames + '',
|
|
26358
26388
|
method: 'get',
|
|
26359
26389
|
body: null,
|
|
@@ -26544,7 +26574,7 @@ function ingestError$a$1(luvio, params, error, snapshotRefresh) {
|
|
|
26544
26574
|
function createResourceRequest$q(config) {
|
|
26545
26575
|
const headers = {};
|
|
26546
26576
|
return {
|
|
26547
|
-
baseUri: '/services/data/
|
|
26577
|
+
baseUri: '/services/data/v64.0',
|
|
26548
26578
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '',
|
|
26549
26579
|
method: 'get',
|
|
26550
26580
|
body: null,
|
|
@@ -26787,7 +26817,7 @@ function ingestSuccess$f(luvio, resourceParams, response) {
|
|
|
26787
26817
|
function createResourceRequest$p(config) {
|
|
26788
26818
|
const headers = {};
|
|
26789
26819
|
return {
|
|
26790
|
-
baseUri: '/services/data/
|
|
26820
|
+
baseUri: '/services/data/v64.0',
|
|
26791
26821
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
26792
26822
|
method: 'patch',
|
|
26793
26823
|
body: config.body,
|
|
@@ -26957,7 +26987,7 @@ function ingestError$9$1(luvio, params, error, snapshotRefresh) {
|
|
|
26957
26987
|
function createResourceRequest$o(config) {
|
|
26958
26988
|
const headers = {};
|
|
26959
26989
|
return {
|
|
26960
|
-
baseUri: '/services/data/
|
|
26990
|
+
baseUri: '/services/data/v64.0',
|
|
26961
26991
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
26962
26992
|
method: 'get',
|
|
26963
26993
|
body: null,
|
|
@@ -27209,7 +27239,7 @@ function ingestError$8$1(luvio, params, error, snapshotRefresh) {
|
|
|
27209
27239
|
function createResourceRequest$n$1(config) {
|
|
27210
27240
|
const headers = {};
|
|
27211
27241
|
return {
|
|
27212
|
-
baseUri: '/services/data/
|
|
27242
|
+
baseUri: '/services/data/v64.0',
|
|
27213
27243
|
basePath: '/ui-api/related-list-preferences/batch/' + config.urlParams.preferencesIds + '',
|
|
27214
27244
|
method: 'get',
|
|
27215
27245
|
body: null,
|
|
@@ -27407,7 +27437,7 @@ function ingestSuccess$c(luvio, resourceParams, response) {
|
|
|
27407
27437
|
function createResourceRequest$m$1(config) {
|
|
27408
27438
|
const headers = {};
|
|
27409
27439
|
return {
|
|
27410
|
-
baseUri: '/services/data/
|
|
27440
|
+
baseUri: '/services/data/v64.0',
|
|
27411
27441
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
27412
27442
|
method: 'patch',
|
|
27413
27443
|
body: config.body,
|
|
@@ -28166,7 +28196,7 @@ function ingestError$7$1(luvio, params, error, snapshotRefresh) {
|
|
|
28166
28196
|
function createResourceRequest$l$1(config) {
|
|
28167
28197
|
const headers = {};
|
|
28168
28198
|
return {
|
|
28169
|
-
baseUri: '/services/data/
|
|
28199
|
+
baseUri: '/services/data/v64.0',
|
|
28170
28200
|
basePath: '/ui-api/related-list-records/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
28171
28201
|
method: 'post',
|
|
28172
28202
|
body: config.body,
|
|
@@ -28441,7 +28471,7 @@ function ingestError$6$1(luvio, params, error, snapshotRefresh) {
|
|
|
28441
28471
|
function createResourceRequest$k$1(config) {
|
|
28442
28472
|
const headers = {};
|
|
28443
28473
|
return {
|
|
28444
|
-
baseUri: '/services/data/
|
|
28474
|
+
baseUri: '/services/data/v64.0',
|
|
28445
28475
|
basePath: '/ui-api/related-list-records/batch/' + config.urlParams.parentRecordId + '',
|
|
28446
28476
|
method: 'post',
|
|
28447
28477
|
body: config.body,
|
|
@@ -28809,7 +28839,7 @@ function ingestError$5$1(luvio, params, error, snapshotRefresh) {
|
|
|
28809
28839
|
function createResourceRequest$j$1(config) {
|
|
28810
28840
|
const headers = {};
|
|
28811
28841
|
return {
|
|
28812
|
-
baseUri: '/services/data/
|
|
28842
|
+
baseUri: '/services/data/v64.0',
|
|
28813
28843
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters',
|
|
28814
28844
|
method: 'get',
|
|
28815
28845
|
body: null,
|
|
@@ -28992,7 +29022,7 @@ function ingestError$4$1(luvio, params, error, snapshotRefresh) {
|
|
|
28992
29022
|
function createResourceRequest$i$1(config) {
|
|
28993
29023
|
const headers = {};
|
|
28994
29024
|
return {
|
|
28995
|
-
baseUri: '/services/data/
|
|
29025
|
+
baseUri: '/services/data/v64.0',
|
|
28996
29026
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters/' + config.urlParams.filterApiName + '/options',
|
|
28997
29027
|
method: 'get',
|
|
28998
29028
|
body: null,
|
|
@@ -29173,7 +29203,7 @@ function ingestError$3$1(luvio, params, error, snapshotRefresh) {
|
|
|
29173
29203
|
function createResourceRequest$h$1(config) {
|
|
29174
29204
|
const headers = {};
|
|
29175
29205
|
return {
|
|
29176
|
-
baseUri: '/services/data/
|
|
29206
|
+
baseUri: '/services/data/v64.0',
|
|
29177
29207
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/lookup/' + config.urlParams.fieldApiName + '',
|
|
29178
29208
|
method: 'get',
|
|
29179
29209
|
body: null,
|
|
@@ -29492,7 +29522,7 @@ function ingestError$2$1(luvio, params, error, snapshotRefresh) {
|
|
|
29492
29522
|
function createResourceRequest$g$1(config) {
|
|
29493
29523
|
const headers = {};
|
|
29494
29524
|
return {
|
|
29495
|
-
baseUri: '/services/data/
|
|
29525
|
+
baseUri: '/services/data/v64.0',
|
|
29496
29526
|
basePath: '/ui-api/search/results',
|
|
29497
29527
|
method: 'post',
|
|
29498
29528
|
body: config.body,
|
|
@@ -29695,7 +29725,7 @@ function ingestError$1$2(luvio, params, error, snapshotRefresh) {
|
|
|
29695
29725
|
function createResourceRequest$f$1(config) {
|
|
29696
29726
|
const headers = {};
|
|
29697
29727
|
return {
|
|
29698
|
-
baseUri: '/services/data/
|
|
29728
|
+
baseUri: '/services/data/v64.0',
|
|
29699
29729
|
basePath: '/ui-api/search/results/keyword',
|
|
29700
29730
|
method: 'post',
|
|
29701
29731
|
body: config.body,
|
|
@@ -29938,7 +29968,7 @@ function ingestSuccess$4$1(luvio, response) {
|
|
|
29938
29968
|
function createResourceRequest$e$1(config) {
|
|
29939
29969
|
const headers = {};
|
|
29940
29970
|
return {
|
|
29941
|
-
baseUri: '/services/data/
|
|
29971
|
+
baseUri: '/services/data/v64.0',
|
|
29942
29972
|
basePath: '/ui-api/records/batch',
|
|
29943
29973
|
method: 'post',
|
|
29944
29974
|
body: config.body,
|
|
@@ -30052,7 +30082,7 @@ function ingestSuccess$3$1(luvio, resourceParams, response) {
|
|
|
30052
30082
|
function createResourceRequest$d$1(config) {
|
|
30053
30083
|
const headers = {};
|
|
30054
30084
|
return {
|
|
30055
|
-
baseUri: '/services/data/
|
|
30085
|
+
baseUri: '/services/data/v64.0',
|
|
30056
30086
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
30057
30087
|
method: 'patch',
|
|
30058
30088
|
body: config.body,
|
|
@@ -30111,7 +30141,7 @@ function ingestSuccess$2$1(luvio, resourceParams, response) {
|
|
|
30111
30141
|
function createResourceRequest$c$1(config) {
|
|
30112
30142
|
const headers = {};
|
|
30113
30143
|
return {
|
|
30114
|
-
baseUri: '/services/data/
|
|
30144
|
+
baseUri: '/services/data/v64.0',
|
|
30115
30145
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
30116
30146
|
method: 'post',
|
|
30117
30147
|
body: config.body,
|
|
@@ -30180,7 +30210,7 @@ const factory$c = (luvio) => {
|
|
|
30180
30210
|
function createResourceRequest$b$1(config) {
|
|
30181
30211
|
const headers = {};
|
|
30182
30212
|
return {
|
|
30183
|
-
baseUri: '/services/data/
|
|
30213
|
+
baseUri: '/services/data/v64.0',
|
|
30184
30214
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
30185
30215
|
method: 'patch',
|
|
30186
30216
|
body: config.body,
|
|
@@ -30641,7 +30671,7 @@ function getResponseCacheKeys$7$1(storeKeyMap, luvio, resourceParams, response)
|
|
|
30641
30671
|
function createResourceRequest$a$1(config) {
|
|
30642
30672
|
const headers = {};
|
|
30643
30673
|
return {
|
|
30644
|
-
baseUri: '/services/data/
|
|
30674
|
+
baseUri: '/services/data/v64.0',
|
|
30645
30675
|
basePath: '/ui-api/lookups/' + config.urlParams.objectApiName + '/' + config.urlParams.fieldApiName + '',
|
|
30646
30676
|
method: 'post',
|
|
30647
30677
|
body: config.body,
|
|
@@ -30880,7 +30910,7 @@ const factory$9$1 = (luvio) => {
|
|
|
30880
30910
|
function createResourceRequest$9$1(config) {
|
|
30881
30911
|
const headers = {};
|
|
30882
30912
|
return {
|
|
30883
|
-
baseUri: '/services/data/
|
|
30913
|
+
baseUri: '/services/data/v64.0',
|
|
30884
30914
|
basePath: '/ui-api/record-avatars/' + config.urlParams.recordId + '/association',
|
|
30885
30915
|
method: 'post',
|
|
30886
30916
|
body: config.body,
|
|
@@ -31232,7 +31262,7 @@ function getResponseCacheKeys$6$1(storeKeyMap, luvio, resourceParams, response)
|
|
|
31232
31262
|
function createResourceRequest$8$1(config) {
|
|
31233
31263
|
const headers = {};
|
|
31234
31264
|
return {
|
|
31235
|
-
baseUri: '/services/data/
|
|
31265
|
+
baseUri: '/services/data/v64.0',
|
|
31236
31266
|
basePath: '/ui-api/record-defaults/create/' + config.urlParams.objectApiName + '',
|
|
31237
31267
|
method: 'get',
|
|
31238
31268
|
body: null,
|
|
@@ -31774,7 +31804,7 @@ function getResponseCacheKeys$5$1(storeKeyMap, luvio, resourceParams, response)
|
|
|
31774
31804
|
function createResourceRequest$7$1(config) {
|
|
31775
31805
|
const headers = {};
|
|
31776
31806
|
return {
|
|
31777
|
-
baseUri: '/services/data/
|
|
31807
|
+
baseUri: '/services/data/v64.0',
|
|
31778
31808
|
basePath: '/ui-api/record-defaults/template/clone/' + config.urlParams.recordId + '',
|
|
31779
31809
|
method: 'get',
|
|
31780
31810
|
body: null,
|
|
@@ -32305,7 +32335,7 @@ function ingestError$N(luvio, params, error, snapshotRefresh) {
|
|
|
32305
32335
|
function createResourceRequest$6$1(config) {
|
|
32306
32336
|
const headers = {};
|
|
32307
32337
|
return {
|
|
32308
|
-
baseUri: '/services/data/
|
|
32338
|
+
baseUri: '/services/data/v64.0',
|
|
32309
32339
|
basePath: '/ui-api/record-defaults/template/create/' + config.urlParams.objectApiName + '',
|
|
32310
32340
|
method: 'get',
|
|
32311
32341
|
body: null,
|
|
@@ -32510,7 +32540,7 @@ function getResponseCacheKeys$3$1(storeKeyMap, luvio, resourceParams, response)
|
|
|
32510
32540
|
function createResourceRequest$5$1(config) {
|
|
32511
32541
|
const headers = {};
|
|
32512
32542
|
return {
|
|
32513
|
-
baseUri: '/services/data/
|
|
32543
|
+
baseUri: '/services/data/v64.0',
|
|
32514
32544
|
basePath: '/ui-api/records',
|
|
32515
32545
|
method: 'post',
|
|
32516
32546
|
body: config.body,
|
|
@@ -32616,7 +32646,7 @@ function evictSuccess(luvio, resourceParams) {
|
|
|
32616
32646
|
function createResourceRequest$3$1(config) {
|
|
32617
32647
|
const headers = {};
|
|
32618
32648
|
return {
|
|
32619
|
-
baseUri: '/services/data/
|
|
32649
|
+
baseUri: '/services/data/v64.0',
|
|
32620
32650
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
32621
32651
|
method: 'delete',
|
|
32622
32652
|
body: null,
|
|
@@ -32703,7 +32733,7 @@ function createResourceRequest$2$2(config) {
|
|
|
32703
32733
|
headers['If-Unmodified-Since'] = header_ifUnmodifiedSince;
|
|
32704
32734
|
}
|
|
32705
32735
|
return {
|
|
32706
|
-
baseUri: '/services/data/
|
|
32736
|
+
baseUri: '/services/data/v64.0',
|
|
32707
32737
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
32708
32738
|
method: 'patch',
|
|
32709
32739
|
body: config.body,
|
|
@@ -32991,7 +33021,7 @@ function createResourceParams$1$2(config) {
|
|
|
32991
33021
|
function createResourceRequest$1$2(config) {
|
|
32992
33022
|
const headers = {};
|
|
32993
33023
|
return {
|
|
32994
|
-
baseUri: '/services/data/
|
|
33024
|
+
baseUri: '/services/data/v64.0',
|
|
32995
33025
|
basePath: '/ui-api/records/content-documents/' +
|
|
32996
33026
|
config.urlParams.contentDocumentId +
|
|
32997
33027
|
'/content-versions',
|
|
@@ -33104,7 +33134,7 @@ function createResourceParams$13(config) {
|
|
|
33104
33134
|
function createResourceRequest$1e(config) {
|
|
33105
33135
|
const headers = {};
|
|
33106
33136
|
return {
|
|
33107
|
-
baseUri: '/services/data/
|
|
33137
|
+
baseUri: '/services/data/v64.0',
|
|
33108
33138
|
basePath: '/ui-api/records/content-documents/content-versions',
|
|
33109
33139
|
method: 'post',
|
|
33110
33140
|
body: config.body,
|
|
@@ -33544,7 +33574,7 @@ function bindExportsTo$1(luvio) {
|
|
|
33544
33574
|
const getRelatedListRecordsBatch_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListRecordsBatch', configurationForEnvironmentFactoryOverrides$2.getRelatedListRecordsBatchAdapterFactory() ?? getRelatedListRecordsBatchAdapterFactory$1), luvio, 'getRelatedListRecordsBatch'), getRelatedListRecordsBatchMetadata);
|
|
33545
33575
|
const getRelatedListsActions_ldsAdapter = createInstrumentedAdapter(createRelatedListAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsActions', getRelatedListsActionsAdapterFactory), luvio, 'getRelatedListsActions'), getRelatedListsActionsMetadata);
|
|
33546
33576
|
const getRelatedListsCount_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsCount', getRelatedListsCountAdapterFactory), getRelatedListsCountMetadata);
|
|
33547
|
-
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRelatedListsInfo', getRelatedListsInfoAdapterFactory), getRelatedListsInfoMetadata);
|
|
33577
|
+
const getRelatedListsInfo_ldsAdapter = createInstrumentedAdapter(createRelatedListPlusAdapterWithPrediction(createLDSAdapter(luvio, 'getRelatedListsInfo', getRelatedListsInfoAdapterFactory), luvio, 'getRelatedListsInfo'), getRelatedListsInfoMetadata);
|
|
33548
33578
|
const getSearchFilterMetadata_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterMetadata', getSearchFilterMetadataAdapterFactory), getSearchFilterMetadataMetadata);
|
|
33549
33579
|
const getSearchFilterOptions_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchFilterOptions', getSearchFilterOptionsAdapterFactory), getSearchFilterOptionsMetadata);
|
|
33550
33580
|
const getSearchResults_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getSearchResults', configurationForEnvironmentFactoryOverrides$2.getSearchResultsAdapterFactory() ?? getSearchResultsAdapterFactory$1), getSearchResultsMetadata);
|
|
@@ -33850,7 +33880,16 @@ withDefaultLuvio((luvio) => {
|
|
|
33850
33880
|
throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
|
|
33851
33881
|
throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
33852
33882
|
});
|
|
33853
|
-
// version: 1.
|
|
33883
|
+
// version: 1.336.0-1b35a3afd9
|
|
33884
|
+
|
|
33885
|
+
var graphqlRecordTypeIdFixGate = {
|
|
33886
|
+
isOpen: function (e) {
|
|
33887
|
+
return e.fallback;
|
|
33888
|
+
},
|
|
33889
|
+
hasError: function () {
|
|
33890
|
+
return !0;
|
|
33891
|
+
},
|
|
33892
|
+
};
|
|
33854
33893
|
|
|
33855
33894
|
/**
|
|
33856
33895
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -45459,7 +45498,7 @@ const { join: join$1, push: push$2, unshift } = Array.prototype;
|
|
|
45459
45498
|
const { isArray: isArray$3$1 } = Array;
|
|
45460
45499
|
const { entries: entries$4, keys: keys$6 } = Object;
|
|
45461
45500
|
|
|
45462
|
-
const UI_API_BASE_URI = '/services/data/
|
|
45501
|
+
const UI_API_BASE_URI = '/services/data/v64.0/ui-api';
|
|
45463
45502
|
|
|
45464
45503
|
let instrumentation$2 = {
|
|
45465
45504
|
aggregateUiChunkCount: (_cb) => { },
|
|
@@ -50801,7 +50840,7 @@ function getResponseCacheKeys$f(storeKeyMap, luvio, resourceParams, response) {
|
|
|
50801
50840
|
function createResourceRequest$l(config) {
|
|
50802
50841
|
const headers = {};
|
|
50803
50842
|
return {
|
|
50804
|
-
baseUri: '/services/data/
|
|
50843
|
+
baseUri: '/services/data/v64.0',
|
|
50805
50844
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
50806
50845
|
method: 'get',
|
|
50807
50846
|
body: null,
|
|
@@ -51255,7 +51294,7 @@ function ingestError$a(luvio, params, error, snapshotRefresh) {
|
|
|
51255
51294
|
function createResourceRequest$k(config) {
|
|
51256
51295
|
const headers = {};
|
|
51257
51296
|
return {
|
|
51258
|
-
baseUri: '/services/data/
|
|
51297
|
+
baseUri: '/services/data/v64.0',
|
|
51259
51298
|
basePath: '/ui-api/records/batch/' + config.urlParams.recordIds + '',
|
|
51260
51299
|
method: 'get',
|
|
51261
51300
|
body: null,
|
|
@@ -52198,7 +52237,7 @@ function createPaginationParams$5(params) {
|
|
|
52198
52237
|
function createResourceRequest$j(config) {
|
|
52199
52238
|
const headers = {};
|
|
52200
52239
|
return {
|
|
52201
|
-
baseUri: '/services/data/
|
|
52240
|
+
baseUri: '/services/data/v64.0',
|
|
52202
52241
|
basePath: '/ui-api/list-ui/' +
|
|
52203
52242
|
config.urlParams.objectApiName +
|
|
52204
52243
|
'/' +
|
|
@@ -52253,7 +52292,7 @@ function createPaginationParams$4(params) {
|
|
|
52253
52292
|
function createResourceRequest$i(config) {
|
|
52254
52293
|
const headers = {};
|
|
52255
52294
|
return {
|
|
52256
|
-
baseUri: '/services/data/
|
|
52295
|
+
baseUri: '/services/data/v64.0',
|
|
52257
52296
|
basePath: '/ui-api/list-ui/' + config.urlParams.listViewId + '',
|
|
52258
52297
|
method: 'get',
|
|
52259
52298
|
body: null,
|
|
@@ -52296,7 +52335,7 @@ function validateAdapterConfig$e(untrustedConfig, configPropertyNames) {
|
|
|
52296
52335
|
function createResourceRequest$h(config) {
|
|
52297
52336
|
const headers = {};
|
|
52298
52337
|
return {
|
|
52299
|
-
baseUri: '/services/data/
|
|
52338
|
+
baseUri: '/services/data/v64.0',
|
|
52300
52339
|
basePath: '/ui-api/list-records/' + config.urlParams.listViewId + '',
|
|
52301
52340
|
method: 'get',
|
|
52302
52341
|
body: null,
|
|
@@ -52655,7 +52694,7 @@ function ingestError$9(luvio, params, error, snapshotRefresh) {
|
|
|
52655
52694
|
function createResourceRequest$g(config) {
|
|
52656
52695
|
const headers = {};
|
|
52657
52696
|
return {
|
|
52658
|
-
baseUri: '/services/data/
|
|
52697
|
+
baseUri: '/services/data/v64.0',
|
|
52659
52698
|
basePath: '/ui-api/list-records/' +
|
|
52660
52699
|
config.urlParams.objectApiName +
|
|
52661
52700
|
'/' +
|
|
@@ -53138,7 +53177,7 @@ function ingestError$8(luvio, params, error, snapshotRefresh) {
|
|
|
53138
53177
|
function createResourceRequest$f(config) {
|
|
53139
53178
|
const headers = {};
|
|
53140
53179
|
return {
|
|
53141
|
-
baseUri: '/services/data/
|
|
53180
|
+
baseUri: '/services/data/v64.0',
|
|
53142
53181
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '',
|
|
53143
53182
|
method: 'get',
|
|
53144
53183
|
body: null,
|
|
@@ -53335,7 +53374,7 @@ function keyBuilder$1D(luvio, params) {
|
|
|
53335
53374
|
function createResourceRequest$e(config) {
|
|
53336
53375
|
const headers = {};
|
|
53337
53376
|
return {
|
|
53338
|
-
baseUri: '/services/data/
|
|
53377
|
+
baseUri: '/services/data/v64.0',
|
|
53339
53378
|
basePath: '/ui-api/mru-list-ui/' + config.urlParams.objectApiName + '',
|
|
53340
53379
|
method: 'get',
|
|
53341
53380
|
body: null,
|
|
@@ -53378,7 +53417,7 @@ function validateAdapterConfig$c(untrustedConfig, configPropertyNames) {
|
|
|
53378
53417
|
function createResourceRequest$d(config) {
|
|
53379
53418
|
const headers = {};
|
|
53380
53419
|
return {
|
|
53381
|
-
baseUri: '/services/data/
|
|
53420
|
+
baseUri: '/services/data/v64.0',
|
|
53382
53421
|
basePath: '/ui-api/mru-list-records/' + config.urlParams.objectApiName + '',
|
|
53383
53422
|
method: 'get',
|
|
53384
53423
|
body: null,
|
|
@@ -54672,7 +54711,7 @@ const ingest$1g$1 = function RecordUiRepresentationIngest(input, path, luvio, st
|
|
|
54672
54711
|
function createResourceRequest$c(config) {
|
|
54673
54712
|
const headers = {};
|
|
54674
54713
|
return {
|
|
54675
|
-
baseUri: '/services/data/
|
|
54714
|
+
baseUri: '/services/data/v64.0',
|
|
54676
54715
|
basePath: '/ui-api/record-ui/' + config.urlParams.recordIds + '',
|
|
54677
54716
|
method: 'get',
|
|
54678
54717
|
body: null,
|
|
@@ -55948,7 +55987,7 @@ function ingestError$7(luvio, params, error, snapshotRefresh) {
|
|
|
55948
55987
|
function createResourceRequest$b(config) {
|
|
55949
55988
|
const headers = {};
|
|
55950
55989
|
return {
|
|
55951
|
-
baseUri: '/services/data/
|
|
55990
|
+
baseUri: '/services/data/v64.0',
|
|
55952
55991
|
basePath: '/ui-api/actions/record-defaults/' + config.urlParams.actionApiName + '',
|
|
55953
55992
|
method: 'get',
|
|
55954
55993
|
body: null,
|
|
@@ -57035,7 +57074,7 @@ function ingestError$6(luvio, params, error, snapshotRefresh) {
|
|
|
57035
57074
|
function createResourceRequest$a(config) {
|
|
57036
57075
|
const headers = {};
|
|
57037
57076
|
return {
|
|
57038
|
-
baseUri: '/services/data/
|
|
57077
|
+
baseUri: '/services/data/v64.0',
|
|
57039
57078
|
basePath: '/ui-api/related-list-records/' +
|
|
57040
57079
|
config.urlParams.parentRecordId +
|
|
57041
57080
|
'/' +
|
|
@@ -57353,7 +57392,7 @@ function ingestError$5(luvio, params, error, snapshotRefresh) {
|
|
|
57353
57392
|
function createResourceRequest$9(config) {
|
|
57354
57393
|
const headers = {};
|
|
57355
57394
|
return {
|
|
57356
|
-
baseUri: '/services/data/
|
|
57395
|
+
baseUri: '/services/data/v64.0',
|
|
57357
57396
|
basePath: '/ui-api/related-list-records/batch/' + config.urlParams.parentRecordId + '',
|
|
57358
57397
|
method: 'post',
|
|
57359
57398
|
body: config.body,
|
|
@@ -57936,7 +57975,7 @@ function ingestError$4(luvio, params, error, snapshotRefresh) {
|
|
|
57936
57975
|
function createResourceRequest$8(config) {
|
|
57937
57976
|
const headers = {};
|
|
57938
57977
|
return {
|
|
57939
|
-
baseUri: '/services/data/
|
|
57978
|
+
baseUri: '/services/data/v64.0',
|
|
57940
57979
|
basePath: '/ui-api/search/results',
|
|
57941
57980
|
method: 'post',
|
|
57942
57981
|
body: config.body,
|
|
@@ -58152,7 +58191,7 @@ function ingestError$3(luvio, params, error, snapshotRefresh) {
|
|
|
58152
58191
|
function createResourceRequest$7(config) {
|
|
58153
58192
|
const headers = {};
|
|
58154
58193
|
return {
|
|
58155
|
-
baseUri: '/services/data/
|
|
58194
|
+
baseUri: '/services/data/v64.0',
|
|
58156
58195
|
basePath: '/ui-api/search/results/keyword',
|
|
58157
58196
|
method: 'post',
|
|
58158
58197
|
body: config.body,
|
|
@@ -58668,7 +58707,7 @@ function getResponseCacheKeys$6(storeKeyMap, luvio, resourceParams, response) {
|
|
|
58668
58707
|
function createResourceRequest$6(config) {
|
|
58669
58708
|
const headers = {};
|
|
58670
58709
|
return {
|
|
58671
|
-
baseUri: '/services/data/
|
|
58710
|
+
baseUri: '/services/data/v64.0',
|
|
58672
58711
|
basePath: '/ui-api/lookups/' +
|
|
58673
58712
|
config.urlParams.objectApiName +
|
|
58674
58713
|
'/' +
|
|
@@ -59183,7 +59222,7 @@ function getResponseCacheKeys$5(storeKeyMap, luvio, resourceParams, response) {
|
|
|
59183
59222
|
function createResourceRequest$5(config) {
|
|
59184
59223
|
const headers = {};
|
|
59185
59224
|
return {
|
|
59186
|
-
baseUri: '/services/data/
|
|
59225
|
+
baseUri: '/services/data/v64.0',
|
|
59187
59226
|
basePath: '/ui-api/record-defaults/create/' + config.urlParams.objectApiName + '',
|
|
59188
59227
|
method: 'get',
|
|
59189
59228
|
body: null,
|
|
@@ -59731,7 +59770,7 @@ function getResponseCacheKeys$4(storeKeyMap, luvio, resourceParams, response) {
|
|
|
59731
59770
|
function createResourceRequest$4(config) {
|
|
59732
59771
|
const headers = {};
|
|
59733
59772
|
return {
|
|
59734
|
-
baseUri: '/services/data/
|
|
59773
|
+
baseUri: '/services/data/v64.0',
|
|
59735
59774
|
basePath: '/ui-api/record-defaults/template/clone/' + config.urlParams.recordId + '',
|
|
59736
59775
|
method: 'get',
|
|
59737
59776
|
body: null,
|
|
@@ -60279,7 +60318,7 @@ function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
|
60279
60318
|
function createResourceRequest$3(config) {
|
|
60280
60319
|
const headers = {};
|
|
60281
60320
|
return {
|
|
60282
|
-
baseUri: '/services/data/
|
|
60321
|
+
baseUri: '/services/data/v64.0',
|
|
60283
60322
|
basePath: '/ui-api/record-defaults/template/create/' + config.urlParams.objectApiName + '',
|
|
60284
60323
|
method: 'get',
|
|
60285
60324
|
body: null,
|
|
@@ -65842,13 +65881,27 @@ function convertGraphQLToRaml$1(astNode, state) {
|
|
|
65842
65881
|
? getRequestedFieldsForType$1(data.__typename, astNode.selectionSet, state.fragments, isFragmentApplicable$H$1)
|
|
65843
65882
|
: new Map();
|
|
65844
65883
|
const { fieldsBag, trie } = createFieldsBagAndTrie$1(data, requestedFields, state);
|
|
65884
|
+
const recordTypeId = data.ldsRecordTypeId === null ? null : data.ldsRecordTypeId.value;
|
|
65885
|
+
if (graphqlRecordTypeIdFixGate.isOpen({ fallback: false }) &&
|
|
65886
|
+
recordTypeId &&
|
|
65887
|
+
recordTypeId !== MAIN_RECORD_TYPE_ID) {
|
|
65888
|
+
const fieldName = 'RecordTypeId';
|
|
65889
|
+
fieldsBag[fieldName] = {
|
|
65890
|
+
value: recordTypeId,
|
|
65891
|
+
displayValue: null,
|
|
65892
|
+
};
|
|
65893
|
+
trie.children[fieldName] = {
|
|
65894
|
+
name: fieldName,
|
|
65895
|
+
children: {},
|
|
65896
|
+
};
|
|
65897
|
+
}
|
|
65845
65898
|
const recordRepresentation = {
|
|
65846
65899
|
apiName: data.ApiName,
|
|
65847
65900
|
eTag: '',
|
|
65848
65901
|
lastModifiedById: data.LastModifiedById.value,
|
|
65849
65902
|
lastModifiedDate: data.LastModifiedDate.value,
|
|
65850
65903
|
systemModstamp: data.SystemModstamp.value,
|
|
65851
|
-
recordTypeId:
|
|
65904
|
+
recordTypeId: recordTypeId,
|
|
65852
65905
|
recordTypeInfo: null,
|
|
65853
65906
|
childRelationships: {},
|
|
65854
65907
|
id: data.Id,
|
|
@@ -87792,7 +87845,7 @@ function buildLdsResponse(response) {
|
|
|
87792
87845
|
|
|
87793
87846
|
// so eslint doesn't complain about nimbus
|
|
87794
87847
|
/* global __nimbus */
|
|
87795
|
-
const tasker = idleDetector.declareNotifierTaskMulti('NimbusNetworkAdapter');
|
|
87848
|
+
const tasker$1 = idleDetector.declareNotifierTaskMulti('NimbusNetworkAdapter');
|
|
87796
87849
|
const NimbusNetworkAdapter = (request, resourceRequestContext) => {
|
|
87797
87850
|
return new Promise((resolve, reject) => {
|
|
87798
87851
|
try {
|
|
@@ -87814,7 +87867,7 @@ const NimbusNetworkAdapter = (request, resourceRequestContext) => {
|
|
|
87814
87867
|
// fails to parse the request), and call reject
|
|
87815
87868
|
reject(error);
|
|
87816
87869
|
}
|
|
87817
|
-
}).finally(() => tasker.done());
|
|
87870
|
+
}).finally(() => tasker$1.done());
|
|
87818
87871
|
};
|
|
87819
87872
|
|
|
87820
87873
|
/**
|
|
@@ -89335,6 +89388,7 @@ class LdsInternalDataTable {
|
|
|
89335
89388
|
}
|
|
89336
89389
|
}
|
|
89337
89390
|
|
|
89391
|
+
const tasker = idleDetector.declareNotifierTaskMulti('NimbusSqliteStore');
|
|
89338
89392
|
class NimbusSqliteStore {
|
|
89339
89393
|
constructor(plugin, additionalTableMap = {}) {
|
|
89340
89394
|
this.plugin = plugin;
|
|
@@ -89354,20 +89408,26 @@ class NimbusSqliteStore {
|
|
|
89354
89408
|
}, (error) => {
|
|
89355
89409
|
reject(error);
|
|
89356
89410
|
});
|
|
89357
|
-
});
|
|
89411
|
+
}).finally(() => tasker.done());
|
|
89358
89412
|
}
|
|
89359
89413
|
batchQuery(queries) {
|
|
89360
89414
|
const promises = queries.map((q) => this.query(q.sql, q.params));
|
|
89361
|
-
return Promise.all(promises);
|
|
89415
|
+
return Promise.all(promises).finally(() => tasker.done());
|
|
89362
89416
|
}
|
|
89363
89417
|
async getEntries(entryIds, segment) {
|
|
89364
|
-
return this.getTable(segment)
|
|
89418
|
+
return this.getTable(segment)
|
|
89419
|
+
.getByKeys(entryIds, segment)
|
|
89420
|
+
.finally(() => tasker.done());
|
|
89365
89421
|
}
|
|
89366
89422
|
async getMetadata(entryIds, segment) {
|
|
89367
|
-
return this.getTable(segment)
|
|
89423
|
+
return this.getTable(segment)
|
|
89424
|
+
.getMetadataByKeys(entryIds, segment)
|
|
89425
|
+
.finally(() => tasker.done());
|
|
89368
89426
|
}
|
|
89369
89427
|
getAllEntries(segment) {
|
|
89370
|
-
return this.getTable(segment)
|
|
89428
|
+
return this.getTable(segment)
|
|
89429
|
+
.getAll(segment)
|
|
89430
|
+
.finally(() => tasker.done());
|
|
89371
89431
|
}
|
|
89372
89432
|
setEntries(entries, segment) {
|
|
89373
89433
|
if (keys$1$1(entries).length === 0) {
|
|
@@ -89472,7 +89532,7 @@ class NimbusSqliteStore {
|
|
|
89472
89532
|
resolve();
|
|
89473
89533
|
}
|
|
89474
89534
|
});
|
|
89475
|
-
});
|
|
89535
|
+
}).finally(() => tasker.done());
|
|
89476
89536
|
}
|
|
89477
89537
|
}
|
|
89478
89538
|
|
|
@@ -90339,7 +90399,7 @@ class PrimingNetworkError extends Error {
|
|
|
90339
90399
|
}
|
|
90340
90400
|
|
|
90341
90401
|
// note this is automatically incremented by scripts/release/bump-api-version.js at each release
|
|
90342
|
-
const apiVersion$1 = `
|
|
90402
|
+
const apiVersion$1 = `v64.0`;
|
|
90343
90403
|
const basePath = `/services/data/${apiVersion$1}`;
|
|
90344
90404
|
|
|
90345
90405
|
class NetworkRecordLoader {
|
|
@@ -90816,7 +90876,7 @@ function instrumentPrimingSession(session) {
|
|
|
90816
90876
|
// so eslint doesn't complain about nimbus
|
|
90817
90877
|
/* global __nimbus */
|
|
90818
90878
|
// note this is automatically incremented by scripts/release/bump-api-version.js at each release
|
|
90819
|
-
const apiVersion = `
|
|
90879
|
+
const apiVersion = `v64.0`;
|
|
90820
90880
|
const batchObjectInfoEndpoint = `/services/data/${apiVersion}/ui-api/object-info/batch`;
|
|
90821
90881
|
const objectInfoDirectoryEndpoint = `/services/data/${apiVersion}/ui-api/object-info`;
|
|
90822
90882
|
class NimbusPrimingNetworkAdapter {
|
|
@@ -91303,7 +91363,7 @@ function ingestError$1$1(luvio, config, params, error, snapshotRefresh) {
|
|
|
91303
91363
|
function createResourceRequest$2$1(config) {
|
|
91304
91364
|
const headers = {};
|
|
91305
91365
|
return {
|
|
91306
|
-
baseUri: '/services/data/
|
|
91366
|
+
baseUri: '/services/data/v64.0',
|
|
91307
91367
|
basePath: '/graphql',
|
|
91308
91368
|
method: 'post',
|
|
91309
91369
|
body: { ...config.body, query: print(config.body.query) },
|
|
@@ -91429,7 +91489,7 @@ function createResourceRequest$n(config) {
|
|
|
91429
91489
|
const headers = {};
|
|
91430
91490
|
const transformedConfig = stripDocumentsOfMetaschema$1(config);
|
|
91431
91491
|
return {
|
|
91432
|
-
baseUri: '/services/data/
|
|
91492
|
+
baseUri: '/services/data/v64.0',
|
|
91433
91493
|
basePath: '/graphql/batch',
|
|
91434
91494
|
method: 'post',
|
|
91435
91495
|
body: transformedConfig.body,
|
|
@@ -92009,7 +92069,7 @@ class SideEffectService {
|
|
|
92009
92069
|
const objectInfo = await this.ensureObjectInfo(apiName);
|
|
92010
92070
|
const recordFields = {};
|
|
92011
92071
|
for (const fieldName of keys$3(fields)) {
|
|
92012
|
-
const draftField = fields[fieldName];
|
|
92072
|
+
const draftField = fields[fieldName] ?? null;
|
|
92013
92073
|
recordFields[fieldName] = { value: draftField, displayValue: null };
|
|
92014
92074
|
const fieldInfo = objectInfo.fields[fieldName];
|
|
92015
92075
|
if (fieldInfo) {
|
|
@@ -92672,7 +92732,7 @@ register$1({
|
|
|
92672
92732
|
id: '@salesforce/lds-network-adapter',
|
|
92673
92733
|
instrument: instrument$2,
|
|
92674
92734
|
});
|
|
92675
|
-
// version: 1.
|
|
92735
|
+
// version: 1.336.0-7d2c781c74
|
|
92676
92736
|
|
|
92677
92737
|
const { create: create$2, keys: keys$2 } = Object;
|
|
92678
92738
|
const { stringify, parse } = JSON;
|
|
@@ -113874,7 +113934,7 @@ function ingestError$1(luvio, config, params, error, snapshotRefresh) {
|
|
|
113874
113934
|
function createResourceRequest$2(config) {
|
|
113875
113935
|
const headers = {};
|
|
113876
113936
|
return {
|
|
113877
|
-
baseUri: '/services/data/
|
|
113937
|
+
baseUri: '/services/data/v64.0',
|
|
113878
113938
|
basePath: '/graphql',
|
|
113879
113939
|
method: 'post',
|
|
113880
113940
|
body: { ...config.body,
|
|
@@ -114098,6 +114158,10 @@ let oneStoreGetObjectInfosAdapter$1 = undefined;
|
|
|
114098
114158
|
* Determines when to include PDL strategies for Related Lists
|
|
114099
114159
|
*/
|
|
114100
114160
|
let relatedListsPredictionsEnabled$1 = false;
|
|
114161
|
+
/**
|
|
114162
|
+
* Determines whether to include additional PDL strategies for Related Lists
|
|
114163
|
+
*/
|
|
114164
|
+
let relatedListsPlusPredictionsEnabled$1 = false;
|
|
114101
114165
|
/**
|
|
114102
114166
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
114103
114167
|
* Configuration for one store enabled REST adapters only.
|
|
@@ -114197,6 +114261,12 @@ const configurationForRestAdapters$1 = {
|
|
|
114197
114261
|
areRelatedListsPredictionsEnabled: function () {
|
|
114198
114262
|
return relatedListsPredictionsEnabled$1 === true;
|
|
114199
114263
|
},
|
|
114264
|
+
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
114265
|
+
relatedListsPlusPredictionsEnabled$1 = f;
|
|
114266
|
+
},
|
|
114267
|
+
areRelatedListsPlusPredictionsEnabled: function () {
|
|
114268
|
+
return relatedListsPlusPredictionsEnabled$1 === true;
|
|
114269
|
+
},
|
|
114200
114270
|
// createRecord
|
|
114201
114271
|
getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter$1.getAdapter,
|
|
114202
114272
|
setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter$1.setAdapter,
|
|
@@ -114283,7 +114353,7 @@ function createResourceRequest(config) {
|
|
|
114283
114353
|
const headers = {};
|
|
114284
114354
|
const transformedConfig = stripDocumentsOfMetaschema(config);
|
|
114285
114355
|
return {
|
|
114286
|
-
baseUri: '/services/data/
|
|
114356
|
+
baseUri: '/services/data/v64.0',
|
|
114287
114357
|
basePath: '/graphql/batch',
|
|
114288
114358
|
method: 'post',
|
|
114289
114359
|
body: transformedConfig.body,
|
|
@@ -115239,7 +115309,7 @@ register$1({
|
|
|
115239
115309
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
115240
115310
|
instrument: instrument$1,
|
|
115241
115311
|
});
|
|
115242
|
-
// version: 1.
|
|
115312
|
+
// version: 1.336.0-1b35a3afd9
|
|
115243
115313
|
|
|
115244
115314
|
// On core the unstable adapters are re-exported with different names,
|
|
115245
115315
|
// we want to match them here.
|
|
@@ -115391,7 +115461,7 @@ withDefaultLuvio((luvio) => {
|
|
|
115391
115461
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
115392
115462
|
graphQLImperative = ldsAdapter;
|
|
115393
115463
|
});
|
|
115394
|
-
// version: 1.
|
|
115464
|
+
// version: 1.336.0-1b35a3afd9
|
|
115395
115465
|
|
|
115396
115466
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
115397
115467
|
__proto__: null,
|
|
@@ -116174,7 +116244,7 @@ const callbacks$1 = [];
|
|
|
116174
116244
|
function register(r) {
|
|
116175
116245
|
callbacks$1.forEach((callback) => callback(r));
|
|
116176
116246
|
}
|
|
116177
|
-
// version: 1.
|
|
116247
|
+
// version: 1.336.0-7d2c781c74
|
|
116178
116248
|
|
|
116179
116249
|
/**
|
|
116180
116250
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -116244,6 +116314,10 @@ let oneStoreGetObjectInfosAdapter = undefined;
|
|
|
116244
116314
|
* Determines when to include PDL strategies for Related Lists
|
|
116245
116315
|
*/
|
|
116246
116316
|
let relatedListsPredictionsEnabled = false;
|
|
116317
|
+
/**
|
|
116318
|
+
* Determines whether to include additional PDL strategies for Related Lists
|
|
116319
|
+
*/
|
|
116320
|
+
let relatedListsPlusPredictionsEnabled = false;
|
|
116247
116321
|
/**
|
|
116248
116322
|
* Defines the configuration API and is exposed internally as well as externally.
|
|
116249
116323
|
* Configuration for one store enabled REST adapters only.
|
|
@@ -116343,6 +116417,12 @@ const configurationForRestAdapters = {
|
|
|
116343
116417
|
areRelatedListsPredictionsEnabled: function () {
|
|
116344
116418
|
return relatedListsPredictionsEnabled === true;
|
|
116345
116419
|
},
|
|
116420
|
+
setRelatedListsPlusPredictionsEnabled: function (f) {
|
|
116421
|
+
relatedListsPlusPredictionsEnabled = f;
|
|
116422
|
+
},
|
|
116423
|
+
areRelatedListsPlusPredictionsEnabled: function () {
|
|
116424
|
+
return relatedListsPlusPredictionsEnabled === true;
|
|
116425
|
+
},
|
|
116346
116426
|
// createRecord
|
|
116347
116427
|
getDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.getAdapter,
|
|
116348
116428
|
setDraftAwareCreateRecordAdapter: configurableCreateRecordAdapter.setAdapter,
|
|
@@ -117237,4 +117317,4 @@ const { luvio } = getRuntime();
|
|
|
117237
117317
|
setDefaultLuvio({ luvio });
|
|
117238
117318
|
|
|
117239
117319
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
117240
|
-
// version: 1.
|
|
117320
|
+
// version: 1.336.0-7d2c781c74
|