@salesforce/lds-worker-api 1.428.0 → 1.430.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.
|
@@ -1371,4 +1371,4 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
1371
1371
|
}
|
|
1372
1372
|
|
|
1373
1373
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, importLuvioAdapterModule, importOneStoreAdapterModule, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
1374
|
-
// version: 1.
|
|
1374
|
+
// version: 1.430.0-6adb3245d5
|
|
@@ -4274,7 +4274,7 @@ function withDefaultLuvio(callback) {
|
|
|
4274
4274
|
}
|
|
4275
4275
|
callbacks.push(callback);
|
|
4276
4276
|
}
|
|
4277
|
-
// version: 1.
|
|
4277
|
+
// version: 1.430.0-6adb3245d5
|
|
4278
4278
|
|
|
4279
4279
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4280
4280
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -5318,7 +5318,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
|
|
|
5318
5318
|
const { apiFamily, name } = metadata;
|
|
5319
5319
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
5320
5320
|
}
|
|
5321
|
-
// version: 1.
|
|
5321
|
+
// version: 1.430.0-6adb3245d5
|
|
5322
5322
|
|
|
5323
5323
|
function isSupportedEntity(_objectApiName) {
|
|
5324
5324
|
return true;
|
|
@@ -32610,7 +32610,7 @@ withDefaultLuvio((luvio) => {
|
|
|
32610
32610
|
throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
|
|
32611
32611
|
throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
32612
32612
|
});
|
|
32613
|
-
// version: 1.
|
|
32613
|
+
// version: 1.430.0-8e6a3c46ce
|
|
32614
32614
|
|
|
32615
32615
|
var allowUpdatesForNonCachedRecords = {
|
|
32616
32616
|
isOpen: function (e) {
|
|
@@ -95179,6 +95179,7 @@ const _FetchNetworkCommand = class _FetchNetworkCommand extends NetworkCommand {
|
|
|
95179
95179
|
constructor(services) {
|
|
95180
95180
|
super(services);
|
|
95181
95181
|
this.services = services;
|
|
95182
|
+
this.additionalNullResponses = [];
|
|
95182
95183
|
}
|
|
95183
95184
|
fetch() {
|
|
95184
95185
|
try {
|
|
@@ -95187,6 +95188,15 @@ const _FetchNetworkCommand = class _FetchNetworkCommand extends NetworkCommand {
|
|
|
95187
95188
|
return resolvedPromiseLike$2(err$1(toError(reason)));
|
|
95188
95189
|
}
|
|
95189
95190
|
}
|
|
95191
|
+
isSemanticNullResponse(response) {
|
|
95192
|
+
return this.additionalNullResponses.includes(response.status);
|
|
95193
|
+
}
|
|
95194
|
+
isProtocolNoBodyStatus(status) {
|
|
95195
|
+
return status === 204 || status === 205;
|
|
95196
|
+
}
|
|
95197
|
+
isUndeclaredNoBodyResponse(response) {
|
|
95198
|
+
return this.isProtocolNoBodyStatus(response.status) && !this.isSemanticNullResponse(response);
|
|
95199
|
+
}
|
|
95190
95200
|
async coerceError(errorResponse) {
|
|
95191
95201
|
return toError(errorResponse.statusText);
|
|
95192
95202
|
}
|
|
@@ -95194,10 +95204,24 @@ const _FetchNetworkCommand = class _FetchNetworkCommand extends NetworkCommand {
|
|
|
95194
95204
|
return response.then(
|
|
95195
95205
|
(response2) => {
|
|
95196
95206
|
if (response2.ok) {
|
|
95197
|
-
|
|
95198
|
-
|
|
95199
|
-
|
|
95200
|
-
|
|
95207
|
+
let resultPromise;
|
|
95208
|
+
if (this.isSemanticNullResponse(response2)) {
|
|
95209
|
+
resultPromise = Promise.resolve(ok$1(null));
|
|
95210
|
+
} else if (this.isUndeclaredNoBodyResponse(response2)) {
|
|
95211
|
+
resultPromise = Promise.resolve(
|
|
95212
|
+
err$1(
|
|
95213
|
+
toError(
|
|
95214
|
+
`Unexpected ${response2.status} response: no-content status was not declared in the API specification. Declare this response in your OAS without a content property.`
|
|
95215
|
+
)
|
|
95216
|
+
)
|
|
95217
|
+
);
|
|
95218
|
+
} else {
|
|
95219
|
+
resultPromise = response2.json().then(
|
|
95220
|
+
(json) => ok$1(json),
|
|
95221
|
+
(reason) => err$1(toError(reason))
|
|
95222
|
+
);
|
|
95223
|
+
}
|
|
95224
|
+
return resultPromise.finally(() => {
|
|
95201
95225
|
try {
|
|
95202
95226
|
this.afterRequestHooks({ statusCode: response2.status });
|
|
95203
95227
|
} catch {
|
|
@@ -95244,6 +95268,7 @@ class HttpCacheControlCommand extends CacheControlCommand {
|
|
|
95244
95268
|
constructor(services) {
|
|
95245
95269
|
super(services);
|
|
95246
95270
|
this.services = services;
|
|
95271
|
+
this.additionalNullResponses = [];
|
|
95247
95272
|
}
|
|
95248
95273
|
requestFromNetwork() {
|
|
95249
95274
|
return this.fetch();
|
|
@@ -95255,6 +95280,15 @@ class HttpCacheControlCommand extends CacheControlCommand {
|
|
|
95255
95280
|
return resolvedPromiseLike$2(err$1(toError(reason)));
|
|
95256
95281
|
}
|
|
95257
95282
|
}
|
|
95283
|
+
isSemanticNullResponse(response) {
|
|
95284
|
+
return this.additionalNullResponses.includes(response.status);
|
|
95285
|
+
}
|
|
95286
|
+
isProtocolNoBodyStatus(status) {
|
|
95287
|
+
return status === 204 || status === 205;
|
|
95288
|
+
}
|
|
95289
|
+
isUndeclaredNoBodyResponse(response) {
|
|
95290
|
+
return this.isProtocolNoBodyStatus(response.status) && !this.isSemanticNullResponse(response);
|
|
95291
|
+
}
|
|
95258
95292
|
async coerceError(errorResponse) {
|
|
95259
95293
|
return toError(errorResponse.statusText);
|
|
95260
95294
|
}
|
|
@@ -95265,12 +95299,26 @@ class HttpCacheControlCommand extends CacheControlCommand {
|
|
|
95265
95299
|
return response.then(
|
|
95266
95300
|
(response2) => {
|
|
95267
95301
|
if (response2.ok) {
|
|
95268
|
-
|
|
95269
|
-
|
|
95270
|
-
|
|
95271
|
-
|
|
95272
|
-
|
|
95273
|
-
|
|
95302
|
+
let resultPromise;
|
|
95303
|
+
if (this.isSemanticNullResponse(response2)) {
|
|
95304
|
+
resultPromise = Promise.resolve(ok$1(null));
|
|
95305
|
+
} else if (this.isUndeclaredNoBodyResponse(response2)) {
|
|
95306
|
+
resultPromise = Promise.resolve(
|
|
95307
|
+
err$1(
|
|
95308
|
+
toError(
|
|
95309
|
+
`Unexpected ${response2.status} response: no-content status was not declared in the API specification. Declare this response in your OAS without a content property.`
|
|
95310
|
+
)
|
|
95311
|
+
)
|
|
95312
|
+
);
|
|
95313
|
+
} else {
|
|
95314
|
+
resultPromise = response2.json().then(
|
|
95315
|
+
(json) => {
|
|
95316
|
+
return this.processFetchReturnValue(json);
|
|
95317
|
+
},
|
|
95318
|
+
(reason) => err$1(toError(reason))
|
|
95319
|
+
);
|
|
95320
|
+
}
|
|
95321
|
+
return resultPromise.finally(() => {
|
|
95274
95322
|
try {
|
|
95275
95323
|
this.afterRequestHooks({ statusCode: response2.status });
|
|
95276
95324
|
} catch {
|
|
@@ -96258,7 +96306,7 @@ function buildServiceDescriptor$b(luvio) {
|
|
|
96258
96306
|
},
|
|
96259
96307
|
};
|
|
96260
96308
|
}
|
|
96261
|
-
// version: 1.
|
|
96309
|
+
// version: 1.430.0-8e6a3c46ce
|
|
96262
96310
|
|
|
96263
96311
|
/**
|
|
96264
96312
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -96284,7 +96332,7 @@ function buildServiceDescriptor$a(notifyRecordUpdateAvailable, getNormalizedLuvi
|
|
|
96284
96332
|
},
|
|
96285
96333
|
};
|
|
96286
96334
|
}
|
|
96287
|
-
// version: 1.
|
|
96335
|
+
// version: 1.430.0-8e6a3c46ce
|
|
96288
96336
|
|
|
96289
96337
|
/*!
|
|
96290
96338
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -98941,7 +98989,7 @@ register$1({
|
|
|
98941
98989
|
id: '@salesforce/lds-network-adapter',
|
|
98942
98990
|
instrument: instrument$2,
|
|
98943
98991
|
});
|
|
98944
|
-
// version: 1.
|
|
98992
|
+
// version: 1.430.0-6adb3245d5
|
|
98945
98993
|
|
|
98946
98994
|
const { create: create$2, keys: keys$2 } = Object;
|
|
98947
98995
|
const { stringify, parse } = JSON;
|
|
@@ -106932,7 +106980,7 @@ function registerCallback(cb) {
|
|
|
106932
106980
|
cb(graphql_v1_import, graphql_imperative$1, graphql_imperative_legacy_v1_import, graphql_state_manager, useOneStoreGraphQL);
|
|
106933
106981
|
}
|
|
106934
106982
|
}
|
|
106935
|
-
// version: 1.
|
|
106983
|
+
// version: 1.430.0-8e6a3c46ce
|
|
106936
106984
|
|
|
106937
106985
|
function createFragmentMap(documentNode) {
|
|
106938
106986
|
const fragments = {};
|
|
@@ -136169,7 +136217,7 @@ register$1({
|
|
|
136169
136217
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
136170
136218
|
instrument: instrument$1,
|
|
136171
136219
|
});
|
|
136172
|
-
// version: 1.
|
|
136220
|
+
// version: 1.430.0-8e6a3c46ce
|
|
136173
136221
|
|
|
136174
136222
|
// On core the unstable adapters are re-exported with different names,
|
|
136175
136223
|
// we want to match them here.
|
|
@@ -136321,7 +136369,7 @@ withDefaultLuvio((luvio) => {
|
|
|
136321
136369
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
136322
136370
|
graphQLImperative = ldsAdapter;
|
|
136323
136371
|
});
|
|
136324
|
-
// version: 1.
|
|
136372
|
+
// version: 1.430.0-8e6a3c46ce
|
|
136325
136373
|
|
|
136326
136374
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
136327
136375
|
__proto__: null,
|
|
@@ -137120,7 +137168,7 @@ const callbacks$1 = [];
|
|
|
137120
137168
|
function register(r) {
|
|
137121
137169
|
callbacks$1.forEach((callback) => callback(r));
|
|
137122
137170
|
}
|
|
137123
|
-
// version: 1.
|
|
137171
|
+
// version: 1.430.0-6adb3245d5
|
|
137124
137172
|
|
|
137125
137173
|
/**
|
|
137126
137174
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -138436,4 +138484,4 @@ const { luvio } = getRuntime();
|
|
|
138436
138484
|
setDefaultLuvio({ luvio });
|
|
138437
138485
|
|
|
138438
138486
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, importLuvioAdapterModule, importOneStoreAdapterModule, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
138439
|
-
// version: 1.
|
|
138487
|
+
// version: 1.430.0-6adb3245d5
|
|
@@ -4280,7 +4280,7 @@
|
|
|
4280
4280
|
}
|
|
4281
4281
|
callbacks.push(callback);
|
|
4282
4282
|
}
|
|
4283
|
-
// version: 1.
|
|
4283
|
+
// version: 1.430.0-6adb3245d5
|
|
4284
4284
|
|
|
4285
4285
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4286
4286
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -5324,7 +5324,7 @@
|
|
|
5324
5324
|
const { apiFamily, name } = metadata;
|
|
5325
5325
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
5326
5326
|
}
|
|
5327
|
-
// version: 1.
|
|
5327
|
+
// version: 1.430.0-6adb3245d5
|
|
5328
5328
|
|
|
5329
5329
|
function isSupportedEntity(_objectApiName) {
|
|
5330
5330
|
return true;
|
|
@@ -32616,7 +32616,7 @@
|
|
|
32616
32616
|
throttle(60, 60000, setupNotifyAllListRecordUpdateAvailable(luvio));
|
|
32617
32617
|
throttle(60, 60000, setupNotifyAllListInfoSummaryUpdateAvailable(luvio));
|
|
32618
32618
|
});
|
|
32619
|
-
// version: 1.
|
|
32619
|
+
// version: 1.430.0-8e6a3c46ce
|
|
32620
32620
|
|
|
32621
32621
|
var allowUpdatesForNonCachedRecords = {
|
|
32622
32622
|
isOpen: function (e) {
|
|
@@ -95185,6 +95185,7 @@
|
|
|
95185
95185
|
constructor(services) {
|
|
95186
95186
|
super(services);
|
|
95187
95187
|
this.services = services;
|
|
95188
|
+
this.additionalNullResponses = [];
|
|
95188
95189
|
}
|
|
95189
95190
|
fetch() {
|
|
95190
95191
|
try {
|
|
@@ -95193,6 +95194,15 @@
|
|
|
95193
95194
|
return resolvedPromiseLike$2(err$1(toError(reason)));
|
|
95194
95195
|
}
|
|
95195
95196
|
}
|
|
95197
|
+
isSemanticNullResponse(response) {
|
|
95198
|
+
return this.additionalNullResponses.includes(response.status);
|
|
95199
|
+
}
|
|
95200
|
+
isProtocolNoBodyStatus(status) {
|
|
95201
|
+
return status === 204 || status === 205;
|
|
95202
|
+
}
|
|
95203
|
+
isUndeclaredNoBodyResponse(response) {
|
|
95204
|
+
return this.isProtocolNoBodyStatus(response.status) && !this.isSemanticNullResponse(response);
|
|
95205
|
+
}
|
|
95196
95206
|
async coerceError(errorResponse) {
|
|
95197
95207
|
return toError(errorResponse.statusText);
|
|
95198
95208
|
}
|
|
@@ -95200,10 +95210,24 @@
|
|
|
95200
95210
|
return response.then(
|
|
95201
95211
|
(response2) => {
|
|
95202
95212
|
if (response2.ok) {
|
|
95203
|
-
|
|
95204
|
-
|
|
95205
|
-
|
|
95206
|
-
|
|
95213
|
+
let resultPromise;
|
|
95214
|
+
if (this.isSemanticNullResponse(response2)) {
|
|
95215
|
+
resultPromise = Promise.resolve(ok$1(null));
|
|
95216
|
+
} else if (this.isUndeclaredNoBodyResponse(response2)) {
|
|
95217
|
+
resultPromise = Promise.resolve(
|
|
95218
|
+
err$1(
|
|
95219
|
+
toError(
|
|
95220
|
+
`Unexpected ${response2.status} response: no-content status was not declared in the API specification. Declare this response in your OAS without a content property.`
|
|
95221
|
+
)
|
|
95222
|
+
)
|
|
95223
|
+
);
|
|
95224
|
+
} else {
|
|
95225
|
+
resultPromise = response2.json().then(
|
|
95226
|
+
(json) => ok$1(json),
|
|
95227
|
+
(reason) => err$1(toError(reason))
|
|
95228
|
+
);
|
|
95229
|
+
}
|
|
95230
|
+
return resultPromise.finally(() => {
|
|
95207
95231
|
try {
|
|
95208
95232
|
this.afterRequestHooks({ statusCode: response2.status });
|
|
95209
95233
|
} catch {
|
|
@@ -95250,6 +95274,7 @@
|
|
|
95250
95274
|
constructor(services) {
|
|
95251
95275
|
super(services);
|
|
95252
95276
|
this.services = services;
|
|
95277
|
+
this.additionalNullResponses = [];
|
|
95253
95278
|
}
|
|
95254
95279
|
requestFromNetwork() {
|
|
95255
95280
|
return this.fetch();
|
|
@@ -95261,6 +95286,15 @@
|
|
|
95261
95286
|
return resolvedPromiseLike$2(err$1(toError(reason)));
|
|
95262
95287
|
}
|
|
95263
95288
|
}
|
|
95289
|
+
isSemanticNullResponse(response) {
|
|
95290
|
+
return this.additionalNullResponses.includes(response.status);
|
|
95291
|
+
}
|
|
95292
|
+
isProtocolNoBodyStatus(status) {
|
|
95293
|
+
return status === 204 || status === 205;
|
|
95294
|
+
}
|
|
95295
|
+
isUndeclaredNoBodyResponse(response) {
|
|
95296
|
+
return this.isProtocolNoBodyStatus(response.status) && !this.isSemanticNullResponse(response);
|
|
95297
|
+
}
|
|
95264
95298
|
async coerceError(errorResponse) {
|
|
95265
95299
|
return toError(errorResponse.statusText);
|
|
95266
95300
|
}
|
|
@@ -95271,12 +95305,26 @@
|
|
|
95271
95305
|
return response.then(
|
|
95272
95306
|
(response2) => {
|
|
95273
95307
|
if (response2.ok) {
|
|
95274
|
-
|
|
95275
|
-
|
|
95276
|
-
|
|
95277
|
-
|
|
95278
|
-
|
|
95279
|
-
|
|
95308
|
+
let resultPromise;
|
|
95309
|
+
if (this.isSemanticNullResponse(response2)) {
|
|
95310
|
+
resultPromise = Promise.resolve(ok$1(null));
|
|
95311
|
+
} else if (this.isUndeclaredNoBodyResponse(response2)) {
|
|
95312
|
+
resultPromise = Promise.resolve(
|
|
95313
|
+
err$1(
|
|
95314
|
+
toError(
|
|
95315
|
+
`Unexpected ${response2.status} response: no-content status was not declared in the API specification. Declare this response in your OAS without a content property.`
|
|
95316
|
+
)
|
|
95317
|
+
)
|
|
95318
|
+
);
|
|
95319
|
+
} else {
|
|
95320
|
+
resultPromise = response2.json().then(
|
|
95321
|
+
(json) => {
|
|
95322
|
+
return this.processFetchReturnValue(json);
|
|
95323
|
+
},
|
|
95324
|
+
(reason) => err$1(toError(reason))
|
|
95325
|
+
);
|
|
95326
|
+
}
|
|
95327
|
+
return resultPromise.finally(() => {
|
|
95280
95328
|
try {
|
|
95281
95329
|
this.afterRequestHooks({ statusCode: response2.status });
|
|
95282
95330
|
} catch {
|
|
@@ -96264,7 +96312,7 @@
|
|
|
96264
96312
|
},
|
|
96265
96313
|
};
|
|
96266
96314
|
}
|
|
96267
|
-
// version: 1.
|
|
96315
|
+
// version: 1.430.0-8e6a3c46ce
|
|
96268
96316
|
|
|
96269
96317
|
/**
|
|
96270
96318
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -96290,7 +96338,7 @@
|
|
|
96290
96338
|
},
|
|
96291
96339
|
};
|
|
96292
96340
|
}
|
|
96293
|
-
// version: 1.
|
|
96341
|
+
// version: 1.430.0-8e6a3c46ce
|
|
96294
96342
|
|
|
96295
96343
|
/*!
|
|
96296
96344
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -98947,7 +98995,7 @@
|
|
|
98947
98995
|
id: '@salesforce/lds-network-adapter',
|
|
98948
98996
|
instrument: instrument$2,
|
|
98949
98997
|
});
|
|
98950
|
-
// version: 1.
|
|
98998
|
+
// version: 1.430.0-6adb3245d5
|
|
98951
98999
|
|
|
98952
99000
|
const { create: create$2, keys: keys$2 } = Object;
|
|
98953
99001
|
const { stringify, parse } = JSON;
|
|
@@ -106938,7 +106986,7 @@
|
|
|
106938
106986
|
cb(graphql_v1_import, graphql_imperative$1, graphql_imperative_legacy_v1_import, graphql_state_manager, useOneStoreGraphQL);
|
|
106939
106987
|
}
|
|
106940
106988
|
}
|
|
106941
|
-
// version: 1.
|
|
106989
|
+
// version: 1.430.0-8e6a3c46ce
|
|
106942
106990
|
|
|
106943
106991
|
function createFragmentMap(documentNode) {
|
|
106944
106992
|
const fragments = {};
|
|
@@ -136175,7 +136223,7 @@
|
|
|
136175
136223
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
136176
136224
|
instrument: instrument$1,
|
|
136177
136225
|
});
|
|
136178
|
-
// version: 1.
|
|
136226
|
+
// version: 1.430.0-8e6a3c46ce
|
|
136179
136227
|
|
|
136180
136228
|
// On core the unstable adapters are re-exported with different names,
|
|
136181
136229
|
// we want to match them here.
|
|
@@ -136327,7 +136375,7 @@
|
|
|
136327
136375
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
136328
136376
|
graphQLImperative = ldsAdapter;
|
|
136329
136377
|
});
|
|
136330
|
-
// version: 1.
|
|
136378
|
+
// version: 1.430.0-8e6a3c46ce
|
|
136331
136379
|
|
|
136332
136380
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
136333
136381
|
__proto__: null,
|
|
@@ -137126,7 +137174,7 @@
|
|
|
137126
137174
|
function register(r) {
|
|
137127
137175
|
callbacks$1.forEach((callback) => callback(r));
|
|
137128
137176
|
}
|
|
137129
|
-
// version: 1.
|
|
137177
|
+
// version: 1.430.0-6adb3245d5
|
|
137130
137178
|
|
|
137131
137179
|
/**
|
|
137132
137180
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -138463,4 +138511,4 @@
|
|
|
138463
138511
|
exports.subscribeToAdapter = subscribeToAdapter;
|
|
138464
138512
|
|
|
138465
138513
|
}));
|
|
138466
|
-
// version: 1.
|
|
138514
|
+
// version: 1.430.0-6adb3245d5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-worker-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.430.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "dist/standalone/es/lds-worker-api.js",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@oat-sa/rollup-plugin-wildcard-external": "^1.0.0",
|
|
38
|
-
"@salesforce/lds-adapters-graphql": "^1.
|
|
39
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
40
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
41
|
-
"@salesforce/lds-drafts": "^1.
|
|
42
|
-
"@salesforce/lds-graphql-parser": "^1.
|
|
43
|
-
"@salesforce/lds-luvio-engine": "^1.
|
|
44
|
-
"@salesforce/lds-runtime-mobile": "^1.
|
|
45
|
-
"@salesforce/nimbus-plugin-lds": "^1.
|
|
38
|
+
"@salesforce/lds-adapters-graphql": "^1.430.0",
|
|
39
|
+
"@salesforce/lds-adapters-uiapi": "^1.430.0",
|
|
40
|
+
"@salesforce/lds-default-luvio": "^1.430.0",
|
|
41
|
+
"@salesforce/lds-drafts": "^1.430.0",
|
|
42
|
+
"@salesforce/lds-graphql-parser": "^1.430.0",
|
|
43
|
+
"@salesforce/lds-luvio-engine": "^1.430.0",
|
|
44
|
+
"@salesforce/lds-runtime-mobile": "^1.430.0",
|
|
45
|
+
"@salesforce/nimbus-plugin-lds": "^1.430.0",
|
|
46
46
|
"ajv": "^8.11.0",
|
|
47
47
|
"glob": "^7.1.5",
|
|
48
48
|
"nimbus-types": "^2.0.0-alpha1",
|