@kohost/api-client 3.3.16 → 3.3.18

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.
Files changed (36) hide show
  1. package/dist/cjs/schemas/definitions.json +1 -0
  2. package/dist/esm/Client.js +525 -237
  3. package/dist/esm/Client.js.map +4 -4
  4. package/dist/esm/Models.js +6 -1
  5. package/dist/esm/Models.js.map +2 -2
  6. package/dist/esm/defs.js +525 -237
  7. package/dist/esm/defs.js.map +4 -4
  8. package/dist/esm/utils.js +6 -1
  9. package/dist/esm/utils.js.map +2 -2
  10. package/dist/types/Client/index.d.ts.map +1 -1
  11. package/dist/types/Errors/index.d.ts +12 -12
  12. package/dist/types/Errors/index.d.ts.map +1 -1
  13. package/dist/types/Events/Event.d.ts +10 -9
  14. package/dist/types/Events/Event.d.ts.map +1 -1
  15. package/dist/types/schemas/AlarmSchema.d.ts +1 -0
  16. package/dist/types/schemas/CameraSchema.d.ts +1 -0
  17. package/dist/types/schemas/CategorySchema.d.ts +1 -0
  18. package/dist/types/schemas/CourtesySchema.d.ts +1 -0
  19. package/dist/types/schemas/CredentialSchema.d.ts +1 -0
  20. package/dist/types/schemas/DimmerSchema.d.ts +1 -0
  21. package/dist/types/schemas/GatewaySchema.d.ts +1 -0
  22. package/dist/types/schemas/LockSchema.d.ts +1 -0
  23. package/dist/types/schemas/MediaSourceSchema.d.ts +1 -0
  24. package/dist/types/schemas/MotionSensorSchema.d.ts +1 -0
  25. package/dist/types/schemas/ProductSchema.d.ts +1 -0
  26. package/dist/types/schemas/ReservationSchema.d.ts +1 -0
  27. package/dist/types/schemas/RoomSchema.d.ts +10 -0
  28. package/dist/types/schemas/SpaceSchema.d.ts +1 -0
  29. package/dist/types/schemas/SwitchSchema.d.ts +1 -0
  30. package/dist/types/schemas/SystemUserSchema.d.ts +1 -0
  31. package/dist/types/schemas/ThermostatSchema.d.ts +1 -0
  32. package/dist/types/schemas/UserSchema.d.ts +1 -0
  33. package/dist/types/schemas/WindowCoveringSchema.d.ts +1 -0
  34. package/dist/types/utils/errorFactory.d.ts +1 -1
  35. package/dist/types/utils/errorFactory.d.ts.map +1 -1
  36. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Client/index.js"],"names":[],"mappings":";AAIA;IA6FE;;;;MAMC;IA/FD;;;;;;;;;MASE;IACF;QARwB,cAAc;QACd,UAAU;QACV,GAAG;QACH,OAAO;QACP,MAAM;QACJ,SAAS;QACT,OAAO;OAsDhC;IAvCC;;;;;;;;MAAsB;IACtB,2BAA8B;IAgC9B,WAAiC;IAQnC;;;;;;OAMG;IACH,kCAGC;IAED;;;;;;OAMG;IAEH,mCAGC;;CAuFF"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Client/index.js"],"names":[],"mappings":";AAIA;IA6FE;;;;MAMC;IA/FD;;;;;;;;;MASE;IACF,sBARA;QAAwB,cAAc;QACd,UAAU;QACV,GAAG;QACH,OAAO;QACP,MAAM;QACJ,SAAS;QACT,OAAO;KACjC,EAqDC;IAvCC;;;;;;;;MAAsB;IACtB,2BAA8B;IAgC9B,WAAiC;IAQnC;;;;;;OAMG;IACH,kCAGC;IAED;;;;;;OAMG;IAEH,mCAGC;;CAuFF"}
@@ -1,73 +1,73 @@
1
1
  export let AppError: {
2
2
  new (message: string, options: any): import("./AppError");
3
3
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
4
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
4
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
5
5
  stackTraceLimit: number;
6
6
  };
7
7
  export let AuthenticationError: {
8
8
  new (message?: string, options?: {}): import("./AuthenticationError");
9
9
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
10
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
10
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
11
11
  stackTraceLimit: number;
12
12
  };
