@salesforce/lds-worker-api 1.311.0 → 1.311.1
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.
|
@@ -937,7 +937,7 @@
|
|
|
937
937
|
}
|
|
938
938
|
}
|
|
939
939
|
expirePossibleStaleRecords(keys) {
|
|
940
|
-
const expirationTimestamp = Date.now();
|
|
940
|
+
const expirationTimestamp = Date.now() - 1;
|
|
941
941
|
for (let i = 0, len = keys.length; i < len; i++) {
|
|
942
942
|
const key = keys[i];
|
|
943
943
|
const metadata = this.readMetadata(key);
|
|
@@ -4143,7 +4143,7 @@
|
|
|
4143
4143
|
}
|
|
4144
4144
|
return resourceParams;
|
|
4145
4145
|
}
|
|
4146
|
-
// engine version: 0.156.
|
|
4146
|
+
// engine version: 0.156.4-a259372b
|
|
4147
4147
|
|
|
4148
4148
|
/**
|
|
4149
4149
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -4271,7 +4271,7 @@
|
|
|
4271
4271
|
}
|
|
4272
4272
|
callbacks.push(callback);
|
|
4273
4273
|
}
|
|
4274
|
-
// version: 1.311.
|
|
4274
|
+
// version: 1.311.1-73c3329af5
|
|
4275
4275
|
|
|
4276
4276
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4277
4277
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -15770,7 +15770,7 @@
|
|
|
15770
15770
|
}
|
|
15771
15771
|
return superResult;
|
|
15772
15772
|
}
|
|
15773
|
-
// version: 1.311.
|
|
15773
|
+
// version: 1.311.1-73c3329af5
|
|
15774
15774
|
|
|
15775
15775
|
function unwrap(data) {
|
|
15776
15776
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16179,6 +16179,18 @@
|
|
|
16179
16179
|
},
|
|
16180
16180
|
};
|
|
16181
16181
|
}
|
|
16182
|
+
subscribe(snapshot) {
|
|
16183
|
+
var _a;
|
|
16184
|
+
super.subscribe(snapshot);
|
|
16185
|
+
// if the snapshot is refreshed we should stop using data from before the refresh
|
|
16186
|
+
if (this.connected && ((_a = snapshot.refresh) === null || _a === void 0 ? void 0 : _a.resolve)) {
|
|
16187
|
+
const originalResolve = snapshot.refresh.resolve;
|
|
16188
|
+
snapshot.refresh.resolve = (config) => {
|
|
16189
|
+
this.connectTimestamp = Date.now();
|
|
16190
|
+
return originalResolve(config);
|
|
16191
|
+
};
|
|
16192
|
+
}
|
|
16193
|
+
}
|
|
16182
16194
|
}
|
|
16183
16195
|
function createInfiniteScrollingWireAdapterConstructor$1(adapter, name, luvio) {
|
|
16184
16196
|
const constructor = function (callback, sourceContext) {
|
|
@@ -16699,7 +16711,7 @@
|
|
|
16699
16711
|
const { apiFamily, name } = metadata;
|
|
16700
16712
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16701
16713
|
}
|
|
16702
|
-
// version: 1.311.
|
|
16714
|
+
// version: 1.311.1-73c3329af5
|
|
16703
16715
|
|
|
16704
16716
|
/**
|
|
16705
16717
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -16798,7 +16810,7 @@
|
|
|
16798
16810
|
TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
|
|
16799
16811
|
TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
|
|
16800
16812
|
})(TypeCheckShapes || (TypeCheckShapes = {}));
|
|
16801
|
-
// engine version: 0.156.
|
|
16813
|
+
// engine version: 0.156.4-a259372b
|
|
16802
16814
|
|
|
16803
16815
|
const { keys: ObjectKeys$3, create: ObjectCreate$3 } = Object;
|
|
16804
16816
|
|
|
@@ -20983,7 +20995,7 @@
|
|
|
20983
20995
|
function createResourceRequest$1b(config) {
|
|
20984
20996
|
const headers = {};
|
|
20985
20997
|
return {
|
|
20986
|
-
baseUri: '/services/data/
|
|
20998
|
+
baseUri: '/services/data/v63.0',
|
|
20987
20999
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
20988
21000
|
method: 'get',
|
|
20989
21001
|
body: null,
|
|
@@ -21412,7 +21424,7 @@
|
|
|
21412
21424
|
function createResourceRequest$1a(config) {
|
|
21413
21425
|
const headers = {};
|
|
21414
21426
|
return {
|
|
21415
|
-
baseUri: '/services/data/
|
|
21427
|
+
baseUri: '/services/data/v63.0',
|
|
21416
21428
|
basePath: '/ui-api/records/batch/' + config.urlParams.recordIds + '',
|
|
21417
21429
|
method: 'get',
|
|
21418
21430
|
body: null,
|
|
@@ -22224,7 +22236,7 @@
|
|
|
22224
22236
|
function createResourceRequest$19(config) {
|
|
22225
22237
|
const headers = {};
|
|
22226
22238
|
return {
|
|
22227
|
-
baseUri: '/services/data/
|
|
22239
|
+
baseUri: '/services/data/v63.0',
|
|
22228
22240
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
22229
22241
|
method: 'get',
|
|
22230
22242
|
body: null,
|
|
@@ -22274,7 +22286,7 @@
|
|
|
22274
22286
|
function createResourceRequest$18(config) {
|
|
22275
22287
|
const headers = {};
|
|
22276
22288
|
return {
|
|
22277
|
-
baseUri: '/services/data/
|
|
22289
|
+
baseUri: '/services/data/v63.0',
|
|
22278
22290
|
basePath: '/ui-api/list-ui/' + config.urlParams.listViewId + '',
|
|
22279
22291
|
method: 'get',
|
|
22280
22292
|
body: null,
|
|
@@ -22316,7 +22328,7 @@
|
|
|
22316
22328
|
function createResourceRequest$17(config) {
|
|
22317
22329
|
const headers = {};
|
|
22318
22330
|
return {
|
|
22319
|
-
baseUri: '/services/data/
|
|
22331
|
+
baseUri: '/services/data/v63.0',
|
|
22320
22332
|
basePath: '/ui-api/list-records/' + config.urlParams.listViewId + '',
|
|
22321
22333
|
method: 'get',
|
|
22322
22334
|
body: null,
|
|
@@ -23144,7 +23156,7 @@
|
|
|
23144
23156
|
function createResourceRequest$16(config) {
|
|
23145
23157
|
const headers = {};
|
|
23146
23158
|
return {
|
|
23147
|
-
baseUri: '/services/data/
|
|
23159
|
+
baseUri: '/services/data/v63.0',
|
|
23148
23160
|
basePath: '/ui-api/list-records/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
23149
23161
|
method: 'post',
|
|
23150
23162
|
body: config.body,
|
|
@@ -23615,7 +23627,7 @@
|
|
|
23615
23627
|
function createResourceRequest$15(config) {
|
|
23616
23628
|
const headers = {};
|
|
23617
23629
|
return {
|
|
23618
|
-
baseUri: '/services/data/
|
|
23630
|
+
baseUri: '/services/data/v63.0',
|
|
23619
23631
|
basePath: '/ui-api/list-ui/' + config.urlParams.objectApiName + '',
|
|
23620
23632
|
method: 'get',
|
|
23621
23633
|
body: null,
|
|
@@ -23810,7 +23822,7 @@
|
|
|
23810
23822
|
function createResourceRequest$14(config) {
|
|
23811
23823
|
const headers = {};
|
|
23812
23824
|
return {
|
|
23813
|
-
baseUri: '/services/data/
|
|
23825
|
+
baseUri: '/services/data/v63.0',
|
|
23814
23826
|
basePath: '/ui-api/mru-list-ui/' + config.urlParams.objectApiName + '',
|
|
23815
23827
|
method: 'get',
|
|
23816
23828
|
body: null,
|
|
@@ -23852,7 +23864,7 @@
|
|
|
23852
23864
|
function createResourceRequest$13(config) {
|
|
23853
23865
|
const headers = {};
|
|
23854
23866
|
return {
|
|
23855
|
-
baseUri: '/services/data/
|
|
23867
|
+
baseUri: '/services/data/v63.0',
|
|
23856
23868
|
basePath: '/ui-api/mru-list-records/' + config.urlParams.objectApiName + '',
|
|
23857
23869
|
method: 'get',
|
|
23858
23870
|
body: null,
|
|
@@ -24827,7 +24839,7 @@
|
|
|
24827
24839
|
function createResourceRequest$12(config) {
|
|
24828
24840
|
const headers = {};
|
|
24829
24841
|
return {
|
|
24830
|
-
baseUri: '/services/data/
|
|
24842
|
+
baseUri: '/services/data/v63.0',
|
|
24831
24843
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '',
|
|
24832
24844
|
method: 'get',
|
|
24833
24845
|
body: null,
|
|
@@ -25274,7 +25286,7 @@
|
|
|
25274
25286
|
function createResourceRequest$11(config) {
|
|
25275
25287
|
const headers = {};
|
|
25276
25288
|
return {
|
|
25277
|
-
baseUri: '/services/data/
|
|
25289
|
+
baseUri: '/services/data/v63.0',
|
|
25278
25290
|
basePath: '/ui-api/record-ui/' + config.urlParams.recordIds + '',
|
|
25279
25291
|
method: 'get',
|
|
25280
25292
|
body: null,
|
|
@@ -27279,7 +27291,7 @@
|
|
|
27279
27291
|
function createResourceRequest$10(config) {
|
|
27280
27292
|
const headers = {};
|
|
27281
27293
|
return {
|
|
27282
|
-
baseUri: '/services/data/
|
|
27294
|
+
baseUri: '/services/data/v63.0',
|
|
27283
27295
|
basePath: '/ui-api/actions/global',
|
|
27284
27296
|
method: 'get',
|
|
27285
27297
|
body: null,
|
|
@@ -27473,7 +27485,7 @@
|
|
|
27473
27485
|
function createResourceRequest$$(config) {
|
|
27474
27486
|
const headers = {};
|
|
27475
27487
|
return {
|
|
27476
|
-
baseUri: '/services/data/
|
|
27488
|
+
baseUri: '/services/data/v63.0',
|
|
27477
27489
|
basePath: '/ui-api/actions/layout/' + config.urlParams.actionApiName + '',
|
|
27478
27490
|
method: 'get',
|
|
27479
27491
|
body: null,
|
|
@@ -27637,7 +27649,7 @@
|
|
|
27637
27649
|
function createResourceRequest$_(config) {
|
|
27638
27650
|
const headers = {};
|
|
27639
27651
|
return {
|
|
27640
|
-
baseUri: '/services/data/
|
|
27652
|
+
baseUri: '/services/data/v63.0',
|
|
27641
27653
|
basePath: '/ui-api/actions/lookup/' + config.urlParams.objectApiNames + '',
|
|
27642
27654
|
method: 'get',
|
|
27643
27655
|
body: null,
|
|
@@ -27771,7 +27783,7 @@
|
|
|
27771
27783
|
function createResourceRequest$Z(config) {
|
|
27772
27784
|
const headers = {};
|
|
27773
27785
|
return {
|
|
27774
|
-
baseUri: '/services/data/
|
|
27786
|
+
baseUri: '/services/data/v63.0',
|
|
27775
27787
|
basePath: '/ui-api/actions/object/' + config.urlParams.objectApiName + '/record-create',
|
|
27776
27788
|
method: 'get',
|
|
27777
27789
|
body: null,
|
|
@@ -27934,7 +27946,7 @@
|
|
|
27934
27946
|
function createResourceRequest$Y(config) {
|
|
27935
27947
|
const headers = {};
|
|
27936
27948
|
return {
|
|
27937
|
-
baseUri: '/services/data/
|
|
27949
|
+
baseUri: '/services/data/v63.0',
|
|
27938
27950
|
basePath: '/ui-api/actions/overrides/' + config.urlParams.objectApiName + '',
|
|
27939
27951
|
method: 'get',
|
|
27940
27952
|
body: null,
|
|
@@ -28111,7 +28123,7 @@
|
|
|
28111
28123
|
function createResourceRequest$X(config) {
|
|
28112
28124
|
const headers = {};
|
|
28113
28125
|
return {
|
|
28114
|
-
baseUri: '/services/data/
|
|
28126
|
+
baseUri: '/services/data/v63.0',
|
|
28115
28127
|
basePath: '/ui-api/actions/formula-activation/' + config.urlParams.actionFeature + '',
|
|
28116
28128
|
method: 'get',
|
|
28117
28129
|
body: null,
|
|
@@ -28662,7 +28674,7 @@
|
|
|
28662
28674
|
function createResourceRequest$W(config) {
|
|
28663
28675
|
const headers = {};
|
|
28664
28676
|
return {
|
|
28665
|
-
baseUri: '/services/data/
|
|
28677
|
+
baseUri: '/services/data/v63.0',
|
|
28666
28678
|
basePath: '/ui-api/actions/quick-action-info/' + config.urlParams.actionApiName + '',
|
|
28667
28679
|
method: 'get',
|
|
28668
28680
|
body: null,
|
|
@@ -28862,7 +28874,7 @@
|
|
|
28862
28874
|
function createResourceRequest$V(config) {
|
|
28863
28875
|
const headers = {};
|
|
28864
28876
|
return {
|
|
28865
|
-
baseUri: '/services/data/
|
|
28877
|
+
baseUri: '/services/data/v63.0',
|
|
28866
28878
|
basePath: '/ui-api/actions/record-defaults/' + config.urlParams.actionApiName + '',
|
|
28867
28879
|
method: 'get',
|
|
28868
28880
|
body: null,
|
|
@@ -29018,7 +29030,7 @@
|
|
|
29018
29030
|
function createResourceRequest$U(config) {
|
|
29019
29031
|
const headers = {};
|
|
29020
29032
|
return {
|
|
29021
|
-
baseUri: '/services/data/
|
|
29033
|
+
baseUri: '/services/data/v63.0',
|
|
29022
29034
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '',
|
|
29023
29035
|
method: 'get',
|
|
29024
29036
|
body: null,
|
|
@@ -29158,7 +29170,7 @@
|
|
|
29158
29170
|
function createResourceRequest$T(config) {
|
|
29159
29171
|
const headers = {};
|
|
29160
29172
|
return {
|
|
29161
|
-
baseUri: '/services/data/
|
|
29173
|
+
baseUri: '/services/data/v63.0',
|
|
29162
29174
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/record-edit',
|
|
29163
29175
|
method: 'get',
|
|
29164
29176
|
body: null,
|
|
@@ -29362,7 +29374,7 @@
|
|
|
29362
29374
|
function createResourceRequest$S(config) {
|
|
29363
29375
|
const headers = {};
|
|
29364
29376
|
return {
|
|
29365
|
-
baseUri: '/services/data/
|
|
29377
|
+
baseUri: '/services/data/v63.0',
|
|
29366
29378
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/' + config.urlParams.relatedListId + '',
|
|
29367
29379
|
method: 'post',
|
|
29368
29380
|
body: config.body,
|
|
@@ -29637,7 +29649,7 @@
|
|
|
29637
29649
|
function createResourceRequest$R(config) {
|
|
29638
29650
|
const headers = {};
|
|
29639
29651
|
return {
|
|
29640
|
-
baseUri: '/services/data/
|
|
29652
|
+
baseUri: '/services/data/v63.0',
|
|
29641
29653
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list/batch',
|
|
29642
29654
|
method: 'post',
|
|
29643
29655
|
body: config.body,
|
|
@@ -29871,7 +29883,7 @@
|
|
|
29871
29883
|
function createResourceRequest$Q(config) {
|
|
29872
29884
|
const headers = {};
|
|
29873
29885
|
return {
|
|
29874
|
-
baseUri: '/services/data/
|
|
29886
|
+
baseUri: '/services/data/v63.0',
|
|
29875
29887
|
basePath: '/ui-api/actions/record/' + config.urlParams.recordIds + '/related-list-record/' + config.urlParams.relatedListRecordIds + '',
|
|
29876
29888
|
method: 'get',
|
|
29877
29889
|
body: null,
|
|
@@ -30592,7 +30604,7 @@
|
|
|
30592
30604
|
function createResourceRequest$P(config) {
|
|
30593
30605
|
const headers = {};
|
|
30594
30606
|
return {
|
|
30595
|
-
baseUri: '/services/data/
|
|
30607
|
+
baseUri: '/services/data/v63.0',
|
|
30596
30608
|
basePath: '/ui-api/apps',
|
|
30597
30609
|
method: 'get',
|
|
30598
30610
|
body: null,
|
|
@@ -30726,7 +30738,7 @@
|
|
|
30726
30738
|
function createResourceRequest$O(config) {
|
|
30727
30739
|
const headers = {};
|
|
30728
30740
|
return {
|
|
30729
|
-
baseUri: '/services/data/
|
|
30741
|
+
baseUri: '/services/data/v63.0',
|
|
30730
30742
|
basePath: '/ui-api/apps/' + config.urlParams.appId + '',
|
|
30731
30743
|
method: 'get',
|
|
30732
30744
|
body: null,
|
|
@@ -31062,7 +31074,7 @@
|
|
|
31062
31074
|
function createResourceRequest$N(config) {
|
|
31063
31075
|
const headers = {};
|
|
31064
31076
|
return {
|
|
31065
|
-
baseUri: '/services/data/
|
|
31077
|
+
baseUri: '/services/data/v63.0',
|
|
31066
31078
|
basePath: '/ui-api/duplicates/' + config.urlParams.objectApiName + '',
|
|
31067
31079
|
method: 'get',
|
|
31068
31080
|
body: null,
|
|
@@ -31198,7 +31210,7 @@
|
|
|
31198
31210
|
function createResourceRequest$M(config) {
|
|
31199
31211
|
const headers = {};
|
|
31200
31212
|
return {
|
|
31201
|
-
baseUri: '/services/data/
|
|
31213
|
+
baseUri: '/services/data/v63.0',
|
|
31202
31214
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '',
|
|
31203
31215
|
method: 'get',
|
|
31204
31216
|
body: null,
|
|
@@ -31335,7 +31347,7 @@
|
|
|
31335
31347
|
function createResourceRequest$L(config) {
|
|
31336
31348
|
const headers = {};
|
|
31337
31349
|
return {
|
|
31338
|
-
baseUri: '/services/data/
|
|
31350
|
+
baseUri: '/services/data/v63.0',
|
|
31339
31351
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
31340
31352
|
method: 'get',
|
|
31341
31353
|
body: null,
|
|
@@ -31561,7 +31573,7 @@
|
|
|
31561
31573
|
function createResourceRequest$K(config) {
|
|
31562
31574
|
const headers = {};
|
|
31563
31575
|
return {
|
|
31564
|
-
baseUri: '/services/data/
|
|
31576
|
+
baseUri: '/services/data/v63.0',
|
|
31565
31577
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
31566
31578
|
method: 'get',
|
|
31567
31579
|
body: null,
|
|
@@ -31820,7 +31832,7 @@
|
|
|
31820
31832
|
function createResourceRequest$J(config) {
|
|
31821
31833
|
const headers = {};
|
|
31822
31834
|
return {
|
|
31823
|
-
baseUri: '/services/data/
|
|
31835
|
+
baseUri: '/services/data/v63.0',
|
|
31824
31836
|
basePath: '/ui-api/list-info/batch',
|
|
31825
31837
|
method: 'get',
|
|
31826
31838
|
body: null,
|
|
@@ -31957,7 +31969,7 @@
|
|
|
31957
31969
|
function createResourceRequest$I(config) {
|
|
31958
31970
|
const headers = {};
|
|
31959
31971
|
return {
|
|
31960
|
-
baseUri: '/services/data/
|
|
31972
|
+
baseUri: '/services/data/v63.0',
|
|
31961
31973
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
31962
31974
|
method: 'get',
|
|
31963
31975
|
body: null,
|
|
@@ -32255,7 +32267,7 @@
|
|
|
32255
32267
|
function createResourceRequest$H(config) {
|
|
32256
32268
|
const headers = {};
|
|
32257
32269
|
return {
|
|
32258
|
-
baseUri: '/services/data/
|
|
32270
|
+
baseUri: '/services/data/v63.0',
|
|
32259
32271
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '',
|
|
32260
32272
|
method: 'post',
|
|
32261
32273
|
body: config.body,
|
|
@@ -32364,7 +32376,7 @@
|
|
|
32364
32376
|
function createResourceRequest$G(config) {
|
|
32365
32377
|
const headers = {};
|
|
32366
32378
|
return {
|
|
32367
|
-
baseUri: '/services/data/
|
|
32379
|
+
baseUri: '/services/data/v63.0',
|
|
32368
32380
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
32369
32381
|
method: 'delete',
|
|
32370
32382
|
body: null,
|
|
@@ -32531,7 +32543,7 @@
|
|
|
32531
32543
|
function createResourceRequest$F(config) {
|
|
32532
32544
|
const headers = {};
|
|
32533
32545
|
return {
|
|
32534
|
-
baseUri: '/services/data/
|
|
32546
|
+
baseUri: '/services/data/v63.0',
|
|
32535
32547
|
basePath: '/ui-api/list-info/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
32536
32548
|
method: 'patch',
|
|
32537
32549
|
body: config.body,
|
|
@@ -33000,7 +33012,7 @@
|
|
|
33000
33012
|
function createResourceRequest$E(config) {
|
|
33001
33013
|
const headers = {};
|
|
33002
33014
|
return {
|
|
33003
|
-
baseUri: '/services/data/
|
|
33015
|
+
baseUri: '/services/data/v63.0',
|
|
33004
33016
|
basePath: '/ui-api/list-object-info/' + config.urlParams.objectApiName + '',
|
|
33005
33017
|
method: 'get',
|
|
33006
33018
|
body: null,
|
|
@@ -33236,7 +33248,7 @@
|
|
|
33236
33248
|
function createResourceRequest$D(config) {
|
|
33237
33249
|
const headers = {};
|
|
33238
33250
|
return {
|
|
33239
|
-
baseUri: '/services/data/
|
|
33251
|
+
baseUri: '/services/data/v63.0',
|
|
33240
33252
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
33241
33253
|
method: 'get',
|
|
33242
33254
|
body: null,
|
|
@@ -33372,7 +33384,7 @@
|
|
|
33372
33384
|
function createResourceRequest$C(config) {
|
|
33373
33385
|
const headers = {};
|
|
33374
33386
|
return {
|
|
33375
|
-
baseUri: '/services/data/
|
|
33387
|
+
baseUri: '/services/data/v63.0',
|
|
33376
33388
|
basePath: '/ui-api/list-preferences/' + config.urlParams.objectApiName + '/' + config.urlParams.listViewApiName + '',
|
|
33377
33389
|
method: 'patch',
|
|
33378
33390
|
body: config.body,
|
|
@@ -33612,7 +33624,7 @@
|
|
|
33612
33624
|
function createResourceRequest$B(config) {
|
|
33613
33625
|
const headers = {};
|
|
33614
33626
|
return {
|
|
33615
|
-
baseUri: '/services/data/
|
|
33627
|
+
baseUri: '/services/data/v63.0',
|
|
33616
33628
|
basePath: '/ui-api/nav-items',
|
|
33617
33629
|
method: 'get',
|
|
33618
33630
|
body: null,
|
|
@@ -33740,7 +33752,7 @@
|
|
|
33740
33752
|
function createResourceRequest$A(config) {
|
|
33741
33753
|
const headers = {};
|
|
33742
33754
|
return {
|
|
33743
|
-
baseUri: '/services/data/
|
|
33755
|
+
baseUri: '/services/data/v63.0',
|
|
33744
33756
|
basePath: '/ui-api/object-info',
|
|
33745
33757
|
method: 'get',
|
|
33746
33758
|
body: null,
|
|
@@ -34072,7 +34084,7 @@
|
|
|
34072
34084
|
function createResourceRequest$z(config) {
|
|
34073
34085
|
const headers = {};
|
|
34074
34086
|
return {
|
|
34075
|
-
baseUri: '/services/data/
|
|
34087
|
+
baseUri: '/services/data/v63.0',
|
|
34076
34088
|
basePath: '/ui-api/object-info/batch/' + config.urlParams.objectApiNames + '',
|
|
34077
34089
|
method: 'get',
|
|
34078
34090
|
body: null,
|
|
@@ -34326,8 +34338,8 @@
|
|
|
34326
34338
|
const keyBuilderFromType$i =
|
|
34327
34339
|
/**
|
|
34328
34340
|
* custom key builder from PicklistValuesRepresentation.
|
|
34329
|
-
* PicklistValuesRepresentation.url is like /services/data/
|
|
34330
|
-
* the '/services/data/
|
|
34341
|
+
* PicklistValuesRepresentation.url is like /services/data/v63.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/AccountSource
|
|
34342
|
+
* the '/services/data/v63.0' in the key make trouble for new js release. so chop it off make the key unique cross releases.
|
|
34331
34343
|
*/
|
|
34332
34344
|
function PicklistValuesRepresentationKeyBuilderFromType(luvio, object) {
|
|
34333
34345
|
const id = object.url.substring(object.url.indexOf('/ui-api'));
|
|
@@ -34517,7 +34529,7 @@
|
|
|
34517
34529
|
function createResourceRequest$y(config) {
|
|
34518
34530
|
const headers = {};
|
|
34519
34531
|
return {
|
|
34520
|
-
baseUri: '/services/data/
|
|
34532
|
+
baseUri: '/services/data/v63.0',
|
|
34521
34533
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '',
|
|
34522
34534
|
method: 'get',
|
|
34523
34535
|
body: null,
|
|
@@ -34619,7 +34631,7 @@
|
|
|
34619
34631
|
function createResourceRequest$x(config) {
|
|
34620
34632
|
const headers = {};
|
|
34621
34633
|
return {
|
|
34622
|
-
baseUri: '/services/data/
|
|
34634
|
+
baseUri: '/services/data/v63.0',
|
|
34623
34635
|
basePath: '/ui-api/object-info/' + config.urlParams.objectApiName + '/picklist-values/' + config.urlParams.recordTypeId + '/' + config.urlParams.fieldApiName + '',
|
|
34624
34636
|
method: 'get',
|
|
34625
34637
|
body: null,
|
|
@@ -34824,7 +34836,7 @@
|
|
|
34824
34836
|
function createResourceRequest$w(config) {
|
|
34825
34837
|
const headers = {};
|
|
34826
34838
|
return {
|
|
34827
|
-
baseUri: '/services/data/
|
|
34839
|
+
baseUri: '/services/data/v63.0',
|
|
34828
34840
|
basePath: '/ui-api/path/layout/' + config.urlParams.objectApiName + '',
|
|
34829
34841
|
method: 'get',
|
|
34830
34842
|
body: null,
|
|
@@ -34995,7 +35007,7 @@
|
|
|
34995
35007
|
function createResourceRequest$v(config) {
|
|
34996
35008
|
const headers = {};
|
|
34997
35009
|
return {
|
|
34998
|
-
baseUri: '/services/data/
|
|
35010
|
+
baseUri: '/services/data/v63.0',
|
|
34999
35011
|
basePath: '/ui-api/predupe',
|
|
35000
35012
|
method: 'post',
|
|
35001
35013
|
body: config.body,
|
|
@@ -35775,7 +35787,7 @@
|
|
|
35775
35787
|
function createResourceRequest$u(config) {
|
|
35776
35788
|
const headers = {};
|
|
35777
35789
|
return {
|
|
35778
|
-
baseUri: '/services/data/
|
|
35790
|
+
baseUri: '/services/data/v63.0',
|
|
35779
35791
|
basePath: '/ui-api/record-avatars/batch/' + config.urlParams.recordIds + '',
|
|
35780
35792
|
method: 'get',
|
|
35781
35793
|
body: null,
|
|
@@ -36385,7 +36397,7 @@
|
|
|
36385
36397
|
function createResourceRequest$t(config) {
|
|
36386
36398
|
const headers = {};
|
|
36387
36399
|
return {
|
|
36388
|
-
baseUri: '/services/data/
|
|
36400
|
+
baseUri: '/services/data/v63.0',
|
|
36389
36401
|
basePath: '/ui-api/related-list-count/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
36390
36402
|
method: 'get',
|
|
36391
36403
|
body: null,
|
|
@@ -36640,7 +36652,7 @@
|
|
|
36640
36652
|
function createResourceRequest$s(config) {
|
|
36641
36653
|
const headers = {};
|
|
36642
36654
|
return {
|
|
36643
|
-
baseUri: '/services/data/
|
|
36655
|
+
baseUri: '/services/data/v63.0',
|
|
36644
36656
|
basePath: '/ui-api/related-list-count/batch/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListNames + '',
|
|
36645
36657
|
method: 'get',
|
|
36646
36658
|
body: null,
|
|
@@ -37003,7 +37015,7 @@
|
|
|
37003
37015
|
function createResourceRequest$r(config) {
|
|
37004
37016
|
const headers = {};
|
|
37005
37017
|
return {
|
|
37006
|
-
baseUri: '/services/data/
|
|
37018
|
+
baseUri: '/services/data/v63.0',
|
|
37007
37019
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
37008
37020
|
method: 'get',
|
|
37009
37021
|
body: null,
|
|
@@ -37263,7 +37275,7 @@
|
|
|
37263
37275
|
function createResourceRequest$q(config) {
|
|
37264
37276
|
const headers = {};
|
|
37265
37277
|
return {
|
|
37266
|
-
baseUri: '/services/data/
|
|
37278
|
+
baseUri: '/services/data/v63.0',
|
|
37267
37279
|
basePath: '/ui-api/related-list-info/batch/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListNames + '',
|
|
37268
37280
|
method: 'get',
|
|
37269
37281
|
body: null,
|
|
@@ -37454,7 +37466,7 @@
|
|
|
37454
37466
|
function createResourceRequest$p(config) {
|
|
37455
37467
|
const headers = {};
|
|
37456
37468
|
return {
|
|
37457
|
-
baseUri: '/services/data/
|
|
37469
|
+
baseUri: '/services/data/v63.0',
|
|
37458
37470
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '',
|
|
37459
37471
|
method: 'get',
|
|
37460
37472
|
body: null,
|
|
@@ -37697,7 +37709,7 @@
|
|
|
37697
37709
|
function createResourceRequest$o(config) {
|
|
37698
37710
|
const headers = {};
|
|
37699
37711
|
return {
|
|
37700
|
-
baseUri: '/services/data/
|
|
37712
|
+
baseUri: '/services/data/v63.0',
|
|
37701
37713
|
basePath: '/ui-api/related-list-info/' + config.urlParams.parentObjectApiName + '/' + config.urlParams.relatedListId + '',
|
|
37702
37714
|
method: 'patch',
|
|
37703
37715
|
body: config.body,
|
|
@@ -37867,7 +37879,7 @@
|
|
|
37867
37879
|
function createResourceRequest$n(config) {
|
|
37868
37880
|
const headers = {};
|
|
37869
37881
|
return {
|
|
37870
|
-
baseUri: '/services/data/
|
|
37882
|
+
baseUri: '/services/data/v63.0',
|
|
37871
37883
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
37872
37884
|
method: 'get',
|
|
37873
37885
|
body: null,
|
|
@@ -38119,7 +38131,7 @@
|
|
|
38119
38131
|
function createResourceRequest$m(config) {
|
|
38120
38132
|
const headers = {};
|
|
38121
38133
|
return {
|
|
38122
|
-
baseUri: '/services/data/
|
|
38134
|
+
baseUri: '/services/data/v63.0',
|
|
38123
38135
|
basePath: '/ui-api/related-list-preferences/batch/' + config.urlParams.preferencesIds + '',
|
|
38124
38136
|
method: 'get',
|
|
38125
38137
|
body: null,
|
|
@@ -38317,7 +38329,7 @@
|
|
|
38317
38329
|
function createResourceRequest$l(config) {
|
|
38318
38330
|
const headers = {};
|
|
38319
38331
|
return {
|
|
38320
|
-
baseUri: '/services/data/
|
|
38332
|
+
baseUri: '/services/data/v63.0',
|
|
38321
38333
|
basePath: '/ui-api/related-list-preferences/' + config.urlParams.preferencesId + '',
|
|
38322
38334
|
method: 'patch',
|
|
38323
38335
|
body: config.body,
|
|
@@ -39076,7 +39088,7 @@
|
|
|
39076
39088
|
function createResourceRequest$k(config) {
|
|
39077
39089
|
const headers = {};
|
|
39078
39090
|
return {
|
|
39079
|
-
baseUri: '/services/data/
|
|
39091
|
+
baseUri: '/services/data/v63.0',
|
|
39080
39092
|
basePath: '/ui-api/related-list-records/' + config.urlParams.parentRecordId + '/' + config.urlParams.relatedListId + '',
|
|
39081
39093
|
method: 'post',
|
|
39082
39094
|
body: config.body,
|
|
@@ -39351,7 +39363,7 @@
|
|
|
39351
39363
|
function createResourceRequest$j(config) {
|
|
39352
39364
|
const headers = {};
|
|
39353
39365
|
return {
|
|
39354
|
-
baseUri: '/services/data/
|
|
39366
|
+
baseUri: '/services/data/v63.0',
|
|
39355
39367
|
basePath: '/ui-api/related-list-records/batch/' + config.urlParams.parentRecordId + '',
|
|
39356
39368
|
method: 'post',
|
|
39357
39369
|
body: config.body,
|
|
@@ -39717,7 +39729,7 @@
|
|
|
39717
39729
|
function createResourceRequest$i(config) {
|
|
39718
39730
|
const headers = {};
|
|
39719
39731
|
return {
|
|
39720
|
-
baseUri: '/services/data/
|
|
39732
|
+
baseUri: '/services/data/v63.0',
|
|
39721
39733
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters',
|
|
39722
39734
|
method: 'get',
|
|
39723
39735
|
body: null,
|
|
@@ -39899,7 +39911,7 @@
|
|
|
39899
39911
|
function createResourceRequest$h(config) {
|
|
39900
39912
|
const headers = {};
|
|
39901
39913
|
return {
|
|
39902
|
-
baseUri: '/services/data/
|
|
39914
|
+
baseUri: '/services/data/v63.0',
|
|
39903
39915
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/filters/' + config.urlParams.filterApiName + '/options',
|
|
39904
39916
|
method: 'get',
|
|
39905
39917
|
body: null,
|
|
@@ -40080,7 +40092,7 @@
|
|
|
40080
40092
|
function createResourceRequest$g(config) {
|
|
40081
40093
|
const headers = {};
|
|
40082
40094
|
return {
|
|
40083
|
-
baseUri: '/services/data/
|
|
40095
|
+
baseUri: '/services/data/v63.0',
|
|
40084
40096
|
basePath: '/ui-api/search-info/' + config.urlParams.objectApiName + '/lookup/' + config.urlParams.fieldApiName + '',
|
|
40085
40097
|
method: 'get',
|
|
40086
40098
|
body: null,
|
|
@@ -40399,7 +40411,7 @@
|
|
|
40399
40411
|
function createResourceRequest$f(config) {
|
|
40400
40412
|
const headers = {};
|
|
40401
40413
|
return {
|
|
40402
|
-
baseUri: '/services/data/
|
|
40414
|
+
baseUri: '/services/data/v63.0',
|
|
40403
40415
|
basePath: '/ui-api/search/results',
|
|
40404
40416
|
method: 'post',
|
|
40405
40417
|
body: config.body,
|
|
@@ -40602,7 +40614,7 @@
|
|
|
40602
40614
|
function createResourceRequest$e(config) {
|
|
40603
40615
|
const headers = {};
|
|
40604
40616
|
return {
|
|
40605
|
-
baseUri: '/services/data/
|
|
40617
|
+
baseUri: '/services/data/v63.0',
|
|
40606
40618
|
basePath: '/ui-api/search/results/keyword',
|
|
40607
40619
|
method: 'post',
|
|
40608
40620
|
body: config.body,
|
|
@@ -40842,7 +40854,7 @@
|
|
|
40842
40854
|
function createResourceRequest$d(config) {
|
|
40843
40855
|
const headers = {};
|
|
40844
40856
|
return {
|
|
40845
|
-
baseUri: '/services/data/
|
|
40857
|
+
baseUri: '/services/data/v63.0',
|
|
40846
40858
|
basePath: '/ui-api/records/batch',
|
|
40847
40859
|
method: 'post',
|
|
40848
40860
|
body: config.body,
|
|
@@ -40956,7 +40968,7 @@
|
|
|
40956
40968
|
function createResourceRequest$c(config) {
|
|
40957
40969
|
const headers = {};
|
|
40958
40970
|
return {
|
|
40959
|
-
baseUri: '/services/data/
|
|
40971
|
+
baseUri: '/services/data/v63.0',
|
|
40960
40972
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
40961
40973
|
method: 'patch',
|
|
40962
40974
|
body: config.body,
|
|
@@ -41077,7 +41089,7 @@
|
|
|
41077
41089
|
function createResourceRequest$b(config) {
|
|
41078
41090
|
const headers = {};
|
|
41079
41091
|
return {
|
|
41080
|
-
baseUri: '/services/data/
|
|
41092
|
+
baseUri: '/services/data/v63.0',
|
|
41081
41093
|
basePath: '/ui-api/actions/perform-quick-action/' + config.urlParams.actionApiName + '',
|
|
41082
41094
|
method: 'post',
|
|
41083
41095
|
body: config.body,
|
|
@@ -41180,7 +41192,7 @@
|
|
|
41180
41192
|
function createResourceRequest$a(config) {
|
|
41181
41193
|
const headers = {};
|
|
41182
41194
|
return {
|
|
41183
|
-
baseUri: '/services/data/
|
|
41195
|
+
baseUri: '/services/data/v63.0',
|
|
41184
41196
|
basePath: '/ui-api/layout/' + config.urlParams.objectApiName + '/user-state',
|
|
41185
41197
|
method: 'patch',
|
|
41186
41198
|
body: config.body,
|
|
@@ -41641,7 +41653,7 @@
|
|
|
41641
41653
|
function createResourceRequest$9(config) {
|
|
41642
41654
|
const headers = {};
|
|
41643
41655
|
return {
|
|
41644
|
-
baseUri: '/services/data/
|
|
41656
|
+
baseUri: '/services/data/v63.0',
|
|
41645
41657
|
basePath: '/ui-api/lookups/' + config.urlParams.objectApiName + '/' + config.urlParams.fieldApiName + '',
|
|
41646
41658
|
method: 'post',
|
|
41647
41659
|
body: config.body,
|
|
@@ -41865,7 +41877,7 @@
|
|
|
41865
41877
|
function createResourceRequest$8(config) {
|
|
41866
41878
|
const headers = {};
|
|
41867
41879
|
return {
|
|
41868
|
-
baseUri: '/services/data/
|
|
41880
|
+
baseUri: '/services/data/v63.0',
|
|
41869
41881
|
basePath: '/ui-api/record-avatars/' + config.urlParams.recordId + '/association',
|
|
41870
41882
|
method: 'post',
|
|
41871
41883
|
body: config.body,
|
|
@@ -42219,7 +42231,7 @@
|
|
|
42219
42231
|
function createResourceRequest$7(config) {
|
|
42220
42232
|
const headers = {};
|
|
42221
42233
|
return {
|
|
42222
|
-
baseUri: '/services/data/
|
|
42234
|
+
baseUri: '/services/data/v63.0',
|
|
42223
42235
|
basePath: '/ui-api/record-defaults/create/' + config.urlParams.objectApiName + '',
|
|
42224
42236
|
method: 'get',
|
|
42225
42237
|
body: null,
|
|
@@ -42750,7 +42762,7 @@
|
|
|
42750
42762
|
function createResourceRequest$6(config) {
|
|
42751
42763
|
const headers = {};
|
|
42752
42764
|
return {
|
|
42753
|
-
baseUri: '/services/data/
|
|
42765
|
+
baseUri: '/services/data/v63.0',
|
|
42754
42766
|
basePath: '/ui-api/record-defaults/template/clone/' + config.urlParams.recordId + '',
|
|
42755
42767
|
method: 'get',
|
|
42756
42768
|
body: null,
|
|
@@ -43281,7 +43293,7 @@
|
|
|
43281
43293
|
function createResourceRequest$5(config) {
|
|
43282
43294
|
const headers = {};
|
|
43283
43295
|
return {
|
|
43284
|
-
baseUri: '/services/data/
|
|
43296
|
+
baseUri: '/services/data/v63.0',
|
|
43285
43297
|
basePath: '/ui-api/record-defaults/template/create/' + config.urlParams.objectApiName + '',
|
|
43286
43298
|
method: 'get',
|
|
43287
43299
|
body: null,
|
|
@@ -43486,7 +43498,7 @@
|
|
|
43486
43498
|
function createResourceRequest$4(config) {
|
|
43487
43499
|
const headers = {};
|
|
43488
43500
|
return {
|
|
43489
|
-
baseUri: '/services/data/
|
|
43501
|
+
baseUri: '/services/data/v63.0',
|
|
43490
43502
|
basePath: '/ui-api/records',
|
|
43491
43503
|
method: 'post',
|
|
43492
43504
|
body: config.body,
|
|
@@ -43588,7 +43600,7 @@
|
|
|
43588
43600
|
function createResourceRequest$3(config) {
|
|
43589
43601
|
const headers = {};
|
|
43590
43602
|
return {
|
|
43591
|
-
baseUri: '/services/data/
|
|
43603
|
+
baseUri: '/services/data/v63.0',
|
|
43592
43604
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
43593
43605
|
method: 'delete',
|
|
43594
43606
|
body: null,
|
|
@@ -43672,7 +43684,7 @@
|
|
|
43672
43684
|
headers['If-Unmodified-Since'] = header_ifUnmodifiedSince;
|
|
43673
43685
|
}
|
|
43674
43686
|
return {
|
|
43675
|
-
baseUri: '/services/data/
|
|
43687
|
+
baseUri: '/services/data/v63.0',
|
|
43676
43688
|
basePath: '/ui-api/records/' + config.urlParams.recordId + '',
|
|
43677
43689
|
method: 'patch',
|
|
43678
43690
|
body: config.body,
|
|
@@ -43956,7 +43968,7 @@
|
|
|
43956
43968
|
function createResourceRequest$1$1(config) {
|
|
43957
43969
|
const headers = {};
|
|
43958
43970
|
return {
|
|
43959
|
-
baseUri: '/services/data/
|
|
43971
|
+
baseUri: '/services/data/v63.0',
|
|
43960
43972
|
basePath: '/ui-api/records/content-documents/' +
|
|
43961
43973
|
config.urlParams.contentDocumentId +
|
|
43962
43974
|
'/content-versions',
|
|
@@ -44069,7 +44081,7 @@
|
|
|
44069
44081
|
function createResourceRequest$1d(config) {
|
|
44070
44082
|
const headers = {};
|
|
44071
44083
|
return {
|
|
44072
|
-
baseUri: '/services/data/
|
|
44084
|
+
baseUri: '/services/data/v63.0',
|
|
44073
44085
|
basePath: '/ui-api/records/content-documents/content-versions',
|
|
44074
44086
|
method: 'post',
|
|
44075
44087
|
body: config.body,
|
|
@@ -44806,7 +44818,7 @@
|
|
|
44806
44818
|
throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
|
|
44807
44819
|
throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
44808
44820
|
});
|
|
44809
|
-
// version: 1.311.
|
|
44821
|
+
// version: 1.311.1-f99d2bc85e
|
|
44810
44822
|
|
|
44811
44823
|
var ldsIdempotencyWriteDisabled = {
|
|
44812
44824
|
isOpen: function (e) {
|
|
@@ -44993,7 +45005,7 @@
|
|
|
44993
45005
|
const { isArray: isArray$5 } = Array;
|
|
44994
45006
|
const { entries: entries$6, keys: keys$9 } = Object;
|
|
44995
45007
|
|
|
44996
|
-
const UI_API_BASE_URI = '/services/data/
|
|
45008
|
+
const UI_API_BASE_URI = '/services/data/v63.0/ui-api';
|
|
44997
45009
|
|
|
44998
45010
|
let instrumentation$2 = {
|
|
44999
45011
|
aggregateUiChunkCount: (_cb) => { },
|
|
@@ -61106,7 +61118,7 @@
|
|
|
61106
61118
|
/**
|
|
61107
61119
|
* merge to paging url with different set of fields or optional fields as combined one
|
|
61108
61120
|
* the paging url is like
|
|
61109
|
-
* /services/data/
|
|
61121
|
+
* /services/data/v63.0/ui-api/related-list-records/001R0000006l1xKIAQ/Contacts
|
|
61110
61122
|
* ?fields=Id%2CName&optionalFields=Contact.Id%2CContact.Name&pageSize=50&pageToken=0
|
|
61111
61123
|
* @param path1 url path and query parmeter without domain
|
|
61112
61124
|
* @param path2 url path and query parmeter without domain
|
|
@@ -63285,7 +63297,7 @@
|
|
|
63285
63297
|
// so eslint doesn't complain about nimbus
|
|
63286
63298
|
/* global __nimbus */
|
|
63287
63299
|
// note this is automatically incremented by scripts/release/bump-api-version.js at each release
|
|
63288
|
-
const apiVersion = `
|
|
63300
|
+
const apiVersion = `v63.0`;
|
|
63289
63301
|
const batchEndPointPath = `/services/data/${apiVersion}/graphql/batch`;
|
|
63290
63302
|
const endPointPath = `/services/data/${apiVersion}/graphql`;
|
|
63291
63303
|
const batchObjectInfoEndpoint = `/services/data/${apiVersion}/ui-api/object-info/batch`;
|
|
@@ -63967,7 +63979,7 @@
|
|
|
63967
63979
|
id: '@salesforce/lds-network-adapter',
|
|
63968
63980
|
instrument: instrument$2,
|
|
63969
63981
|
});
|
|
63970
|
-
// version: 1.311.
|
|
63982
|
+
// version: 1.311.1-73c3329af5
|
|
63971
63983
|
|
|
63972
63984
|
const { create: create$3, keys: keys$3 } = Object;
|
|
63973
63985
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -82656,7 +82668,7 @@
|
|
|
82656
82668
|
function createResourceRequest$2(config) {
|
|
82657
82669
|
const headers = {};
|
|
82658
82670
|
return {
|
|
82659
|
-
baseUri: '/services/data/
|
|
82671
|
+
baseUri: '/services/data/v63.0',
|
|
82660
82672
|
basePath: '/graphql',
|
|
82661
82673
|
method: 'post',
|
|
82662
82674
|
body: { ...config.body,
|
|
@@ -83047,7 +83059,7 @@
|
|
|
83047
83059
|
const headers = {};
|
|
83048
83060
|
const transformedConfig = stripDocumentsOfMetaschema(config);
|
|
83049
83061
|
return {
|
|
83050
|
-
baseUri: '/services/data/
|
|
83062
|
+
baseUri: '/services/data/v63.0',
|
|
83051
83063
|
basePath: '/graphql/batch',
|
|
83052
83064
|
method: 'post',
|
|
83053
83065
|
body: transformedConfig.body,
|
|
@@ -84003,7 +84015,7 @@
|
|
|
84003
84015
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
84004
84016
|
instrument: instrument$1,
|
|
84005
84017
|
});
|
|
84006
|
-
// version: 1.311.
|
|
84018
|
+
// version: 1.311.1-f99d2bc85e
|
|
84007
84019
|
|
|
84008
84020
|
// On core the unstable adapters are re-exported with different names,
|
|
84009
84021
|
// we want to match them here.
|
|
@@ -86042,7 +86054,7 @@
|
|
|
86042
86054
|
function buildNetworkSnapshot(luvio, config, fragment, options) {
|
|
86043
86055
|
const { variables: queryVariables, query } = config;
|
|
86044
86056
|
const request = {
|
|
86045
|
-
baseUri: '/services/data/
|
|
86057
|
+
baseUri: '/services/data/v63.0',
|
|
86046
86058
|
basePath: '/graphql',
|
|
86047
86059
|
method: 'post',
|
|
86048
86060
|
priority: 'normal',
|
|
@@ -86259,7 +86271,7 @@
|
|
|
86259
86271
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
86260
86272
|
graphQLImperative = ldsAdapter;
|
|
86261
86273
|
});
|
|
86262
|
-
// version: 1.311.
|
|
86274
|
+
// version: 1.311.1-f99d2bc85e
|
|
86263
86275
|
|
|
86264
86276
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
86265
86277
|
__proto__: null,
|
|
@@ -86994,7 +87006,7 @@
|
|
|
86994
87006
|
function register(r) {
|
|
86995
87007
|
callbacks$1.forEach((callback) => callback(r));
|
|
86996
87008
|
}
|
|
86997
|
-
// version: 1.311.
|
|
87009
|
+
// version: 1.311.1-73c3329af5
|
|
86998
87010
|
|
|
86999
87011
|
/**
|
|
87000
87012
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -91975,4 +91987,4 @@
|
|
|
91975
91987
|
exports.subscribeToAdapter = subscribeToAdapter;
|
|
91976
91988
|
|
|
91977
91989
|
}));
|
|
91978
|
-
// version: 1.311.
|
|
91990
|
+
// version: 1.311.1-73c3329af5
|