@kohost/api-client 4.0.4 → 4.0.5
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/dist/{chunk-EBJTC6MA.js → chunk-5I2BBUZP.js} +11 -1
- package/dist/{chunk-EBJTC6MA.js.map → chunk-5I2BBUZP.js.map} +1 -1
- package/dist/{chunk-HKJ2B2AA.js → chunk-FU4IK6I4.js} +3 -1
- package/dist/{chunk-MYWOGDCQ.js → chunk-SHLRCTB4.js} +7 -3
- package/dist/{chunk-MYWOGDCQ.js.map → chunk-SHLRCTB4.js.map} +1 -1
- package/dist/{chunk-KBBL6OJS.js → chunk-SLDNFNED.js} +290 -90
- package/dist/{chunk-KBBL6OJS.js.map → chunk-SLDNFNED.js.map} +1 -1
- package/dist/{chunk-36WNTEIW.js → chunk-SORMAXAX.js} +35 -2
- package/dist/{chunk-36WNTEIW.js.map → chunk-SORMAXAX.js.map} +1 -1
- package/dist/{chunk-W2G36LNI.js → chunk-UZQ2AWUY.js} +8 -1
- package/dist/{chunk-W2G36LNI.js.map → chunk-UZQ2AWUY.js.map} +1 -1
- package/dist/client.cjs +39 -7
- package/dist/client.cjs.map +1 -1
- package/dist/client.js +39 -9
- package/dist/client.js.map +1 -1
- package/dist/commands.cjs +85 -0
- package/dist/commands.cjs.map +1 -1
- package/dist/commands.js +87 -1
- package/dist/commands.js.map +1 -1
- package/dist/defs.js +1 -1
- package/dist/errors.cjs +37 -0
- package/dist/errors.cjs.map +1 -1
- package/dist/errors.js +3 -3
- package/dist/events.cjs +4 -0
- package/dist/events.cjs.map +1 -1
- package/dist/events.js +2 -2
- package/dist/index.cjs +1098 -96
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1098 -96
- package/dist/index.js.map +1 -1
- package/dist/models.cjs +292 -86
- package/dist/models.cjs.map +1 -1
- package/dist/models.js +3 -3
- package/dist/socketIoClient.cjs +7 -3
- package/dist/socketIoClient.cjs.map +1 -1
- package/dist/socketIoClient.d.cts +1 -1
- package/dist/socketIoClient.d.ts +1 -1
- package/dist/socketIoClient.js +9 -4
- package/dist/socketIoClient.js.map +1 -1
- package/dist/useCases.cjs +640 -0
- package/dist/useCases.cjs.map +1 -1
- package/dist/useCases.js +640 -2
- package/dist/useCases.js.map +1 -1
- package/dist/utils.cjs +328 -86
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.js +10 -5
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
- /package/dist/{chunk-HKJ2B2AA.js.map → chunk-FU4IK6I4.js.map} +0 -0
package/dist/index.cjs
CHANGED
|
@@ -4,6 +4,7 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __getProtoOf = Object.getPrototypeOf;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
7
8
|
var __commonJS = (cb, mod) => function __require() {
|
|
8
9
|
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
9
10
|
};
|
|
@@ -33,7 +34,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
33
34
|
var require_fast_deep_equal = __commonJS({
|
|
34
35
|
"node_modules/fast-deep-equal/index.js"(exports2, module2) {
|
|
35
36
|
"use strict";
|
|
36
|
-
module2.exports = function equal(a, b) {
|
|
37
|
+
module2.exports = /* @__PURE__ */ __name(function equal(a, b) {
|
|
37
38
|
if (a === b) return true;
|
|
38
39
|
if (a && b && typeof a == "object" && typeof b == "object") {
|
|
39
40
|
if (a.constructor !== b.constructor) return false;
|
|
@@ -60,7 +61,7 @@ var require_fast_deep_equal = __commonJS({
|
|
|
60
61
|
return true;
|
|
61
62
|
}
|
|
62
63
|
return a !== a && b !== b;
|
|
63
|
-
};
|
|
64
|
+
}, "equal");
|
|
64
65
|
}
|
|
65
66
|
});
|
|
66
67
|
|
|
@@ -96,6 +97,7 @@ var require_ucs2length = __commonJS({
|
|
|
96
97
|
}
|
|
97
98
|
return length;
|
|
98
99
|
}
|
|
100
|
+
__name(ucs2length, "ucs2length");
|
|
99
101
|
exports2.default = ucs2length;
|
|
100
102
|
ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
|
|
101
103
|
}
|
|
@@ -110,6 +112,7 @@ var require_formats = __commonJS({
|
|
|
110
112
|
function fmtDef(validate, compare) {
|
|
111
113
|
return { validate, compare };
|
|
112
114
|
}
|
|
115
|
+
__name(fmtDef, "fmtDef");
|
|
113
116
|
exports2.fullFormats = {
|
|
114
117
|
// date: http://tools.ietf.org/html/rfc3339#section-5.6
|
|
115
118
|
date: fmtDef(date, compareDate),
|
|
@@ -176,6 +179,7 @@ var require_formats = __commonJS({
|
|
|
176
179
|
function isLeapYear(year) {
|
|
177
180
|
return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
|
|
178
181
|
}
|
|
182
|
+
__name(isLeapYear, "isLeapYear");
|
|
179
183
|
var DATE = /^(\d\d\d\d)-(\d\d)-(\d\d)$/;
|
|
180
184
|
var DAYS = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
|
181
185
|
function date(str) {
|
|
@@ -187,6 +191,7 @@ var require_formats = __commonJS({
|
|
|
187
191
|
const day = +matches[3];
|
|
188
192
|
return month >= 1 && month <= 12 && day >= 1 && day <= (month === 2 && isLeapYear(year) ? 29 : DAYS[month]);
|
|
189
193
|
}
|
|
194
|
+
__name(date, "date");
|
|
190
195
|
function compareDate(d1, d2) {
|
|
191
196
|
if (!(d1 && d2))
|
|
192
197
|
return void 0;
|
|
@@ -196,9 +201,10 @@ var require_formats = __commonJS({
|
|
|
196
201
|
return -1;
|
|
197
202
|
return 0;
|
|
198
203
|
}
|
|
204
|
+
__name(compareDate, "compareDate");
|
|
199
205
|
var TIME = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;
|
|
200
206
|
function getTime(strictTimeZone) {
|
|
201
|
-
return function time(str) {
|
|
207
|
+
return /* @__PURE__ */ __name(function time(str) {
|
|
202
208
|
const matches = TIME.exec(str);
|
|
203
209
|
if (!matches)
|
|
204
210
|
return false;
|
|
@@ -216,8 +222,9 @@ var require_formats = __commonJS({
|
|
|
216
222
|
const utcMin = min - tzM * tzSign;
|
|
217
223
|
const utcHr = hr - tzH * tzSign - (utcMin < 0 ? 1 : 0);
|
|
218
224
|
return (utcHr === 23 || utcHr === -1) && (utcMin === 59 || utcMin === -1) && sec < 61;
|
|
219
|
-
};
|
|
225
|
+
}, "time");
|
|
220
226
|
}
|
|
227
|
+
__name(getTime, "getTime");
|
|
221
228
|
function compareTime(s1, s2) {
|
|
222
229
|
if (!(s1 && s2))
|
|
223
230
|
return void 0;
|
|
@@ -227,6 +234,7 @@ var require_formats = __commonJS({
|
|
|
227
234
|
return void 0;
|
|
228
235
|
return t1 - t2;
|
|
229
236
|
}
|
|
237
|
+
__name(compareTime, "compareTime");
|
|
230
238
|
function compareIsoTime(t1, t2) {
|
|
231
239
|
if (!(t1 && t2))
|
|
232
240
|
return void 0;
|
|
@@ -242,14 +250,16 @@ var require_formats = __commonJS({
|
|
|
242
250
|
return -1;
|
|
243
251
|
return 0;
|
|
244
252
|
}
|
|
253
|
+
__name(compareIsoTime, "compareIsoTime");
|
|
245
254
|
var DATE_TIME_SEPARATOR = /t|\s/i;
|
|
246
255
|
function getDateTime(strictTimeZone) {
|
|
247
256
|
const time = getTime(strictTimeZone);
|
|
248
|
-
return function date_time(str) {
|
|
257
|
+
return /* @__PURE__ */ __name(function date_time(str) {
|
|
249
258
|
const dateTime = str.split(DATE_TIME_SEPARATOR);
|
|
250
259
|
return dateTime.length === 2 && date(dateTime[0]) && time(dateTime[1]);
|
|
251
|
-
};
|
|
260
|
+
}, "date_time");
|
|
252
261
|
}
|
|
262
|
+
__name(getDateTime, "getDateTime");
|
|
253
263
|
function compareDateTime(dt1, dt2) {
|
|
254
264
|
if (!(dt1 && dt2))
|
|
255
265
|
return void 0;
|
|
@@ -259,6 +269,7 @@ var require_formats = __commonJS({
|
|
|
259
269
|
return void 0;
|
|
260
270
|
return d1 - d2;
|
|
261
271
|
}
|
|
272
|
+
__name(compareDateTime, "compareDateTime");
|
|
262
273
|
function compareIsoDateTime(dt1, dt2) {
|
|
263
274
|
if (!(dt1 && dt2))
|
|
264
275
|
return void 0;
|
|
@@ -269,27 +280,33 @@ var require_formats = __commonJS({
|
|
|
269
280
|
return void 0;
|
|
270
281
|
return res || compareTime(t1, t2);
|
|
271
282
|
}
|
|
283
|
+
__name(compareIsoDateTime, "compareIsoDateTime");
|
|
272
284
|
var NOT_URI_FRAGMENT = /\/|:/;
|
|
273
285
|
var URI = /^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)(?:\?(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i;
|
|
274
286
|
function uri(str) {
|
|
275
287
|
return NOT_URI_FRAGMENT.test(str) && URI.test(str);
|
|
276
288
|
}
|
|
289
|
+
__name(uri, "uri");
|
|
277
290
|
var BYTE = /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/gm;
|
|
278
291
|
function byte(str) {
|
|
279
292
|
BYTE.lastIndex = 0;
|
|
280
293
|
return BYTE.test(str);
|
|
281
294
|
}
|
|
295
|
+
__name(byte, "byte");
|
|
282
296
|
var MIN_INT32 = -(2 ** 31);
|
|
283
297
|
var MAX_INT32 = 2 ** 31 - 1;
|
|
284
298
|
function validateInt32(value) {
|
|
285
299
|
return Number.isInteger(value) && value <= MAX_INT32 && value >= MIN_INT32;
|
|
286
300
|
}
|
|
301
|
+
__name(validateInt32, "validateInt32");
|
|
287
302
|
function validateInt64(value) {
|
|
288
303
|
return Number.isInteger(value);
|
|
289
304
|
}
|
|
305
|
+
__name(validateInt64, "validateInt64");
|
|
290
306
|
function validateNumber() {
|
|
291
307
|
return true;
|
|
292
308
|
}
|
|
309
|
+
__name(validateNumber, "validateNumber");
|
|
293
310
|
var Z_ANCHOR = /[^\\]\\Z/;
|
|
294
311
|
function regex(str) {
|
|
295
312
|
if (Z_ANCHOR.test(str))
|
|
@@ -301,6 +318,7 @@ var require_formats = __commonJS({
|
|
|
301
318
|
return false;
|
|
302
319
|
}
|
|
303
320
|
}
|
|
321
|
+
__name(regex, "regex");
|
|
304
322
|
}
|
|
305
323
|
});
|
|
306
324
|
|
|
@@ -410,6 +428,9 @@ __export(errors_exports, {
|
|
|
410
428
|
|
|
411
429
|
// src/errors/appError.js
|
|
412
430
|
var AppError = class _AppError extends Error {
|
|
431
|
+
static {
|
|
432
|
+
__name(this, "AppError");
|
|
433
|
+
}
|
|
413
434
|
constructor(message = "Internal Server Error", options) {
|
|
414
435
|
super(message, options);
|
|
415
436
|
this.type = this.constructor.name;
|
|
@@ -421,6 +442,9 @@ var AppError = class _AppError extends Error {
|
|
|
421
442
|
|
|
422
443
|
// src/errors/authenticationError.js
|
|
423
444
|
var AuthenticationError = class _AuthenticationError extends AppError {
|
|
445
|
+
static {
|
|
446
|
+
__name(this, "AuthenticationError");
|
|
447
|
+
}
|
|
424
448
|
constructor(message = "Authentication Error", options = {}) {
|
|
425
449
|
super(message, options);
|
|
426
450
|
this.statusCode = 401;
|
|
@@ -431,6 +455,9 @@ var AuthenticationError = class _AuthenticationError extends AppError {
|
|
|
431
455
|
|
|
432
456
|
// src/errors/authorizationError.js
|
|
433
457
|
var AuthorizationError = class _AuthorizationError extends AppError {
|
|
458
|
+
static {
|
|
459
|
+
__name(this, "AuthorizationError");
|
|
460
|
+
}
|
|
434
461
|
constructor(message = "Authorization Error", options = {}) {
|
|
435
462
|
super(message, options);
|
|
436
463
|
this.statusCode = 403;
|
|
@@ -441,6 +468,9 @@ var AuthorizationError = class _AuthorizationError extends AppError {
|
|
|
441
468
|
|
|
442
469
|
// src/errors/conflictError.js
|
|
443
470
|
var ConflictError = class _ConflictError extends AppError {
|
|
471
|
+
static {
|
|
472
|
+
__name(this, "ConflictError");
|
|
473
|
+
}
|
|
444
474
|
constructor(message = "Bad Request", options = {}) {
|
|
445
475
|
super(message, options);
|
|
446
476
|
this.statusCode = 409;
|
|
@@ -451,6 +481,9 @@ var ConflictError = class _ConflictError extends AppError {
|
|
|
451
481
|
|
|
452
482
|
// src/errors/deviceCommError.js
|
|
453
483
|
var DeviceCommError = class _DeviceCommError extends AppError {
|
|
484
|
+
static {
|
|
485
|
+
__name(this, "DeviceCommError");
|
|
486
|
+
}
|
|
454
487
|
constructor(message = "Device Communication Error", options = {}) {
|
|
455
488
|
super(message, options);
|
|
456
489
|
this.statusCode = 503;
|
|
@@ -461,6 +494,9 @@ var DeviceCommError = class _DeviceCommError extends AppError {
|
|
|
461
494
|
|
|
462
495
|
// src/errors/loginError.js
|
|
463
496
|
var LoginError = class _LoginError extends AppError {
|
|
497
|
+
static {
|
|
498
|
+
__name(this, "LoginError");
|
|
499
|
+
}
|
|
464
500
|
constructor(message = "Invalid Login information provided", options = {}) {
|
|
465
501
|
super(message, options);
|
|
466
502
|
this.statusCode = 401;
|
|
@@ -471,6 +507,9 @@ var LoginError = class _LoginError extends AppError {
|
|
|
471
507
|
|
|
472
508
|
// src/errors/notFoundError.js
|
|
473
509
|
var NotFoundError = class _NotFoundError extends AppError {
|
|
510
|
+
static {
|
|
511
|
+
__name(this, "NotFoundError");
|
|
512
|
+
}
|
|
474
513
|
constructor(message = "Resource Not Found", options = {}) {
|
|
475
514
|
super(message, options);
|
|
476
515
|
this.statusCode = 404;
|
|
@@ -481,6 +520,9 @@ var NotFoundError = class _NotFoundError extends AppError {
|
|
|
481
520
|
|
|
482
521
|
// src/errors/requestError.js
|
|
483
522
|
var RequestError = class _RequestError extends AppError {
|
|
523
|
+
static {
|
|
524
|
+
__name(this, "RequestError");
|
|
525
|
+
}
|
|
484
526
|
constructor(message = "Bad Request", options = {}) {
|
|
485
527
|
super(message, options);
|
|
486
528
|
this.statusCode = 400;
|
|
@@ -491,6 +533,9 @@ var RequestError = class _RequestError extends AppError {
|
|
|
491
533
|
|
|
492
534
|
// src/errors/systemCommError.js
|
|
493
535
|
var SystemCommError = class _SystemCommError extends AppError {
|
|
536
|
+
static {
|
|
537
|
+
__name(this, "SystemCommError");
|
|
538
|
+
}
|
|
494
539
|
constructor(message = "System Communication Error", options = {}) {
|
|
495
540
|
super(message, options);
|
|
496
541
|
this.statusCode = 503;
|
|
@@ -501,6 +546,9 @@ var SystemCommError = class _SystemCommError extends AppError {
|
|
|
501
546
|
|
|
502
547
|
// src/errors/tokenExpiredError.js
|
|
503
548
|
var TokenExpiredError = class _TokenExpiredError extends AppError {
|
|
549
|
+
static {
|
|
550
|
+
__name(this, "TokenExpiredError");
|
|
551
|
+
}
|
|
504
552
|
constructor(message = "Token Expired", options = {}) {
|
|
505
553
|
super(message, options);
|
|
506
554
|
this.statusCode = 401;
|
|
@@ -511,6 +559,9 @@ var TokenExpiredError = class _TokenExpiredError extends AppError {
|
|
|
511
559
|
|
|
512
560
|
// src/errors/unprocessableRequestError.js
|
|
513
561
|
var UnprocessableRequestError = class _UnprocessableRequestError extends AppError {
|
|
562
|
+
static {
|
|
563
|
+
__name(this, "UnprocessableRequestError");
|
|
564
|
+
}
|
|
514
565
|
constructor(message = "Unprocessable Request Error", options = {}) {
|
|
515
566
|
super(message, options);
|
|
516
567
|
this.statusCode = 422;
|
|
@@ -521,6 +572,9 @@ var UnprocessableRequestError = class _UnprocessableRequestError extends AppErro
|
|
|
521
572
|
|
|
522
573
|
// src/errors/validationError.js
|
|
523
574
|
var ValidationError = class _ValidationError extends AppError {
|
|
575
|
+
static {
|
|
576
|
+
__name(this, "ValidationError");
|
|
577
|
+
}
|
|
524
578
|
constructor(message = "Validation Error", options = {}) {
|
|
525
579
|
super(message, options);
|
|
526
580
|
this.statusCode = 400;
|
|
@@ -538,6 +592,9 @@ var HEADER_KEY_DRIVER = "X-Driver";
|
|
|
538
592
|
var HEADER_KEY_COMMAND_NAME = "X-Command-Name";
|
|
539
593
|
var HEADER_KEY_EVENT_NAME = "X-Event-Name";
|
|
540
594
|
var KohostAMQPClient = class {
|
|
595
|
+
static {
|
|
596
|
+
__name(this, "KohostAMQPClient");
|
|
597
|
+
}
|
|
541
598
|
static get Message() {
|
|
542
599
|
return Message;
|
|
543
600
|
}
|
|
@@ -658,6 +715,9 @@ var KohostAMQPClient = class {
|
|
|
658
715
|
}
|
|
659
716
|
};
|
|
660
717
|
var Message = class {
|
|
718
|
+
static {
|
|
719
|
+
__name(this, "Message");
|
|
720
|
+
}
|
|
661
721
|
constructor(content) {
|
|
662
722
|
this.toExchange = null;
|
|
663
723
|
this.content = content;
|
|
@@ -718,6 +778,9 @@ var Message = class {
|
|
|
718
778
|
|
|
719
779
|
// src/useCases/refreshToken.js
|
|
720
780
|
var RefreshTokenCommand = class _RefreshTokenCommand {
|
|
781
|
+
static {
|
|
782
|
+
__name(this, "RefreshTokenCommand");
|
|
783
|
+
}
|
|
721
784
|
/**
|
|
722
785
|
* @description
|
|
723
786
|
* @constructor
|
|
@@ -781,6 +844,9 @@ var RefreshTokenCommand = class _RefreshTokenCommand {
|
|
|
781
844
|
|
|
782
845
|
// src/httpClient.js
|
|
783
846
|
var KohostHTTPClient = class _KohostHTTPClient {
|
|
847
|
+
static {
|
|
848
|
+
__name(this, "KohostHTTPClient");
|
|
849
|
+
}
|
|
784
850
|
#onSuccess;
|
|
785
851
|
#onError;
|
|
786
852
|
/**
|
|
@@ -799,8 +865,8 @@ var KohostHTTPClient = class _KohostHTTPClient {
|
|
|
799
865
|
organizationId: "",
|
|
800
866
|
apiKey: "",
|
|
801
867
|
headers: new Headers({}),
|
|
802
|
-
onSuccess: (response) => response,
|
|
803
|
-
onError: (error) => error
|
|
868
|
+
onSuccess: /* @__PURE__ */ __name((response) => response, "onSuccess"),
|
|
869
|
+
onError: /* @__PURE__ */ __name((error) => error, "onError")
|
|
804
870
|
}) {
|
|
805
871
|
if (!options.url) throw new Error("options.url is required");
|
|
806
872
|
this.options = options;
|
|
@@ -890,7 +956,8 @@ var KohostHTTPClient = class _KohostHTTPClient {
|
|
|
890
956
|
const commandConfig = command.config;
|
|
891
957
|
const request = this.createRequest(commandConfig);
|
|
892
958
|
const response = await fetch(request);
|
|
893
|
-
const
|
|
959
|
+
const isJsonResponse = response.headers.get("Content-Type")?.includes("application/json") || false;
|
|
960
|
+
const responseData = isJsonResponse ? await response.json() : response.body;
|
|
894
961
|
if (!response.ok) {
|
|
895
962
|
let error = responseData?.error || new Error(response.statusText);
|
|
896
963
|
const status = response.status;
|
|
@@ -930,7 +997,7 @@ var KohostHTTPClient = class _KohostHTTPClient {
|
|
|
930
997
|
}
|
|
931
998
|
}
|
|
932
999
|
} catch (error2) {
|
|
933
|
-
console.
|
|
1000
|
+
console.error(error2);
|
|
934
1001
|
}
|
|
935
1002
|
error = this.#onError(error);
|
|
936
1003
|
return Promise.reject(error);
|
|
@@ -957,9 +1024,33 @@ var KohostHTTPClient = class _KohostHTTPClient {
|
|
|
957
1024
|
}
|
|
958
1025
|
const url = new URL(apiPath, this.baseUrl);
|
|
959
1026
|
const method = config.method.toUpperCase() || "GET";
|
|
960
|
-
if (config.params) {
|
|
961
|
-
Object.
|
|
962
|
-
|
|
1027
|
+
if (config.params && typeof config.params === "object") {
|
|
1028
|
+
Object.entries(config.params).forEach(([key, value]) => {
|
|
1029
|
+
if (Array.isArray(value)) {
|
|
1030
|
+
value.forEach((item) => {
|
|
1031
|
+
if (typeof item === "object" && item !== null) {
|
|
1032
|
+
Object.entries(item).forEach(([itemKey, itemValue]) => {
|
|
1033
|
+
url.searchParams.append(`${key}[][${itemKey}]`, itemValue);
|
|
1034
|
+
});
|
|
1035
|
+
} else {
|
|
1036
|
+
url.searchParams.append(`${key}[]`, item);
|
|
1037
|
+
}
|
|
1038
|
+
});
|
|
1039
|
+
} else if (value === null || value === void 0) {
|
|
1040
|
+
url.searchParams.append(key, "");
|
|
1041
|
+
} else if (typeof value === "object") {
|
|
1042
|
+
Object.entries(value).forEach(([nestedKey, nestedValue]) => {
|
|
1043
|
+
if (Array.isArray(nestedValue)) {
|
|
1044
|
+
nestedValue.forEach((item) => {
|
|
1045
|
+
url.searchParams.append(`${key}[${nestedKey}][]`, item);
|
|
1046
|
+
});
|
|
1047
|
+
} else {
|
|
1048
|
+
url.searchParams.append(`${key}[${nestedKey}]`, nestedValue);
|
|
1049
|
+
}
|
|
1050
|
+
});
|
|
1051
|
+
} else {
|
|
1052
|
+
url.searchParams.append(key, value);
|
|
1053
|
+
}
|
|
963
1054
|
});
|
|
964
1055
|
}
|
|
965
1056
|
const headers = new Headers(this.headers);
|
|
@@ -982,6 +1073,9 @@ var KohostHTTPClient = class _KohostHTTPClient {
|
|
|
982
1073
|
// src/socketIoClient.js
|
|
983
1074
|
var import_socket = require("socket.io-client");
|
|
984
1075
|
var KohostSocketIoClient = class {
|
|
1076
|
+
static {
|
|
1077
|
+
__name(this, "KohostSocketIoClient");
|
|
1078
|
+
}
|
|
985
1079
|
constructor(config = {
|
|
986
1080
|
url: null,
|
|
987
1081
|
options: {}
|
|
@@ -1041,6 +1135,9 @@ var KohostSocketIoClient = class {
|
|
|
1041
1135
|
this.callbacks[event].forEach((callback) => callback(...args));
|
|
1042
1136
|
}
|
|
1043
1137
|
}
|
|
1138
|
+
listeners(event) {
|
|
1139
|
+
return this.callbacks[event] || [];
|
|
1140
|
+
}
|
|
1044
1141
|
connect() {
|
|
1045
1142
|
this.socket.connect();
|
|
1046
1143
|
}
|
|
@@ -1068,9 +1165,6 @@ var KohostSocketIoClient = class {
|
|
|
1068
1165
|
this.socket.removeAllListeners();
|
|
1069
1166
|
this.socket = null;
|
|
1070
1167
|
}
|
|
1071
|
-
listeners(event) {
|
|
1072
|
-
return this.socket.listeners(event);
|
|
1073
|
-
}
|
|
1074
1168
|
};
|
|
1075
1169
|
|
|
1076
1170
|
// src/commands/index.js
|
|
@@ -1109,6 +1203,9 @@ __export(commands_exports, {
|
|
|
1109
1203
|
// src/commands/command.js
|
|
1110
1204
|
var Commands = amqpExchanges.Commands;
|
|
1111
1205
|
var Command = class {
|
|
1206
|
+
static {
|
|
1207
|
+
__name(this, "Command");
|
|
1208
|
+
}
|
|
1112
1209
|
constructor(data) {
|
|
1113
1210
|
this.data = {};
|
|
1114
1211
|
if (!data) throw new Error("Command data is required");
|
|
@@ -1134,6 +1231,9 @@ var Command = class {
|
|
|
1134
1231
|
|
|
1135
1232
|
// src/commands/checkInReservation.js
|
|
1136
1233
|
var CheckInReservation = class extends Command {
|
|
1234
|
+
static {
|
|
1235
|
+
__name(this, "CheckInReservation");
|
|
1236
|
+
}
|
|
1137
1237
|
constructor({ id, ...rest }) {
|
|
1138
1238
|
super({ id, ...rest });
|
|
1139
1239
|
}
|
|
@@ -1144,6 +1244,9 @@ var CheckInReservation = class extends Command {
|
|
|
1144
1244
|
|
|
1145
1245
|
// src/commands/checkOutReservation.js
|
|
1146
1246
|
var CheckOutReservation = class extends Command {
|
|
1247
|
+
static {
|
|
1248
|
+
__name(this, "CheckOutReservation");
|
|
1249
|
+
}
|
|
1147
1250
|
constructor({ reservationId, userId, ...rest }) {
|
|
1148
1251
|
super({ reservationId, userId, ...rest });
|
|
1149
1252
|
}
|
|
@@ -1154,6 +1257,9 @@ var CheckOutReservation = class extends Command {
|
|
|
1154
1257
|
|
|
1155
1258
|
// src/commands/createImageUploadEndpoint.js
|
|
1156
1259
|
var CreateImageUploadEndpoint = class extends Command {
|
|
1260
|
+
static {
|
|
1261
|
+
__name(this, "CreateImageUploadEndpoint");
|
|
1262
|
+
}
|
|
1157
1263
|
constructor({ id, expires, ...rest }) {
|
|
1158
1264
|
super({ id, expires, ...rest });
|
|
1159
1265
|
}
|
|
@@ -1164,6 +1270,9 @@ var CreateImageUploadEndpoint = class extends Command {
|
|
|
1164
1270
|
|
|
1165
1271
|
// src/commands/createShortLink.js
|
|
1166
1272
|
var CreateShortLink = class extends Command {
|
|
1273
|
+
static {
|
|
1274
|
+
__name(this, "CreateShortLink");
|
|
1275
|
+
}
|
|
1167
1276
|
constructor({ title, destination, ...rest }) {
|
|
1168
1277
|
super({ title, destination, ...rest });
|
|
1169
1278
|
}
|
|
@@ -1174,6 +1283,9 @@ var CreateShortLink = class extends Command {
|
|
|
1174
1283
|
|
|
1175
1284
|
// src/commands/getCategories.js
|
|
1176
1285
|
var GetCategories = class extends Command {
|
|
1286
|
+
static {
|
|
1287
|
+
__name(this, "GetCategories");
|
|
1288
|
+
}
|
|
1177
1289
|
constructor({ id, ...rest }) {
|
|
1178
1290
|
super({ id, ...rest });
|
|
1179
1291
|
}
|
|
@@ -1184,6 +1296,9 @@ var GetCategories = class extends Command {
|
|
|
1184
1296
|
|
|
1185
1297
|
// src/commands/getMobileKey.js
|
|
1186
1298
|
var GetMobileKey = class extends Command {
|
|
1299
|
+
static {
|
|
1300
|
+
__name(this, "GetMobileKey");
|
|
1301
|
+
}
|
|
1187
1302
|
constructor({
|
|
1188
1303
|
id,
|
|
1189
1304
|
phone,
|
|
@@ -1201,6 +1316,9 @@ var GetMobileKey = class extends Command {
|
|
|
1201
1316
|
|
|
1202
1317
|
// src/commands/getProducts.js
|
|
1203
1318
|
var GetProducts = class extends Command {
|
|
1319
|
+
static {
|
|
1320
|
+
__name(this, "GetProducts");
|
|
1321
|
+
}
|
|
1204
1322
|
constructor({ id, externalSystemId, ...rest }) {
|
|
1205
1323
|
super({ id, externalSystemId, ...rest });
|
|
1206
1324
|
}
|
|
@@ -1211,6 +1329,9 @@ var GetProducts = class extends Command {
|
|
|
1211
1329
|
|
|
1212
1330
|
// src/commands/getReservationSpaceCategoryAvailabilities.js
|
|
1213
1331
|
var GetReservationSpaceCategoryAvailabilities = class extends Command {
|
|
1332
|
+
static {
|
|
1333
|
+
__name(this, "GetReservationSpaceCategoryAvailabilities");
|
|
1334
|
+
}
|
|
1214
1335
|
constructor(options) {
|
|
1215
1336
|
const { id, ...rest } = options;
|
|
1216
1337
|
super({ id, ...rest });
|
|
@@ -1222,6 +1343,9 @@ var GetReservationSpaceCategoryAvailabilities = class extends Command {
|
|
|
1222
1343
|
|
|
1223
1344
|
// src/commands/getReservations.js
|
|
1224
1345
|
var GetReservations = class extends Command {
|
|
1346
|
+
static {
|
|
1347
|
+
__name(this, "GetReservations");
|
|
1348
|
+
}
|
|
1225
1349
|
constructor(options) {
|
|
1226
1350
|
const { id, startDate, endDate, status, ...rest } = options;
|
|
1227
1351
|
super({ id, startDate, endDate, status, ...rest });
|
|
@@ -1233,6 +1357,9 @@ var GetReservations = class extends Command {
|
|
|
1233
1357
|
|
|
1234
1358
|
// src/commands/getRooms.js
|
|
1235
1359
|
var GetRooms = class extends Command {
|
|
1360
|
+
static {
|
|
1361
|
+
__name(this, "GetRooms");
|
|
1362
|
+
}
|
|
1236
1363
|
constructor({
|
|
1237
1364
|
id,
|
|
1238
1365
|
types,
|
|
@@ -1261,6 +1388,9 @@ var GetRooms = class extends Command {
|
|
|
1261
1388
|
|
|
1262
1389
|
// src/commands/getUsers.js
|
|
1263
1390
|
var GetUsers = class extends Command {
|
|
1391
|
+
static {
|
|
1392
|
+
__name(this, "GetUsers");
|
|
1393
|
+
}
|
|
1264
1394
|
constructor({ id, ...rest }) {
|
|
1265
1395
|
super({ id, ...rest });
|
|
1266
1396
|
}
|
|
@@ -1271,6 +1401,9 @@ var GetUsers = class extends Command {
|
|
|
1271
1401
|
|
|
1272
1402
|
// src/commands/ocrDocument.js
|
|
1273
1403
|
var OCRDocument = class extends Command {
|
|
1404
|
+
static {
|
|
1405
|
+
__name(this, "OCRDocument");
|
|
1406
|
+
}
|
|
1274
1407
|
constructor({ type, image, ...rest }) {
|
|
1275
1408
|
super({ type, image, ...rest });
|
|
1276
1409
|
}
|
|
@@ -1281,6 +1414,9 @@ var OCRDocument = class extends Command {
|
|
|
1281
1414
|
|
|
1282
1415
|
// src/commands/sellProducts.js
|
|
1283
1416
|
var SellProducts = class extends Command {
|
|
1417
|
+
static {
|
|
1418
|
+
__name(this, "SellProducts");
|
|
1419
|
+
}
|
|
1284
1420
|
constructor({ reservationId, userId, products, ...rest }) {
|
|
1285
1421
|
super({ reservationId, userId, products, ...rest });
|
|
1286
1422
|
}
|
|
@@ -1291,6 +1427,9 @@ var SellProducts = class extends Command {
|
|
|
1291
1427
|
|
|
1292
1428
|
// src/commands/sendEmail.js
|
|
1293
1429
|
var SendEmail = class extends Command {
|
|
1430
|
+
static {
|
|
1431
|
+
__name(this, "SendEmail");
|
|
1432
|
+
}
|
|
1294
1433
|
constructor({ text, html, to, from, subject, ...rest }) {
|
|
1295
1434
|
super({ text, html, to, from, subject, ...rest });
|
|
1296
1435
|
}
|
|
@@ -1301,6 +1440,9 @@ var SendEmail = class extends Command {
|
|
|
1301
1440
|
|
|
1302
1441
|
// src/commands/sendSMS.js
|
|
1303
1442
|
var SendSMS = class extends Command {
|
|
1443
|
+
static {
|
|
1444
|
+
__name(this, "SendSMS");
|
|
1445
|
+
}
|
|
1304
1446
|
constructor({ id, body, to, from, media, ...rest }) {
|
|
1305
1447
|
super({ id, body, to, from, media, ...rest });
|
|
1306
1448
|
}
|
|
@@ -1311,6 +1453,9 @@ var SendSMS = class extends Command {
|
|
|
1311
1453
|
|
|
1312
1454
|
// src/commands/setAlarm.js
|
|
1313
1455
|
var SetAlarm = class extends Command {
|
|
1456
|
+
static {
|
|
1457
|
+
__name(this, "SetAlarm");
|
|
1458
|
+
}
|
|
1314
1459
|
constructor({ id, zones, areas, code, ...rest }) {
|
|
1315
1460
|
super({ id, zones, areas, code, ...rest });
|
|
1316
1461
|
}
|
|
@@ -1321,6 +1466,9 @@ var SetAlarm = class extends Command {
|
|
|
1321
1466
|
|
|
1322
1467
|
// src/commands/setCourtesy.js
|
|
1323
1468
|
var SetCourtesy = class extends Command {
|
|
1469
|
+
static {
|
|
1470
|
+
__name(this, "SetCourtesy");
|
|
1471
|
+
}
|
|
1324
1472
|
constructor({ id, state, ...rest }) {
|
|
1325
1473
|
super({ id, state, ...rest });
|
|
1326
1474
|
}
|
|
@@ -1331,6 +1479,9 @@ var SetCourtesy = class extends Command {
|
|
|
1331
1479
|
|
|
1332
1480
|
// src/commands/setDimmer.js
|
|
1333
1481
|
var SetDimmer = class extends Command {
|
|
1482
|
+
static {
|
|
1483
|
+
__name(this, "SetDimmer");
|
|
1484
|
+
}
|
|
1334
1485
|
constructor({ id, level, ...rest }) {
|
|
1335
1486
|
super({ id, level, ...rest });
|
|
1336
1487
|
}
|
|
@@ -1341,6 +1492,9 @@ var SetDimmer = class extends Command {
|
|
|
1341
1492
|
|
|
1342
1493
|
// src/commands/setLock.js
|
|
1343
1494
|
var SetLock = class extends Command {
|
|
1495
|
+
static {
|
|
1496
|
+
__name(this, "SetLock");
|
|
1497
|
+
}
|
|
1344
1498
|
constructor({ id, state, ...rest }) {
|
|
1345
1499
|
super({ id, state, ...rest });
|
|
1346
1500
|
}
|
|
@@ -1351,6 +1505,9 @@ var SetLock = class extends Command {
|
|
|
1351
1505
|
|
|
1352
1506
|
// src/commands/setMedia.js
|
|
1353
1507
|
var SetMedia = class extends Command {
|
|
1508
|
+
static {
|
|
1509
|
+
__name(this, "SetMedia");
|
|
1510
|
+
}
|
|
1354
1511
|
constructor({ id, command, ...rest }) {
|
|
1355
1512
|
super({ id, command, ...rest });
|
|
1356
1513
|
}
|
|
@@ -1361,6 +1518,9 @@ var SetMedia = class extends Command {
|
|
|
1361
1518
|
|
|
1362
1519
|
// src/commands/setScene.js
|
|
1363
1520
|
var SetScene = class extends Command {
|
|
1521
|
+
static {
|
|
1522
|
+
__name(this, "SetScene");
|
|
1523
|
+
}
|
|
1364
1524
|
constructor({ id, devices, ...rest }) {
|
|
1365
1525
|
super({ id, devices, ...rest });
|
|
1366
1526
|
}
|
|
@@ -1371,6 +1531,9 @@ var SetScene = class extends Command {
|
|
|
1371
1531
|
|
|
1372
1532
|
// src/commands/setSwitch.js
|
|
1373
1533
|
var SetSwitch = class extends Command {
|
|
1534
|
+
static {
|
|
1535
|
+
__name(this, "SetSwitch");
|
|
1536
|
+
}
|
|
1374
1537
|
constructor({ id, state, ...rest }) {
|
|
1375
1538
|
super({ id, state, ...rest });
|
|
1376
1539
|
}
|
|
@@ -1381,6 +1544,9 @@ var SetSwitch = class extends Command {
|
|
|
1381
1544
|
|
|
1382
1545
|
// src/commands/setThermostat.js
|
|
1383
1546
|
var SetThermostat = class extends Command {
|
|
1547
|
+
static {
|
|
1548
|
+
__name(this, "SetThermostat");
|
|
1549
|
+
}
|
|
1384
1550
|
constructor({ id, setpoints, hvacMode, fanMode, ...rest }) {
|
|
1385
1551
|
super({ id, setpoints, hvacMode, fanMode, ...rest });
|
|
1386
1552
|
}
|
|
@@ -1391,6 +1557,9 @@ var SetThermostat = class extends Command {
|
|
|
1391
1557
|
|
|
1392
1558
|
// src/commands/setWindowCovering.js
|
|
1393
1559
|
var SetWindowCovering = class extends Command {
|
|
1560
|
+
static {
|
|
1561
|
+
__name(this, "SetWindowCovering");
|
|
1562
|
+
}
|
|
1394
1563
|
constructor({ id, position, ...rest }) {
|
|
1395
1564
|
super({ id, position, ...rest });
|
|
1396
1565
|
}
|
|
@@ -1401,6 +1570,9 @@ var SetWindowCovering = class extends Command {
|
|
|
1401
1570
|
|
|
1402
1571
|
// src/commands/updateReservation.js
|
|
1403
1572
|
var UpdateReservation = class extends Command {
|
|
1573
|
+
static {
|
|
1574
|
+
__name(this, "UpdateReservation");
|
|
1575
|
+
}
|
|
1404
1576
|
constructor({ id, ...rest }) {
|
|
1405
1577
|
super({ id, ...rest });
|
|
1406
1578
|
}
|
|
@@ -1411,6 +1583,9 @@ var UpdateReservation = class extends Command {
|
|
|
1411
1583
|
|
|
1412
1584
|
// src/commands/updateUser.js
|
|
1413
1585
|
var UpdateUser = class extends Command {
|
|
1586
|
+
static {
|
|
1587
|
+
__name(this, "UpdateUser");
|
|
1588
|
+
}
|
|
1414
1589
|
constructor({
|
|
1415
1590
|
id,
|
|
1416
1591
|
email,
|
|
@@ -1443,6 +1618,9 @@ var UpdateUser = class extends Command {
|
|
|
1443
1618
|
|
|
1444
1619
|
// src/commands/uploadImage.js
|
|
1445
1620
|
var UploadImage = class extends Command {
|
|
1621
|
+
static {
|
|
1622
|
+
__name(this, "UploadImage");
|
|
1623
|
+
}
|
|
1446
1624
|
constructor({ id, url, file, ...rest }) {
|
|
1447
1625
|
super({ id, url, file, ...rest });
|
|
1448
1626
|
}
|
|
@@ -1488,6 +1666,9 @@ __export(events_exports, {
|
|
|
1488
1666
|
|
|
1489
1667
|
// src/events/event.js
|
|
1490
1668
|
var Event = class {
|
|
1669
|
+
static {
|
|
1670
|
+
__name(this, "Event");
|
|
1671
|
+
}
|
|
1491
1672
|
constructor(data, context = {}) {
|
|
1492
1673
|
this.data = [];
|
|
1493
1674
|
this.context = context;
|
|
@@ -1960,6 +2141,9 @@ __export(models_exports, {
|
|
|
1960
2141
|
|
|
1961
2142
|
// src/models/entity.js
|
|
1962
2143
|
var Entity = class {
|
|
2144
|
+
static {
|
|
2145
|
+
__name(this, "Entity");
|
|
2146
|
+
}
|
|
1963
2147
|
constructor(data) {
|
|
1964
2148
|
if (!this.schema) {
|
|
1965
2149
|
throw new Error("Schema is not defined");
|
|
@@ -2278,6 +2462,7 @@ function validate12(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
2278
2462
|
validate12.errors = vErrors;
|
|
2279
2463
|
return errors === 0;
|
|
2280
2464
|
}
|
|
2465
|
+
__name(validate12, "validate12");
|
|
2281
2466
|
function validate10(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
2282
2467
|
let vErrors = null;
|
|
2283
2468
|
let errors = 0;
|
|
@@ -3132,6 +3317,7 @@ function validate10(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
3132
3317
|
validate10.errors = vErrors;
|
|
3133
3318
|
return errors === 0;
|
|
3134
3319
|
}
|
|
3320
|
+
__name(validate10, "validate10");
|
|
3135
3321
|
var validateAnnouncement = validate14;
|
|
3136
3322
|
var schema21 = {
|
|
3137
3323
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -3680,6 +3866,7 @@ function validate15(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
3680
3866
|
validate15.errors = vErrors;
|
|
3681
3867
|
return errors === 0;
|
|
3682
3868
|
}
|
|
3869
|
+
__name(validate15, "validate15");
|
|
3683
3870
|
function validate14(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
3684
3871
|
let vErrors = null;
|
|
3685
3872
|
let errors = 0;
|
|
@@ -4028,6 +4215,7 @@ function validate14(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
4028
4215
|
validate14.errors = vErrors;
|
|
4029
4216
|
return errors === 0;
|
|
4030
4217
|
}
|
|
4218
|
+
__name(validate14, "validate14");
|
|
4031
4219
|
var validateCamera = validate17;
|
|
4032
4220
|
var schema29 = {
|
|
4033
4221
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -4223,6 +4411,7 @@ function validate18(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
4223
4411
|
validate18.errors = vErrors;
|
|
4224
4412
|
return errors === 0;
|
|
4225
4413
|
}
|
|
4414
|
+
__name(validate18, "validate18");
|
|
4226
4415
|
function validate17(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
4227
4416
|
let vErrors = null;
|
|
4228
4417
|
let errors = 0;
|
|
@@ -4944,6 +5133,7 @@ function validate17(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
4944
5133
|
validate17.errors = vErrors;
|
|
4945
5134
|
return errors === 0;
|
|
4946
5135
|
}
|
|
5136
|
+
__name(validate17, "validate17");
|
|
4947
5137
|
var validateCategory = validate20;
|
|
4948
5138
|
var schema38 = {
|
|
4949
5139
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -5282,6 +5472,7 @@ function validate20(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
5282
5472
|
validate20.errors = vErrors;
|
|
5283
5473
|
return errors === 0;
|
|
5284
5474
|
}
|
|
5475
|
+
__name(validate20, "validate20");
|
|
5285
5476
|
var validateCourtesy = validate22;
|
|
5286
5477
|
var schema42 = {
|
|
5287
5478
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -5418,6 +5609,7 @@ function validate23(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
5418
5609
|
validate23.errors = vErrors;
|
|
5419
5610
|
return errors === 0;
|
|
5420
5611
|
}
|
|
5612
|
+
__name(validate23, "validate23");
|
|
5421
5613
|
function validate22(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
5422
5614
|
let vErrors = null;
|
|
5423
5615
|
let errors = 0;
|
|
@@ -5890,6 +6082,7 @@ function validate22(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
5890
6082
|
validate22.errors = vErrors;
|
|
5891
6083
|
return errors === 0;
|
|
5892
6084
|
}
|
|
6085
|
+
__name(validate22, "validate22");
|
|
5893
6086
|
var validateCredential = validate25;
|
|
5894
6087
|
var schema52 = {
|
|
5895
6088
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -6264,6 +6457,7 @@ function validate25(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
6264
6457
|
validate25.errors = vErrors;
|
|
6265
6458
|
return errors === 0;
|
|
6266
6459
|
}
|
|
6460
|
+
__name(validate25, "validate25");
|
|
6267
6461
|
var validateDeviceRouter = validate26;
|
|
6268
6462
|
var schema56 = {
|
|
6269
6463
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -6477,6 +6671,7 @@ function validate26(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
6477
6671
|
validate26.errors = vErrors;
|
|
6478
6672
|
return errors === 0;
|
|
6479
6673
|
}
|
|
6674
|
+
__name(validate26, "validate26");
|
|
6480
6675
|
var validateDimmer = validate27;
|
|
6481
6676
|
var schema58 = {
|
|
6482
6677
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -6607,6 +6802,7 @@ function validate28(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
6607
6802
|
validate28.errors = vErrors;
|
|
6608
6803
|
return errors === 0;
|
|
6609
6804
|
}
|
|
6805
|
+
__name(validate28, "validate28");
|
|
6610
6806
|
function validate27(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
6611
6807
|
let vErrors = null;
|
|
6612
6808
|
let errors = 0;
|
|
@@ -7017,6 +7213,7 @@ function validate27(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
7017
7213
|
validate27.errors = vErrors;
|
|
7018
7214
|
return errors === 0;
|
|
7019
7215
|
}
|
|
7216
|
+
__name(validate27, "validate27");
|
|
7020
7217
|
var validateDiscoveredDevice = validate30;
|
|
7021
7218
|
var schema67 = {
|
|
7022
7219
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -7358,6 +7555,7 @@ function validate30(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
7358
7555
|
validate30.errors = vErrors;
|
|
7359
7556
|
return errors === 0;
|
|
7360
7557
|
}
|
|
7558
|
+
__name(validate30, "validate30");
|
|
7361
7559
|
var validateEmailMessage = validate31;
|
|
7362
7560
|
var schema70 = {
|
|
7363
7561
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -7880,6 +8078,7 @@ function validate31(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
7880
8078
|
validate31.errors = vErrors;
|
|
7881
8079
|
return errors === 0;
|
|
7882
8080
|
}
|
|
8081
|
+
__name(validate31, "validate31");
|
|
7883
8082
|
var validateEnergyReport = validate32;
|
|
7884
8083
|
var schema75 = {
|
|
7885
8084
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -8728,6 +8927,7 @@ function validate32(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
8728
8927
|
validate32.errors = vErrors;
|
|
8729
8928
|
return errors === 0;
|
|
8730
8929
|
}
|
|
8930
|
+
__name(validate32, "validate32");
|
|
8731
8931
|
var validateEnergyReportShard = validate33;
|
|
8732
8932
|
var schema80 = {
|
|
8733
8933
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -9534,6 +9734,7 @@ function validate33(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
9534
9734
|
validate33.errors = vErrors;
|
|
9535
9735
|
return errors === 0;
|
|
9536
9736
|
}
|
|
9737
|
+
__name(validate33, "validate33");
|
|
9537
9738
|
var validateGateway = validate34;
|
|
9538
9739
|
function validate35(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
9539
9740
|
let vErrors = null;
|
|
@@ -9642,6 +9843,7 @@ function validate35(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
9642
9843
|
validate35.errors = vErrors;
|
|
9643
9844
|
return errors === 0;
|
|
9644
9845
|
}
|
|
9846
|
+
__name(validate35, "validate35");
|
|
9645
9847
|
function validate34(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
9646
9848
|
let vErrors = null;
|
|
9647
9849
|
let errors = 0;
|
|
@@ -9985,6 +10187,7 @@ function validate34(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
9985
10187
|
validate34.errors = vErrors;
|
|
9986
10188
|
return errors === 0;
|
|
9987
10189
|
}
|
|
10190
|
+
__name(validate34, "validate34");
|
|
9988
10191
|
var validateIdentification = validate37;
|
|
9989
10192
|
var schema95 = {
|
|
9990
10193
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -10404,6 +10607,7 @@ function validate37(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
10404
10607
|
validate37.errors = vErrors;
|
|
10405
10608
|
return errors === 0;
|
|
10406
10609
|
}
|
|
10610
|
+
__name(validate37, "validate37");
|
|
10407
10611
|
var validateIssue = validate38;
|
|
10408
10612
|
var schema98 = {
|
|
10409
10613
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -10815,6 +11019,7 @@ function validate38(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
10815
11019
|
validate38.errors = vErrors;
|
|
10816
11020
|
return errors === 0;
|
|
10817
11021
|
}
|
|
11022
|
+
__name(validate38, "validate38");
|
|
10818
11023
|
var validateLock = validate45;
|
|
10819
11024
|
var schema110 = {
|
|
10820
11025
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -10975,6 +11180,7 @@ function validate46(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
10975
11180
|
validate46.errors = vErrors;
|
|
10976
11181
|
return errors === 0;
|
|
10977
11182
|
}
|
|
11183
|
+
__name(validate46, "validate46");
|
|
10978
11184
|
function validate45(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
10979
11185
|
let vErrors = null;
|
|
10980
11186
|
let errors = 0;
|
|
@@ -11515,6 +11721,7 @@ function validate45(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
11515
11721
|
validate45.errors = vErrors;
|
|
11516
11722
|
return errors === 0;
|
|
11517
11723
|
}
|
|
11724
|
+
__name(validate45, "validate45");
|
|
11518
11725
|
var validateLog = validate48;
|
|
11519
11726
|
var schema120 = {
|
|
11520
11727
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -12162,6 +12369,7 @@ function validate48(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
12162
12369
|
validate48.errors = vErrors;
|
|
12163
12370
|
return errors === 0;
|
|
12164
12371
|
}
|
|
12372
|
+
__name(validate48, "validate48");
|
|
12165
12373
|
var validateMediaFile = validate15;
|
|
12166
12374
|
var validateMediaSource = validate49;
|
|
12167
12375
|
var schema121 = {
|
|
@@ -12458,6 +12666,7 @@ function validate50(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
12458
12666
|
validate50.errors = vErrors;
|
|
12459
12667
|
return errors === 0;
|
|
12460
12668
|
}
|
|
12669
|
+
__name(validate50, "validate50");
|
|
12461
12670
|
function validate49(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
12462
12671
|
let vErrors = null;
|
|
12463
12672
|
let errors = 0;
|
|
@@ -13431,6 +13640,7 @@ function validate49(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
13431
13640
|
validate49.errors = vErrors;
|
|
13432
13641
|
return errors === 0;
|
|
13433
13642
|
}
|
|
13643
|
+
__name(validate49, "validate49");
|
|
13434
13644
|
var validateMotionSensor = validate52;
|
|
13435
13645
|
function validate53(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
13436
13646
|
let vErrors = null;
|
|
@@ -13539,6 +13749,7 @@ function validate53(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
13539
13749
|
validate53.errors = vErrors;
|
|
13540
13750
|
return errors === 0;
|
|
13541
13751
|
}
|
|
13752
|
+
__name(validate53, "validate53");
|
|
13542
13753
|
function validate52(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
13543
13754
|
let vErrors = null;
|
|
13544
13755
|
let errors = 0;
|
|
@@ -13867,6 +14078,7 @@ function validate52(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
13867
14078
|
validate52.errors = vErrors;
|
|
13868
14079
|
return errors === 0;
|
|
13869
14080
|
}
|
|
14081
|
+
__name(validate52, "validate52");
|
|
13870
14082
|
var validateOrder = validate55;
|
|
13871
14083
|
var schema141 = {
|
|
13872
14084
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -15201,6 +15413,7 @@ function validate55(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
15201
15413
|
validate55.errors = vErrors;
|
|
15202
15414
|
return errors === 0;
|
|
15203
15415
|
}
|
|
15416
|
+
__name(validate55, "validate55");
|
|
15204
15417
|
var validateOrganization = validate56;
|
|
15205
15418
|
var schema147 = {
|
|
15206
15419
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -16130,6 +16343,7 @@ function validate56(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
16130
16343
|
validate56.errors = vErrors;
|
|
16131
16344
|
return errors === 0;
|
|
16132
16345
|
}
|
|
16346
|
+
__name(validate56, "validate56");
|
|
16133
16347
|
var validatePayment = validate57;
|
|
16134
16348
|
var schema151 = {
|
|
16135
16349
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -16388,6 +16602,7 @@ function validate57(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
16388
16602
|
validate57.errors = vErrors;
|
|
16389
16603
|
return errors === 0;
|
|
16390
16604
|
}
|
|
16605
|
+
__name(validate57, "validate57");
|
|
16391
16606
|
var validatePolicy = validate58;
|
|
16392
16607
|
var schema154 = {
|
|
16393
16608
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -16904,6 +17119,7 @@ function validate58(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
16904
17119
|
validate58.errors = vErrors;
|
|
16905
17120
|
return errors === 0;
|
|
16906
17121
|
}
|
|
17122
|
+
__name(validate58, "validate58");
|
|
16907
17123
|
var validateProduct = validate59;
|
|
16908
17124
|
var schema156 = {
|
|
16909
17125
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -17246,6 +17462,7 @@ function validate59(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
17246
17462
|
validate59.errors = vErrors;
|
|
17247
17463
|
return errors === 0;
|
|
17248
17464
|
}
|
|
17465
|
+
__name(validate59, "validate59");
|
|
17249
17466
|
var validateProperty = validate61;
|
|
17250
17467
|
var schema160 = {
|
|
17251
17468
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -19984,6 +20201,7 @@ function validate61(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
19984
20201
|
validate61.errors = vErrors;
|
|
19985
20202
|
return errors === 0;
|
|
19986
20203
|
}
|
|
20204
|
+
__name(validate61, "validate61");
|
|
19987
20205
|
var validateReservation = validate63;
|
|
19988
20206
|
var schema163 = {
|
|
19989
20207
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -20262,6 +20480,7 @@ function validate64(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
20262
20480
|
validate64.errors = vErrors;
|
|
20263
20481
|
return errors === 0;
|
|
20264
20482
|
}
|
|
20483
|
+
__name(validate64, "validate64");
|
|
20265
20484
|
function validate63(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
20266
20485
|
let vErrors = null;
|
|
20267
20486
|
let errors = 0;
|
|
@@ -21123,6 +21342,7 @@ function validate63(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
21123
21342
|
validate63.errors = vErrors;
|
|
21124
21343
|
return errors === 0;
|
|
21125
21344
|
}
|
|
21345
|
+
__name(validate63, "validate63");
|
|
21126
21346
|
var validateRoom = validate66;
|
|
21127
21347
|
var schema170 = {
|
|
21128
21348
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -21298,6 +21518,7 @@ function validate69(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
21298
21518
|
validate69.errors = vErrors;
|
|
21299
21519
|
return errors === 0;
|
|
21300
21520
|
}
|
|
21521
|
+
__name(validate69, "validate69");
|
|
21301
21522
|
function validate68(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
21302
21523
|
let vErrors = null;
|
|
21303
21524
|
let errors = 0;
|
|
@@ -21724,6 +21945,7 @@ function validate68(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
21724
21945
|
validate68.errors = vErrors;
|
|
21725
21946
|
return errors === 0;
|
|
21726
21947
|
}
|
|
21948
|
+
__name(validate68, "validate68");
|
|
21727
21949
|
var schema181 = {
|
|
21728
21950
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
21729
21951
|
$id: "thermostat.json",
|
|
@@ -21923,6 +22145,7 @@ function validate73(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
21923
22145
|
validate73.errors = vErrors;
|
|
21924
22146
|
return errors === 0;
|
|
21925
22147
|
}
|
|
22148
|
+
__name(validate73, "validate73");
|
|
21926
22149
|
var schema193 = { type: ["number", "null"], minimum: 0, maximum: 99 };
|
|
21927
22150
|
function validate75(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
21928
22151
|
let vErrors = null;
|
|
@@ -22112,6 +22335,7 @@ function validate75(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
22112
22335
|
validate75.errors = vErrors;
|
|
22113
22336
|
return errors === 0;
|
|
22114
22337
|
}
|
|
22338
|
+
__name(validate75, "validate75");
|
|
22115
22339
|
function validate72(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
22116
22340
|
let vErrors = null;
|
|
22117
22341
|
let errors = 0;
|
|
@@ -23124,6 +23348,7 @@ function validate72(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
23124
23348
|
validate72.errors = vErrors;
|
|
23125
23349
|
return errors === 0;
|
|
23126
23350
|
}
|
|
23351
|
+
__name(validate72, "validate72");
|
|
23127
23352
|
var schema198 = {
|
|
23128
23353
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
23129
23354
|
$id: "windowCovering.json",
|
|
@@ -23261,6 +23486,7 @@ function validate82(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
23261
23486
|
validate82.errors = vErrors;
|
|
23262
23487
|
return errors === 0;
|
|
23263
23488
|
}
|
|
23489
|
+
__name(validate82, "validate82");
|
|
23264
23490
|
function validate81(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
23265
23491
|
let vErrors = null;
|
|
23266
23492
|
let errors = 0;
|
|
@@ -23706,6 +23932,7 @@ function validate81(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
23706
23932
|
validate81.errors = vErrors;
|
|
23707
23933
|
return errors === 0;
|
|
23708
23934
|
}
|
|
23935
|
+
__name(validate81, "validate81");
|
|
23709
23936
|
function validate66(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
23710
23937
|
let vErrors = null;
|
|
23711
23938
|
let errors = 0;
|
|
@@ -24322,6 +24549,7 @@ function validate66(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
24322
24549
|
validate66.errors = vErrors;
|
|
24323
24550
|
return errors === 0;
|
|
24324
24551
|
}
|
|
24552
|
+
__name(validate66, "validate66");
|
|
24325
24553
|
var validateScene = validate90;
|
|
24326
24554
|
var schema210 = {
|
|
24327
24555
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -24472,6 +24700,7 @@ function validate91(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
24472
24700
|
validate91.errors = vErrors;
|
|
24473
24701
|
return errors === 0;
|
|
24474
24702
|
}
|
|
24703
|
+
__name(validate91, "validate91");
|
|
24475
24704
|
function validate93(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
24476
24705
|
let vErrors = null;
|
|
24477
24706
|
let errors = 0;
|
|
@@ -24544,6 +24773,7 @@ function validate93(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
24544
24773
|
validate93.errors = vErrors;
|
|
24545
24774
|
return errors === 0;
|
|
24546
24775
|
}
|
|
24776
|
+
__name(validate93, "validate93");
|
|
24547
24777
|
function validate98(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
24548
24778
|
let vErrors = null;
|
|
24549
24779
|
let errors = 0;
|
|
@@ -24580,6 +24810,7 @@ function validate98(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
24580
24810
|
validate98.errors = vErrors;
|
|
24581
24811
|
return errors === 0;
|
|
24582
24812
|
}
|
|
24813
|
+
__name(validate98, "validate98");
|
|
24583
24814
|
function validate90(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
24584
24815
|
let vErrors = null;
|
|
24585
24816
|
let errors = 0;
|
|
@@ -25754,6 +25985,7 @@ function validate90(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
25754
25985
|
validate90.errors = vErrors;
|
|
25755
25986
|
return errors === 0;
|
|
25756
25987
|
}
|
|
25988
|
+
__name(validate90, "validate90");
|
|
25757
25989
|
var validateShortLink = validate100;
|
|
25758
25990
|
var schema228 = {
|
|
25759
25991
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -25984,6 +26216,7 @@ function validate100(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
25984
26216
|
validate100.errors = vErrors;
|
|
25985
26217
|
return errors === 0;
|
|
25986
26218
|
}
|
|
26219
|
+
__name(validate100, "validate100");
|
|
25987
26220
|
var validateSmsMessage = validate101;
|
|
25988
26221
|
var schema231 = {
|
|
25989
26222
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -26450,6 +26683,7 @@ function validate101(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
26450
26683
|
validate101.errors = vErrors;
|
|
26451
26684
|
return errors === 0;
|
|
26452
26685
|
}
|
|
26686
|
+
__name(validate101, "validate101");
|
|
26453
26687
|
var validateSpace = validate102;
|
|
26454
26688
|
var schema236 = {
|
|
26455
26689
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -26615,6 +26849,7 @@ function validate103(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
26615
26849
|
validate103.errors = vErrors;
|
|
26616
26850
|
return errors === 0;
|
|
26617
26851
|
}
|
|
26852
|
+
__name(validate103, "validate103");
|
|
26618
26853
|
function validate102(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
26619
26854
|
let vErrors = null;
|
|
26620
26855
|
let errors = 0;
|
|
@@ -27512,6 +27747,7 @@ function validate102(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
27512
27747
|
validate102.errors = vErrors;
|
|
27513
27748
|
return errors === 0;
|
|
27514
27749
|
}
|
|
27750
|
+
__name(validate102, "validate102");
|
|
27515
27751
|
var validateSwitch = validate68;
|
|
27516
27752
|
var validateSystemUser = validate108;
|
|
27517
27753
|
var schema241 = {
|
|
@@ -27742,6 +27978,7 @@ function validate112(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
27742
27978
|
validate112.errors = vErrors;
|
|
27743
27979
|
return errors === 0;
|
|
27744
27980
|
}
|
|
27981
|
+
__name(validate112, "validate112");
|
|
27745
27982
|
function validate108(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
27746
27983
|
let vErrors = null;
|
|
27747
27984
|
let errors = 0;
|
|
@@ -28620,6 +28857,7 @@ function validate108(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
28620
28857
|
validate108.errors = vErrors;
|
|
28621
28858
|
return errors === 0;
|
|
28622
28859
|
}
|
|
28860
|
+
__name(validate108, "validate108");
|
|
28623
28861
|
var validateThermostat = validate72;
|
|
28624
28862
|
var validateTicket = validate39;
|
|
28625
28863
|
var schema100 = {
|
|
@@ -30620,6 +30858,7 @@ function validate39(data, { instancePath = "", parentData, parentDataProperty, r
|
|
|
30620
30858
|
validate39.errors = vErrors;
|
|
30621
30859
|
return errors === 0;
|
|
30622
30860
|
}
|
|
30861
|
+
__name(validate39, "validate39");
|
|
30623
30862
|
var validateTimeSheet = validate114;
|
|
30624
30863
|
var schema250 = {
|
|
30625
30864
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -31190,6 +31429,7 @@ function validate114(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
31190
31429
|
validate114.errors = vErrors;
|
|
31191
31430
|
return errors === 0;
|
|
31192
31431
|
}
|
|
31432
|
+
__name(validate114, "validate114");
|
|
31193
31433
|
var validateUser = validate115;
|
|
31194
31434
|
var schema254 = {
|
|
31195
31435
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -31479,6 +31719,7 @@ function validate122(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
31479
31719
|
validate122.errors = vErrors;
|
|
31480
31720
|
return errors === 0;
|
|
31481
31721
|
}
|
|
31722
|
+
__name(validate122, "validate122");
|
|
31482
31723
|
function validate115(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
|
|
31483
31724
|
let vErrors = null;
|
|
31484
31725
|
let errors = 0;
|
|
@@ -32916,6 +33157,7 @@ function validate115(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
32916
33157
|
validate115.errors = vErrors;
|
|
32917
33158
|
return errors === 0;
|
|
32918
33159
|
}
|
|
33160
|
+
__name(validate115, "validate115");
|
|
32919
33161
|
var validateVendor = validate124;
|
|
32920
33162
|
var schema261 = {
|
|
32921
33163
|
$schema: "http://json-schema.org/draft-07/schema",
|
|
@@ -33430,10 +33672,14 @@ function validate124(data, { instancePath = "", parentData, parentDataProperty,
|
|
|
33430
33672
|
validate124.errors = vErrors;
|
|
33431
33673
|
return errors === 0;
|
|
33432
33674
|
}
|
|
33675
|
+
__name(validate124, "validate124");
|
|
33433
33676
|
var validateWindowCovering = validate81;
|
|
33434
33677
|
|
|
33435
33678
|
// src/models/alarm.js
|
|
33436
33679
|
var Alarm = class extends Entity {
|
|
33680
|
+
static {
|
|
33681
|
+
__name(this, "Alarm");
|
|
33682
|
+
}
|
|
33437
33683
|
/**
|
|
33438
33684
|
* @typedef {Object} AlarmData Any smart alarm system
|
|
33439
33685
|
* @property {string} id - Identifier of the object.
|
|
@@ -33528,13 +33774,16 @@ Object.defineProperty(Alarm.prototype, "schema", {
|
|
|
33528
33774
|
}
|
|
33529
33775
|
});
|
|
33530
33776
|
Object.defineProperty(Alarm.prototype, "validator", {
|
|
33531
|
-
get: function() {
|
|
33777
|
+
get: /* @__PURE__ */ __name(function() {
|
|
33532
33778
|
return validateAlarm;
|
|
33533
|
-
}
|
|
33779
|
+
}, "get")
|
|
33534
33780
|
});
|
|
33535
33781
|
|
|
33536
33782
|
// src/models/announcement.js
|
|
33537
33783
|
var Announcement = class extends Entity {
|
|
33784
|
+
static {
|
|
33785
|
+
__name(this, "Announcement");
|
|
33786
|
+
}
|
|
33538
33787
|
/**
|
|
33539
33788
|
* @typedef {Object} AnnouncementData Announcement message sent to users
|
|
33540
33789
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -33589,13 +33838,16 @@ Object.defineProperty(Announcement.prototype, "schema", {
|
|
|
33589
33838
|
}
|
|
33590
33839
|
});
|
|
33591
33840
|
Object.defineProperty(Announcement.prototype, "validator", {
|
|
33592
|
-
get: function() {
|
|
33841
|
+
get: /* @__PURE__ */ __name(function() {
|
|
33593
33842
|
return validateAnnouncement;
|
|
33594
|
-
}
|
|
33843
|
+
}, "get")
|
|
33595
33844
|
});
|
|
33596
33845
|
|
|
33597
33846
|
// src/models/camera.js
|
|
33598
33847
|
var Camera = class extends Entity {
|
|
33848
|
+
static {
|
|
33849
|
+
__name(this, "Camera");
|
|
33850
|
+
}
|
|
33599
33851
|
/**
|
|
33600
33852
|
* @typedef {Object} CameraData Any smart camera
|
|
33601
33853
|
* @property {string} id - Identifier of the object.
|
|
@@ -33710,13 +33962,16 @@ Object.defineProperty(Camera.prototype, "schema", {
|
|
|
33710
33962
|
}
|
|
33711
33963
|
});
|
|
33712
33964
|
Object.defineProperty(Camera.prototype, "validator", {
|
|
33713
|
-
get: function() {
|
|
33965
|
+
get: /* @__PURE__ */ __name(function() {
|
|
33714
33966
|
return validateCamera;
|
|
33715
|
-
}
|
|
33967
|
+
}, "get")
|
|
33716
33968
|
});
|
|
33717
33969
|
|
|
33718
33970
|
// src/models/category.js
|
|
33719
33971
|
var Category = class extends Entity {
|
|
33972
|
+
static {
|
|
33973
|
+
__name(this, "Category");
|
|
33974
|
+
}
|
|
33720
33975
|
/**
|
|
33721
33976
|
* @typedef {Object} CategoryData
|
|
33722
33977
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -33770,13 +34025,16 @@ Object.defineProperty(Category.prototype, "schema", {
|
|
|
33770
34025
|
}
|
|
33771
34026
|
});
|
|
33772
34027
|
Object.defineProperty(Category.prototype, "validator", {
|
|
33773
|
-
get: function() {
|
|
34028
|
+
get: /* @__PURE__ */ __name(function() {
|
|
33774
34029
|
return validateCategory;
|
|
33775
|
-
}
|
|
34030
|
+
}, "get")
|
|
33776
34031
|
});
|
|
33777
34032
|
|
|
33778
34033
|
// src/models/courtesy.js
|
|
33779
34034
|
var Courtesy = class extends Entity {
|
|
34035
|
+
static {
|
|
34036
|
+
__name(this, "Courtesy");
|
|
34037
|
+
}
|
|
33780
34038
|
/**
|
|
33781
34039
|
* @typedef {Object} CourtesyData Any smart courtesy system
|
|
33782
34040
|
* @property {string} id - Identifier of the object.
|
|
@@ -33840,13 +34098,16 @@ Object.defineProperty(Courtesy.prototype, "schema", {
|
|
|
33840
34098
|
}
|
|
33841
34099
|
});
|
|
33842
34100
|
Object.defineProperty(Courtesy.prototype, "validator", {
|
|
33843
|
-
get: function() {
|
|
34101
|
+
get: /* @__PURE__ */ __name(function() {
|
|
33844
34102
|
return validateCourtesy;
|
|
33845
|
-
}
|
|
34103
|
+
}, "get")
|
|
33846
34104
|
});
|
|
33847
34105
|
|
|
33848
34106
|
// src/models/credential.js
|
|
33849
34107
|
var Credential = class extends Entity {
|
|
34108
|
+
static {
|
|
34109
|
+
__name(this, "Credential");
|
|
34110
|
+
}
|
|
33850
34111
|
/**
|
|
33851
34112
|
* @typedef {Object} CredentialData
|
|
33852
34113
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -33916,13 +34177,16 @@ Object.defineProperty(Credential.prototype, "schema", {
|
|
|
33916
34177
|
}
|
|
33917
34178
|
});
|
|
33918
34179
|
Object.defineProperty(Credential.prototype, "validator", {
|
|
33919
|
-
get: function() {
|
|
34180
|
+
get: /* @__PURE__ */ __name(function() {
|
|
33920
34181
|
return validateCredential;
|
|
33921
|
-
}
|
|
34182
|
+
}, "get")
|
|
33922
34183
|
});
|
|
33923
34184
|
|
|
33924
34185
|
// src/models/deviceRouter.js
|
|
33925
34186
|
var DeviceRouter = class extends Entity {
|
|
34187
|
+
static {
|
|
34188
|
+
__name(this, "DeviceRouter");
|
|
34189
|
+
}
|
|
33926
34190
|
/**
|
|
33927
34191
|
* @typedef {Object} DeviceRouterData A device router contains instructions on where to route devices based on their organization and driver.
|
|
33928
34192
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -33965,13 +34229,16 @@ Object.defineProperty(DeviceRouter.prototype, "schema", {
|
|
|
33965
34229
|
}
|
|
33966
34230
|
});
|
|
33967
34231
|
Object.defineProperty(DeviceRouter.prototype, "validator", {
|
|
33968
|
-
get: function() {
|
|
34232
|
+
get: /* @__PURE__ */ __name(function() {
|
|
33969
34233
|
return validateDeviceRouter;
|
|
33970
|
-
}
|
|
34234
|
+
}, "get")
|
|
33971
34235
|
});
|
|
33972
34236
|
|
|
33973
34237
|
// src/models/dimmer.js
|
|
33974
34238
|
var Dimmer = class extends Entity {
|
|
34239
|
+
static {
|
|
34240
|
+
__name(this, "Dimmer");
|
|
34241
|
+
}
|
|
33975
34242
|
/**
|
|
33976
34243
|
* @typedef {Object} DimmerData Any smart dimmer
|
|
33977
34244
|
* @property {string} id - Identifier of the object.
|
|
@@ -34028,13 +34295,16 @@ Object.defineProperty(Dimmer.prototype, "schema", {
|
|
|
34028
34295
|
}
|
|
34029
34296
|
});
|
|
34030
34297
|
Object.defineProperty(Dimmer.prototype, "validator", {
|
|
34031
|
-
get: function() {
|
|
34298
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34032
34299
|
return validateDimmer;
|
|
34033
|
-
}
|
|
34300
|
+
}, "get")
|
|
34034
34301
|
});
|
|
34035
34302
|
|
|
34036
34303
|
// src/models/discoveredDevice.js
|
|
34037
34304
|
var DiscoveredDevice = class extends Entity {
|
|
34305
|
+
static {
|
|
34306
|
+
__name(this, "DiscoveredDevice");
|
|
34307
|
+
}
|
|
34038
34308
|
/**
|
|
34039
34309
|
* @typedef {Object} DiscoveredDeviceData A device that has been discovered by Kohost, but not yet added to the Kohost system.
|
|
34040
34310
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -34099,13 +34369,16 @@ Object.defineProperty(DiscoveredDevice.prototype, "schema", {
|
|
|
34099
34369
|
}
|
|
34100
34370
|
});
|
|
34101
34371
|
Object.defineProperty(DiscoveredDevice.prototype, "validator", {
|
|
34102
|
-
get: function() {
|
|
34372
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34103
34373
|
return validateDiscoveredDevice;
|
|
34104
|
-
}
|
|
34374
|
+
}, "get")
|
|
34105
34375
|
});
|
|
34106
34376
|
|
|
34107
34377
|
// src/models/emailMessage.js
|
|
34108
34378
|
var EmailMessage = class extends Entity {
|
|
34379
|
+
static {
|
|
34380
|
+
__name(this, "EmailMessage");
|
|
34381
|
+
}
|
|
34109
34382
|
/**
|
|
34110
34383
|
* @typedef {Object} EmailMessageData
|
|
34111
34384
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -34196,13 +34469,16 @@ Object.defineProperty(EmailMessage.prototype, "schema", {
|
|
|
34196
34469
|
}
|
|
34197
34470
|
});
|
|
34198
34471
|
Object.defineProperty(EmailMessage.prototype, "validator", {
|
|
34199
|
-
get: function() {
|
|
34472
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34200
34473
|
return validateEmailMessage;
|
|
34201
|
-
}
|
|
34474
|
+
}, "get")
|
|
34202
34475
|
});
|
|
34203
34476
|
|
|
34204
34477
|
// src/models/energyReport.js
|
|
34205
34478
|
var EnergyReport = class extends Entity {
|
|
34479
|
+
static {
|
|
34480
|
+
__name(this, "EnergyReport");
|
|
34481
|
+
}
|
|
34206
34482
|
/**
|
|
34207
34483
|
* @typedef {Object} EnergyReportData Hourly Report for Energy based on energy report shards
|
|
34208
34484
|
* @property {string} id - Identifier of the object.
|
|
@@ -34285,13 +34561,16 @@ Object.defineProperty(EnergyReport.prototype, "schema", {
|
|
|
34285
34561
|
}
|
|
34286
34562
|
});
|
|
34287
34563
|
Object.defineProperty(EnergyReport.prototype, "validator", {
|
|
34288
|
-
get: function() {
|
|
34564
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34289
34565
|
return validateEnergyReport;
|
|
34290
|
-
}
|
|
34566
|
+
}, "get")
|
|
34291
34567
|
});
|
|
34292
34568
|
|
|
34293
34569
|
// src/models/energyReportShard.js
|
|
34294
34570
|
var EnergyReportShard = class extends Entity {
|
|
34571
|
+
static {
|
|
34572
|
+
__name(this, "EnergyReportShard");
|
|
34573
|
+
}
|
|
34295
34574
|
/**
|
|
34296
34575
|
* @typedef {Object} EnergyReportShardData Shard used for Energy Reports
|
|
34297
34576
|
* @property {string} id - Identifier of the object.
|
|
@@ -34366,13 +34645,16 @@ Object.defineProperty(EnergyReportShard.prototype, "schema", {
|
|
|
34366
34645
|
}
|
|
34367
34646
|
});
|
|
34368
34647
|
Object.defineProperty(EnergyReportShard.prototype, "validator", {
|
|
34369
|
-
get: function() {
|
|
34648
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34370
34649
|
return validateEnergyReportShard;
|
|
34371
|
-
}
|
|
34650
|
+
}, "get")
|
|
34372
34651
|
});
|
|
34373
34652
|
|
|
34374
34653
|
// src/models/gateway.js
|
|
34375
34654
|
var Gateway = class extends Entity {
|
|
34655
|
+
static {
|
|
34656
|
+
__name(this, "Gateway");
|
|
34657
|
+
}
|
|
34376
34658
|
/**
|
|
34377
34659
|
* @typedef {Object} GatewayData Any smart gateway that is an entrypoint for controlling devices
|
|
34378
34660
|
* @property {string} id - Identifier of the object.
|
|
@@ -34423,13 +34705,16 @@ Object.defineProperty(Gateway.prototype, "schema", {
|
|
|
34423
34705
|
}
|
|
34424
34706
|
});
|
|
34425
34707
|
Object.defineProperty(Gateway.prototype, "validator", {
|
|
34426
|
-
get: function() {
|
|
34708
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34427
34709
|
return validateGateway;
|
|
34428
|
-
}
|
|
34710
|
+
}, "get")
|
|
34429
34711
|
});
|
|
34430
34712
|
|
|
34431
34713
|
// src/models/identification.js
|
|
34432
34714
|
var Identification = class extends Entity {
|
|
34715
|
+
static {
|
|
34716
|
+
__name(this, "Identification");
|
|
34717
|
+
}
|
|
34433
34718
|
/**
|
|
34434
34719
|
* @typedef {Object} IdentificationData
|
|
34435
34720
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -34496,13 +34781,16 @@ Object.defineProperty(Identification.prototype, "schema", {
|
|
|
34496
34781
|
}
|
|
34497
34782
|
});
|
|
34498
34783
|
Object.defineProperty(Identification.prototype, "validator", {
|
|
34499
|
-
get: function() {
|
|
34784
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34500
34785
|
return validateIdentification;
|
|
34501
|
-
}
|
|
34786
|
+
}, "get")
|
|
34502
34787
|
});
|
|
34503
34788
|
|
|
34504
34789
|
// src/models/issue.js
|
|
34505
34790
|
var Issue = class extends Entity {
|
|
34791
|
+
static {
|
|
34792
|
+
__name(this, "Issue");
|
|
34793
|
+
}
|
|
34506
34794
|
/**
|
|
34507
34795
|
* @typedef {Object} IssueData An issue associated with ticketing and concierge.
|
|
34508
34796
|
* @property {string} id - Identifier of the object.
|
|
@@ -34563,13 +34851,16 @@ Object.defineProperty(Issue.prototype, "schema", {
|
|
|
34563
34851
|
}
|
|
34564
34852
|
});
|
|
34565
34853
|
Object.defineProperty(Issue.prototype, "validator", {
|
|
34566
|
-
get: function() {
|
|
34854
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34567
34855
|
return validateIssue;
|
|
34568
|
-
}
|
|
34856
|
+
}, "get")
|
|
34569
34857
|
});
|
|
34570
34858
|
|
|
34571
34859
|
// src/models/lock.js
|
|
34572
34860
|
var Lock = class extends Entity {
|
|
34861
|
+
static {
|
|
34862
|
+
__name(this, "Lock");
|
|
34863
|
+
}
|
|
34573
34864
|
/**
|
|
34574
34865
|
* @typedef {Object} LockData Any smart lock
|
|
34575
34866
|
* @property {string} id - Identifier of the object.
|
|
@@ -34662,13 +34953,16 @@ Object.defineProperty(Lock.prototype, "schema", {
|
|
|
34662
34953
|
}
|
|
34663
34954
|
});
|
|
34664
34955
|
Object.defineProperty(Lock.prototype, "validator", {
|
|
34665
|
-
get: function() {
|
|
34956
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34666
34957
|
return validateLock;
|
|
34667
|
-
}
|
|
34958
|
+
}, "get")
|
|
34668
34959
|
});
|
|
34669
34960
|
|
|
34670
34961
|
// src/models/log.js
|
|
34671
34962
|
var Log = class extends Entity {
|
|
34963
|
+
static {
|
|
34964
|
+
__name(this, "Log");
|
|
34965
|
+
}
|
|
34672
34966
|
/**
|
|
34673
34967
|
* @typedef {Object} LogData
|
|
34674
34968
|
* @property {"log"} [type] - Default: "log"
|
|
@@ -34754,13 +35048,16 @@ Object.defineProperty(Log.prototype, "schema", {
|
|
|
34754
35048
|
}
|
|
34755
35049
|
});
|
|
34756
35050
|
Object.defineProperty(Log.prototype, "validator", {
|
|
34757
|
-
get: function() {
|
|
35051
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34758
35052
|
return validateLog;
|
|
34759
|
-
}
|
|
35053
|
+
}, "get")
|
|
34760
35054
|
});
|
|
34761
35055
|
|
|
34762
35056
|
// src/models/mediaFile.js
|
|
34763
35057
|
var MediaFile = class extends Entity {
|
|
35058
|
+
static {
|
|
35059
|
+
__name(this, "MediaFile");
|
|
35060
|
+
}
|
|
34764
35061
|
/**
|
|
34765
35062
|
* @typedef {Object} MediaFileData Any media file
|
|
34766
35063
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -34850,13 +35147,16 @@ Object.defineProperty(MediaFile.prototype, "schema", {
|
|
|
34850
35147
|
}
|
|
34851
35148
|
});
|
|
34852
35149
|
Object.defineProperty(MediaFile.prototype, "validator", {
|
|
34853
|
-
get: function() {
|
|
35150
|
+
get: /* @__PURE__ */ __name(function() {
|
|
34854
35151
|
return validateMediaFile;
|
|
34855
|
-
}
|
|
35152
|
+
}, "get")
|
|
34856
35153
|
});
|
|
34857
35154
|
|
|
34858
35155
|
// src/models/mediaSource.js
|
|
34859
35156
|
var MediaSource = class extends Entity {
|
|
35157
|
+
static {
|
|
35158
|
+
__name(this, "MediaSource");
|
|
35159
|
+
}
|
|
34860
35160
|
/**
|
|
34861
35161
|
* @typedef {Object} MediaSourceData Any media source
|
|
34862
35162
|
* @property {string} id - Identifier of the object.
|
|
@@ -35108,13 +35408,16 @@ Object.defineProperty(MediaSource.prototype, "schema", {
|
|
|
35108
35408
|
}
|
|
35109
35409
|
});
|
|
35110
35410
|
Object.defineProperty(MediaSource.prototype, "validator", {
|
|
35111
|
-
get: function() {
|
|
35411
|
+
get: /* @__PURE__ */ __name(function() {
|
|
35112
35412
|
return validateMediaSource;
|
|
35113
|
-
}
|
|
35413
|
+
}, "get")
|
|
35114
35414
|
});
|
|
35115
35415
|
|
|
35116
35416
|
// src/models/motionSensor.js
|
|
35117
35417
|
var MotionSensor = class extends Entity {
|
|
35418
|
+
static {
|
|
35419
|
+
__name(this, "MotionSensor");
|
|
35420
|
+
}
|
|
35118
35421
|
/**
|
|
35119
35422
|
* @typedef {Object} MotionSensorData Any smart motion sensor
|
|
35120
35423
|
* @property {string} id - Identifier of the object.
|
|
@@ -35163,13 +35466,16 @@ Object.defineProperty(MotionSensor.prototype, "schema", {
|
|
|
35163
35466
|
}
|
|
35164
35467
|
});
|
|
35165
35468
|
Object.defineProperty(MotionSensor.prototype, "validator", {
|
|
35166
|
-
get: function() {
|
|
35469
|
+
get: /* @__PURE__ */ __name(function() {
|
|
35167
35470
|
return validateMotionSensor;
|
|
35168
|
-
}
|
|
35471
|
+
}, "get")
|
|
35169
35472
|
});
|
|
35170
35473
|
|
|
35171
35474
|
// src/models/order.js
|
|
35172
35475
|
var Order = class extends Entity {
|
|
35476
|
+
static {
|
|
35477
|
+
__name(this, "Order");
|
|
35478
|
+
}
|
|
35173
35479
|
/**
|
|
35174
35480
|
* @typedef {Object} OrderData A purchase order for products or services.
|
|
35175
35481
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -35399,13 +35705,16 @@ Object.defineProperty(Order.prototype, "schema", {
|
|
|
35399
35705
|
}
|
|
35400
35706
|
});
|
|
35401
35707
|
Object.defineProperty(Order.prototype, "validator", {
|
|
35402
|
-
get: function() {
|
|
35708
|
+
get: /* @__PURE__ */ __name(function() {
|
|
35403
35709
|
return validateOrder;
|
|
35404
|
-
}
|
|
35710
|
+
}, "get")
|
|
35405
35711
|
});
|
|
35406
35712
|
|
|
35407
35713
|
// src/models/organization.js
|
|
35408
35714
|
var Organization = class extends Entity {
|
|
35715
|
+
static {
|
|
35716
|
+
__name(this, "Organization");
|
|
35717
|
+
}
|
|
35409
35718
|
/**
|
|
35410
35719
|
* @typedef {Object} OrganizationData An organization is a group or entity that subscribes to Kohost software.
|
|
35411
35720
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -35560,13 +35869,16 @@ Object.defineProperty(Organization.prototype, "schema", {
|
|
|
35560
35869
|
}
|
|
35561
35870
|
});
|
|
35562
35871
|
Object.defineProperty(Organization.prototype, "validator", {
|
|
35563
|
-
get: function() {
|
|
35872
|
+
get: /* @__PURE__ */ __name(function() {
|
|
35564
35873
|
return validateOrganization;
|
|
35565
|
-
}
|
|
35874
|
+
}, "get")
|
|
35566
35875
|
});
|
|
35567
35876
|
|
|
35568
35877
|
// src/models/payment.js
|
|
35569
35878
|
var Payment = class extends Entity {
|
|
35879
|
+
static {
|
|
35880
|
+
__name(this, "Payment");
|
|
35881
|
+
}
|
|
35570
35882
|
/**
|
|
35571
35883
|
* @typedef {Object} PaymentData
|
|
35572
35884
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -35629,13 +35941,16 @@ Object.defineProperty(Payment.prototype, "schema", {
|
|
|
35629
35941
|
}
|
|
35630
35942
|
});
|
|
35631
35943
|
Object.defineProperty(Payment.prototype, "validator", {
|
|
35632
|
-
get: function() {
|
|
35944
|
+
get: /* @__PURE__ */ __name(function() {
|
|
35633
35945
|
return validatePayment;
|
|
35634
|
-
}
|
|
35946
|
+
}, "get")
|
|
35635
35947
|
});
|
|
35636
35948
|
|
|
35637
35949
|
// src/models/policy.js
|
|
35638
35950
|
var Policy = class extends Entity {
|
|
35951
|
+
static {
|
|
35952
|
+
__name(this, "Policy");
|
|
35953
|
+
}
|
|
35639
35954
|
/**
|
|
35640
35955
|
* @typedef {Object} PolicyData A policy is a set of permissions that can be applied to a user to limit their access to resources.
|
|
35641
35956
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -35704,13 +36019,16 @@ Object.defineProperty(Policy.prototype, "schema", {
|
|
|
35704
36019
|
}
|
|
35705
36020
|
});
|
|
35706
36021
|
Object.defineProperty(Policy.prototype, "validator", {
|
|
35707
|
-
get: function() {
|
|
36022
|
+
get: /* @__PURE__ */ __name(function() {
|
|
35708
36023
|
return validatePolicy;
|
|
35709
|
-
}
|
|
36024
|
+
}, "get")
|
|
35710
36025
|
});
|
|
35711
36026
|
|
|
35712
36027
|
// src/models/product.js
|
|
35713
36028
|
var Product = class extends Entity {
|
|
36029
|
+
static {
|
|
36030
|
+
__name(this, "Product");
|
|
36031
|
+
}
|
|
35714
36032
|
/**
|
|
35715
36033
|
* @typedef {Object} ProductData
|
|
35716
36034
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -35767,13 +36085,16 @@ Object.defineProperty(Product.prototype, "schema", {
|
|
|
35767
36085
|
}
|
|
35768
36086
|
});
|
|
35769
36087
|
Object.defineProperty(Product.prototype, "validator", {
|
|
35770
|
-
get: function() {
|
|
36088
|
+
get: /* @__PURE__ */ __name(function() {
|
|
35771
36089
|
return validateProduct;
|
|
35772
|
-
}
|
|
36090
|
+
}, "get")
|
|
35773
36091
|
});
|
|
35774
36092
|
|
|
35775
36093
|
// src/models/property.js
|
|
35776
36094
|
var Property = class extends Entity {
|
|
36095
|
+
static {
|
|
36096
|
+
__name(this, "Property");
|
|
36097
|
+
}
|
|
35777
36098
|
/**
|
|
35778
36099
|
* @typedef {Object} PropertyData A property is a physical asset or building
|
|
35779
36100
|
* @property {string} id - Identifier of the object.
|
|
@@ -36182,13 +36503,16 @@ Object.defineProperty(Property.prototype, "schema", {
|
|
|
36182
36503
|
}
|
|
36183
36504
|
});
|
|
36184
36505
|
Object.defineProperty(Property.prototype, "validator", {
|
|
36185
|
-
get: function() {
|
|
36506
|
+
get: /* @__PURE__ */ __name(function() {
|
|
36186
36507
|
return validateProperty;
|
|
36187
|
-
}
|
|
36508
|
+
}, "get")
|
|
36188
36509
|
});
|
|
36189
36510
|
|
|
36190
36511
|
// src/models/reservation.js
|
|
36191
36512
|
var Reservation = class extends Entity {
|
|
36513
|
+
static {
|
|
36514
|
+
__name(this, "Reservation");
|
|
36515
|
+
}
|
|
36192
36516
|
/**
|
|
36193
36517
|
* @typedef {Object} ReservationData
|
|
36194
36518
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -36371,13 +36695,16 @@ Object.defineProperty(Reservation.prototype, "schema", {
|
|
|
36371
36695
|
}
|
|
36372
36696
|
});
|
|
36373
36697
|
Object.defineProperty(Reservation.prototype, "validator", {
|
|
36374
|
-
get: function() {
|
|
36698
|
+
get: /* @__PURE__ */ __name(function() {
|
|
36375
36699
|
return validateReservation;
|
|
36376
|
-
}
|
|
36700
|
+
}, "get")
|
|
36377
36701
|
});
|
|
36378
36702
|
|
|
36379
36703
|
// src/models/room.js
|
|
36380
36704
|
var Room = class extends Entity {
|
|
36705
|
+
static {
|
|
36706
|
+
__name(this, "Room");
|
|
36707
|
+
}
|
|
36381
36708
|
/**
|
|
36382
36709
|
* @typedef {Object} RoomData A room represents a physical space of controllable IoT devices
|
|
36383
36710
|
* @property {string} id - Identifier of the object.
|
|
@@ -36575,13 +36902,16 @@ Object.defineProperty(Room.prototype, "schema", {
|
|
|
36575
36902
|
}
|
|
36576
36903
|
});
|
|
36577
36904
|
Object.defineProperty(Room.prototype, "validator", {
|
|
36578
|
-
get: function() {
|
|
36905
|
+
get: /* @__PURE__ */ __name(function() {
|
|
36579
36906
|
return validateRoom;
|
|
36580
|
-
}
|
|
36907
|
+
}, "get")
|
|
36581
36908
|
});
|
|
36582
36909
|
|
|
36583
36910
|
// src/models/scene.js
|
|
36584
36911
|
var Scene = class extends Entity {
|
|
36912
|
+
static {
|
|
36913
|
+
__name(this, "Scene");
|
|
36914
|
+
}
|
|
36585
36915
|
/**
|
|
36586
36916
|
* @typedef {Object} SceneData A room represents a physical space of controllable IoT devices
|
|
36587
36917
|
* @property {string} id - Identifier of the object.
|
|
@@ -36708,13 +37038,16 @@ Object.defineProperty(Scene.prototype, "schema", {
|
|
|
36708
37038
|
}
|
|
36709
37039
|
});
|
|
36710
37040
|
Object.defineProperty(Scene.prototype, "validator", {
|
|
36711
|
-
get: function() {
|
|
37041
|
+
get: /* @__PURE__ */ __name(function() {
|
|
36712
37042
|
return validateScene;
|
|
36713
|
-
}
|
|
37043
|
+
}, "get")
|
|
36714
37044
|
});
|
|
36715
37045
|
|
|
36716
37046
|
// src/models/shortLink.js
|
|
36717
37047
|
var ShortLink = class extends Entity {
|
|
37048
|
+
static {
|
|
37049
|
+
__name(this, "ShortLink");
|
|
37050
|
+
}
|
|
36718
37051
|
/**
|
|
36719
37052
|
* @typedef {Object} ShortLinkData
|
|
36720
37053
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -36756,13 +37089,16 @@ Object.defineProperty(ShortLink.prototype, "schema", {
|
|
|
36756
37089
|
}
|
|
36757
37090
|
});
|
|
36758
37091
|
Object.defineProperty(ShortLink.prototype, "validator", {
|
|
36759
|
-
get: function() {
|
|
37092
|
+
get: /* @__PURE__ */ __name(function() {
|
|
36760
37093
|
return validateShortLink;
|
|
36761
|
-
}
|
|
37094
|
+
}, "get")
|
|
36762
37095
|
});
|
|
36763
37096
|
|
|
36764
37097
|
// src/models/smsMessage.js
|
|
36765
37098
|
var SmsMessage = class extends Entity {
|
|
37099
|
+
static {
|
|
37100
|
+
__name(this, "SmsMessage");
|
|
37101
|
+
}
|
|
36766
37102
|
/**
|
|
36767
37103
|
* @typedef {Object} SmsMessageData
|
|
36768
37104
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -36836,13 +37172,16 @@ Object.defineProperty(SmsMessage.prototype, "schema", {
|
|
|
36836
37172
|
}
|
|
36837
37173
|
});
|
|
36838
37174
|
Object.defineProperty(SmsMessage.prototype, "validator", {
|
|
36839
|
-
get: function() {
|
|
37175
|
+
get: /* @__PURE__ */ __name(function() {
|
|
36840
37176
|
return validateSmsMessage;
|
|
36841
|
-
}
|
|
37177
|
+
}, "get")
|
|
36842
37178
|
});
|
|
36843
37179
|
|
|
36844
37180
|
// src/models/space.js
|
|
36845
37181
|
var Space = class extends Entity {
|
|
37182
|
+
static {
|
|
37183
|
+
__name(this, "Space");
|
|
37184
|
+
}
|
|
36846
37185
|
/**
|
|
36847
37186
|
* @typedef {Object} SpaceData
|
|
36848
37187
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -37018,13 +37357,16 @@ Object.defineProperty(Space.prototype, "schema", {
|
|
|
37018
37357
|
}
|
|
37019
37358
|
});
|
|
37020
37359
|
Object.defineProperty(Space.prototype, "validator", {
|
|
37021
|
-
get: function() {
|
|
37360
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37022
37361
|
return validateSpace;
|
|
37023
|
-
}
|
|
37362
|
+
}, "get")
|
|
37024
37363
|
});
|
|
37025
37364
|
|
|
37026
37365
|
// src/models/switch.js
|
|
37027
37366
|
var Switch = class extends Entity {
|
|
37367
|
+
static {
|
|
37368
|
+
__name(this, "Switch");
|
|
37369
|
+
}
|
|
37028
37370
|
/**
|
|
37029
37371
|
* @typedef {Object} SwitchData Any smart switch
|
|
37030
37372
|
* @property {string} id - Identifier of the object.
|
|
@@ -37084,13 +37426,16 @@ Object.defineProperty(Switch.prototype, "schema", {
|
|
|
37084
37426
|
}
|
|
37085
37427
|
});
|
|
37086
37428
|
Object.defineProperty(Switch.prototype, "validator", {
|
|
37087
|
-
get: function() {
|
|
37429
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37088
37430
|
return validateSwitch;
|
|
37089
|
-
}
|
|
37431
|
+
}, "get")
|
|
37090
37432
|
});
|
|
37091
37433
|
|
|
37092
37434
|
// src/models/systemUser.js
|
|
37093
37435
|
var SystemUser = class extends Entity {
|
|
37436
|
+
static {
|
|
37437
|
+
__name(this, "SystemUser");
|
|
37438
|
+
}
|
|
37094
37439
|
/**
|
|
37095
37440
|
* @typedef {Object} SystemUserData A system user is a user that originated from an external 3rd party system.
|
|
37096
37441
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -37197,13 +37542,16 @@ Object.defineProperty(SystemUser.prototype, "schema", {
|
|
|
37197
37542
|
}
|
|
37198
37543
|
});
|
|
37199
37544
|
Object.defineProperty(SystemUser.prototype, "validator", {
|
|
37200
|
-
get: function() {
|
|
37545
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37201
37546
|
return validateSystemUser;
|
|
37202
|
-
}
|
|
37547
|
+
}, "get")
|
|
37203
37548
|
});
|
|
37204
37549
|
|
|
37205
37550
|
// src/models/thermostat.js
|
|
37206
37551
|
var Thermostat = class extends Entity {
|
|
37552
|
+
static {
|
|
37553
|
+
__name(this, "Thermostat");
|
|
37554
|
+
}
|
|
37207
37555
|
/**
|
|
37208
37556
|
* @typedef {Object} ThermostatData Any smart thermostat
|
|
37209
37557
|
* @property {string} id - Identifier of the object.
|
|
@@ -37363,13 +37711,16 @@ Object.defineProperty(Thermostat.prototype, "schema", {
|
|
|
37363
37711
|
}
|
|
37364
37712
|
});
|
|
37365
37713
|
Object.defineProperty(Thermostat.prototype, "validator", {
|
|
37366
|
-
get: function() {
|
|
37714
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37367
37715
|
return validateThermostat;
|
|
37368
|
-
}
|
|
37716
|
+
}, "get")
|
|
37369
37717
|
});
|
|
37370
37718
|
|
|
37371
37719
|
// src/models/ticket.js
|
|
37372
37720
|
var Ticket = class extends Entity {
|
|
37721
|
+
static {
|
|
37722
|
+
__name(this, "Ticket");
|
|
37723
|
+
}
|
|
37373
37724
|
/**
|
|
37374
37725
|
* @typedef {Object} TicketData A ticket is a request from a user.
|
|
37375
37726
|
* @property {string} id - Identifier of the object.
|
|
@@ -37573,13 +37924,16 @@ Object.defineProperty(Ticket.prototype, "schema", {
|
|
|
37573
37924
|
}
|
|
37574
37925
|
});
|
|
37575
37926
|
Object.defineProperty(Ticket.prototype, "validator", {
|
|
37576
|
-
get: function() {
|
|
37927
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37577
37928
|
return validateTicket;
|
|
37578
|
-
}
|
|
37929
|
+
}, "get")
|
|
37579
37930
|
});
|
|
37580
37931
|
|
|
37581
37932
|
// src/models/timeSheet.js
|
|
37582
37933
|
var TimeSheet = class extends Entity {
|
|
37934
|
+
static {
|
|
37935
|
+
__name(this, "TimeSheet");
|
|
37936
|
+
}
|
|
37583
37937
|
/**
|
|
37584
37938
|
* @typedef {Object} TimeSheetData
|
|
37585
37939
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -37644,13 +37998,16 @@ Object.defineProperty(TimeSheet.prototype, "schema", {
|
|
|
37644
37998
|
}
|
|
37645
37999
|
});
|
|
37646
38000
|
Object.defineProperty(TimeSheet.prototype, "validator", {
|
|
37647
|
-
get: function() {
|
|
38001
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37648
38002
|
return validateTimeSheet;
|
|
37649
|
-
}
|
|
38003
|
+
}, "get")
|
|
37650
38004
|
});
|
|
37651
38005
|
|
|
37652
38006
|
// src/models/user.js
|
|
37653
38007
|
var User = class extends Entity {
|
|
38008
|
+
static {
|
|
38009
|
+
__name(this, "User");
|
|
38010
|
+
}
|
|
37654
38011
|
/**
|
|
37655
38012
|
* @typedef {Object} UserData
|
|
37656
38013
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -37856,13 +38213,16 @@ Object.defineProperty(User.prototype, "schema", {
|
|
|
37856
38213
|
}
|
|
37857
38214
|
});
|
|
37858
38215
|
Object.defineProperty(User.prototype, "validator", {
|
|
37859
|
-
get: function() {
|
|
38216
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37860
38217
|
return validateUser;
|
|
37861
|
-
}
|
|
38218
|
+
}, "get")
|
|
37862
38219
|
});
|
|
37863
38220
|
|
|
37864
38221
|
// src/models/vendor.js
|
|
37865
38222
|
var Vendor = class extends Entity {
|
|
38223
|
+
static {
|
|
38224
|
+
__name(this, "Vendor");
|
|
38225
|
+
}
|
|
37866
38226
|
/**
|
|
37867
38227
|
* @typedef {Object} VendorData
|
|
37868
38228
|
* @property {string} [id] - Identifier of the object.
|
|
@@ -37913,13 +38273,16 @@ Object.defineProperty(Vendor.prototype, "schema", {
|
|
|
37913
38273
|
}
|
|
37914
38274
|
});
|
|
37915
38275
|
Object.defineProperty(Vendor.prototype, "validator", {
|
|
37916
|
-
get: function() {
|
|
38276
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37917
38277
|
return validateVendor;
|
|
37918
|
-
}
|
|
38278
|
+
}, "get")
|
|
37919
38279
|
});
|
|
37920
38280
|
|
|
37921
38281
|
// src/models/windowCovering.js
|
|
37922
38282
|
var WindowCovering = class extends Entity {
|
|
38283
|
+
static {
|
|
38284
|
+
__name(this, "WindowCovering");
|
|
38285
|
+
}
|
|
37923
38286
|
/**
|
|
37924
38287
|
* @typedef {Object} WindowCoveringData Any smart window covering
|
|
37925
38288
|
* @property {string} id - Identifier of the object.
|
|
@@ -37986,9 +38349,9 @@ Object.defineProperty(WindowCovering.prototype, "schema", {
|
|
|
37986
38349
|
}
|
|
37987
38350
|
});
|
|
37988
38351
|
Object.defineProperty(WindowCovering.prototype, "validator", {
|
|
37989
|
-
get: function() {
|
|
38352
|
+
get: /* @__PURE__ */ __name(function() {
|
|
37990
38353
|
return validateWindowCovering;
|
|
37991
|
-
}
|
|
38354
|
+
}, "get")
|
|
37992
38355
|
});
|
|
37993
38356
|
|
|
37994
38357
|
// src/useCases/index.js
|
|
@@ -38211,6 +38574,9 @@ __export(useCases_exports, {
|
|
|
38211
38574
|
|
|
38212
38575
|
// src/useCases/assignSpaceToReservation.js
|
|
38213
38576
|
var AssignSpaceToReservationCommand = class _AssignSpaceToReservationCommand {
|
|
38577
|
+
static {
|
|
38578
|
+
__name(this, "AssignSpaceToReservationCommand");
|
|
38579
|
+
}
|
|
38214
38580
|
/**
|
|
38215
38581
|
* @description
|
|
38216
38582
|
* @constructor
|
|
@@ -38274,6 +38640,9 @@ var AssignSpaceToReservationCommand = class _AssignSpaceToReservationCommand {
|
|
|
38274
38640
|
|
|
38275
38641
|
// src/useCases/autoAssociateDiscoveredDevices.js
|
|
38276
38642
|
var AutoAssociateDiscoveredDevicesCommand = class _AutoAssociateDiscoveredDevicesCommand {
|
|
38643
|
+
static {
|
|
38644
|
+
__name(this, "AutoAssociateDiscoveredDevicesCommand");
|
|
38645
|
+
}
|
|
38277
38646
|
/**
|
|
38278
38647
|
* @description
|
|
38279
38648
|
* @constructor
|
|
@@ -38337,6 +38706,9 @@ var AutoAssociateDiscoveredDevicesCommand = class _AutoAssociateDiscoveredDevice
|
|
|
38337
38706
|
|
|
38338
38707
|
// src/useCases/autoCloseTickets.js
|
|
38339
38708
|
var AutoCloseTicketsCommand = class _AutoCloseTicketsCommand {
|
|
38709
|
+
static {
|
|
38710
|
+
__name(this, "AutoCloseTicketsCommand");
|
|
38711
|
+
}
|
|
38340
38712
|
/**
|
|
38341
38713
|
* @description
|
|
38342
38714
|
* @constructor
|
|
@@ -38400,6 +38772,9 @@ var AutoCloseTicketsCommand = class _AutoCloseTicketsCommand {
|
|
|
38400
38772
|
|
|
38401
38773
|
// src/useCases/batchNotifyCheckIn.js
|
|
38402
38774
|
var BatchNotifyCheckInCommand = class _BatchNotifyCheckInCommand {
|
|
38775
|
+
static {
|
|
38776
|
+
__name(this, "BatchNotifyCheckInCommand");
|
|
38777
|
+
}
|
|
38403
38778
|
/**
|
|
38404
38779
|
* @description
|
|
38405
38780
|
* @constructor
|
|
@@ -38463,6 +38838,9 @@ var BatchNotifyCheckInCommand = class _BatchNotifyCheckInCommand {
|
|
|
38463
38838
|
|
|
38464
38839
|
// src/useCases/batchNotifyCheckOut.js
|
|
38465
38840
|
var BatchNotifyCheckOutCommand = class _BatchNotifyCheckOutCommand {
|
|
38841
|
+
static {
|
|
38842
|
+
__name(this, "BatchNotifyCheckOutCommand");
|
|
38843
|
+
}
|
|
38466
38844
|
/**
|
|
38467
38845
|
* @description
|
|
38468
38846
|
* @constructor
|
|
@@ -38526,6 +38904,9 @@ var BatchNotifyCheckOutCommand = class _BatchNotifyCheckOutCommand {
|
|
|
38526
38904
|
|
|
38527
38905
|
// src/useCases/batchNotifyMissedCheckOut.js
|
|
38528
38906
|
var BatchNotifyMissedCheckOutCommand = class _BatchNotifyMissedCheckOutCommand {
|
|
38907
|
+
static {
|
|
38908
|
+
__name(this, "BatchNotifyMissedCheckOutCommand");
|
|
38909
|
+
}
|
|
38529
38910
|
/**
|
|
38530
38911
|
* @description
|
|
38531
38912
|
* @constructor
|
|
@@ -38589,6 +38970,9 @@ var BatchNotifyMissedCheckOutCommand = class _BatchNotifyMissedCheckOutCommand {
|
|
|
38589
38970
|
|
|
38590
38971
|
// src/useCases/batchNotifyPreArrival.js
|
|
38591
38972
|
var BatchNotifyPreArrivalCommand = class _BatchNotifyPreArrivalCommand {
|
|
38973
|
+
static {
|
|
38974
|
+
__name(this, "BatchNotifyPreArrivalCommand");
|
|
38975
|
+
}
|
|
38592
38976
|
/**
|
|
38593
38977
|
* @description
|
|
38594
38978
|
* @constructor
|
|
@@ -38652,6 +39036,9 @@ var BatchNotifyPreArrivalCommand = class _BatchNotifyPreArrivalCommand {
|
|
|
38652
39036
|
|
|
38653
39037
|
// src/useCases/bulkUpdateIssue.js
|
|
38654
39038
|
var BulkUpdateIssueCommand = class _BulkUpdateIssueCommand {
|
|
39039
|
+
static {
|
|
39040
|
+
__name(this, "BulkUpdateIssueCommand");
|
|
39041
|
+
}
|
|
38655
39042
|
/**
|
|
38656
39043
|
* @description
|
|
38657
39044
|
* @constructor
|
|
@@ -38715,6 +39102,9 @@ var BulkUpdateIssueCommand = class _BulkUpdateIssueCommand {
|
|
|
38715
39102
|
|
|
38716
39103
|
// src/useCases/checkInReservation.js
|
|
38717
39104
|
var CheckInReservationCommand = class _CheckInReservationCommand {
|
|
39105
|
+
static {
|
|
39106
|
+
__name(this, "CheckInReservationCommand");
|
|
39107
|
+
}
|
|
38718
39108
|
/**
|
|
38719
39109
|
* @description
|
|
38720
39110
|
* @constructor
|
|
@@ -38778,6 +39168,9 @@ var CheckInReservationCommand = class _CheckInReservationCommand {
|
|
|
38778
39168
|
|
|
38779
39169
|
// src/useCases/checkOutReservation.js
|
|
38780
39170
|
var CheckOutReservationCommand = class _CheckOutReservationCommand {
|
|
39171
|
+
static {
|
|
39172
|
+
__name(this, "CheckOutReservationCommand");
|
|
39173
|
+
}
|
|
38781
39174
|
/**
|
|
38782
39175
|
* @description
|
|
38783
39176
|
* @constructor
|
|
@@ -38841,6 +39234,9 @@ var CheckOutReservationCommand = class _CheckOutReservationCommand {
|
|
|
38841
39234
|
|
|
38842
39235
|
// src/useCases/checkVerificationCode.js
|
|
38843
39236
|
var CheckVerificationCodeCommand = class _CheckVerificationCodeCommand {
|
|
39237
|
+
static {
|
|
39238
|
+
__name(this, "CheckVerificationCodeCommand");
|
|
39239
|
+
}
|
|
38844
39240
|
/**
|
|
38845
39241
|
* @description
|
|
38846
39242
|
* @constructor
|
|
@@ -38904,6 +39300,9 @@ var CheckVerificationCodeCommand = class _CheckVerificationCodeCommand {
|
|
|
38904
39300
|
|
|
38905
39301
|
// src/useCases/createAlarm.js
|
|
38906
39302
|
var CreateAlarmCommand = class _CreateAlarmCommand {
|
|
39303
|
+
static {
|
|
39304
|
+
__name(this, "CreateAlarmCommand");
|
|
39305
|
+
}
|
|
38907
39306
|
/**
|
|
38908
39307
|
* @description
|
|
38909
39308
|
* @constructor
|
|
@@ -38967,6 +39366,9 @@ var CreateAlarmCommand = class _CreateAlarmCommand {
|
|
|
38967
39366
|
|
|
38968
39367
|
// src/useCases/createAnnouncement.js
|
|
38969
39368
|
var CreateAnnouncementCommand = class _CreateAnnouncementCommand {
|
|
39369
|
+
static {
|
|
39370
|
+
__name(this, "CreateAnnouncementCommand");
|
|
39371
|
+
}
|
|
38970
39372
|
/**
|
|
38971
39373
|
* @description
|
|
38972
39374
|
* @constructor
|
|
@@ -39030,6 +39432,9 @@ var CreateAnnouncementCommand = class _CreateAnnouncementCommand {
|
|
|
39030
39432
|
|
|
39031
39433
|
// src/useCases/createCamera.js
|
|
39032
39434
|
var CreateCameraCommand = class _CreateCameraCommand {
|
|
39435
|
+
static {
|
|
39436
|
+
__name(this, "CreateCameraCommand");
|
|
39437
|
+
}
|
|
39033
39438
|
/**
|
|
39034
39439
|
* @description
|
|
39035
39440
|
* @constructor
|
|
@@ -39093,6 +39498,9 @@ var CreateCameraCommand = class _CreateCameraCommand {
|
|
|
39093
39498
|
|
|
39094
39499
|
// src/useCases/createCateory.js
|
|
39095
39500
|
var CreateCateoryCommand = class _CreateCateoryCommand {
|
|
39501
|
+
static {
|
|
39502
|
+
__name(this, "CreateCateoryCommand");
|
|
39503
|
+
}
|
|
39096
39504
|
/**
|
|
39097
39505
|
* @description
|
|
39098
39506
|
* @constructor
|
|
@@ -39156,6 +39564,9 @@ var CreateCateoryCommand = class _CreateCateoryCommand {
|
|
|
39156
39564
|
|
|
39157
39565
|
// src/useCases/createCourtesy.js
|
|
39158
39566
|
var CreateCourtesyCommand = class _CreateCourtesyCommand {
|
|
39567
|
+
static {
|
|
39568
|
+
__name(this, "CreateCourtesyCommand");
|
|
39569
|
+
}
|
|
39159
39570
|
/**
|
|
39160
39571
|
* @description
|
|
39161
39572
|
* @constructor
|
|
@@ -39219,6 +39630,9 @@ var CreateCourtesyCommand = class _CreateCourtesyCommand {
|
|
|
39219
39630
|
|
|
39220
39631
|
// src/useCases/createDefaultScenes.js
|
|
39221
39632
|
var CreateDefaultScenesCommand = class _CreateDefaultScenesCommand {
|
|
39633
|
+
static {
|
|
39634
|
+
__name(this, "CreateDefaultScenesCommand");
|
|
39635
|
+
}
|
|
39222
39636
|
/**
|
|
39223
39637
|
* @description
|
|
39224
39638
|
* @constructor
|
|
@@ -39282,6 +39696,9 @@ var CreateDefaultScenesCommand = class _CreateDefaultScenesCommand {
|
|
|
39282
39696
|
|
|
39283
39697
|
// src/useCases/createDimmer.js
|
|
39284
39698
|
var CreateDimmerCommand = class _CreateDimmerCommand {
|
|
39699
|
+
static {
|
|
39700
|
+
__name(this, "CreateDimmerCommand");
|
|
39701
|
+
}
|
|
39285
39702
|
/**
|
|
39286
39703
|
* @description
|
|
39287
39704
|
* @constructor
|
|
@@ -39345,6 +39762,9 @@ var CreateDimmerCommand = class _CreateDimmerCommand {
|
|
|
39345
39762
|
|
|
39346
39763
|
// src/useCases/createDiscoveredDevice.js
|
|
39347
39764
|
var CreateDiscoveredDeviceCommand = class _CreateDiscoveredDeviceCommand {
|
|
39765
|
+
static {
|
|
39766
|
+
__name(this, "CreateDiscoveredDeviceCommand");
|
|
39767
|
+
}
|
|
39348
39768
|
/**
|
|
39349
39769
|
* @description
|
|
39350
39770
|
* @constructor
|
|
@@ -39408,6 +39828,9 @@ var CreateDiscoveredDeviceCommand = class _CreateDiscoveredDeviceCommand {
|
|
|
39408
39828
|
|
|
39409
39829
|
// src/useCases/createDiscoveredDeviceAssociation.js
|
|
39410
39830
|
var CreateDiscoveredDeviceAssociationCommand = class _CreateDiscoveredDeviceAssociationCommand {
|
|
39831
|
+
static {
|
|
39832
|
+
__name(this, "CreateDiscoveredDeviceAssociationCommand");
|
|
39833
|
+
}
|
|
39411
39834
|
/**
|
|
39412
39835
|
* @description
|
|
39413
39836
|
* @constructor
|
|
@@ -39471,6 +39894,9 @@ var CreateDiscoveredDeviceAssociationCommand = class _CreateDiscoveredDeviceAsso
|
|
|
39471
39894
|
|
|
39472
39895
|
// src/useCases/createDiscoveredDeviceAssociationMap.js
|
|
39473
39896
|
var CreateDiscoveredDeviceAssociationMapCommand = class _CreateDiscoveredDeviceAssociationMapCommand {
|
|
39897
|
+
static {
|
|
39898
|
+
__name(this, "CreateDiscoveredDeviceAssociationMapCommand");
|
|
39899
|
+
}
|
|
39474
39900
|
/**
|
|
39475
39901
|
* @description
|
|
39476
39902
|
* @constructor
|
|
@@ -39534,6 +39960,9 @@ var CreateDiscoveredDeviceAssociationMapCommand = class _CreateDiscoveredDeviceA
|
|
|
39534
39960
|
|
|
39535
39961
|
// src/useCases/createImageUploadEndpoint.js
|
|
39536
39962
|
var CreateImageUploadEndpointCommand = class _CreateImageUploadEndpointCommand {
|
|
39963
|
+
static {
|
|
39964
|
+
__name(this, "CreateImageUploadEndpointCommand");
|
|
39965
|
+
}
|
|
39537
39966
|
/**
|
|
39538
39967
|
* @description
|
|
39539
39968
|
* @constructor
|
|
@@ -39597,6 +40026,9 @@ var CreateImageUploadEndpointCommand = class _CreateImageUploadEndpointCommand {
|
|
|
39597
40026
|
|
|
39598
40027
|
// src/useCases/createIssue.js
|
|
39599
40028
|
var CreateIssueCommand = class _CreateIssueCommand {
|
|
40029
|
+
static {
|
|
40030
|
+
__name(this, "CreateIssueCommand");
|
|
40031
|
+
}
|
|
39600
40032
|
/**
|
|
39601
40033
|
* @description
|
|
39602
40034
|
* @constructor
|
|
@@ -39660,6 +40092,9 @@ var CreateIssueCommand = class _CreateIssueCommand {
|
|
|
39660
40092
|
|
|
39661
40093
|
// src/useCases/createLock.js
|
|
39662
40094
|
var CreateLockCommand = class _CreateLockCommand {
|
|
40095
|
+
static {
|
|
40096
|
+
__name(this, "CreateLockCommand");
|
|
40097
|
+
}
|
|
39663
40098
|
/**
|
|
39664
40099
|
* @description
|
|
39665
40100
|
* @constructor
|
|
@@ -39723,6 +40158,9 @@ var CreateLockCommand = class _CreateLockCommand {
|
|
|
39723
40158
|
|
|
39724
40159
|
// src/useCases/createMediaSource.js
|
|
39725
40160
|
var CreateMediaSourceCommand = class _CreateMediaSourceCommand {
|
|
40161
|
+
static {
|
|
40162
|
+
__name(this, "CreateMediaSourceCommand");
|
|
40163
|
+
}
|
|
39726
40164
|
/**
|
|
39727
40165
|
* @description
|
|
39728
40166
|
* @constructor
|
|
@@ -39786,6 +40224,9 @@ var CreateMediaSourceCommand = class _CreateMediaSourceCommand {
|
|
|
39786
40224
|
|
|
39787
40225
|
// src/useCases/createOrganization.js
|
|
39788
40226
|
var CreateOrganizationCommand = class _CreateOrganizationCommand {
|
|
40227
|
+
static {
|
|
40228
|
+
__name(this, "CreateOrganizationCommand");
|
|
40229
|
+
}
|
|
39789
40230
|
/**
|
|
39790
40231
|
* @description
|
|
39791
40232
|
* @constructor
|
|
@@ -39849,6 +40290,9 @@ var CreateOrganizationCommand = class _CreateOrganizationCommand {
|
|
|
39849
40290
|
|
|
39850
40291
|
// src/useCases/createPolicy.js
|
|
39851
40292
|
var CreatePolicyCommand = class _CreatePolicyCommand {
|
|
40293
|
+
static {
|
|
40294
|
+
__name(this, "CreatePolicyCommand");
|
|
40295
|
+
}
|
|
39852
40296
|
/**
|
|
39853
40297
|
* @description
|
|
39854
40298
|
* @constructor
|
|
@@ -39912,6 +40356,9 @@ var CreatePolicyCommand = class _CreatePolicyCommand {
|
|
|
39912
40356
|
|
|
39913
40357
|
// src/useCases/createProperty.js
|
|
39914
40358
|
var CreatePropertyCommand = class _CreatePropertyCommand {
|
|
40359
|
+
static {
|
|
40360
|
+
__name(this, "CreatePropertyCommand");
|
|
40361
|
+
}
|
|
39915
40362
|
/**
|
|
39916
40363
|
* @description
|
|
39917
40364
|
* @constructor
|
|
@@ -39975,6 +40422,9 @@ var CreatePropertyCommand = class _CreatePropertyCommand {
|
|
|
39975
40422
|
|
|
39976
40423
|
// src/useCases/createReservation.js
|
|
39977
40424
|
var CreateReservationCommand = class _CreateReservationCommand {
|
|
40425
|
+
static {
|
|
40426
|
+
__name(this, "CreateReservationCommand");
|
|
40427
|
+
}
|
|
39978
40428
|
/**
|
|
39979
40429
|
* @description
|
|
39980
40430
|
* @constructor
|
|
@@ -40038,6 +40488,9 @@ var CreateReservationCommand = class _CreateReservationCommand {
|
|
|
40038
40488
|
|
|
40039
40489
|
// src/useCases/createRoom.js
|
|
40040
40490
|
var CreateRoomCommand = class _CreateRoomCommand {
|
|
40491
|
+
static {
|
|
40492
|
+
__name(this, "CreateRoomCommand");
|
|
40493
|
+
}
|
|
40041
40494
|
/**
|
|
40042
40495
|
* @description
|
|
40043
40496
|
* @constructor
|
|
@@ -40101,6 +40554,9 @@ var CreateRoomCommand = class _CreateRoomCommand {
|
|
|
40101
40554
|
|
|
40102
40555
|
// src/useCases/createRoomInSpace.js
|
|
40103
40556
|
var CreateRoomInSpaceCommand = class _CreateRoomInSpaceCommand {
|
|
40557
|
+
static {
|
|
40558
|
+
__name(this, "CreateRoomInSpaceCommand");
|
|
40559
|
+
}
|
|
40104
40560
|
/**
|
|
40105
40561
|
* @description
|
|
40106
40562
|
* @constructor
|
|
@@ -40164,6 +40620,9 @@ var CreateRoomInSpaceCommand = class _CreateRoomInSpaceCommand {
|
|
|
40164
40620
|
|
|
40165
40621
|
// src/useCases/createScene.js
|
|
40166
40622
|
var CreateSceneCommand = class _CreateSceneCommand {
|
|
40623
|
+
static {
|
|
40624
|
+
__name(this, "CreateSceneCommand");
|
|
40625
|
+
}
|
|
40167
40626
|
/**
|
|
40168
40627
|
* @description
|
|
40169
40628
|
* @constructor
|
|
@@ -40227,6 +40686,9 @@ var CreateSceneCommand = class _CreateSceneCommand {
|
|
|
40227
40686
|
|
|
40228
40687
|
// src/useCases/createSpace.js
|
|
40229
40688
|
var CreateSpaceCommand = class _CreateSpaceCommand {
|
|
40689
|
+
static {
|
|
40690
|
+
__name(this, "CreateSpaceCommand");
|
|
40691
|
+
}
|
|
40230
40692
|
/**
|
|
40231
40693
|
* @description
|
|
40232
40694
|
* @constructor
|
|
@@ -40290,6 +40752,9 @@ var CreateSpaceCommand = class _CreateSpaceCommand {
|
|
|
40290
40752
|
|
|
40291
40753
|
// src/useCases/createSwitch.js
|
|
40292
40754
|
var CreateSwitchCommand = class _CreateSwitchCommand {
|
|
40755
|
+
static {
|
|
40756
|
+
__name(this, "CreateSwitchCommand");
|
|
40757
|
+
}
|
|
40293
40758
|
/**
|
|
40294
40759
|
* @description
|
|
40295
40760
|
* @constructor
|
|
@@ -40353,6 +40818,9 @@ var CreateSwitchCommand = class _CreateSwitchCommand {
|
|
|
40353
40818
|
|
|
40354
40819
|
// src/useCases/createThermostat.js
|
|
40355
40820
|
var CreateThermostatCommand = class _CreateThermostatCommand {
|
|
40821
|
+
static {
|
|
40822
|
+
__name(this, "CreateThermostatCommand");
|
|
40823
|
+
}
|
|
40356
40824
|
/**
|
|
40357
40825
|
* @description
|
|
40358
40826
|
* @constructor
|
|
@@ -40416,6 +40884,9 @@ var CreateThermostatCommand = class _CreateThermostatCommand {
|
|
|
40416
40884
|
|
|
40417
40885
|
// src/useCases/createTicket.js
|
|
40418
40886
|
var CreateTicketCommand = class _CreateTicketCommand {
|
|
40887
|
+
static {
|
|
40888
|
+
__name(this, "CreateTicketCommand");
|
|
40889
|
+
}
|
|
40419
40890
|
/**
|
|
40420
40891
|
* @description
|
|
40421
40892
|
* @constructor
|
|
@@ -40479,6 +40950,9 @@ var CreateTicketCommand = class _CreateTicketCommand {
|
|
|
40479
40950
|
|
|
40480
40951
|
// src/useCases/createTicketMessage.js
|
|
40481
40952
|
var CreateTicketMessageCommand = class _CreateTicketMessageCommand {
|
|
40953
|
+
static {
|
|
40954
|
+
__name(this, "CreateTicketMessageCommand");
|
|
40955
|
+
}
|
|
40482
40956
|
/**
|
|
40483
40957
|
* @description
|
|
40484
40958
|
* @constructor
|
|
@@ -40542,6 +41016,9 @@ var CreateTicketMessageCommand = class _CreateTicketMessageCommand {
|
|
|
40542
41016
|
|
|
40543
41017
|
// src/useCases/createTimeSheet.js
|
|
40544
41018
|
var CreateTimeSheetCommand = class _CreateTimeSheetCommand {
|
|
41019
|
+
static {
|
|
41020
|
+
__name(this, "CreateTimeSheetCommand");
|
|
41021
|
+
}
|
|
40545
41022
|
/**
|
|
40546
41023
|
* @description
|
|
40547
41024
|
* @constructor
|
|
@@ -40605,6 +41082,9 @@ var CreateTimeSheetCommand = class _CreateTimeSheetCommand {
|
|
|
40605
41082
|
|
|
40606
41083
|
// src/useCases/createTimeSheetTimeEntry.js
|
|
40607
41084
|
var CreateTimeSheetTimeEntryCommand = class _CreateTimeSheetTimeEntryCommand {
|
|
41085
|
+
static {
|
|
41086
|
+
__name(this, "CreateTimeSheetTimeEntryCommand");
|
|
41087
|
+
}
|
|
40608
41088
|
/**
|
|
40609
41089
|
* @description
|
|
40610
41090
|
* @constructor
|
|
@@ -40668,6 +41148,9 @@ var CreateTimeSheetTimeEntryCommand = class _CreateTimeSheetTimeEntryCommand {
|
|
|
40668
41148
|
|
|
40669
41149
|
// src/useCases/createUser.js
|
|
40670
41150
|
var CreateUserCommand = class _CreateUserCommand {
|
|
41151
|
+
static {
|
|
41152
|
+
__name(this, "CreateUserCommand");
|
|
41153
|
+
}
|
|
40671
41154
|
/**
|
|
40672
41155
|
* @description
|
|
40673
41156
|
* @constructor
|
|
@@ -40731,6 +41214,9 @@ var CreateUserCommand = class _CreateUserCommand {
|
|
|
40731
41214
|
|
|
40732
41215
|
// src/useCases/createUserMobileKey.js
|
|
40733
41216
|
var CreateUserMobileKeyCommand = class _CreateUserMobileKeyCommand {
|
|
41217
|
+
static {
|
|
41218
|
+
__name(this, "CreateUserMobileKeyCommand");
|
|
41219
|
+
}
|
|
40734
41220
|
/**
|
|
40735
41221
|
* @description
|
|
40736
41222
|
* @constructor
|
|
@@ -40794,6 +41280,9 @@ var CreateUserMobileKeyCommand = class _CreateUserMobileKeyCommand {
|
|
|
40794
41280
|
|
|
40795
41281
|
// src/useCases/createVendor.js
|
|
40796
41282
|
var CreateVendorCommand = class _CreateVendorCommand {
|
|
41283
|
+
static {
|
|
41284
|
+
__name(this, "CreateVendorCommand");
|
|
41285
|
+
}
|
|
40797
41286
|
/**
|
|
40798
41287
|
* @description
|
|
40799
41288
|
* @constructor
|
|
@@ -40857,6 +41346,9 @@ var CreateVendorCommand = class _CreateVendorCommand {
|
|
|
40857
41346
|
|
|
40858
41347
|
// src/useCases/createWindowCovering.js
|
|
40859
41348
|
var CreateWindowCoveringCommand = class _CreateWindowCoveringCommand {
|
|
41349
|
+
static {
|
|
41350
|
+
__name(this, "CreateWindowCoveringCommand");
|
|
41351
|
+
}
|
|
40860
41352
|
/**
|
|
40861
41353
|
* @description
|
|
40862
41354
|
* @constructor
|
|
@@ -40920,6 +41412,9 @@ var CreateWindowCoveringCommand = class _CreateWindowCoveringCommand {
|
|
|
40920
41412
|
|
|
40921
41413
|
// src/useCases/deleteAlarm.js
|
|
40922
41414
|
var DeleteAlarmCommand = class _DeleteAlarmCommand {
|
|
41415
|
+
static {
|
|
41416
|
+
__name(this, "DeleteAlarmCommand");
|
|
41417
|
+
}
|
|
40923
41418
|
/**
|
|
40924
41419
|
* @description
|
|
40925
41420
|
* @constructor
|
|
@@ -40983,6 +41478,9 @@ var DeleteAlarmCommand = class _DeleteAlarmCommand {
|
|
|
40983
41478
|
|
|
40984
41479
|
// src/useCases/deleteAnnouncement.js
|
|
40985
41480
|
var DeleteAnnouncementCommand = class _DeleteAnnouncementCommand {
|
|
41481
|
+
static {
|
|
41482
|
+
__name(this, "DeleteAnnouncementCommand");
|
|
41483
|
+
}
|
|
40986
41484
|
/**
|
|
40987
41485
|
* @description
|
|
40988
41486
|
* @constructor
|
|
@@ -41046,6 +41544,9 @@ var DeleteAnnouncementCommand = class _DeleteAnnouncementCommand {
|
|
|
41046
41544
|
|
|
41047
41545
|
// src/useCases/deleteCamera.js
|
|
41048
41546
|
var DeleteCameraCommand = class _DeleteCameraCommand {
|
|
41547
|
+
static {
|
|
41548
|
+
__name(this, "DeleteCameraCommand");
|
|
41549
|
+
}
|
|
41049
41550
|
/**
|
|
41050
41551
|
* @description
|
|
41051
41552
|
* @constructor
|
|
@@ -41109,6 +41610,9 @@ var DeleteCameraCommand = class _DeleteCameraCommand {
|
|
|
41109
41610
|
|
|
41110
41611
|
// src/useCases/deleteCategory.js
|
|
41111
41612
|
var DeleteCategoryCommand = class _DeleteCategoryCommand {
|
|
41613
|
+
static {
|
|
41614
|
+
__name(this, "DeleteCategoryCommand");
|
|
41615
|
+
}
|
|
41112
41616
|
/**
|
|
41113
41617
|
* @description
|
|
41114
41618
|
* @constructor
|
|
@@ -41172,6 +41676,9 @@ var DeleteCategoryCommand = class _DeleteCategoryCommand {
|
|
|
41172
41676
|
|
|
41173
41677
|
// src/useCases/deleteCourtesy.js
|
|
41174
41678
|
var DeleteCourtesyCommand = class _DeleteCourtesyCommand {
|
|
41679
|
+
static {
|
|
41680
|
+
__name(this, "DeleteCourtesyCommand");
|
|
41681
|
+
}
|
|
41175
41682
|
/**
|
|
41176
41683
|
* @description
|
|
41177
41684
|
* @constructor
|
|
@@ -41235,6 +41742,9 @@ var DeleteCourtesyCommand = class _DeleteCourtesyCommand {
|
|
|
41235
41742
|
|
|
41236
41743
|
// src/useCases/deleteDimmer.js
|
|
41237
41744
|
var DeleteDimmerCommand = class _DeleteDimmerCommand {
|
|
41745
|
+
static {
|
|
41746
|
+
__name(this, "DeleteDimmerCommand");
|
|
41747
|
+
}
|
|
41238
41748
|
/**
|
|
41239
41749
|
* @description
|
|
41240
41750
|
* @constructor
|
|
@@ -41298,6 +41808,9 @@ var DeleteDimmerCommand = class _DeleteDimmerCommand {
|
|
|
41298
41808
|
|
|
41299
41809
|
// src/useCases/deleteDiscoveredDevice.js
|
|
41300
41810
|
var DeleteDiscoveredDeviceCommand = class _DeleteDiscoveredDeviceCommand {
|
|
41811
|
+
static {
|
|
41812
|
+
__name(this, "DeleteDiscoveredDeviceCommand");
|
|
41813
|
+
}
|
|
41301
41814
|
/**
|
|
41302
41815
|
* @description
|
|
41303
41816
|
* @constructor
|
|
@@ -41361,6 +41874,9 @@ var DeleteDiscoveredDeviceCommand = class _DeleteDiscoveredDeviceCommand {
|
|
|
41361
41874
|
|
|
41362
41875
|
// src/useCases/deleteIssue.js
|
|
41363
41876
|
var DeleteIssueCommand = class _DeleteIssueCommand {
|
|
41877
|
+
static {
|
|
41878
|
+
__name(this, "DeleteIssueCommand");
|
|
41879
|
+
}
|
|
41364
41880
|
/**
|
|
41365
41881
|
* @description
|
|
41366
41882
|
* @constructor
|
|
@@ -41424,6 +41940,9 @@ var DeleteIssueCommand = class _DeleteIssueCommand {
|
|
|
41424
41940
|
|
|
41425
41941
|
// src/useCases/deleteLock.js
|
|
41426
41942
|
var DeleteLockCommand = class _DeleteLockCommand {
|
|
41943
|
+
static {
|
|
41944
|
+
__name(this, "DeleteLockCommand");
|
|
41945
|
+
}
|
|
41427
41946
|
/**
|
|
41428
41947
|
* @description
|
|
41429
41948
|
* @constructor
|
|
@@ -41487,6 +42006,9 @@ var DeleteLockCommand = class _DeleteLockCommand {
|
|
|
41487
42006
|
|
|
41488
42007
|
// src/useCases/deleteMediaFile.js
|
|
41489
42008
|
var DeleteMediaFileCommand = class _DeleteMediaFileCommand {
|
|
42009
|
+
static {
|
|
42010
|
+
__name(this, "DeleteMediaFileCommand");
|
|
42011
|
+
}
|
|
41490
42012
|
/**
|
|
41491
42013
|
* @description
|
|
41492
42014
|
* @constructor
|
|
@@ -41550,6 +42072,9 @@ var DeleteMediaFileCommand = class _DeleteMediaFileCommand {
|
|
|
41550
42072
|
|
|
41551
42073
|
// src/useCases/deleteMediaSource.js
|
|
41552
42074
|
var DeleteMediaSourceCommand = class _DeleteMediaSourceCommand {
|
|
42075
|
+
static {
|
|
42076
|
+
__name(this, "DeleteMediaSourceCommand");
|
|
42077
|
+
}
|
|
41553
42078
|
/**
|
|
41554
42079
|
* @description
|
|
41555
42080
|
* @constructor
|
|
@@ -41613,6 +42138,9 @@ var DeleteMediaSourceCommand = class _DeleteMediaSourceCommand {
|
|
|
41613
42138
|
|
|
41614
42139
|
// src/useCases/deletePolicy.js
|
|
41615
42140
|
var DeletePolicyCommand = class _DeletePolicyCommand {
|
|
42141
|
+
static {
|
|
42142
|
+
__name(this, "DeletePolicyCommand");
|
|
42143
|
+
}
|
|
41616
42144
|
/**
|
|
41617
42145
|
* @description
|
|
41618
42146
|
* @constructor
|
|
@@ -41676,6 +42204,9 @@ var DeletePolicyCommand = class _DeletePolicyCommand {
|
|
|
41676
42204
|
|
|
41677
42205
|
// src/useCases/deleteReservation.js
|
|
41678
42206
|
var DeleteReservationCommand = class _DeleteReservationCommand {
|
|
42207
|
+
static {
|
|
42208
|
+
__name(this, "DeleteReservationCommand");
|
|
42209
|
+
}
|
|
41679
42210
|
/**
|
|
41680
42211
|
* @description
|
|
41681
42212
|
* @constructor
|
|
@@ -41739,6 +42270,9 @@ var DeleteReservationCommand = class _DeleteReservationCommand {
|
|
|
41739
42270
|
|
|
41740
42271
|
// src/useCases/deleteRoom.js
|
|
41741
42272
|
var DeleteRoomCommand = class _DeleteRoomCommand {
|
|
42273
|
+
static {
|
|
42274
|
+
__name(this, "DeleteRoomCommand");
|
|
42275
|
+
}
|
|
41742
42276
|
/**
|
|
41743
42277
|
* @description
|
|
41744
42278
|
* @constructor
|
|
@@ -41802,6 +42336,9 @@ var DeleteRoomCommand = class _DeleteRoomCommand {
|
|
|
41802
42336
|
|
|
41803
42337
|
// src/useCases/deleteSpace.js
|
|
41804
42338
|
var DeleteSpaceCommand = class _DeleteSpaceCommand {
|
|
42339
|
+
static {
|
|
42340
|
+
__name(this, "DeleteSpaceCommand");
|
|
42341
|
+
}
|
|
41805
42342
|
/**
|
|
41806
42343
|
* @description
|
|
41807
42344
|
* @constructor
|
|
@@ -41865,6 +42402,9 @@ var DeleteSpaceCommand = class _DeleteSpaceCommand {
|
|
|
41865
42402
|
|
|
41866
42403
|
// src/useCases/deleteSwitch.js
|
|
41867
42404
|
var DeleteSwitchCommand = class _DeleteSwitchCommand {
|
|
42405
|
+
static {
|
|
42406
|
+
__name(this, "DeleteSwitchCommand");
|
|
42407
|
+
}
|
|
41868
42408
|
/**
|
|
41869
42409
|
* @description
|
|
41870
42410
|
* @constructor
|
|
@@ -41928,6 +42468,9 @@ var DeleteSwitchCommand = class _DeleteSwitchCommand {
|
|
|
41928
42468
|
|
|
41929
42469
|
// src/useCases/deleteThermostat.js
|
|
41930
42470
|
var DeleteThermostatCommand = class _DeleteThermostatCommand {
|
|
42471
|
+
static {
|
|
42472
|
+
__name(this, "DeleteThermostatCommand");
|
|
42473
|
+
}
|
|
41931
42474
|
/**
|
|
41932
42475
|
* @description
|
|
41933
42476
|
* @constructor
|
|
@@ -41991,6 +42534,9 @@ var DeleteThermostatCommand = class _DeleteThermostatCommand {
|
|
|
41991
42534
|
|
|
41992
42535
|
// src/useCases/deleteTicket.js
|
|
41993
42536
|
var DeleteTicketCommand = class _DeleteTicketCommand {
|
|
42537
|
+
static {
|
|
42538
|
+
__name(this, "DeleteTicketCommand");
|
|
42539
|
+
}
|
|
41994
42540
|
/**
|
|
41995
42541
|
* @description
|
|
41996
42542
|
* @constructor
|
|
@@ -42054,6 +42600,9 @@ var DeleteTicketCommand = class _DeleteTicketCommand {
|
|
|
42054
42600
|
|
|
42055
42601
|
// src/useCases/deleteTimeSheet.js
|
|
42056
42602
|
var DeleteTimeSheetCommand = class _DeleteTimeSheetCommand {
|
|
42603
|
+
static {
|
|
42604
|
+
__name(this, "DeleteTimeSheetCommand");
|
|
42605
|
+
}
|
|
42057
42606
|
/**
|
|
42058
42607
|
* @description
|
|
42059
42608
|
* @constructor
|
|
@@ -42117,6 +42666,9 @@ var DeleteTimeSheetCommand = class _DeleteTimeSheetCommand {
|
|
|
42117
42666
|
|
|
42118
42667
|
// src/useCases/deleteTimeSheetTimeEntry.js
|
|
42119
42668
|
var DeleteTimeSheetTimeEntryCommand = class _DeleteTimeSheetTimeEntryCommand {
|
|
42669
|
+
static {
|
|
42670
|
+
__name(this, "DeleteTimeSheetTimeEntryCommand");
|
|
42671
|
+
}
|
|
42120
42672
|
/**
|
|
42121
42673
|
* @description
|
|
42122
42674
|
* @constructor
|
|
@@ -42180,6 +42732,9 @@ var DeleteTimeSheetTimeEntryCommand = class _DeleteTimeSheetTimeEntryCommand {
|
|
|
42180
42732
|
|
|
42181
42733
|
// src/useCases/deleteUser.js
|
|
42182
42734
|
var DeleteUserCommand = class _DeleteUserCommand {
|
|
42735
|
+
static {
|
|
42736
|
+
__name(this, "DeleteUserCommand");
|
|
42737
|
+
}
|
|
42183
42738
|
/**
|
|
42184
42739
|
* @description
|
|
42185
42740
|
* @constructor
|
|
@@ -42243,6 +42798,9 @@ var DeleteUserCommand = class _DeleteUserCommand {
|
|
|
42243
42798
|
|
|
42244
42799
|
// src/useCases/deleteUserCredential.js
|
|
42245
42800
|
var DeleteUserCredentialCommand = class _DeleteUserCredentialCommand {
|
|
42801
|
+
static {
|
|
42802
|
+
__name(this, "DeleteUserCredentialCommand");
|
|
42803
|
+
}
|
|
42246
42804
|
/**
|
|
42247
42805
|
* @description
|
|
42248
42806
|
* @constructor
|
|
@@ -42306,6 +42864,9 @@ var DeleteUserCredentialCommand = class _DeleteUserCredentialCommand {
|
|
|
42306
42864
|
|
|
42307
42865
|
// src/useCases/deleteVendor.js
|
|
42308
42866
|
var DeleteVendorCommand = class _DeleteVendorCommand {
|
|
42867
|
+
static {
|
|
42868
|
+
__name(this, "DeleteVendorCommand");
|
|
42869
|
+
}
|
|
42309
42870
|
/**
|
|
42310
42871
|
* @description
|
|
42311
42872
|
* @constructor
|
|
@@ -42369,6 +42930,9 @@ var DeleteVendorCommand = class _DeleteVendorCommand {
|
|
|
42369
42930
|
|
|
42370
42931
|
// src/useCases/deleteWindowCovering.js
|
|
42371
42932
|
var DeleteWindowCoveringCommand = class _DeleteWindowCoveringCommand {
|
|
42933
|
+
static {
|
|
42934
|
+
__name(this, "DeleteWindowCoveringCommand");
|
|
42935
|
+
}
|
|
42372
42936
|
/**
|
|
42373
42937
|
* @description
|
|
42374
42938
|
* @constructor
|
|
@@ -42432,6 +42996,9 @@ var DeleteWindowCoveringCommand = class _DeleteWindowCoveringCommand {
|
|
|
42432
42996
|
|
|
42433
42997
|
// src/useCases/describeAlarm.js
|
|
42434
42998
|
var DescribeAlarmCommand = class _DescribeAlarmCommand {
|
|
42999
|
+
static {
|
|
43000
|
+
__name(this, "DescribeAlarmCommand");
|
|
43001
|
+
}
|
|
42435
43002
|
/**
|
|
42436
43003
|
* @description
|
|
42437
43004
|
* @constructor
|
|
@@ -42495,6 +43062,9 @@ var DescribeAlarmCommand = class _DescribeAlarmCommand {
|
|
|
42495
43062
|
|
|
42496
43063
|
// src/useCases/describeAlarmConfig.js
|
|
42497
43064
|
var DescribeAlarmConfigCommand = class _DescribeAlarmConfigCommand {
|
|
43065
|
+
static {
|
|
43066
|
+
__name(this, "DescribeAlarmConfigCommand");
|
|
43067
|
+
}
|
|
42498
43068
|
/**
|
|
42499
43069
|
* @description
|
|
42500
43070
|
* @constructor
|
|
@@ -42558,6 +43128,9 @@ var DescribeAlarmConfigCommand = class _DescribeAlarmConfigCommand {
|
|
|
42558
43128
|
|
|
42559
43129
|
// src/useCases/describeAnnouncement.js
|
|
42560
43130
|
var DescribeAnnouncementCommand = class _DescribeAnnouncementCommand {
|
|
43131
|
+
static {
|
|
43132
|
+
__name(this, "DescribeAnnouncementCommand");
|
|
43133
|
+
}
|
|
42561
43134
|
/**
|
|
42562
43135
|
* @description
|
|
42563
43136
|
* @constructor
|
|
@@ -42621,6 +43194,9 @@ var DescribeAnnouncementCommand = class _DescribeAnnouncementCommand {
|
|
|
42621
43194
|
|
|
42622
43195
|
// src/useCases/describeCamera.js
|
|
42623
43196
|
var DescribeCameraCommand = class _DescribeCameraCommand {
|
|
43197
|
+
static {
|
|
43198
|
+
__name(this, "DescribeCameraCommand");
|
|
43199
|
+
}
|
|
42624
43200
|
/**
|
|
42625
43201
|
* @description
|
|
42626
43202
|
* @constructor
|
|
@@ -42684,6 +43260,9 @@ var DescribeCameraCommand = class _DescribeCameraCommand {
|
|
|
42684
43260
|
|
|
42685
43261
|
// src/useCases/describeCategory.js
|
|
42686
43262
|
var DescribeCategoryCommand = class _DescribeCategoryCommand {
|
|
43263
|
+
static {
|
|
43264
|
+
__name(this, "DescribeCategoryCommand");
|
|
43265
|
+
}
|
|
42687
43266
|
/**
|
|
42688
43267
|
* @description
|
|
42689
43268
|
* @constructor
|
|
@@ -42747,6 +43326,9 @@ var DescribeCategoryCommand = class _DescribeCategoryCommand {
|
|
|
42747
43326
|
|
|
42748
43327
|
// src/useCases/describeCourtesy.js
|
|
42749
43328
|
var DescribeCourtesyCommand = class _DescribeCourtesyCommand {
|
|
43329
|
+
static {
|
|
43330
|
+
__name(this, "DescribeCourtesyCommand");
|
|
43331
|
+
}
|
|
42750
43332
|
/**
|
|
42751
43333
|
* @description
|
|
42752
43334
|
* @constructor
|
|
@@ -42810,6 +43392,9 @@ var DescribeCourtesyCommand = class _DescribeCourtesyCommand {
|
|
|
42810
43392
|
|
|
42811
43393
|
// src/useCases/describeDimmer.js
|
|
42812
43394
|
var DescribeDimmerCommand = class _DescribeDimmerCommand {
|
|
43395
|
+
static {
|
|
43396
|
+
__name(this, "DescribeDimmerCommand");
|
|
43397
|
+
}
|
|
42813
43398
|
/**
|
|
42814
43399
|
* @description
|
|
42815
43400
|
* @constructor
|
|
@@ -42873,6 +43458,9 @@ var DescribeDimmerCommand = class _DescribeDimmerCommand {
|
|
|
42873
43458
|
|
|
42874
43459
|
// src/useCases/describeDiscoveredDevice.js
|
|
42875
43460
|
var DescribeDiscoveredDeviceCommand = class _DescribeDiscoveredDeviceCommand {
|
|
43461
|
+
static {
|
|
43462
|
+
__name(this, "DescribeDiscoveredDeviceCommand");
|
|
43463
|
+
}
|
|
42876
43464
|
/**
|
|
42877
43465
|
* @description
|
|
42878
43466
|
* @constructor
|
|
@@ -42936,6 +43524,9 @@ var DescribeDiscoveredDeviceCommand = class _DescribeDiscoveredDeviceCommand {
|
|
|
42936
43524
|
|
|
42937
43525
|
// src/useCases/describeIssue.js
|
|
42938
43526
|
var DescribeIssueCommand = class _DescribeIssueCommand {
|
|
43527
|
+
static {
|
|
43528
|
+
__name(this, "DescribeIssueCommand");
|
|
43529
|
+
}
|
|
42939
43530
|
/**
|
|
42940
43531
|
* @description
|
|
42941
43532
|
* @constructor
|
|
@@ -42999,6 +43590,9 @@ var DescribeIssueCommand = class _DescribeIssueCommand {
|
|
|
42999
43590
|
|
|
43000
43591
|
// src/useCases/describeLock.js
|
|
43001
43592
|
var DescribeLockCommand = class _DescribeLockCommand {
|
|
43593
|
+
static {
|
|
43594
|
+
__name(this, "DescribeLockCommand");
|
|
43595
|
+
}
|
|
43002
43596
|
/**
|
|
43003
43597
|
* @description
|
|
43004
43598
|
* @constructor
|
|
@@ -43062,6 +43656,9 @@ var DescribeLockCommand = class _DescribeLockCommand {
|
|
|
43062
43656
|
|
|
43063
43657
|
// src/useCases/describeLockCredential.js
|
|
43064
43658
|
var DescribeLockCredentialCommand = class _DescribeLockCredentialCommand {
|
|
43659
|
+
static {
|
|
43660
|
+
__name(this, "DescribeLockCredentialCommand");
|
|
43661
|
+
}
|
|
43065
43662
|
/**
|
|
43066
43663
|
* @description
|
|
43067
43664
|
* @constructor
|
|
@@ -43125,6 +43722,9 @@ var DescribeLockCredentialCommand = class _DescribeLockCredentialCommand {
|
|
|
43125
43722
|
|
|
43126
43723
|
// src/useCases/describeMediaSource.js
|
|
43127
43724
|
var DescribeMediaSourceCommand = class _DescribeMediaSourceCommand {
|
|
43725
|
+
static {
|
|
43726
|
+
__name(this, "DescribeMediaSourceCommand");
|
|
43727
|
+
}
|
|
43128
43728
|
/**
|
|
43129
43729
|
* @description
|
|
43130
43730
|
* @constructor
|
|
@@ -43188,6 +43788,9 @@ var DescribeMediaSourceCommand = class _DescribeMediaSourceCommand {
|
|
|
43188
43788
|
|
|
43189
43789
|
// src/useCases/describeMyAuth.js
|
|
43190
43790
|
var DescribeMyAuthCommand = class _DescribeMyAuthCommand {
|
|
43791
|
+
static {
|
|
43792
|
+
__name(this, "DescribeMyAuthCommand");
|
|
43793
|
+
}
|
|
43191
43794
|
/**
|
|
43192
43795
|
* @description
|
|
43193
43796
|
* @constructor
|
|
@@ -43251,6 +43854,9 @@ var DescribeMyAuthCommand = class _DescribeMyAuthCommand {
|
|
|
43251
43854
|
|
|
43252
43855
|
// src/useCases/describeMyMobileKeyApp.js
|
|
43253
43856
|
var DescribeMyMobileKeyAppCommand = class _DescribeMyMobileKeyAppCommand {
|
|
43857
|
+
static {
|
|
43858
|
+
__name(this, "DescribeMyMobileKeyAppCommand");
|
|
43859
|
+
}
|
|
43254
43860
|
/**
|
|
43255
43861
|
* @description
|
|
43256
43862
|
* @constructor
|
|
@@ -43314,6 +43920,9 @@ var DescribeMyMobileKeyAppCommand = class _DescribeMyMobileKeyAppCommand {
|
|
|
43314
43920
|
|
|
43315
43921
|
// src/useCases/describeMyOrganization.js
|
|
43316
43922
|
var DescribeMyOrganizationCommand = class _DescribeMyOrganizationCommand {
|
|
43923
|
+
static {
|
|
43924
|
+
__name(this, "DescribeMyOrganizationCommand");
|
|
43925
|
+
}
|
|
43317
43926
|
/**
|
|
43318
43927
|
* @description
|
|
43319
43928
|
* @constructor
|
|
@@ -43377,6 +43986,9 @@ var DescribeMyOrganizationCommand = class _DescribeMyOrganizationCommand {
|
|
|
43377
43986
|
|
|
43378
43987
|
// src/useCases/describeMyPasskeyRegistrations.js
|
|
43379
43988
|
var DescribeMyPasskeyRegistrationsCommand = class _DescribeMyPasskeyRegistrationsCommand {
|
|
43989
|
+
static {
|
|
43990
|
+
__name(this, "DescribeMyPasskeyRegistrationsCommand");
|
|
43991
|
+
}
|
|
43380
43992
|
/**
|
|
43381
43993
|
* @description
|
|
43382
43994
|
* @constructor
|
|
@@ -43440,6 +44052,9 @@ var DescribeMyPasskeyRegistrationsCommand = class _DescribeMyPasskeyRegistration
|
|
|
43440
44052
|
|
|
43441
44053
|
// src/useCases/describeOrganization.js
|
|
43442
44054
|
var DescribeOrganizationCommand = class _DescribeOrganizationCommand {
|
|
44055
|
+
static {
|
|
44056
|
+
__name(this, "DescribeOrganizationCommand");
|
|
44057
|
+
}
|
|
43443
44058
|
/**
|
|
43444
44059
|
* @description
|
|
43445
44060
|
* @constructor
|
|
@@ -43503,6 +44118,9 @@ var DescribeOrganizationCommand = class _DescribeOrganizationCommand {
|
|
|
43503
44118
|
|
|
43504
44119
|
// src/useCases/describePolicy.js
|
|
43505
44120
|
var DescribePolicyCommand = class _DescribePolicyCommand {
|
|
44121
|
+
static {
|
|
44122
|
+
__name(this, "DescribePolicyCommand");
|
|
44123
|
+
}
|
|
43506
44124
|
/**
|
|
43507
44125
|
* @description
|
|
43508
44126
|
* @constructor
|
|
@@ -43566,6 +44184,9 @@ var DescribePolicyCommand = class _DescribePolicyCommand {
|
|
|
43566
44184
|
|
|
43567
44185
|
// src/useCases/describeProduct.js
|
|
43568
44186
|
var DescribeProductCommand = class _DescribeProductCommand {
|
|
44187
|
+
static {
|
|
44188
|
+
__name(this, "DescribeProductCommand");
|
|
44189
|
+
}
|
|
43569
44190
|
/**
|
|
43570
44191
|
* @description
|
|
43571
44192
|
* @constructor
|
|
@@ -43629,6 +44250,9 @@ var DescribeProductCommand = class _DescribeProductCommand {
|
|
|
43629
44250
|
|
|
43630
44251
|
// src/useCases/describeProperty.js
|
|
43631
44252
|
var DescribePropertyCommand = class _DescribePropertyCommand {
|
|
44253
|
+
static {
|
|
44254
|
+
__name(this, "DescribePropertyCommand");
|
|
44255
|
+
}
|
|
43632
44256
|
/**
|
|
43633
44257
|
* @description
|
|
43634
44258
|
* @constructor
|
|
@@ -43692,6 +44316,9 @@ var DescribePropertyCommand = class _DescribePropertyCommand {
|
|
|
43692
44316
|
|
|
43693
44317
|
// src/useCases/describeReservation.js
|
|
43694
44318
|
var DescribeReservationCommand = class _DescribeReservationCommand {
|
|
44319
|
+
static {
|
|
44320
|
+
__name(this, "DescribeReservationCommand");
|
|
44321
|
+
}
|
|
43695
44322
|
/**
|
|
43696
44323
|
* @description
|
|
43697
44324
|
* @constructor
|
|
@@ -43755,6 +44382,9 @@ var DescribeReservationCommand = class _DescribeReservationCommand {
|
|
|
43755
44382
|
|
|
43756
44383
|
// src/useCases/describeReservationEarlyCheckInProducts.js
|
|
43757
44384
|
var DescribeReservationEarlyCheckInProductsCommand = class _DescribeReservationEarlyCheckInProductsCommand {
|
|
44385
|
+
static {
|
|
44386
|
+
__name(this, "DescribeReservationEarlyCheckInProductsCommand");
|
|
44387
|
+
}
|
|
43758
44388
|
/**
|
|
43759
44389
|
* @description
|
|
43760
44390
|
* @constructor
|
|
@@ -43818,6 +44448,9 @@ var DescribeReservationEarlyCheckInProductsCommand = class _DescribeReservationE
|
|
|
43818
44448
|
|
|
43819
44449
|
// src/useCases/describeReservationLateCheckOutProducts.js
|
|
43820
44450
|
var DescribeReservationLateCheckOutProductsCommand = class _DescribeReservationLateCheckOutProductsCommand {
|
|
44451
|
+
static {
|
|
44452
|
+
__name(this, "DescribeReservationLateCheckOutProductsCommand");
|
|
44453
|
+
}
|
|
43821
44454
|
/**
|
|
43822
44455
|
* @description
|
|
43823
44456
|
* @constructor
|
|
@@ -43881,6 +44514,9 @@ var DescribeReservationLateCheckOutProductsCommand = class _DescribeReservationL
|
|
|
43881
44514
|
|
|
43882
44515
|
// src/useCases/describeReservationPetProducts.js
|
|
43883
44516
|
var DescribeReservationPetProductsCommand = class _DescribeReservationPetProductsCommand {
|
|
44517
|
+
static {
|
|
44518
|
+
__name(this, "DescribeReservationPetProductsCommand");
|
|
44519
|
+
}
|
|
43884
44520
|
/**
|
|
43885
44521
|
* @description
|
|
43886
44522
|
* @constructor
|
|
@@ -43944,6 +44580,9 @@ var DescribeReservationPetProductsCommand = class _DescribeReservationPetProduct
|
|
|
43944
44580
|
|
|
43945
44581
|
// src/useCases/describeReservationPromos.js
|
|
43946
44582
|
var DescribeReservationPromosCommand = class _DescribeReservationPromosCommand {
|
|
44583
|
+
static {
|
|
44584
|
+
__name(this, "DescribeReservationPromosCommand");
|
|
44585
|
+
}
|
|
43947
44586
|
/**
|
|
43948
44587
|
* @description
|
|
43949
44588
|
* @constructor
|
|
@@ -44007,6 +44646,9 @@ var DescribeReservationPromosCommand = class _DescribeReservationPromosCommand {
|
|
|
44007
44646
|
|
|
44008
44647
|
// src/useCases/describeReservationRoomUpgrades.js
|
|
44009
44648
|
var DescribeReservationRoomUpgradesCommand = class _DescribeReservationRoomUpgradesCommand {
|
|
44649
|
+
static {
|
|
44650
|
+
__name(this, "DescribeReservationRoomUpgradesCommand");
|
|
44651
|
+
}
|
|
44010
44652
|
/**
|
|
44011
44653
|
* @description
|
|
44012
44654
|
* @constructor
|
|
@@ -44070,6 +44712,9 @@ var DescribeReservationRoomUpgradesCommand = class _DescribeReservationRoomUpgra
|
|
|
44070
44712
|
|
|
44071
44713
|
// src/useCases/describeRoom.js
|
|
44072
44714
|
var DescribeRoomCommand = class _DescribeRoomCommand {
|
|
44715
|
+
static {
|
|
44716
|
+
__name(this, "DescribeRoomCommand");
|
|
44717
|
+
}
|
|
44073
44718
|
/**
|
|
44074
44719
|
* @description
|
|
44075
44720
|
* @constructor
|
|
@@ -44133,6 +44778,9 @@ var DescribeRoomCommand = class _DescribeRoomCommand {
|
|
|
44133
44778
|
|
|
44134
44779
|
// src/useCases/describeSOS.js
|
|
44135
44780
|
var DescribeSOSCommand = class _DescribeSOSCommand {
|
|
44781
|
+
static {
|
|
44782
|
+
__name(this, "DescribeSOSCommand");
|
|
44783
|
+
}
|
|
44136
44784
|
/**
|
|
44137
44785
|
* @description
|
|
44138
44786
|
* @constructor
|
|
@@ -44196,6 +44844,9 @@ var DescribeSOSCommand = class _DescribeSOSCommand {
|
|
|
44196
44844
|
|
|
44197
44845
|
// src/useCases/describeSelf.js
|
|
44198
44846
|
var DescribeSelfCommand = class _DescribeSelfCommand {
|
|
44847
|
+
static {
|
|
44848
|
+
__name(this, "DescribeSelfCommand");
|
|
44849
|
+
}
|
|
44199
44850
|
/**
|
|
44200
44851
|
* @description
|
|
44201
44852
|
* @constructor
|
|
@@ -44259,6 +44910,9 @@ var DescribeSelfCommand = class _DescribeSelfCommand {
|
|
|
44259
44910
|
|
|
44260
44911
|
// src/useCases/describeSpace.js
|
|
44261
44912
|
var DescribeSpaceCommand = class _DescribeSpaceCommand {
|
|
44913
|
+
static {
|
|
44914
|
+
__name(this, "DescribeSpaceCommand");
|
|
44915
|
+
}
|
|
44262
44916
|
/**
|
|
44263
44917
|
* @description
|
|
44264
44918
|
* @constructor
|
|
@@ -44322,6 +44976,9 @@ var DescribeSpaceCommand = class _DescribeSpaceCommand {
|
|
|
44322
44976
|
|
|
44323
44977
|
// src/useCases/describeSwitch.js
|
|
44324
44978
|
var DescribeSwitchCommand = class _DescribeSwitchCommand {
|
|
44979
|
+
static {
|
|
44980
|
+
__name(this, "DescribeSwitchCommand");
|
|
44981
|
+
}
|
|
44325
44982
|
/**
|
|
44326
44983
|
* @description
|
|
44327
44984
|
* @constructor
|
|
@@ -44385,6 +45042,9 @@ var DescribeSwitchCommand = class _DescribeSwitchCommand {
|
|
|
44385
45042
|
|
|
44386
45043
|
// src/useCases/describeThermostat.js
|
|
44387
45044
|
var DescribeThermostatCommand = class _DescribeThermostatCommand {
|
|
45045
|
+
static {
|
|
45046
|
+
__name(this, "DescribeThermostatCommand");
|
|
45047
|
+
}
|
|
44388
45048
|
/**
|
|
44389
45049
|
* @description
|
|
44390
45050
|
* @constructor
|
|
@@ -44448,6 +45108,9 @@ var DescribeThermostatCommand = class _DescribeThermostatCommand {
|
|
|
44448
45108
|
|
|
44449
45109
|
// src/useCases/describeTicket.js
|
|
44450
45110
|
var DescribeTicketCommand = class _DescribeTicketCommand {
|
|
45111
|
+
static {
|
|
45112
|
+
__name(this, "DescribeTicketCommand");
|
|
45113
|
+
}
|
|
44451
45114
|
/**
|
|
44452
45115
|
* @description
|
|
44453
45116
|
* @constructor
|
|
@@ -44511,6 +45174,9 @@ var DescribeTicketCommand = class _DescribeTicketCommand {
|
|
|
44511
45174
|
|
|
44512
45175
|
// src/useCases/describeTicketStats.js
|
|
44513
45176
|
var DescribeTicketStatsCommand = class _DescribeTicketStatsCommand {
|
|
45177
|
+
static {
|
|
45178
|
+
__name(this, "DescribeTicketStatsCommand");
|
|
45179
|
+
}
|
|
44514
45180
|
/**
|
|
44515
45181
|
* @description
|
|
44516
45182
|
* @constructor
|
|
@@ -44574,6 +45240,9 @@ var DescribeTicketStatsCommand = class _DescribeTicketStatsCommand {
|
|
|
44574
45240
|
|
|
44575
45241
|
// src/useCases/describeTimeSheet.js
|
|
44576
45242
|
var DescribeTimeSheetCommand = class _DescribeTimeSheetCommand {
|
|
45243
|
+
static {
|
|
45244
|
+
__name(this, "DescribeTimeSheetCommand");
|
|
45245
|
+
}
|
|
44577
45246
|
/**
|
|
44578
45247
|
* @description
|
|
44579
45248
|
* @constructor
|
|
@@ -44637,6 +45306,9 @@ var DescribeTimeSheetCommand = class _DescribeTimeSheetCommand {
|
|
|
44637
45306
|
|
|
44638
45307
|
// src/useCases/describeTimeSheetStats.js
|
|
44639
45308
|
var DescribeTimeSheetStatsCommand = class _DescribeTimeSheetStatsCommand {
|
|
45309
|
+
static {
|
|
45310
|
+
__name(this, "DescribeTimeSheetStatsCommand");
|
|
45311
|
+
}
|
|
44640
45312
|
/**
|
|
44641
45313
|
* @description
|
|
44642
45314
|
* @constructor
|
|
@@ -44700,6 +45372,9 @@ var DescribeTimeSheetStatsCommand = class _DescribeTimeSheetStatsCommand {
|
|
|
44700
45372
|
|
|
44701
45373
|
// src/useCases/describeUser.js
|
|
44702
45374
|
var DescribeUserCommand = class _DescribeUserCommand {
|
|
45375
|
+
static {
|
|
45376
|
+
__name(this, "DescribeUserCommand");
|
|
45377
|
+
}
|
|
44703
45378
|
/**
|
|
44704
45379
|
* @description
|
|
44705
45380
|
* @constructor
|
|
@@ -44763,6 +45438,9 @@ var DescribeUserCommand = class _DescribeUserCommand {
|
|
|
44763
45438
|
|
|
44764
45439
|
// src/useCases/describeVendor.js
|
|
44765
45440
|
var DescribeVendorCommand = class _DescribeVendorCommand {
|
|
45441
|
+
static {
|
|
45442
|
+
__name(this, "DescribeVendorCommand");
|
|
45443
|
+
}
|
|
44766
45444
|
/**
|
|
44767
45445
|
* @description
|
|
44768
45446
|
* @constructor
|
|
@@ -44826,6 +45504,9 @@ var DescribeVendorCommand = class _DescribeVendorCommand {
|
|
|
44826
45504
|
|
|
44827
45505
|
// src/useCases/describeWindowCovering.js
|
|
44828
45506
|
var DescribeWindowCoveringCommand = class _DescribeWindowCoveringCommand {
|
|
45507
|
+
static {
|
|
45508
|
+
__name(this, "DescribeWindowCoveringCommand");
|
|
45509
|
+
}
|
|
44829
45510
|
/**
|
|
44830
45511
|
* @description
|
|
44831
45512
|
* @constructor
|
|
@@ -44889,6 +45570,9 @@ var DescribeWindowCoveringCommand = class _DescribeWindowCoveringCommand {
|
|
|
44889
45570
|
|
|
44890
45571
|
// src/useCases/discoverReservations.js
|
|
44891
45572
|
var DiscoverReservationsCommand = class _DiscoverReservationsCommand {
|
|
45573
|
+
static {
|
|
45574
|
+
__name(this, "DiscoverReservationsCommand");
|
|
45575
|
+
}
|
|
44892
45576
|
/**
|
|
44893
45577
|
* @description
|
|
44894
45578
|
* @constructor
|
|
@@ -44952,6 +45636,9 @@ var DiscoverReservationsCommand = class _DiscoverReservationsCommand {
|
|
|
44952
45636
|
|
|
44953
45637
|
// src/useCases/emailUserAccountSetup.js
|
|
44954
45638
|
var EmailUserAccountSetupCommand = class _EmailUserAccountSetupCommand {
|
|
45639
|
+
static {
|
|
45640
|
+
__name(this, "EmailUserAccountSetupCommand");
|
|
45641
|
+
}
|
|
44955
45642
|
/**
|
|
44956
45643
|
* @description
|
|
44957
45644
|
* @constructor
|
|
@@ -45015,6 +45702,9 @@ var EmailUserAccountSetupCommand = class _EmailUserAccountSetupCommand {
|
|
|
45015
45702
|
|
|
45016
45703
|
// src/useCases/finishRegisterPasskey.js
|
|
45017
45704
|
var FinishRegisterPasskeyCommand = class _FinishRegisterPasskeyCommand {
|
|
45705
|
+
static {
|
|
45706
|
+
__name(this, "FinishRegisterPasskeyCommand");
|
|
45707
|
+
}
|
|
45018
45708
|
/**
|
|
45019
45709
|
* @description
|
|
45020
45710
|
* @constructor
|
|
@@ -45078,6 +45768,9 @@ var FinishRegisterPasskeyCommand = class _FinishRegisterPasskeyCommand {
|
|
|
45078
45768
|
|
|
45079
45769
|
// src/useCases/listAlarms.js
|
|
45080
45770
|
var ListAlarmsCommand = class _ListAlarmsCommand {
|
|
45771
|
+
static {
|
|
45772
|
+
__name(this, "ListAlarmsCommand");
|
|
45773
|
+
}
|
|
45081
45774
|
/**
|
|
45082
45775
|
* @description
|
|
45083
45776
|
* @constructor
|
|
@@ -45141,6 +45834,9 @@ var ListAlarmsCommand = class _ListAlarmsCommand {
|
|
|
45141
45834
|
|
|
45142
45835
|
// src/useCases/listAnnouncements.js
|
|
45143
45836
|
var ListAnnouncementsCommand = class _ListAnnouncementsCommand {
|
|
45837
|
+
static {
|
|
45838
|
+
__name(this, "ListAnnouncementsCommand");
|
|
45839
|
+
}
|
|
45144
45840
|
/**
|
|
45145
45841
|
* @description
|
|
45146
45842
|
* @constructor
|
|
@@ -45204,6 +45900,9 @@ var ListAnnouncementsCommand = class _ListAnnouncementsCommand {
|
|
|
45204
45900
|
|
|
45205
45901
|
// src/useCases/listCameras.js
|
|
45206
45902
|
var ListCamerasCommand = class _ListCamerasCommand {
|
|
45903
|
+
static {
|
|
45904
|
+
__name(this, "ListCamerasCommand");
|
|
45905
|
+
}
|
|
45207
45906
|
/**
|
|
45208
45907
|
* @description
|
|
45209
45908
|
* @constructor
|
|
@@ -45267,6 +45966,9 @@ var ListCamerasCommand = class _ListCamerasCommand {
|
|
|
45267
45966
|
|
|
45268
45967
|
// src/useCases/listCategories.js
|
|
45269
45968
|
var ListCategoriesCommand = class _ListCategoriesCommand {
|
|
45969
|
+
static {
|
|
45970
|
+
__name(this, "ListCategoriesCommand");
|
|
45971
|
+
}
|
|
45270
45972
|
/**
|
|
45271
45973
|
* @description
|
|
45272
45974
|
* @constructor
|
|
@@ -45330,6 +46032,9 @@ var ListCategoriesCommand = class _ListCategoriesCommand {
|
|
|
45330
46032
|
|
|
45331
46033
|
// src/useCases/listCourtesy.js
|
|
45332
46034
|
var ListCourtesyCommand = class _ListCourtesyCommand {
|
|
46035
|
+
static {
|
|
46036
|
+
__name(this, "ListCourtesyCommand");
|
|
46037
|
+
}
|
|
45333
46038
|
/**
|
|
45334
46039
|
* @description
|
|
45335
46040
|
* @constructor
|
|
@@ -45393,6 +46098,9 @@ var ListCourtesyCommand = class _ListCourtesyCommand {
|
|
|
45393
46098
|
|
|
45394
46099
|
// src/useCases/listDimmers.js
|
|
45395
46100
|
var ListDimmersCommand = class _ListDimmersCommand {
|
|
46101
|
+
static {
|
|
46102
|
+
__name(this, "ListDimmersCommand");
|
|
46103
|
+
}
|
|
45396
46104
|
/**
|
|
45397
46105
|
* @description
|
|
45398
46106
|
* @constructor
|
|
@@ -45456,6 +46164,9 @@ var ListDimmersCommand = class _ListDimmersCommand {
|
|
|
45456
46164
|
|
|
45457
46165
|
// src/useCases/listDiscoveredDevices.js
|
|
45458
46166
|
var ListDiscoveredDevicesCommand = class _ListDiscoveredDevicesCommand {
|
|
46167
|
+
static {
|
|
46168
|
+
__name(this, "ListDiscoveredDevicesCommand");
|
|
46169
|
+
}
|
|
45459
46170
|
/**
|
|
45460
46171
|
* @description
|
|
45461
46172
|
* @constructor
|
|
@@ -45519,6 +46230,9 @@ var ListDiscoveredDevicesCommand = class _ListDiscoveredDevicesCommand {
|
|
|
45519
46230
|
|
|
45520
46231
|
// src/useCases/listIssues.js
|
|
45521
46232
|
var ListIssuesCommand = class _ListIssuesCommand {
|
|
46233
|
+
static {
|
|
46234
|
+
__name(this, "ListIssuesCommand");
|
|
46235
|
+
}
|
|
45522
46236
|
/**
|
|
45523
46237
|
* @description
|
|
45524
46238
|
* @constructor
|
|
@@ -45582,6 +46296,9 @@ var ListIssuesCommand = class _ListIssuesCommand {
|
|
|
45582
46296
|
|
|
45583
46297
|
// src/useCases/listLocks.js
|
|
45584
46298
|
var ListLocksCommand = class _ListLocksCommand {
|
|
46299
|
+
static {
|
|
46300
|
+
__name(this, "ListLocksCommand");
|
|
46301
|
+
}
|
|
45585
46302
|
/**
|
|
45586
46303
|
* @description
|
|
45587
46304
|
* @constructor
|
|
@@ -45645,6 +46362,9 @@ var ListLocksCommand = class _ListLocksCommand {
|
|
|
45645
46362
|
|
|
45646
46363
|
// src/useCases/listMediaSources.js
|
|
45647
46364
|
var ListMediaSourcesCommand = class _ListMediaSourcesCommand {
|
|
46365
|
+
static {
|
|
46366
|
+
__name(this, "ListMediaSourcesCommand");
|
|
46367
|
+
}
|
|
45648
46368
|
/**
|
|
45649
46369
|
* @description
|
|
45650
46370
|
* @constructor
|
|
@@ -45708,6 +46428,9 @@ var ListMediaSourcesCommand = class _ListMediaSourcesCommand {
|
|
|
45708
46428
|
|
|
45709
46429
|
// src/useCases/listMyOrders.js
|
|
45710
46430
|
var ListMyOrdersCommand = class _ListMyOrdersCommand {
|
|
46431
|
+
static {
|
|
46432
|
+
__name(this, "ListMyOrdersCommand");
|
|
46433
|
+
}
|
|
45711
46434
|
/**
|
|
45712
46435
|
* @description
|
|
45713
46436
|
* @constructor
|
|
@@ -45771,6 +46494,9 @@ var ListMyOrdersCommand = class _ListMyOrdersCommand {
|
|
|
45771
46494
|
|
|
45772
46495
|
// src/useCases/listMyProperties.js
|
|
45773
46496
|
var ListMyPropertiesCommand = class _ListMyPropertiesCommand {
|
|
46497
|
+
static {
|
|
46498
|
+
__name(this, "ListMyPropertiesCommand");
|
|
46499
|
+
}
|
|
45774
46500
|
/**
|
|
45775
46501
|
* @description
|
|
45776
46502
|
* @constructor
|
|
@@ -45834,6 +46560,9 @@ var ListMyPropertiesCommand = class _ListMyPropertiesCommand {
|
|
|
45834
46560
|
|
|
45835
46561
|
// src/useCases/listMyReservations.js
|
|
45836
46562
|
var ListMyReservationsCommand = class _ListMyReservationsCommand {
|
|
46563
|
+
static {
|
|
46564
|
+
__name(this, "ListMyReservationsCommand");
|
|
46565
|
+
}
|
|
45837
46566
|
/**
|
|
45838
46567
|
* @description
|
|
45839
46568
|
* @constructor
|
|
@@ -45897,6 +46626,9 @@ var ListMyReservationsCommand = class _ListMyReservationsCommand {
|
|
|
45897
46626
|
|
|
45898
46627
|
// src/useCases/listMySpaces.js
|
|
45899
46628
|
var ListMySpacesCommand = class _ListMySpacesCommand {
|
|
46629
|
+
static {
|
|
46630
|
+
__name(this, "ListMySpacesCommand");
|
|
46631
|
+
}
|
|
45900
46632
|
/**
|
|
45901
46633
|
* @description
|
|
45902
46634
|
* @constructor
|
|
@@ -45960,6 +46692,9 @@ var ListMySpacesCommand = class _ListMySpacesCommand {
|
|
|
45960
46692
|
|
|
45961
46693
|
// src/useCases/listMyTickets.js
|
|
45962
46694
|
var ListMyTicketsCommand = class _ListMyTicketsCommand {
|
|
46695
|
+
static {
|
|
46696
|
+
__name(this, "ListMyTicketsCommand");
|
|
46697
|
+
}
|
|
45963
46698
|
/**
|
|
45964
46699
|
* @description
|
|
45965
46700
|
* @constructor
|
|
@@ -46023,6 +46758,9 @@ var ListMyTicketsCommand = class _ListMyTicketsCommand {
|
|
|
46023
46758
|
|
|
46024
46759
|
// src/useCases/listMyTimeSheets.js
|
|
46025
46760
|
var ListMyTimeSheetsCommand = class _ListMyTimeSheetsCommand {
|
|
46761
|
+
static {
|
|
46762
|
+
__name(this, "ListMyTimeSheetsCommand");
|
|
46763
|
+
}
|
|
46026
46764
|
/**
|
|
46027
46765
|
* @description
|
|
46028
46766
|
* @constructor
|
|
@@ -46086,6 +46824,9 @@ var ListMyTimeSheetsCommand = class _ListMyTimeSheetsCommand {
|
|
|
46086
46824
|
|
|
46087
46825
|
// src/useCases/listOrders.js
|
|
46088
46826
|
var ListOrdersCommand = class _ListOrdersCommand {
|
|
46827
|
+
static {
|
|
46828
|
+
__name(this, "ListOrdersCommand");
|
|
46829
|
+
}
|
|
46089
46830
|
/**
|
|
46090
46831
|
* @description
|
|
46091
46832
|
* @constructor
|
|
@@ -46149,6 +46890,9 @@ var ListOrdersCommand = class _ListOrdersCommand {
|
|
|
46149
46890
|
|
|
46150
46891
|
// src/useCases/listOrganizations.js
|
|
46151
46892
|
var ListOrganizationsCommand = class _ListOrganizationsCommand {
|
|
46893
|
+
static {
|
|
46894
|
+
__name(this, "ListOrganizationsCommand");
|
|
46895
|
+
}
|
|
46152
46896
|
/**
|
|
46153
46897
|
* @description
|
|
46154
46898
|
* @constructor
|
|
@@ -46212,6 +46956,9 @@ var ListOrganizationsCommand = class _ListOrganizationsCommand {
|
|
|
46212
46956
|
|
|
46213
46957
|
// src/useCases/listPolicies.js
|
|
46214
46958
|
var ListPoliciesCommand = class _ListPoliciesCommand {
|
|
46959
|
+
static {
|
|
46960
|
+
__name(this, "ListPoliciesCommand");
|
|
46961
|
+
}
|
|
46215
46962
|
/**
|
|
46216
46963
|
* @description
|
|
46217
46964
|
* @constructor
|
|
@@ -46275,6 +47022,9 @@ var ListPoliciesCommand = class _ListPoliciesCommand {
|
|
|
46275
47022
|
|
|
46276
47023
|
// src/useCases/listProducts.js
|
|
46277
47024
|
var ListProductsCommand = class _ListProductsCommand {
|
|
47025
|
+
static {
|
|
47026
|
+
__name(this, "ListProductsCommand");
|
|
47027
|
+
}
|
|
46278
47028
|
/**
|
|
46279
47029
|
* @description
|
|
46280
47030
|
* @constructor
|
|
@@ -46338,6 +47088,9 @@ var ListProductsCommand = class _ListProductsCommand {
|
|
|
46338
47088
|
|
|
46339
47089
|
// src/useCases/listProperties.js
|
|
46340
47090
|
var ListPropertiesCommand = class _ListPropertiesCommand {
|
|
47091
|
+
static {
|
|
47092
|
+
__name(this, "ListPropertiesCommand");
|
|
47093
|
+
}
|
|
46341
47094
|
/**
|
|
46342
47095
|
* @description
|
|
46343
47096
|
* @constructor
|
|
@@ -46401,6 +47154,9 @@ var ListPropertiesCommand = class _ListPropertiesCommand {
|
|
|
46401
47154
|
|
|
46402
47155
|
// src/useCases/listReservations.js
|
|
46403
47156
|
var ListReservationsCommand = class _ListReservationsCommand {
|
|
47157
|
+
static {
|
|
47158
|
+
__name(this, "ListReservationsCommand");
|
|
47159
|
+
}
|
|
46404
47160
|
/**
|
|
46405
47161
|
* @description
|
|
46406
47162
|
* @constructor
|
|
@@ -46464,6 +47220,9 @@ var ListReservationsCommand = class _ListReservationsCommand {
|
|
|
46464
47220
|
|
|
46465
47221
|
// src/useCases/listRooms.js
|
|
46466
47222
|
var ListRoomsCommand = class _ListRoomsCommand {
|
|
47223
|
+
static {
|
|
47224
|
+
__name(this, "ListRoomsCommand");
|
|
47225
|
+
}
|
|
46467
47226
|
/**
|
|
46468
47227
|
* @description
|
|
46469
47228
|
* @constructor
|
|
@@ -46527,6 +47286,9 @@ var ListRoomsCommand = class _ListRoomsCommand {
|
|
|
46527
47286
|
|
|
46528
47287
|
// src/useCases/listRoomsInSpace.js
|
|
46529
47288
|
var ListRoomsInSpaceCommand = class _ListRoomsInSpaceCommand {
|
|
47289
|
+
static {
|
|
47290
|
+
__name(this, "ListRoomsInSpaceCommand");
|
|
47291
|
+
}
|
|
46530
47292
|
/**
|
|
46531
47293
|
* @description
|
|
46532
47294
|
* @constructor
|
|
@@ -46590,6 +47352,9 @@ var ListRoomsInSpaceCommand = class _ListRoomsInSpaceCommand {
|
|
|
46590
47352
|
|
|
46591
47353
|
// src/useCases/listScenes.js
|
|
46592
47354
|
var ListScenesCommand = class _ListScenesCommand {
|
|
47355
|
+
static {
|
|
47356
|
+
__name(this, "ListScenesCommand");
|
|
47357
|
+
}
|
|
46593
47358
|
/**
|
|
46594
47359
|
* @description
|
|
46595
47360
|
* @constructor
|
|
@@ -46653,6 +47418,9 @@ var ListScenesCommand = class _ListScenesCommand {
|
|
|
46653
47418
|
|
|
46654
47419
|
// src/useCases/listSpaces.js
|
|
46655
47420
|
var ListSpacesCommand = class _ListSpacesCommand {
|
|
47421
|
+
static {
|
|
47422
|
+
__name(this, "ListSpacesCommand");
|
|
47423
|
+
}
|
|
46656
47424
|
/**
|
|
46657
47425
|
* @description
|
|
46658
47426
|
* @constructor
|
|
@@ -46716,6 +47484,9 @@ var ListSpacesCommand = class _ListSpacesCommand {
|
|
|
46716
47484
|
|
|
46717
47485
|
// src/useCases/listSwitches.js
|
|
46718
47486
|
var ListSwitchesCommand = class _ListSwitchesCommand {
|
|
47487
|
+
static {
|
|
47488
|
+
__name(this, "ListSwitchesCommand");
|
|
47489
|
+
}
|
|
46719
47490
|
/**
|
|
46720
47491
|
* @description
|
|
46721
47492
|
* @constructor
|
|
@@ -46779,6 +47550,9 @@ var ListSwitchesCommand = class _ListSwitchesCommand {
|
|
|
46779
47550
|
|
|
46780
47551
|
// src/useCases/listTeam.js
|
|
46781
47552
|
var ListTeamCommand = class _ListTeamCommand {
|
|
47553
|
+
static {
|
|
47554
|
+
__name(this, "ListTeamCommand");
|
|
47555
|
+
}
|
|
46782
47556
|
/**
|
|
46783
47557
|
* @description
|
|
46784
47558
|
* @constructor
|
|
@@ -46842,6 +47616,9 @@ var ListTeamCommand = class _ListTeamCommand {
|
|
|
46842
47616
|
|
|
46843
47617
|
// src/useCases/listThermostats.js
|
|
46844
47618
|
var ListThermostatsCommand = class _ListThermostatsCommand {
|
|
47619
|
+
static {
|
|
47620
|
+
__name(this, "ListThermostatsCommand");
|
|
47621
|
+
}
|
|
46845
47622
|
/**
|
|
46846
47623
|
* @description
|
|
46847
47624
|
* @constructor
|
|
@@ -46905,6 +47682,9 @@ var ListThermostatsCommand = class _ListThermostatsCommand {
|
|
|
46905
47682
|
|
|
46906
47683
|
// src/useCases/listTickets.js
|
|
46907
47684
|
var ListTicketsCommand = class _ListTicketsCommand {
|
|
47685
|
+
static {
|
|
47686
|
+
__name(this, "ListTicketsCommand");
|
|
47687
|
+
}
|
|
46908
47688
|
/**
|
|
46909
47689
|
* @description
|
|
46910
47690
|
* @constructor
|
|
@@ -46968,6 +47748,9 @@ var ListTicketsCommand = class _ListTicketsCommand {
|
|
|
46968
47748
|
|
|
46969
47749
|
// src/useCases/listTimeSheets.js
|
|
46970
47750
|
var ListTimeSheetsCommand = class _ListTimeSheetsCommand {
|
|
47751
|
+
static {
|
|
47752
|
+
__name(this, "ListTimeSheetsCommand");
|
|
47753
|
+
}
|
|
46971
47754
|
/**
|
|
46972
47755
|
* @description
|
|
46973
47756
|
* @constructor
|
|
@@ -47031,6 +47814,9 @@ var ListTimeSheetsCommand = class _ListTimeSheetsCommand {
|
|
|
47031
47814
|
|
|
47032
47815
|
// src/useCases/listUserMobileKeys.js
|
|
47033
47816
|
var ListUserMobileKeysCommand = class _ListUserMobileKeysCommand {
|
|
47817
|
+
static {
|
|
47818
|
+
__name(this, "ListUserMobileKeysCommand");
|
|
47819
|
+
}
|
|
47034
47820
|
/**
|
|
47035
47821
|
* @description
|
|
47036
47822
|
* @constructor
|
|
@@ -47094,6 +47880,9 @@ var ListUserMobileKeysCommand = class _ListUserMobileKeysCommand {
|
|
|
47094
47880
|
|
|
47095
47881
|
// src/useCases/listUserOrders.js
|
|
47096
47882
|
var ListUserOrdersCommand = class _ListUserOrdersCommand {
|
|
47883
|
+
static {
|
|
47884
|
+
__name(this, "ListUserOrdersCommand");
|
|
47885
|
+
}
|
|
47097
47886
|
/**
|
|
47098
47887
|
* @description
|
|
47099
47888
|
* @constructor
|
|
@@ -47157,6 +47946,9 @@ var ListUserOrdersCommand = class _ListUserOrdersCommand {
|
|
|
47157
47946
|
|
|
47158
47947
|
// src/useCases/listUserReservations.js
|
|
47159
47948
|
var ListUserReservationsCommand = class _ListUserReservationsCommand {
|
|
47949
|
+
static {
|
|
47950
|
+
__name(this, "ListUserReservationsCommand");
|
|
47951
|
+
}
|
|
47160
47952
|
/**
|
|
47161
47953
|
* @description
|
|
47162
47954
|
* @constructor
|
|
@@ -47220,6 +48012,9 @@ var ListUserReservationsCommand = class _ListUserReservationsCommand {
|
|
|
47220
48012
|
|
|
47221
48013
|
// src/useCases/listUserSpaces.js
|
|
47222
48014
|
var ListUserSpacesCommand = class _ListUserSpacesCommand {
|
|
48015
|
+
static {
|
|
48016
|
+
__name(this, "ListUserSpacesCommand");
|
|
48017
|
+
}
|
|
47223
48018
|
/**
|
|
47224
48019
|
* @description
|
|
47225
48020
|
* @constructor
|
|
@@ -47283,6 +48078,9 @@ var ListUserSpacesCommand = class _ListUserSpacesCommand {
|
|
|
47283
48078
|
|
|
47284
48079
|
// src/useCases/listUsers.js
|
|
47285
48080
|
var ListUsersCommand = class _ListUsersCommand {
|
|
48081
|
+
static {
|
|
48082
|
+
__name(this, "ListUsersCommand");
|
|
48083
|
+
}
|
|
47286
48084
|
/**
|
|
47287
48085
|
* @description
|
|
47288
48086
|
* @constructor
|
|
@@ -47346,6 +48144,9 @@ var ListUsersCommand = class _ListUsersCommand {
|
|
|
47346
48144
|
|
|
47347
48145
|
// src/useCases/listVendors.js
|
|
47348
48146
|
var ListVendorsCommand = class _ListVendorsCommand {
|
|
48147
|
+
static {
|
|
48148
|
+
__name(this, "ListVendorsCommand");
|
|
48149
|
+
}
|
|
47349
48150
|
/**
|
|
47350
48151
|
* @description
|
|
47351
48152
|
* @constructor
|
|
@@ -47409,6 +48210,9 @@ var ListVendorsCommand = class _ListVendorsCommand {
|
|
|
47409
48210
|
|
|
47410
48211
|
// src/useCases/listWindowCoverings.js
|
|
47411
48212
|
var ListWindowCoveringsCommand = class _ListWindowCoveringsCommand {
|
|
48213
|
+
static {
|
|
48214
|
+
__name(this, "ListWindowCoveringsCommand");
|
|
48215
|
+
}
|
|
47412
48216
|
/**
|
|
47413
48217
|
* @description
|
|
47414
48218
|
* @constructor
|
|
@@ -47472,6 +48276,9 @@ var ListWindowCoveringsCommand = class _ListWindowCoveringsCommand {
|
|
|
47472
48276
|
|
|
47473
48277
|
// src/useCases/loginFinish.js
|
|
47474
48278
|
var LoginFinishCommand = class _LoginFinishCommand {
|
|
48279
|
+
static {
|
|
48280
|
+
__name(this, "LoginFinishCommand");
|
|
48281
|
+
}
|
|
47475
48282
|
/**
|
|
47476
48283
|
* @description
|
|
47477
48284
|
* @constructor
|
|
@@ -47535,6 +48342,9 @@ var LoginFinishCommand = class _LoginFinishCommand {
|
|
|
47535
48342
|
|
|
47536
48343
|
// src/useCases/loginStart.js
|
|
47537
48344
|
var LoginStartCommand = class _LoginStartCommand {
|
|
48345
|
+
static {
|
|
48346
|
+
__name(this, "LoginStartCommand");
|
|
48347
|
+
}
|
|
47538
48348
|
/**
|
|
47539
48349
|
* @description
|
|
47540
48350
|
* @constructor
|
|
@@ -47598,6 +48408,9 @@ var LoginStartCommand = class _LoginStartCommand {
|
|
|
47598
48408
|
|
|
47599
48409
|
// src/useCases/logoutSelf.js
|
|
47600
48410
|
var LogoutSelfCommand = class _LogoutSelfCommand {
|
|
48411
|
+
static {
|
|
48412
|
+
__name(this, "LogoutSelfCommand");
|
|
48413
|
+
}
|
|
47601
48414
|
/**
|
|
47602
48415
|
* @description
|
|
47603
48416
|
* @constructor
|
|
@@ -47661,6 +48474,9 @@ var LogoutSelfCommand = class _LogoutSelfCommand {
|
|
|
47661
48474
|
|
|
47662
48475
|
// src/useCases/logoutUser.js
|
|
47663
48476
|
var LogoutUserCommand = class _LogoutUserCommand {
|
|
48477
|
+
static {
|
|
48478
|
+
__name(this, "LogoutUserCommand");
|
|
48479
|
+
}
|
|
47664
48480
|
/**
|
|
47665
48481
|
* @description
|
|
47666
48482
|
* @constructor
|
|
@@ -47724,6 +48540,9 @@ var LogoutUserCommand = class _LogoutUserCommand {
|
|
|
47724
48540
|
|
|
47725
48541
|
// src/useCases/matchUserIdentification.js
|
|
47726
48542
|
var MatchUserIdentificationCommand = class _MatchUserIdentificationCommand {
|
|
48543
|
+
static {
|
|
48544
|
+
__name(this, "MatchUserIdentificationCommand");
|
|
48545
|
+
}
|
|
47727
48546
|
/**
|
|
47728
48547
|
* @description
|
|
47729
48548
|
* @constructor
|
|
@@ -47787,6 +48606,9 @@ var MatchUserIdentificationCommand = class _MatchUserIdentificationCommand {
|
|
|
47787
48606
|
|
|
47788
48607
|
// src/useCases/oCRDocument.js
|
|
47789
48608
|
var OCRDocumentCommand = class _OCRDocumentCommand {
|
|
48609
|
+
static {
|
|
48610
|
+
__name(this, "OCRDocumentCommand");
|
|
48611
|
+
}
|
|
47790
48612
|
/**
|
|
47791
48613
|
* @description
|
|
47792
48614
|
* @constructor
|
|
@@ -47850,6 +48672,9 @@ var OCRDocumentCommand = class _OCRDocumentCommand {
|
|
|
47850
48672
|
|
|
47851
48673
|
// src/useCases/purchaseReservationEarlyCheckInProducts.js
|
|
47852
48674
|
var PurchaseReservationEarlyCheckInProductsCommand = class _PurchaseReservationEarlyCheckInProductsCommand {
|
|
48675
|
+
static {
|
|
48676
|
+
__name(this, "PurchaseReservationEarlyCheckInProductsCommand");
|
|
48677
|
+
}
|
|
47853
48678
|
/**
|
|
47854
48679
|
* @description
|
|
47855
48680
|
* @constructor
|
|
@@ -47913,6 +48738,9 @@ var PurchaseReservationEarlyCheckInProductsCommand = class _PurchaseReservationE
|
|
|
47913
48738
|
|
|
47914
48739
|
// src/useCases/purchaseReservationLateCheckOutProducts.js
|
|
47915
48740
|
var PurchaseReservationLateCheckOutProductsCommand = class _PurchaseReservationLateCheckOutProductsCommand {
|
|
48741
|
+
static {
|
|
48742
|
+
__name(this, "PurchaseReservationLateCheckOutProductsCommand");
|
|
48743
|
+
}
|
|
47916
48744
|
/**
|
|
47917
48745
|
* @description
|
|
47918
48746
|
* @constructor
|
|
@@ -47976,6 +48804,9 @@ var PurchaseReservationLateCheckOutProductsCommand = class _PurchaseReservationL
|
|
|
47976
48804
|
|
|
47977
48805
|
// src/useCases/purchaseReservationPetProducts.js
|
|
47978
48806
|
var PurchaseReservationPetProductsCommand = class _PurchaseReservationPetProductsCommand {
|
|
48807
|
+
static {
|
|
48808
|
+
__name(this, "PurchaseReservationPetProductsCommand");
|
|
48809
|
+
}
|
|
47979
48810
|
/**
|
|
47980
48811
|
* @description
|
|
47981
48812
|
* @constructor
|
|
@@ -48039,6 +48870,9 @@ var PurchaseReservationPetProductsCommand = class _PurchaseReservationPetProduct
|
|
|
48039
48870
|
|
|
48040
48871
|
// src/useCases/purchaseReservationPromos.js
|
|
48041
48872
|
var PurchaseReservationPromosCommand = class _PurchaseReservationPromosCommand {
|
|
48873
|
+
static {
|
|
48874
|
+
__name(this, "PurchaseReservationPromosCommand");
|
|
48875
|
+
}
|
|
48042
48876
|
/**
|
|
48043
48877
|
* @description
|
|
48044
48878
|
* @constructor
|
|
@@ -48102,6 +48936,9 @@ var PurchaseReservationPromosCommand = class _PurchaseReservationPromosCommand {
|
|
|
48102
48936
|
|
|
48103
48937
|
// src/useCases/purchaseReservationRoomUpgrades.js
|
|
48104
48938
|
var PurchaseReservationRoomUpgradesCommand = class _PurchaseReservationRoomUpgradesCommand {
|
|
48939
|
+
static {
|
|
48940
|
+
__name(this, "PurchaseReservationRoomUpgradesCommand");
|
|
48941
|
+
}
|
|
48105
48942
|
/**
|
|
48106
48943
|
* @description
|
|
48107
48944
|
* @constructor
|
|
@@ -48165,6 +49002,9 @@ var PurchaseReservationRoomUpgradesCommand = class _PurchaseReservationRoomUpgra
|
|
|
48165
49002
|
|
|
48166
49003
|
// src/useCases/requestLoginToken.js
|
|
48167
49004
|
var RequestLoginTokenCommand = class _RequestLoginTokenCommand {
|
|
49005
|
+
static {
|
|
49006
|
+
__name(this, "RequestLoginTokenCommand");
|
|
49007
|
+
}
|
|
48168
49008
|
/**
|
|
48169
49009
|
* @description
|
|
48170
49010
|
* @constructor
|
|
@@ -48228,6 +49068,9 @@ var RequestLoginTokenCommand = class _RequestLoginTokenCommand {
|
|
|
48228
49068
|
|
|
48229
49069
|
// src/useCases/sendCheckInSMS.js
|
|
48230
49070
|
var SendCheckInSMSCommand = class _SendCheckInSMSCommand {
|
|
49071
|
+
static {
|
|
49072
|
+
__name(this, "SendCheckInSMSCommand");
|
|
49073
|
+
}
|
|
48231
49074
|
/**
|
|
48232
49075
|
* @description
|
|
48233
49076
|
* @constructor
|
|
@@ -48291,6 +49134,9 @@ var SendCheckInSMSCommand = class _SendCheckInSMSCommand {
|
|
|
48291
49134
|
|
|
48292
49135
|
// src/useCases/sendCheckOutSMS.js
|
|
48293
49136
|
var SendCheckOutSMSCommand = class _SendCheckOutSMSCommand {
|
|
49137
|
+
static {
|
|
49138
|
+
__name(this, "SendCheckOutSMSCommand");
|
|
49139
|
+
}
|
|
48294
49140
|
/**
|
|
48295
49141
|
* @description
|
|
48296
49142
|
* @constructor
|
|
@@ -48354,6 +49200,9 @@ var SendCheckOutSMSCommand = class _SendCheckOutSMSCommand {
|
|
|
48354
49200
|
|
|
48355
49201
|
// src/useCases/sendPreArrivalEmail.js
|
|
48356
49202
|
var SendPreArrivalEmailCommand = class _SendPreArrivalEmailCommand {
|
|
49203
|
+
static {
|
|
49204
|
+
__name(this, "SendPreArrivalEmailCommand");
|
|
49205
|
+
}
|
|
48357
49206
|
/**
|
|
48358
49207
|
* @description
|
|
48359
49208
|
* @constructor
|
|
@@ -48417,6 +49266,9 @@ var SendPreArrivalEmailCommand = class _SendPreArrivalEmailCommand {
|
|
|
48417
49266
|
|
|
48418
49267
|
// src/useCases/sendPreArrivalSMS.js
|
|
48419
49268
|
var SendPreArrivalSMSCommand = class _SendPreArrivalSMSCommand {
|
|
49269
|
+
static {
|
|
49270
|
+
__name(this, "SendPreArrivalSMSCommand");
|
|
49271
|
+
}
|
|
48420
49272
|
/**
|
|
48421
49273
|
* @description
|
|
48422
49274
|
* @constructor
|
|
@@ -48480,6 +49332,9 @@ var SendPreArrivalSMSCommand = class _SendPreArrivalSMSCommand {
|
|
|
48480
49332
|
|
|
48481
49333
|
// src/useCases/sendRoomControlSMS.js
|
|
48482
49334
|
var SendRoomControlSMSCommand = class _SendRoomControlSMSCommand {
|
|
49335
|
+
static {
|
|
49336
|
+
__name(this, "SendRoomControlSMSCommand");
|
|
49337
|
+
}
|
|
48483
49338
|
/**
|
|
48484
49339
|
* @description
|
|
48485
49340
|
* @constructor
|
|
@@ -48543,6 +49398,9 @@ var SendRoomControlSMSCommand = class _SendRoomControlSMSCommand {
|
|
|
48543
49398
|
|
|
48544
49399
|
// src/useCases/sendVerificationCode.js
|
|
48545
49400
|
var SendVerificationCodeCommand = class _SendVerificationCodeCommand {
|
|
49401
|
+
static {
|
|
49402
|
+
__name(this, "SendVerificationCodeCommand");
|
|
49403
|
+
}
|
|
48546
49404
|
/**
|
|
48547
49405
|
* @description
|
|
48548
49406
|
* @constructor
|
|
@@ -48606,6 +49464,9 @@ var SendVerificationCodeCommand = class _SendVerificationCodeCommand {
|
|
|
48606
49464
|
|
|
48607
49465
|
// src/useCases/setAlarm.js
|
|
48608
49466
|
var SetAlarmCommand = class _SetAlarmCommand {
|
|
49467
|
+
static {
|
|
49468
|
+
__name(this, "SetAlarmCommand");
|
|
49469
|
+
}
|
|
48609
49470
|
/**
|
|
48610
49471
|
* @description
|
|
48611
49472
|
* @constructor
|
|
@@ -48669,6 +49530,9 @@ var SetAlarmCommand = class _SetAlarmCommand {
|
|
|
48669
49530
|
|
|
48670
49531
|
// src/useCases/setCamera.js
|
|
48671
49532
|
var SetCameraCommand = class _SetCameraCommand {
|
|
49533
|
+
static {
|
|
49534
|
+
__name(this, "SetCameraCommand");
|
|
49535
|
+
}
|
|
48672
49536
|
/**
|
|
48673
49537
|
* @description
|
|
48674
49538
|
* @constructor
|
|
@@ -48732,6 +49596,9 @@ var SetCameraCommand = class _SetCameraCommand {
|
|
|
48732
49596
|
|
|
48733
49597
|
// src/useCases/setCourtesy.js
|
|
48734
49598
|
var SetCourtesyCommand = class _SetCourtesyCommand {
|
|
49599
|
+
static {
|
|
49600
|
+
__name(this, "SetCourtesyCommand");
|
|
49601
|
+
}
|
|
48735
49602
|
/**
|
|
48736
49603
|
* @description
|
|
48737
49604
|
* @constructor
|
|
@@ -48795,6 +49662,9 @@ var SetCourtesyCommand = class _SetCourtesyCommand {
|
|
|
48795
49662
|
|
|
48796
49663
|
// src/useCases/setDimmer.js
|
|
48797
49664
|
var SetDimmerCommand = class _SetDimmerCommand {
|
|
49665
|
+
static {
|
|
49666
|
+
__name(this, "SetDimmerCommand");
|
|
49667
|
+
}
|
|
48798
49668
|
/**
|
|
48799
49669
|
* @description
|
|
48800
49670
|
* @constructor
|
|
@@ -48858,6 +49728,9 @@ var SetDimmerCommand = class _SetDimmerCommand {
|
|
|
48858
49728
|
|
|
48859
49729
|
// src/useCases/setLock.js
|
|
48860
49730
|
var SetLockCommand = class _SetLockCommand {
|
|
49731
|
+
static {
|
|
49732
|
+
__name(this, "SetLockCommand");
|
|
49733
|
+
}
|
|
48861
49734
|
/**
|
|
48862
49735
|
* @description
|
|
48863
49736
|
* @constructor
|
|
@@ -48921,6 +49794,9 @@ var SetLockCommand = class _SetLockCommand {
|
|
|
48921
49794
|
|
|
48922
49795
|
// src/useCases/setMediaSource.js
|
|
48923
49796
|
var SetMediaSourceCommand = class _SetMediaSourceCommand {
|
|
49797
|
+
static {
|
|
49798
|
+
__name(this, "SetMediaSourceCommand");
|
|
49799
|
+
}
|
|
48924
49800
|
/**
|
|
48925
49801
|
* @description
|
|
48926
49802
|
* @constructor
|
|
@@ -48984,6 +49860,9 @@ var SetMediaSourceCommand = class _SetMediaSourceCommand {
|
|
|
48984
49860
|
|
|
48985
49861
|
// src/useCases/setRoomScene.js
|
|
48986
49862
|
var SetRoomSceneCommand = class _SetRoomSceneCommand {
|
|
49863
|
+
static {
|
|
49864
|
+
__name(this, "SetRoomSceneCommand");
|
|
49865
|
+
}
|
|
48987
49866
|
/**
|
|
48988
49867
|
* @description
|
|
48989
49868
|
* @constructor
|
|
@@ -49047,6 +49926,9 @@ var SetRoomSceneCommand = class _SetRoomSceneCommand {
|
|
|
49047
49926
|
|
|
49048
49927
|
// src/useCases/setScene.js
|
|
49049
49928
|
var SetSceneCommand = class _SetSceneCommand {
|
|
49929
|
+
static {
|
|
49930
|
+
__name(this, "SetSceneCommand");
|
|
49931
|
+
}
|
|
49050
49932
|
/**
|
|
49051
49933
|
* @description
|
|
49052
49934
|
* @constructor
|
|
@@ -49110,6 +49992,9 @@ var SetSceneCommand = class _SetSceneCommand {
|
|
|
49110
49992
|
|
|
49111
49993
|
// src/useCases/setSpaceScene.js
|
|
49112
49994
|
var SetSpaceSceneCommand = class _SetSpaceSceneCommand {
|
|
49995
|
+
static {
|
|
49996
|
+
__name(this, "SetSpaceSceneCommand");
|
|
49997
|
+
}
|
|
49113
49998
|
/**
|
|
49114
49999
|
* @description
|
|
49115
50000
|
* @constructor
|
|
@@ -49173,6 +50058,9 @@ var SetSpaceSceneCommand = class _SetSpaceSceneCommand {
|
|
|
49173
50058
|
|
|
49174
50059
|
// src/useCases/setSwitch.js
|
|
49175
50060
|
var SetSwitchCommand = class _SetSwitchCommand {
|
|
50061
|
+
static {
|
|
50062
|
+
__name(this, "SetSwitchCommand");
|
|
50063
|
+
}
|
|
49176
50064
|
/**
|
|
49177
50065
|
* @description
|
|
49178
50066
|
* @constructor
|
|
@@ -49236,6 +50124,9 @@ var SetSwitchCommand = class _SetSwitchCommand {
|
|
|
49236
50124
|
|
|
49237
50125
|
// src/useCases/setThermostat.js
|
|
49238
50126
|
var SetThermostatCommand = class _SetThermostatCommand {
|
|
50127
|
+
static {
|
|
50128
|
+
__name(this, "SetThermostatCommand");
|
|
50129
|
+
}
|
|
49239
50130
|
/**
|
|
49240
50131
|
* @description
|
|
49241
50132
|
* @constructor
|
|
@@ -49299,6 +50190,9 @@ var SetThermostatCommand = class _SetThermostatCommand {
|
|
|
49299
50190
|
|
|
49300
50191
|
// src/useCases/setWindowCovering.js
|
|
49301
50192
|
var SetWindowCoveringCommand = class _SetWindowCoveringCommand {
|
|
50193
|
+
static {
|
|
50194
|
+
__name(this, "SetWindowCoveringCommand");
|
|
50195
|
+
}
|
|
49302
50196
|
/**
|
|
49303
50197
|
* @description
|
|
49304
50198
|
* @constructor
|
|
@@ -49362,6 +50256,9 @@ var SetWindowCoveringCommand = class _SetWindowCoveringCommand {
|
|
|
49362
50256
|
|
|
49363
50257
|
// src/useCases/startRegisterPasskey.js
|
|
49364
50258
|
var StartRegisterPasskeyCommand = class _StartRegisterPasskeyCommand {
|
|
50259
|
+
static {
|
|
50260
|
+
__name(this, "StartRegisterPasskeyCommand");
|
|
50261
|
+
}
|
|
49365
50262
|
/**
|
|
49366
50263
|
* @description
|
|
49367
50264
|
* @constructor
|
|
@@ -49425,6 +50322,9 @@ var StartRegisterPasskeyCommand = class _StartRegisterPasskeyCommand {
|
|
|
49425
50322
|
|
|
49426
50323
|
// src/useCases/startSOS.js
|
|
49427
50324
|
var StartSOSCommand = class _StartSOSCommand {
|
|
50325
|
+
static {
|
|
50326
|
+
__name(this, "StartSOSCommand");
|
|
50327
|
+
}
|
|
49428
50328
|
/**
|
|
49429
50329
|
* @description
|
|
49430
50330
|
* @constructor
|
|
@@ -49488,6 +50388,9 @@ var StartSOSCommand = class _StartSOSCommand {
|
|
|
49488
50388
|
|
|
49489
50389
|
// src/useCases/stopSOS.js
|
|
49490
50390
|
var StopSOSCommand = class _StopSOSCommand {
|
|
50391
|
+
static {
|
|
50392
|
+
__name(this, "StopSOSCommand");
|
|
50393
|
+
}
|
|
49491
50394
|
/**
|
|
49492
50395
|
* @description
|
|
49493
50396
|
* @constructor
|
|
@@ -49551,6 +50454,9 @@ var StopSOSCommand = class _StopSOSCommand {
|
|
|
49551
50454
|
|
|
49552
50455
|
// src/useCases/tipUser.js
|
|
49553
50456
|
var TipUserCommand = class _TipUserCommand {
|
|
50457
|
+
static {
|
|
50458
|
+
__name(this, "TipUserCommand");
|
|
50459
|
+
}
|
|
49554
50460
|
/**
|
|
49555
50461
|
* @description
|
|
49556
50462
|
* @constructor
|
|
@@ -49614,6 +50520,9 @@ var TipUserCommand = class _TipUserCommand {
|
|
|
49614
50520
|
|
|
49615
50521
|
// src/useCases/updateAlarm.js
|
|
49616
50522
|
var UpdateAlarmCommand = class _UpdateAlarmCommand {
|
|
50523
|
+
static {
|
|
50524
|
+
__name(this, "UpdateAlarmCommand");
|
|
50525
|
+
}
|
|
49617
50526
|
/**
|
|
49618
50527
|
* @description
|
|
49619
50528
|
* @constructor
|
|
@@ -49677,6 +50586,9 @@ var UpdateAlarmCommand = class _UpdateAlarmCommand {
|
|
|
49677
50586
|
|
|
49678
50587
|
// src/useCases/updateAnnouncement.js
|
|
49679
50588
|
var UpdateAnnouncementCommand = class _UpdateAnnouncementCommand {
|
|
50589
|
+
static {
|
|
50590
|
+
__name(this, "UpdateAnnouncementCommand");
|
|
50591
|
+
}
|
|
49680
50592
|
/**
|
|
49681
50593
|
* @description
|
|
49682
50594
|
* @constructor
|
|
@@ -49740,6 +50652,9 @@ var UpdateAnnouncementCommand = class _UpdateAnnouncementCommand {
|
|
|
49740
50652
|
|
|
49741
50653
|
// src/useCases/updateCamera.js
|
|
49742
50654
|
var UpdateCameraCommand = class _UpdateCameraCommand {
|
|
50655
|
+
static {
|
|
50656
|
+
__name(this, "UpdateCameraCommand");
|
|
50657
|
+
}
|
|
49743
50658
|
/**
|
|
49744
50659
|
* @description
|
|
49745
50660
|
* @constructor
|
|
@@ -49803,6 +50718,9 @@ var UpdateCameraCommand = class _UpdateCameraCommand {
|
|
|
49803
50718
|
|
|
49804
50719
|
// src/useCases/updateCategory.js
|
|
49805
50720
|
var UpdateCategoryCommand = class _UpdateCategoryCommand {
|
|
50721
|
+
static {
|
|
50722
|
+
__name(this, "UpdateCategoryCommand");
|
|
50723
|
+
}
|
|
49806
50724
|
/**
|
|
49807
50725
|
* @description
|
|
49808
50726
|
* @constructor
|
|
@@ -49866,6 +50784,9 @@ var UpdateCategoryCommand = class _UpdateCategoryCommand {
|
|
|
49866
50784
|
|
|
49867
50785
|
// src/useCases/updateCourtesy.js
|
|
49868
50786
|
var UpdateCourtesyCommand = class _UpdateCourtesyCommand {
|
|
50787
|
+
static {
|
|
50788
|
+
__name(this, "UpdateCourtesyCommand");
|
|
50789
|
+
}
|
|
49869
50790
|
/**
|
|
49870
50791
|
* @description
|
|
49871
50792
|
* @constructor
|
|
@@ -49929,6 +50850,9 @@ var UpdateCourtesyCommand = class _UpdateCourtesyCommand {
|
|
|
49929
50850
|
|
|
49930
50851
|
// src/useCases/updateDimmer.js
|
|
49931
50852
|
var UpdateDimmerCommand = class _UpdateDimmerCommand {
|
|
50853
|
+
static {
|
|
50854
|
+
__name(this, "UpdateDimmerCommand");
|
|
50855
|
+
}
|
|
49932
50856
|
/**
|
|
49933
50857
|
* @description
|
|
49934
50858
|
* @constructor
|
|
@@ -49992,6 +50916,9 @@ var UpdateDimmerCommand = class _UpdateDimmerCommand {
|
|
|
49992
50916
|
|
|
49993
50917
|
// src/useCases/updateDiscoveredDevice.js
|
|
49994
50918
|
var UpdateDiscoveredDeviceCommand = class _UpdateDiscoveredDeviceCommand {
|
|
50919
|
+
static {
|
|
50920
|
+
__name(this, "UpdateDiscoveredDeviceCommand");
|
|
50921
|
+
}
|
|
49995
50922
|
/**
|
|
49996
50923
|
* @description
|
|
49997
50924
|
* @constructor
|
|
@@ -50055,6 +50982,9 @@ var UpdateDiscoveredDeviceCommand = class _UpdateDiscoveredDeviceCommand {
|
|
|
50055
50982
|
|
|
50056
50983
|
// src/useCases/updateIssue.js
|
|
50057
50984
|
var UpdateIssueCommand = class _UpdateIssueCommand {
|
|
50985
|
+
static {
|
|
50986
|
+
__name(this, "UpdateIssueCommand");
|
|
50987
|
+
}
|
|
50058
50988
|
/**
|
|
50059
50989
|
* @description
|
|
50060
50990
|
* @constructor
|
|
@@ -50118,6 +51048,9 @@ var UpdateIssueCommand = class _UpdateIssueCommand {
|
|
|
50118
51048
|
|
|
50119
51049
|
// src/useCases/updateLock.js
|
|
50120
51050
|
var UpdateLockCommand = class _UpdateLockCommand {
|
|
51051
|
+
static {
|
|
51052
|
+
__name(this, "UpdateLockCommand");
|
|
51053
|
+
}
|
|
50121
51054
|
/**
|
|
50122
51055
|
* @description
|
|
50123
51056
|
* @constructor
|
|
@@ -50181,6 +51114,9 @@ var UpdateLockCommand = class _UpdateLockCommand {
|
|
|
50181
51114
|
|
|
50182
51115
|
// src/useCases/updateMediaSource.js
|
|
50183
51116
|
var UpdateMediaSourceCommand = class _UpdateMediaSourceCommand {
|
|
51117
|
+
static {
|
|
51118
|
+
__name(this, "UpdateMediaSourceCommand");
|
|
51119
|
+
}
|
|
50184
51120
|
/**
|
|
50185
51121
|
* @description
|
|
50186
51122
|
* @constructor
|
|
@@ -50244,6 +51180,9 @@ var UpdateMediaSourceCommand = class _UpdateMediaSourceCommand {
|
|
|
50244
51180
|
|
|
50245
51181
|
// src/useCases/updateMessageReadStatus.js
|
|
50246
51182
|
var UpdateMessageReadStatusCommand = class _UpdateMessageReadStatusCommand {
|
|
51183
|
+
static {
|
|
51184
|
+
__name(this, "UpdateMessageReadStatusCommand");
|
|
51185
|
+
}
|
|
50247
51186
|
/**
|
|
50248
51187
|
* @description
|
|
50249
51188
|
* @constructor
|
|
@@ -50307,6 +51246,9 @@ var UpdateMessageReadStatusCommand = class _UpdateMessageReadStatusCommand {
|
|
|
50307
51246
|
|
|
50308
51247
|
// src/useCases/updateOrganization.js
|
|
50309
51248
|
var UpdateOrganizationCommand = class _UpdateOrganizationCommand {
|
|
51249
|
+
static {
|
|
51250
|
+
__name(this, "UpdateOrganizationCommand");
|
|
51251
|
+
}
|
|
50310
51252
|
/**
|
|
50311
51253
|
* @description
|
|
50312
51254
|
* @constructor
|
|
@@ -50370,6 +51312,9 @@ var UpdateOrganizationCommand = class _UpdateOrganizationCommand {
|
|
|
50370
51312
|
|
|
50371
51313
|
// src/useCases/updatePolicy.js
|
|
50372
51314
|
var UpdatePolicyCommand = class _UpdatePolicyCommand {
|
|
51315
|
+
static {
|
|
51316
|
+
__name(this, "UpdatePolicyCommand");
|
|
51317
|
+
}
|
|
50373
51318
|
/**
|
|
50374
51319
|
* @description
|
|
50375
51320
|
* @constructor
|
|
@@ -50433,6 +51378,9 @@ var UpdatePolicyCommand = class _UpdatePolicyCommand {
|
|
|
50433
51378
|
|
|
50434
51379
|
// src/useCases/updateProperty.js
|
|
50435
51380
|
var UpdatePropertyCommand = class _UpdatePropertyCommand {
|
|
51381
|
+
static {
|
|
51382
|
+
__name(this, "UpdatePropertyCommand");
|
|
51383
|
+
}
|
|
50436
51384
|
/**
|
|
50437
51385
|
* @description
|
|
50438
51386
|
* @constructor
|
|
@@ -50496,6 +51444,9 @@ var UpdatePropertyCommand = class _UpdatePropertyCommand {
|
|
|
50496
51444
|
|
|
50497
51445
|
// src/useCases/updatePropertySettings.js
|
|
50498
51446
|
var UpdatePropertySettingsCommand = class _UpdatePropertySettingsCommand {
|
|
51447
|
+
static {
|
|
51448
|
+
__name(this, "UpdatePropertySettingsCommand");
|
|
51449
|
+
}
|
|
50499
51450
|
/**
|
|
50500
51451
|
* @description
|
|
50501
51452
|
* @constructor
|
|
@@ -50559,6 +51510,9 @@ var UpdatePropertySettingsCommand = class _UpdatePropertySettingsCommand {
|
|
|
50559
51510
|
|
|
50560
51511
|
// src/useCases/updateReservation.js
|
|
50561
51512
|
var UpdateReservationCommand = class _UpdateReservationCommand {
|
|
51513
|
+
static {
|
|
51514
|
+
__name(this, "UpdateReservationCommand");
|
|
51515
|
+
}
|
|
50562
51516
|
/**
|
|
50563
51517
|
* @description
|
|
50564
51518
|
* @constructor
|
|
@@ -50622,6 +51576,9 @@ var UpdateReservationCommand = class _UpdateReservationCommand {
|
|
|
50622
51576
|
|
|
50623
51577
|
// src/useCases/updateReservationExpectedArrivalTime.js
|
|
50624
51578
|
var UpdateReservationExpectedArrivalTimeCommand = class _UpdateReservationExpectedArrivalTimeCommand {
|
|
51579
|
+
static {
|
|
51580
|
+
__name(this, "UpdateReservationExpectedArrivalTimeCommand");
|
|
51581
|
+
}
|
|
50625
51582
|
/**
|
|
50626
51583
|
* @description
|
|
50627
51584
|
* @constructor
|
|
@@ -50685,6 +51642,9 @@ var UpdateReservationExpectedArrivalTimeCommand = class _UpdateReservationExpect
|
|
|
50685
51642
|
|
|
50686
51643
|
// src/useCases/updateRoom.js
|
|
50687
51644
|
var UpdateRoomCommand = class _UpdateRoomCommand {
|
|
51645
|
+
static {
|
|
51646
|
+
__name(this, "UpdateRoomCommand");
|
|
51647
|
+
}
|
|
50688
51648
|
/**
|
|
50689
51649
|
* @description
|
|
50690
51650
|
* @constructor
|
|
@@ -50748,6 +51708,9 @@ var UpdateRoomCommand = class _UpdateRoomCommand {
|
|
|
50748
51708
|
|
|
50749
51709
|
// src/useCases/updateSelf.js
|
|
50750
51710
|
var UpdateSelfCommand = class _UpdateSelfCommand {
|
|
51711
|
+
static {
|
|
51712
|
+
__name(this, "UpdateSelfCommand");
|
|
51713
|
+
}
|
|
50751
51714
|
/**
|
|
50752
51715
|
* @description
|
|
50753
51716
|
* @constructor
|
|
@@ -50811,6 +51774,9 @@ var UpdateSelfCommand = class _UpdateSelfCommand {
|
|
|
50811
51774
|
|
|
50812
51775
|
// src/useCases/updateSpace.js
|
|
50813
51776
|
var UpdateSpaceCommand = class _UpdateSpaceCommand {
|
|
51777
|
+
static {
|
|
51778
|
+
__name(this, "UpdateSpaceCommand");
|
|
51779
|
+
}
|
|
50814
51780
|
/**
|
|
50815
51781
|
* @description
|
|
50816
51782
|
* @constructor
|
|
@@ -50874,6 +51840,9 @@ var UpdateSpaceCommand = class _UpdateSpaceCommand {
|
|
|
50874
51840
|
|
|
50875
51841
|
// src/useCases/updateSwitch.js
|
|
50876
51842
|
var UpdateSwitchCommand = class _UpdateSwitchCommand {
|
|
51843
|
+
static {
|
|
51844
|
+
__name(this, "UpdateSwitchCommand");
|
|
51845
|
+
}
|
|
50877
51846
|
/**
|
|
50878
51847
|
* @description
|
|
50879
51848
|
* @constructor
|
|
@@ -50937,6 +51906,9 @@ var UpdateSwitchCommand = class _UpdateSwitchCommand {
|
|
|
50937
51906
|
|
|
50938
51907
|
// src/useCases/updateThermostat.js
|
|
50939
51908
|
var UpdateThermostatCommand = class _UpdateThermostatCommand {
|
|
51909
|
+
static {
|
|
51910
|
+
__name(this, "UpdateThermostatCommand");
|
|
51911
|
+
}
|
|
50940
51912
|
/**
|
|
50941
51913
|
* @description
|
|
50942
51914
|
* @constructor
|
|
@@ -51000,6 +51972,9 @@ var UpdateThermostatCommand = class _UpdateThermostatCommand {
|
|
|
51000
51972
|
|
|
51001
51973
|
// src/useCases/updateTicket.js
|
|
51002
51974
|
var UpdateTicketCommand = class _UpdateTicketCommand {
|
|
51975
|
+
static {
|
|
51976
|
+
__name(this, "UpdateTicketCommand");
|
|
51977
|
+
}
|
|
51003
51978
|
/**
|
|
51004
51979
|
* @description
|
|
51005
51980
|
* @constructor
|
|
@@ -51063,6 +52038,9 @@ var UpdateTicketCommand = class _UpdateTicketCommand {
|
|
|
51063
52038
|
|
|
51064
52039
|
// src/useCases/updateTicketStatus.js
|
|
51065
52040
|
var UpdateTicketStatusCommand = class _UpdateTicketStatusCommand {
|
|
52041
|
+
static {
|
|
52042
|
+
__name(this, "UpdateTicketStatusCommand");
|
|
52043
|
+
}
|
|
51066
52044
|
/**
|
|
51067
52045
|
* @description
|
|
51068
52046
|
* @constructor
|
|
@@ -51126,6 +52104,9 @@ var UpdateTicketStatusCommand = class _UpdateTicketStatusCommand {
|
|
|
51126
52104
|
|
|
51127
52105
|
// src/useCases/updateTimeSheet.js
|
|
51128
52106
|
var UpdateTimeSheetCommand = class _UpdateTimeSheetCommand {
|
|
52107
|
+
static {
|
|
52108
|
+
__name(this, "UpdateTimeSheetCommand");
|
|
52109
|
+
}
|
|
51129
52110
|
/**
|
|
51130
52111
|
* @description
|
|
51131
52112
|
* @constructor
|
|
@@ -51189,6 +52170,9 @@ var UpdateTimeSheetCommand = class _UpdateTimeSheetCommand {
|
|
|
51189
52170
|
|
|
51190
52171
|
// src/useCases/updateTimeSheetTimeEntry.js
|
|
51191
52172
|
var UpdateTimeSheetTimeEntryCommand = class _UpdateTimeSheetTimeEntryCommand {
|
|
52173
|
+
static {
|
|
52174
|
+
__name(this, "UpdateTimeSheetTimeEntryCommand");
|
|
52175
|
+
}
|
|
51192
52176
|
/**
|
|
51193
52177
|
* @description
|
|
51194
52178
|
* @constructor
|
|
@@ -51252,6 +52236,9 @@ var UpdateTimeSheetTimeEntryCommand = class _UpdateTimeSheetTimeEntryCommand {
|
|
|
51252
52236
|
|
|
51253
52237
|
// src/useCases/updateUser.js
|
|
51254
52238
|
var UpdateUserCommand = class _UpdateUserCommand {
|
|
52239
|
+
static {
|
|
52240
|
+
__name(this, "UpdateUserCommand");
|
|
52241
|
+
}
|
|
51255
52242
|
/**
|
|
51256
52243
|
* @description
|
|
51257
52244
|
* @constructor
|
|
@@ -51315,6 +52302,9 @@ var UpdateUserCommand = class _UpdateUserCommand {
|
|
|
51315
52302
|
|
|
51316
52303
|
// src/useCases/updateVendor.js
|
|
51317
52304
|
var UpdateVendorCommand = class _UpdateVendorCommand {
|
|
52305
|
+
static {
|
|
52306
|
+
__name(this, "UpdateVendorCommand");
|
|
52307
|
+
}
|
|
51318
52308
|
/**
|
|
51319
52309
|
* @description
|
|
51320
52310
|
* @constructor
|
|
@@ -51378,6 +52368,9 @@ var UpdateVendorCommand = class _UpdateVendorCommand {
|
|
|
51378
52368
|
|
|
51379
52369
|
// src/useCases/updateWindowCovering.js
|
|
51380
52370
|
var UpdateWindowCoveringCommand = class _UpdateWindowCoveringCommand {
|
|
52371
|
+
static {
|
|
52372
|
+
__name(this, "UpdateWindowCoveringCommand");
|
|
52373
|
+
}
|
|
51381
52374
|
/**
|
|
51382
52375
|
* @description
|
|
51383
52376
|
* @constructor
|
|
@@ -51441,6 +52434,9 @@ var UpdateWindowCoveringCommand = class _UpdateWindowCoveringCommand {
|
|
|
51441
52434
|
|
|
51442
52435
|
// src/useCases/uploadImage.js
|
|
51443
52436
|
var UploadImageCommand = class _UploadImageCommand {
|
|
52437
|
+
static {
|
|
52438
|
+
__name(this, "UploadImageCommand");
|
|
52439
|
+
}
|
|
51444
52440
|
/**
|
|
51445
52441
|
* @description
|
|
51446
52442
|
* @constructor
|
|
@@ -51504,6 +52500,9 @@ var UploadImageCommand = class _UploadImageCommand {
|
|
|
51504
52500
|
|
|
51505
52501
|
// src/useCases/upsertDiscoveredDevice.js
|
|
51506
52502
|
var UpsertDiscoveredDeviceCommand = class _UpsertDiscoveredDeviceCommand {
|
|
52503
|
+
static {
|
|
52504
|
+
__name(this, "UpsertDiscoveredDeviceCommand");
|
|
52505
|
+
}
|
|
51507
52506
|
/**
|
|
51508
52507
|
* @description
|
|
51509
52508
|
* @constructor
|
|
@@ -51656,6 +52655,7 @@ function entityFactory(type) {
|
|
|
51656
52655
|
throw new Error("Unknown entity type: " + type);
|
|
51657
52656
|
}
|
|
51658
52657
|
}
|
|
52658
|
+
__name(entityFactory, "entityFactory");
|
|
51659
52659
|
function errorFactory(errName) {
|
|
51660
52660
|
switch (errName) {
|
|
51661
52661
|
case "AppError":
|
|
@@ -51686,12 +52686,14 @@ function errorFactory(errName) {
|
|
|
51686
52686
|
return new Error("Invalid error name: " + errName);
|
|
51687
52687
|
}
|
|
51688
52688
|
}
|
|
52689
|
+
__name(errorFactory, "errorFactory");
|
|
51689
52690
|
function eventFactory(eventName) {
|
|
51690
52691
|
const AllEvents = Object.values(events_exports);
|
|
51691
52692
|
const Event2 = AllEvents.find((E) => E.prototype.name === eventName);
|
|
51692
52693
|
if (!Event2) throw new Error("Invalid event name: " + eventName);
|
|
51693
52694
|
return Event2;
|
|
51694
52695
|
}
|
|
52696
|
+
__name(eventFactory, "eventFactory");
|
|
51695
52697
|
// Annotate the CommonJS export names for ESM import in node:
|
|
51696
52698
|
0 && (module.exports = {
|
|
51697
52699
|
AMQPClient,
|