@salesforce/lds-worker-api 1.309.0-dev17 → 1.309.0-dev19
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.
|
@@ -434,34 +434,42 @@ function invokeAdapterWithMetadata(adapterId, config, metadata, onResponse, nati
|
|
|
434
434
|
invokeAdapterWithMetadataDeleteRecord(adapter, config, metadata, onResponse, nativeAdapterRequestContext);
|
|
435
435
|
}
|
|
436
436
|
else {
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
437
|
+
draftManager.stopQueueWhileRunning(() => {
|
|
438
|
+
return new Promise((resolve) => {
|
|
439
|
+
invokeDmlAdapter(adapter, parse(config), async (responseValue) => {
|
|
440
|
+
const draftIds = draftIdsForResponseValue(responseValue);
|
|
441
|
+
if (responseValue.error === undefined &&
|
|
442
|
+
draftIds !== undefined &&
|
|
443
|
+
draftIds.length > 0) {
|
|
444
|
+
const draftId = draftIds[draftIds.length - 1];
|
|
445
|
+
const managerState = await draftManager.getQueue();
|
|
446
|
+
const draftItem = managerState.items.find((x) => x.id === draftId);
|
|
447
|
+
if (draftItem === undefined) {
|
|
448
|
+
// draftItem no longer exists, might have already been uploaded
|
|
449
|
+
ldsMobileInstrumentation$1.log('tried to set metadata on draft item that no longer exists');
|
|
450
|
+
resolve(responseValue);
|
|
451
|
+
return;
|
|
452
|
+
}
|
|
453
|
+
draftManager
|
|
454
|
+
.setMetadata(draftId, { ...draftItem.metadata, ...metadata })
|
|
455
|
+
.then(() => {
|
|
456
|
+
resolve(responseValue);
|
|
457
|
+
})
|
|
458
|
+
.catch((error) => {
|
|
459
|
+
resolve(convertErrorIntoNativeFetchError(error, 'Unknown error setting metadata'));
|
|
460
|
+
});
|
|
461
|
+
}
|
|
462
|
+
else {
|
|
463
|
+
let response = responseValue;
|
|
464
|
+
response.error =
|
|
465
|
+
createNativeFetchErrorResponse(NO_DRAFT_CREATED_MESSAGE);
|
|
466
|
+
resolve(response);
|
|
467
|
+
}
|
|
468
|
+
}, nativeAdapterRequestContext);
|
|
469
|
+
}).then((callbackValue) => {
|
|
470
|
+
onResponse(callbackValue);
|
|
471
|
+
});
|
|
472
|
+
});
|
|
465
473
|
}
|
|
466
474
|
}
|
|
467
475
|
/*
|
|
@@ -1077,4 +1085,4 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
1077
1085
|
}
|
|
1078
1086
|
|
|
1079
1087
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
1080
|
-
// version: 1.309.0-
|
|
1088
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
@@ -4265,7 +4265,7 @@ function withDefaultLuvio(callback) {
|
|
|
4265
4265
|
}
|
|
4266
4266
|
callbacks.push(callback);
|
|
4267
4267
|
}
|
|
4268
|
-
// version: 1.309.0-
|
|
4268
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
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) {
|
|
@@ -15764,7 +15764,7 @@ function gql(literals, ...subs) {
|
|
|
15764
15764
|
}
|
|
15765
15765
|
return superResult;
|
|
15766
15766
|
}
|
|
15767
|
-
// version: 1.309.0-
|
|
15767
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
15768
15768
|
|
|
15769
15769
|
function unwrap(data) {
|
|
15770
15770
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16705,7 +16705,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
|
|
|
16705
16705
|
const { apiFamily, name } = metadata;
|
|
16706
16706
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16707
16707
|
}
|
|
16708
|
-
// version: 1.309.0-
|
|
16708
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
16709
16709
|
|
|
16710
16710
|
/**
|
|
16711
16711
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -44812,7 +44812,7 @@ withDefaultLuvio((luvio) => {
|
|
|
44812
44812
|
throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
|
|
44813
44813
|
throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
44814
44814
|
});
|
|
44815
|
-
// version: 1.309.0-
|
|
44815
|
+
// version: 1.309.0-dev19-fee7361a0b
|
|
44816
44816
|
|
|
44817
44817
|
var ldsIdempotencyWriteDisabled = {
|
|
44818
44818
|
isOpen: function (e) {
|
|
@@ -50477,6 +50477,12 @@ class DurableDraftQueue {
|
|
|
50477
50477
|
state: DraftQueueState.Stopped,
|
|
50478
50478
|
});
|
|
50479
50479
|
}
|
|
50480
|
+
stopQueueWhileRunning(action) {
|
|
50481
|
+
this.stopQueueManually();
|
|
50482
|
+
return action().finally(() => {
|
|
50483
|
+
this.startQueueSafe();
|
|
50484
|
+
});
|
|
50485
|
+
}
|
|
50480
50486
|
/**
|
|
50481
50487
|
* Used to stop the queue within DraftQueue without user interaction
|
|
50482
50488
|
*/
|
|
@@ -51706,6 +51712,14 @@ class DraftManager {
|
|
|
51706
51712
|
stopQueue() {
|
|
51707
51713
|
return this.draftQueue.stopQueue();
|
|
51708
51714
|
}
|
|
51715
|
+
/**
|
|
51716
|
+
* Stops the draft queue manually without notifying the user and then runs the passed action.
|
|
51717
|
+
* After the action is completed it will safely start the queue if the user had set it to be
|
|
51718
|
+
* started.
|
|
51719
|
+
*/
|
|
51720
|
+
stopQueueWhileRunning(action) {
|
|
51721
|
+
return this.draftQueue.stopQueueWhileRunning(action);
|
|
51722
|
+
}
|
|
51709
51723
|
/**
|
|
51710
51724
|
* Subscribes the listener to changes to the draft queue.
|
|
51711
51725
|
*
|
|
@@ -61286,6 +61300,9 @@ class NimbusDraftQueue {
|
|
|
61286
61300
|
stopQueue() {
|
|
61287
61301
|
return Promise.reject(new Error('Cannot call stopQueue from the NimbusDraftQueue'));
|
|
61288
61302
|
}
|
|
61303
|
+
stopQueueWhileRunning(_action) {
|
|
61304
|
+
return Promise.reject(new Error('Cannot call stopQueueWhileRunning from the NimbusDraftQueue'));
|
|
61305
|
+
}
|
|
61289
61306
|
replaceAction(_actionId, _withActionId) {
|
|
61290
61307
|
return Promise.reject(new Error('Cannot call replaceAction from the NimbusDraftQueue'));
|
|
61291
61308
|
}
|
|
@@ -64096,7 +64113,7 @@ register$1({
|
|
|
64096
64113
|
id: '@salesforce/lds-network-adapter',
|
|
64097
64114
|
instrument: instrument$2,
|
|
64098
64115
|
});
|
|
64099
|
-
// version: 1.309.0-
|
|
64116
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
64100
64117
|
|
|
64101
64118
|
const { create: create$3, keys: keys$3 } = Object;
|
|
64102
64119
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -84132,7 +84149,7 @@ register$1({
|
|
|
84132
84149
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
84133
84150
|
instrument: instrument$1,
|
|
84134
84151
|
});
|
|
84135
|
-
// version: 1.309.0-
|
|
84152
|
+
// version: 1.309.0-dev19-fee7361a0b
|
|
84136
84153
|
|
|
84137
84154
|
// On core the unstable adapters are re-exported with different names,
|
|
84138
84155
|
// we want to match them here.
|
|
@@ -86388,7 +86405,7 @@ withDefaultLuvio((luvio) => {
|
|
|
86388
86405
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
86389
86406
|
graphQLImperative = ldsAdapter;
|
|
86390
86407
|
});
|
|
86391
|
-
// version: 1.309.0-
|
|
86408
|
+
// version: 1.309.0-dev19-fee7361a0b
|
|
86392
86409
|
|
|
86393
86410
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
86394
86411
|
__proto__: null,
|
|
@@ -86786,34 +86803,42 @@ function invokeAdapterWithMetadata(adapterId, config, metadata, onResponse, nati
|
|
|
86786
86803
|
invokeAdapterWithMetadataDeleteRecord(adapter, config, metadata, onResponse, nativeAdapterRequestContext);
|
|
86787
86804
|
}
|
|
86788
86805
|
else {
|
|
86789
|
-
|
|
86790
|
-
|
|
86791
|
-
|
|
86792
|
-
|
|
86793
|
-
|
|
86794
|
-
|
|
86795
|
-
|
|
86796
|
-
|
|
86797
|
-
|
|
86798
|
-
|
|
86799
|
-
|
|
86800
|
-
|
|
86801
|
-
|
|
86802
|
-
|
|
86803
|
-
|
|
86804
|
-
|
|
86805
|
-
|
|
86806
|
-
|
|
86807
|
-
|
|
86808
|
-
|
|
86809
|
-
|
|
86810
|
-
|
|
86811
|
-
|
|
86812
|
-
|
|
86813
|
-
|
|
86814
|
-
|
|
86815
|
-
|
|
86816
|
-
|
|
86806
|
+
draftManager.stopQueueWhileRunning(() => {
|
|
86807
|
+
return new Promise((resolve) => {
|
|
86808
|
+
invokeDmlAdapter(adapter, parse$1(config), async (responseValue) => {
|
|
86809
|
+
const draftIds = draftIdsForResponseValue(responseValue);
|
|
86810
|
+
if (responseValue.error === undefined &&
|
|
86811
|
+
draftIds !== undefined &&
|
|
86812
|
+
draftIds.length > 0) {
|
|
86813
|
+
const draftId = draftIds[draftIds.length - 1];
|
|
86814
|
+
const managerState = await draftManager.getQueue();
|
|
86815
|
+
const draftItem = managerState.items.find((x) => x.id === draftId);
|
|
86816
|
+
if (draftItem === undefined) {
|
|
86817
|
+
// draftItem no longer exists, might have already been uploaded
|
|
86818
|
+
ldsMobileInstrumentation$1.log('tried to set metadata on draft item that no longer exists');
|
|
86819
|
+
resolve(responseValue);
|
|
86820
|
+
return;
|
|
86821
|
+
}
|
|
86822
|
+
draftManager
|
|
86823
|
+
.setMetadata(draftId, { ...draftItem.metadata, ...metadata })
|
|
86824
|
+
.then(() => {
|
|
86825
|
+
resolve(responseValue);
|
|
86826
|
+
})
|
|
86827
|
+
.catch((error) => {
|
|
86828
|
+
resolve(convertErrorIntoNativeFetchError(error, 'Unknown error setting metadata'));
|
|
86829
|
+
});
|
|
86830
|
+
}
|
|
86831
|
+
else {
|
|
86832
|
+
let response = responseValue;
|
|
86833
|
+
response.error =
|
|
86834
|
+
createNativeFetchErrorResponse(NO_DRAFT_CREATED_MESSAGE);
|
|
86835
|
+
resolve(response);
|
|
86836
|
+
}
|
|
86837
|
+
}, nativeAdapterRequestContext);
|
|
86838
|
+
}).then((callbackValue) => {
|
|
86839
|
+
onResponse(callbackValue);
|
|
86840
|
+
});
|
|
86841
|
+
});
|
|
86817
86842
|
}
|
|
86818
86843
|
}
|
|
86819
86844
|
/*
|
|
@@ -87129,7 +87154,7 @@ const callbacks$1 = [];
|
|
|
87129
87154
|
function register(r) {
|
|
87130
87155
|
callbacks$1.forEach((callback) => callback(r));
|
|
87131
87156
|
}
|
|
87132
|
-
// version: 1.309.0-
|
|
87157
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
87133
87158
|
|
|
87134
87159
|
/**
|
|
87135
87160
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -92091,4 +92116,4 @@ const { luvio } = getRuntime();
|
|
|
92091
92116
|
setDefaultLuvio({ luvio });
|
|
92092
92117
|
|
|
92093
92118
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
92094
|
-
// version: 1.309.0-
|
|
92119
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
@@ -4271,7 +4271,7 @@
|
|
|
4271
4271
|
}
|
|
4272
4272
|
callbacks.push(callback);
|
|
4273
4273
|
}
|
|
4274
|
-
// version: 1.309.0-
|
|
4274
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
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.309.0-
|
|
15773
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
15774
15774
|
|
|
15775
15775
|
function unwrap(data) {
|
|
15776
15776
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16711,7 +16711,7 @@
|
|
|
16711
16711
|
const { apiFamily, name } = metadata;
|
|
16712
16712
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16713
16713
|
}
|
|
16714
|
-
// version: 1.309.0-
|
|
16714
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
16715
16715
|
|
|
16716
16716
|
/**
|
|
16717
16717
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -44818,7 +44818,7 @@
|
|
|
44818
44818
|
throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
|
|
44819
44819
|
throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
44820
44820
|
});
|
|
44821
|
-
// version: 1.309.0-
|
|
44821
|
+
// version: 1.309.0-dev19-fee7361a0b
|
|
44822
44822
|
|
|
44823
44823
|
var ldsIdempotencyWriteDisabled = {
|
|
44824
44824
|
isOpen: function (e) {
|
|
@@ -50483,6 +50483,12 @@
|
|
|
50483
50483
|
state: DraftQueueState.Stopped,
|
|
50484
50484
|
});
|
|
50485
50485
|
}
|
|
50486
|
+
stopQueueWhileRunning(action) {
|
|
50487
|
+
this.stopQueueManually();
|
|
50488
|
+
return action().finally(() => {
|
|
50489
|
+
this.startQueueSafe();
|
|
50490
|
+
});
|
|
50491
|
+
}
|
|
50486
50492
|
/**
|
|
50487
50493
|
* Used to stop the queue within DraftQueue without user interaction
|
|
50488
50494
|
*/
|
|
@@ -51712,6 +51718,14 @@
|
|
|
51712
51718
|
stopQueue() {
|
|
51713
51719
|
return this.draftQueue.stopQueue();
|
|
51714
51720
|
}
|
|
51721
|
+
/**
|
|
51722
|
+
* Stops the draft queue manually without notifying the user and then runs the passed action.
|
|
51723
|
+
* After the action is completed it will safely start the queue if the user had set it to be
|
|
51724
|
+
* started.
|
|
51725
|
+
*/
|
|
51726
|
+
stopQueueWhileRunning(action) {
|
|
51727
|
+
return this.draftQueue.stopQueueWhileRunning(action);
|
|
51728
|
+
}
|
|
51715
51729
|
/**
|
|
51716
51730
|
* Subscribes the listener to changes to the draft queue.
|
|
51717
51731
|
*
|
|
@@ -61292,6 +61306,9 @@
|
|
|
61292
61306
|
stopQueue() {
|
|
61293
61307
|
return Promise.reject(new Error('Cannot call stopQueue from the NimbusDraftQueue'));
|
|
61294
61308
|
}
|
|
61309
|
+
stopQueueWhileRunning(_action) {
|
|
61310
|
+
return Promise.reject(new Error('Cannot call stopQueueWhileRunning from the NimbusDraftQueue'));
|
|
61311
|
+
}
|
|
61295
61312
|
replaceAction(_actionId, _withActionId) {
|
|
61296
61313
|
return Promise.reject(new Error('Cannot call replaceAction from the NimbusDraftQueue'));
|
|
61297
61314
|
}
|
|
@@ -64102,7 +64119,7 @@
|
|
|
64102
64119
|
id: '@salesforce/lds-network-adapter',
|
|
64103
64120
|
instrument: instrument$2,
|
|
64104
64121
|
});
|
|
64105
|
-
// version: 1.309.0-
|
|
64122
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
64106
64123
|
|
|
64107
64124
|
const { create: create$3, keys: keys$3 } = Object;
|
|
64108
64125
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -84138,7 +84155,7 @@
|
|
|
84138
84155
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
84139
84156
|
instrument: instrument$1,
|
|
84140
84157
|
});
|
|
84141
|
-
// version: 1.309.0-
|
|
84158
|
+
// version: 1.309.0-dev19-fee7361a0b
|
|
84142
84159
|
|
|
84143
84160
|
// On core the unstable adapters are re-exported with different names,
|
|
84144
84161
|
// we want to match them here.
|
|
@@ -86394,7 +86411,7 @@
|
|
|
86394
86411
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
86395
86412
|
graphQLImperative = ldsAdapter;
|
|
86396
86413
|
});
|
|
86397
|
-
// version: 1.309.0-
|
|
86414
|
+
// version: 1.309.0-dev19-fee7361a0b
|
|
86398
86415
|
|
|
86399
86416
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
86400
86417
|
__proto__: null,
|
|
@@ -86792,34 +86809,42 @@
|
|
|
86792
86809
|
invokeAdapterWithMetadataDeleteRecord(adapter, config, metadata, onResponse, nativeAdapterRequestContext);
|
|
86793
86810
|
}
|
|
86794
86811
|
else {
|
|
86795
|
-
|
|
86796
|
-
|
|
86797
|
-
|
|
86798
|
-
|
|
86799
|
-
|
|
86800
|
-
|
|
86801
|
-
|
|
86802
|
-
|
|
86803
|
-
|
|
86804
|
-
|
|
86805
|
-
|
|
86806
|
-
|
|
86807
|
-
|
|
86808
|
-
|
|
86809
|
-
|
|
86810
|
-
|
|
86811
|
-
|
|
86812
|
-
|
|
86813
|
-
|
|
86814
|
-
|
|
86815
|
-
|
|
86816
|
-
|
|
86817
|
-
|
|
86818
|
-
|
|
86819
|
-
|
|
86820
|
-
|
|
86821
|
-
|
|
86822
|
-
|
|
86812
|
+
draftManager.stopQueueWhileRunning(() => {
|
|
86813
|
+
return new Promise((resolve) => {
|
|
86814
|
+
invokeDmlAdapter(adapter, parse$1(config), async (responseValue) => {
|
|
86815
|
+
const draftIds = draftIdsForResponseValue(responseValue);
|
|
86816
|
+
if (responseValue.error === undefined &&
|
|
86817
|
+
draftIds !== undefined &&
|
|
86818
|
+
draftIds.length > 0) {
|
|
86819
|
+
const draftId = draftIds[draftIds.length - 1];
|
|
86820
|
+
const managerState = await draftManager.getQueue();
|
|
86821
|
+
const draftItem = managerState.items.find((x) => x.id === draftId);
|
|
86822
|
+
if (draftItem === undefined) {
|
|
86823
|
+
// draftItem no longer exists, might have already been uploaded
|
|
86824
|
+
ldsMobileInstrumentation$1.log('tried to set metadata on draft item that no longer exists');
|
|
86825
|
+
resolve(responseValue);
|
|
86826
|
+
return;
|
|
86827
|
+
}
|
|
86828
|
+
draftManager
|
|
86829
|
+
.setMetadata(draftId, { ...draftItem.metadata, ...metadata })
|
|
86830
|
+
.then(() => {
|
|
86831
|
+
resolve(responseValue);
|
|
86832
|
+
})
|
|
86833
|
+
.catch((error) => {
|
|
86834
|
+
resolve(convertErrorIntoNativeFetchError(error, 'Unknown error setting metadata'));
|
|
86835
|
+
});
|
|
86836
|
+
}
|
|
86837
|
+
else {
|
|
86838
|
+
let response = responseValue;
|
|
86839
|
+
response.error =
|
|
86840
|
+
createNativeFetchErrorResponse(NO_DRAFT_CREATED_MESSAGE);
|
|
86841
|
+
resolve(response);
|
|
86842
|
+
}
|
|
86843
|
+
}, nativeAdapterRequestContext);
|
|
86844
|
+
}).then((callbackValue) => {
|
|
86845
|
+
onResponse(callbackValue);
|
|
86846
|
+
});
|
|
86847
|
+
});
|
|
86823
86848
|
}
|
|
86824
86849
|
}
|
|
86825
86850
|
/*
|
|
@@ -87135,7 +87160,7 @@
|
|
|
87135
87160
|
function register(r) {
|
|
87136
87161
|
callbacks$1.forEach((callback) => callback(r));
|
|
87137
87162
|
}
|
|
87138
|
-
// version: 1.309.0-
|
|
87163
|
+
// version: 1.309.0-dev19-2af9db5954
|
|
87139
87164
|
|
|
87140
87165
|
/**
|
|
87141
87166
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -92116,4 +92141,4 @@
|
|
|
92116
92141
|
exports.subscribeToAdapter = subscribeToAdapter;
|
|
92117
92142
|
|
|
92118
92143
|
}));
|
|
92119
|
-
// version: 1.309.0-
|
|
92144
|
+
// version: 1.309.0-dev19-2af9db5954
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-worker-api",
|
|
3
|
-
"version": "1.309.0-
|
|
3
|
+
"version": "1.309.0-dev19",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "dist/standalone/es/lds-worker-api.js",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@oat-sa/rollup-plugin-wildcard-external": "^1.0.0",
|
|
38
|
-
"@salesforce/lds-adapters-graphql": "^1.309.0-
|
|
39
|
-
"@salesforce/lds-adapters-uiapi": "^1.309.0-
|
|
40
|
-
"@salesforce/lds-default-luvio": "^1.309.0-
|
|
41
|
-
"@salesforce/lds-drafts": "^1.309.0-
|
|
42
|
-
"@salesforce/lds-graphql-parser": "^1.309.0-
|
|
43
|
-
"@salesforce/lds-luvio-engine": "^1.309.0-
|
|
44
|
-
"@salesforce/lds-priming": "^1.309.0-
|
|
45
|
-
"@salesforce/lds-runtime-mobile": "^1.309.0-
|
|
46
|
-
"@salesforce/nimbus-plugin-lds": "^1.309.0-
|
|
38
|
+
"@salesforce/lds-adapters-graphql": "^1.309.0-dev19",
|
|
39
|
+
"@salesforce/lds-adapters-uiapi": "^1.309.0-dev19",
|
|
40
|
+
"@salesforce/lds-default-luvio": "^1.309.0-dev19",
|
|
41
|
+
"@salesforce/lds-drafts": "^1.309.0-dev19",
|
|
42
|
+
"@salesforce/lds-graphql-parser": "^1.309.0-dev19",
|
|
43
|
+
"@salesforce/lds-luvio-engine": "^1.309.0-dev19",
|
|
44
|
+
"@salesforce/lds-priming": "^1.309.0-dev19",
|
|
45
|
+
"@salesforce/lds-runtime-mobile": "^1.309.0-dev19",
|
|
46
|
+
"@salesforce/nimbus-plugin-lds": "^1.309.0-dev19",
|
|
47
47
|
"ajv": "^8.11.0",
|
|
48
48
|
"glob": "^7.1.5",
|
|
49
49
|
"nimbus-types": "^2.0.0-alpha1",
|