@salesforce/lds-ads-bridge 1.281.0 → 1.283.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.
@@ -21,7 +21,9 @@ const WeakSetCtor = WeakSet;
21
21
  const deeplyFrozen = new WeakSetCtor();
22
22
  function deepFreeze(value) {
23
23
  // No need to freeze primitives or already frozen stuff
24
- if (typeof value !== 'object' || value === null || deeplyFrozen.has(value)) {
24
+ if (typeof value !== 'object' ||
25
+ value === null ||
26
+ deeplyFrozen.has(value)) {
25
27
  return;
26
28
  }
27
29
  deeplyFrozen.add(value);
@@ -431,7 +433,7 @@ function createResourceParamsImpl(config, configMetadata) {
431
433
  }
432
434
  return resourceParams;
433
435
  }
434
- // engine version: 0.154.14-2fbbff64
436
+ // engine version: 0.154.15-db466bed
435
437
 
436
438
  /**
437
439
  * Copyright (c) 2022, Salesforce, Inc.,
@@ -479,7 +481,7 @@ const callbacks$1 = [];
479
481
  function register(r) {
480
482
  callbacks$1.forEach((callback) => callback(r));
481
483
  }
482
- // version: 1.281.0-9a56a08f0
484
+ // version: 1.283.0-a330da944
483
485
 
484
486
  /**
485
487
  * Returns true if the value acts like a Promise, i.e. has a "then" function,
package/dist/adsBridge.js CHANGED
@@ -371,4 +371,4 @@ function withAdsBridge(callback) {
371
371
  }
372
372
 
373
373
  export { instrument, withAdsBridge };
374
- // version: 1.281.0-9a56a08f0
374
+ // version: 1.283.0-a330da944
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-ads-bridge",
3
- "version": "1.281.0",
3
+ "version": "1.283.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "Bridge to sync data between LDS and ADS",
6
6
  "main": "dist/adsBridge.js",
@@ -29,7 +29,7 @@
29
29
  "release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-ads-bridge"
30
30
  },
31
31
  "devDependencies": {
32
- "@salesforce/lds-adapters-uiapi": "^1.281.0",
33
- "@salesforce/lds-uiapi-record-utils": "^1.281.0"
32
+ "@salesforce/lds-adapters-uiapi": "^1.283.0",
33
+ "@salesforce/lds-uiapi-record-utils": "^1.283.0"
34
34
  }
35
35
  }