@kohost/api-client 4.0.4 → 4.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist/{chunk-EBJTC6MA.js → chunk-5I2BBUZP.js} +11 -1
  2. package/dist/{chunk-EBJTC6MA.js.map → chunk-5I2BBUZP.js.map} +1 -1
  3. package/dist/{chunk-HKJ2B2AA.js → chunk-FU4IK6I4.js} +3 -1
  4. package/dist/{chunk-KBBL6OJS.js → chunk-SLDNFNED.js} +290 -90
  5. package/dist/{chunk-KBBL6OJS.js.map → chunk-SLDNFNED.js.map} +1 -1
  6. package/dist/{chunk-36WNTEIW.js → chunk-SORMAXAX.js} +35 -2
  7. package/dist/{chunk-36WNTEIW.js.map → chunk-SORMAXAX.js.map} +1 -1
  8. package/dist/{chunk-MYWOGDCQ.js → chunk-TBEXLKDH.js} +25 -21
  9. package/dist/chunk-TBEXLKDH.js.map +1 -0
  10. package/dist/{chunk-W2G36LNI.js → chunk-UZQ2AWUY.js} +8 -1
  11. package/dist/{chunk-W2G36LNI.js.map → chunk-UZQ2AWUY.js.map} +1 -1
  12. package/dist/client.cjs +39 -7
  13. package/dist/client.cjs.map +1 -1
  14. package/dist/client.js +39 -9
  15. package/dist/client.js.map +1 -1
  16. package/dist/commands.cjs +85 -0
  17. package/dist/commands.cjs.map +1 -1
  18. package/dist/commands.js +87 -1
  19. package/dist/commands.js.map +1 -1
  20. package/dist/defs.js +1 -1
  21. package/dist/errors.cjs +37 -0
  22. package/dist/errors.cjs.map +1 -1
  23. package/dist/errors.js +3 -3
  24. package/dist/events.cjs +16 -12
  25. package/dist/events.cjs.map +1 -1
  26. package/dist/events.d.cts +7 -7
  27. package/dist/events.d.ts +7 -7
  28. package/dist/events.js +14 -14
  29. package/dist/index.cjs +1110 -108
  30. package/dist/index.cjs.map +1 -1
  31. package/dist/index.d.cts +21 -21
  32. package/dist/index.d.ts +21 -21
  33. package/dist/index.js +1110 -108
  34. package/dist/index.js.map +1 -1
  35. package/dist/models.cjs +292 -86
  36. package/dist/models.cjs.map +1 -1
  37. package/dist/models.js +3 -3
  38. package/dist/socketIoClient.cjs +7 -3
  39. package/dist/socketIoClient.cjs.map +1 -1
  40. package/dist/socketIoClient.d.cts +1 -1
  41. package/dist/socketIoClient.d.ts +1 -1
  42. package/dist/socketIoClient.js +9 -4
  43. package/dist/socketIoClient.js.map +1 -1
  44. package/dist/useCases.cjs +640 -0
  45. package/dist/useCases.cjs.map +1 -1
  46. package/dist/useCases.js +640 -2
  47. package/dist/useCases.js.map +1 -1
  48. package/dist/utils.cjs +340 -98
  49. package/dist/utils.cjs.map +1 -1
  50. package/dist/utils.d.cts +2 -2
  51. package/dist/utils.d.ts +2 -2
  52. package/dist/utils.js +10 -5
  53. package/dist/utils.js.map +1 -1
  54. package/package.json +1 -1
  55. package/dist/chunk-MYWOGDCQ.js.map +0 -1
  56. /package/dist/{chunk-HKJ2B2AA.js.map → chunk-FU4IK6I4.js.map} +0 -0
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  var __defProp = Object.defineProperty;
2
2
  var __getOwnPropNames = Object.getOwnPropertyNames;
3
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
4
  var __commonJS = (cb, mod) => function __require() {
4
5
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
5
6
  };
