@salesforce/lds-worker-api 1.266.0-dev19 → 1.266.0-dev20
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.
|
@@ -1048,4 +1048,4 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
1048
1048
|
}
|
|
1049
1049
|
|
|
1050
1050
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
1051
|
-
// version: 1.266.0-
|
|
1051
|
+
// version: 1.266.0-dev20-117d849b4
|
|
@@ -28,9 +28,17 @@ const { parse: parse$a, stringify: stringify$a } = JSON;
|
|
|
28
28
|
const WeakSetCtor = WeakSet;
|
|
29
29
|
|
|
30
30
|
const deeplyFrozen = new WeakSetCtor();
|
|
31
|
+
// Allow custom environments to bypass deep freeze for performance reasons
|
|
32
|
+
let bypassDeepFreeze = false;
|
|
33
|
+
function setBypassDeepFreeze(value) {
|
|
34
|
+
bypassDeepFreeze = value;
|
|
35
|
+
}
|
|
31
36
|
function deepFreeze(value) {
|
|
32
37
|
// No need to freeze primitives or already frozen stuff
|
|
33
|
-
if (
|
|
38
|
+
if (bypassDeepFreeze ||
|
|
39
|
+
typeof value !== 'object' ||
|
|
40
|
+
value === null ||
|
|
41
|
+
deeplyFrozen.has(value)) {
|
|
34
42
|
return;
|
|
35
43
|
}
|
|
36
44
|
deeplyFrozen.add(value);
|
|
@@ -4029,7 +4037,7 @@ function createResourceParamsImpl(config, configMetadata) {
|
|
|
4029
4037
|
}
|
|
4030
4038
|
return resourceParams;
|
|
4031
4039
|
}
|
|
4032
|
-
// engine version: 0.154.7-
|
|
4040
|
+
// engine version: 0.154.7-dev8-fca5df34
|
|
4033
4041
|
|
|
4034
4042
|
/**
|
|
4035
4043
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -4157,7 +4165,7 @@ function withDefaultLuvio(callback) {
|
|
|
4157
4165
|
}
|
|
4158
4166
|
callbacks.push(callback);
|
|
4159
4167
|
}
|
|
4160
|
-
// version: 1.266.0-
|
|
4168
|
+
// version: 1.266.0-dev20-117d849b4
|
|
4161
4169
|
|
|
4162
4170
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4163
4171
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -15665,7 +15673,7 @@ function gql(literals, ...subs) {
|
|
|
15665
15673
|
}
|
|
15666
15674
|
return superResult;
|
|
15667
15675
|
}
|
|
15668
|
-
// version: 1.266.0-
|
|
15676
|
+
// version: 1.266.0-dev20-117d849b4
|
|
15669
15677
|
|
|
15670
15678
|
function unwrap(data) {
|
|
15671
15679
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16590,7 +16598,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
|
|
|
16590
16598
|
const { apiFamily, name } = metadata;
|
|
16591
16599
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16592
16600
|
}
|
|
16593
|
-
// version: 1.266.0-
|
|
16601
|
+
// version: 1.266.0-dev20-117d849b4
|
|
16594
16602
|
|
|
16595
16603
|
/**
|
|
16596
16604
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -16689,7 +16697,7 @@ var TypeCheckShapes;
|
|
|
16689
16697
|
TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
|
|
16690
16698
|
TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
|
|
16691
16699
|
})(TypeCheckShapes || (TypeCheckShapes = {}));
|
|
16692
|
-
// engine version: 0.154.7-
|
|
16700
|
+
// engine version: 0.154.7-dev8-fca5df34
|
|
16693
16701
|
|
|
16694
16702
|
const { keys: ObjectKeys$3, create: ObjectCreate$3 } = Object;
|
|
16695
16703
|
|
|
@@ -43167,7 +43175,7 @@ withDefaultLuvio((luvio) => {
|
|
|
43167
43175
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory$1));
|
|
43168
43176
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyQuickActionDefaultsUpdateAvailable', notifyUpdateAvailableFactory));
|
|
43169
43177
|
});
|
|
43170
|
-
// version: 1.266.0-
|
|
43178
|
+
// version: 1.266.0-dev20-1e6923024
|
|
43171
43179
|
|
|
43172
43180
|
var ldsIdempotencyWriteDisabled = {
|
|
43173
43181
|
isOpen: function (e) {
|
|
@@ -44305,7 +44313,9 @@ function isUnfulfilledSnapshot$1(cachedSnapshotResult) {
|
|
|
44305
44313
|
* @param durableStore A DurableStore implementation
|
|
44306
44314
|
* @param instrumentation An instrumentation function implementation
|
|
44307
44315
|
*/
|
|
44308
|
-
function makeDurable(environment, { durableStore, instrumentation, useRevivingStore, enableDurableMetadataRefresh = false, }) {
|
|
44316
|
+
function makeDurable(environment, { durableStore, instrumentation, useRevivingStore, enableDurableMetadataRefresh = false, disableDeepFreeze = false, }) {
|
|
44317
|
+
// runtimes can choose to disable deepFreeze, e.g. headless mobile runtime
|
|
44318
|
+
setBypassDeepFreeze(disableDeepFreeze);
|
|
44309
44319
|
let stagingStore = null;
|
|
44310
44320
|
const durableTTLStore = new DurableTTLStore(durableStore);
|
|
44311
44321
|
const mergeKeysPromiseMap = new Map();
|
|
@@ -51293,6 +51303,9 @@ function createSinglePredicate(val, operator, field, alias) {
|
|
|
51293
51303
|
else if (field.apiName === 'weakEtag') {
|
|
51294
51304
|
leftPath = '$.weakEtag';
|
|
51295
51305
|
}
|
|
51306
|
+
else if (field.apiName === 'RecordTypeId') {
|
|
51307
|
+
leftPath = '$.recordTypeId';
|
|
51308
|
+
}
|
|
51296
51309
|
return {
|
|
51297
51310
|
alias,
|
|
51298
51311
|
leftPath,
|
|
@@ -56266,6 +56279,9 @@ function normalizeRecordFields(key, entry) {
|
|
|
56266
56279
|
* Transforms a record for storage in the durable store. The transformation involves denormalizing
|
|
56267
56280
|
* scalar fields and persisting link metadata to transform back into a normalized representation
|
|
56268
56281
|
*
|
|
56282
|
+
* If the record contains pending fields this will return undefined as pending records do not get persisted
|
|
56283
|
+
* to the durable store. There should be a refresh operation outbound that will bring in the updated record.
|
|
56284
|
+
*
|
|
56269
56285
|
* @param normalizedRecord Record containing normalized field links
|
|
56270
56286
|
* @param recordStore a store containing referenced record fields
|
|
56271
56287
|
*/
|
|
@@ -56280,7 +56296,9 @@ function buildDurableRecordRepresentation(normalizedRecord, records, pendingEntr
|
|
|
56280
56296
|
// pending fields get filtered out of the durable store
|
|
56281
56297
|
const { pending } = field;
|
|
56282
56298
|
if (pending === true) {
|
|
56283
|
-
|
|
56299
|
+
// do not write records with pending fields to the durable store
|
|
56300
|
+
// there should be a refresh operation outbound that will bring in the updated record
|
|
56301
|
+
return undefined;
|
|
56284
56302
|
}
|
|
56285
56303
|
const { __ref } = field;
|
|
56286
56304
|
if (__ref !== undefined) {
|
|
@@ -56446,10 +56464,12 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
|
|
|
56446
56464
|
};
|
|
56447
56465
|
}
|
|
56448
56466
|
const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries, store);
|
|
56449
|
-
|
|
56450
|
-
|
|
56451
|
-
|
|
56452
|
-
|
|
56467
|
+
if (denormalizedRecord !== undefined) {
|
|
56468
|
+
putEntries[recordKey] = {
|
|
56469
|
+
data: denormalizedRecord,
|
|
56470
|
+
metadata,
|
|
56471
|
+
};
|
|
56472
|
+
}
|
|
56453
56473
|
}
|
|
56454
56474
|
else {
|
|
56455
56475
|
putEntries[key] = value;
|
|
@@ -61012,6 +61032,8 @@ function getRuntime() {
|
|
|
61012
61032
|
const durableEnv = makeDurable(gqlEnv, {
|
|
61013
61033
|
durableStore: recordDenormingStore,
|
|
61014
61034
|
enableDurableMetadataRefresh: ldsMetadataRefreshEnabled.isOpen({ fallback: false }),
|
|
61035
|
+
// disable luvio deep freeze in headless environments
|
|
61036
|
+
disableDeepFreeze: typeof window === 'undefined',
|
|
61015
61037
|
});
|
|
61016
61038
|
getIngestRecords = durableEnv.getIngestStagingStoreRecords;
|
|
61017
61039
|
getIngestMetadata = durableEnv.getIngestStagingStoreMetadata;
|
|
@@ -61112,7 +61134,7 @@ register$1({
|
|
|
61112
61134
|
id: '@salesforce/lds-network-adapter',
|
|
61113
61135
|
instrument: instrument$2,
|
|
61114
61136
|
});
|
|
61115
|
-
// version: 1.266.0-
|
|
61137
|
+
// version: 1.266.0-dev20-117d849b4
|
|
61116
61138
|
|
|
61117
61139
|
const { create: create$3, keys: keys$3 } = Object;
|
|
61118
61140
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -79507,7 +79529,7 @@ register$1({
|
|
|
79507
79529
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
79508
79530
|
instrument: instrument$1,
|
|
79509
79531
|
});
|
|
79510
|
-
// version: 1.266.0-
|
|
79532
|
+
// version: 1.266.0-dev20-1e6923024
|
|
79511
79533
|
|
|
79512
79534
|
// On core the unstable adapters are re-exported with different names,
|
|
79513
79535
|
// we want to match them here.
|
|
@@ -81761,7 +81783,7 @@ withDefaultLuvio((luvio) => {
|
|
|
81761
81783
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
81762
81784
|
graphQLImperative = ldsAdapter;
|
|
81763
81785
|
});
|
|
81764
|
-
// version: 1.266.0-
|
|
81786
|
+
// version: 1.266.0-dev20-1e6923024
|
|
81765
81787
|
|
|
81766
81788
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
81767
81789
|
__proto__: null,
|
|
@@ -82473,7 +82495,7 @@ const callbacks$1 = [];
|
|
|
82473
82495
|
function register(r) {
|
|
82474
82496
|
callbacks$1.forEach((callback) => callback(r));
|
|
82475
82497
|
}
|
|
82476
|
-
// version: 1.266.0-
|
|
82498
|
+
// version: 1.266.0-dev20-117d849b4
|
|
82477
82499
|
|
|
82478
82500
|
/**
|
|
82479
82501
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -87378,4 +87400,4 @@ const { luvio } = getRuntime();
|
|
|
87378
87400
|
setDefaultLuvio({ luvio });
|
|
87379
87401
|
|
|
87380
87402
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
87381
|
-
// version: 1.266.0-
|
|
87403
|
+
// version: 1.266.0-dev20-117d849b4
|
|
@@ -34,9 +34,17 @@
|
|
|
34
34
|
const WeakSetCtor = WeakSet;
|
|
35
35
|
|
|
36
36
|
const deeplyFrozen = new WeakSetCtor();
|
|
37
|
+
// Allow custom environments to bypass deep freeze for performance reasons
|
|
38
|
+
let bypassDeepFreeze = false;
|
|
39
|
+
function setBypassDeepFreeze(value) {
|
|
40
|
+
bypassDeepFreeze = value;
|
|
41
|
+
}
|
|
37
42
|
function deepFreeze(value) {
|
|
38
43
|
// No need to freeze primitives or already frozen stuff
|
|
39
|
-
if (
|
|
44
|
+
if (bypassDeepFreeze ||
|
|
45
|
+
typeof value !== 'object' ||
|
|
46
|
+
value === null ||
|
|
47
|
+
deeplyFrozen.has(value)) {
|
|
40
48
|
return;
|
|
41
49
|
}
|
|
42
50
|
deeplyFrozen.add(value);
|
|
@@ -4035,7 +4043,7 @@
|
|
|
4035
4043
|
}
|
|
4036
4044
|
return resourceParams;
|
|
4037
4045
|
}
|
|
4038
|
-
// engine version: 0.154.7-
|
|
4046
|
+
// engine version: 0.154.7-dev8-fca5df34
|
|
4039
4047
|
|
|
4040
4048
|
/**
|
|
4041
4049
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -4163,7 +4171,7 @@
|
|
|
4163
4171
|
}
|
|
4164
4172
|
callbacks.push(callback);
|
|
4165
4173
|
}
|
|
4166
|
-
// version: 1.266.0-
|
|
4174
|
+
// version: 1.266.0-dev20-117d849b4
|
|
4167
4175
|
|
|
4168
4176
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4169
4177
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -15671,7 +15679,7 @@
|
|
|
15671
15679
|
}
|
|
15672
15680
|
return superResult;
|
|
15673
15681
|
}
|
|
15674
|
-
// version: 1.266.0-
|
|
15682
|
+
// version: 1.266.0-dev20-117d849b4
|
|
15675
15683
|
|
|
15676
15684
|
function unwrap(data) {
|
|
15677
15685
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16596,7 +16604,7 @@
|
|
|
16596
16604
|
const { apiFamily, name } = metadata;
|
|
16597
16605
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16598
16606
|
}
|
|
16599
|
-
// version: 1.266.0-
|
|
16607
|
+
// version: 1.266.0-dev20-117d849b4
|
|
16600
16608
|
|
|
16601
16609
|
/**
|
|
16602
16610
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -16695,7 +16703,7 @@
|
|
|
16695
16703
|
TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
|
|
16696
16704
|
TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
|
|
16697
16705
|
})(TypeCheckShapes || (TypeCheckShapes = {}));
|
|
16698
|
-
// engine version: 0.154.7-
|
|
16706
|
+
// engine version: 0.154.7-dev8-fca5df34
|
|
16699
16707
|
|
|
16700
16708
|
const { keys: ObjectKeys$3, create: ObjectCreate$3 } = Object;
|
|
16701
16709
|
|
|
@@ -43173,7 +43181,7 @@
|
|
|
43173
43181
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory$1));
|
|
43174
43182
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyQuickActionDefaultsUpdateAvailable', notifyUpdateAvailableFactory));
|
|
43175
43183
|
});
|
|
43176
|
-
// version: 1.266.0-
|
|
43184
|
+
// version: 1.266.0-dev20-1e6923024
|
|
43177
43185
|
|
|
43178
43186
|
var ldsIdempotencyWriteDisabled = {
|
|
43179
43187
|
isOpen: function (e) {
|
|
@@ -44311,7 +44319,9 @@
|
|
|
44311
44319
|
* @param durableStore A DurableStore implementation
|
|
44312
44320
|
* @param instrumentation An instrumentation function implementation
|
|
44313
44321
|
*/
|
|
44314
|
-
function makeDurable(environment, { durableStore, instrumentation, useRevivingStore, enableDurableMetadataRefresh = false, }) {
|
|
44322
|
+
function makeDurable(environment, { durableStore, instrumentation, useRevivingStore, enableDurableMetadataRefresh = false, disableDeepFreeze = false, }) {
|
|
44323
|
+
// runtimes can choose to disable deepFreeze, e.g. headless mobile runtime
|
|
44324
|
+
setBypassDeepFreeze(disableDeepFreeze);
|
|
44315
44325
|
let stagingStore = null;
|
|
44316
44326
|
const durableTTLStore = new DurableTTLStore(durableStore);
|
|
44317
44327
|
const mergeKeysPromiseMap = new Map();
|
|
@@ -51299,6 +51309,9 @@
|
|
|
51299
51309
|
else if (field.apiName === 'weakEtag') {
|
|
51300
51310
|
leftPath = '$.weakEtag';
|
|
51301
51311
|
}
|
|
51312
|
+
else if (field.apiName === 'RecordTypeId') {
|
|
51313
|
+
leftPath = '$.recordTypeId';
|
|
51314
|
+
}
|
|
51302
51315
|
return {
|
|
51303
51316
|
alias,
|
|
51304
51317
|
leftPath,
|
|
@@ -56272,6 +56285,9 @@
|
|
|
56272
56285
|
* Transforms a record for storage in the durable store. The transformation involves denormalizing
|
|
56273
56286
|
* scalar fields and persisting link metadata to transform back into a normalized representation
|
|
56274
56287
|
*
|
|
56288
|
+
* If the record contains pending fields this will return undefined as pending records do not get persisted
|
|
56289
|
+
* to the durable store. There should be a refresh operation outbound that will bring in the updated record.
|
|
56290
|
+
*
|
|
56275
56291
|
* @param normalizedRecord Record containing normalized field links
|
|
56276
56292
|
* @param recordStore a store containing referenced record fields
|
|
56277
56293
|
*/
|
|
@@ -56286,7 +56302,9 @@
|
|
|
56286
56302
|
// pending fields get filtered out of the durable store
|
|
56287
56303
|
const { pending } = field;
|
|
56288
56304
|
if (pending === true) {
|
|
56289
|
-
|
|
56305
|
+
// do not write records with pending fields to the durable store
|
|
56306
|
+
// there should be a refresh operation outbound that will bring in the updated record
|
|
56307
|
+
return undefined;
|
|
56290
56308
|
}
|
|
56291
56309
|
const { __ref } = field;
|
|
56292
56310
|
if (__ref !== undefined) {
|
|
@@ -56452,10 +56470,12 @@
|
|
|
56452
56470
|
};
|
|
56453
56471
|
}
|
|
56454
56472
|
const denormalizedRecord = buildDurableRecordRepresentation(record, storeRecords, recordEntries, store);
|
|
56455
|
-
|
|
56456
|
-
|
|
56457
|
-
|
|
56458
|
-
|
|
56473
|
+
if (denormalizedRecord !== undefined) {
|
|
56474
|
+
putEntries[recordKey] = {
|
|
56475
|
+
data: denormalizedRecord,
|
|
56476
|
+
metadata,
|
|
56477
|
+
};
|
|
56478
|
+
}
|
|
56459
56479
|
}
|
|
56460
56480
|
else {
|
|
56461
56481
|
putEntries[key] = value;
|
|
@@ -61018,6 +61038,8 @@
|
|
|
61018
61038
|
const durableEnv = makeDurable(gqlEnv, {
|
|
61019
61039
|
durableStore: recordDenormingStore,
|
|
61020
61040
|
enableDurableMetadataRefresh: ldsMetadataRefreshEnabled.isOpen({ fallback: false }),
|
|
61041
|
+
// disable luvio deep freeze in headless environments
|
|
61042
|
+
disableDeepFreeze: typeof window === 'undefined',
|
|
61021
61043
|
});
|
|
61022
61044
|
getIngestRecords = durableEnv.getIngestStagingStoreRecords;
|
|
61023
61045
|
getIngestMetadata = durableEnv.getIngestStagingStoreMetadata;
|
|
@@ -61118,7 +61140,7 @@
|
|
|
61118
61140
|
id: '@salesforce/lds-network-adapter',
|
|
61119
61141
|
instrument: instrument$2,
|
|
61120
61142
|
});
|
|
61121
|
-
// version: 1.266.0-
|
|
61143
|
+
// version: 1.266.0-dev20-117d849b4
|
|
61122
61144
|
|
|
61123
61145
|
const { create: create$3, keys: keys$3 } = Object;
|
|
61124
61146
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -79513,7 +79535,7 @@
|
|
|
79513
79535
|
configuration: { ...configurationForGraphQLAdapters$1 },
|
|
79514
79536
|
instrument: instrument$1,
|
|
79515
79537
|
});
|
|
79516
|
-
// version: 1.266.0-
|
|
79538
|
+
// version: 1.266.0-dev20-1e6923024
|
|
79517
79539
|
|
|
79518
79540
|
// On core the unstable adapters are re-exported with different names,
|
|
79519
79541
|
// we want to match them here.
|
|
@@ -81767,7 +81789,7 @@
|
|
|
81767
81789
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
81768
81790
|
graphQLImperative = ldsAdapter;
|
|
81769
81791
|
});
|
|
81770
|
-
// version: 1.266.0-
|
|
81792
|
+
// version: 1.266.0-dev20-1e6923024
|
|
81771
81793
|
|
|
81772
81794
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
81773
81795
|
__proto__: null,
|
|
@@ -82479,7 +82501,7 @@
|
|
|
82479
82501
|
function register(r) {
|
|
82480
82502
|
callbacks$1.forEach((callback) => callback(r));
|
|
82481
82503
|
}
|
|
82482
|
-
// version: 1.266.0-
|
|
82504
|
+
// version: 1.266.0-dev20-117d849b4
|
|
82483
82505
|
|
|
82484
82506
|
/**
|
|
82485
82507
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -87402,4 +87424,4 @@
|
|
|
87402
87424
|
exports.subscribeToAdapter = subscribeToAdapter;
|
|
87403
87425
|
|
|
87404
87426
|
}));
|
|
87405
|
-
// version: 1.266.0-
|
|
87427
|
+
// version: 1.266.0-dev20-117d849b4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-worker-api",
|
|
3
|
-
"version": "1.266.0-
|
|
3
|
+
"version": "1.266.0-dev20",
|
|
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.266.0-
|
|
39
|
-
"@salesforce/lds-adapters-uiapi": "^1.266.0-
|
|
40
|
-
"@salesforce/lds-default-luvio": "^1.266.0-
|
|
41
|
-
"@salesforce/lds-drafts": "^1.266.0-
|
|
42
|
-
"@salesforce/lds-graphql-parser": "^1.266.0-
|
|
43
|
-
"@salesforce/lds-luvio-engine": "^1.266.0-
|
|
44
|
-
"@salesforce/lds-priming": "^1.266.0-
|
|
45
|
-
"@salesforce/lds-runtime-mobile": "^1.266.0-
|
|
46
|
-
"@salesforce/nimbus-plugin-lds": "^1.266.0-
|
|
38
|
+
"@salesforce/lds-adapters-graphql": "^1.266.0-dev20",
|
|
39
|
+
"@salesforce/lds-adapters-uiapi": "^1.266.0-dev20",
|
|
40
|
+
"@salesforce/lds-default-luvio": "^1.266.0-dev20",
|
|
41
|
+
"@salesforce/lds-drafts": "^1.266.0-dev20",
|
|
42
|
+
"@salesforce/lds-graphql-parser": "^1.266.0-dev20",
|
|
43
|
+
"@salesforce/lds-luvio-engine": "^1.266.0-dev20",
|
|
44
|
+
"@salesforce/lds-priming": "^1.266.0-dev20",
|
|
45
|
+
"@salesforce/lds-runtime-mobile": "^1.266.0-dev20",
|
|
46
|
+
"@salesforce/nimbus-plugin-lds": "^1.266.0-dev20",
|
|
47
47
|
"ajv": "^8.11.0",
|
|
48
48
|
"glob": "^7.1.5",
|
|
49
49
|
"nimbus-types": "^2.0.0-alpha1",
|