13
13
  export let AuthorizationError: {
14
14
  new (message?: string, options?: {}): import("./AuthorizationError");
15
15
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
16
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
16
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
17
17
  stackTraceLimit: number;
18
18
  };
19
19
  export let ConflictError: {
20
20
  new (message?: string, options?: {}): import("./ConflictError");
21
21
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
22
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
22
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
23
23
  stackTraceLimit: number;
24
24
  };
25
25
  export let DeviceCommError: {
26
26
  new (message?: string, options?: {}): import("./DeviceCommError");
27
27
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
28
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
28
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
29
29
  stackTraceLimit: number;
30
30
  };
31
31
  export let LoginError: {
32
32
  new (message?: string, options?: {}): import("./LoginError");
33
33
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
34
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
34
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
35
35
  stackTraceLimit: number;
36
36
  };
37
37
  export let NotFoundError: {
38
38
  new (message?: string, options?: {}): import("./NotFoundError");
39
39
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
40
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
40
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
41
41
  stackTraceLimit: number;
42
42
  };
43
43
  export let RequestError: {
44
44
  new (message?: string, options?: {}): import("./RequestError");
45
45
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
46
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
46
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
47
47
  stackTraceLimit: number;
48
48
  };
49
49
  export let SystemCommError: {
50
50
  new (message?: string, options?: {}): import("./SystemCommError");
51
51
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
52
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
52
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
53
53
  stackTraceLimit: number;
54
54
  };
55
55
  export let TokenExpiredError: {
56
56
  new (message?: string, options?: {}): import("./TokenExpiredError");
57
57
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
58
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
58
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
59
59
  stackTraceLimit: number;
60
60
  };
61
61
  export let UnprocessableRequestError: {
62
62
  new (message?: string, options?: {}): import("./UnprocessableRequestError");
63
63
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
64
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
64
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
65
65
  stackTraceLimit: number;
66
66
  };
67
67
  export let ValidationError: {
68
68
  new (message?: string, options?: {}): import("./ValidationError");
69
69
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
70
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
70
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
71
71
  stackTraceLimit: number;
72
72
  };
73
73
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Errors/index.js"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Errors/index.js"],"names":[],"mappings":";;;mDAgB2wB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ;;;;;;mDAAhB,OAAQ,QAAQ"}
@@ -14,13 +14,14 @@ declare class Event {
14
14
  length: number;
15
15
  toString(): string;
16
16
  toLocaleString(): string;
17
- pop(): any;
17
+ toLocaleString(locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
18
+ pop(): any | undefined;
18
19
  push(...items: any[]): number;
19
20
  concat(...items: ConcatArray<any>[]): any[];
20
21
  concat(...items: any[]): any[];
21
22
  join(separator?: string): string;
22
23
  reverse(): any[];
23
- shift(): any;
24
+ shift(): any | undefined;
24
25
  slice(start?: number, end?: number): any[];
25
26
  sort(compareFn?: (a: any, b: any) => number): any[];
26
27
  splice(start: number, deleteCount?: number): any[];
@@ -33,16 +34,16 @@ declare class Event {
33
34
  some(predicate: (value: any, index: number, array: any[]) => unknown, thisArg?: any): boolean;
34
35
  forEach(callbackfn: (value: any, index: number, array: any[]) => void, thisArg?: any): void;
35
36
  map<U>(callbackfn: (value: any, index: number, array: any[]) => U, thisArg?: any): U[];
36
- filter<S_1 extends any>(predicate: (value: any, index: number, array: any[]) => value is S_1, thisArg?: any): S_1[];
37
+ filter<S extends any>(predicate: (value: any, index: number, array: any[]) => value is S, thisArg?: any): S[];
37
38
  filter(predicate: (value: any, index: number, array: any[]) => unknown, thisArg?: any): any[];
38
39
  reduce(callbackfn: (previousValue: any, currentValue: any, currentIndex: number, array: any[]) => any): any;
39
40
  reduce(callbackfn: (previousValue: any, currentValue: any, currentIndex: number, array: any[]) => any, initialValue: any): any;
40
- reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: any, currentIndex: number, array: any[]) => U_1, initialValue: U_1): U_1;
41
+ reduce<U>(callbackfn: (previousValue: U, currentValue: any, currentIndex: number, array: any[]) => U, initialValue: U): U;
41
42
  reduceRight(callbackfn: (previousValue: any, currentValue: any, currentIndex: number, array: any[]) => any): any;
42
43
  reduceRight(callbackfn: (previousValue: any, currentValue: any, currentIndex: number, array: any[]) => any, initialValue: any): any;
43
- reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: any, currentIndex: number, array: any[]) => U_2, initialValue: U_2): U_2;
44
- find<S_2 extends any>(predicate: (value: any, index: number, obj: any[]) => value is S_2, thisArg?: any): S_2;
45
- find(predicate: (value: any, index: number, obj: any[]) => unknown, thisArg?: any): any;
44
+ reduceRight<U>(callbackfn: (previousValue: U, currentValue: any, currentIndex: number, array: any[]) => U, initialValue: U): U;
45
+ find<S extends any>(predicate: (value: any, index: number, obj: any[]) => value is S, thisArg?: any): S | undefined;
46
+ find(predicate: (value: any, index: number, obj: any[]) => unknown, thisArg?: any): any | undefined;
46
47
  findIndex(predicate: (value: any, index: number, obj: any[]) => unknown, thisArg?: any): number;
