@salesforce/lds-durable-records 1.332.0-dev3 → 1.333.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.
@@ -293,7 +293,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
293
293
  const promises = [
294
294
  hasEntries ? durableStore.setEntries(putEntries, segment) : undefined,
295
295
  ];
296
- if (sqlStore !== undefined && sqlStore.isBatchUpdateSupported()) {
296
+ if (sqlStore !== undefined) {
297
297
  promises.push(hasMetadata && sqlStore !== undefined
298
298
  ? durableStore.setMetadata(putMetadata, segment)
299
299
  : undefined);
@@ -320,9 +320,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
320
320
  ...operation,
321
321
  entries: putEntries,
322
322
  });
323
- if (hasMetadata &&
324
- sqlStore !== undefined &&
325
- sqlStore.isBatchUpdateSupported() === true) {
323
+ if (hasMetadata && sqlStore !== undefined) {
326
324
  operationsWithDenormedRecords.push({
327
325
  ...operation,
328
326
  entries: putMetadata,
@@ -345,9 +343,7 @@ function makeRecordDenormalizingDurableStore(luvio, durableStore, getStoreRecord
345
343
  ...operation,
346
344
  entries: putEntries,
347
345
  });
348
- if (hasMetadata &&
349
- sqlStore !== undefined &&
350
- sqlStore.isBatchUpdateSupported() === true) {
346
+ if (hasMetadata && sqlStore !== undefined) {
351
347
  operationsWithDenormedRecords.push({
352
348
  ...operation,
353
349
  entries: putMetadata,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-durable-records",
3
- "version": "1.332.0-dev3",
3
+ "version": "1.333.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS Record Utilities",
6
6
  "main": "dist/ldsDurableRecords.js",
@@ -25,9 +25,9 @@
25
25
  "dependencies": {
26
26
  "@luvio/engine": "0.156.5",
27
27
  "@luvio/environments": "0.156.5",
28
- "@salesforce/lds-adapters-uiapi": "^1.332.0-dev3"
28
+ "@salesforce/lds-adapters-uiapi": "^1.333.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@salesforce/lds-store-nimbus": "^1.332.0-dev3"
31
+ "@salesforce/lds-store-nimbus": "^1.333.0"
32
32
  }
33
33
  }