eufy-security-client 2.4.2 → 2.4.3
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/README.md +6 -0
- package/build/error.d.ts +57 -57
- package/build/error.js +155 -155
- package/build/eufysecurity.d.ts +161 -161
- package/build/eufysecurity.js +2091 -2091
- package/build/http/api.d.ts +90 -90
- package/build/http/api.js +1407 -1407
- package/build/http/api.js.map +1 -1
- package/build/http/cache.d.ts +8 -8
- package/build/http/cache.js +33 -33
- package/build/http/const.d.ts +3 -3
- package/build/http/const.js +8545 -8545
- package/build/http/device.d.ts +360 -360
- package/build/http/device.js +2793 -2793
- package/build/http/device.js.map +1 -1
- package/build/http/error.d.ts +28 -28
- package/build/http/error.js +76 -76
- package/build/http/index.d.ts +10 -10
- package/build/http/index.js +29 -29
- package/build/http/interfaces.d.ts +202 -202
- package/build/http/interfaces.js +2 -2
- package/build/http/models.d.ts +561 -561
- package/build/http/models.js +2 -2
- package/build/http/parameter.d.ts +5 -5
- package/build/http/parameter.js +75 -75
- package/build/http/station.d.ts +292 -292
- package/build/http/station.js +6780 -6780
- package/build/http/station.js.map +1 -1
- package/build/http/types.d.ts +945 -945
- package/build/http/types.js +6070 -6070
- package/build/http/utils.d.ts +37 -37
- package/build/http/utils.js +370 -370
- package/build/index.d.ts +7 -7
- package/build/index.js +25 -25
- package/build/interfaces.d.ts +113 -113
- package/build/interfaces.js +2 -2
- package/build/mqtt/interface.d.ts +6 -6
- package/build/mqtt/interface.js +2 -2
- package/build/mqtt/model.d.ts +24 -24
- package/build/mqtt/model.js +2 -2
- package/build/mqtt/service.d.ts +30 -30
- package/build/mqtt/service.js +168 -168
- package/build/mqtt/service.js.map +1 -1
- package/build/p2p/ble.d.ts +47 -47
- package/build/p2p/ble.js +188 -188
- package/build/p2p/ble.js.map +1 -1
- package/build/p2p/error.d.ts +24 -24
- package/build/p2p/error.js +67 -67
- package/build/p2p/index.d.ts +8 -8
- package/build/p2p/index.js +27 -27
- package/build/p2p/interfaces.d.ts +162 -162
- package/build/p2p/interfaces.js +2 -2
- package/build/p2p/models.d.ts +146 -146
- package/build/p2p/models.js +2 -2
- package/build/p2p/session.d.ts +168 -168
- package/build/p2p/session.js +2087 -2087
- package/build/p2p/session.js.map +1 -1
- package/build/p2p/talkback.d.ts +10 -10
- package/build/p2p/talkback.js +22 -22
- package/build/p2p/types.d.ts +923 -923
- package/build/p2p/types.js +957 -957
- package/build/p2p/utils.d.ts +56 -56
- package/build/p2p/utils.js +653 -653
- package/build/push/client.d.ts +51 -51
- package/build/push/client.js +311 -311
- package/build/push/client.js.map +1 -1
- package/build/push/index.d.ts +5 -5
- package/build/push/index.js +24 -24
- package/build/push/interfaces.d.ts +19 -19
- package/build/push/interfaces.js +2 -2
- package/build/push/models.d.ts +292 -292
- package/build/push/models.js +30 -30
- package/build/push/parser.d.ts +28 -28
- package/build/push/parser.js +215 -215
- package/build/push/parser.js.map +1 -1
- package/build/push/service.d.ts +45 -45
- package/build/push/service.js +643 -643
- package/build/push/service.js.map +1 -1
- package/build/push/types.d.ts +176 -176
- package/build/push/types.js +192 -192
- package/build/push/utils.d.ts +7 -7
- package/build/push/utils.js +102 -102
- package/build/utils.d.ts +13 -13
- package/build/utils.js +191 -191
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -80,6 +80,12 @@ Please use GitHub issues for this.
|
|
|
80
80
|
|
|
81
81
|
## Changelog
|
|
82
82
|
|
|
83
|
+
### 2.4.3 (2023-04-11)
|
|
84
|
+
|
|
85
|
+
* (martijnpoppen) FIX: HB3 connected sensors not reporting (#314)
|
|
86
|
+
* (PhilippEngler) Fix problem when the P2PDID number is starting with zeros
|
|
87
|
+
* (bropat) Updated versions of the package dependencies
|
|
88
|
+
|
|
83
89
|
### 2.4.2 (2023-02-23)
|
|
84
90
|
|
|
85
91
|
* (bropat) Improved local discovery of stations over p2p
|
package/build/error.d.ts
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
export declare class InvalidCountryCodeError extends Error {
|
|
2
|
-
constructor(message?: string);
|
|
3
|
-
}
|
|
4
|
-
export declare class InvalidLanguageCodeError extends Error {
|
|
5
|
-
constructor(message?: string);
|
|
6
|
-
}
|
|
7
|
-
export declare class StationNotFoundError extends Error {
|
|
8
|
-
constructor(message?: string);
|
|
9
|
-
}
|
|
10
|
-
export declare class DeviceNotFoundError extends Error {
|
|
11
|
-
constructor(message?: string);
|
|
12
|
-
}
|
|
13
|
-
export declare class NotSupportedError extends Error {
|
|
14
|
-
constructor(message?: string);
|
|
15
|
-
}
|
|
16
|
-
export declare class WrongStationError extends Error {
|
|
17
|
-
constructor(message?: string);
|
|
18
|
-
}
|
|
19
|
-
export declare class RTSPPropertyNotEnabledError extends Error {
|
|
20
|
-
constructor(message?: string);
|
|
21
|
-
}
|
|
22
|
-
export declare class InvalidPropertyValueError extends Error {
|
|
23
|
-
constructor(message?: string);
|
|
24
|
-
}
|
|
25
|
-
export declare class InvalidCommandValueError extends Error {
|
|
26
|
-
constructor(message?: string);
|
|
27
|
-
}
|
|
28
|
-
export declare class ReadOnlyPropertyError extends Error {
|
|
29
|
-
constructor(message?: string);
|
|
30
|
-
}
|
|
31
|
-
export declare class LivestreamError extends Error {
|
|
32
|
-
constructor(message?: string);
|
|
33
|
-
}
|
|
34
|
-
export declare class TalkbackError extends Error {
|
|
35
|
-
constructor(message?: string);
|
|
36
|
-
}
|
|
37
|
-
export declare class StationConnectTimeoutError extends Error {
|
|
38
|
-
constructor(message?: string);
|
|
39
|
-
}
|
|
40
|
-
export declare class AddUserError extends Error {
|
|
41
|
-
constructor(message?: string);
|
|
42
|
-
}
|
|
43
|
-
export declare class DeleteUserError extends Error {
|
|
44
|
-
constructor(message?: string);
|
|
45
|
-
}
|
|
46
|
-
export declare class UpdateUserUsernameError extends Error {
|
|
47
|
-
constructor(message?: string);
|
|
48
|
-
}
|
|
49
|
-
export declare class UpdateUserScheduleError extends Error {
|
|
50
|
-
constructor(message?: string);
|
|
51
|
-
}
|
|
52
|
-
export declare class UpdateUserPasscodeError extends Error {
|
|
53
|
-
constructor(message?: string);
|
|
54
|
-
}
|
|
55
|
-
export declare class PinNotVerifiedError extends Error {
|
|
56
|
-
constructor(message?: string);
|
|
57
|
-
}
|
|
1
|
+
export declare class InvalidCountryCodeError extends Error {
|
|
2
|
+
constructor(message?: string);
|
|
3
|
+
}
|
|
4
|
+
export declare class InvalidLanguageCodeError extends Error {
|
|
5
|
+
constructor(message?: string);
|
|
6
|
+
}
|
|
7
|
+
export declare class StationNotFoundError extends Error {
|
|
8
|
+
constructor(message?: string);
|
|
9
|
+
}
|
|
10
|
+
export declare class DeviceNotFoundError extends Error {
|
|
11
|
+
constructor(message?: string);
|
|
12
|
+
}
|
|
13
|
+
export declare class NotSupportedError extends Error {
|
|
14
|
+
constructor(message?: string);
|
|
15
|
+
}
|
|
16
|
+
export declare class WrongStationError extends Error {
|
|
17
|
+
constructor(message?: string);
|
|
18
|
+
}
|
|
19
|
+
export declare class RTSPPropertyNotEnabledError extends Error {
|
|
20
|
+
constructor(message?: string);
|
|
21
|
+
}
|
|
22
|
+
export declare class InvalidPropertyValueError extends Error {
|
|
23
|
+
constructor(message?: string);
|
|
24
|
+
}
|
|
25
|
+
export declare class InvalidCommandValueError extends Error {
|
|
26
|
+
constructor(message?: string);
|
|
27
|
+
}
|
|
28
|
+
export declare class ReadOnlyPropertyError extends Error {
|
|
29
|
+
constructor(message?: string);
|
|
30
|
+
}
|
|
31
|
+
export declare class LivestreamError extends Error {
|
|
32
|
+
constructor(message?: string);
|
|
33
|
+
}
|
|
34
|
+
export declare class TalkbackError extends Error {
|
|
35
|
+
constructor(message?: string);
|
|
36
|
+
}
|
|
37
|
+
export declare class StationConnectTimeoutError extends Error {
|
|
38
|
+
constructor(message?: string);
|
|
39
|
+
}
|
|
40
|
+
export declare class AddUserError extends Error {
|
|
41
|
+
constructor(message?: string);
|
|
42
|
+
}
|
|
43
|
+
export declare class DeleteUserError extends Error {
|
|
44
|
+
constructor(message?: string);
|
|
45
|
+
}
|
|
46
|
+
export declare class UpdateUserUsernameError extends Error {
|
|
47
|
+
constructor(message?: string);
|
|
48
|
+
}
|
|
49
|
+
export declare class UpdateUserScheduleError extends Error {
|
|
50
|
+
constructor(message?: string);
|
|
51
|
+
}
|
|
52
|
+
export declare class UpdateUserPasscodeError extends Error {
|
|
53
|
+
constructor(message?: string);
|
|
54
|
+
}
|
|
55
|
+
export declare class PinNotVerifiedError extends Error {
|
|
56
|
+
constructor(message?: string);
|
|
57
|
+
}
|
package/build/error.js
CHANGED
|
@@ -1,156 +1,156 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PinNotVerifiedError = exports.UpdateUserPasscodeError = exports.UpdateUserScheduleError = exports.UpdateUserUsernameError = exports.DeleteUserError = exports.AddUserError = exports.StationConnectTimeoutError = exports.TalkbackError = exports.LivestreamError = exports.ReadOnlyPropertyError = exports.InvalidCommandValueError = exports.InvalidPropertyValueError = exports.RTSPPropertyNotEnabledError = exports.WrongStationError = exports.NotSupportedError = exports.DeviceNotFoundError = exports.StationNotFoundError = exports.InvalidLanguageCodeError = exports.InvalidCountryCodeError = void 0;
|
|
4
|
-
class InvalidCountryCodeError extends Error {
|
|
5
|
-
constructor(message) {
|
|
6
|
-
super(message);
|
|
7
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
8
|
-
this.name = InvalidCountryCodeError.name;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
exports.InvalidCountryCodeError = InvalidCountryCodeError;
|
|
12
|
-
class InvalidLanguageCodeError extends Error {
|
|
13
|
-
constructor(message) {
|
|
14
|
-
super(message);
|
|
15
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
16
|
-
this.name = InvalidLanguageCodeError.name;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
exports.InvalidLanguageCodeError = InvalidLanguageCodeError;
|
|
20
|
-
class StationNotFoundError extends Error {
|
|
21
|
-
constructor(message) {
|
|
22
|
-
super(message);
|
|
23
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
24
|
-
this.name = StationNotFoundError.name;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
exports.StationNotFoundError = StationNotFoundError;
|
|
28
|
-
class DeviceNotFoundError extends Error {
|
|
29
|
-
constructor(message) {
|
|
30
|
-
super(message);
|
|
31
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
32
|
-
this.name = DeviceNotFoundError.name;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
exports.DeviceNotFoundError = DeviceNotFoundError;
|
|
36
|
-
class NotSupportedError extends Error {
|
|
37
|
-
constructor(message) {
|
|
38
|
-
super(message);
|
|
39
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
40
|
-
this.name = NotSupportedError.name;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.NotSupportedError = NotSupportedError;
|
|
44
|
-
class WrongStationError extends Error {
|
|
45
|
-
constructor(message) {
|
|
46
|
-
super(message);
|
|
47
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
48
|
-
this.name = WrongStationError.name;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
exports.WrongStationError = WrongStationError;
|
|
52
|
-
class RTSPPropertyNotEnabledError extends Error {
|
|
53
|
-
constructor(message) {
|
|
54
|
-
super(message);
|
|
55
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
56
|
-
this.name = RTSPPropertyNotEnabledError.name;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
exports.RTSPPropertyNotEnabledError = RTSPPropertyNotEnabledError;
|
|
60
|
-
class InvalidPropertyValueError extends Error {
|
|
61
|
-
constructor(message) {
|
|
62
|
-
super(message);
|
|
63
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
64
|
-
this.name = InvalidPropertyValueError.name;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
exports.InvalidPropertyValueError = InvalidPropertyValueError;
|
|
68
|
-
class InvalidCommandValueError extends Error {
|
|
69
|
-
constructor(message) {
|
|
70
|
-
super(message);
|
|
71
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
72
|
-
this.name = InvalidCommandValueError.name;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
exports.InvalidCommandValueError = InvalidCommandValueError;
|
|
76
|
-
class ReadOnlyPropertyError extends Error {
|
|
77
|
-
constructor(message) {
|
|
78
|
-
super(message);
|
|
79
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
80
|
-
this.name = ReadOnlyPropertyError.name;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
exports.ReadOnlyPropertyError = ReadOnlyPropertyError;
|
|
84
|
-
class LivestreamError extends Error {
|
|
85
|
-
constructor(message) {
|
|
86
|
-
super(message);
|
|
87
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
88
|
-
this.name = LivestreamError.name;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
exports.LivestreamError = LivestreamError;
|
|
92
|
-
class TalkbackError extends Error {
|
|
93
|
-
constructor(message) {
|
|
94
|
-
super(message);
|
|
95
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
96
|
-
this.name = TalkbackError.name;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
exports.TalkbackError = TalkbackError;
|
|
100
|
-
class StationConnectTimeoutError extends Error {
|
|
101
|
-
constructor(message) {
|
|
102
|
-
super(message);
|
|
103
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
104
|
-
this.name = StationConnectTimeoutError.name;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
exports.StationConnectTimeoutError = StationConnectTimeoutError;
|
|
108
|
-
class AddUserError extends Error {
|
|
109
|
-
constructor(message) {
|
|
110
|
-
super(message);
|
|
111
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
112
|
-
this.name = AddUserError.name;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
exports.AddUserError = AddUserError;
|
|
116
|
-
class DeleteUserError extends Error {
|
|
117
|
-
constructor(message) {
|
|
118
|
-
super(message);
|
|
119
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
120
|
-
this.name = DeleteUserError.name;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
exports.DeleteUserError = DeleteUserError;
|
|
124
|
-
class UpdateUserUsernameError extends Error {
|
|
125
|
-
constructor(message) {
|
|
126
|
-
super(message);
|
|
127
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
128
|
-
this.name = UpdateUserUsernameError.name;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
exports.UpdateUserUsernameError = UpdateUserUsernameError;
|
|
132
|
-
class UpdateUserScheduleError extends Error {
|
|
133
|
-
constructor(message) {
|
|
134
|
-
super(message);
|
|
135
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
136
|
-
this.name = UpdateUserScheduleError.name;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
exports.UpdateUserScheduleError = UpdateUserScheduleError;
|
|
140
|
-
class UpdateUserPasscodeError extends Error {
|
|
141
|
-
constructor(message) {
|
|
142
|
-
super(message);
|
|
143
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
144
|
-
this.name = UpdateUserPasscodeError.name;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
exports.UpdateUserPasscodeError = UpdateUserPasscodeError;
|
|
148
|
-
class PinNotVerifiedError extends Error {
|
|
149
|
-
constructor(message) {
|
|
150
|
-
super(message);
|
|
151
|
-
Object.setPrototypeOf(this, new.target.prototype);
|
|
152
|
-
this.name = PinNotVerifiedError.name;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
exports.PinNotVerifiedError = PinNotVerifiedError;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PinNotVerifiedError = exports.UpdateUserPasscodeError = exports.UpdateUserScheduleError = exports.UpdateUserUsernameError = exports.DeleteUserError = exports.AddUserError = exports.StationConnectTimeoutError = exports.TalkbackError = exports.LivestreamError = exports.ReadOnlyPropertyError = exports.InvalidCommandValueError = exports.InvalidPropertyValueError = exports.RTSPPropertyNotEnabledError = exports.WrongStationError = exports.NotSupportedError = exports.DeviceNotFoundError = exports.StationNotFoundError = exports.InvalidLanguageCodeError = exports.InvalidCountryCodeError = void 0;
|
|
4
|
+
class InvalidCountryCodeError extends Error {
|
|
5
|
+
constructor(message) {
|
|
6
|
+
super(message);
|
|
7
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
8
|
+
this.name = InvalidCountryCodeError.name;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.InvalidCountryCodeError = InvalidCountryCodeError;
|
|
12
|
+
class InvalidLanguageCodeError extends Error {
|
|
13
|
+
constructor(message) {
|
|
14
|
+
super(message);
|
|
15
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
16
|
+
this.name = InvalidLanguageCodeError.name;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.InvalidLanguageCodeError = InvalidLanguageCodeError;
|
|
20
|
+
class StationNotFoundError extends Error {
|
|
21
|
+
constructor(message) {
|
|
22
|
+
super(message);
|
|
23
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
24
|
+
this.name = StationNotFoundError.name;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
exports.StationNotFoundError = StationNotFoundError;
|
|
28
|
+
class DeviceNotFoundError extends Error {
|
|
29
|
+
constructor(message) {
|
|
30
|
+
super(message);
|
|
31
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
32
|
+
this.name = DeviceNotFoundError.name;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
exports.DeviceNotFoundError = DeviceNotFoundError;
|
|
36
|
+
class NotSupportedError extends Error {
|
|
37
|
+
constructor(message) {
|
|
38
|
+
super(message);
|
|
39
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
40
|
+
this.name = NotSupportedError.name;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
exports.NotSupportedError = NotSupportedError;
|
|
44
|
+
class WrongStationError extends Error {
|
|
45
|
+
constructor(message) {
|
|
46
|
+
super(message);
|
|
47
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
48
|
+
this.name = WrongStationError.name;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.WrongStationError = WrongStationError;
|
|
52
|
+
class RTSPPropertyNotEnabledError extends Error {
|
|
53
|
+
constructor(message) {
|
|
54
|
+
super(message);
|
|
55
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
56
|
+
this.name = RTSPPropertyNotEnabledError.name;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.RTSPPropertyNotEnabledError = RTSPPropertyNotEnabledError;
|
|
60
|
+
class InvalidPropertyValueError extends Error {
|
|
61
|
+
constructor(message) {
|
|
62
|
+
super(message);
|
|
63
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
64
|
+
this.name = InvalidPropertyValueError.name;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
exports.InvalidPropertyValueError = InvalidPropertyValueError;
|
|
68
|
+
class InvalidCommandValueError extends Error {
|
|
69
|
+
constructor(message) {
|
|
70
|
+
super(message);
|
|
71
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
72
|
+
this.name = InvalidCommandValueError.name;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
exports.InvalidCommandValueError = InvalidCommandValueError;
|
|
76
|
+
class ReadOnlyPropertyError extends Error {
|
|
77
|
+
constructor(message) {
|
|
78
|
+
super(message);
|
|
79
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
80
|
+
this.name = ReadOnlyPropertyError.name;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
exports.ReadOnlyPropertyError = ReadOnlyPropertyError;
|
|
84
|
+
class LivestreamError extends Error {
|
|
85
|
+
constructor(message) {
|
|
86
|
+
super(message);
|
|
87
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
88
|
+
this.name = LivestreamError.name;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.LivestreamError = LivestreamError;
|
|
92
|
+
class TalkbackError extends Error {
|
|
93
|
+
constructor(message) {
|
|
94
|
+
super(message);
|
|
95
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
96
|
+
this.name = TalkbackError.name;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.TalkbackError = TalkbackError;
|
|
100
|
+
class StationConnectTimeoutError extends Error {
|
|
101
|
+
constructor(message) {
|
|
102
|
+
super(message);
|
|
103
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
104
|
+
this.name = StationConnectTimeoutError.name;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
exports.StationConnectTimeoutError = StationConnectTimeoutError;
|
|
108
|
+
class AddUserError extends Error {
|
|
109
|
+
constructor(message) {
|
|
110
|
+
super(message);
|
|
111
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
112
|
+
this.name = AddUserError.name;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
exports.AddUserError = AddUserError;
|
|
116
|
+
class DeleteUserError extends Error {
|
|
117
|
+
constructor(message) {
|
|
118
|
+
super(message);
|
|
119
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
120
|
+
this.name = DeleteUserError.name;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
exports.DeleteUserError = DeleteUserError;
|
|
124
|
+
class UpdateUserUsernameError extends Error {
|
|
125
|
+
constructor(message) {
|
|
126
|
+
super(message);
|
|
127
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
128
|
+
this.name = UpdateUserUsernameError.name;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
exports.UpdateUserUsernameError = UpdateUserUsernameError;
|
|
132
|
+
class UpdateUserScheduleError extends Error {
|
|
133
|
+
constructor(message) {
|
|
134
|
+
super(message);
|
|
135
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
136
|
+
this.name = UpdateUserScheduleError.name;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
exports.UpdateUserScheduleError = UpdateUserScheduleError;
|
|
140
|
+
class UpdateUserPasscodeError extends Error {
|
|
141
|
+
constructor(message) {
|
|
142
|
+
super(message);
|
|
143
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
144
|
+
this.name = UpdateUserPasscodeError.name;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
exports.UpdateUserPasscodeError = UpdateUserPasscodeError;
|
|
148
|
+
class PinNotVerifiedError extends Error {
|
|
149
|
+
constructor(message) {
|
|
150
|
+
super(message);
|
|
151
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
|
152
|
+
this.name = PinNotVerifiedError.name;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
exports.PinNotVerifiedError = PinNotVerifiedError;
|
|
156
156
|
//# sourceMappingURL=error.js.map
|