@@ -12,7 +13,7 @@ var __export = (target, all) => {
12
13
  var require_fast_deep_equal = __commonJS({
13
14
  "node_modules/fast-deep-equal/index.js"(exports, module) {
14
15
  "use strict";
15
- module.exports = function equal(a, b) {
16
+ module.exports = /* @__PURE__ */ __name(function equal(a, b) {
16
17
  if (a === b) return true;
17
18
  if (a && b && typeof a == "object" && typeof b == "object") {
18
19
  if (a.constructor !== b.constructor) return false;
@@ -39,7 +40,7 @@ var require_fast_deep_equal = __commonJS({
39
40
  return true;
40
41
  }
41
42
  return a !== a && b !== b;
42
- };
43
+ }, "equal");
43
44
  }
44
45
  });
45
46
 
@@ -75,6 +76,7 @@ var require_ucs2length = __commonJS({
75
76
  }
76
77
  return length;
77
78
  }
79
+ __name(ucs2length, "ucs2length");
78
80
  exports.default = ucs2length;
79
81
  ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
80
82
  }
@@ -89,6 +91,7 @@ var require_formats = __commonJS({
89
91
  function fmtDef(validate, compare) {
90
92
  return { validate, compare };
91
93
  }
94
+ __name(fmtDef, "fmtDef");
92
95
  exports.fullFormats = {
93
96
  // date: http://tools.ietf.org/html/rfc3339#section-5.6
94
97
  date: fmtDef(date, compareDate),
@@ -155,6 +158,7 @@ var require_formats = __commonJS({
155
158
  function isLeapYear(year) {
156
159
  return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0);
157
160
  }
161
+ __name(isLeapYear, "isLeapYear");
158
162
  var DATE = /^(\d\d\d\d)-(\d\d)-(\d\d)$/;
159
163
  var DAYS = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
160
164
  function date(str) {
@@ -166,6 +170,7 @@ var require_formats = __commonJS({
166
170
  const day = +matches[3];
167
171
  return month >= 1 && month <= 12 && day >= 1 && day <= (month === 2 && isLeapYear(year) ? 29 : DAYS[month]);
168
172
  }
173
+ __name(date, "date");
169
174
  function compareDate(d1, d2) {
170
175
  if (!(d1 && d2))
171
176
  return void 0;
@@ -175,9 +180,10 @@ var require_formats = __commonJS({
175
180
  return -1;
176
181
  return 0;
177
182
  }
183
+ __name(compareDate, "compareDate");
178
184
  var TIME = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)(z|([+-])(\d\d)(?::?(\d\d))?)?$/i;
179
185
  function getTime(strictTimeZone) {
180
- return function time(str) {
186
+ return /* @__PURE__ */ __name(function time(str) {
181
187
  const matches = TIME.exec(str);
182
188
  if (!matches)
183
189
  return false;
@@ -195,8 +201,9 @@ var require_formats = __commonJS({
195
201
  const utcMin = min - tzM * tzSign;
196
202
  const utcHr = hr - tzH * tzSign - (utcMin < 0 ? 1 : 0);
197
203
  return (utcHr === 23 || utcHr === -1) && (utcMin === 59 || utcMin === -1) && sec < 61;
198
- };
204
+ }, "time");
199
205
  }
206
+ __name(getTime, "getTime");
200
207
  function compareTime(s1, s2) {
201
208
  if (!(s1 && s2))
202
209
  return void 0;
@@ -206,6 +213,7 @@ var require_formats = __commonJS({
206
213
  return void 0;
207
214
  return t1 - t2;
208
215
  }
216
+ __name(compareTime, "compareTime");
209
217
  function compareIsoTime(t1, t2) {
210
218
  if (!(t1 && t2))
211
219
  return void 0;
@@ -221,14 +229,16 @@ var require_formats = __commonJS({
221
229
  return -1;
222
230
  return 0;
223
231
  }
232
+ __name(compareIsoTime, "compareIsoTime");
224
233
  var DATE_TIME_SEPARATOR = /t|\s/i;
225
234
  function getDateTime(strictTimeZone) {
226
235
  const time = getTime(strictTimeZone);
227
- return function date_time(str) {
236
+ return /* @__PURE__ */ __name(function date_time(str) {
228
237
  const dateTime = str.split(DATE_TIME_SEPARATOR);
229
238
  return dateTime.length === 2 && date(dateTime[0]) && time(dateTime[1]);
230
- };
239
+ }, "date_time");
231
240
  }
241
+ __name(getDateTime, "getDateTime");
232
242
  function compareDateTime(dt1, dt2) {
233
243
  if (!(dt1 && dt2))
234
244
  return void 0;
@@ -238,6 +248,7 @@ var require_formats = __commonJS({
238
248
  return void 0;
239
249
  return d1 - d2;
240
250
  }
251
+ __name(compareDateTime, "compareDateTime");
241
252
  function compareIsoDateTime(dt1, dt2) {
242
253
  if (!(dt1 && dt2))
243
254
  return void 0;
@@ -248,27 +259,33 @@ var require_formats = __commonJS({
248
259
  return void 0;
249
260
  return res || compareTime(t1, t2);
250
261
  }
262
+ __name(compareIsoDateTime, "compareIsoDateTime");
251
263
  var NOT_URI_FRAGMENT = /\/|:/;
252
264
  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;
253
265
  function uri(str) {
254
266
  return NOT_URI_FRAGMENT.test(str) && URI.test(str);
255
267
  }
268
+ __name(uri, "uri");
256
269
  var BYTE = /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/gm;
257
270
  function byte(str) {
258
271
  BYTE.lastIndex = 0;
259
272
  return BYTE.test(str);
260
273
  }
274
+ __name(byte, "byte");
261
275
  var MIN_INT32 = -(2 ** 31);
262
276
  var MAX_INT32 = 2 ** 31 - 1;
263
277
  function validateInt32(value) {
264
278
  return Number.isInteger(value) && value <= MAX_INT32 && value >= MIN_INT32;
265
279
  }
280
+ __name(validateInt32, "validateInt32");
266
281
  function validateInt64(value) {
267
282
  return Number.isInteger(value);
268
283
  }
284
+ __name(validateInt64, "validateInt64");
269
285
  function validateNumber() {
270
286
  return true;
271
287
  }
288
+ __name(validateNumber, "validateNumber");
272
289
  var Z_ANCHOR = /[^\\]\\Z/;
273
290
  function regex(str) {
274
291
  if (Z_ANCHOR.test(str))
@@ -280,6 +297,7 @@ var require_formats = __commonJS({
280
297
  return false;
281
298
  }
282
299
  }
300
+ __name(regex, "regex");
283
301
  }
284
302
  });
285
303
 
@@ -373,6 +391,9 @@ __export(errors_exports, {
373
391
 
374
392
  // src/errors/appError.js
375
393
  var AppError = class _AppError extends Error {
394
+ static {
395
+ __name(this, "AppError");
396
+ }
376
397
  constructor(message = "Internal Server Error", options) {
377
398
  super(message, options);
378
399
  this.type = this.constructor.name;
@@ -384,6 +405,9 @@ var AppError = class _AppError extends Error {
384
405
 
385
406
  // src/errors/authenticationError.js
386
407
  var AuthenticationError = class _AuthenticationError extends AppError {
408
+ static {
409
+ __name(this, "AuthenticationError");
410
+ }
387
411
  constructor(message = "Authentication Error", options = {}) {
388
412
  super(message, options);
389
413
  this.statusCode = 401;
@@ -394,6 +418,9 @@ var AuthenticationError = class _AuthenticationError extends AppError {
394
418
 
395
419
  // src/errors/authorizationError.js
396
420
  var AuthorizationError = class _AuthorizationError extends AppError {
421
+ static {
422
+ __name(this, "AuthorizationError");
423
+ }
397
424
  constructor(message = "Authorization Error", options = {}) {
398
425
  super(message, options);
399
426
  this.statusCode = 403;
@@ -404,6 +431,9 @@ var AuthorizationError = class _AuthorizationError extends AppError {
404
431
 
405
432
  // src/errors/conflictError.js
406
433
  var ConflictError = class _ConflictError extends AppError {
434
+ static {
435
+ __name(this, "ConflictError");
436
+ }
407
437
  constructor(message = "Bad Request", options = {}) {
408
438
  super(message, options);
409
439
  this.statusCode = 409;
@@ -414,6 +444,9 @@ var ConflictError = class _ConflictError extends AppError {
414
444
 
415
445
  // src/errors/deviceCommError.js
416
446
  var DeviceCommError = class _DeviceCommError extends AppError {
447
+ static {
448
+ __name(this, "DeviceCommError");
449
+ }
417
450
  constructor(message = "Device Communication Error", options = {}) {
418
451
  super(message, options);
419
452
  this.statusCode = 503;
@@ -424,6 +457,9 @@ var DeviceCommError = class _DeviceCommError extends AppError {
424
457
 
425
458
  // src/errors/loginError.js
426
459
  var LoginError = class _LoginError extends AppError {
460
+ static {
461
+ __name(this, "LoginError");
462
+ }
427
463
  constructor(message = "Invalid Login information provided", options = {}) {
428
464
  super(message, options);
429
465
  this.statusCode = 401;
@@ -434,6 +470,9 @@ var LoginError = class _LoginError extends AppError {
434
470
 
435
471
  // src/errors/notFoundError.js
436
472
  var NotFoundError = class _NotFoundError extends AppError {
473
+ static {
474
+ __name(this, "NotFoundError");
475
+ }
437
476
  constructor(message = "Resource Not Found", options = {}) {
438
477
  super(message, options);
439
478
  this.statusCode = 404;
@@ -444,6 +483,9 @@ var NotFoundError = class _NotFoundError extends AppError {
444
483
 
445
484
  // src/errors/requestError.js
446
485
  var RequestError = class _RequestError extends AppError {
486
+ static {
487
+ __name(this, "RequestError");
488
+ }
447
489
  constructor(message = "Bad Request", options = {}) {
448
490
  super(message, options);
449
491
  this.statusCode = 400;
@@ -454,6 +496,9 @@ var RequestError = class _RequestError extends AppError {
454
496
 
455
497
  // src/errors/systemCommError.js
456
498
  var SystemCommError = class _SystemCommError extends AppError {
499
+ static {
500
+ __name(this, "SystemCommError");
501
+ }
457
502
  constructor(message = "System Communication Error", options = {}) {
458
503
  super(message, options);
459
504
  this.statusCode = 503;
@@ -464,6 +509,9 @@ var SystemCommError = class _SystemCommError extends AppError {
464
509
 
465
510
  // src/errors/tokenExpiredError.js
466
511
  var TokenExpiredError = class _TokenExpiredError extends AppError {
512
+ static {
513
+ __name(this, "TokenExpiredError");
514
+ }
467
515
  constructor(message = "Token Expired", options = {}) {
468
516
  super(message, options);
469
517
  this.statusCode = 401;
@@ -474,6 +522,9 @@ var TokenExpiredError = class _TokenExpiredError extends AppError {
474
522
 
475
523
  // src/errors/unprocessableRequestError.js
476
524
  var UnprocessableRequestError = class _UnprocessableRequestError extends AppError {
525
+ static {
526
+ __name(this, "UnprocessableRequestError");
527
+ }
477
528
  constructor(message = "Unprocessable Request Error", options = {}) {
478
529
  super(message, options);
479
530
  this.statusCode = 422;
@@ -484,6 +535,9 @@ var UnprocessableRequestError = class _UnprocessableRequestError extends AppErro
484
535
 
485
536
  // src/errors/validationError.js
486
537
  var ValidationError = class _ValidationError extends AppError {
538
+ static {
539
+ __name(this, "ValidationError");
540
+ }
487
541
  constructor(message = "Validation Error", options = {}) {
488
542
  super(message, options);
489
543
  this.statusCode = 400;
@@ -501,6 +555,9 @@ var HEADER_KEY_DRIVER = "X-Driver";
501
555
  var HEADER_KEY_COMMAND_NAME = "X-Command-Name";
502
556
  var HEADER_KEY_EVENT_NAME = "X-Event-Name";
503
557
  var KohostAMQPClient = class {
558
+ static {
559
+ __name(this, "KohostAMQPClient");
560
+ }
504
561
  static get Message() {
505
562
  return Message;
506
563
  }
@@ -621,6 +678,9 @@ var KohostAMQPClient = class {
621
678
  }
622
679
  };
623
680
  var Message = class {
681
+ static {
682
+ __name(this, "Message");
683
+ }
624
684
  constructor(content) {
625
685
  this.toExchange = null;
626
686
  this.content = content;
@@ -681,6 +741,9 @@ var Message = class {
681
741
 
682
742
  // src/useCases/refreshToken.js
683
743
  var RefreshTokenCommand = class _RefreshTokenCommand {
744
+ static {
745
+ __name(this, "RefreshTokenCommand");
746
+ }
684
747
  /**
685
748
  * @description
686
749
  * @constructor
@@ -744,6 +807,9 @@ var RefreshTokenCommand = class _RefreshTokenCommand {
744
807
 
745
808
  // src/httpClient.js
746
809
  var KohostHTTPClient = class _KohostHTTPClient {
810
+ static {
811
+ __name(this, "KohostHTTPClient");
812
+ }
747
813
  #onSuccess;
748
814
  #onError;
749
815
  /**
@@ -762,8 +828,8 @@ var KohostHTTPClient = class _KohostHTTPClient {
762
828
  organizationId: "",
763
829
  apiKey: "",
764
830
  headers: new Headers({}),
765
- onSuccess: (response) => response,
766
- onError: (error) => error
831
+ onSuccess: /* @__PURE__ */ __name((response) => response, "onSuccess"),
832
+ onError: /* @__PURE__ */ __name((error) => error, "onError")
767
833
  }) {
768
834
  if (!options.url) throw new Error("options.url is required");
769
835
  this.options = options;
@@ -853,7 +919,8 @@ var KohostHTTPClient = class _KohostHTTPClient {
853
919
  const commandConfig = command.config;
854
920
  const request = this.createRequest(commandConfig);
855
921
  const response = await fetch(request);
856
- const responseData = response.headers.get("Content-Type") === "application/json" ? await response.json() : response;
922
+ const isJsonResponse = response.headers.get("Content-Type")?.includes("application/json") || false;
923
+ const responseData = isJsonResponse ? await response.json() : response.body;
857
924
  if (!response.ok) {
858
925
  let error = responseData?.error || new Error(response.statusText);
859
926
  const status = response.status;
@@ -893,7 +960,7 @@ var KohostHTTPClient = class _KohostHTTPClient {
893
960
  }
894
961
  }
895
962
  } catch (error2) {
896
- console.log(error2);
963
+ console.error(error2);
897
964
  }
898
965
  error = this.#onError(error);
899
966
  return Promise.reject(error);
@@ -920,9 +987,33 @@ var KohostHTTPClient = class _KohostHTTPClient {
920
987
  }
921
988
  const url = new URL(apiPath, this.baseUrl);
922
989
  const method = config.method.toUpperCase() || "GET";
923
- if (config.params) {
924
- Object.keys(config.params).forEach((key) => {
925
- url.searchParams.append(key, config.params[key]);
990
+ if (config.params && typeof config.params === "object") {
991
+ Object.entries(config.params).forEach(([key, value]) => {
992
+ if (Array.isArray(value)) {
993
+ value.forEach((item) => {
994
+ if (typeof item === "object" && item !== null) {
995
+ Object.entries(item).forEach(([itemKey, itemValue]) => {
996
+ url.searchParams.append(`${key}[][${itemKey}]`, itemValue);
997
+ });
998
+ } else {
999
+ url.searchParams.append(`${key}[]`, item);
1000
+ }
1001
+ });
1002
+ } else if (value === null || value === void 0) {
1003
+ url.searchParams.append(key, "");
1004
+ } else if (typeof value === "object") {
1005
+ Object.entries(value).forEach(([nestedKey, nestedValue]) => {
1006
+ if (Array.isArray(nestedValue)) {
1007
+ nestedValue.forEach((item) => {
1008
+ url.searchParams.append(`${key}[${nestedKey}][]`, item);
1009
+ });
1010
+ } else {
1011
+ url.searchParams.append(`${key}[${nestedKey}]`, nestedValue);
1012
+ }
1013
+ });
1014
+ } else {
1015
+ url.searchParams.append(key, value);
1016
+ }
926
1017
  });
927
1018
  }
928
1019
  const headers = new Headers(this.headers);
@@ -945,6 +1036,9 @@ var KohostHTTPClient = class _KohostHTTPClient {
945
1036
  // src/socketIoClient.js
946
1037
  import { io } from "socket.io-client";
947
1038
  var KohostSocketIoClient = class {
1039
+ static {
1040
+ __name(this, "KohostSocketIoClient");
1041
+ }
948
1042
  constructor(config = {
949
1043
  url: null,
950
1044
  options: {}
@@ -1004,6 +1098,9 @@ var KohostSocketIoClient = class {
1004
1098
  this.callbacks[event].forEach((callback) => callback(...args));
1005
1099
  }
1006
1100
  }
1101
+ listeners(event) {
1102
+ return this.callbacks[event] || [];
1103
+ }
1007
1104
  connect() {
1008
1105
  this.socket.connect();
1009
1106
  }
@@ -1031,9 +1128,6 @@ var KohostSocketIoClient = class {
1031
1128
  this.socket.removeAllListeners();
1032
1129
  this.socket = null;
1033
1130
  }
1034
- listeners(event) {
1035
- return this.socket.listeners(event);
1036
- }
1037
1131
  };
1038
1132
 
1039
1133
  // src/commands/index.js
@@ -1072,6 +1166,9 @@ __export(commands_exports, {
1072
1166
  // src/commands/command.js
1073
1167
  var Commands = amqpExchanges.Commands;
1074
1168
  var Command = class {
1169
+ static {
1170
+ __name(this, "Command");
1171
+ }
1075
1172
  constructor(data) {
1076
1173
  this.data = {};
1077
1174
  if (!data) throw new Error("Command data is required");
@@ -1097,6 +1194,9 @@ var Command = class {
1097
1194
 
1098
1195
  // src/commands/checkInReservation.js
1099
1196
  var CheckInReservation = class extends Command {
1197
+ static {
1198
+ __name(this, "CheckInReservation");
1199
+ }
1100
1200
  constructor({ id, ...rest }) {
1101
1201
  super({ id, ...rest });
1102
1202
  }
@@ -1107,6 +1207,9 @@ var CheckInReservation = class extends Command {
1107
1207
 
1108
1208
  // src/commands/checkOutReservation.js
1109
1209
  var CheckOutReservation = class extends Command {
1210
+ static {
1211
+ __name(this, "CheckOutReservation");
1212
+ }
1110
1213
  constructor({ reservationId, userId, ...rest }) {
1111
1214
  super({ reservationId, userId, ...rest });
1112
1215
  }
@@ -1117,6 +1220,9 @@ var CheckOutReservation = class extends Command {
1117
1220
 
1118
1221
  // src/commands/createImageUploadEndpoint.js
1119
1222
  var CreateImageUploadEndpoint = class extends Command {
1223
+ static {
1224
+ __name(this, "CreateImageUploadEndpoint");
1225
+ }
1120
1226
  constructor({ id, expires, ...rest }) {
1121
1227
  super({ id, expires, ...rest });
1122
1228
  }
@@ -1127,6 +1233,9 @@ var CreateImageUploadEndpoint = class extends Command {
1127
1233
 
1128
1234
  // src/commands/createShortLink.js
1129
1235
  var CreateShortLink = class extends Command {
1236
+ static {
1237
+ __name(this, "CreateShortLink");
1238
+ }
1130
1239
  constructor({ title, destination, ...rest }) {
1131
1240
  super({ title, destination, ...rest });
1132
1241
  }
@@ -1137,6 +1246,9 @@ var CreateShortLink = class extends Command {
1137
1246
 
1138
1247
  // src/commands/getCategories.js
1139
1248
  var GetCategories = class extends Command {
1249
+ static {
1250
+ __name(this, "GetCategories");
1251
+ }
1140
1252
  constructor({ id, ...rest }) {
1141
1253
  super({ id, ...rest });
1142
1254
  }
@@ -1147,6 +1259,9 @@ var GetCategories = class extends Command {
1147
1259
 
1148
1260
  // src/commands/getMobileKey.js
1149
1261
  var GetMobileKey = class extends Command {
1262
+ static {
1263
+ __name(this, "GetMobileKey");
1264
+ }
1150
1265
  constructor({
1151
1266
  id,
1152
1267
  phone,
@@ -1164,6 +1279,9 @@ var GetMobileKey = class extends Command {
1164
1279
 
1165
1280
  // src/commands/getProducts.js
1166
1281
  var GetProducts = class extends Command {
1282
+ static {
1283
+ __name(this, "GetProducts");
1284
+ }
1167
1285
  constructor({ id, externalSystemId, ...rest }) {
1168
1286
  super({ id, externalSystemId, ...rest });
1169
1287
  }
@@ -1174,6 +1292,9 @@ var GetProducts = class extends Command {
1174
1292
 
1175
1293
  // src/commands/getReservationSpaceCategoryAvailabilities.js
1176
1294
  var GetReservationSpaceCategoryAvailabilities = class extends Command {
1295
+ static {
1296
+ __name(this, "GetReservationSpaceCategoryAvailabilities");
1297
+ }
1177
1298
  constructor(options) {
1178
1299
  const { id, ...rest } = options;
1179
1300
  super({ id, ...rest });
@@ -1185,6 +1306,9 @@ var GetReservationSpaceCategoryAvailabilities = class extends Command {
1185
1306
 
1186
1307
  // src/commands/getReservations.js
1187
1308
  var GetReservations = class extends Command {
1309
+ static {
1310
+ __name(this, "GetReservations");
1311
+ }
1188
1312
  constructor(options) {
1189
1313
  const { id, startDate, endDate, status, ...rest } = options;
1190
1314
  super({ id, startDate, endDate, status, ...rest });
@@ -1196,6 +1320,9 @@ var GetReservations = class extends Command {
1196
1320
 
1197
1321
  // src/commands/getRooms.js
1198
1322
  var GetRooms = class extends Command {
1323
+ static {
1324
+ __name(this, "GetRooms");
1325
+ }
1199
1326
  constructor({
1200
1327
  id,
1201
1328
  types,
@@ -1224,6 +1351,9 @@ var GetRooms = class extends Command {
1224
1351
 
1225
1352
  // src/commands/getUsers.js
1226
1353
  var GetUsers = class extends Command {
1354
+ static {
1355
+ __name(this, "GetUsers");
1356
+ }
1227
1357
  constructor({ id, ...rest }) {
1228
1358
  super({ id, ...rest });
1229
1359
  }
@@ -1234,6 +1364,9 @@ var GetUsers = class extends Command {
1234
1364
 
1235
1365
  // src/commands/ocrDocument.js
1236
1366
  var OCRDocument = class extends Command {
1367
+ static {
1368
+ __name(this, "OCRDocument");
1369
+ }
1237
1370
  constructor({ type, image, ...rest }) {
1238
1371
  super({ type, image, ...rest });
1239
1372
  }
@@ -1244,6 +1377,9 @@ var OCRDocument = class extends Command {
1244
1377
 
1245
1378
  // src/commands/sellProducts.js
1246
1379
  var SellProducts = class extends Command {
1380
+ static {
1381
+ __name(this, "SellProducts");
1382
+ }
1247
1383
  constructor({ reservationId, userId, products, ...rest }) {
1248
1384
  super({ reservationId, userId, products, ...rest });
1249
1385
  }
@@ -1254,6 +1390,9 @@ var SellProducts = class extends Command {
1254
1390
 
1255
1391
  // src/commands/sendEmail.js
1256
1392
  var SendEmail = class extends Command {
1393
+ static {
1394
+ __name(this, "SendEmail");
1395
+ }
1257
1396
  constructor({ text, html, to, from, subject, ...rest }) {
1258
1397
  super({ text, html, to, from, subject, ...rest });
1259
1398
  }
@@ -1264,6 +1403,9 @@ var SendEmail = class extends Command {
1264
1403
 
1265
1404
  // src/commands/sendSMS.js
1266
1405
  var SendSMS = class extends Command {
1406
+ static {
1407
+ __name(this, "SendSMS");
1408
+ }
1267
1409
  constructor({ id, body, to, from, media, ...rest }) {
1268
1410
  super({ id, body, to, from, media, ...rest });
1269
1411
  }
@@ -1274,6 +1416,9 @@ var SendSMS = class extends Command {
1274
1416
 
1275
1417
  // src/commands/setAlarm.js
1276
1418
  var SetAlarm = class extends Command {
1419
+ static {
1420
+ __name(this, "SetAlarm");
1421
+ }
1277
1422
  constructor({ id, zones, areas, code, ...rest }) {
1278
1423
  super({ id, zones, areas, code, ...rest });
1279
1424
  }
@@ -1284,6 +1429,9 @@ var SetAlarm = class extends Command {
1284
1429
 
1285
1430
  // src/commands/setCourtesy.js
1286
1431
  var SetCourtesy = class extends Command {
1432
+ static {
1433
+ __name(this, "SetCourtesy");
1434
+ }
1287
1435
  constructor({ id, state, ...rest }) {
1288
1436
  super({ id, state, ...rest });
1289
1437
  }
@@ -1294,6 +1442,9 @@ var SetCourtesy = class extends Command {
1294
1442
 
1295
1443
  // src/commands/setDimmer.js
1296
1444
  var SetDimmer = class extends Command {
1445
+ static {
1446
+ __name(this, "SetDimmer");
1447
+ }
1297
1448
  constructor({ id, level, ...rest }) {
1298
1449
  super({ id, level, ...rest });
1299
1450
  }
@@ -1304,6 +1455,9 @@ var SetDimmer = class extends Command {
1304
1455
 
1305
1456
  // src/commands/setLock.js
1306
1457
  var SetLock = class extends Command {
1458
+ static {
1459
+ __name(this, "SetLock");
1460
+ }
1307
1461
  constructor({ id, state, ...rest }) {
1308
1462
  super({ id, state, ...rest });
1309
1463
  }
@@ -1314,6 +1468,9 @@ var SetLock = class extends Command {
1314
1468
 
1315
1469
  // src/commands/setMedia.js
1316
1470
  var SetMedia = class extends Command {
1471
+ static {
1472
+ __name(this, "SetMedia");
1473
+ }
1317
1474
  constructor({ id, command, ...rest }) {
1318
1475
  super({ id, command, ...rest });
1319
1476
  }
@@ -1324,6 +1481,9 @@ var SetMedia = class extends Command {
1324
1481
 
1325
1482
  // src/commands/setScene.js
1326
1483
  var SetScene = class extends Command {
1484
+ static {
1485
+ __name(this, "SetScene");
1486
+ }
1327
1487
  constructor({ id, devices, ...rest }) {
1328
1488
  super({ id, devices, ...rest });
1329
1489
  }
@@ -1334,6 +1494,9 @@ var SetScene = class extends Command {
1334
1494
 
1335
1495
  // src/commands/setSwitch.js
1336
1496
  var SetSwitch = class extends Command {
1497
+ static {
1498
+ __name(this, "SetSwitch");
1499
+ }
1337
1500
  constructor({ id, state, ...rest }) {
1338
1501
  super({ id, state, ...rest });
1339
1502
  }
@@ -1344,6 +1507,9 @@ var SetSwitch = class extends Command {
1344
1507
 
1345
1508
  // src/commands/setThermostat.js
1346
1509
  var SetThermostat = class extends Command {
1510
+ static {
1511
+ __name(this, "SetThermostat");
1512
+ }
1347
1513
  constructor({ id, setpoints, hvacMode, fanMode, ...rest }) {
1348
1514
  super({ id, setpoints, hvacMode, fanMode, ...rest });
1349
1515
  }
@@ -1354,6 +1520,9 @@ var SetThermostat = class extends Command {
1354
1520
 
1355
1521
  // src/commands/setWindowCovering.js
1356
1522
  var SetWindowCovering = class extends Command {
1523
+ static {
1524
+ __name(this, "SetWindowCovering");
1525
+ }
1357
1526
  constructor({ id, position, ...rest }) {
1358
1527
  super({ id, position, ...rest });
1359
1528
  }
@@ -1364,6 +1533,9 @@ var SetWindowCovering = class extends Command {
1364
1533
 
1365
1534
  // src/commands/updateReservation.js
1366
1535
  var UpdateReservation = class extends Command {
1536
+ static {
1537
+ __name(this, "UpdateReservation");
1538
+ }
1367
1539
  constructor({ id, ...rest }) {
1368
1540
  super({ id, ...rest });
1369
1541
  }
@@ -1374,6 +1546,9 @@ var UpdateReservation = class extends Command {
1374
1546
 
1375
1547
  // src/commands/updateUser.js
1376
1548
  var UpdateUser = class extends Command {
1549
+ static {
1550
+ __name(this, "UpdateUser");
1551
+ }
1377
1552
  constructor({
1378
1553
  id,
1379
1554
  email,
@@ -1406,6 +1581,9 @@ var UpdateUser = class extends Command {
1406
1581
 
1407
1582
  // src/commands/uploadImage.js
1408
1583
  var UploadImage = class extends Command {
1584
+ static {
1585
+ __name(this, "UploadImage");
1586
+ }
1409
1587
  constructor({ id, url, file, ...rest }) {
1410
1588
  super({ id, url, file, ...rest });
1411
1589
  }
@@ -1440,17 +1618,20 @@ __export(events_exports, {
1440
1618
  SystemMotionSensorUpdated: () => SystemMotionSensorUpdated,
1441
1619
  SystemOrganizationUpdated: () => SystemOrganizationUpdated,
1442
1620
  SystemProductUpdated: () => SystemProductUpdated,
1443
- SystemPropertyUpdate: () => SystemPropertyUpdate,
1444
- SystemReservationUpdate: () => SystemReservationUpdate,
1621
+ SystemPropertyUpdated: () => SystemPropertyUpdated,
1622
+ SystemReservationUpdated: () => SystemReservationUpdated,
1445
1623
  SystemSpaceUpdate: () => SystemSpaceUpdate,
1446
- SystemSwitchUpdate: () => SystemSwitchUpdate,
1447
- SystemThermostatUpdate: () => SystemThermostatUpdate,
1448
- SystemUserUpdate: () => SystemUserUpdate,
1449
- SystemWindowCoveringUpdate: () => SystemWindowCoveringUpdate
1624
+ SystemSwitchUpdated: () => SystemSwitchUpdated,
1625
+ SystemThermostatUpdated: () => SystemThermostatUpdated,
1626
+ SystemUserUpdated: () => SystemUserUpdated,
1627
+ SystemWindowCoveringUpdated: () => SystemWindowCoveringUpdated
1450
1628
  });
1451
1629
 
1452
1630
  // src/events/event.js
1453
1631
  var Event = class {
1632
+ static {
1633
+ __name(this, "Event");
1634
+ }
1454
1635
  constructor(data, context = {}) {
1455
1636
  this.data = [];
1456
1637
  this.context = context;
@@ -1785,7 +1966,7 @@ var SystemProductUpdated = class extends Event {
1785
1966
  };
1786
1967
 
1787
1968
  // src/events/systemPropertyUpdated.js
1788
- var SystemPropertyUpdate = class extends Event {
1969
+ var SystemPropertyUpdated = class extends Event {
1789
1970
  constructor(property, context) {
1790
1971
  super(property, context);
1791
1972
  }
@@ -1798,7 +1979,7 @@ var SystemPropertyUpdate = class extends Event {
1798
1979
  };
1799
1980
 
1800
1981
  // src/events/systemReservationUpdated.js
1801
- var SystemReservationUpdate = class extends Event {
1982
+ var SystemReservationUpdated = class extends Event {
1802
1983
  constructor(reservation, context) {
1803
1984
  super(reservation, context);
1804
1985
  }
@@ -1824,7 +2005,7 @@ var SystemSpaceUpdate = class extends Event {
1824
2005
  };
1825
2006
 
1826
2007
  // src/events/systemSwitchUpdated.js
1827
- var SystemSwitchUpdate = class extends Event {
2008
+ var SystemSwitchUpdated = class extends Event {
1828
2009
  constructor(_switch, context) {
1829
2010
  super(_switch, context);
1830
2011
  }
@@ -1837,7 +2018,7 @@ var SystemSwitchUpdate = class extends Event {
1837
2018
  };
1838
2019
 
1839
2020
  // src/events/systemThermostatUpdated.js
1840
- var SystemThermostatUpdate = class extends Event {
2021
+ var SystemThermostatUpdated = class extends Event {
1841
2022
  constructor(thermostat, context) {
1842
2023
  super(thermostat, context);
1843
2024
  }
@@ -1850,7 +2031,7 @@ var SystemThermostatUpdate = class extends Event {
1850
2031
  };
1851
2032
 
1852
2033
  // src/events/systemUserUpdated.js
1853
- var SystemUserUpdate = class extends Event {
2034
+ var SystemUserUpdated = class extends Event {
1854
2035
  constructor(user, context) {
1855
2036
  super(user, context);
1856
2037
  }
@@ -1863,7 +2044,7 @@ var SystemUserUpdate = class extends Event {
1863
2044
  };
1864
2045
 
1865
2046
  // src/events/systemWindowCoveringUpdated.js
1866
- var SystemWindowCoveringUpdate = class extends Event {
2047
+ var SystemWindowCoveringUpdated = class extends Event {
1867
2048
  constructor(wc, context) {
1868
2049
  super(wc, context);
1869
2050
  }
@@ -1923,6 +2104,9 @@ __export(models_exports, {
1923
2104
 
1924
2105
  // src/models/entity.js
1925
2106
  var Entity = class {
2107
+ static {
2108
+ __name(this, "Entity");
2109
+ }
1926
2110
  constructor(data) {
1927
2111
  if (!this.schema) {
1928
2112
  throw new Error("Schema is not defined");
@@ -2241,6 +2425,7 @@ function validate12(data, { instancePath = "", parentData, parentDataProperty, r
2241
2425
  validate12.errors = vErrors;
2242
2426
  return errors === 0;
2243
2427
  }
2428
+ __name(validate12, "validate12");
2244
2429
  function validate10(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
2245
2430
  let vErrors = null;
2246
2431
  let errors = 0;
@@ -3095,6 +3280,7 @@ function validate10(data, { instancePath = "", parentData, parentDataProperty, r
3095
3280
  validate10.errors = vErrors;
3096
3281
  return errors === 0;
3097
3282
  }
3283
+ __name(validate10, "validate10");
3098
3284
  var validateAnnouncement = validate14;
3099
3285
  var schema21 = {
3100
3286
  $schema: "http://json-schema.org/draft-07/schema",
@@ -3643,6 +3829,7 @@ function validate15(data, { instancePath = "", parentData, parentDataProperty, r
3643
3829
  validate15.errors = vErrors;
3644
3830
  return errors === 0;
3645
3831
  }
3832
+ __name(validate15, "validate15");
3646
3833
  function validate14(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
3647
3834
  let vErrors = null;
3648
3835
  let errors = 0;
@@ -3991,6 +4178,7 @@ function validate14(data, { instancePath = "", parentData, parentDataProperty, r
3991
4178
  validate14.errors = vErrors;
3992
4179
  return errors === 0;
3993
4180
  }
4181
+ __name(validate14, "validate14");
3994
4182
  var validateCamera = validate17;
3995
4183
  var schema29 = {
3996
4184
  $schema: "http://json-schema.org/draft-07/schema",
@@ -4186,6 +4374,7 @@ function validate18(data, { instancePath = "", parentData, parentDataProperty, r
4186
4374
  validate18.errors = vErrors;
4187
4375
  return errors === 0;
4188
4376
  }
4377
+ __name(validate18, "validate18");
4189
4378
  function validate17(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
4190
4379
  let vErrors = null;
4191
4380
  let errors = 0;
@@ -4907,6 +5096,7 @@ function validate17(data, { instancePath = "", parentData, parentDataProperty, r
4907
5096
  validate17.errors = vErrors;
4908
5097
  return errors === 0;
4909
5098
  }
5099
+ __name(validate17, "validate17");
4910
5100
  var validateCategory = validate20;
4911
5101
  var schema38 = {
4912
5102
  $schema: "http://json-schema.org/draft-07/schema",
@@ -5245,6 +5435,7 @@ function validate20(data, { instancePath = "", parentData, parentDataProperty, r
5245
5435
  validate20.errors = vErrors;
5246
5436
  return errors === 0;
5247
5437
  }
5438
+ __name(validate20, "validate20");
5248
5439
  var validateCourtesy = validate22;
5249
5440
  var schema42 = {
5250
5441
  $schema: "http://json-schema.org/draft-07/schema",
@@ -5381,6 +5572,7 @@ function validate23(data, { instancePath = "", parentData, parentDataProperty, r
5381
5572
  validate23.errors = vErrors;
5382
5573
  return errors === 0;
5383
5574
  }
5575
+ __name(validate23, "validate23");
5384
5576
  function validate22(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
5385
5577
  let vErrors = null;
5386
5578
  let errors = 0;
@@ -5853,6 +6045,7 @@ function validate22(data, { instancePath = "", parentData, parentDataProperty, r
5853
6045
  validate22.errors = vErrors;
5854
6046
  return errors === 0;
5855
6047
  }
6048
+ __name(validate22, "validate22");
5856
6049
  var validateCredential = validate25;
5857
6050
  var schema52 = {
5858
6051
  $schema: "http://json-schema.org/draft-07/schema",
@@ -6227,6 +6420,7 @@ function validate25(data, { instancePath = "", parentData, parentDataProperty, r
6227
6420
  validate25.errors = vErrors;
6228
6421
  return errors === 0;
6229
6422
  }
6423
+ __name(validate25, "validate25");
6230
6424
  var validateDeviceRouter = validate26;
6231
6425
  var schema56 = {
6232
6426
  $schema: "http://json-schema.org/draft-07/schema",
@@ -6440,6 +6634,7 @@ function validate26(data, { instancePath = "", parentData, parentDataProperty, r
6440
6634
  validate26.errors = vErrors;
6441
6635
  return errors === 0;
6442
6636
  }
6637
+ __name(validate26, "validate26");
6443
6638
  var validateDimmer = validate27;
6444
6639
  var schema58 = {
6445
6640
  $schema: "http://json-schema.org/draft-07/schema",
@@ -6570,6 +6765,7 @@ function validate28(data, { instancePath = "", parentData, parentDataProperty, r
6570
6765
  validate28.errors = vErrors;
6571
6766
  return errors === 0;
6572
6767
  }
6768
+ __name(validate28, "validate28");
6573
6769
  function validate27(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
6574
6770
  let vErrors = null;
6575
6771
  let errors = 0;
@@ -6980,6 +7176,7 @@ function validate27(data, { instancePath = "", parentData, parentDataProperty, r
6980
7176
  validate27.errors = vErrors;
6981
7177
  return errors === 0;
6982
7178
  }
7179
+ __name(validate27, "validate27");
6983
7180
  var validateDiscoveredDevice = validate30;
6984
7181
  var schema67 = {
6985
7182
  $schema: "http://json-schema.org/draft-07/schema",
@@ -7321,6 +7518,7 @@ function validate30(data, { instancePath = "", parentData, parentDataProperty, r
7321
7518
  validate30.errors = vErrors;
7322
7519
  return errors === 0;
7323
7520
  }
7521
+ __name(validate30, "validate30");
7324
7522
  var validateEmailMessage = validate31;
7325
7523
  var schema70 = {
7326
7524
  $schema: "http://json-schema.org/draft-07/schema",
@@ -7843,6 +8041,7 @@ function validate31(data, { instancePath = "", parentData, parentDataProperty, r
7843
8041
  validate31.errors = vErrors;
7844
8042
  return errors === 0;
7845
8043
  }
8044
+ __name(validate31, "validate31");
7846
8045
  var validateEnergyReport = validate32;
7847
8046
  var schema75 = {
7848
8047
  $schema: "http://json-schema.org/draft-07/schema",
@@ -8691,6 +8890,7 @@ function validate32(data, { instancePath = "", parentData, parentDataProperty, r
8691
8890
  validate32.errors = vErrors;
8692
8891
  return errors === 0;
8693
8892
  }
8893
+ __name(validate32, "validate32");
8694
8894
  var validateEnergyReportShard = validate33;
8695
8895
  var schema80 = {
8696
8896
  $schema: "http://json-schema.org/draft-07/schema",
@@ -9497,6 +9697,7 @@ function validate33(data, { instancePath = "", parentData, parentDataProperty, r
9497
9697
  validate33.errors = vErrors;
9498
9698
  return errors === 0;
9499
9699
  }
9700
+ __name(validate33, "validate33");
9500
9701
  var validateGateway = validate34;
9501
9702
  function validate35(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
9502
9703
  let vErrors = null;
@@ -9605,6 +9806,7 @@ function validate35(data, { instancePath = "", parentData, parentDataProperty, r
9605
9806
  validate35.errors = vErrors;
9606
9807
  return errors === 0;
9607
9808
  }
9809
+ __name(validate35, "validate35");
9608
9810
  function validate34(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
9609
9811
  let vErrors = null;
9610
9812
  let errors = 0;
@@ -9948,6 +10150,7 @@ function validate34(data, { instancePath = "", parentData, parentDataProperty, r
9948
10150
  validate34.errors = vErrors;
9949
10151
  return errors === 0;
9950
10152
  }
10153
+ __name(validate34, "validate34");
9951
10154
  var validateIdentification = validate37;
9952
10155
  var schema95 = {
9953
10156
  $schema: "http://json-schema.org/draft-07/schema",
@@ -10367,6 +10570,7 @@ function validate37(data, { instancePath = "", parentData, parentDataProperty, r
10367
10570
  validate37.errors = vErrors;
10368
10571
  return errors === 0;
10369
10572
  }
10573
+ __name(validate37, "validate37");
10370
10574
  var validateIssue = validate38;
10371
10575
  var schema98 = {
10372
10576
  $schema: "http://json-schema.org/draft-07/schema",
@@ -10778,6 +10982,7 @@ function validate38(data, { instancePath = "", parentData, parentDataProperty, r
10778
10982
  validate38.errors = vErrors;
10779
10983
  return errors === 0;
10780
10984
  }
10985
+ __name(validate38, "validate38");
10781
10986
  var validateLock = validate45;
10782
10987
  var schema110 = {
10783
10988
  $schema: "http://json-schema.org/draft-07/schema",
@@ -10938,6 +11143,7 @@ function validate46(data, { instancePath = "", parentData, parentDataProperty, r
10938
11143
  validate46.errors = vErrors;
10939
11144
  return errors === 0;
10940
11145
  }
11146
+ __name(validate46, "validate46");
10941
11147
  function validate45(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
10942
11148
  let vErrors = null;
10943
11149
  let errors = 0;
@@ -11478,6 +11684,7 @@ function validate45(data, { instancePath = "", parentData, parentDataProperty, r
11478
11684
  validate45.errors = vErrors;
11479
11685
  return errors === 0;
11480
11686
  }
11687
+ __name(validate45, "validate45");
11481
11688
  var validateLog = validate48;
11482
11689
  var schema120 = {
11483
11690
  $schema: "http://json-schema.org/draft-07/schema",
@@ -12125,6 +12332,7 @@ function validate48(data, { instancePath = "", parentData, parentDataProperty, r
12125
12332
  validate48.errors = vErrors;
12126
12333
  return errors === 0;
12127
12334
  }
12335
+ __name(validate48, "validate48");
12128
12336
  var validateMediaFile = validate15;
12129
12337
  var validateMediaSource = validate49;
12130
12338
  var schema121 = {
@@ -12421,6 +12629,7 @@ function validate50(data, { instancePath = "", parentData, parentDataProperty, r
12421
12629
  validate50.errors = vErrors;
12422
12630
  return errors === 0;
12423
12631
  }
12632
+ __name(validate50, "validate50");
12424
12633
  function validate49(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
12425
12634
  let vErrors = null;
12426
12635
  let errors = 0;
@@ -13394,6 +13603,7 @@ function validate49(data, { instancePath = "", parentData, parentDataProperty, r
13394
13603
  validate49.errors = vErrors;
13395
13604
  return errors === 0;
13396
13605
  }
13606
+ __name(validate49, "validate49");
13397
13607
  var validateMotionSensor = validate52;
13398
13608
  function validate53(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
13399
13609
  let vErrors = null;
@@ -13502,6 +13712,7 @@ function validate53(data, { instancePath = "", parentData, parentDataProperty, r
13502
13712
  validate53.errors = vErrors;
13503
13713
  return errors === 0;
13504
13714
  }
13715
+ __name(validate53, "validate53");
13505
13716
  function validate52(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
13506
13717
  let vErrors = null;
13507
13718
  let errors = 0;
@@ -13830,6 +14041,7 @@ function validate52(data, { instancePath = "", parentData, parentDataProperty, r
13830
14041
  validate52.errors = vErrors;
13831
14042
  return errors === 0;
13832
14043
  }
14044
+ __name(validate52, "validate52");
13833
14045
  var validateOrder = validate55;
13834
14046
  var schema141 = {
13835
14047
  $schema: "http://json-schema.org/draft-07/schema",
@@ -15164,6 +15376,7 @@ function validate55(data, { instancePath = "", parentData, parentDataProperty, r
15164
15376
  validate55.errors = vErrors;
15165
15377
  return errors === 0;
15166
15378
  }
15379
+ __name(validate55, "validate55");
15167
15380
  var validateOrganization = validate56;
15168
15381
  var schema147 = {
15169
15382
  $schema: "http://json-schema.org/draft-07/schema",
@@ -16093,6 +16306,7 @@ function validate56(data, { instancePath = "", parentData, parentDataProperty, r
16093
16306
  validate56.errors = vErrors;
16094
16307
  return errors === 0;
16095
16308
  }
16309
+ __name(validate56, "validate56");
16096
16310
  var validatePayment = validate57;
16097
16311
  var schema151 = {
16098
16312
  $schema: "http://json-schema.org/draft-07/schema",
@@ -16351,6 +16565,7 @@ function validate57(data, { instancePath = "", parentData, parentDataProperty, r
16351
16565
  validate57.errors = vErrors;
16352
16566
  return errors === 0;
16353
16567
  }
16568
+ __name(validate57, "validate57");
16354
16569
  var validatePolicy = validate58;
16355
16570
  var schema154 = {
16356
16571
  $schema: "http://json-schema.org/draft-07/schema",
@@ -16867,6 +17082,7 @@ function validate58(data, { instancePath = "", parentData, parentDataProperty, r
16867
17082
  validate58.errors = vErrors;
16868
17083
  return errors === 0;
16869
17084
  }
17085
+ __name(validate58, "validate58");
16870
17086
  var validateProduct = validate59;
16871
17087
  var schema156 = {
16872
17088
  $schema: "http://json-schema.org/draft-07/schema",
@@ -17209,6 +17425,7 @@ function validate59(data, { instancePath = "", parentData, parentDataProperty, r
17209
17425
  validate59.errors = vErrors;
17210
17426
  return errors === 0;
17211
17427
  }
17428
+ __name(validate59, "validate59");
17212
17429
  var validateProperty = validate61;
17213
17430
  var schema160 = {
17214
17431
  $schema: "http://json-schema.org/draft-07/schema",
@@ -19947,6 +20164,7 @@ function validate61(data, { instancePath = "", parentData, parentDataProperty, r
19947
20164
  validate61.errors = vErrors;
19948
20165
  return errors === 0;
19949
20166
  }
20167
+ __name(validate61, "validate61");
19950
20168
  var validateReservation = validate63;
19951
20169
  var schema163 = {
19952
20170
  $schema: "http://json-schema.org/draft-07/schema",
@@ -20225,6 +20443,7 @@ function validate64(data, { instancePath = "", parentData, parentDataProperty, r
20225
20443
  validate64.errors = vErrors;
20226
20444
  return errors === 0;
20227
20445
  }
20446
+ __name(validate64, "validate64");
20228
20447
  function validate63(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
20229
20448
  let vErrors = null;
20230
20449
  let errors = 0;
@@ -21086,6 +21305,7 @@ function validate63(data, { instancePath = "", parentData, parentDataProperty, r
21086
21305
  validate63.errors = vErrors;
21087
21306
  return errors === 0;
21088
21307
  }
21308
+ __name(validate63, "validate63");
21089
21309
  var validateRoom = validate66;
21090
21310
  var schema170 = {
21091
21311
  $schema: "http://json-schema.org/draft-07/schema",
@@ -21261,6 +21481,7 @@ function validate69(data, { instancePath = "", parentData, parentDataProperty, r
21261
21481
  validate69.errors = vErrors;
21262
21482
  return errors === 0;
21263
21483
  }
21484
+ __name(validate69, "validate69");
21264
21485
  function validate68(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
21265
21486
  let vErrors = null;
21266
21487
  let errors = 0;
@@ -21687,6 +21908,7 @@ function validate68(data, { instancePath = "", parentData, parentDataProperty, r
21687
21908
  validate68.errors = vErrors;
21688
21909
  return errors === 0;
21689
21910
  }
21911
+ __name(validate68, "validate68");
21690
21912
  var schema181 = {
21691
21913
  $schema: "http://json-schema.org/draft-07/schema",
21692
21914
  $id: "thermostat.json",
@@ -21886,6 +22108,7 @@ function validate73(data, { instancePath = "", parentData, parentDataProperty, r
21886
22108
  validate73.errors = vErrors;
21887
22109
  return errors === 0;
21888
22110
  }
22111
+ __name(validate73, "validate73");
21889
22112
  var schema193 = { type: ["number", "null"], minimum: 0, maximum: 99 };
21890
22113
  function validate75(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
21891
22114
  let vErrors = null;
@@ -22075,6 +22298,7 @@ function validate75(data, { instancePath = "", parentData, parentDataProperty, r
22075
22298
  validate75.errors = vErrors;
22076
22299
  return errors === 0;
22077
22300
  }
22301
+ __name(validate75, "validate75");
22078
22302
  function validate72(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
22079
22303
  let vErrors = null;
22080
22304
  let errors = 0;
@@ -23087,6 +23311,7 @@ function validate72(data, { instancePath = "", parentData, parentDataProperty, r
23087
23311
  validate72.errors = vErrors;
23088
23312
  return errors === 0;
23089
23313
  }
23314
+ __name(validate72, "validate72");
23090
23315
  var schema198 = {
23091
23316
  $schema: "http://json-schema.org/draft-07/schema",
23092
23317
  $id: "windowCovering.json",
@@ -23224,6 +23449,7 @@ function validate82(data, { instancePath = "", parentData, parentDataProperty, r
23224
23449
  validate82.errors = vErrors;
23225
23450
  return errors === 0;
23226
23451
  }
23452
+ __name(validate82, "validate82");
23227
23453
  function validate81(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
23228
23454
  let vErrors = null;
23229
23455
  let errors = 0;
@@ -23669,6 +23895,7 @@ function validate81(data, { instancePath = "", parentData, parentDataProperty, r
23669
23895
  validate81.errors = vErrors;
23670
23896
  return errors === 0;
23671
23897
  }
23898
+ __name(validate81, "validate81");
23672
23899
  function validate66(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
23673
23900
  let vErrors = null;
23674
23901
  let errors = 0;
@@ -24285,6 +24512,7 @@ function validate66(data, { instancePath = "", parentData, parentDataProperty, r
24285
24512
  validate66.errors = vErrors;
24286
24513
  return errors === 0;
24287
24514
  }
24515
+ __name(validate66, "validate66");
24288
24516
  var validateScene = validate90;
24289
24517
  var schema210 = {
24290
24518
  $schema: "http://json-schema.org/draft-07/schema",
@@ -24435,6 +24663,7 @@ function validate91(data, { instancePath = "", parentData, parentDataProperty, r
24435
24663
  validate91.errors = vErrors;
24436
24664
  return errors === 0;
24437
24665
  }
24666
+ __name(validate91, "validate91");
24438
24667
  function validate93(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
24439
24668
  let vErrors = null;
24440
24669
  let errors = 0;
@@ -24507,6 +24736,7 @@ function validate93(data, { instancePath = "", parentData, parentDataProperty, r
24507
24736
  validate93.errors = vErrors;
24508
24737
  return errors === 0;
24509
24738
  }
24739
+ __name(validate93, "validate93");
24510
24740
  function validate98(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
24511
24741
  let vErrors = null;
24512
24742
  let errors = 0;
@@ -24543,6 +24773,7 @@ function validate98(data, { instancePath = "", parentData, parentDataProperty, r
24543
24773
  validate98.errors = vErrors;
24544
24774
  return errors === 0;
24545
24775
  }
24776
+ __name(validate98, "validate98");
24546
24777
  function validate90(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
24547
24778
  let vErrors = null;
24548
24779
  let errors = 0;
@@ -25717,6 +25948,7 @@ function validate90(data, { instancePath = "", parentData, parentDataProperty, r
25717
25948
  validate90.errors = vErrors;
25718
25949
  return errors === 0;
25719
25950
  }
25951
+ __name(validate90, "validate90");
25720
25952
  var validateShortLink = validate100;
25721
25953
  var schema228 = {
25722
25954
  $schema: "http://json-schema.org/draft-07/schema",
@@ -25947,6 +26179,7 @@ function validate100(data, { instancePath = "", parentData, parentDataProperty,
25947
26179
  validate100.errors = vErrors;
25948
26180
  return errors === 0;
25949
26181
  }
26182
+ __name(validate100, "validate100");
25950
26183
  var validateSmsMessage = validate101;
25951
26184
  var schema231 = {
25952
26185
  $schema: "http://json-schema.org/draft-07/schema",
@@ -26413,6 +26646,7 @@ function validate101(data, { instancePath = "", parentData, parentDataProperty,
26413
26646
  validate101.errors = vErrors;
26414
26647
  return errors === 0;
26415
26648
  }
26649
+ __name(validate101, "validate101");
26416
26650
  var validateSpace = validate102;
26417
26651
  var schema236 = {
26418
26652
  $schema: "http://json-schema.org/draft-07/schema",
@@ -26578,6 +26812,7 @@ function validate103(data, { instancePath = "", parentData, parentDataProperty,
26578
26812
  validate103.errors = vErrors;
26579
26813
  return errors === 0;
26580
26814
  }
26815
+ __name(validate103, "validate103");
26581
26816
  function validate102(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
26582
26817
  let vErrors = null;
26583
26818
  let errors = 0;
@@ -27475,6 +27710,7 @@ function validate102(data, { instancePath = "", parentData, parentDataProperty,
27475
27710
  validate102.errors = vErrors;
27476
27711
  return errors === 0;
27477
27712
  }
27713
+ __name(validate102, "validate102");
27478
27714
  var validateSwitch = validate68;
27479
27715
  var validateSystemUser = validate108;
27480
27716
  var schema241 = {
@@ -27705,6 +27941,7 @@ function validate112(data, { instancePath = "", parentData, parentDataProperty,
27705
27941
  validate112.errors = vErrors;
27706
27942
  return errors === 0;
27707
27943
  }
27944
+ __name(validate112, "validate112");
27708
27945
  function validate108(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
27709
27946
  let vErrors = null;
27710
27947
  let errors = 0;
@@ -28583,6 +28820,7 @@ function validate108(data, { instancePath = "", parentData, parentDataProperty,
28583
28820
  validate108.errors = vErrors;
28584
28821
  return errors === 0;
28585
28822
  }
28823
+ __name(validate108, "validate108");
28586
28824
  var validateThermostat = validate72;
28587
28825
  var validateTicket = validate39;
28588
28826
  var schema100 = {
@@ -30583,6 +30821,7 @@ function validate39(data, { instancePath = "", parentData, parentDataProperty, r
30583
30821
  validate39.errors = vErrors;
30584
30822
  return errors === 0;
30585
30823
  }
30824
+ __name(validate39, "validate39");
30586
30825
  var validateTimeSheet = validate114;
30587
30826
  var schema250 = {
30588
30827
  $schema: "http://json-schema.org/draft-07/schema",
@@ -31153,6 +31392,7 @@ function validate114(data, { instancePath = "", parentData, parentDataProperty,
31153
31392
  validate114.errors = vErrors;
31154
31393
  return errors === 0;
31155
31394
  }
31395
+ __name(validate114, "validate114");
31156
31396
  var validateUser = validate115;
31157
31397
  var schema254 = {
31158
31398
  $schema: "http://json-schema.org/draft-07/schema",
@@ -31442,6 +31682,7 @@ function validate122(data, { instancePath = "", parentData, parentDataProperty,
31442
31682
  validate122.errors = vErrors;
31443
31683
  return errors === 0;
31444
31684
  }
31685
+ __name(validate122, "validate122");
31445
31686
  function validate115(data, { instancePath = "", parentData, parentDataProperty, rootData = data } = {}) {
31446
31687
  let vErrors = null;
31447
31688
  let errors = 0;
@@ -32879,6 +33120,7 @@ function validate115(data, { instancePath = "", parentData, parentDataProperty,
32879
33120
  validate115.errors = vErrors;
32880
33121
  return errors === 0;
32881
33122
  }
33123
+ __name(validate115, "validate115");
32882
33124
  var validateVendor = validate124;
32883
33125
  var schema261 = {
32884
33126
  $schema: "http://json-schema.org/draft-07/schema",
@@ -33393,10 +33635,14 @@ function validate124(data, { instancePath = "", parentData, parentDataProperty,
33393
33635
  validate124.errors = vErrors;
33394
33636
  return errors === 0;
33395
33637
  }
33638
+ __name(validate124, "validate124");
33396
33639
  var validateWindowCovering = validate81;
33397
33640
 
33398
33641
  // src/models/alarm.js
33399
33642
  var Alarm = class extends Entity {
33643
+ static {
33644
+ __name(this, "Alarm");
33645
+ }
33400
33646
  /**
33401
33647
  * @typedef {Object} AlarmData Any smart alarm system
33402
33648
  * @property {string} id - Identifier of the object.
@@ -33491,13 +33737,16 @@ Object.defineProperty(Alarm.prototype, "schema", {
33491
33737
  }
33492
33738
  });
33493
33739
  Object.defineProperty(Alarm.prototype, "validator", {
33494
- get: function() {
33740
+ get: /* @__PURE__ */ __name(function() {
33495
33741
  return validateAlarm;
33496
- }
33742
+ }, "get")
33497
33743
  });
33498
33744
 
33499
33745
  // src/models/announcement.js
33500
33746
  var Announcement = class extends Entity {
33747
+ static {
33748
+ __name(this, "Announcement");
33749
+ }
33501
33750
  /**
33502
33751
  * @typedef {Object} AnnouncementData Announcement message sent to users
33503
33752
  * @property {string} [id] - Identifier of the object.
@@ -33552,13 +33801,16 @@ Object.defineProperty(Announcement.prototype, "schema", {
33552
33801
  }
33553
33802
  });
33554
33803
  Object.defineProperty(Announcement.prototype, "validator", {
33555
- get: function() {
33804
+ get: /* @__PURE__ */ __name(function() {
33556
33805
  return validateAnnouncement;
33557
- }
33806
+ }, "get")
33558
33807
  });
33559
33808
 
33560
33809
  // src/models/camera.js
33561
33810
  var Camera = class extends Entity {
33811
+ static {
33812
+ __name(this, "Camera");
33813
+ }
33562
33814
  /**
33563
33815
  * @typedef {Object} CameraData Any smart camera
33564
33816
  * @property {string} id - Identifier of the object.
@@ -33673,13 +33925,16 @@ Object.defineProperty(Camera.prototype, "schema", {
33673
33925
  }
33674
33926
  });
33675
33927
  Object.defineProperty(Camera.prototype, "validator", {
33676
- get: function() {
33928
+ get: /* @__PURE__ */ __name(function() {
33677
33929
  return validateCamera;
33678
- }
33930
+ }, "get")
33679
33931
  });
33680
33932
 
33681
33933
  // src/models/category.js
33682
33934
  var Category = class extends Entity {
33935
+ static {
33936
+ __name(this, "Category");
33937
+ }
33683
33938
  /**
33684
33939
  * @typedef {Object} CategoryData
33685
33940
  * @property {string} [id] - Identifier of the object.
@@ -33733,13 +33988,16 @@ Object.defineProperty(Category.prototype, "schema", {
33733
33988
  }
33734
33989
  });
33735
33990
  Object.defineProperty(Category.prototype, "validator", {
33736
- get: function() {
33991
+ get: /* @__PURE__ */ __name(function() {
33737
33992
  return validateCategory;
33738
- }
33993
+ }, "get")
33739
33994
  });
33740
33995
 
33741
33996
  // src/models/courtesy.js
33742
33997
  var Courtesy = class extends Entity {
33998
+ static {
33999
+ __name(this, "Courtesy");
34000
+ }
33743
34001
  /**
33744
34002
  * @typedef {Object} CourtesyData Any smart courtesy system
33745
34003
  * @property {string} id - Identifier of the object.
@@ -33803,13 +34061,16 @@ Object.defineProperty(Courtesy.prototype, "schema", {
33803
34061
  }
33804
34062
  });
33805
34063
  Object.defineProperty(Courtesy.prototype, "validator", {
33806
- get: function() {
34064
+ get: /* @__PURE__ */ __name(function() {
33807
34065
  return validateCourtesy;
33808
- }
34066
+ }, "get")
33809
34067
  });
33810
34068
 
33811
34069
  // src/models/credential.js
33812
34070
  var Credential = class extends Entity {
34071
+ static {
34072
+ __name(this, "Credential");
34073
+ }
33813
34074
  /**
33814
34075
  * @typedef {Object} CredentialData
33815
34076
  * @property {string} [id] - Identifier of the object.
@@ -33879,13 +34140,16 @@ Object.defineProperty(Credential.prototype, "schema", {
33879
34140
  }
33880
34141
  });
33881
34142
  Object.defineProperty(Credential.prototype, "validator", {
33882
- get: function() {
34143
+ get: /* @__PURE__ */ __name(function() {
33883
34144
  return validateCredential;
33884
- }
34145
+ }, "get")
33885
34146
  });
33886
34147
 
33887
34148
  // src/models/deviceRouter.js
33888
34149
  var DeviceRouter = class extends Entity {
34150
+ static {
34151
+ __name(this, "DeviceRouter");
34152
+ }
33889
34153
  /**
33890
34154
  * @typedef {Object} DeviceRouterData A device router contains instructions on where to route devices based on their organization and driver.
33891
34155
  * @property {string} [id] - Identifier of the object.
@@ -33928,13 +34192,16 @@ Object.defineProperty(DeviceRouter.prototype, "schema", {
33928
34192
  }
33929
34193
  });
33930
34194
  Object.defineProperty(DeviceRouter.prototype, "validator", {
33931
- get: function() {
34195
+ get: /* @__PURE__ */ __name(function() {
33932
34196
  return validateDeviceRouter;
33933
- }
34197
+ }, "get")
33934
34198
  });
33935
34199
 
33936
34200
  // src/models/dimmer.js
33937
34201
  var Dimmer = class extends Entity {
34202
+ static {
34203
+ __name(this, "Dimmer");
34204
+ }
33938
34205
  /**
33939
34206
  * @typedef {Object} DimmerData Any smart dimmer
33940
34207
  * @property {string} id - Identifier of the object.
@@ -33991,13 +34258,16 @@ Object.defineProperty(Dimmer.prototype, "schema", {
33991
34258
  }
33992
34259
  });
33993
34260
  Object.defineProperty(Dimmer.prototype, "validator", {
33994
- get: function() {
34261
+ get: /* @__PURE__ */ __name(function() {
33995
34262
  return validateDimmer;
33996
- }
34263
+ }, "get")
33997
34264
  });
33998
34265
 
33999
34266
  // src/models/discoveredDevice.js
34000
34267
  var DiscoveredDevice = class extends Entity {
34268
+ static {
34269
+ __name(this, "DiscoveredDevice");
34270
+ }
34001
34271
  /**
34002
34272
  * @typedef {Object} DiscoveredDeviceData A device that has been discovered by Kohost, but not yet added to the Kohost system.
34003
34273
  * @property {string} [id] - Identifier of the object.
@@ -34062,13 +34332,16 @@ Object.defineProperty(DiscoveredDevice.prototype, "schema", {
34062
34332
  }
34063
34333
  });
34064
34334
  Object.defineProperty(DiscoveredDevice.prototype, "validator", {
34065
- get: function() {
34335
+ get: /* @__PURE__ */ __name(function() {
34066
34336
  return validateDiscoveredDevice;
34067
- }
34337
+ }, "get")
34068
34338
  });
34069
34339
 
34070
34340
  // src/models/emailMessage.js
34071
34341
  var EmailMessage = class extends Entity {
34342
+ static {
34343
+ __name(this, "EmailMessage");
34344
+ }
34072
34345
  /**
34073
34346
  * @typedef {Object} EmailMessageData
34074
34347
  * @property {string} [id] - Identifier of the object.
@@ -34159,13 +34432,16 @@ Object.defineProperty(EmailMessage.prototype, "schema", {
34159
34432
  }
34160
34433
  });
34161
34434
  Object.defineProperty(EmailMessage.prototype, "validator", {
34162
- get: function() {
34435
+ get: /* @__PURE__ */ __name(function() {
34163
34436
  return validateEmailMessage;
34164
- }
34437
+ }, "get")
34165
34438
  });
34166
34439
 
34167
34440
  // src/models/energyReport.js
34168
34441
  var EnergyReport = class extends Entity {
34442
+ static {
34443
+ __name(this, "EnergyReport");
34444
+ }
34169
34445
  /**
34170
34446
  * @typedef {Object} EnergyReportData Hourly Report for Energy based on energy report shards
34171
34447
  * @property {string} id - Identifier of the object.
@@ -34248,13 +34524,16 @@ Object.defineProperty(EnergyReport.prototype, "schema", {
34248
34524
  }
34249
34525
  });
34250
34526
  Object.defineProperty(EnergyReport.prototype, "validator", {
34251
- get: function() {
34527
+ get: /* @__PURE__ */ __name(function() {
34252
34528
  return validateEnergyReport;
34253
- }
34529
+ }, "get")
34254
34530
  });
34255
34531
 
34256
34532
  // src/models/energyReportShard.js
34257
34533
  var EnergyReportShard = class extends Entity {
34534
+ static {
34535
+ __name(this, "EnergyReportShard");
34536
+ }
34258
34537
  /**
34259
34538
  * @typedef {Object} EnergyReportShardData Shard used for Energy Reports
34260
34539
  * @property {string} id - Identifier of the object.
@@ -34329,13 +34608,16 @@ Object.defineProperty(EnergyReportShard.prototype, "schema", {
34329
34608
  }
34330
34609
  });
34331
34610
  Object.defineProperty(EnergyReportShard.prototype, "validator", {
34332
- get: function() {
34611
+ get: /* @__PURE__ */ __name(function() {
34333
34612
  return validateEnergyReportShard;
34334
- }
34613
+ }, "get")
34335
34614
  });
34336
34615
 
34337
34616
  // src/models/gateway.js
34338
34617
  var Gateway = class extends Entity {
34618
+ static {
34619
+ __name(this, "Gateway");
34620
+ }
34339
34621
  /**
34340
34622
  * @typedef {Object} GatewayData Any smart gateway that is an entrypoint for controlling devices
34341
34623
  * @property {string} id - Identifier of the object.
@@ -34386,13 +34668,16 @@ Object.defineProperty(Gateway.prototype, "schema", {
34386
34668
  }
34387
34669
  });
34388
34670
  Object.defineProperty(Gateway.prototype, "validator", {
34389
- get: function() {
34671
+ get: /* @__PURE__ */ __name(function() {
34390
34672
  return validateGateway;
34391
- }
34673
+ }, "get")
34392
34674
  });
34393
34675
 
34394
34676
  // src/models/identification.js
34395
34677
  var Identification = class extends Entity {
34678
+ static {
34679
+ __name(this, "Identification");
34680
+ }
34396
34681
  /**
34397
34682
  * @typedef {Object} IdentificationData
34398
34683
  * @property {string} [id] - Identifier of the object.
@@ -34459,13 +34744,16 @@ Object.defineProperty(Identification.prototype, "schema", {
34459
34744
  }
34460
34745
  });
34461
34746
  Object.defineProperty(Identification.prototype, "validator", {
34462
- get: function() {
34747
+ get: /* @__PURE__ */ __name(function() {
34463
34748
  return validateIdentification;
34464
- }
34749
+ }, "get")
34465
34750
  });
34466
34751
 
34467
34752
  // src/models/issue.js
34468
34753
  var Issue = class extends Entity {
34754
+ static {
34755
+ __name(this, "Issue");
34756
+ }
34469
34757
  /**
34470
34758
  * @typedef {Object} IssueData An issue associated with ticketing and concierge.
34471
34759
  * @property {string} id - Identifier of the object.
@@ -34526,13 +34814,16 @@ Object.defineProperty(Issue.prototype, "schema", {
34526
34814
  }
34527
34815
  });
34528
34816
  Object.defineProperty(Issue.prototype, "validator", {
34529
- get: function() {
34817
+ get: /* @__PURE__ */ __name(function() {
34530
34818
  return validateIssue;
34531
- }
34819
+ }, "get")
34532
34820
  });
34533
34821
 
34534
34822
  // src/models/lock.js
34535
34823
  var Lock = class extends Entity {
34824
+ static {
34825
+ __name(this, "Lock");
34826
+ }
34536
34827
  /**
34537
34828
  * @typedef {Object} LockData Any smart lock
34538
34829
  * @property {string} id - Identifier of the object.
@@ -34625,13 +34916,16 @@ Object.defineProperty(Lock.prototype, "schema", {
34625
34916
  }
34626
34917
  });
34627
34918
  Object.defineProperty(Lock.prototype, "validator", {
34628
- get: function() {
34919
+ get: /* @__PURE__ */ __name(function() {
34629
34920
  return validateLock;
34630
- }
34921
+ }, "get")
34631
34922
  });
34632
34923
 
34633
34924
  // src/models/log.js
34634
34925
  var Log = class extends Entity {
34926
+ static {
34927
+ __name(this, "Log");
34928
+ }
34635
34929
  /**
34636
34930
  * @typedef {Object} LogData
34637
34931
  * @property {"log"} [type] - Default: "log"
@@ -34717,13 +35011,16 @@ Object.defineProperty(Log.prototype, "schema", {
34717
35011
  }
34718
35012
  });
34719
35013
  Object.defineProperty(Log.prototype, "validator", {
34720
- get: function() {
35014
+ get: /* @__PURE__ */ __name(function() {
34721
35015
  return validateLog;
34722
- }
35016
+ }, "get")
34723
35017
  });
34724
35018
 
34725
35019
  // src/models/mediaFile.js
34726
35020
  var MediaFile = class extends Entity {
35021
+ static {
35022
+ __name(this, "MediaFile");
35023
+ }
34727
35024
  /**
34728
35025
  * @typedef {Object} MediaFileData Any media file
34729
35026
  * @property {string} [id] - Identifier of the object.
@@ -34813,13 +35110,16 @@ Object.defineProperty(MediaFile.prototype, "schema", {
34813
35110
  }
34814
35111
  });
34815
35112
  Object.defineProperty(MediaFile.prototype, "validator", {
34816
- get: function() {
35113
+ get: /* @__PURE__ */ __name(function() {
34817
35114
  return validateMediaFile;
34818
- }
35115
+ }, "get")
34819
35116
  });
34820
35117
 
34821
35118
  // src/models/mediaSource.js
34822
35119
  var MediaSource = class extends Entity {
35120
+ static {
35121
+ __name(this, "MediaSource");
35122
+ }
34823
35123
  /**
34824
35124
  * @typedef {Object} MediaSourceData Any media source
34825
35125
  * @property {string} id - Identifier of the object.
@@ -35071,13 +35371,16 @@ Object.defineProperty(MediaSource.prototype, "schema", {
35071
35371
  }
35072
35372
  });
35073
35373
  Object.defineProperty(MediaSource.prototype, "validator", {
35074
- get: function() {
35374
+ get: /* @__PURE__ */ __name(function() {
35075
35375
  return validateMediaSource;
35076
- }
35376
+ }, "get")
35077
35377
  });
35078
35378
 
35079
35379
  // src/models/motionSensor.js
35080
35380
  var MotionSensor = class extends Entity {
35381
+ static {
35382
+ __name(this, "MotionSensor");
35383
+ }
35081
35384
  /**
35082
35385
  * @typedef {Object} MotionSensorData Any smart motion sensor
35083
35386
  * @property {string} id - Identifier of the object.
@@ -35126,13 +35429,16 @@ Object.defineProperty(MotionSensor.prototype, "schema", {
35126
35429
  }
35127
35430
  });
35128
35431
  Object.defineProperty(MotionSensor.prototype, "validator", {
35129
- get: function() {
35432
+ get: /* @__PURE__ */ __name(function() {
35130
35433
  return validateMotionSensor;
35131
- }
35434
+ }, "get")
35132
35435
  });
35133
35436
 
35134
35437
  // src/models/order.js
35135
35438
  var Order = class extends Entity {
35439
+ static {
35440
+ __name(this, "Order");
35441
+ }
35136
35442
  /**
35137
35443
  * @typedef {Object} OrderData A purchase order for products or services.
35138
35444
  * @property {string} [id] - Identifier of the object.
@@ -35362,13 +35668,16 @@ Object.defineProperty(Order.prototype, "schema", {
35362
35668
  }
35363
35669
  });
35364
35670
  Object.defineProperty(Order.prototype, "validator", {
35365
- get: function() {
35671
+ get: /* @__PURE__ */ __name(function() {
35366
35672
  return validateOrder;
35367
- }
35673
+ }, "get")
35368
35674
  });
35369
35675
 
35370
35676
  // src/models/organization.js
35371
35677
  var Organization = class extends Entity {
35678
+ static {
35679
+ __name(this, "Organization");
35680
+ }
35372
35681
  /**
35373
35682
  * @typedef {Object} OrganizationData An organization is a group or entity that subscribes to Kohost software.
35374
35683
  * @property {string} [id] - Identifier of the object.
@@ -35523,13 +35832,16 @@ Object.defineProperty(Organization.prototype, "schema", {
35523
35832
  }
35524
35833
  });
35525
35834
  Object.defineProperty(Organization.prototype, "validator", {
35526
- get: function() {
35835
+ get: /* @__PURE__ */ __name(function() {
35527
35836
  return validateOrganization;
35528
- }
35837
+ }, "get")
35529
35838
  });
35530
35839
 
35531
35840
  // src/models/payment.js
35532
35841
  var Payment = class extends Entity {
35842
+ static {
35843
+ __name(this, "Payment");
35844
+ }
35533
35845
  /**
35534
35846
  * @typedef {Object} PaymentData
35535
35847
  * @property {string} [id] - Identifier of the object.
@@ -35592,13 +35904,16 @@ Object.defineProperty(Payment.prototype, "schema", {
35592
35904
  }
35593
35905
  });
35594
35906
  Object.defineProperty(Payment.prototype, "validator", {
35595
- get: function() {
35907
+ get: /* @__PURE__ */ __name(function() {
35596
35908
  return validatePayment;
35597
- }
35909
+ }, "get")
35598
35910
  });
35599
35911
 
35600
35912
  // src/models/policy.js
35601
35913
  var Policy = class extends Entity {
35914
+ static {
35915
+ __name(this, "Policy");
35916
+ }
35602
35917
  /**
35603
35918
  * @typedef {Object} PolicyData A policy is a set of permissions that can be applied to a user to limit their access to resources.
35604
35919
  * @property {string} [id] - Identifier of the object.
@@ -35667,13 +35982,16 @@ Object.defineProperty(Policy.prototype, "schema", {
35667
35982
  }
35668
35983
  });
35669
35984
  Object.defineProperty(Policy.prototype, "validator", {
35670
- get: function() {
35985
+ get: /* @__PURE__ */ __name(function() {
35671
35986
  return validatePolicy;
35672
- }
35987
+ }, "get")
35673
35988
  });
35674
35989
 
35675
35990
  // src/models/product.js
35676
35991
  var Product = class extends Entity {
35992
+ static {
35993
+ __name(this, "Product");
35994
+ }
35677
35995
  /**
35678
35996
  * @typedef {Object} ProductData
35679
35997
  * @property {string} [id] - Identifier of the object.
@@ -35730,13 +36048,16 @@ Object.defineProperty(Product.prototype, "schema", {
35730
36048
  }
35731
36049
  });
35732
36050
  Object.defineProperty(Product.prototype, "validator", {
35733
- get: function() {
36051
+ get: /* @__PURE__ */ __name(function() {
35734
36052
  return validateProduct;
35735
- }
36053
+ }, "get")
35736
36054
  });
35737
36055
 
35738
36056
  // src/models/property.js
35739
36057
  var Property = class extends Entity {
36058
+ static {
36059
+ __name(this, "Property");
36060
+ }
35740
36061
  /**
35741
36062
  * @typedef {Object} PropertyData A property is a physical asset or building
35742
36063
  * @property {string} id - Identifier of the object.
@@ -36145,13 +36466,16 @@ Object.defineProperty(Property.prototype, "schema", {
36145
36466
  }
36146
36467
  });
36147
36468
  Object.defineProperty(Property.prototype, "validator", {
36148
- get: function() {
36469
+ get: /* @__PURE__ */ __name(function() {
36149
36470
  return validateProperty;
36150
- }
36471
+ }, "get")
36151
36472
  });
36152
36473
 
36153
36474
  // src/models/reservation.js
36154
36475
  var Reservation = class extends Entity {
36476
+ static {
36477
+ __name(this, "Reservation");
36478
+ }
36155
36479
  /**
36156
36480
  * @typedef {Object} ReservationData
36157
36481
  * @property {string} [id] - Identifier of the object.
@@ -36334,13 +36658,16 @@ Object.defineProperty(Reservation.prototype, "schema", {
36334
36658
  }
36335
36659
  });
36336
36660
  Object.defineProperty(Reservation.prototype, "validator", {
36337
- get: function() {
36661
+ get: /* @__PURE__ */ __name(function() {
36338
36662
  return validateReservation;
36339
- }
36663
+ }, "get")
36340
36664
  });
36341
36665
 
36342
36666
  // src/models/room.js
36343
36667
  var Room = class extends Entity {
36668
+ static {
36669
+ __name(this, "Room");
36670
+ }
36344
36671
  /**
36345
36672
  * @typedef {Object} RoomData A room represents a physical space of controllable IoT devices
36346
36673
  * @property {string} id - Identifier of the object.
@@ -36538,13 +36865,16 @@ Object.defineProperty(Room.prototype, "schema", {
36538
36865
  }
36539
36866
  });
36540
36867
  Object.defineProperty(Room.prototype, "validator", {
36541
- get: function() {
36868
+ get: /* @__PURE__ */ __name(function() {
36542
36869
  return validateRoom;
36543
- }
36870
+ }, "get")
36544
36871
  });
36545
36872
 
36546
36873
  // src/models/scene.js
36547
36874
  var Scene = class extends Entity {
36875
+ static {
36876
+ __name(this, "Scene");
36877
+ }
36548
36878
  /**
36549
36879
  * @typedef {Object} SceneData A room represents a physical space of controllable IoT devices
36550
36880
  * @property {string} id - Identifier of the object.
@@ -36671,13 +37001,16 @@ Object.defineProperty(Scene.prototype, "schema", {
36671
37001
  }
36672
37002
  });
36673
37003
  Object.defineProperty(Scene.prototype, "validator", {
36674
- get: function() {
37004
+ get: /* @__PURE__ */ __name(function() {
36675
37005
  return validateScene;
36676
- }
37006
+ }, "get")
36677
37007
  });
36678
37008
 
36679
37009
  // src/models/shortLink.js
36680
37010
  var ShortLink = class extends Entity {
37011
+ static {
37012
+ __name(this, "ShortLink");
37013
+ }
36681
37014
  /**
36682
37015
  * @typedef {Object} ShortLinkData
36683
37016
  * @property {string} [id] - Identifier of the object.
@@ -36719,13 +37052,16 @@ Object.defineProperty(ShortLink.prototype, "schema", {
36719
37052
  }
36720
37053
  });
36721
37054
  Object.defineProperty(ShortLink.prototype, "validator", {
36722
- get: function() {
37055
+ get: /* @__PURE__ */ __name(function() {
36723
37056
  return validateShortLink;
36724
- }
37057
+ }, "get")
36725
37058
  });
36726
37059
 
36727
37060
  // src/models/smsMessage.js
36728
37061
  var SmsMessage = class extends Entity {
37062
+ static {
37063
+ __name(this, "SmsMessage");
37064
+ }
36729
37065
  /**
36730
37066
  * @typedef {Object} SmsMessageData
36731
37067
  * @property {string} [id] - Identifier of the object.
@@ -36799,13 +37135,16 @@ Object.defineProperty(SmsMessage.prototype, "schema", {
36799
37135
  }
36800
37136
  });
36801
37137
  Object.defineProperty(SmsMessage.prototype, "validator", {
36802
- get: function() {
37138
+ get: /* @__PURE__ */ __name(function() {
36803
37139
  return validateSmsMessage;
36804
- }
37140
+ }, "get")
36805
37141
  });
36806
37142
 
36807
37143
  // src/models/space.js
36808
37144
  var Space = class extends Entity {
37145
+ static {
37146
+ __name(this, "Space");
37147
+ }
36809
37148
  /**
36810
37149
  * @typedef {Object} SpaceData
36811
37150
  * @property {string} [id] - Identifier of the object.
@@ -36981,13 +37320,16 @@ Object.defineProperty(Space.prototype, "schema", {
36981
37320
  }
36982
37321
  });
36983
37322
  Object.defineProperty(Space.prototype, "validator", {
36984
- get: function() {
37323
+ get: /* @__PURE__ */ __name(function() {
36985
37324
  return validateSpace;
36986
- }
37325
+ }, "get")
36987
37326
  });
36988
37327
 
36989
37328
  // src/models/switch.js
36990
37329
  var Switch = class extends Entity {
37330
+ static {
37331
+ __name(this, "Switch");
37332
+ }
36991
37333
  /**
36992
37334
  * @typedef {Object} SwitchData Any smart switch
36993
37335
  * @property {string} id - Identifier of the object.
@@ -37047,13 +37389,16 @@ Object.defineProperty(Switch.prototype, "schema", {
37047
37389
  }
37048
37390
  });
37049
37391
  Object.defineProperty(Switch.prototype, "validator", {
37050
- get: function() {
37392
+ get: /* @__PURE__ */ __name(function() {
37051
37393
  return validateSwitch;
37052
- }
37394
+ }, "get")
37053
37395
  });
37054
37396
 
37055
37397
  // src/models/systemUser.js
37056
37398
  var SystemUser = class extends Entity {
37399
+ static {
37400
+ __name(this, "SystemUser");
37401
+ }
37057
37402
  /**
37058
37403
  * @typedef {Object} SystemUserData A system user is a user that originated from an external 3rd party system.
37059
37404
  * @property {string} [id] - Identifier of the object.
@@ -37160,13 +37505,16 @@ Object.defineProperty(SystemUser.prototype, "schema", {
37160
37505
  }
37161
37506
  });
37162
37507
  Object.defineProperty(SystemUser.prototype, "validator", {
37163
- get: function() {
37508
+ get: /* @__PURE__ */ __name(function() {
37164
37509
  return validateSystemUser;
37165
- }
37510
+ }, "get")
37166
37511
  });
37167
37512
 
37168
37513
  // src/models/thermostat.js
37169
37514
  var Thermostat = class extends Entity {
37515
+ static {
37516
+ __name(this, "Thermostat");
37517
+ }
37170
37518
  /**
37171
37519
  * @typedef {Object} ThermostatData Any smart thermostat
37172
37520
  * @property {string} id - Identifier of the object.
@@ -37326,13 +37674,16 @@ Object.defineProperty(Thermostat.prototype, "schema", {
37326
37674
  }
37327
37675
  });
37328
37676
  Object.defineProperty(Thermostat.prototype, "validator", {
37329
- get: function() {
37677
+ get: /* @__PURE__ */ __name(function() {
37330
37678
  return validateThermostat;
37331
- }
37679
+ }, "get")
37332
37680
  });
37333
37681
 
37334
37682
  // src/models/ticket.js
37335
37683
  var Ticket = class extends Entity {
37684
+ static {
37685
+ __name(this, "Ticket");
37686
+ }
37336
37687
  /**
37337
37688
  * @typedef {Object} TicketData A ticket is a request from a user.
37338
37689
  * @property {string} id - Identifier of the object.
@@ -37536,13 +37887,16 @@ Object.defineProperty(Ticket.prototype, "schema", {
37536
37887
  }
37537
37888
  });
37538
37889
  Object.defineProperty(Ticket.prototype, "validator", {
37539
- get: function() {
37890
+ get: /* @__PURE__ */ __name(function() {
37540
37891
  return validateTicket;
37541
- }
37892
+ }, "get")
37542
37893
  });
37543
37894
 
37544
37895
  // src/models/timeSheet.js
37545
37896
  var TimeSheet = class extends Entity {
37897
+ static {
37898
+ __name(this, "TimeSheet");
37899
+ }
37546
37900
  /**
37547
37901
  * @typedef {Object} TimeSheetData
37548
37902
  * @property {string} [id] - Identifier of the object.
@@ -37607,13 +37961,16 @@ Object.defineProperty(TimeSheet.prototype, "schema", {
37607
37961
  }
37608
37962
  });
37609
37963
  Object.defineProperty(TimeSheet.prototype, "validator", {
37610
- get: function() {
37964
+ get: /* @__PURE__ */ __name(function() {
37611
37965
  return validateTimeSheet;
37612
- }
37966
+ }, "get")
37613
37967
  });
37614
37968
 
37615
37969
  // src/models/user.js
37616
37970
  var User = class extends Entity {
37971
+ static {
37972
+ __name(this, "User");
37973
+ }
37617
37974
  /**
37618
37975
  * @typedef {Object} UserData
37619
37976
  * @property {string} [id] - Identifier of the object.
@@ -37819,13 +38176,16 @@ Object.defineProperty(User.prototype, "schema", {
37819
38176
  }
37820
38177
  });
37821
38178
  Object.defineProperty(User.prototype, "validator", {
37822
- get: function() {
38179
+ get: /* @__PURE__ */ __name(function() {
37823
38180
  return validateUser;
37824
- }
38181
+ }, "get")
37825
38182
  });
37826
38183
 
37827
38184
  // src/models/vendor.js
37828
38185
  var Vendor = class extends Entity {
38186
+ static {
38187
+ __name(this, "Vendor");
38188
+ }
37829
38189
  /**
37830
38190
  * @typedef {Object} VendorData
37831
38191
  * @property {string} [id] - Identifier of the object.
@@ -37876,13 +38236,16 @@ Object.defineProperty(Vendor.prototype, "schema", {
37876
38236
  }
37877
38237
  });
37878
38238
  Object.defineProperty(Vendor.prototype, "validator", {
37879
- get: function() {
38239
+ get: /* @__PURE__ */ __name(function() {
37880
38240
  return validateVendor;
37881
- }
38241
+ }, "get")
37882
38242
  });
37883
38243
 
37884
38244
  // src/models/windowCovering.js
37885
38245
  var WindowCovering = class extends Entity {
38246
+ static {
38247
+ __name(this, "WindowCovering");
38248
+ }
37886
38249
  /**
37887
38250
  * @typedef {Object} WindowCoveringData Any smart window covering
37888
38251
  * @property {string} id - Identifier of the object.
@@ -37949,9 +38312,9 @@ Object.defineProperty(WindowCovering.prototype, "schema", {
37949
38312
  }
37950
38313
  });
37951
38314
  Object.defineProperty(WindowCovering.prototype, "validator", {
37952
- get: function() {
38315
+ get: /* @__PURE__ */ __name(function() {
37953
38316
  return validateWindowCovering;
37954
- }
38317
+ }, "get")
37955
38318
  });
37956
38319
 
37957
38320
  // src/useCases/index.js
@@ -38174,6 +38537,9 @@ __export(useCases_exports, {
38174
38537
 
38175
38538
  // src/useCases/assignSpaceToReservation.js
38176
38539
  var AssignSpaceToReservationCommand = class _AssignSpaceToReservationCommand {
38540
+ static {
38541
+ __name(this, "AssignSpaceToReservationCommand");
38542
+ }
38177
38543
  /**
38178
38544
  * @description
38179
38545
  * @constructor
@@ -38237,6 +38603,9 @@ var AssignSpaceToReservationCommand = class _AssignSpaceToReservationCommand {
38237
38603
 
38238
38604
  // src/useCases/autoAssociateDiscoveredDevices.js
38239
38605
  var AutoAssociateDiscoveredDevicesCommand = class _AutoAssociateDiscoveredDevicesCommand {
38606
+ static {
38607
+ __name(this, "AutoAssociateDiscoveredDevicesCommand");
38608
+ }
38240
38609
  /**
38241
38610
  * @description
38242
38611
  * @constructor
@@ -38300,6 +38669,9 @@ var AutoAssociateDiscoveredDevicesCommand = class _AutoAssociateDiscoveredDevice
38300
38669
 
38301
38670
  // src/useCases/autoCloseTickets.js
38302
38671
  var AutoCloseTicketsCommand = class _AutoCloseTicketsCommand {
38672
+ static {
38673
+ __name(this, "AutoCloseTicketsCommand");
38674
+ }
38303
38675
  /**
38304
38676
  * @description
38305
38677
  * @constructor
@@ -38363,6 +38735,9 @@ var AutoCloseTicketsCommand = class _AutoCloseTicketsCommand {
38363
38735
 
38364
38736
  // src/useCases/batchNotifyCheckIn.js
38365
38737
  var BatchNotifyCheckInCommand = class _BatchNotifyCheckInCommand {
38738
+ static {
38739
+ __name(this, "BatchNotifyCheckInCommand");
38740
+ }
38366
38741
  /**
38367
38742
  * @description
38368
38743
  * @constructor
@@ -38426,6 +38801,9 @@ var BatchNotifyCheckInCommand = class _BatchNotifyCheckInCommand {
38426
38801
 
38427
38802
  // src/useCases/batchNotifyCheckOut.js
38428
38803
  var BatchNotifyCheckOutCommand = class _BatchNotifyCheckOutCommand {
38804
+ static {
38805
+ __name(this, "BatchNotifyCheckOutCommand");
38806
+ }
38429
38807
  /**
38430
38808
  * @description
38431
38809
  * @constructor
@@ -38489,6 +38867,9 @@ var BatchNotifyCheckOutCommand = class _BatchNotifyCheckOutCommand {
38489
38867
 
38490
38868
  // src/useCases/batchNotifyMissedCheckOut.js
38491
38869
  var BatchNotifyMissedCheckOutCommand = class _BatchNotifyMissedCheckOutCommand {
38870
+ static {
38871
+ __name(this, "BatchNotifyMissedCheckOutCommand");
38872
+ }
38492
38873
  /**
38493
38874
  * @description
38494
38875
  * @constructor
@@ -38552,6 +38933,9 @@ var BatchNotifyMissedCheckOutCommand = class _BatchNotifyMissedCheckOutCommand {
38552
38933
 
38553
38934
  // src/useCases/batchNotifyPreArrival.js
38554
38935
  var BatchNotifyPreArrivalCommand = class _BatchNotifyPreArrivalCommand {
38936
+ static {
38937
+ __name(this, "BatchNotifyPreArrivalCommand");
38938
+ }
38555
38939
  /**
38556
38940
  * @description
38557
38941
  * @constructor
@@ -38615,6 +38999,9 @@ var BatchNotifyPreArrivalCommand = class _BatchNotifyPreArrivalCommand {
38615
38999
 
38616
39000
  // src/useCases/bulkUpdateIssue.js
38617
39001
  var BulkUpdateIssueCommand = class _BulkUpdateIssueCommand {
39002
+ static {
39003
+ __name(this, "BulkUpdateIssueCommand");
39004
+ }
38618
39005
  /**
38619
39006
  * @description
38620
39007
  * @constructor
@@ -38678,6 +39065,9 @@ var BulkUpdateIssueCommand = class _BulkUpdateIssueCommand {
38678
39065
 
38679
39066
  // src/useCases/checkInReservation.js
38680
39067
  var CheckInReservationCommand = class _CheckInReservationCommand {
39068
+ static {
39069
+ __name(this, "CheckInReservationCommand");
39070
+ }
38681
39071
  /**
38682
39072
  * @description
38683
39073
  * @constructor
@@ -38741,6 +39131,9 @@ var CheckInReservationCommand = class _CheckInReservationCommand {
38741
39131
 
38742
39132
  // src/useCases/checkOutReservation.js
38743
39133
  var CheckOutReservationCommand = class _CheckOutReservationCommand {
39134
+ static {
39135
+ __name(this, "CheckOutReservationCommand");
39136
+ }
38744
39137
  /**
38745
39138
  * @description
38746
39139
  * @constructor
@@ -38804,6 +39197,9 @@ var CheckOutReservationCommand = class _CheckOutReservationCommand {
38804
39197
 
38805
39198
  // src/useCases/checkVerificationCode.js
38806
39199
  var CheckVerificationCodeCommand = class _CheckVerificationCodeCommand {
39200
+ static {
39201
+ __name(this, "CheckVerificationCodeCommand");
39202
+ }
38807
39203
  /**
38808
39204
  * @description
38809
39205
  * @constructor
@@ -38867,6 +39263,9 @@ var CheckVerificationCodeCommand = class _CheckVerificationCodeCommand {
38867
39263
 
38868
39264
  // src/useCases/createAlarm.js
38869
39265
  var CreateAlarmCommand = class _CreateAlarmCommand {
39266
+ static {
39267
+ __name(this, "CreateAlarmCommand");
39268
+ }
38870
39269
  /**
38871
39270
  * @description
38872
39271
  * @constructor
@@ -38930,6 +39329,9 @@ var CreateAlarmCommand = class _CreateAlarmCommand {
38930
39329
 
38931
39330
  // src/useCases/createAnnouncement.js
38932
39331
  var CreateAnnouncementCommand = class _CreateAnnouncementCommand {
39332
+ static {
39333
+ __name(this, "CreateAnnouncementCommand");
39334
+ }
38933
39335
  /**
38934
39336
  * @description
38935
39337
  * @constructor
@@ -38993,6 +39395,9 @@ var CreateAnnouncementCommand = class _CreateAnnouncementCommand {
38993
39395
 
38994
39396
  // src/useCases/createCamera.js
38995
39397
  var CreateCameraCommand = class _CreateCameraCommand {
39398
+ static {
39399
+ __name(this, "CreateCameraCommand");
39400
+ }
38996
39401
  /**
38997
39402
  * @description
38998
39403
  * @constructor
@@ -39056,6 +39461,9 @@ var CreateCameraCommand = class _CreateCameraCommand {
39056
39461
 
39057
39462
  // src/useCases/createCateory.js
39058
39463
  var CreateCateoryCommand = class _CreateCateoryCommand {
39464
+ static {
39465
+ __name(this, "CreateCateoryCommand");
39466
+ }
39059
39467
  /**
39060
39468
  * @description
39061
39469
  * @constructor
@@ -39119,6 +39527,9 @@ var CreateCateoryCommand = class _CreateCateoryCommand {
39119
39527
 
39120
39528
  // src/useCases/createCourtesy.js
39121
39529
  var CreateCourtesyCommand = class _CreateCourtesyCommand {
39530
+ static {
39531
+ __name(this, "CreateCourtesyCommand");
39532
+ }
39122
39533
  /**
39123
39534
  * @description
39124
39535
  * @constructor
@@ -39182,6 +39593,9 @@ var CreateCourtesyCommand = class _CreateCourtesyCommand {
39182
39593
 
39183
39594
  // src/useCases/createDefaultScenes.js
39184
39595
  var CreateDefaultScenesCommand = class _CreateDefaultScenesCommand {
39596
+ static {
39597
+ __name(this, "CreateDefaultScenesCommand");
39598
+ }
39185
39599
  /**
39186
39600
  * @description
39187
39601
  * @constructor
@@ -39245,6 +39659,9 @@ var CreateDefaultScenesCommand = class _CreateDefaultScenesCommand {
39245
39659
 
39246
39660
  // src/useCases/createDimmer.js
39247
39661
  var CreateDimmerCommand = class _CreateDimmerCommand {
39662
+ static {
39663
+ __name(this, "CreateDimmerCommand");
39664
+ }
39248
39665
  /**
39249
39666
  * @description
39250
39667
  * @constructor
@@ -39308,6 +39725,9 @@ var CreateDimmerCommand = class _CreateDimmerCommand {
39308
39725
 
39309
39726
  // src/useCases/createDiscoveredDevice.js
39310
39727
  var CreateDiscoveredDeviceCommand = class _CreateDiscoveredDeviceCommand {
39728
+ static {
39729
+ __name(this, "CreateDiscoveredDeviceCommand");
39730
+ }
39311
39731
  /**
39312
39732
  * @description
39313
39733
  * @constructor
@@ -39371,6 +39791,9 @@ var CreateDiscoveredDeviceCommand = class _CreateDiscoveredDeviceCommand {
39371
39791
 
39372
39792
  // src/useCases/createDiscoveredDeviceAssociation.js
39373
39793
  var CreateDiscoveredDeviceAssociationCommand = class _CreateDiscoveredDeviceAssociationCommand {
39794
+ static {
39795
+ __name(this, "CreateDiscoveredDeviceAssociationCommand");
39796
+ }
39374
39797
  /**
39375
39798
  * @description
39376
39799
  * @constructor
@@ -39434,6 +39857,9 @@ var CreateDiscoveredDeviceAssociationCommand = class _CreateDiscoveredDeviceAsso
39434
39857
 
39435
39858
  // src/useCases/createDiscoveredDeviceAssociationMap.js
39436
39859
  var CreateDiscoveredDeviceAssociationMapCommand = class _CreateDiscoveredDeviceAssociationMapCommand {
39860
+ static {
39861
+ __name(this, "CreateDiscoveredDeviceAssociationMapCommand");
39862
+ }
39437
39863
  /**
39438
39864
  * @description
39439
39865
  * @constructor
@@ -39497,6 +39923,9 @@ var CreateDiscoveredDeviceAssociationMapCommand = class _CreateDiscoveredDeviceA
39497
39923
 
39498
39924
  // src/useCases/createImageUploadEndpoint.js
39499
39925
  var CreateImageUploadEndpointCommand = class _CreateImageUploadEndpointCommand {
39926
+ static {
39927
+ __name(this, "CreateImageUploadEndpointCommand");
39928
+ }
39500
39929
  /**
39501
39930
  * @description
39502
39931
  * @constructor
@@ -39560,6 +39989,9 @@ var CreateImageUploadEndpointCommand = class _CreateImageUploadEndpointCommand {
39560
39989
 
39561
39990
  // src/useCases/createIssue.js
39562
39991
  var CreateIssueCommand = class _CreateIssueCommand {
39992
+ static {
39993
+ __name(this, "CreateIssueCommand");
39994
+ }
39563
39995
  /**
39564
39996
  * @description
39565
39997
  * @constructor
@@ -39623,6 +40055,9 @@ var CreateIssueCommand = class _CreateIssueCommand {
39623
40055
 
39624
40056
  // src/useCases/createLock.js
39625
40057
  var CreateLockCommand = class _CreateLockCommand {
40058
+ static {
40059
+ __name(this, "CreateLockCommand");
40060
+ }
39626
40061
  /**
39627
40062
  * @description
39628
40063
  * @constructor
@@ -39686,6 +40121,9 @@ var CreateLockCommand = class _CreateLockCommand {
39686
40121
 
39687
40122
  // src/useCases/createMediaSource.js
39688
40123
  var CreateMediaSourceCommand = class _CreateMediaSourceCommand {
40124
+ static {
40125
+ __name(this, "CreateMediaSourceCommand");
40126
+ }
39689
40127
  /**
39690
40128
  * @description
39691
40129
  * @constructor
@@ -39749,6 +40187,9 @@ var CreateMediaSourceCommand = class _CreateMediaSourceCommand {
39749
40187
 
39750
40188
  // src/useCases/createOrganization.js
39751
40189
  var CreateOrganizationCommand = class _CreateOrganizationCommand {
40190
+ static {
40191
+ __name(this, "CreateOrganizationCommand");
40192
+ }
39752
40193
  /**
39753
40194
  * @description
39754
40195
  * @constructor
@@ -39812,6 +40253,9 @@ var CreateOrganizationCommand = class _CreateOrganizationCommand {
39812
40253
 
39813
40254
  // src/useCases/createPolicy.js
39814
40255
  var CreatePolicyCommand = class _CreatePolicyCommand {
40256
+ static {
40257
+ __name(this, "CreatePolicyCommand");
40258
+ }
39815
40259
  /**
39816
40260
  * @description
39817
40261
  * @constructor
@@ -39875,6 +40319,9 @@ var CreatePolicyCommand = class _CreatePolicyCommand {
39875
40319
 
39876
40320
  // src/useCases/createProperty.js
39877
40321
  var CreatePropertyCommand = class _CreatePropertyCommand {
40322
+ static {
40323
+ __name(this, "CreatePropertyCommand");
40324
+ }
39878
40325
  /**
39879
40326
  * @description
39880
40327
  * @constructor
@@ -39938,6 +40385,9 @@ var CreatePropertyCommand = class _CreatePropertyCommand {
39938
40385
 
39939
40386
  // src/useCases/createReservation.js
39940
40387
  var CreateReservationCommand = class _CreateReservationCommand {
40388
+ static {
40389
+ __name(this, "CreateReservationCommand");
40390
+ }
39941
40391
  /**
39942
40392
  * @description
39943
40393
  * @constructor
@@ -40001,6 +40451,9 @@ var CreateReservationCommand = class _CreateReservationCommand {
40001
40451
 
40002
40452
  // src/useCases/createRoom.js
40003
40453
  var CreateRoomCommand = class _CreateRoomCommand {
40454
+ static {
40455
+ __name(this, "CreateRoomCommand");
40456
+ }
40004
40457
  /**
40005
40458
  * @description
40006
40459
  * @constructor
@@ -40064,6 +40517,9 @@ var CreateRoomCommand = class _CreateRoomCommand {
40064
40517
 
40065
40518
  // src/useCases/createRoomInSpace.js
40066
40519
  var CreateRoomInSpaceCommand = class _CreateRoomInSpaceCommand {
40520
+ static {
40521
+ __name(this, "CreateRoomInSpaceCommand");
40522
+ }
40067
40523
  /**
40068
40524
  * @description
40069
40525
  * @constructor
@@ -40127,6 +40583,9 @@ var CreateRoomInSpaceCommand = class _CreateRoomInSpaceCommand {
40127
40583
 
40128
40584
  // src/useCases/createScene.js
40129
40585
  var CreateSceneCommand = class _CreateSceneCommand {
40586
+ static {
40587
+ __name(this, "CreateSceneCommand");
40588
+ }
40130
40589
  /**
40131
40590
  * @description
40132
40591
  * @constructor
@@ -40190,6 +40649,9 @@ var CreateSceneCommand = class _CreateSceneCommand {
40190
40649
 
40191
40650
  // src/useCases/createSpace.js
40192
40651
  var CreateSpaceCommand = class _CreateSpaceCommand {
40652
+ static {
40653
+ __name(this, "CreateSpaceCommand");
40654
+ }
40193
40655
  /**
40194
40656
  * @description
40195
40657
  * @constructor
@@ -40253,6 +40715,9 @@ var CreateSpaceCommand = class _CreateSpaceCommand {
40253
40715
 
40254
40716
  // src/useCases/createSwitch.js
40255
40717
  var CreateSwitchCommand = class _CreateSwitchCommand {
40718
+ static {
40719
+ __name(this, "CreateSwitchCommand");
40720
+ }
40256
40721
  /**
40257
40722
  * @description
40258
40723
  * @constructor
@@ -40316,6 +40781,9 @@ var CreateSwitchCommand = class _CreateSwitchCommand {
40316
40781
 
40317
40782
  // src/useCases/createThermostat.js
40318
40783
  var CreateThermostatCommand = class _CreateThermostatCommand {
40784
+ static {
40785
+ __name(this, "CreateThermostatCommand");
40786
+ }
40319
40787
  /**
40320
40788
  * @description
40321
40789
  * @constructor
@@ -40379,6 +40847,9 @@ var CreateThermostatCommand = class _CreateThermostatCommand {
40379
40847
 
40380
40848
  // src/useCases/createTicket.js
40381
40849
  var CreateTicketCommand = class _CreateTicketCommand {
40850
+ static {
40851
+ __name(this, "CreateTicketCommand");
40852
+ }
40382
40853
  /**
40383
40854
  * @description
40384
40855
  * @constructor
@@ -40442,6 +40913,9 @@ var CreateTicketCommand = class _CreateTicketCommand {
40442
40913
 
40443
40914
  // src/useCases/createTicketMessage.js
40444
40915
  var CreateTicketMessageCommand = class _CreateTicketMessageCommand {
40916
+ static {
40917
+ __name(this, "CreateTicketMessageCommand");
40918
+ }
40445
40919
  /**
40446
40920
  * @description
40447
40921
  * @constructor
@@ -40505,6 +40979,9 @@ var CreateTicketMessageCommand = class _CreateTicketMessageCommand {
40505
40979
 
40506
40980
  // src/useCases/createTimeSheet.js
40507
40981
  var CreateTimeSheetCommand = class _CreateTimeSheetCommand {
40982
+ static {
40983
+ __name(this, "CreateTimeSheetCommand");
40984
+ }
40508
40985
  /**
40509
40986
  * @description
40510
40987
  * @constructor
@@ -40568,6 +41045,9 @@ var CreateTimeSheetCommand = class _CreateTimeSheetCommand {
40568
41045
 
40569
41046
  // src/useCases/createTimeSheetTimeEntry.js
40570
41047
  var CreateTimeSheetTimeEntryCommand = class _CreateTimeSheetTimeEntryCommand {
41048
+ static {
41049
+ __name(this, "CreateTimeSheetTimeEntryCommand");
41050
+ }
40571
41051
  /**
40572
41052
  * @description
40573
41053
  * @constructor
@@ -40631,6 +41111,9 @@ var CreateTimeSheetTimeEntryCommand = class _CreateTimeSheetTimeEntryCommand {
40631
41111
 
40632
41112
  // src/useCases/createUser.js
40633
41113
  var CreateUserCommand = class _CreateUserCommand {
41114
+ static {
41115
+ __name(this, "CreateUserCommand");
41116
+ }
40634
41117
  /**
40635
41118
  * @description
40636
41119
  * @constructor
@@ -40694,6 +41177,9 @@ var CreateUserCommand = class _CreateUserCommand {
40694
41177
 
40695
41178
  // src/useCases/createUserMobileKey.js
40696
41179
  var CreateUserMobileKeyCommand = class _CreateUserMobileKeyCommand {
41180
+ static {
41181
+ __name(this, "CreateUserMobileKeyCommand");
41182
+ }
40697
41183
  /**
40698
41184
  * @description
40699
41185
  * @constructor
@@ -40757,6 +41243,9 @@ var CreateUserMobileKeyCommand = class _CreateUserMobileKeyCommand {
40757
41243
 
40758
41244
  // src/useCases/createVendor.js
40759
41245
  var CreateVendorCommand = class _CreateVendorCommand {
41246
+ static {
41247
+ __name(this, "CreateVendorCommand");
41248
+ }
40760
41249
  /**
40761
41250
  * @description
40762
41251
  * @constructor
@@ -40820,6 +41309,9 @@ var CreateVendorCommand = class _CreateVendorCommand {
40820
41309
 
40821
41310
  // src/useCases/createWindowCovering.js
40822
41311
  var CreateWindowCoveringCommand = class _CreateWindowCoveringCommand {
41312
+ static {
41313
+ __name(this, "CreateWindowCoveringCommand");
41314
+ }
40823
41315
  /**
40824
41316
  * @description
40825
41317
  * @constructor
@@ -40883,6 +41375,9 @@ var CreateWindowCoveringCommand = class _CreateWindowCoveringCommand {
40883
41375
 
40884
41376
  // src/useCases/deleteAlarm.js
40885
41377
  var DeleteAlarmCommand = class _DeleteAlarmCommand {
41378
+ static {
41379
+ __name(this, "DeleteAlarmCommand");
41380
+ }
40886
41381
  /**
40887
41382
  * @description
40888
41383
  * @constructor
@@ -40946,6 +41441,9 @@ var DeleteAlarmCommand = class _DeleteAlarmCommand {
40946
41441
 
40947
41442
  // src/useCases/deleteAnnouncement.js
40948
41443
  var DeleteAnnouncementCommand = class _DeleteAnnouncementCommand {
41444
+ static {
41445
+ __name(this, "DeleteAnnouncementCommand");
41446
+ }
40949
41447
  /**
40950
41448
  * @description
40951
41449
  * @constructor
@@ -41009,6 +41507,9 @@ var DeleteAnnouncementCommand = class _DeleteAnnouncementCommand {
41009
41507
 
41010
41508
  // src/useCases/deleteCamera.js
41011
41509
  var DeleteCameraCommand = class _DeleteCameraCommand {
41510
+ static {
41511
+ __name(this, "DeleteCameraCommand");
41512
+ }
41012
41513
  /**
41013
41514
  * @description
41014
41515
  * @constructor
@@ -41072,6 +41573,9 @@ var DeleteCameraCommand = class _DeleteCameraCommand {
41072
41573
 
41073
41574
  // src/useCases/deleteCategory.js
41074
41575
  var DeleteCategoryCommand = class _DeleteCategoryCommand {
41576
+ static {
41577
+ __name(this, "DeleteCategoryCommand");
41578
+ }
41075
41579
  /**
41076
41580
  * @description
41077
41581
  * @constructor
@@ -41135,6 +41639,9 @@ var DeleteCategoryCommand = class _DeleteCategoryCommand {
41135
41639
 
41136
41640
  // src/useCases/deleteCourtesy.js
41137
41641
  var DeleteCourtesyCommand = class _DeleteCourtesyCommand {
41642
+ static {
41643
+ __name(this, "DeleteCourtesyCommand");
41644
+ }
41138
41645
  /**
41139
41646
  * @description
41140
41647
  * @constructor
@@ -41198,6 +41705,9 @@ var DeleteCourtesyCommand = class _DeleteCourtesyCommand {
41198
41705
 
41199
41706
  // src/useCases/deleteDimmer.js
41200
41707
  var DeleteDimmerCommand = class _DeleteDimmerCommand {
41708
+ static {
41709
+ __name(this, "DeleteDimmerCommand");
41710
+ }
41201
41711
  /**
41202
41712
  * @description
41203
41713
  * @constructor
@@ -41261,6 +41771,9 @@ var DeleteDimmerCommand = class _DeleteDimmerCommand {
41261
41771
 
41262
41772
  // src/useCases/deleteDiscoveredDevice.js
41263
41773
  var DeleteDiscoveredDeviceCommand = class _DeleteDiscoveredDeviceCommand {
41774
+ static {
41775
+ __name(this, "DeleteDiscoveredDeviceCommand");
41776
+ }
41264
41777
  /**
41265
41778
  * @description
41266
41779
  * @constructor
@@ -41324,6 +41837,9 @@ var DeleteDiscoveredDeviceCommand = class _DeleteDiscoveredDeviceCommand {
41324
41837
 
41325
41838
  // src/useCases/deleteIssue.js
41326
41839
  var DeleteIssueCommand = class _DeleteIssueCommand {
41840
+ static {
41841
+ __name(this, "DeleteIssueCommand");
41842
+ }
41327
41843
  /**
41328
41844
  * @description
41329
41845
  * @constructor
@@ -41387,6 +41903,9 @@ var DeleteIssueCommand = class _DeleteIssueCommand {
41387
41903
 
41388
41904
  // src/useCases/deleteLock.js
41389
41905
  var DeleteLockCommand = class _DeleteLockCommand {
41906
+ static {
41907
+ __name(this, "DeleteLockCommand");
41908
+ }
41390
41909
  /**
41391
41910
  * @description
41392
41911
  * @constructor
@@ -41450,6 +41969,9 @@ var DeleteLockCommand = class _DeleteLockCommand {
41450
41969
 
41451
41970
  // src/useCases/deleteMediaFile.js
41452
41971
  var DeleteMediaFileCommand = class _DeleteMediaFileCommand {
41972
+ static {
41973
+ __name(this, "DeleteMediaFileCommand");
41974
+ }
41453
41975
  /**
41454
41976
  * @description
41455
41977
  * @constructor
@@ -41513,6 +42035,9 @@ var DeleteMediaFileCommand = class _DeleteMediaFileCommand {
41513
42035
 
41514
42036
  // src/useCases/deleteMediaSource.js
41515
42037
  var DeleteMediaSourceCommand = class _DeleteMediaSourceCommand {
42038
+ static {
42039
+ __name(this, "DeleteMediaSourceCommand");
42040
+ }
41516
42041
  /**
41517
42042
  * @description
41518
42043
  * @constructor
@@ -41576,6 +42101,9 @@ var DeleteMediaSourceCommand = class _DeleteMediaSourceCommand {
41576
42101
 
41577
42102
  // src/useCases/deletePolicy.js
41578
42103
  var DeletePolicyCommand = class _DeletePolicyCommand {
42104
+ static {
42105
+ __name(this, "DeletePolicyCommand");
42106
+ }
41579
42107
  /**
41580
42108
  * @description
41581
42109
  * @constructor
@@ -41639,6 +42167,9 @@ var DeletePolicyCommand = class _DeletePolicyCommand {
41639
42167
 
41640
42168
  // src/useCases/deleteReservation.js
41641
42169
  var DeleteReservationCommand = class _DeleteReservationCommand {
42170
+ static {
42171
+ __name(this, "DeleteReservationCommand");
42172
+ }
41642
42173
  /**
41643
42174
  * @description
41644
42175
  * @constructor
@@ -41702,6 +42233,9 @@ var DeleteReservationCommand = class _DeleteReservationCommand {
41702
42233
 
41703
42234
  // src/useCases/deleteRoom.js
41704
42235
  var DeleteRoomCommand = class _DeleteRoomCommand {
42236
+ static {
42237
+ __name(this, "DeleteRoomCommand");
42238
+ }
41705
42239
  /**
41706
42240
  * @description
41707
42241
  * @constructor
@@ -41765,6 +42299,9 @@ var DeleteRoomCommand = class _DeleteRoomCommand {
41765
42299
 
41766
42300
  // src/useCases/deleteSpace.js
41767
42301
  var DeleteSpaceCommand = class _DeleteSpaceCommand {
42302
+ static {
42303
+ __name(this, "DeleteSpaceCommand");
42304
+ }
41768
42305
  /**
41769
42306
  * @description
41770
42307
  * @constructor
@@ -41828,6 +42365,9 @@ var DeleteSpaceCommand = class _DeleteSpaceCommand {
41828
42365
 
41829
42366
  // src/useCases/deleteSwitch.js
41830
42367
  var DeleteSwitchCommand = class _DeleteSwitchCommand {
42368
+ static {
42369
+ __name(this, "DeleteSwitchCommand");
42370
+ }
41831
42371
  /**
41832
42372
  * @description
41833
42373
  * @constructor
@@ -41891,6 +42431,9 @@ var DeleteSwitchCommand = class _DeleteSwitchCommand {
41891
42431
 
41892
42432
  // src/useCases/deleteThermostat.js
41893
42433
  var DeleteThermostatCommand = class _DeleteThermostatCommand {
42434
+ static {
42435
+ __name(this, "DeleteThermostatCommand");
42436
+ }
41894
42437
  /**
41895
42438
  * @description
41896
42439
  * @constructor
@@ -41954,6 +42497,9 @@ var DeleteThermostatCommand = class _DeleteThermostatCommand {
41954
42497
 
41955
42498
  // src/useCases/deleteTicket.js
41956
42499
  var DeleteTicketCommand = class _DeleteTicketCommand {
42500
+ static {
42501
+ __name(this, "DeleteTicketCommand");
42502
+ }
41957
42503
  /**
41958
42504
  * @description
41959
42505
  * @constructor
@@ -42017,6 +42563,9 @@ var DeleteTicketCommand = class _DeleteTicketCommand {
42017
42563
 
42018
42564
  // src/useCases/deleteTimeSheet.js
42019
42565
  var DeleteTimeSheetCommand = class _DeleteTimeSheetCommand {
42566
+ static {
42567
+ __name(this, "DeleteTimeSheetCommand");
42568
+ }
42020
42569
  /**
42021
42570
  * @description
42022
42571
  * @constructor
@@ -42080,6 +42629,9 @@ var DeleteTimeSheetCommand = class _DeleteTimeSheetCommand {
42080
42629
 
42081
42630
  // src/useCases/deleteTimeSheetTimeEntry.js
42082
42631
  var DeleteTimeSheetTimeEntryCommand = class _DeleteTimeSheetTimeEntryCommand {
42632
+ static {
42633
+ __name(this, "DeleteTimeSheetTimeEntryCommand");
42634
+ }
42083
42635
  /**
42084
42636
  * @description
42085
42637
  * @constructor
@@ -42143,6 +42695,9 @@ var DeleteTimeSheetTimeEntryCommand = class _DeleteTimeSheetTimeEntryCommand {
42143
42695
 
42144
42696
  // src/useCases/deleteUser.js
42145
42697
  var DeleteUserCommand = class _DeleteUserCommand {
42698
+ static {
42699
+ __name(this, "DeleteUserCommand");
42700
+ }
42146
42701
  /**
42147
42702
  * @description
42148
42703
  * @constructor
@@ -42206,6 +42761,9 @@ var DeleteUserCommand = class _DeleteUserCommand {
42206
42761
 
42207
42762
  // src/useCases/deleteUserCredential.js
42208
42763
  var DeleteUserCredentialCommand = class _DeleteUserCredentialCommand {
42764
+ static {
42765
+ __name(this, "DeleteUserCredentialCommand");
42766
+ }
42209
42767
  /**
42210
42768
  * @description
42211
42769
  * @constructor
@@ -42269,6 +42827,9 @@ var DeleteUserCredentialCommand = class _DeleteUserCredentialCommand {
42269
42827
 
42270
42828
  // src/useCases/deleteVendor.js
42271
42829
  var DeleteVendorCommand = class _DeleteVendorCommand {
42830
+ static {
42831
+ __name(this, "DeleteVendorCommand");
42832
+ }
42272
42833
  /**
42273
42834
  * @description
42274
42835
  * @constructor
@@ -42332,6 +42893,9 @@ var DeleteVendorCommand = class _DeleteVendorCommand {
42332
42893
 
42333
42894
  // src/useCases/deleteWindowCovering.js
42334
42895
  var DeleteWindowCoveringCommand = class _DeleteWindowCoveringCommand {
42896
+ static {
42897
+ __name(this, "DeleteWindowCoveringCommand");
42898
+ }
42335
42899
  /**
42336
42900
  * @description
42337
42901
  * @constructor
@@ -42395,6 +42959,9 @@ var DeleteWindowCoveringCommand = class _DeleteWindowCoveringCommand {
42395
42959
 
42396
42960
  // src/useCases/describeAlarm.js
42397
42961
  var DescribeAlarmCommand = class _DescribeAlarmCommand {
42962
+ static {
42963
+ __name(this, "DescribeAlarmCommand");
42964
+ }
42398
42965
  /**
42399
42966
  * @description
42400
42967
  * @constructor
@@ -42458,6 +43025,9 @@ var DescribeAlarmCommand = class _DescribeAlarmCommand {
42458
43025
 
42459
43026
  // src/useCases/describeAlarmConfig.js
42460
43027
  var DescribeAlarmConfigCommand = class _DescribeAlarmConfigCommand {
43028
+ static {
43029
+ __name(this, "DescribeAlarmConfigCommand");
43030
+ }
42461
43031
  /**
42462
43032
  * @description
42463
43033
  * @constructor
@@ -42521,6 +43091,9 @@ var DescribeAlarmConfigCommand = class _DescribeAlarmConfigCommand {
42521
43091
 
42522
43092
  // src/useCases/describeAnnouncement.js
42523
43093
  var DescribeAnnouncementCommand = class _DescribeAnnouncementCommand {
43094
+ static {
43095
+ __name(this, "DescribeAnnouncementCommand");
43096
+ }
42524
43097
  /**
42525
43098
  * @description
42526
43099
  * @constructor
@@ -42584,6 +43157,9 @@ var DescribeAnnouncementCommand = class _DescribeAnnouncementCommand {
42584
43157
 
42585
43158
  // src/useCases/describeCamera.js
42586
43159
  var DescribeCameraCommand = class _DescribeCameraCommand {
43160
+ static {
43161
+ __name(this, "DescribeCameraCommand");
43162
+ }
42587
43163
  /**
42588
43164
  * @description
42589
43165
  * @constructor
@@ -42647,6 +43223,9 @@ var DescribeCameraCommand = class _DescribeCameraCommand {
42647
43223
 
42648
43224
  // src/useCases/describeCategory.js
42649
43225
  var DescribeCategoryCommand = class _DescribeCategoryCommand {
43226
+ static {
43227
+ __name(this, "DescribeCategoryCommand");
43228
+ }
42650
43229
  /**
42651
43230
  * @description
42652
43231
  * @constructor
@@ -42710,6 +43289,9 @@ var DescribeCategoryCommand = class _DescribeCategoryCommand {
42710
43289
 
42711
43290
  // src/useCases/describeCourtesy.js
42712
43291
  var DescribeCourtesyCommand = class _DescribeCourtesyCommand {
43292
+ static {
43293
+ __name(this, "DescribeCourtesyCommand");
43294
+ }
42713
43295
  /**
42714
43296
  * @description
42715
43297
  * @constructor
@@ -42773,6 +43355,9 @@ var DescribeCourtesyCommand = class _DescribeCourtesyCommand {
42773
43355
 
42774
43356
  // src/useCases/describeDimmer.js
42775
43357
  var DescribeDimmerCommand = class _DescribeDimmerCommand {
43358
+ static {
43359
+ __name(this, "DescribeDimmerCommand");
43360
+ }
42776
43361
  /**
42777
43362
  * @description
42778
43363
  * @constructor
@@ -42836,6 +43421,9 @@ var DescribeDimmerCommand = class _DescribeDimmerCommand {
42836
43421
 
42837
43422
  // src/useCases/describeDiscoveredDevice.js
42838
43423
  var DescribeDiscoveredDeviceCommand = class _DescribeDiscoveredDeviceCommand {
43424
+ static {
43425
+ __name(this, "DescribeDiscoveredDeviceCommand");
43426
+ }
42839
43427
  /**
42840
43428
  * @description
42841
43429
  * @constructor
@@ -42899,6 +43487,9 @@ var DescribeDiscoveredDeviceCommand = class _DescribeDiscoveredDeviceCommand {
42899
43487
 
42900
43488
  // src/useCases/describeIssue.js
42901
43489
  var DescribeIssueCommand = class _DescribeIssueCommand {
43490
+ static {
43491
+ __name(this, "DescribeIssueCommand");
43492
+ }
42902
43493
  /**
42903
43494
  * @description
42904
43495
  * @constructor
@@ -42962,6 +43553,9 @@ var DescribeIssueCommand = class _DescribeIssueCommand {
42962
43553
 
42963
43554
  // src/useCases/describeLock.js
42964
43555
  var DescribeLockCommand = class _DescribeLockCommand {
43556
+ static {
43557
+ __name(this, "DescribeLockCommand");
43558
+ }
42965
43559
  /**
42966
43560
  * @description
42967
43561
  * @constructor
@@ -43025,6 +43619,9 @@ var DescribeLockCommand = class _DescribeLockCommand {
43025
43619
 
43026
43620
  // src/useCases/describeLockCredential.js
43027
43621
  var DescribeLockCredentialCommand = class _DescribeLockCredentialCommand {
43622
+ static {
43623
+ __name(this, "DescribeLockCredentialCommand");
43624
+ }
43028
43625
  /**
43029
43626
  * @description
43030
43627
  * @constructor
@@ -43088,6 +43685,9 @@ var DescribeLockCredentialCommand = class _DescribeLockCredentialCommand {
43088
43685
 
43089
43686
  // src/useCases/describeMediaSource.js
43090
43687
  var DescribeMediaSourceCommand = class _DescribeMediaSourceCommand {
43688
+ static {
43689
+ __name(this, "DescribeMediaSourceCommand");
43690
+ }
43091
43691
  /**
43092
43692
  * @description
43093
43693
  * @constructor
@@ -43151,6 +43751,9 @@ var DescribeMediaSourceCommand = class _DescribeMediaSourceCommand {
43151
43751
 
43152
43752
  // src/useCases/describeMyAuth.js
43153
43753
  var DescribeMyAuthCommand = class _DescribeMyAuthCommand {
43754
+ static {
43755
+ __name(this, "DescribeMyAuthCommand");
43756
+ }
43154
43757
  /**
43155
43758
  * @description
43156
43759
  * @constructor
@@ -43214,6 +43817,9 @@ var DescribeMyAuthCommand = class _DescribeMyAuthCommand {
43214
43817
 
43215
43818
  // src/useCases/describeMyMobileKeyApp.js
43216
43819
  var DescribeMyMobileKeyAppCommand = class _DescribeMyMobileKeyAppCommand {
43820
+ static {
43821
+ __name(this, "DescribeMyMobileKeyAppCommand");
43822
+ }
43217
43823
  /**
43218
43824
  * @description
43219
43825
  * @constructor
@@ -43277,6 +43883,9 @@ var DescribeMyMobileKeyAppCommand = class _DescribeMyMobileKeyAppCommand {
43277
43883
 
43278
43884
  // src/useCases/describeMyOrganization.js
43279
43885
  var DescribeMyOrganizationCommand = class _DescribeMyOrganizationCommand {
43886
+ static {
43887
+ __name(this, "DescribeMyOrganizationCommand");
43888
+ }
43280
43889
  /**
43281
43890
  * @description
43282
43891
  * @constructor
@@ -43340,6 +43949,9 @@ var DescribeMyOrganizationCommand = class _DescribeMyOrganizationCommand {
43340
43949
 
43341
43950
  // src/useCases/describeMyPasskeyRegistrations.js
43342
43951
  var DescribeMyPasskeyRegistrationsCommand = class _DescribeMyPasskeyRegistrationsCommand {
43952
+ static {
43953
+ __name(this, "DescribeMyPasskeyRegistrationsCommand");
43954
+ }
43343
43955
  /**
43344
43956
  * @description
43345
43957
  * @constructor
@@ -43403,6 +44015,9 @@ var DescribeMyPasskeyRegistrationsCommand = class _DescribeMyPasskeyRegistration
43403
44015
 
43404
44016
  // src/useCases/describeOrganization.js
43405
44017
  var DescribeOrganizationCommand = class _DescribeOrganizationCommand {
44018
+ static {
44019
+ __name(this, "DescribeOrganizationCommand");
44020
+ }
43406
44021
  /**
43407
44022
  * @description
43408
44023
  * @constructor
@@ -43466,6 +44081,9 @@ var DescribeOrganizationCommand = class _DescribeOrganizationCommand {
43466
44081
 
43467
44082
  // src/useCases/describePolicy.js
43468
44083
  var DescribePolicyCommand = class _DescribePolicyCommand {
44084
+ static {
44085
+ __name(this, "DescribePolicyCommand");
44086
+ }
43469
44087
  /**
43470
44088
  * @description
43471
44089
  * @constructor
@@ -43529,6 +44147,9 @@ var DescribePolicyCommand = class _DescribePolicyCommand {
43529
44147
 
43530
44148
  // src/useCases/describeProduct.js
43531
44149
  var DescribeProductCommand = class _DescribeProductCommand {
44150
+ static {
44151
+ __name(this, "DescribeProductCommand");
44152
+ }
43532
44153
  /**
43533
44154
  * @description
43534
44155
  * @constructor
@@ -43592,6 +44213,9 @@ var DescribeProductCommand = class _DescribeProductCommand {
43592
44213
 
43593
44214
  // src/useCases/describeProperty.js
43594
44215
  var DescribePropertyCommand = class _DescribePropertyCommand {
44216
+ static {
44217
+ __name(this, "DescribePropertyCommand");
44218
+ }
43595
44219
  /**
43596
44220
  * @description
43597
44221
  * @constructor
@@ -43655,6 +44279,9 @@ var DescribePropertyCommand = class _DescribePropertyCommand {
43655
44279
 
43656
44280
  // src/useCases/describeReservation.js
43657
44281
  var DescribeReservationCommand = class _DescribeReservationCommand {
44282
+ static {
44283
+ __name(this, "DescribeReservationCommand");
44284
+ }
43658
44285
  /**
43659
44286
  * @description
43660
44287
  * @constructor
@@ -43718,6 +44345,9 @@ var DescribeReservationCommand = class _DescribeReservationCommand {
43718
44345
 
43719
44346
  // src/useCases/describeReservationEarlyCheckInProducts.js
43720
44347
  var DescribeReservationEarlyCheckInProductsCommand = class _DescribeReservationEarlyCheckInProductsCommand {
44348
+ static {
44349
+ __name(this, "DescribeReservationEarlyCheckInProductsCommand");
44350
+ }
43721
44351
  /**
43722
44352
  * @description
43723
44353
  * @constructor
@@ -43781,6 +44411,9 @@ var DescribeReservationEarlyCheckInProductsCommand = class _DescribeReservationE
43781
44411
 
43782
44412
  // src/useCases/describeReservationLateCheckOutProducts.js
43783
44413
  var DescribeReservationLateCheckOutProductsCommand = class _DescribeReservationLateCheckOutProductsCommand {
44414
+ static {
44415
+ __name(this, "DescribeReservationLateCheckOutProductsCommand");
44416
+ }
43784
44417
  /**
43785
44418
  * @description
43786
44419
  * @constructor
@@ -43844,6 +44477,9 @@ var DescribeReservationLateCheckOutProductsCommand = class _DescribeReservationL
43844
44477
 
43845
44478
  // src/useCases/describeReservationPetProducts.js
43846
44479
  var DescribeReservationPetProductsCommand = class _DescribeReservationPetProductsCommand {
44480
+ static {
44481
+ __name(this, "DescribeReservationPetProductsCommand");
44482
+ }
43847
44483
  /**
43848
44484
  * @description
43849
44485
  * @constructor
@@ -43907,6 +44543,9 @@ var DescribeReservationPetProductsCommand = class _DescribeReservationPetProduct
43907
44543
 
43908
44544
  // src/useCases/describeReservationPromos.js
43909
44545
  var DescribeReservationPromosCommand = class _DescribeReservationPromosCommand {
44546
+ static {
44547
+ __name(this, "DescribeReservationPromosCommand");
44548
+ }
43910
44549
  /**
43911
44550
  * @description
43912
44551
  * @constructor
@@ -43970,6 +44609,9 @@ var DescribeReservationPromosCommand = class _DescribeReservationPromosCommand {
43970
44609
 
43971
44610
  // src/useCases/describeReservationRoomUpgrades.js
43972
44611
  var DescribeReservationRoomUpgradesCommand = class _DescribeReservationRoomUpgradesCommand {
44612
+ static {
44613
+ __name(this, "DescribeReservationRoomUpgradesCommand");
44614
+ }
43973
44615
  /**
43974
44616
  * @description
43975
44617
  * @constructor
@@ -44033,6 +44675,9 @@ var DescribeReservationRoomUpgradesCommand = class _DescribeReservationRoomUpgra
44033
44675
 
44034
44676
  // src/useCases/describeRoom.js
44035
44677
  var DescribeRoomCommand = class _DescribeRoomCommand {
44678
+ static {
44679
+ __name(this, "DescribeRoomCommand");
44680
+ }
44036
44681
  /**
44037
44682
  * @description
44038
44683
  * @constructor
@@ -44096,6 +44741,9 @@ var DescribeRoomCommand = class _DescribeRoomCommand {
44096
44741
 
44097
44742
  // src/useCases/describeSOS.js
44098
44743
  var DescribeSOSCommand = class _DescribeSOSCommand {
44744
+ static {
44745
+ __name(this, "DescribeSOSCommand");
44746
+ }
44099
44747
  /**
44100
44748
  * @description
44101
44749
  * @constructor
@@ -44159,6 +44807,9 @@ var DescribeSOSCommand = class _DescribeSOSCommand {
44159
44807
 
44160
44808
  // src/useCases/describeSelf.js
44161
44809
  var DescribeSelfCommand = class _DescribeSelfCommand {
44810
+ static {
44811
+ __name(this, "DescribeSelfCommand");
44812
+ }
44162
44813
  /**
44163
44814
  * @description
44164
44815
  * @constructor
@@ -44222,6 +44873,9 @@ var DescribeSelfCommand = class _DescribeSelfCommand {
44222
44873
 
44223
44874
  // src/useCases/describeSpace.js
44224
44875
  var DescribeSpaceCommand = class _DescribeSpaceCommand {
44876
+ static {
44877
+ __name(this, "DescribeSpaceCommand");
44878
+ }
44225
44879
  /**
44226
44880
  * @description
44227
44881
  * @constructor
@@ -44285,6 +44939,9 @@ var DescribeSpaceCommand = class _DescribeSpaceCommand {
44285
44939
 
44286
44940
  // src/useCases/describeSwitch.js
44287
44941
  var DescribeSwitchCommand = class _DescribeSwitchCommand {
44942
+ static {
44943
+ __name(this, "DescribeSwitchCommand");
44944
+ }
44288
44945
  /**
44289
44946
  * @description
44290
44947
  * @constructor
@@ -44348,6 +45005,9 @@ var DescribeSwitchCommand = class _DescribeSwitchCommand {
44348
45005
 
44349
45006
  // src/useCases/describeThermostat.js
44350
45007
  var DescribeThermostatCommand = class _DescribeThermostatCommand {
45008
+ static {
45009
+ __name(this, "DescribeThermostatCommand");
45010
+ }
44351
45011
  /**
44352
45012
  * @description
44353
45013
  * @constructor
@@ -44411,6 +45071,9 @@ var DescribeThermostatCommand = class _DescribeThermostatCommand {
44411
45071
 
44412
45072
  // src/useCases/describeTicket.js
44413
45073
  var DescribeTicketCommand = class _DescribeTicketCommand {
45074
+ static {
45075
+ __name(this, "DescribeTicketCommand");
45076
+ }
44414
45077
  /**
44415
45078
  * @description
44416
45079
  * @constructor
@@ -44474,6 +45137,9 @@ var DescribeTicketCommand = class _DescribeTicketCommand {
44474
45137
 
44475
45138
  // src/useCases/describeTicketStats.js
44476
45139
  var DescribeTicketStatsCommand = class _DescribeTicketStatsCommand {
45140
+ static {
45141
+ __name(this, "DescribeTicketStatsCommand");
45142
+ }
44477
45143
  /**
44478
45144
  * @description
44479
45145
  * @constructor
@@ -44537,6 +45203,9 @@ var DescribeTicketStatsCommand = class _DescribeTicketStatsCommand {
44537
45203
 
44538
45204
  // src/useCases/describeTimeSheet.js
44539
45205
  var DescribeTimeSheetCommand = class _DescribeTimeSheetCommand {
45206
+ static {
45207
+ __name(this, "DescribeTimeSheetCommand");
45208
+ }
44540
45209
  /**
44541
45210
  * @description
44542
45211
  * @constructor
@@ -44600,6 +45269,9 @@ var DescribeTimeSheetCommand = class _DescribeTimeSheetCommand {
44600
45269
 
44601
45270
  // src/useCases/describeTimeSheetStats.js
44602
45271
  var DescribeTimeSheetStatsCommand = class _DescribeTimeSheetStatsCommand {
45272
+ static {
45273
+ __name(this, "DescribeTimeSheetStatsCommand");
45274
+ }
44603
45275
  /**
44604
45276
  * @description
44605
45277
  * @constructor
@@ -44663,6 +45335,9 @@ var DescribeTimeSheetStatsCommand = class _DescribeTimeSheetStatsCommand {
44663
45335
 
44664
45336
  // src/useCases/describeUser.js
44665
45337
  var DescribeUserCommand = class _DescribeUserCommand {
45338
+ static {
45339
+ __name(this, "DescribeUserCommand");
45340
+ }
44666
45341
  /**
44667
45342
  * @description
44668
45343
  * @constructor
@@ -44726,6 +45401,9 @@ var DescribeUserCommand = class _DescribeUserCommand {
44726
45401
 
44727
45402
  // src/useCases/describeVendor.js
44728
45403
  var DescribeVendorCommand = class _DescribeVendorCommand {
45404
+ static {
45405
+ __name(this, "DescribeVendorCommand");
45406
+ }
44729
45407
  /**
44730
45408
  * @description
44731
45409
  * @constructor
@@ -44789,6 +45467,9 @@ var DescribeVendorCommand = class _DescribeVendorCommand {
44789
45467
 
44790
45468
  // src/useCases/describeWindowCovering.js
44791
45469
  var DescribeWindowCoveringCommand = class _DescribeWindowCoveringCommand {
45470
+ static {
45471
+ __name(this, "DescribeWindowCoveringCommand");
45472
+ }
44792
45473
  /**
44793
45474
  * @description
44794
45475
  * @constructor
@@ -44852,6 +45533,9 @@ var DescribeWindowCoveringCommand = class _DescribeWindowCoveringCommand {
44852
45533
 
44853
45534
  // src/useCases/discoverReservations.js
44854
45535
  var DiscoverReservationsCommand = class _DiscoverReservationsCommand {
45536
+ static {
45537
+ __name(this, "DiscoverReservationsCommand");
45538
+ }
44855
45539
  /**
44856
45540
  * @description
44857
45541
  * @constructor
@@ -44915,6 +45599,9 @@ var DiscoverReservationsCommand = class _DiscoverReservationsCommand {
44915
45599
 
44916
45600
  // src/useCases/emailUserAccountSetup.js
44917
45601
  var EmailUserAccountSetupCommand = class _EmailUserAccountSetupCommand {
45602
+ static {
45603
+ __name(this, "EmailUserAccountSetupCommand");
45604
+ }
44918
45605
  /**
44919
45606
  * @description
44920
45607
  * @constructor
@@ -44978,6 +45665,9 @@ var EmailUserAccountSetupCommand = class _EmailUserAccountSetupCommand {
44978
45665
 
44979
45666
  // src/useCases/finishRegisterPasskey.js
44980
45667
  var FinishRegisterPasskeyCommand = class _FinishRegisterPasskeyCommand {
45668
+ static {
45669
+ __name(this, "FinishRegisterPasskeyCommand");
45670
+ }
44981
45671
  /**
44982
45672
  * @description
44983
45673
  * @constructor
@@ -45041,6 +45731,9 @@ var FinishRegisterPasskeyCommand = class _FinishRegisterPasskeyCommand {
45041
45731
 
45042
45732
  // src/useCases/listAlarms.js
45043
45733
  var ListAlarmsCommand = class _ListAlarmsCommand {
45734
+ static {
45735
+ __name(this, "ListAlarmsCommand");
45736
+ }
45044
45737
  /**
45045
45738
  * @description
45046
45739
  * @constructor
@@ -45104,6 +45797,9 @@ var ListAlarmsCommand = class _ListAlarmsCommand {
45104
45797
 
45105
45798
  // src/useCases/listAnnouncements.js
45106
45799
  var ListAnnouncementsCommand = class _ListAnnouncementsCommand {
45800
+ static {
45801
+ __name(this, "ListAnnouncementsCommand");
45802
+ }
45107
45803
  /**
45108
45804
  * @description
45109
45805
  * @constructor
@@ -45167,6 +45863,9 @@ var ListAnnouncementsCommand = class _ListAnnouncementsCommand {
45167
45863
 
45168
45864
  // src/useCases/listCameras.js
45169
45865
  var ListCamerasCommand = class _ListCamerasCommand {
45866
+ static {
45867
+ __name(this, "ListCamerasCommand");
45868
+ }
45170
45869
  /**
45171
45870
  * @description
45172
45871
  * @constructor
@@ -45230,6 +45929,9 @@ var ListCamerasCommand = class _ListCamerasCommand {
45230
45929
 
45231
45930
  // src/useCases/listCategories.js
45232
45931
  var ListCategoriesCommand = class _ListCategoriesCommand {
45932
+ static {
45933
+ __name(this, "ListCategoriesCommand");
45934
+ }
45233
45935
  /**
45234
45936
  * @description
45235
45937
  * @constructor
@@ -45293,6 +45995,9 @@ var ListCategoriesCommand = class _ListCategoriesCommand {
45293
45995
 
45294
45996
  // src/useCases/listCourtesy.js
45295
45997
  var ListCourtesyCommand = class _ListCourtesyCommand {
45998
+ static {
45999
+ __name(this, "ListCourtesyCommand");
46000
+ }
45296
46001
  /**
45297
46002
  * @description
45298
46003
  * @constructor
@@ -45356,6 +46061,9 @@ var ListCourtesyCommand = class _ListCourtesyCommand {
45356
46061
 
45357
46062
  // src/useCases/listDimmers.js
45358
46063
  var ListDimmersCommand = class _ListDimmersCommand {
46064
+ static {
46065
+ __name(this, "ListDimmersCommand");
46066
+ }
45359
46067
  /**
45360
46068
  * @description
45361
46069
  * @constructor
@@ -45419,6 +46127,9 @@ var ListDimmersCommand = class _ListDimmersCommand {
45419
46127
 
45420
46128
  // src/useCases/listDiscoveredDevices.js
45421
46129
  var ListDiscoveredDevicesCommand = class _ListDiscoveredDevicesCommand {
46130
+ static {
46131
+ __name(this, "ListDiscoveredDevicesCommand");
46132
+ }
45422
46133
  /**
45423
46134
  * @description
45424
46135
  * @constructor
@@ -45482,6 +46193,9 @@ var ListDiscoveredDevicesCommand = class _ListDiscoveredDevicesCommand {
45482
46193
 
45483
46194
  // src/useCases/listIssues.js
45484
46195
  var ListIssuesCommand = class _ListIssuesCommand {
46196
+ static {
46197
+ __name(this, "ListIssuesCommand");
46198
+ }
45485
46199
  /**
45486
46200
  * @description
45487
46201
  * @constructor
@@ -45545,6 +46259,9 @@ var ListIssuesCommand = class _ListIssuesCommand {
45545
46259
 
45546
46260
  // src/useCases/listLocks.js
45547
46261
  var ListLocksCommand = class _ListLocksCommand {
46262
+ static {
46263
+ __name(this, "ListLocksCommand");
46264
+ }
45548
46265
  /**
45549
46266
  * @description
45550
46267
  * @constructor
@@ -45608,6 +46325,9 @@ var ListLocksCommand = class _ListLocksCommand {
45608
46325
 
45609
46326
  // src/useCases/listMediaSources.js
45610
46327
  var ListMediaSourcesCommand = class _ListMediaSourcesCommand {
46328
+ static {
46329
+ __name(this, "ListMediaSourcesCommand");
46330
+ }
45611
46331
  /**
45612
46332
  * @description
45613
46333
  * @constructor
@@ -45671,6 +46391,9 @@ var ListMediaSourcesCommand = class _ListMediaSourcesCommand {
45671
46391
 
45672
46392
  // src/useCases/listMyOrders.js
45673
46393
  var ListMyOrdersCommand = class _ListMyOrdersCommand {
46394
+ static {
46395
+ __name(this, "ListMyOrdersCommand");
46396
+ }
45674
46397
  /**
45675
46398
  * @description
45676
46399
  * @constructor
@@ -45734,6 +46457,9 @@ var ListMyOrdersCommand = class _ListMyOrdersCommand {
45734
46457
 
45735
46458
  // src/useCases/listMyProperties.js
45736
46459
  var ListMyPropertiesCommand = class _ListMyPropertiesCommand {
46460
+ static {
46461
+ __name(this, "ListMyPropertiesCommand");
46462
+ }
45737
46463
  /**
45738
46464
  * @description
45739
46465
  * @constructor
@@ -45797,6 +46523,9 @@ var ListMyPropertiesCommand = class _ListMyPropertiesCommand {
45797
46523
 
45798
46524
  // src/useCases/listMyReservations.js
45799
46525
  var ListMyReservationsCommand = class _ListMyReservationsCommand {
46526
+ static {
46527
+ __name(this, "ListMyReservationsCommand");
46528
+ }
45800
46529
  /**
45801
46530
  * @description
45802
46531
  * @constructor
@@ -45860,6 +46589,9 @@ var ListMyReservationsCommand = class _ListMyReservationsCommand {
45860
46589
 
45861
46590
  // src/useCases/listMySpaces.js
45862
46591
  var ListMySpacesCommand = class _ListMySpacesCommand {
46592
+ static {
46593
+ __name(this, "ListMySpacesCommand");
46594
+ }
45863
46595
  /**
45864
46596
  * @description
45865
46597
  * @constructor
@@ -45923,6 +46655,9 @@ var ListMySpacesCommand = class _ListMySpacesCommand {
45923
46655
 
45924
46656
  // src/useCases/listMyTickets.js
45925
46657
  var ListMyTicketsCommand = class _ListMyTicketsCommand {
46658
+ static {
46659
+ __name(this, "ListMyTicketsCommand");
46660
+ }
45926
46661
  /**
45927
46662
  * @description
45928
46663
  * @constructor
@@ -45986,6 +46721,9 @@ var ListMyTicketsCommand = class _ListMyTicketsCommand {
45986
46721
 
45987
46722
  // src/useCases/listMyTimeSheets.js
45988
46723
  var ListMyTimeSheetsCommand = class _ListMyTimeSheetsCommand {
46724
+ static {
46725
+ __name(this, "ListMyTimeSheetsCommand");
46726
+ }
45989
46727
  /**
45990
46728
  * @description
45991
46729
  * @constructor
@@ -46049,6 +46787,9 @@ var ListMyTimeSheetsCommand = class _ListMyTimeSheetsCommand {
46049
46787
 
46050
46788
  // src/useCases/listOrders.js
46051
46789
  var ListOrdersCommand = class _ListOrdersCommand {
46790
+ static {
46791
+ __name(this, "ListOrdersCommand");
46792
+ }
46052
46793
  /**
46053
46794
  * @description
46054
46795
  * @constructor
@@ -46112,6 +46853,9 @@ var ListOrdersCommand = class _ListOrdersCommand {
46112
46853
 
46113
46854
  // src/useCases/listOrganizations.js
46114
46855
  var ListOrganizationsCommand = class _ListOrganizationsCommand {
46856
+ static {
46857
+ __name(this, "ListOrganizationsCommand");
46858
+ }
46115
46859
  /**
46116
46860
  * @description
46117
46861
  * @constructor
@@ -46175,6 +46919,9 @@ var ListOrganizationsCommand = class _ListOrganizationsCommand {
46175
46919
 
46176
46920
  // src/useCases/listPolicies.js
46177
46921
  var ListPoliciesCommand = class _ListPoliciesCommand {
46922
+ static {
46923
+ __name(this, "ListPoliciesCommand");
46924
+ }
46178
46925
  /**
46179
46926
  * @description
46180
46927
  * @constructor
@@ -46238,6 +46985,9 @@ var ListPoliciesCommand = class _ListPoliciesCommand {
46238
46985
 
46239
46986
  // src/useCases/listProducts.js
46240
46987
  var ListProductsCommand = class _ListProductsCommand {
46988
+ static {
46989
+ __name(this, "ListProductsCommand");
46990
+ }
46241
46991
  /**
46242
46992
  * @description
46243
46993
  * @constructor
@@ -46301,6 +47051,9 @@ var ListProductsCommand = class _ListProductsCommand {
46301
47051
 
46302
47052
  // src/useCases/listProperties.js
46303
47053
  var ListPropertiesCommand = class _ListPropertiesCommand {
47054
+ static {
47055
+ __name(this, "ListPropertiesCommand");
47056
+ }
46304
47057
  /**
46305
47058
  * @description
46306
47059
  * @constructor
@@ -46364,6 +47117,9 @@ var ListPropertiesCommand = class _ListPropertiesCommand {
46364
47117
 
46365
47118
  // src/useCases/listReservations.js
46366
47119
  var ListReservationsCommand = class _ListReservationsCommand {
47120
+ static {
47121
+ __name(this, "ListReservationsCommand");
47122
+ }
46367
47123
  /**
46368
47124
  * @description
46369
47125
  * @constructor
@@ -46427,6 +47183,9 @@ var ListReservationsCommand = class _ListReservationsCommand {
46427
47183
 
46428
47184
  // src/useCases/listRooms.js
46429
47185
  var ListRoomsCommand = class _ListRoomsCommand {
47186
+ static {
47187
+ __name(this, "ListRoomsCommand");
47188
+ }
46430
47189
  /**
46431
47190
  * @description
46432
47191
  * @constructor
@@ -46490,6 +47249,9 @@ var ListRoomsCommand = class _ListRoomsCommand {
46490
47249
 
46491
47250
  // src/useCases/listRoomsInSpace.js
46492
47251
  var ListRoomsInSpaceCommand = class _ListRoomsInSpaceCommand {
47252
+ static {
47253
+ __name(this, "ListRoomsInSpaceCommand");
47254
+ }
46493
47255
  /**
46494
47256
  * @description
46495
47257
  * @constructor
@@ -46553,6 +47315,9 @@ var ListRoomsInSpaceCommand = class _ListRoomsInSpaceCommand {
46553
47315
 
46554
47316
  // src/useCases/listScenes.js
46555
47317
  var ListScenesCommand = class _ListScenesCommand {
47318
+ static {
47319
+ __name(this, "ListScenesCommand");
47320
+ }
46556
47321
  /**
46557
47322
  * @description
46558
47323
  * @constructor
@@ -46616,6 +47381,9 @@ var ListScenesCommand = class _ListScenesCommand {
46616
47381
 
46617
47382
  // src/useCases/listSpaces.js
46618
47383
  var ListSpacesCommand = class _ListSpacesCommand {
47384
+ static {
47385
+ __name(this, "ListSpacesCommand");
47386
+ }
46619
47387
  /**
46620
47388
  * @description
46621
47389
  * @constructor
@@ -46679,6 +47447,9 @@ var ListSpacesCommand = class _ListSpacesCommand {
46679
47447
 
46680
47448
  // src/useCases/listSwitches.js
46681
47449
  var ListSwitchesCommand = class _ListSwitchesCommand {
47450
+ static {
47451
+ __name(this, "ListSwitchesCommand");
47452
+ }
46682
47453
  /**
46683
47454
  * @description
46684
47455
  * @constructor
@@ -46742,6 +47513,9 @@ var ListSwitchesCommand = class _ListSwitchesCommand {
46742
47513
 
46743
47514
  // src/useCases/listTeam.js
46744
47515
  var ListTeamCommand = class _ListTeamCommand {
47516
+ static {
47517
+ __name(this, "ListTeamCommand");
47518
+ }
46745
47519
  /**
46746
47520
  * @description
46747
47521
  * @constructor
@@ -46805,6 +47579,9 @@ var ListTeamCommand = class _ListTeamCommand {
46805
47579
 
46806
47580
  // src/useCases/listThermostats.js
46807
47581
  var ListThermostatsCommand = class _ListThermostatsCommand {
47582
+ static {
47583
+ __name(this, "ListThermostatsCommand");
47584
+ }
46808
47585
  /**
46809
47586
  * @description
46810
47587
  * @constructor
@@ -46868,6 +47645,9 @@ var ListThermostatsCommand = class _ListThermostatsCommand {
46868
47645
 
46869
47646
  // src/useCases/listTickets.js
46870
47647
  var ListTicketsCommand = class _ListTicketsCommand {
47648
+ static {
47649
+ __name(this, "ListTicketsCommand");
47650
+ }
46871
47651
  /**
46872
47652
  * @description
46873
47653
  * @constructor
@@ -46931,6 +47711,9 @@ var ListTicketsCommand = class _ListTicketsCommand {
46931
47711
 
46932
47712
  // src/useCases/listTimeSheets.js
46933
47713
  var ListTimeSheetsCommand = class _ListTimeSheetsCommand {
47714
+ static {
47715
+ __name(this, "ListTimeSheetsCommand");
47716
+ }
46934
47717
  /**
46935
47718
  * @description
46936
47719
  * @constructor
@@ -46994,6 +47777,9 @@ var ListTimeSheetsCommand = class _ListTimeSheetsCommand {
46994
47777
 
46995
47778
  // src/useCases/listUserMobileKeys.js
46996
47779
  var ListUserMobileKeysCommand = class _ListUserMobileKeysCommand {
47780
+ static {
47781
+ __name(this, "ListUserMobileKeysCommand");
47782
+ }
46997
47783
  /**
46998
47784
  * @description
46999
47785
  * @constructor
@@ -47057,6 +47843,9 @@ var ListUserMobileKeysCommand = class _ListUserMobileKeysCommand {
47057
47843
 
47058
47844
  // src/useCases/listUserOrders.js
47059
47845
  var ListUserOrdersCommand = class _ListUserOrdersCommand {
47846
+ static {
47847
+ __name(this, "ListUserOrdersCommand");
47848
+ }
47060
47849
  /**
47061
47850
  * @description
47062
47851
  * @constructor
@@ -47120,6 +47909,9 @@ var ListUserOrdersCommand = class _ListUserOrdersCommand {
47120
47909
 
47121
47910
  // src/useCases/listUserReservations.js
47122
47911
  var ListUserReservationsCommand = class _ListUserReservationsCommand {
47912
+ static {
47913
+ __name(this, "ListUserReservationsCommand");
47914
+ }
47123
47915
  /**
47124
47916
  * @description
47125
47917
  * @constructor
@@ -47183,6 +47975,9 @@ var ListUserReservationsCommand = class _ListUserReservationsCommand {
47183
47975
 
47184
47976
  // src/useCases/listUserSpaces.js
47185
47977
  var ListUserSpacesCommand = class _ListUserSpacesCommand {
47978
+ static {
47979
+ __name(this, "ListUserSpacesCommand");
47980
+ }
47186
47981
  /**
47187
47982
  * @description
47188
47983
  * @constructor
@@ -47246,6 +48041,9 @@ var ListUserSpacesCommand = class _ListUserSpacesCommand {
47246
48041
 
47247
48042
  // src/useCases/listUsers.js
47248
48043
  var ListUsersCommand = class _ListUsersCommand {
48044
+ static {
48045
+ __name(this, "ListUsersCommand");
48046
+ }
47249
48047
  /**
47250
48048
  * @description
47251
48049
  * @constructor
@@ -47309,6 +48107,9 @@ var ListUsersCommand = class _ListUsersCommand {
47309
48107
 
47310
48108
  // src/useCases/listVendors.js
47311
48109
  var ListVendorsCommand = class _ListVendorsCommand {
48110
+ static {
48111
+ __name(this, "ListVendorsCommand");
48112
+ }
47312
48113
  /**
47313
48114
  * @description
47314
48115
  * @constructor
@@ -47372,6 +48173,9 @@ var ListVendorsCommand = class _ListVendorsCommand {
47372
48173
 
47373
48174
  // src/useCases/listWindowCoverings.js
47374
48175
  var ListWindowCoveringsCommand = class _ListWindowCoveringsCommand {
48176
+ static {
48177
+ __name(this, "ListWindowCoveringsCommand");
48178
+ }
47375
48179
  /**
47376
48180
  * @description
47377
48181
  * @constructor
@@ -47435,6 +48239,9 @@ var ListWindowCoveringsCommand = class _ListWindowCoveringsCommand {
47435
48239
 
47436
48240
  // src/useCases/loginFinish.js
47437
48241
  var LoginFinishCommand = class _LoginFinishCommand {
48242
+ static {
48243
+ __name(this, "LoginFinishCommand");
48244
+ }
47438
48245
  /**
47439
48246
  * @description
47440
48247
  * @constructor
@@ -47498,6 +48305,9 @@ var LoginFinishCommand = class _LoginFinishCommand {
47498
48305
 
47499
48306
  // src/useCases/loginStart.js
47500
48307
  var LoginStartCommand = class _LoginStartCommand {
48308
+ static {
48309
+ __name(this, "LoginStartCommand");
48310
+ }
47501
48311
  /**
47502
48312
  * @description
47503
48313
  * @constructor
@@ -47561,6 +48371,9 @@ var LoginStartCommand = class _LoginStartCommand {
47561
48371
 
47562
48372
  // src/useCases/logoutSelf.js
47563
48373
  var LogoutSelfCommand = class _LogoutSelfCommand {
48374
+ static {
48375
+ __name(this, "LogoutSelfCommand");
48376
+ }
47564
48377
  /**
47565
48378
  * @description
47566
48379
  * @constructor
@@ -47624,6 +48437,9 @@ var LogoutSelfCommand = class _LogoutSelfCommand {
47624
48437
 
47625
48438
  // src/useCases/logoutUser.js
47626
48439
  var LogoutUserCommand = class _LogoutUserCommand {
48440
+ static {
48441
+ __name(this, "LogoutUserCommand");
48442
+ }
47627
48443
  /**
47628
48444
  * @description
47629
48445
  * @constructor
@@ -47687,6 +48503,9 @@ var LogoutUserCommand = class _LogoutUserCommand {
47687
48503
 
47688
48504
  // src/useCases/matchUserIdentification.js
47689
48505
  var MatchUserIdentificationCommand = class _MatchUserIdentificationCommand {
48506
+ static {
48507
+ __name(this, "MatchUserIdentificationCommand");
48508
+ }
47690
48509
  /**
47691
48510
  * @description
47692
48511
  * @constructor
@@ -47750,6 +48569,9 @@ var MatchUserIdentificationCommand = class _MatchUserIdentificationCommand {
47750
48569
 
47751
48570
  // src/useCases/oCRDocument.js
47752
48571
  var OCRDocumentCommand = class _OCRDocumentCommand {
48572
+ static {
48573
+ __name(this, "OCRDocumentCommand");
48574
+ }
47753
48575
  /**
47754
48576
  * @description
47755
48577
  * @constructor
@@ -47813,6 +48635,9 @@ var OCRDocumentCommand = class _OCRDocumentCommand {
47813
48635
 
47814
48636
  // src/useCases/purchaseReservationEarlyCheckInProducts.js
47815
48637
  var PurchaseReservationEarlyCheckInProductsCommand = class _PurchaseReservationEarlyCheckInProductsCommand {
48638
+ static {
48639
+ __name(this, "PurchaseReservationEarlyCheckInProductsCommand");
48640
+ }
47816
48641
  /**
47817
48642
  * @description
47818
48643
  * @constructor
@@ -47876,6 +48701,9 @@ var PurchaseReservationEarlyCheckInProductsCommand = class _PurchaseReservationE
47876
48701
 
47877
48702
  // src/useCases/purchaseReservationLateCheckOutProducts.js
47878
48703
  var PurchaseReservationLateCheckOutProductsCommand = class _PurchaseReservationLateCheckOutProductsCommand {
48704
+ static {
48705
+ __name(this, "PurchaseReservationLateCheckOutProductsCommand");
48706
+ }
47879
48707
  /**
47880
48708
  * @description
47881
48709
  * @constructor
@@ -47939,6 +48767,9 @@ var PurchaseReservationLateCheckOutProductsCommand = class _PurchaseReservationL
47939
48767
 
47940
48768
  // src/useCases/purchaseReservationPetProducts.js
47941
48769
  var PurchaseReservationPetProductsCommand = class _PurchaseReservationPetProductsCommand {
48770
+ static {
48771
+ __name(this, "PurchaseReservationPetProductsCommand");
48772
+ }
47942
48773
  /**
47943
48774
  * @description
47944
48775
  * @constructor
@@ -48002,6 +48833,9 @@ var PurchaseReservationPetProductsCommand = class _PurchaseReservationPetProduct
48002
48833
 
48003
48834
  // src/useCases/purchaseReservationPromos.js
48004
48835
  var PurchaseReservationPromosCommand = class _PurchaseReservationPromosCommand {
48836
+ static {
48837
+ __name(this, "PurchaseReservationPromosCommand");
48838
+ }
48005
48839
  /**
48006
48840
  * @description
48007
48841
  * @constructor
@@ -48065,6 +48899,9 @@ var PurchaseReservationPromosCommand = class _PurchaseReservationPromosCommand {
48065
48899
 
48066
48900
  // src/useCases/purchaseReservationRoomUpgrades.js
48067
48901
  var PurchaseReservationRoomUpgradesCommand = class _PurchaseReservationRoomUpgradesCommand {
48902
+ static {
48903
+ __name(this, "PurchaseReservationRoomUpgradesCommand");
48904
+ }
48068
48905
  /**
48069
48906
  * @description
48070
48907
  * @constructor
@@ -48128,6 +48965,9 @@ var PurchaseReservationRoomUpgradesCommand = class _PurchaseReservationRoomUpgra
48128
48965
 
48129
48966
  // src/useCases/requestLoginToken.js
48130
48967
  var RequestLoginTokenCommand = class _RequestLoginTokenCommand {
48968
+ static {
48969
+ __name(this, "RequestLoginTokenCommand");
48970
+ }
48131
48971
  /**
48132
48972
  * @description
48133
48973
  * @constructor
@@ -48191,6 +49031,9 @@ var RequestLoginTokenCommand = class _RequestLoginTokenCommand {
48191
49031
 
48192
49032
  // src/useCases/sendCheckInSMS.js
48193
49033
  var SendCheckInSMSCommand = class _SendCheckInSMSCommand {
49034
+ static {
49035
+ __name(this, "SendCheckInSMSCommand");
49036
+ }
48194
49037
  /**
48195
49038
  * @description
48196
49039
  * @constructor
@@ -48254,6 +49097,9 @@ var SendCheckInSMSCommand = class _SendCheckInSMSCommand {
48254
49097
 
48255
49098
  // src/useCases/sendCheckOutSMS.js
48256
49099
  var SendCheckOutSMSCommand = class _SendCheckOutSMSCommand {
49100
+ static {
49101
+ __name(this, "SendCheckOutSMSCommand");
49102
+ }
48257
49103
  /**
48258
49104
  * @description
48259
49105
  * @constructor
@@ -48317,6 +49163,9 @@ var SendCheckOutSMSCommand = class _SendCheckOutSMSCommand {
48317
49163
 
48318
49164
  // src/useCases/sendPreArrivalEmail.js
48319
49165
  var SendPreArrivalEmailCommand = class _SendPreArrivalEmailCommand {
49166
+ static {
49167
+ __name(this, "SendPreArrivalEmailCommand");
49168
+ }
48320
49169
  /**
48321
49170
  * @description
48322
49171
  * @constructor
@@ -48380,6 +49229,9 @@ var SendPreArrivalEmailCommand = class _SendPreArrivalEmailCommand {
48380
49229
 
48381
49230
  // src/useCases/sendPreArrivalSMS.js
48382
49231
  var SendPreArrivalSMSCommand = class _SendPreArrivalSMSCommand {
49232
+ static {
49233
+ __name(this, "SendPreArrivalSMSCommand");
49234
+ }
48383
49235
  /**
48384
49236
  * @description
48385
49237
  * @constructor
@@ -48443,6 +49295,9 @@ var SendPreArrivalSMSCommand = class _SendPreArrivalSMSCommand {
48443
49295
 
48444
49296
  // src/useCases/sendRoomControlSMS.js
48445
49297
  var SendRoomControlSMSCommand = class _SendRoomControlSMSCommand {
49298
+ static {
49299
+ __name(this, "SendRoomControlSMSCommand");
49300
+ }
48446
49301
  /**
48447
49302
  * @description
48448
49303
  * @constructor
@@ -48506,6 +49361,9 @@ var SendRoomControlSMSCommand = class _SendRoomControlSMSCommand {
48506
49361
 
48507
49362
  // src/useCases/sendVerificationCode.js
48508
49363
  var SendVerificationCodeCommand = class _SendVerificationCodeCommand {
49364
+ static {
49365
+ __name(this, "SendVerificationCodeCommand");
49366
+ }
48509
49367
  /**
48510
49368
  * @description
48511
49369
  * @constructor
@@ -48569,6 +49427,9 @@ var SendVerificationCodeCommand = class _SendVerificationCodeCommand {
48569
49427
 
48570
49428
  // src/useCases/setAlarm.js
48571
49429
  var SetAlarmCommand = class _SetAlarmCommand {
49430
+ static {
49431
+ __name(this, "SetAlarmCommand");
49432
+ }
48572
49433
  /**
48573
49434
  * @description
48574
49435
  * @constructor
@@ -48632,6 +49493,9 @@ var SetAlarmCommand = class _SetAlarmCommand {
48632
49493
 
48633
49494
  // src/useCases/setCamera.js
48634
49495
  var SetCameraCommand = class _SetCameraCommand {
49496
+ static {
49497
+ __name(this, "SetCameraCommand");
49498
+ }
48635
49499
  /**
48636
49500
  * @description
48637
49501
  * @constructor
@@ -48695,6 +49559,9 @@ var SetCameraCommand = class _SetCameraCommand {
48695
49559
 
48696
49560
  // src/useCases/setCourtesy.js
48697
49561
  var SetCourtesyCommand = class _SetCourtesyCommand {
49562
+ static {
49563
+ __name(this, "SetCourtesyCommand");
49564
+ }
48698
49565
  /**
48699
49566
  * @description
48700
49567
  * @constructor
@@ -48758,6 +49625,9 @@ var SetCourtesyCommand = class _SetCourtesyCommand {
48758
49625
 
48759
49626
  // src/useCases/setDimmer.js
48760
49627
  var SetDimmerCommand = class _SetDimmerCommand {
49628
+ static {
49629
+ __name(this, "SetDimmerCommand");
49630
+ }
48761
49631
  /**
48762
49632
  * @description
48763
49633
  * @constructor
@@ -48821,6 +49691,9 @@ var SetDimmerCommand = class _SetDimmerCommand {
48821
49691
 
48822
49692
  // src/useCases/setLock.js
48823
49693
  var SetLockCommand = class _SetLockCommand {
49694
+ static {
49695
+ __name(this, "SetLockCommand");
49696
+ }
48824
49697
  /**
48825
49698
  * @description
48826
49699
  * @constructor
@@ -48884,6 +49757,9 @@ var SetLockCommand = class _SetLockCommand {
48884
49757
 
48885
49758
  // src/useCases/setMediaSource.js
48886
49759
  var SetMediaSourceCommand = class _SetMediaSourceCommand {
49760
+ static {
49761
+ __name(this, "SetMediaSourceCommand");
49762
+ }
48887
49763
  /**
48888
49764
  * @description
48889
49765
  * @constructor
@@ -48947,6 +49823,9 @@ var SetMediaSourceCommand = class _SetMediaSourceCommand {
48947
49823
 
48948
49824
  // src/useCases/setRoomScene.js
48949
49825
  var SetRoomSceneCommand = class _SetRoomSceneCommand {
49826
+ static {
49827
+ __name(this, "SetRoomSceneCommand");
49828
+ }
48950
49829
  /**
48951
49830
  * @description
48952
49831
  * @constructor
@@ -49010,6 +49889,9 @@ var SetRoomSceneCommand = class _SetRoomSceneCommand {
49010
49889
 
49011
49890
  // src/useCases/setScene.js
49012
49891
  var SetSceneCommand = class _SetSceneCommand {
49892
+ static {
49893
+ __name(this, "SetSceneCommand");
49894
+ }
49013
49895
  /**
49014
49896
  * @description
49015
49897
  * @constructor
@@ -49073,6 +49955,9 @@ var SetSceneCommand = class _SetSceneCommand {
49073
49955
 
49074
49956
  // src/useCases/setSpaceScene.js
49075
49957
  var SetSpaceSceneCommand = class _SetSpaceSceneCommand {
49958
+ static {
49959
+ __name(this, "SetSpaceSceneCommand");
49960
+ }
49076
49961
  /**
49077
49962
  * @description
49078
49963
  * @constructor
@@ -49136,6 +50021,9 @@ var SetSpaceSceneCommand = class _SetSpaceSceneCommand {
49136
50021
 
49137
50022
  // src/useCases/setSwitch.js
49138
50023
  var SetSwitchCommand = class _SetSwitchCommand {
50024
+ static {
50025
+ __name(this, "SetSwitchCommand");
50026
+ }
49139
50027
  /**
49140
50028
  * @description
49141
50029
  * @constructor
@@ -49199,6 +50087,9 @@ var SetSwitchCommand = class _SetSwitchCommand {
49199
50087
 
49200
50088
  // src/useCases/setThermostat.js
49201
50089
  var SetThermostatCommand = class _SetThermostatCommand {
50090
+ static {
50091
+ __name(this, "SetThermostatCommand");
50092
+ }
49202
50093
  /**
49203
50094
  * @description
49204
50095
  * @constructor
@@ -49262,6 +50153,9 @@ var SetThermostatCommand = class _SetThermostatCommand {
49262
50153
 
49263
50154
  // src/useCases/setWindowCovering.js
49264
50155
  var SetWindowCoveringCommand = class _SetWindowCoveringCommand {
50156
+ static {
50157
+ __name(this, "SetWindowCoveringCommand");
50158
+ }
49265
50159
  /**
49266
50160
  * @description
49267
50161
  * @constructor
@@ -49325,6 +50219,9 @@ var SetWindowCoveringCommand = class _SetWindowCoveringCommand {
49325
50219
 
49326
50220
  // src/useCases/startRegisterPasskey.js
49327
50221
  var StartRegisterPasskeyCommand = class _StartRegisterPasskeyCommand {
50222
+ static {
50223
+ __name(this, "StartRegisterPasskeyCommand");
50224
+ }
49328
50225
  /**
49329
50226
  * @description
49330
50227
  * @constructor
@@ -49388,6 +50285,9 @@ var StartRegisterPasskeyCommand = class _StartRegisterPasskeyCommand {
49388
50285
 
49389
50286
  // src/useCases/startSOS.js
49390
50287
  var StartSOSCommand = class _StartSOSCommand {
50288
+ static {
50289
+ __name(this, "StartSOSCommand");
50290
+ }
49391
50291
  /**
49392
50292
  * @description
49393
50293
  * @constructor
@@ -49451,6 +50351,9 @@ var StartSOSCommand = class _StartSOSCommand {
49451
50351
 
49452
50352
  // src/useCases/stopSOS.js
49453
50353
  var StopSOSCommand = class _StopSOSCommand {
50354
+ static {
50355
+ __name(this, "StopSOSCommand");
50356
+ }
49454
50357
  /**
49455
50358
  * @description
49456
50359
  * @constructor
@@ -49514,6 +50417,9 @@ var StopSOSCommand = class _StopSOSCommand {
49514
50417
 
49515
50418
  // src/useCases/tipUser.js
49516
50419
  var TipUserCommand = class _TipUserCommand {
50420
+ static {
50421
+ __name(this, "TipUserCommand");
50422
+ }
49517
50423
  /**
49518
50424
  * @description
49519
50425
  * @constructor
@@ -49577,6 +50483,9 @@ var TipUserCommand = class _TipUserCommand {
49577
50483
 
49578
50484
  // src/useCases/updateAlarm.js
49579
50485
  var UpdateAlarmCommand = class _UpdateAlarmCommand {
50486
+ static {
50487
+ __name(this, "UpdateAlarmCommand");
50488
+ }
49580
50489
  /**
49581
50490
  * @description
49582
50491
  * @constructor
@@ -49640,6 +50549,9 @@ var UpdateAlarmCommand = class _UpdateAlarmCommand {
49640
50549
 
49641
50550
  // src/useCases/updateAnnouncement.js
49642
50551
  var UpdateAnnouncementCommand = class _UpdateAnnouncementCommand {
50552
+ static {
50553
+ __name(this, "UpdateAnnouncementCommand");
50554
+ }
49643
50555
  /**
49644
50556
  * @description
49645
50557
  * @constructor
@@ -49703,6 +50615,9 @@ var UpdateAnnouncementCommand = class _UpdateAnnouncementCommand {
49703
50615
 
49704
50616
  // src/useCases/updateCamera.js
49705
50617
  var UpdateCameraCommand = class _UpdateCameraCommand {
50618
+ static {
50619
+ __name(this, "UpdateCameraCommand");
50620
+ }
49706
50621
  /**
49707
50622
  * @description
49708
50623
  * @constructor
@@ -49766,6 +50681,9 @@ var UpdateCameraCommand = class _UpdateCameraCommand {
49766
50681
 
49767
50682
  // src/useCases/updateCategory.js
49768
50683
  var UpdateCategoryCommand = class _UpdateCategoryCommand {
50684
+ static {
50685
+ __name(this, "UpdateCategoryCommand");
50686
+ }
49769
50687
  /**
49770
50688
  * @description
49771
50689
  * @constructor
@@ -49829,6 +50747,9 @@ var UpdateCategoryCommand = class _UpdateCategoryCommand {
49829
50747
 
49830
50748
  // src/useCases/updateCourtesy.js
49831
50749
  var UpdateCourtesyCommand = class _UpdateCourtesyCommand {
50750
+ static {
50751
+ __name(this, "UpdateCourtesyCommand");
50752
+ }
49832
50753
  /**
49833
50754
  * @description
49834
50755
  * @constructor
@@ -49892,6 +50813,9 @@ var UpdateCourtesyCommand = class _UpdateCourtesyCommand {
49892
50813
 
49893
50814
  // src/useCases/updateDimmer.js
49894
50815
  var UpdateDimmerCommand = class _UpdateDimmerCommand {
50816
+ static {
50817
+ __name(this, "UpdateDimmerCommand");
50818
+ }
49895
50819
  /**
49896
50820
  * @description
49897
50821
  * @constructor
@@ -49955,6 +50879,9 @@ var UpdateDimmerCommand = class _UpdateDimmerCommand {
49955
50879
 
49956
50880
  // src/useCases/updateDiscoveredDevice.js
49957
50881
  var UpdateDiscoveredDeviceCommand = class _UpdateDiscoveredDeviceCommand {
50882
+ static {
50883
+ __name(this, "UpdateDiscoveredDeviceCommand");
50884
+ }
49958
50885
  /**
49959
50886
  * @description
49960
50887
  * @constructor
@@ -50018,6 +50945,9 @@ var UpdateDiscoveredDeviceCommand = class _UpdateDiscoveredDeviceCommand {
50018
50945
 
50019
50946
  // src/useCases/updateIssue.js
50020
50947
  var UpdateIssueCommand = class _UpdateIssueCommand {
50948
+ static {
50949
+ __name(this, "UpdateIssueCommand");
50950
+ }
50021
50951
  /**
50022
50952
  * @description
50023
50953
  * @constructor
@@ -50081,6 +51011,9 @@ var UpdateIssueCommand = class _UpdateIssueCommand {
50081
51011
 
50082
51012
  // src/useCases/updateLock.js
50083
51013
  var UpdateLockCommand = class _UpdateLockCommand {
51014
+ static {
51015
+ __name(this, "UpdateLockCommand");
51016
+ }
50084
51017
  /**
50085
51018
  * @description
50086
51019
  * @constructor
@@ -50144,6 +51077,9 @@ var UpdateLockCommand = class _UpdateLockCommand {
50144
51077
 
50145
51078
  // src/useCases/updateMediaSource.js
50146
51079
  var UpdateMediaSourceCommand = class _UpdateMediaSourceCommand {
51080
+ static {
51081
+ __name(this, "UpdateMediaSourceCommand");
51082
+ }
50147
51083
  /**
50148
51084
  * @description
50149
51085
  * @constructor
@@ -50207,6 +51143,9 @@ var UpdateMediaSourceCommand = class _UpdateMediaSourceCommand {
50207
51143
 
50208
51144
  // src/useCases/updateMessageReadStatus.js
50209
51145
  var UpdateMessageReadStatusCommand = class _UpdateMessageReadStatusCommand {
51146
+ static {
51147
+ __name(this, "UpdateMessageReadStatusCommand");
51148
+ }
50210
51149
  /**
50211
51150
  * @description
50212
51151
  * @constructor
@@ -50270,6 +51209,9 @@ var UpdateMessageReadStatusCommand = class _UpdateMessageReadStatusCommand {
50270
51209
 
50271
51210
  // src/useCases/updateOrganization.js
50272
51211
  var UpdateOrganizationCommand = class _UpdateOrganizationCommand {
51212
+ static {
51213
+ __name(this, "UpdateOrganizationCommand");
51214
+ }
50273
51215
  /**
50274
51216
  * @description
50275
51217
  * @constructor
@@ -50333,6 +51275,9 @@ var UpdateOrganizationCommand = class _UpdateOrganizationCommand {
50333
51275
 
50334
51276
  // src/useCases/updatePolicy.js
50335
51277
  var UpdatePolicyCommand = class _UpdatePolicyCommand {
51278
+ static {
51279
+ __name(this, "UpdatePolicyCommand");
51280
+ }
50336
51281
  /**
50337
51282
  * @description
50338
51283
  * @constructor
@@ -50396,6 +51341,9 @@ var UpdatePolicyCommand = class _UpdatePolicyCommand {
50396
51341
 
50397
51342
  // src/useCases/updateProperty.js
50398
51343
  var UpdatePropertyCommand = class _UpdatePropertyCommand {
51344
+ static {
51345
+ __name(this, "UpdatePropertyCommand");
51346
+ }
50399
51347
  /**
50400
51348
  * @description
50401
51349
  * @constructor
@@ -50459,6 +51407,9 @@ var UpdatePropertyCommand = class _UpdatePropertyCommand {
50459
51407
 
50460
51408
  // src/useCases/updatePropertySettings.js
50461
51409
  var UpdatePropertySettingsCommand = class _UpdatePropertySettingsCommand {
51410
+ static {
51411
+ __name(this, "UpdatePropertySettingsCommand");
51412
+ }
50462
51413
  /**
50463
51414
  * @description
50464
51415
  * @constructor
@@ -50522,6 +51473,9 @@ var UpdatePropertySettingsCommand = class _UpdatePropertySettingsCommand {
50522
51473
 
50523
51474
  // src/useCases/updateReservation.js
50524
51475
  var UpdateReservationCommand = class _UpdateReservationCommand {
51476
+ static {
51477
+ __name(this, "UpdateReservationCommand");
51478
+ }
50525
51479
  /**
50526
51480
  * @description
50527
51481
  * @constructor
@@ -50585,6 +51539,9 @@ var UpdateReservationCommand = class _UpdateReservationCommand {
50585
51539
 
50586
51540
  // src/useCases/updateReservationExpectedArrivalTime.js
50587
51541
  var UpdateReservationExpectedArrivalTimeCommand = class _UpdateReservationExpectedArrivalTimeCommand {
51542
+ static {
51543
+ __name(this, "UpdateReservationExpectedArrivalTimeCommand");
51544
+ }
50588
51545
  /**
50589
51546
  * @description
50590
51547
  * @constructor
@@ -50648,6 +51605,9 @@ var UpdateReservationExpectedArrivalTimeCommand = class _UpdateReservationExpect
50648
51605
 
50649
51606
  // src/useCases/updateRoom.js
50650
51607
  var UpdateRoomCommand = class _UpdateRoomCommand {
51608
+ static {
51609
+ __name(this, "UpdateRoomCommand");
51610
+ }
50651
51611
  /**
50652
51612
  * @description
50653
51613
  * @constructor
@@ -50711,6 +51671,9 @@ var UpdateRoomCommand = class _UpdateRoomCommand {
50711
51671
 
50712
51672
  // src/useCases/updateSelf.js
50713
51673
  var UpdateSelfCommand = class _UpdateSelfCommand {
51674
+ static {
51675
+ __name(this, "UpdateSelfCommand");
51676
+ }
50714
51677
  /**
50715
51678
  * @description
50716
51679
  * @constructor
@@ -50774,6 +51737,9 @@ var UpdateSelfCommand = class _UpdateSelfCommand {
50774
51737
 
50775
51738
  // src/useCases/updateSpace.js
50776
51739
  var UpdateSpaceCommand = class _UpdateSpaceCommand {
51740
+ static {
51741
+ __name(this, "UpdateSpaceCommand");
51742
+ }
50777
51743
  /**
50778
51744
  * @description
50779
51745
  * @constructor
@@ -50837,6 +51803,9 @@ var UpdateSpaceCommand = class _UpdateSpaceCommand {
50837
51803
 
50838
51804
  // src/useCases/updateSwitch.js
50839
51805
  var UpdateSwitchCommand = class _UpdateSwitchCommand {
51806
+ static {
51807
+ __name(this, "UpdateSwitchCommand");
51808
+ }
50840
51809
  /**
50841
51810
  * @description
50842
51811
  * @constructor
@@ -50900,6 +51869,9 @@ var UpdateSwitchCommand = class _UpdateSwitchCommand {
50900
51869
 
50901
51870
  // src/useCases/updateThermostat.js
50902
51871
  var UpdateThermostatCommand = class _UpdateThermostatCommand {
51872
+ static {
51873
+ __name(this, "UpdateThermostatCommand");
51874
+ }
50903
51875
  /**
50904
51876
  * @description
50905
51877
  * @constructor
@@ -50963,6 +51935,9 @@ var UpdateThermostatCommand = class _UpdateThermostatCommand {
50963
51935
 
50964
51936
  // src/useCases/updateTicket.js
50965
51937
  var UpdateTicketCommand = class _UpdateTicketCommand {
51938
+ static {
51939
+ __name(this, "UpdateTicketCommand");
51940
+ }
50966
51941
  /**
50967
51942
  * @description
50968
51943
  * @constructor
@@ -51026,6 +52001,9 @@ var UpdateTicketCommand = class _UpdateTicketCommand {
51026
52001
 
51027
52002
  // src/useCases/updateTicketStatus.js
51028
52003
  var UpdateTicketStatusCommand = class _UpdateTicketStatusCommand {
52004
+ static {
52005
+ __name(this, "UpdateTicketStatusCommand");
52006
+ }
51029
52007
  /**
51030
52008
  * @description
51031
52009
  * @constructor
@@ -51089,6 +52067,9 @@ var UpdateTicketStatusCommand = class _UpdateTicketStatusCommand {
51089
52067
 
51090
52068
  // src/useCases/updateTimeSheet.js
51091
52069
  var UpdateTimeSheetCommand = class _UpdateTimeSheetCommand {
52070
+ static {
52071
+ __name(this, "UpdateTimeSheetCommand");
52072
+ }
51092
52073
  /**
51093
52074
  * @description
51094
52075
  * @constructor
@@ -51152,6 +52133,9 @@ var UpdateTimeSheetCommand = class _UpdateTimeSheetCommand {
51152
52133
 
51153
52134
  // src/useCases/updateTimeSheetTimeEntry.js
51154
52135
  var UpdateTimeSheetTimeEntryCommand = class _UpdateTimeSheetTimeEntryCommand {
52136
+ static {
52137
+ __name(this, "UpdateTimeSheetTimeEntryCommand");
52138
+ }
51155
52139
  /**
51156
52140
  * @description
51157
52141
  * @constructor
@@ -51215,6 +52199,9 @@ var UpdateTimeSheetTimeEntryCommand = class _UpdateTimeSheetTimeEntryCommand {
51215
52199
 
51216
52200
  // src/useCases/updateUser.js
51217
52201
  var UpdateUserCommand = class _UpdateUserCommand {
52202
+ static {
52203
+ __name(this, "UpdateUserCommand");
52204
+ }
51218
52205
  /**
51219
52206
  * @description
51220
52207
  * @constructor
@@ -51278,6 +52265,9 @@ var UpdateUserCommand = class _UpdateUserCommand {
51278
52265
 
51279
52266
  // src/useCases/updateVendor.js
51280
52267
  var UpdateVendorCommand = class _UpdateVendorCommand {
52268
+ static {
52269
+ __name(this, "UpdateVendorCommand");
52270
+ }
51281
52271
  /**
51282
52272
  * @description
51283
52273
  * @constructor
@@ -51341,6 +52331,9 @@ var UpdateVendorCommand = class _UpdateVendorCommand {
51341
52331
 
51342
52332
  // src/useCases/updateWindowCovering.js
51343
52333
  var UpdateWindowCoveringCommand = class _UpdateWindowCoveringCommand {
52334
+ static {
52335
+ __name(this, "UpdateWindowCoveringCommand");
52336
+ }
51344
52337
  /**
51345
52338
  * @description
51346
52339
  * @constructor
@@ -51404,6 +52397,9 @@ var UpdateWindowCoveringCommand = class _UpdateWindowCoveringCommand {
51404
52397
 
51405
52398
  // src/useCases/uploadImage.js
51406
52399
  var UploadImageCommand = class _UploadImageCommand {
52400
+ static {
52401
+ __name(this, "UploadImageCommand");
52402
+ }
51407
52403
  /**
51408
52404
  * @description
51409
52405
  * @constructor
@@ -51467,6 +52463,9 @@ var UploadImageCommand = class _UploadImageCommand {
51467
52463
 
51468
52464
  // src/useCases/upsertDiscoveredDevice.js
51469
52465
  var UpsertDiscoveredDeviceCommand = class _UpsertDiscoveredDeviceCommand {
52466
+ static {
52467
+ __name(this, "UpsertDiscoveredDeviceCommand");
52468
+ }
51470
52469
  /**
51471
52470
  * @description
51472
52471
  * @constructor
@@ -51619,6 +52618,7 @@ function entityFactory(type) {
51619
52618
  throw new Error("Unknown entity type: " + type);
51620
52619
  }
51621
52620
  }
52621
+ __name(entityFactory, "entityFactory");
51622
52622
  function errorFactory(errName) {
51623
52623
  switch (errName) {
51624
52624
  case "AppError":
@@ -51649,12 +52649,14 @@ function errorFactory(errName) {
51649
52649
  return new Error("Invalid error name: " + errName);
51650
52650
  }
51651
52651
  }
52652
+ __name(errorFactory, "errorFactory");
51652
52653
  function eventFactory(eventName) {
51653
52654
  const AllEvents = Object.values(events_exports);
51654
52655
  const Event2 = AllEvents.find((E) => E.prototype.name === eventName);
51655
52656
  if (!Event2) throw new Error("Invalid event name: " + eventName);
51656
52657
  return Event2;
51657
52658
  }
52659
+ __name(eventFactory, "eventFactory");
51658
52660
  export {
51659
52661
  KohostAMQPClient as AMQPClient,
51660
52662
  KohostHTTPClient as Client,