@capturebridge/sdk 0.29.1 → 0.30.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.
package/Common.js CHANGED
@@ -273,7 +273,7 @@ export const checkResponse = async (response) => {
273
273
  const msg = error.message || error.summary || error.code || 'Unexpected error'
274
274
  const ex = new Error(msg)
275
275
  ex.code = error.code || 500
276
- ex.summary = error.summary || 'Unexpected error'
276
+ ex.summary = error.summary || error.error || 'Unexpected error'
277
277
  throw ex
278
278
  }
279
279
  }
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
1
  # Capture Bridge JavaScript Client SDK
2
2
 
3
- - [SDK Documentation for v0.29.1](https://docs.capturebridge.net/client/sdk/javascript/0.29.1/index.html)
4
- - [SDK CHANGELOG](https://docs.capturebridge.net/client/sdk/javascript/0.29.1/CHANGELOG.html)
3
+ - [SDK Documentation for v0.30.0](https://docs.capturebridge.net/client/sdk/javascript/0.30.0/index.html)
4
+ - [SDK CHANGELOG](https://docs.capturebridge.net/client/sdk/javascript/0.30.0/CHANGELOG.html)
package/Version.js CHANGED
@@ -4,5 +4,5 @@
4
4
  * @constant
5
5
  * @type {string}
6
6
  */
7
- const VERSION = '0.29.1'
7
+ const VERSION = '0.30.0'
8
8
  export default VERSION
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capturebridge/sdk",
3
- "version": "0.29.1",
3
+ "version": "0.30.0",
4
4
  "description": "Capture Bridge JavaScript client SDK",
5
5
  "type": "module",
6
6
  "types": "types.d.ts",