@salesforce/lds-worker-api 1.309.0-dev11 → 1.309.0-dev12

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.
@@ -1077,4 +1077,4 @@ if (process.env.NODE_ENV !== 'production') {
1077
1077
  }
1078
1078
 
1079
1079
  export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
1080
- // version: 1.309.0-dev11-ffe70308a8
1080
+ // version: 1.309.0-dev12-09ae94a55e
@@ -4265,7 +4265,7 @@ function withDefaultLuvio(callback) {
4265
4265
  }
4266
4266
  callbacks.push(callback);
4267
4267
  }
4268
- // version: 1.309.0-dev11-ffe70308a8
4268
+ // version: 1.309.0-dev12-09ae94a55e
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-dev11-ffe70308a8
15767
+ // version: 1.309.0-dev12-09ae94a55e
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-dev11-ffe70308a8
16708
+ // version: 1.309.0-dev12-09ae94a55e
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-dev11-e18434ec95
44815
+ // version: 1.309.0-dev12-9b91cf52fb
44816
44816
 
44817
44817
  var ldsIdempotencyWriteDisabled = {
44818
44818
  isOpen: function (e) {
@@ -50460,7 +50460,7 @@ class DurableDraftQueue {
50460
50460
  switch (result) {
50461
50461
  case ProcessActionResult.BLOCKED_ON_ERROR:
50462
50462
  this.state = DraftQueueState.Error;
50463
- return Promise.reject();
50463
+ return Promise.reject('Unable to start queue - first action is in error state');
50464
50464
  default:
50465
50465
  return Promise.resolve();
50466
50466
  }
@@ -51752,16 +51752,17 @@ class DraftManager {
51752
51752
  return Promise.reject('cannot edit incompatible action type or uploading actions');
51753
51753
  }
51754
51754
  action.data.body.fields = { ...action.data.body.fields, ...fields };
51755
+ action.status = DraftActionStatus.Pending;
51755
51756
  await this.draftQueue.updateDraftAction(action);
51756
51757
  return this.buildDraftQueueItem(action);
51757
51758
  }
51758
51759
  isValidFieldMap(fields) {
51759
51760
  const keys$1 = keys$6(fields);
51760
- const validTypes = ['string', 'number', 'null', 'boolean'];
51761
+ const validTypes = ['string', 'number', 'boolean'];
51761
51762
  for (let i = 0; i < keys$1.length; i++) {
51762
51763
  const key = keys$1[i];
51763
51764
  const value = fields[key];
51764
- if (!validTypes.includes(typeof value)) {
51765
+ if (!validTypes.includes(typeof value) && value !== null) {
51765
51766
  return false;
51766
51767
  }
51767
51768
  }
@@ -51789,6 +51790,7 @@ class DraftManager {
51789
51790
  }
51790
51791
  const data = action.data;
51791
51792
  data.body.fields = { ...data.body.fields, ...fields };
51793
+ action.status = DraftActionStatus.Pending;
51792
51794
  await this.draftQueue.updateDraftAction(action);
51793
51795
  return this.buildDraftQueueItem(action);
51794
51796
  }
@@ -59743,8 +59745,9 @@ function createErrorSnapshot(result, snapshot) {
59743
59745
  },
59744
59746
  };
59745
59747
  }
59746
- function createLocalEvalSnapshot(data, seenRecords, recordId, rebuildWithLocalEval) {
59748
+ function createLocalEvalSnapshot(data, seenRecords, recordId, rebuildWithLocalEval, refresh) {
59747
59749
  return {
59750
+ refresh,
59748
59751
  recordId,
59749
59752
  variables: {},
59750
59753
  seenRecords,
@@ -59962,11 +59965,11 @@ function draftAwareGraphQLAdapterFactory(userId, objectInfoService, store, luvio
59962
59965
  isDraftId,
59963
59966
  getCanonicalId,
59964
59967
  };
59968
+ const eventEmitter = createCustomAdapterEventEmitter(GRAPHQL_EVAL_NAMESPACE, requestContext.eventObservers || []);
59965
59969
  try {
59966
59970
  // NB: This occurs BEFORE synthetic field injection on purpose to
59967
59971
  // ensure we don't charge the caller for spanning records we inject
59968
59972
  // on their behalf.
59969
- const eventEmitter = createCustomAdapterEventEmitter(GRAPHQL_EVAL_NAMESPACE, requestContext.eventObservers || []);
59970
59973
  const queryInstrumentation = instrumentLimits(copy, config.variables || {});
59971
59974
  eventEmitter({
59972
59975
  type: 'graphql-query-instrumentation',
@@ -60098,7 +60101,7 @@ function draftAwareGraphQLAdapterFactory(userId, objectInfoService, store, luvio
60098
60101
  // the error is network error or 504), otherwise we spread over
60099
60102
  // the non-eval'ed snapshot (which will be either Fulfilled or Stale)
60100
60103
  const resultSnapshot = nonEvaluatedSnapshot.state === 'Error'
60101
- ? createLocalEvalSnapshot(gqlResult, seenRecords, recordId, rebuildWithLocalEval)
60104
+ ? createLocalEvalSnapshot(gqlResult, seenRecords, recordId, rebuildWithLocalEval, nonEvaluatedSnapshot.refresh)
60102
60105
  : {
60103
60106
  ...nonEvaluatedSnapshot,
60104
60107
  data: gqlResult,
@@ -60121,6 +60124,9 @@ function draftAwareGraphQLAdapterFactory(userId, objectInfoService, store, luvio
60121
60124
  },
60122
60125
  };
60123
60126
  }
60127
+ if (refresh === undefined) {
60128
+ eventEmitter({ type: 'graphql-luvio-refresh-undefined' });
60129
+ }
60124
60130
  if (possibleStaleRecordMap.size > 0) {
60125
60131
  initiateStaleRecordRefresh(luvio, possibleStaleRecordMap);
60126
60132
  resultSnapshot.state = 'Stale';
@@ -61335,6 +61341,7 @@ const GRAPHQL_EVAL_ROOT_QUERY_COUNT = 'gql-eval-root-query-count';
61335
61341
  const GRAPHQL_EVAL_TOTAL_QUERY_COUNT = 'gql-eval-total-query-count';
61336
61342
  const GRAPHQL_EVAL_MAX_CHILD_RELATIONSHIPS_COUNT = 'gql-eval-max-child-count';
61337
61343
  const GRAPHQL_EVAL_QUERY_RECORD_COUNT = 'gql-eval-query-record-count';
61344
+ const GRAPHQL_SNAPSHOT_REFRESH_UNDEFINED = 'gql-snapshot-refresh-undefined';
61338
61345
  /** Draft Queue */
61339
61346
  const DRAFT_QUEUE_STATE_STARTED = 'draft-queue-state-started';
61340
61347
  const DRAFT_QUEUE_STATE_ERROR = 'draft-queue-state-error';
@@ -61402,6 +61409,9 @@ function reportGraphqlQueryInstrumentation(data) {
61402
61409
  ldsMobileInstrumentation$2.bucketValue(GRAPHQL_EVAL_MAX_CHILD_RELATIONSHIPS_COUNT, data.maxChildRelationships, queryBuckets);
61403
61410
  ldsMobileInstrumentation$2.bucketValue(GRAPHQL_EVAL_QUERY_RECORD_COUNT, data.requestedRecordCount, recordBuckets);
61404
61411
  }
61412
+ function incrementGraphQLRefreshUndfined() {
61413
+ ldsMobileInstrumentation$2.incrementCounter(GRAPHQL_SNAPSHOT_REFRESH_UNDEFINED);
61414
+ }
61405
61415
  function reportDraftActionEvent(state) {
61406
61416
  switch (state) {
61407
61417
  case 'added':
@@ -61818,6 +61828,9 @@ function instrumentGraphQLEval(adapter) {
61818
61828
  case 'graphql-query-instrumentation':
61819
61829
  reportGraphqlQueryInstrumentation(data.data);
61820
61830
  break;
61831
+ case 'graphql-luvio-refresh-undefined':
61832
+ incrementGraphQLRefreshUndfined();
61833
+ break;
61821
61834
  }
61822
61835
  }
61823
61836
  },
@@ -64075,7 +64088,7 @@ register$1({
64075
64088
  id: '@salesforce/lds-network-adapter',
64076
64089
  instrument: instrument$2,
64077
64090
  });
64078
- // version: 1.309.0-dev11-ffe70308a8
64091
+ // version: 1.309.0-dev12-09ae94a55e
64079
64092
 
64080
64093
  const { create: create$3, keys: keys$3 } = Object;
64081
64094
  const { stringify: stringify$1, parse: parse$1 } = JSON;
@@ -84111,7 +84124,7 @@ register$1({
84111
84124
  configuration: { ...configurationForGraphQLAdapters$1 },
84112
84125
  instrument: instrument$1,
84113
84126
  });
84114
- // version: 1.309.0-dev11-e18434ec95
84127
+ // version: 1.309.0-dev12-9b91cf52fb
84115
84128
 
84116
84129
  // On core the unstable adapters are re-exported with different names,
84117
84130
  // we want to match them here.
@@ -86367,7 +86380,7 @@ withDefaultLuvio((luvio) => {
86367
86380
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
86368
86381
  graphQLImperative = ldsAdapter;
86369
86382
  });
86370
- // version: 1.309.0-dev11-e18434ec95
86383
+ // version: 1.309.0-dev12-9b91cf52fb
86371
86384
 
86372
86385
  var gqlApi = /*#__PURE__*/Object.freeze({
86373
86386
  __proto__: null,
@@ -87108,7 +87121,7 @@ const callbacks$1 = [];
87108
87121
  function register(r) {
87109
87122
  callbacks$1.forEach((callback) => callback(r));
87110
87123
  }
87111
- // version: 1.309.0-dev11-ffe70308a8
87124
+ // version: 1.309.0-dev12-09ae94a55e
87112
87125
 
87113
87126
  /**
87114
87127
  * Returns true if the value acts like a Promise, i.e. has a "then" function,
@@ -92070,4 +92083,4 @@ const { luvio } = getRuntime();
92070
92083
  setDefaultLuvio({ luvio });
92071
92084
 
92072
92085
  export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, registerReportObserver, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
92073
- // version: 1.309.0-dev11-ffe70308a8
92086
+ // version: 1.309.0-dev12-09ae94a55e
@@ -4271,7 +4271,7 @@
4271
4271
  }
4272
4272
  callbacks.push(callback);
4273
4273
  }
4274
- // version: 1.309.0-dev11-ffe70308a8
4274
+ // version: 1.309.0-dev12-09ae94a55e
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-dev11-ffe70308a8
15773
+ // version: 1.309.0-dev12-09ae94a55e
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-dev11-ffe70308a8
16714
+ // version: 1.309.0-dev12-09ae94a55e
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-dev11-e18434ec95
44821
+ // version: 1.309.0-dev12-9b91cf52fb
44822
44822
 
44823
44823
  var ldsIdempotencyWriteDisabled = {
44824
44824
  isOpen: function (e) {
@@ -50466,7 +50466,7 @@
50466
50466
  switch (result) {
50467
50467
  case ProcessActionResult.BLOCKED_ON_ERROR:
50468
50468
  this.state = DraftQueueState.Error;
50469
- return Promise.reject();
50469
+ return Promise.reject('Unable to start queue - first action is in error state');
50470
50470
  default:
50471
50471
  return Promise.resolve();
50472
50472
  }
@@ -51758,16 +51758,17 @@
51758
51758
  return Promise.reject('cannot edit incompatible action type or uploading actions');
51759
51759
  }
51760
51760
  action.data.body.fields = { ...action.data.body.fields, ...fields };
51761
+ action.status = DraftActionStatus.Pending;
51761
51762
  await this.draftQueue.updateDraftAction(action);
51762
51763
  return this.buildDraftQueueItem(action);
51763
51764
  }
51764
51765
  isValidFieldMap(fields) {
51765
51766
  const keys$1 = keys$6(fields);
51766
- const validTypes = ['string', 'number', 'null', 'boolean'];
51767
+ const validTypes = ['string', 'number', 'boolean'];
51767
51768
  for (let i = 0; i < keys$1.length; i++) {
51768
51769
  const key = keys$1[i];
51769
51770
  const value = fields[key];
51770
- if (!validTypes.includes(typeof value)) {
51771
+ if (!validTypes.includes(typeof value) && value !== null) {
51771
51772
  return false;
51772
51773
  }
51773
51774
  }
@@ -51795,6 +51796,7 @@
51795
51796
  }
51796
51797
  const data = action.data;
51797
51798
  data.body.fields = { ...data.body.fields, ...fields };
51799
+ action.status = DraftActionStatus.Pending;
51798
51800
  await this.draftQueue.updateDraftAction(action);
51799
51801
  return this.buildDraftQueueItem(action);
51800
51802
  }
@@ -59749,8 +59751,9 @@
59749
59751
  },
59750
59752
  };
59751
59753
  }
59752
- function createLocalEvalSnapshot(data, seenRecords, recordId, rebuildWithLocalEval) {
59754
+ function createLocalEvalSnapshot(data, seenRecords, recordId, rebuildWithLocalEval, refresh) {
59753
59755
  return {
59756
+ refresh,
59754
59757
  recordId,
59755
59758
  variables: {},
59756
59759
  seenRecords,
@@ -59968,11 +59971,11 @@
59968
59971
  isDraftId,
59969
59972
  getCanonicalId,
59970
59973
  };
59974
+ const eventEmitter = createCustomAdapterEventEmitter(GRAPHQL_EVAL_NAMESPACE, requestContext.eventObservers || []);
59971
59975
  try {
59972
59976
  // NB: This occurs BEFORE synthetic field injection on purpose to
59973
59977
  // ensure we don't charge the caller for spanning records we inject
59974
59978
  // on their behalf.
59975
- const eventEmitter = createCustomAdapterEventEmitter(GRAPHQL_EVAL_NAMESPACE, requestContext.eventObservers || []);
59976
59979
  const queryInstrumentation = instrumentLimits(copy, config.variables || {});
59977
59980
  eventEmitter({
59978
59981
  type: 'graphql-query-instrumentation',
@@ -60104,7 +60107,7 @@
60104
60107
  // the error is network error or 504), otherwise we spread over
60105
60108
  // the non-eval'ed snapshot (which will be either Fulfilled or Stale)
60106
60109
  const resultSnapshot = nonEvaluatedSnapshot.state === 'Error'
60107
- ? createLocalEvalSnapshot(gqlResult, seenRecords, recordId, rebuildWithLocalEval)
60110
+ ? createLocalEvalSnapshot(gqlResult, seenRecords, recordId, rebuildWithLocalEval, nonEvaluatedSnapshot.refresh)
60108
60111
  : {
60109
60112
  ...nonEvaluatedSnapshot,
60110
60113
  data: gqlResult,
@@ -60127,6 +60130,9 @@
60127
60130
  },
60128
60131
  };
60129
60132
  }
60133
+ if (refresh === undefined) {
60134
+ eventEmitter({ type: 'graphql-luvio-refresh-undefined' });
60135
+ }
60130
60136
  if (possibleStaleRecordMap.size > 0) {
60131
60137
  initiateStaleRecordRefresh(luvio, possibleStaleRecordMap);
60132
60138
  resultSnapshot.state = 'Stale';
@@ -61341,6 +61347,7 @@
61341
61347
  const GRAPHQL_EVAL_TOTAL_QUERY_COUNT = 'gql-eval-total-query-count';
61342
61348
  const GRAPHQL_EVAL_MAX_CHILD_RELATIONSHIPS_COUNT = 'gql-eval-max-child-count';
61343
61349
  const GRAPHQL_EVAL_QUERY_RECORD_COUNT = 'gql-eval-query-record-count';
61350
+ const GRAPHQL_SNAPSHOT_REFRESH_UNDEFINED = 'gql-snapshot-refresh-undefined';
61344
61351
  /** Draft Queue */
61345
61352
  const DRAFT_QUEUE_STATE_STARTED = 'draft-queue-state-started';
61346
61353
  const DRAFT_QUEUE_STATE_ERROR = 'draft-queue-state-error';
@@ -61408,6 +61415,9 @@
61408
61415
  ldsMobileInstrumentation$2.bucketValue(GRAPHQL_EVAL_MAX_CHILD_RELATIONSHIPS_COUNT, data.maxChildRelationships, queryBuckets);
61409
61416
  ldsMobileInstrumentation$2.bucketValue(GRAPHQL_EVAL_QUERY_RECORD_COUNT, data.requestedRecordCount, recordBuckets);
61410
61417
  }
61418
+ function incrementGraphQLRefreshUndfined() {
61419
+ ldsMobileInstrumentation$2.incrementCounter(GRAPHQL_SNAPSHOT_REFRESH_UNDEFINED);
61420
+ }
61411
61421
  function reportDraftActionEvent(state) {
61412
61422
  switch (state) {
61413
61423
  case 'added':
@@ -61824,6 +61834,9 @@
61824
61834
  case 'graphql-query-instrumentation':
61825
61835
  reportGraphqlQueryInstrumentation(data.data);
61826
61836
  break;
61837
+ case 'graphql-luvio-refresh-undefined':
61838
+ incrementGraphQLRefreshUndfined();
61839
+ break;
61827
61840
  }
61828
61841
  }
61829
61842
  },
@@ -64081,7 +64094,7 @@
64081
64094
  id: '@salesforce/lds-network-adapter',
64082
64095
  instrument: instrument$2,
64083
64096
  });
64084
- // version: 1.309.0-dev11-ffe70308a8
64097
+ // version: 1.309.0-dev12-09ae94a55e
64085
64098
 
64086
64099
  const { create: create$3, keys: keys$3 } = Object;
64087
64100
  const { stringify: stringify$1, parse: parse$1 } = JSON;
@@ -84117,7 +84130,7 @@
84117
84130
  configuration: { ...configurationForGraphQLAdapters$1 },
84118
84131
  instrument: instrument$1,
84119
84132
  });
84120
- // version: 1.309.0-dev11-e18434ec95
84133
+ // version: 1.309.0-dev12-9b91cf52fb
84121
84134
 
84122
84135
  // On core the unstable adapters are re-exported with different names,
84123
84136
  // we want to match them here.
@@ -86373,7 +86386,7 @@
86373
86386
  unstable_graphQL_imperative = createImperativeAdapter(luvio, createInstrumentedAdapter(ldsAdapter, adapterMetadata), adapterMetadata);
86374
86387
  graphQLImperative = ldsAdapter;
86375
86388
  });
86376
- // version: 1.309.0-dev11-e18434ec95
86389
+ // version: 1.309.0-dev12-9b91cf52fb
86377
86390
 
86378
86391
  var gqlApi = /*#__PURE__*/Object.freeze({
86379
86392
  __proto__: null,
@@ -87114,7 +87127,7 @@
87114
87127
  function register(r) {
87115
87128
  callbacks$1.forEach((callback) => callback(r));
87116
87129
  }
87117
- // version: 1.309.0-dev11-ffe70308a8
87130
+ // version: 1.309.0-dev12-09ae94a55e
87118
87131
 
87119
87132
  /**
87120
87133
  * Returns true if the value acts like a Promise, i.e. has a "then" function,
@@ -92095,4 +92108,4 @@
92095
92108
  exports.subscribeToAdapter = subscribeToAdapter;
92096
92109
 
92097
92110
  }));
92098
- // version: 1.309.0-dev11-ffe70308a8
92111
+ // version: 1.309.0-dev12-09ae94a55e
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-worker-api",
3
- "version": "1.309.0-dev11",
3
+ "version": "1.309.0-dev12",
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-dev11",
39
- "@salesforce/lds-adapters-uiapi": "^1.309.0-dev11",
40
- "@salesforce/lds-default-luvio": "^1.309.0-dev11",
41
- "@salesforce/lds-drafts": "^1.309.0-dev11",
42
- "@salesforce/lds-graphql-parser": "^1.309.0-dev11",
43
- "@salesforce/lds-luvio-engine": "^1.309.0-dev11",
44
- "@salesforce/lds-priming": "^1.309.0-dev11",
45
- "@salesforce/lds-runtime-mobile": "^1.309.0-dev11",
46
- "@salesforce/nimbus-plugin-lds": "^1.309.0-dev11",
38
+ "@salesforce/lds-adapters-graphql": "^1.309.0-dev12",
39
+ "@salesforce/lds-adapters-uiapi": "^1.309.0-dev12",
40
+ "@salesforce/lds-default-luvio": "^1.309.0-dev12",
41
+ "@salesforce/lds-drafts": "^1.309.0-dev12",
42
+ "@salesforce/lds-graphql-parser": "^1.309.0-dev12",
43
+ "@salesforce/lds-luvio-engine": "^1.309.0-dev12",
44
+ "@salesforce/lds-priming": "^1.309.0-dev12",
45
+ "@salesforce/lds-runtime-mobile": "^1.309.0-dev12",
46
+ "@salesforce/nimbus-plugin-lds": "^1.309.0-dev12",
47
47
  "ajv": "^8.11.0",
48
48
  "glob": "^7.1.5",
49
49
  "nimbus-types": "^2.0.0-alpha1",