webitel-sdk 0.1.103 → 0.1.104
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 +4 -0
- 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 +8 -0
- 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 +4 -0
- package/esm2015/socket/errors.js.map +1 -1
- package/esm5/socket/errors.js +8 -0
- package/esm5/socket/errors.js.map +1 -1
- package/package.json +1 -1
- package/types/socket/errors.d.ts +2 -0
- package/types/socket/errors.d.ts.map +1 -1
package/bundles/index.umd.js
CHANGED
|
@@ -27490,6 +27490,14 @@
|
|
|
27490
27490
|
function DeviceNotFoundError(msg) {
|
|
27491
27491
|
return _super.call(this, msg) || this;
|
|
27492
27492
|
}
|
|
27493
|
+
Object.defineProperty(DeviceNotFoundError.prototype, "id", {
|
|
27494
|
+
get: function () {
|
|
27495
|
+
return DeviceNotFoundError.id;
|
|
27496
|
+
},
|
|
27497
|
+
enumerable: true,
|
|
27498
|
+
configurable: true
|
|
27499
|
+
});
|
|
27500
|
+
DeviceNotFoundError.id = "device_not_found";
|
|
27493
27501
|
return DeviceNotFoundError;
|
|
27494
27502
|
}(Error));
|
|
27495
27503
|
|