@salesforce/lds-worker-api 1.229.0-dev7 → 1.229.0-dev8
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.
|
@@ -795,4 +795,4 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
795
795
|
}
|
|
796
796
|
|
|
797
797
|
export { createPrimingSession, draftManager, draftQueue, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, setMetadataTTL, setUiApiRecordTTL, subscribeToAdapter };
|
|
798
|
-
// version: 1.229.0-
|
|
798
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
@@ -3996,7 +3996,7 @@ function withDefaultLuvio(callback) {
|
|
|
3996
3996
|
}
|
|
3997
3997
|
callbacks.push(callback);
|
|
3998
3998
|
}
|
|
3999
|
-
// version: 1.229.0-
|
|
3999
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
4000
4000
|
|
|
4001
4001
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4002
4002
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -15457,7 +15457,7 @@ function gql(literals, ...subs) {
|
|
|
15457
15457
|
}
|
|
15458
15458
|
return superResult;
|
|
15459
15459
|
}
|
|
15460
|
-
// version: 1.229.0-
|
|
15460
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
15461
15461
|
|
|
15462
15462
|
function unwrap(data) {
|
|
15463
15463
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16381,7 +16381,7 @@ function createGraphQLWireAdapterConstructor(luvio, adapter, metadata, astResolv
|
|
|
16381
16381
|
const { apiFamily, name } = metadata;
|
|
16382
16382
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16383
16383
|
}
|
|
16384
|
-
// version: 1.229.0-
|
|
16384
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
16385
16385
|
|
|
16386
16386
|
/**
|
|
16387
16387
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -19823,7 +19823,7 @@ function extractTrackedFieldsToTrie(recordId, node, root, config, visitedRecordI
|
|
|
19823
19823
|
extractTrackedFieldsToTrie(spanningLink.data.__ref, spanning, next, config, spanningVisitedRecordIds, depth + 1);
|
|
19824
19824
|
// For a spanning record that is detected to be a circular reference, we add the field along with Id and Name.
|
|
19825
19825
|
// It's possible for spanning record lookup fields to sometimes be circular, and sometimes not - depending on the value of the lookup field.
|
|
19826
|
-
// For more information on scenarios that caused this fix:
|
|
19826
|
+
// For more information on scenarios that caused this fix: search "LDS Recursive Spanning Fields Problem" in Quip
|
|
19827
19827
|
if (keys$a(next.children).length === 0) {
|
|
19828
19828
|
addScalarFieldId(next);
|
|
19829
19829
|
addScalarFieldName(next);
|
|
@@ -41201,7 +41201,16 @@ withDefaultLuvio((luvio) => {
|
|
|
41201
41201
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory$1));
|
|
41202
41202
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyQuickActionDefaultsUpdateAvailable', notifyUpdateAvailableFactory));
|
|
41203
41203
|
});
|
|
41204
|
-
// version: 1.229.0-
|
|
41204
|
+
// version: 1.229.0-dev8-26b9af754
|
|
41205
|
+
|
|
41206
|
+
var ldsIdempotencyWriteDisabled = {
|
|
41207
|
+
isOpen: function (e) {
|
|
41208
|
+
return e.fallback;
|
|
41209
|
+
},
|
|
41210
|
+
hasError: function () {
|
|
41211
|
+
return !0;
|
|
41212
|
+
},
|
|
41213
|
+
};
|
|
41205
41214
|
|
|
41206
41215
|
var caseSensitiveUserId = '005B0000000GR4OIAW';
|
|
41207
41216
|
|
|
@@ -47216,7 +47225,12 @@ class AbstractResourceRequestActionHandler {
|
|
|
47216
47225
|
// the luvio store redirect table, during which a new draft might be enqueued
|
|
47217
47226
|
// which would not see a necessary mapping.
|
|
47218
47227
|
this.ephemeralRedirects = {};
|
|
47228
|
+
// determined by Server setup.
|
|
47219
47229
|
this.isIdempotencySupported = true;
|
|
47230
|
+
// idempotency write flag set by lds
|
|
47231
|
+
this.isLdsIdempotencyWriteDisabled = ldsIdempotencyWriteDisabled.isOpen({
|
|
47232
|
+
fallback: false,
|
|
47233
|
+
});
|
|
47220
47234
|
}
|
|
47221
47235
|
enqueue(data) {
|
|
47222
47236
|
return this.draftQueue.enqueue(this.handlerId, data);
|
|
@@ -47576,7 +47590,7 @@ class AbstractResourceRequestActionHandler {
|
|
|
47576
47590
|
return [action.targetId];
|
|
47577
47591
|
}
|
|
47578
47592
|
hasIdempotencySupport() {
|
|
47579
|
-
return this.isIdempotencySupported;
|
|
47593
|
+
return this.isIdempotencySupported && !this.isLdsIdempotencyWriteDisabled;
|
|
47580
47594
|
}
|
|
47581
47595
|
async ingestResponses(responses, action) {
|
|
47582
47596
|
const luvio = this.getLuvio();
|
|
@@ -53031,34 +53045,42 @@ function applyReferenceLinksToDraft(record, draftMetadata) {
|
|
|
53031
53045
|
}
|
|
53032
53046
|
const { dataType, relationshipName, referenceToInfos } = fieldInfo;
|
|
53033
53047
|
const draftFieldValue = record.fields[draftField].value;
|
|
53034
|
-
if (dataType === 'Reference' && relationshipName !== null
|
|
53035
|
-
if (
|
|
53036
|
-
|
|
53048
|
+
if (dataType === 'Reference' && relationshipName !== null) {
|
|
53049
|
+
if (draftFieldValue === null) {
|
|
53050
|
+
recordFields[relationshipName] = {
|
|
53051
|
+
displayValue: null,
|
|
53052
|
+
value: null,
|
|
53053
|
+
};
|
|
53037
53054
|
}
|
|
53038
|
-
|
|
53039
|
-
|
|
53040
|
-
|
|
53041
|
-
displayValue: null,
|
|
53042
|
-
value: createLink$2(key),
|
|
53043
|
-
};
|
|
53044
|
-
// for custom objects, we select the 'Name' field
|
|
53045
|
-
// otherwise we check the object info for name fields.
|
|
53046
|
-
//if there are multiple we select 'Name' if it exists, otherwise the first one
|
|
53047
|
-
if (referencedRecord !== undefined && referenceToInfos.length > 0) {
|
|
53048
|
-
let nameField;
|
|
53049
|
-
const referenceToInfo = referenceToInfos[0];
|
|
53050
|
-
const nameFields = referenceToInfo.nameFields;
|
|
53051
|
-
if (nameFields.length !== 0) {
|
|
53052
|
-
nameField = nameFields.find((x) => x === 'Name');
|
|
53053
|
-
if (nameField === undefined) {
|
|
53054
|
-
nameField = nameFields[0];
|
|
53055
|
-
}
|
|
53055
|
+
else {
|
|
53056
|
+
if (typeof draftFieldValue !== 'string') {
|
|
53057
|
+
throw Error('reference field value is not a string');
|
|
53056
53058
|
}
|
|
53057
|
-
|
|
53058
|
-
|
|
53059
|
-
|
|
53060
|
-
|
|
53061
|
-
|
|
53059
|
+
const key = getRecordKeyForId(luvio, draftFieldValue);
|
|
53060
|
+
const referencedRecord = referencedRecords.get(key);
|
|
53061
|
+
recordFields[relationshipName] = {
|
|
53062
|
+
displayValue: null,
|
|
53063
|
+
value: createLink$2(key),
|
|
53064
|
+
};
|
|
53065
|
+
// for custom objects, we select the 'Name' field
|
|
53066
|
+
// otherwise we check the object info for name fields.
|
|
53067
|
+
//if there are multiple we select 'Name' if it exists, otherwise the first one
|
|
53068
|
+
if (referencedRecord !== undefined && referenceToInfos.length > 0) {
|
|
53069
|
+
let nameField;
|
|
53070
|
+
const referenceToInfo = referenceToInfos[0];
|
|
53071
|
+
const nameFields = referenceToInfo.nameFields;
|
|
53072
|
+
if (nameFields.length !== 0) {
|
|
53073
|
+
nameField = nameFields.find((x) => x === 'Name');
|
|
53074
|
+
if (nameField === undefined) {
|
|
53075
|
+
nameField = nameFields[0];
|
|
53076
|
+
}
|
|
53077
|
+
}
|
|
53078
|
+
if (nameField !== undefined) {
|
|
53079
|
+
const nameFieldRef = referencedRecord.fields[nameField];
|
|
53080
|
+
if (nameFieldRef) {
|
|
53081
|
+
recordFields[relationshipName].displayValue =
|
|
53082
|
+
(_a = nameFieldRef.displayValue) !== null && _a !== void 0 ? _a : nameFieldRef.value;
|
|
53083
|
+
}
|
|
53062
53084
|
}
|
|
53063
53085
|
}
|
|
53064
53086
|
}
|
|
@@ -53351,17 +53373,8 @@ class UiApiActionHandler extends AbstractResourceRequestActionHandler {
|
|
|
53351
53373
|
};
|
|
53352
53374
|
for (const fieldName of keys$3(recordWithSpanningRefLinks.fields)) {
|
|
53353
53375
|
const fieldKey = buildRecordFieldStoreKey(key, fieldName);
|
|
53354
|
-
|
|
53355
|
-
|
|
53356
|
-
normalizedRecord.fields[fieldName] = { __ref: fieldKey };
|
|
53357
|
-
publishData(fieldKey, fieldData);
|
|
53358
|
-
}
|
|
53359
|
-
else if (recordWithSpanningRefLinks.fields[fieldName] &&
|
|
53360
|
-
recordWithSpanningRefLinks.fields[fieldName].value &&
|
|
53361
|
-
recordWithSpanningRefLinks.fields[fieldName].value.__ref !== undefined) {
|
|
53362
|
-
normalizedRecord.fields[fieldName] = { __ref: fieldKey };
|
|
53363
|
-
publishData(fieldKey, recordWithSpanningRefLinks.fields[fieldName]);
|
|
53364
|
-
}
|
|
53376
|
+
normalizedRecord.fields[fieldName] = { __ref: fieldKey };
|
|
53377
|
+
publishData(fieldKey, recordWithSpanningRefLinks.fields[fieldName]);
|
|
53365
53378
|
}
|
|
53366
53379
|
// publish the normalized record
|
|
53367
53380
|
publishData(key, normalizedRecord);
|
|
@@ -58049,7 +58062,7 @@ register({
|
|
|
58049
58062
|
id: '@salesforce/lds-network-adapter',
|
|
58050
58063
|
instrument: instrument$1,
|
|
58051
58064
|
});
|
|
58052
|
-
// version: 1.229.0-
|
|
58065
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
58053
58066
|
|
|
58054
58067
|
const { create: create$2, keys: keys$2 } = Object;
|
|
58055
58068
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -76481,7 +76494,7 @@ register({
|
|
|
76481
76494
|
configuration: { ...configurationForGraphQLAdapters },
|
|
76482
76495
|
instrument,
|
|
76483
76496
|
});
|
|
76484
|
-
// version: 1.229.0-
|
|
76497
|
+
// version: 1.229.0-dev8-26b9af754
|
|
76485
76498
|
|
|
76486
76499
|
// On core the unstable adapters are re-exported with different names,
|
|
76487
76500
|
|
|
@@ -78728,7 +78741,7 @@ withDefaultLuvio((luvio) => {
|
|
|
78728
78741
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
78729
78742
|
graphQLImperative = ldsAdapter;
|
|
78730
78743
|
});
|
|
78731
|
-
// version: 1.229.0-
|
|
78744
|
+
// version: 1.229.0-dev8-26b9af754
|
|
78732
78745
|
|
|
78733
78746
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
78734
78747
|
__proto__: null,
|
|
@@ -79442,4 +79455,4 @@ const { luvio } = getRuntime();
|
|
|
79442
79455
|
setDefaultLuvio({ luvio });
|
|
79443
79456
|
|
|
79444
79457
|
export { createPrimingSession, draftManager, draftQueue, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, subscribeToAdapter };
|
|
79445
|
-
// version: 1.229.0-
|
|
79458
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
@@ -4002,7 +4002,7 @@
|
|
|
4002
4002
|
}
|
|
4003
4003
|
callbacks.push(callback);
|
|
4004
4004
|
}
|
|
4005
|
-
// version: 1.229.0-
|
|
4005
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
4006
4006
|
|
|
4007
4007
|
// TODO [TD-0081508]: once that TD is fulfilled we can probably change this file
|
|
4008
4008
|
function instrumentAdapter$1(createFunction, _metadata) {
|
|
@@ -15463,7 +15463,7 @@
|
|
|
15463
15463
|
}
|
|
15464
15464
|
return superResult;
|
|
15465
15465
|
}
|
|
15466
|
-
// version: 1.229.0-
|
|
15466
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
15467
15467
|
|
|
15468
15468
|
function unwrap(data) {
|
|
15469
15469
|
// The lwc-luvio bindings import a function from lwc called "unwrap".
|
|
@@ -16387,7 +16387,7 @@
|
|
|
16387
16387
|
const { apiFamily, name } = metadata;
|
|
16388
16388
|
return createGraphQLWireAdapterConstructor$1(adapter, `${apiFamily}.${name}`, luvio, astResolver);
|
|
16389
16389
|
}
|
|
16390
|
-
// version: 1.229.0-
|
|
16390
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
16391
16391
|
|
|
16392
16392
|
/**
|
|
16393
16393
|
* Copyright (c) 2022, Salesforce, Inc.,
|
|
@@ -19829,7 +19829,7 @@
|
|
|
19829
19829
|
extractTrackedFieldsToTrie(spanningLink.data.__ref, spanning, next, config, spanningVisitedRecordIds, depth + 1);
|
|
19830
19830
|
// For a spanning record that is detected to be a circular reference, we add the field along with Id and Name.
|
|
19831
19831
|
// It's possible for spanning record lookup fields to sometimes be circular, and sometimes not - depending on the value of the lookup field.
|
|
19832
|
-
// For more information on scenarios that caused this fix:
|
|
19832
|
+
// For more information on scenarios that caused this fix: search "LDS Recursive Spanning Fields Problem" in Quip
|
|
19833
19833
|
if (keys$a(next.children).length === 0) {
|
|
19834
19834
|
addScalarFieldId(next);
|
|
19835
19835
|
addScalarFieldName(next);
|
|
@@ -41207,7 +41207,16 @@
|
|
|
41207
41207
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyListInfoUpdateAvailable', notifyUpdateAvailableFactory$1));
|
|
41208
41208
|
throttle(60, 60000, createLDSAdapter(luvio, 'notifyQuickActionDefaultsUpdateAvailable', notifyUpdateAvailableFactory));
|
|
41209
41209
|
});
|
|
41210
|
-
// version: 1.229.0-
|
|
41210
|
+
// version: 1.229.0-dev8-26b9af754
|
|
41211
|
+
|
|
41212
|
+
var ldsIdempotencyWriteDisabled = {
|
|
41213
|
+
isOpen: function (e) {
|
|
41214
|
+
return e.fallback;
|
|
41215
|
+
},
|
|
41216
|
+
hasError: function () {
|
|
41217
|
+
return !0;
|
|
41218
|
+
},
|
|
41219
|
+
};
|
|
41211
41220
|
|
|
41212
41221
|
var caseSensitiveUserId = '005B0000000GR4OIAW';
|
|
41213
41222
|
|
|
@@ -47222,7 +47231,12 @@
|
|
|
47222
47231
|
// the luvio store redirect table, during which a new draft might be enqueued
|
|
47223
47232
|
// which would not see a necessary mapping.
|
|
47224
47233
|
this.ephemeralRedirects = {};
|
|
47234
|
+
// determined by Server setup.
|
|
47225
47235
|
this.isIdempotencySupported = true;
|
|
47236
|
+
// idempotency write flag set by lds
|
|
47237
|
+
this.isLdsIdempotencyWriteDisabled = ldsIdempotencyWriteDisabled.isOpen({
|
|
47238
|
+
fallback: false,
|
|
47239
|
+
});
|
|
47226
47240
|
}
|
|
47227
47241
|
enqueue(data) {
|
|
47228
47242
|
return this.draftQueue.enqueue(this.handlerId, data);
|
|
@@ -47582,7 +47596,7 @@
|
|
|
47582
47596
|
return [action.targetId];
|
|
47583
47597
|
}
|
|
47584
47598
|
hasIdempotencySupport() {
|
|
47585
|
-
return this.isIdempotencySupported;
|
|
47599
|
+
return this.isIdempotencySupported && !this.isLdsIdempotencyWriteDisabled;
|
|
47586
47600
|
}
|
|
47587
47601
|
async ingestResponses(responses, action) {
|
|
47588
47602
|
const luvio = this.getLuvio();
|
|
@@ -53037,34 +53051,42 @@
|
|
|
53037
53051
|
}
|
|
53038
53052
|
const { dataType, relationshipName, referenceToInfos } = fieldInfo;
|
|
53039
53053
|
const draftFieldValue = record.fields[draftField].value;
|
|
53040
|
-
if (dataType === 'Reference' && relationshipName !== null
|
|
53041
|
-
if (
|
|
53042
|
-
|
|
53054
|
+
if (dataType === 'Reference' && relationshipName !== null) {
|
|
53055
|
+
if (draftFieldValue === null) {
|
|
53056
|
+
recordFields[relationshipName] = {
|
|
53057
|
+
displayValue: null,
|
|
53058
|
+
value: null,
|
|
53059
|
+
};
|
|
53043
53060
|
}
|
|
53044
|
-
|
|
53045
|
-
|
|
53046
|
-
|
|
53047
|
-
displayValue: null,
|
|
53048
|
-
value: createLink$2(key),
|
|
53049
|
-
};
|
|
53050
|
-
// for custom objects, we select the 'Name' field
|
|
53051
|
-
// otherwise we check the object info for name fields.
|
|
53052
|
-
//if there are multiple we select 'Name' if it exists, otherwise the first one
|
|
53053
|
-
if (referencedRecord !== undefined && referenceToInfos.length > 0) {
|
|
53054
|
-
let nameField;
|
|
53055
|
-
const referenceToInfo = referenceToInfos[0];
|
|
53056
|
-
const nameFields = referenceToInfo.nameFields;
|
|
53057
|
-
if (nameFields.length !== 0) {
|
|
53058
|
-
nameField = nameFields.find((x) => x === 'Name');
|
|
53059
|
-
if (nameField === undefined) {
|
|
53060
|
-
nameField = nameFields[0];
|
|
53061
|
-
}
|
|
53061
|
+
else {
|
|
53062
|
+
if (typeof draftFieldValue !== 'string') {
|
|
53063
|
+
throw Error('reference field value is not a string');
|
|
53062
53064
|
}
|
|
53063
|
-
|
|
53064
|
-
|
|
53065
|
-
|
|
53066
|
-
|
|
53067
|
-
|
|
53065
|
+
const key = getRecordKeyForId(luvio, draftFieldValue);
|
|
53066
|
+
const referencedRecord = referencedRecords.get(key);
|
|
53067
|
+
recordFields[relationshipName] = {
|
|
53068
|
+
displayValue: null,
|
|
53069
|
+
value: createLink$2(key),
|
|
53070
|
+
};
|
|
53071
|
+
// for custom objects, we select the 'Name' field
|
|
53072
|
+
// otherwise we check the object info for name fields.
|
|
53073
|
+
//if there are multiple we select 'Name' if it exists, otherwise the first one
|
|
53074
|
+
if (referencedRecord !== undefined && referenceToInfos.length > 0) {
|
|
53075
|
+
let nameField;
|
|
53076
|
+
const referenceToInfo = referenceToInfos[0];
|
|
53077
|
+
const nameFields = referenceToInfo.nameFields;
|
|
53078
|
+
if (nameFields.length !== 0) {
|
|
53079
|
+
nameField = nameFields.find((x) => x === 'Name');
|
|
53080
|
+
if (nameField === undefined) {
|
|
53081
|
+
nameField = nameFields[0];
|
|
53082
|
+
}
|
|
53083
|
+
}
|
|
53084
|
+
if (nameField !== undefined) {
|
|
53085
|
+
const nameFieldRef = referencedRecord.fields[nameField];
|
|
53086
|
+
if (nameFieldRef) {
|
|
53087
|
+
recordFields[relationshipName].displayValue =
|
|
53088
|
+
(_a = nameFieldRef.displayValue) !== null && _a !== void 0 ? _a : nameFieldRef.value;
|
|
53089
|
+
}
|
|
53068
53090
|
}
|
|
53069
53091
|
}
|
|
53070
53092
|
}
|
|
@@ -53357,17 +53379,8 @@
|
|
|
53357
53379
|
};
|
|
53358
53380
|
for (const fieldName of keys$3(recordWithSpanningRefLinks.fields)) {
|
|
53359
53381
|
const fieldKey = buildRecordFieldStoreKey(key, fieldName);
|
|
53360
|
-
|
|
53361
|
-
|
|
53362
|
-
normalizedRecord.fields[fieldName] = { __ref: fieldKey };
|
|
53363
|
-
publishData(fieldKey, fieldData);
|
|
53364
|
-
}
|
|
53365
|
-
else if (recordWithSpanningRefLinks.fields[fieldName] &&
|
|
53366
|
-
recordWithSpanningRefLinks.fields[fieldName].value &&
|
|
53367
|
-
recordWithSpanningRefLinks.fields[fieldName].value.__ref !== undefined) {
|
|
53368
|
-
normalizedRecord.fields[fieldName] = { __ref: fieldKey };
|
|
53369
|
-
publishData(fieldKey, recordWithSpanningRefLinks.fields[fieldName]);
|
|
53370
|
-
}
|
|
53382
|
+
normalizedRecord.fields[fieldName] = { __ref: fieldKey };
|
|
53383
|
+
publishData(fieldKey, recordWithSpanningRefLinks.fields[fieldName]);
|
|
53371
53384
|
}
|
|
53372
53385
|
// publish the normalized record
|
|
53373
53386
|
publishData(key, normalizedRecord);
|
|
@@ -58055,7 +58068,7 @@
|
|
|
58055
58068
|
id: '@salesforce/lds-network-adapter',
|
|
58056
58069
|
instrument: instrument$1,
|
|
58057
58070
|
});
|
|
58058
|
-
// version: 1.229.0-
|
|
58071
|
+
// version: 1.229.0-dev8-6c36d664c
|
|
58059
58072
|
|
|
58060
58073
|
const { create: create$2, keys: keys$2 } = Object;
|
|
58061
58074
|
const { stringify: stringify$1, parse: parse$1 } = JSON;
|
|
@@ -76487,7 +76500,7 @@
|
|
|
76487
76500
|
configuration: { ...configurationForGraphQLAdapters },
|
|
76488
76501
|
instrument,
|
|
76489
76502
|
});
|
|
76490
|
-
// version: 1.229.0-
|
|
76503
|
+
// version: 1.229.0-dev8-26b9af754
|
|
76491
76504
|
|
|
76492
76505
|
// On core the unstable adapters are re-exported with different names,
|
|
76493
76506
|
|
|
@@ -78734,7 +78747,7 @@
|
|
|
78734
78747
|
unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
|
|
78735
78748
|
graphQLImperative = ldsAdapter;
|
|
78736
78749
|
});
|
|
78737
|
-
// version: 1.229.0-
|
|
78750
|
+
// version: 1.229.0-dev8-26b9af754
|
|
78738
78751
|
|
|
78739
78752
|
var gqlApi = /*#__PURE__*/Object.freeze({
|
|
78740
78753
|
__proto__: null,
|
|
@@ -79465,4 +79478,4 @@
|
|
|
79465
79478
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
79466
79479
|
|
|
79467
79480
|
}));
|
|
79468
|
-
// version: 1.229.0-
|
|
79481
|
+
// version: 1.229.0-dev8-6c36d664c
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-worker-api",
|
|
3
|
-
"version": "1.229.0-
|
|
3
|
+
"version": "1.229.0-dev8",
|
|
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.229.0-
|
|
39
|
-
"@salesforce/lds-adapters-uiapi": "1.229.0-
|
|
40
|
-
"@salesforce/lds-default-luvio": "1.229.0-
|
|
41
|
-
"@salesforce/lds-drafts": "1.229.0-
|
|
42
|
-
"@salesforce/lds-graphql-parser": "1.229.0-
|
|
43
|
-
"@salesforce/lds-luvio-engine": "1.229.0-
|
|
44
|
-
"@salesforce/lds-priming": "1.229.0-
|
|
45
|
-
"@salesforce/lds-runtime-mobile": "1.229.0-
|
|
46
|
-
"@salesforce/nimbus-plugin-lds": "1.229.0-
|
|
38
|
+
"@salesforce/lds-adapters-graphql": "1.229.0-dev8",
|
|
39
|
+
"@salesforce/lds-adapters-uiapi": "1.229.0-dev8",
|
|
40
|
+
"@salesforce/lds-default-luvio": "1.229.0-dev8",
|
|
41
|
+
"@salesforce/lds-drafts": "1.229.0-dev8",
|
|
42
|
+
"@salesforce/lds-graphql-parser": "1.229.0-dev8",
|
|
43
|
+
"@salesforce/lds-luvio-engine": "1.229.0-dev8",
|
|
44
|
+
"@salesforce/lds-priming": "1.229.0-dev8",
|
|
45
|
+
"@salesforce/lds-runtime-mobile": "1.229.0-dev8",
|
|
46
|
+
"@salesforce/nimbus-plugin-lds": "1.229.0-dev8",
|
|
47
47
|
"ajv": "^8.11.0",
|
|
48
48
|
"glob": "^7.1.5",
|
|
49
49
|
"nimbus-types": "^2.0.0-alpha1",
|