webitel-sdk 0.1.104 → 0.1.105
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/bundles/index.esm.js +1 -3
- package/bundles/index.esm.js.map +1 -1
- package/bundles/index.esm.min.js +1 -1
- package/bundles/index.esm.min.js.map +1 -1
- package/bundles/index.umd.js +3 -8
- package/bundles/index.umd.js.map +1 -1
- package/bundles/index.umd.min.js +1 -1
- package/bundles/index.umd.min.js.map +1 -1
- package/esm2015/socket/errors.js +1 -3
- package/esm2015/socket/errors.js.map +1 -1
- package/esm5/socket/errors.js +3 -8
- package/esm5/socket/errors.js.map +1 -1
- package/package.json +1 -1
- package/types/socket/errors.d.ts +1 -1
- package/types/socket/errors.d.ts.map +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -24237,9 +24237,7 @@ function wrapChannelMember(m) {
|
|
|
24237
24237
|
class DeviceNotFoundError extends Error {
|
|
24238
24238
|
constructor(msg) {
|
|
24239
24239
|
super(msg);
|
|
24240
|
-
|
|
24241
|
-
get id() {
|
|
24242
|
-
return DeviceNotFoundError.id;
|
|
24240
|
+
this.id = DeviceNotFoundError.id;
|
|
24243
24241
|
}
|
|
24244
24242
|
}
|
|
24245
24243
|
DeviceNotFoundError.id = `device_not_found`;
|