@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 +1 -1
- package/README.md +2 -2
- package/Version.js +1 -1
- package/package.json +1 -1
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.
|
|
4
|
-
- [SDK CHANGELOG](https://docs.capturebridge.net/client/sdk/javascript/0.
|
|
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