47
48
  fill(value: any, start?: number, end?: number): any[];
48
49
  copyWithin(target: number, start: number, end?: number): any[];
@@ -50,7 +51,7 @@ declare class Event {
50
51
  keys(): IterableIterator<number>;
51
52
  values(): IterableIterator<any>;
52
53
  includes(searchElement: any, fromIndex?: number): boolean;
53
- flatMap<U_3, This = undefined>(callback: (this: This, value: any, index: number, array: any[]) => U_3 | readonly U_3[], thisArg?: This): U_3[];
54
+ flatMap<U, This = undefined>(callback: (this: This, value: any, index: number, array: any[]) => U | ReadonlyArray<U>, thisArg?: This): U[];
54
55
  flat<A, D extends number = 1>(this: A, depth?: D): FlatArray<A, D>[];
55
56
  [Symbol.iterator](): IterableIterator<any>;
56
57
  [Symbol.unscopables]: {
@@ -91,7 +92,7 @@ declare class Event {
91
92
  readonly [Symbol.unscopables]?: boolean;
92
93
  at?: boolean;
93
94
  };
94
- at(index: number): any;
95
+ at(index: number): any | undefined;
95
96
  };
96
97
  };
97
98
  get routingKey(): string;
@@ -1 +1 @@
1
- {"version":3,"file":"Event.d.ts","sourceRoot":"","sources":["../../../src/Events/Event.js"],"names":[],"mappings":";AAEA;IAoBE,0BAEC;IAED,8BAEC;IAED,4BAEC;IA7BD,qCASC;IARC,YAAc;IACd,YAAsB;IASxB,0BAEC;IAED,sBAEC;IAcD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEC;IAED,yBAEC;CACF"}
1
+ {"version":3,"file":"Event.d.ts","sourceRoot":"","sources":["../../../src/Events/Event.js"],"names":[],"mappings":";AAEA;IAoBE,0BAEC;IAED,8BAEC;IAED,4BAEC;IA7BD,qCASC;IARC,YAAc;IACd,YAAsB;IASxB,0BAEC;IAED,sBAEC;IAcD;;;;;;iEAUg9E,KAAM,mBAAmB,GAAE,KAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MARrgF;IAED,yBAEC;CACF"}
@@ -166,6 +166,7 @@ export interface Alarm {
166
166
  | "twilio"
167
167
  | "valcom"
168
168
  | "vizio"
169
+ | "wisenet"
169
170
  | "cloudflare-images"
170
171
  | "cloudflare-stream"
171
172
  | "insperia-privacy";
@@ -165,6 +165,7 @@ export interface Camera {
165
165
  | "twilio"
166
166
  | "valcom"
167
167
  | "vizio"
168
+ | "wisenet"
168
169
  | "cloudflare-images"
169
170
  | "cloudflare-stream"
170
171
  | "insperia-privacy";
@@ -50,6 +50,7 @@ export interface Category {
50
50
  | "twilio"
51
51
  | "valcom"
52
52
  | "vizio"
53
+ | "wisenet"
53
54
  | "cloudflare-images"
54
55
  | "cloudflare-stream"
55
56
  | "insperia-privacy";
@@ -164,6 +164,7 @@ export interface Courtesy {
164
164
  | "twilio"
165
165
  | "valcom"
166
166
  | "vizio"
167
+ | "wisenet"
167
168
  | "cloudflare-images"
168
169
  | "cloudflare-stream"
169
170
  | "insperia-privacy";
@@ -43,6 +43,7 @@ export interface Credential {
43
43
  | "twilio"
44
44
  | "valcom"
45
45
  | "vizio"
46
+ | "wisenet"
46
47
  | "cloudflare-images"
47
48
  | "cloudflare-stream"
48
49
  | "insperia-privacy";
@@ -164,6 +164,7 @@ export interface Dimmer {
164
164
  | "twilio"
165
165
  | "valcom"
166
166
  | "vizio"
167
+ | "wisenet"
167
168
  | "cloudflare-images"
168
169
  | "cloudflare-stream"
169
170
  | "insperia-privacy";
@@ -165,6 +165,7 @@ export interface IoTGateway {
165
165
  | "twilio"
166
166
  | "valcom"
167
167
  | "vizio"
168
+ | "wisenet"
168
169
  | "cloudflare-images"
169
170
  | "cloudflare-stream"
170
171
  | "insperia-privacy";
@@ -165,6 +165,7 @@ export interface Lock {
165
165
  | "twilio"
166
166
  | "valcom"
167
167
  | "vizio"
168
+ | "wisenet"
168
169
  | "cloudflare-images"
169
170
  | "cloudflare-stream"
170
171
  | "insperia-privacy";
@@ -152,6 +152,7 @@ export interface MediaSource {
152
152
  | "twilio"
153
153
  | "valcom"
154
154
  | "vizio"
155
+ | "wisenet"
155
156
  | "cloudflare-images"
156
157
  | "cloudflare-stream"
157
158
  | "insperia-privacy";
@@ -161,6 +161,7 @@ export interface MotionSensor {
161
161
  | "twilio"
162
162
  | "valcom"
163
163
  | "vizio"
164
+ | "wisenet"
164
165
  | "cloudflare-images"
165
166
  | "cloudflare-stream"
166
167
  | "insperia-privacy";
@@ -50,6 +50,7 @@ export interface Product {
50
50
  | "twilio"
51
51
  | "valcom"
52
52
  | "vizio"
53
+ | "wisenet"
53
54
  | "cloudflare-images"
54
55
  | "cloudflare-stream"
55
56
  | "insperia-privacy";
@@ -56,6 +56,7 @@ export interface Reservation {
56
56
  | "twilio"
57
57
  | "valcom"
58
58
  | "vizio"
59
+ | "wisenet"
59
60
  | "cloudflare-images"
60
61
  | "cloudflare-stream"
61
62
  | "insperia-privacy";
@@ -196,6 +196,7 @@ export interface Dimmer {
196
196
  | "twilio"
197
197
  | "valcom"
198
198
  | "vizio"
199
+ | "wisenet"
199
200
  | "cloudflare-images"
200
201
  | "cloudflare-stream"
201
202
  | "insperia-privacy";
@@ -300,6 +301,7 @@ export interface Switch {
300
301
  | "twilio"
301
302
  | "valcom"
302
303
  | "vizio"
304
+ | "wisenet"
303
305
  | "cloudflare-images"
304
306
  | "cloudflare-stream"
305
307
  | "insperia-privacy";
@@ -368,6 +370,7 @@ export interface Thermostat {
368
370
  | "twilio"
369
371
  | "valcom"
370
372
  | "vizio"
373
+ | "wisenet"
371
374
  | "cloudflare-images"
372
375
  | "cloudflare-stream"
373
376
  | "insperia-privacy";
@@ -536,6 +539,7 @@ export interface Lock {
536
539
  | "twilio"
537
540
  | "valcom"
538
541
  | "vizio"
542
+ | "wisenet"
539
543
  | "cloudflare-images"
540
544
  | "cloudflare-stream"
541
545
  | "insperia-privacy";
@@ -644,6 +648,7 @@ export interface WindowCovering {
644
648
  | "twilio"
645
649
  | "valcom"
646
650
  | "vizio"
651
+ | "wisenet"
647
652
  | "cloudflare-images"
648
653
  | "cloudflare-stream"
649
654
  | "insperia-privacy";
@@ -747,6 +752,7 @@ export interface Courtesy {
747
752
  | "twilio"
748
753
  | "valcom"
749
754
  | "vizio"
755
+ | "wisenet"
750
756
  | "cloudflare-images"
751
757
  | "cloudflare-stream"
752
758
  | "insperia-privacy";
@@ -852,6 +858,7 @@ export interface Camera {
852
858
  | "twilio"
853
859
  | "valcom"
854
860
  | "vizio"
861
+ | "wisenet"
855
862
  | "cloudflare-images"
856
863
  | "cloudflare-stream"
857
864
  | "insperia-privacy";
@@ -926,6 +933,7 @@ export interface MediaSource {
926
933
  | "twilio"
927
934
  | "valcom"
928
935
  | "vizio"
936
+ | "wisenet"
929
937
  | "cloudflare-images"
930
938
  | "cloudflare-stream"
931
939
  | "insperia-privacy";
@@ -1155,6 +1163,7 @@ export interface MotionSensor {
1155
1163
  | "twilio"
1156
1164
  | "valcom"
1157
1165
  | "vizio"
1166
+ | "wisenet"
1158
1167
  | "cloudflare-images"
1159
1168
  | "cloudflare-stream"
1160
1169
  | "insperia-privacy";
@@ -1292,6 +1301,7 @@ export interface Alarm {
1292
1301
  | "twilio"
1293
1302
  | "valcom"
1294
1303
  | "vizio"
1304
+ | "wisenet"
1295
1305
  | "cloudflare-images"
1296
1306
  | "cloudflare-stream"
1297
1307
  | "insperia-privacy";
@@ -56,6 +56,7 @@ export interface Space {
56
56
  | "twilio"
57
57
  | "valcom"
58
58
  | "vizio"
59
+ | "wisenet"
59
60
  | "cloudflare-images"
60
61
  | "cloudflare-stream"
61
62
  | "insperia-privacy";
@@ -165,6 +165,7 @@ export interface Switch {
165
165
  | "twilio"
166
166
  | "valcom"
167
167
  | "vizio"
168
+ | "wisenet"
168
169
  | "cloudflare-images"
169
170
  | "cloudflare-stream"
170
171
  | "insperia-privacy";
@@ -74,6 +74,7 @@ export interface SystemUser {
74
74
  | "twilio"
75
75
  | "valcom"
76
76
  | "vizio"
77
+ | "wisenet"
77
78
  | "cloudflare-images"
78
79
  | "cloudflare-stream"
79
80
  | "insperia-privacy";
@@ -164,6 +164,7 @@ export interface Thermostat {
164
164
  | "twilio"
165
165
  | "valcom"
166
166
  | "vizio"
167
+ | "wisenet"
167
168
  | "cloudflare-images"
168
169
  | "cloudflare-stream"
169
170
  | "insperia-privacy";
@@ -247,6 +247,7 @@ export interface Reservation {
247
247
  | "twilio"
248
248
  | "valcom"
249
249
  | "vizio"
250
+ | "wisenet"
250
251
  | "cloudflare-images"
251
252
  | "cloudflare-stream"
252
253
  | "insperia-privacy";
@@ -165,6 +165,7 @@ export interface WindowCovering {
165
165
  | "twilio"
166
166
  | "valcom"
167
167
  | "vizio"
168
+ | "wisenet"
168
169
  | "cloudflare-images"
169
170
  | "cloudflare-stream"
170
171
  | "insperia-privacy";
@@ -1,7 +1,7 @@
1
1
  declare function _exports(errName: any): Error | {
2
2
  new (message: string, options: any): import("../Errors/AppError");
3
3
  captureStackTrace(targetObject: object, constructorOpt?: Function): void;
4
- prepareStackTrace?: (err: Error, stackTraces: NodeJS.CallSite[]) => any;
4
+ prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
5
5
  stackTraceLimit: number;
6
6
  };
7
7
  export = _exports;
@@ -1 +1 @@
1
- {"version":3,"file":"errorFactory.d.ts","sourceRoot":"","sources":["../../../src/utils/errorFactory.js"],"names":[],"mappings":"AAEiB;;;;;EAKhB"}
1
+ {"version":3,"file":"errorFactory.d.ts","sourceRoot":"","sources":["../../../src/utils/errorFactory.js"],"names":[],"mappings":"AAEiB;;;mDAM8kC,OAAQ,QAAQ;;EAD9mC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kohost/api-client",
3
- "version": "3.3.16",
3
+ "version": "3.3.18",
4
4
  "description": "API client, models, schemas, commands, and events for Kohost applications",
5
5
  "author": "Ian Rogers",
6
6
  "readme": "README.md",