@kohost/api-client 4.0.4 → 4.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) 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-MYWOGDCQ.js → chunk-SHLRCTB4.js} +7 -3
  5. package/dist/{chunk-MYWOGDCQ.js.map → chunk-SHLRCTB4.js.map} +1 -1
  6. package/dist/{chunk-KBBL6OJS.js → chunk-SLDNFNED.js} +290 -90
  7. package/dist/{chunk-KBBL6OJS.js.map → chunk-SLDNFNED.js.map} +1 -1
  8. package/dist/{chunk-36WNTEIW.js → chunk-SORMAXAX.js} +35 -2
  9. package/dist/{chunk-36WNTEIW.js.map → chunk-SORMAXAX.js.map} +1 -1
  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 +4 -0
  25. package/dist/events.cjs.map +1 -1
  26. package/dist/events.js +2 -2
  27. package/dist/index.cjs +1098 -96
  28. package/dist/index.cjs.map +1 -1
  29. package/dist/index.d.cts +1 -1
  30. package/dist/index.d.ts +1 -1
  31. package/dist/index.js +1098 -96
  32. package/dist/index.js.map +1 -1
  33. package/dist/models.cjs +292 -86
  34. package/dist/models.cjs.map +1 -1
  35. package/dist/models.js +3 -3
  36. package/dist/socketIoClient.cjs +7 -3
  37. package/dist/socketIoClient.cjs.map +1 -1
  38. package/dist/socketIoClient.d.cts +1 -1
  39. package/dist/socketIoClient.d.ts +1 -1
  40. package/dist/socketIoClient.js +9 -4
  41. package/dist/socketIoClient.js.map +1 -1
  42. package/dist/useCases.cjs +640 -0
  43. package/dist/useCases.cjs.map +1 -1
  44. package/dist/useCases.js +640 -2
  45. package/dist/useCases.js.map +1 -1
  46. package/dist/utils.cjs +328 -86
  47. package/dist/utils.cjs.map +1 -1
  48. package/dist/utils.js +10 -5
  49. package/dist/utils.js.map +1 -1
  50. package/package.json +1 -1
  51. /package/dist/{chunk-HKJ2B2AA.js.map → chunk-FU4IK6I4.js.map} +0 -0
package/dist/useCases.cjs CHANGED
@@ -2,6 +2,7 @@ var __defProp = Object.defineProperty;
2
2
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
5
6
  var __export = (target, all) => {
6
7
  for (var name in all)
7
8
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -237,6 +238,9 @@ module.exports = __toCommonJS(useCases_exports);
237
238
 
238
239
  // src/useCases/assignSpaceToReservation.js
239
240
  var AssignSpaceToReservationCommand = class _AssignSpaceToReservationCommand {
241
+ static {
242
+ __name(this, "AssignSpaceToReservationCommand");
243
+ }
240
244
  /**
241
245
  * @description
242
246
  * @constructor
@@ -300,6 +304,9 @@ var AssignSpaceToReservationCommand = class _AssignSpaceToReservationCommand {
300
304
 
301
305
  // src/useCases/autoAssociateDiscoveredDevices.js
302
306
  var AutoAssociateDiscoveredDevicesCommand = class _AutoAssociateDiscoveredDevicesCommand {
307
+ static {
308
+ __name(this, "AutoAssociateDiscoveredDevicesCommand");
309
+ }
303
310
  /**
304
311
  * @description
305
312
  * @constructor
@@ -363,6 +370,9 @@ var AutoAssociateDiscoveredDevicesCommand = class _AutoAssociateDiscoveredDevice
363
370
 
364
371
  // src/useCases/autoCloseTickets.js
365
372
  var AutoCloseTicketsCommand = class _AutoCloseTicketsCommand {
373
+ static {
374
+ __name(this, "AutoCloseTicketsCommand");
375
+ }
366
376
  /**
367
377
  * @description
368
378
  * @constructor
@@ -426,6 +436,9 @@ var AutoCloseTicketsCommand = class _AutoCloseTicketsCommand {
426
436
 
427
437
  // src/useCases/batchNotifyCheckIn.js
428
438
  var BatchNotifyCheckInCommand = class _BatchNotifyCheckInCommand {
439
+ static {
440
+ __name(this, "BatchNotifyCheckInCommand");
441
+ }
429
442
  /**
430
443
  * @description
431
444
  * @constructor
@@ -489,6 +502,9 @@ var BatchNotifyCheckInCommand = class _BatchNotifyCheckInCommand {
489
502
 
490
503
  // src/useCases/batchNotifyCheckOut.js
491
504
  var BatchNotifyCheckOutCommand = class _BatchNotifyCheckOutCommand {
505
+ static {
506
+ __name(this, "BatchNotifyCheckOutCommand");
507
+ }
492
508
  /**
493
509
  * @description
494
510
  * @constructor
@@ -552,6 +568,9 @@ var BatchNotifyCheckOutCommand = class _BatchNotifyCheckOutCommand {
552
568
 
553
569
  // src/useCases/batchNotifyMissedCheckOut.js
554
570
  var BatchNotifyMissedCheckOutCommand = class _BatchNotifyMissedCheckOutCommand {
571
+ static {
572
+ __name(this, "BatchNotifyMissedCheckOutCommand");
573
+ }
555
574
  /**
556
575
  * @description
557
576
  * @constructor
@@ -615,6 +634,9 @@ var BatchNotifyMissedCheckOutCommand = class _BatchNotifyMissedCheckOutCommand {
615
634
 
616
635
  // src/useCases/batchNotifyPreArrival.js
617
636
  var BatchNotifyPreArrivalCommand = class _BatchNotifyPreArrivalCommand {
637
+ static {
638
+ __name(this, "BatchNotifyPreArrivalCommand");
639
+ }
618
640
  /**
619
641
  * @description
620
642
  * @constructor
@@ -678,6 +700,9 @@ var BatchNotifyPreArrivalCommand = class _BatchNotifyPreArrivalCommand {
678
700
 
679
701
  // src/useCases/bulkUpdateIssue.js
680
702
  var BulkUpdateIssueCommand = class _BulkUpdateIssueCommand {
703
+ static {
704
+ __name(this, "BulkUpdateIssueCommand");
705
+ }
681
706
  /**
682
707
  * @description
683
708
  * @constructor
@@ -741,6 +766,9 @@ var BulkUpdateIssueCommand = class _BulkUpdateIssueCommand {
741
766
 
742
767
  // src/useCases/checkInReservation.js
743
768
  var CheckInReservationCommand = class _CheckInReservationCommand {
769
+ static {
770
+ __name(this, "CheckInReservationCommand");
771
+ }
744
772
  /**
745
773
  * @description
746
774
  * @constructor
@@ -804,6 +832,9 @@ var CheckInReservationCommand = class _CheckInReservationCommand {
804
832
 
805
833
  // src/useCases/checkOutReservation.js
806
834
  var CheckOutReservationCommand = class _CheckOutReservationCommand {
835
+ static {
836
+ __name(this, "CheckOutReservationCommand");
837
+ }
807
838
  /**
808
839
  * @description
809
840
  * @constructor
@@ -867,6 +898,9 @@ var CheckOutReservationCommand = class _CheckOutReservationCommand {
867
898
 
868
899
  // src/useCases/checkVerificationCode.js
869
900
  var CheckVerificationCodeCommand = class _CheckVerificationCodeCommand {
901
+ static {
902
+ __name(this, "CheckVerificationCodeCommand");
903
+ }
870
904
  /**
871
905
  * @description
872
906
  * @constructor
@@ -930,6 +964,9 @@ var CheckVerificationCodeCommand = class _CheckVerificationCodeCommand {
930
964
 
931
965
  // src/useCases/createAlarm.js
932
966
  var CreateAlarmCommand = class _CreateAlarmCommand {
967
+ static {
968
+ __name(this, "CreateAlarmCommand");
969
+ }
933
970
  /**
934
971
  * @description
935
972
  * @constructor
@@ -993,6 +1030,9 @@ var CreateAlarmCommand = class _CreateAlarmCommand {
993
1030
 
994
1031
  // src/useCases/createAnnouncement.js
995
1032
  var CreateAnnouncementCommand = class _CreateAnnouncementCommand {
1033
+ static {
1034
+ __name(this, "CreateAnnouncementCommand");
1035
+ }
996
1036
  /**
997
1037
  * @description
998
1038
  * @constructor
@@ -1056,6 +1096,9 @@ var CreateAnnouncementCommand = class _CreateAnnouncementCommand {
1056
1096
 
1057
1097
  // src/useCases/createCamera.js
1058
1098
  var CreateCameraCommand = class _CreateCameraCommand {
1099
+ static {
1100
+ __name(this, "CreateCameraCommand");
1101
+ }
1059
1102
  /**
1060
1103
  * @description
1061
1104
  * @constructor
@@ -1119,6 +1162,9 @@ var CreateCameraCommand = class _CreateCameraCommand {
1119
1162
 
1120
1163
  // src/useCases/createCateory.js
1121
1164
  var CreateCateoryCommand = class _CreateCateoryCommand {
1165
+ static {
1166
+ __name(this, "CreateCateoryCommand");
1167
+ }
1122
1168
  /**
1123
1169
  * @description
1124
1170
  * @constructor
@@ -1182,6 +1228,9 @@ var CreateCateoryCommand = class _CreateCateoryCommand {
1182
1228
 
1183
1229
  // src/useCases/createCourtesy.js
1184
1230
  var CreateCourtesyCommand = class _CreateCourtesyCommand {
1231
+ static {
1232
+ __name(this, "CreateCourtesyCommand");
1233
+ }
1185
1234
  /**
1186
1235
  * @description
1187
1236
  * @constructor
@@ -1245,6 +1294,9 @@ var CreateCourtesyCommand = class _CreateCourtesyCommand {
1245
1294
 
1246
1295
  // src/useCases/createDefaultScenes.js
1247
1296
  var CreateDefaultScenesCommand = class _CreateDefaultScenesCommand {
1297
+ static {
1298
+ __name(this, "CreateDefaultScenesCommand");
1299
+ }
1248
1300
  /**
1249
1301
  * @description
1250
1302
  * @constructor
@@ -1308,6 +1360,9 @@ var CreateDefaultScenesCommand = class _CreateDefaultScenesCommand {
1308
1360
 
1309
1361
  // src/useCases/createDimmer.js
1310
1362
  var CreateDimmerCommand = class _CreateDimmerCommand {
1363
+ static {
1364
+ __name(this, "CreateDimmerCommand");
1365
+ }
1311
1366
  /**
1312
1367
  * @description
1313
1368
  * @constructor
@@ -1371,6 +1426,9 @@ var CreateDimmerCommand = class _CreateDimmerCommand {
1371
1426
 
1372
1427
  // src/useCases/createDiscoveredDevice.js
1373
1428
  var CreateDiscoveredDeviceCommand = class _CreateDiscoveredDeviceCommand {
1429
+ static {
1430
+ __name(this, "CreateDiscoveredDeviceCommand");
1431
+ }
1374
1432
  /**
1375
1433
  * @description
1376
1434
  * @constructor
@@ -1434,6 +1492,9 @@ var CreateDiscoveredDeviceCommand = class _CreateDiscoveredDeviceCommand {
1434
1492
 
1435
1493
  // src/useCases/createDiscoveredDeviceAssociation.js
1436
1494
  var CreateDiscoveredDeviceAssociationCommand = class _CreateDiscoveredDeviceAssociationCommand {
1495
+ static {
1496
+ __name(this, "CreateDiscoveredDeviceAssociationCommand");
1497
+ }
1437
1498
  /**
1438
1499
  * @description
1439
1500
  * @constructor
@@ -1497,6 +1558,9 @@ var CreateDiscoveredDeviceAssociationCommand = class _CreateDiscoveredDeviceAsso
1497
1558
 
1498
1559
  // src/useCases/createDiscoveredDeviceAssociationMap.js
1499
1560
  var CreateDiscoveredDeviceAssociationMapCommand = class _CreateDiscoveredDeviceAssociationMapCommand {
1561
+ static {
1562
+ __name(this, "CreateDiscoveredDeviceAssociationMapCommand");
1563
+ }
1500
1564
  /**
1501
1565
  * @description
1502
1566
  * @constructor
@@ -1560,6 +1624,9 @@ var CreateDiscoveredDeviceAssociationMapCommand = class _CreateDiscoveredDeviceA
1560
1624
 
1561
1625
  // src/useCases/createImageUploadEndpoint.js
1562
1626
  var CreateImageUploadEndpointCommand = class _CreateImageUploadEndpointCommand {
1627
+ static {
1628
+ __name(this, "CreateImageUploadEndpointCommand");
1629
+ }
1563
1630
  /**
1564
1631
  * @description
1565
1632
  * @constructor
@@ -1623,6 +1690,9 @@ var CreateImageUploadEndpointCommand = class _CreateImageUploadEndpointCommand {
1623
1690
 
1624
1691
  // src/useCases/createIssue.js
1625
1692
  var CreateIssueCommand = class _CreateIssueCommand {
1693
+ static {
1694
+ __name(this, "CreateIssueCommand");
1695
+ }
1626
1696
  /**
1627
1697
  * @description
1628
1698
  * @constructor
@@ -1686,6 +1756,9 @@ var CreateIssueCommand = class _CreateIssueCommand {
1686
1756
 
1687
1757
  // src/useCases/createLock.js
1688
1758
  var CreateLockCommand = class _CreateLockCommand {
1759
+ static {
1760
+ __name(this, "CreateLockCommand");
1761
+ }
1689
1762
  /**
1690
1763
  * @description
1691
1764
  * @constructor
@@ -1749,6 +1822,9 @@ var CreateLockCommand = class _CreateLockCommand {
1749
1822
 
1750
1823
  // src/useCases/createMediaSource.js
1751
1824
  var CreateMediaSourceCommand = class _CreateMediaSourceCommand {
1825
+ static {
1826
+ __name(this, "CreateMediaSourceCommand");
1827
+ }
1752
1828
  /**
1753
1829
  * @description
1754
1830
  * @constructor
@@ -1812,6 +1888,9 @@ var CreateMediaSourceCommand = class _CreateMediaSourceCommand {
1812
1888
 
1813
1889
  // src/useCases/createOrganization.js
1814
1890
  var CreateOrganizationCommand = class _CreateOrganizationCommand {
1891
+ static {
1892
+ __name(this, "CreateOrganizationCommand");
1893
+ }
1815
1894
  /**
1816
1895
  * @description
1817
1896
  * @constructor
@@ -1875,6 +1954,9 @@ var CreateOrganizationCommand = class _CreateOrganizationCommand {
1875
1954
 
1876
1955
  // src/useCases/createPolicy.js
1877
1956
  var CreatePolicyCommand = class _CreatePolicyCommand {
1957
+ static {
1958
+ __name(this, "CreatePolicyCommand");
1959
+ }
1878
1960
  /**
1879
1961
  * @description
1880
1962
  * @constructor
@@ -1938,6 +2020,9 @@ var CreatePolicyCommand = class _CreatePolicyCommand {
1938
2020
 
1939
2021
  // src/useCases/createProperty.js
1940
2022
  var CreatePropertyCommand = class _CreatePropertyCommand {
2023
+ static {
2024
+ __name(this, "CreatePropertyCommand");
2025
+ }
1941
2026
  /**
1942
2027
  * @description
1943
2028
  * @constructor
@@ -2001,6 +2086,9 @@ var CreatePropertyCommand = class _CreatePropertyCommand {
2001
2086
 
2002
2087
  // src/useCases/createReservation.js
2003
2088
  var CreateReservationCommand = class _CreateReservationCommand {
2089
+ static {
2090
+ __name(this, "CreateReservationCommand");
2091
+ }
2004
2092
  /**
2005
2093
  * @description
2006
2094
  * @constructor
@@ -2064,6 +2152,9 @@ var CreateReservationCommand = class _CreateReservationCommand {
2064
2152
 
2065
2153
  // src/useCases/createRoom.js
2066
2154
  var CreateRoomCommand = class _CreateRoomCommand {
2155
+ static {
2156
+ __name(this, "CreateRoomCommand");
2157
+ }
2067
2158
  /**
2068
2159
  * @description
2069
2160
  * @constructor
@@ -2127,6 +2218,9 @@ var CreateRoomCommand = class _CreateRoomCommand {
2127
2218
 
2128
2219
  // src/useCases/createRoomInSpace.js
2129
2220
  var CreateRoomInSpaceCommand = class _CreateRoomInSpaceCommand {
2221
+ static {
2222
+ __name(this, "CreateRoomInSpaceCommand");
2223
+ }
2130
2224
  /**
2131
2225
  * @description
2132
2226
  * @constructor
@@ -2190,6 +2284,9 @@ var CreateRoomInSpaceCommand = class _CreateRoomInSpaceCommand {
2190
2284
 
2191
2285
  // src/useCases/createScene.js
2192
2286
  var CreateSceneCommand = class _CreateSceneCommand {
2287
+ static {
2288
+ __name(this, "CreateSceneCommand");
2289
+ }
2193
2290
  /**
2194
2291
  * @description
2195
2292
  * @constructor
@@ -2253,6 +2350,9 @@ var CreateSceneCommand = class _CreateSceneCommand {
2253
2350
 
2254
2351
  // src/useCases/createSpace.js
2255
2352
  var CreateSpaceCommand = class _CreateSpaceCommand {
2353
+ static {
2354
+ __name(this, "CreateSpaceCommand");
2355
+ }
2256
2356
  /**
2257
2357
  * @description
2258
2358
  * @constructor
@@ -2316,6 +2416,9 @@ var CreateSpaceCommand = class _CreateSpaceCommand {
2316
2416
 
2317
2417
  // src/useCases/createSwitch.js
2318
2418
  var CreateSwitchCommand = class _CreateSwitchCommand {
2419
+ static {
2420
+ __name(this, "CreateSwitchCommand");
2421
+ }
2319
2422
  /**
2320
2423
  * @description
2321
2424
  * @constructor
@@ -2379,6 +2482,9 @@ var CreateSwitchCommand = class _CreateSwitchCommand {
2379
2482
 
2380
2483
  // src/useCases/createThermostat.js
2381
2484
  var CreateThermostatCommand = class _CreateThermostatCommand {
2485
+ static {
2486
+ __name(this, "CreateThermostatCommand");
2487
+ }
2382
2488
  /**
2383
2489
  * @description
2384
2490
  * @constructor
@@ -2442,6 +2548,9 @@ var CreateThermostatCommand = class _CreateThermostatCommand {
2442
2548
 
2443
2549
  // src/useCases/createTicket.js
2444
2550
  var CreateTicketCommand = class _CreateTicketCommand {
2551
+ static {
2552
+ __name(this, "CreateTicketCommand");
2553
+ }
2445
2554
  /**
2446
2555
  * @description
2447
2556
  * @constructor
@@ -2505,6 +2614,9 @@ var CreateTicketCommand = class _CreateTicketCommand {
2505
2614
 
2506
2615
  // src/useCases/createTicketMessage.js
2507
2616
  var CreateTicketMessageCommand = class _CreateTicketMessageCommand {
2617
+ static {
2618
+ __name(this, "CreateTicketMessageCommand");
2619
+ }
2508
2620
  /**
2509
2621
  * @description
2510
2622
  * @constructor
@@ -2568,6 +2680,9 @@ var CreateTicketMessageCommand = class _CreateTicketMessageCommand {
2568
2680
 
2569
2681
  // src/useCases/createTimeSheet.js
2570
2682
  var CreateTimeSheetCommand = class _CreateTimeSheetCommand {
2683
+ static {
2684
+ __name(this, "CreateTimeSheetCommand");
2685
+ }
2571
2686
  /**
2572
2687
  * @description
2573
2688
  * @constructor
@@ -2631,6 +2746,9 @@ var CreateTimeSheetCommand = class _CreateTimeSheetCommand {
2631
2746
 
2632
2747
  // src/useCases/createTimeSheetTimeEntry.js
2633
2748
  var CreateTimeSheetTimeEntryCommand = class _CreateTimeSheetTimeEntryCommand {
2749
+ static {
2750
+ __name(this, "CreateTimeSheetTimeEntryCommand");
2751
+ }
2634
2752
  /**
2635
2753
  * @description
2636
2754
  * @constructor
@@ -2694,6 +2812,9 @@ var CreateTimeSheetTimeEntryCommand = class _CreateTimeSheetTimeEntryCommand {
2694
2812
 
2695
2813
  // src/useCases/createUser.js
2696
2814
  var CreateUserCommand = class _CreateUserCommand {
2815
+ static {
2816
+ __name(this, "CreateUserCommand");
2817
+ }
2697
2818
  /**
2698
2819
  * @description
2699
2820
  * @constructor
@@ -2757,6 +2878,9 @@ var CreateUserCommand = class _CreateUserCommand {
2757
2878
 
2758
2879
  // src/useCases/createUserMobileKey.js
2759
2880
  var CreateUserMobileKeyCommand = class _CreateUserMobileKeyCommand {
2881
+ static {
2882
+ __name(this, "CreateUserMobileKeyCommand");
2883
+ }
2760
2884
  /**
2761
2885
  * @description
2762
2886
  * @constructor
@@ -2820,6 +2944,9 @@ var CreateUserMobileKeyCommand = class _CreateUserMobileKeyCommand {
2820
2944
 
2821
2945
  // src/useCases/createVendor.js
2822
2946
  var CreateVendorCommand = class _CreateVendorCommand {
2947
+ static {
2948
+ __name(this, "CreateVendorCommand");
2949
+ }
2823
2950
  /**
2824
2951
  * @description
2825
2952
  * @constructor
@@ -2883,6 +3010,9 @@ var CreateVendorCommand = class _CreateVendorCommand {
2883
3010
 
2884
3011
  // src/useCases/createWindowCovering.js
2885
3012
  var CreateWindowCoveringCommand = class _CreateWindowCoveringCommand {
3013
+ static {
3014
+ __name(this, "CreateWindowCoveringCommand");
3015
+ }
2886
3016
  /**
2887
3017
  * @description
2888
3018
  * @constructor
@@ -2946,6 +3076,9 @@ var CreateWindowCoveringCommand = class _CreateWindowCoveringCommand {
2946
3076
 
2947
3077
  // src/useCases/deleteAlarm.js
2948
3078
  var DeleteAlarmCommand = class _DeleteAlarmCommand {
3079
+ static {
3080
+ __name(this, "DeleteAlarmCommand");
3081
+ }
2949
3082
  /**
2950
3083
  * @description
2951
3084
  * @constructor
@@ -3009,6 +3142,9 @@ var DeleteAlarmCommand = class _DeleteAlarmCommand {
3009
3142
 
3010
3143
  // src/useCases/deleteAnnouncement.js
3011
3144
  var DeleteAnnouncementCommand = class _DeleteAnnouncementCommand {
3145
+ static {
3146
+ __name(this, "DeleteAnnouncementCommand");
3147
+ }
3012
3148
  /**
3013
3149
  * @description
3014
3150
  * @constructor
@@ -3072,6 +3208,9 @@ var DeleteAnnouncementCommand = class _DeleteAnnouncementCommand {
3072
3208
 
3073
3209
  // src/useCases/deleteCamera.js
3074
3210
  var DeleteCameraCommand = class _DeleteCameraCommand {
3211
+ static {
3212
+ __name(this, "DeleteCameraCommand");
3213
+ }
3075
3214
  /**
3076
3215
  * @description
3077
3216
  * @constructor
@@ -3135,6 +3274,9 @@ var DeleteCameraCommand = class _DeleteCameraCommand {
3135
3274
 
3136
3275
  // src/useCases/deleteCategory.js
3137
3276
  var DeleteCategoryCommand = class _DeleteCategoryCommand {
3277
+ static {
3278
+ __name(this, "DeleteCategoryCommand");
3279
+ }
3138
3280
  /**
3139
3281
  * @description
3140
3282
  * @constructor
@@ -3198,6 +3340,9 @@ var DeleteCategoryCommand = class _DeleteCategoryCommand {
3198
3340
 
3199
3341
  // src/useCases/deleteCourtesy.js
3200
3342
  var DeleteCourtesyCommand = class _DeleteCourtesyCommand {
3343
+ static {
3344
+ __name(this, "DeleteCourtesyCommand");
3345
+ }
3201
3346
  /**
3202
3347
  * @description
3203
3348
  * @constructor
@@ -3261,6 +3406,9 @@ var DeleteCourtesyCommand = class _DeleteCourtesyCommand {
3261
3406
 
3262
3407
  // src/useCases/deleteDimmer.js
3263
3408
  var DeleteDimmerCommand = class _DeleteDimmerCommand {
3409
+ static {
3410
+ __name(this, "DeleteDimmerCommand");
3411
+ }
3264
3412
  /**
3265
3413
  * @description
3266
3414
  * @constructor
@@ -3324,6 +3472,9 @@ var DeleteDimmerCommand = class _DeleteDimmerCommand {
3324
3472
 
3325
3473
  // src/useCases/deleteDiscoveredDevice.js
3326
3474
  var DeleteDiscoveredDeviceCommand = class _DeleteDiscoveredDeviceCommand {
3475
+ static {
3476
+ __name(this, "DeleteDiscoveredDeviceCommand");
3477
+ }
3327
3478
  /**
3328
3479
  * @description
3329
3480
  * @constructor
@@ -3387,6 +3538,9 @@ var DeleteDiscoveredDeviceCommand = class _DeleteDiscoveredDeviceCommand {
3387
3538
 
3388
3539
  // src/useCases/deleteIssue.js
3389
3540
  var DeleteIssueCommand = class _DeleteIssueCommand {
3541
+ static {
3542
+ __name(this, "DeleteIssueCommand");
3543
+ }
3390
3544
  /**
3391
3545
  * @description
3392
3546
  * @constructor
@@ -3450,6 +3604,9 @@ var DeleteIssueCommand = class _DeleteIssueCommand {
3450
3604
 
3451
3605
  // src/useCases/deleteLock.js
3452
3606
  var DeleteLockCommand = class _DeleteLockCommand {
3607
+ static {
3608
+ __name(this, "DeleteLockCommand");
3609
+ }
3453
3610
  /**
3454
3611
  * @description
3455
3612
  * @constructor
@@ -3513,6 +3670,9 @@ var DeleteLockCommand = class _DeleteLockCommand {
3513
3670
 
3514
3671
  // src/useCases/deleteMediaFile.js
3515
3672
  var DeleteMediaFileCommand = class _DeleteMediaFileCommand {
3673
+ static {
3674
+ __name(this, "DeleteMediaFileCommand");
3675
+ }
3516
3676
  /**
3517
3677
  * @description
3518
3678
  * @constructor
@@ -3576,6 +3736,9 @@ var DeleteMediaFileCommand = class _DeleteMediaFileCommand {
3576
3736
 
3577
3737
  // src/useCases/deleteMediaSource.js
3578
3738
  var DeleteMediaSourceCommand = class _DeleteMediaSourceCommand {
3739
+ static {
3740
+ __name(this, "DeleteMediaSourceCommand");
3741
+ }
3579
3742
  /**
3580
3743
  * @description
3581
3744
  * @constructor
@@ -3639,6 +3802,9 @@ var DeleteMediaSourceCommand = class _DeleteMediaSourceCommand {
3639
3802
 
3640
3803
  // src/useCases/deletePolicy.js
3641
3804
  var DeletePolicyCommand = class _DeletePolicyCommand {
3805
+ static {
3806
+ __name(this, "DeletePolicyCommand");
3807
+ }
3642
3808
  /**
3643
3809
  * @description
3644
3810
  * @constructor
@@ -3702,6 +3868,9 @@ var DeletePolicyCommand = class _DeletePolicyCommand {
3702
3868
 
3703
3869
  // src/useCases/deleteReservation.js
3704
3870
  var DeleteReservationCommand = class _DeleteReservationCommand {
3871
+ static {
3872
+ __name(this, "DeleteReservationCommand");
3873
+ }
3705
3874
  /**
3706
3875
  * @description
3707
3876
  * @constructor
@@ -3765,6 +3934,9 @@ var DeleteReservationCommand = class _DeleteReservationCommand {
3765
3934
 
3766
3935
  // src/useCases/deleteRoom.js
3767
3936
  var DeleteRoomCommand = class _DeleteRoomCommand {
3937
+ static {
3938
+ __name(this, "DeleteRoomCommand");
3939
+ }
3768
3940
  /**
3769
3941
  * @description
3770
3942
  * @constructor
@@ -3828,6 +4000,9 @@ var DeleteRoomCommand = class _DeleteRoomCommand {
3828
4000
 
3829
4001
  // src/useCases/deleteSpace.js
3830
4002
  var DeleteSpaceCommand = class _DeleteSpaceCommand {
4003
+ static {
4004
+ __name(this, "DeleteSpaceCommand");
4005
+ }
3831
4006
  /**
3832
4007
  * @description
3833
4008
  * @constructor
@@ -3891,6 +4066,9 @@ var DeleteSpaceCommand = class _DeleteSpaceCommand {
3891
4066
 
3892
4067
  // src/useCases/deleteSwitch.js
3893
4068
  var DeleteSwitchCommand = class _DeleteSwitchCommand {
4069
+ static {
4070
+ __name(this, "DeleteSwitchCommand");
4071
+ }
3894
4072
  /**
3895
4073
  * @description
3896
4074
  * @constructor
@@ -3954,6 +4132,9 @@ var DeleteSwitchCommand = class _DeleteSwitchCommand {
3954
4132
 
3955
4133
  // src/useCases/deleteThermostat.js
3956
4134
  var DeleteThermostatCommand = class _DeleteThermostatCommand {
4135
+ static {
4136
+ __name(this, "DeleteThermostatCommand");
4137
+ }
3957
4138
  /**
3958
4139
  * @description
3959
4140
  * @constructor
@@ -4017,6 +4198,9 @@ var DeleteThermostatCommand = class _DeleteThermostatCommand {
4017
4198
 
4018
4199
  // src/useCases/deleteTicket.js
4019
4200
  var DeleteTicketCommand = class _DeleteTicketCommand {
4201
+ static {
4202
+ __name(this, "DeleteTicketCommand");
4203
+ }
4020
4204
  /**
4021
4205
  * @description
4022
4206
  * @constructor
@@ -4080,6 +4264,9 @@ var DeleteTicketCommand = class _DeleteTicketCommand {
4080
4264
 
4081
4265
  // src/useCases/deleteTimeSheet.js
4082
4266
  var DeleteTimeSheetCommand = class _DeleteTimeSheetCommand {
4267
+ static {
4268
+ __name(this, "DeleteTimeSheetCommand");
4269
+ }
4083
4270
  /**
4084
4271
  * @description
4085
4272
  * @constructor
@@ -4143,6 +4330,9 @@ var DeleteTimeSheetCommand = class _DeleteTimeSheetCommand {
4143
4330
 
4144
4331
  // src/useCases/deleteTimeSheetTimeEntry.js
4145
4332
  var DeleteTimeSheetTimeEntryCommand = class _DeleteTimeSheetTimeEntryCommand {
4333
+ static {
4334
+ __name(this, "DeleteTimeSheetTimeEntryCommand");
4335
+ }
4146
4336
  /**
4147
4337
  * @description
4148
4338
  * @constructor
@@ -4206,6 +4396,9 @@ var DeleteTimeSheetTimeEntryCommand = class _DeleteTimeSheetTimeEntryCommand {
4206
4396
 
4207
4397
  // src/useCases/deleteUser.js
4208
4398
  var DeleteUserCommand = class _DeleteUserCommand {
4399
+ static {
4400
+ __name(this, "DeleteUserCommand");
4401
+ }
4209
4402
  /**
4210
4403
  * @description
4211
4404
  * @constructor
@@ -4269,6 +4462,9 @@ var DeleteUserCommand = class _DeleteUserCommand {
4269
4462
 
4270
4463
  // src/useCases/deleteUserCredential.js
4271
4464
  var DeleteUserCredentialCommand = class _DeleteUserCredentialCommand {
4465
+ static {
4466
+ __name(this, "DeleteUserCredentialCommand");
4467
+ }
4272
4468
  /**
4273
4469
  * @description
4274
4470
  * @constructor
@@ -4332,6 +4528,9 @@ var DeleteUserCredentialCommand = class _DeleteUserCredentialCommand {
4332
4528
 
4333
4529
  // src/useCases/deleteVendor.js
4334
4530
  var DeleteVendorCommand = class _DeleteVendorCommand {
4531
+ static {
4532
+ __name(this, "DeleteVendorCommand");
4533
+ }
4335
4534
  /**
4336
4535
  * @description
4337
4536
  * @constructor
@@ -4395,6 +4594,9 @@ var DeleteVendorCommand = class _DeleteVendorCommand {
4395
4594
 
4396
4595
  // src/useCases/deleteWindowCovering.js
4397
4596
  var DeleteWindowCoveringCommand = class _DeleteWindowCoveringCommand {
4597
+ static {
4598
+ __name(this, "DeleteWindowCoveringCommand");
4599
+ }
4398
4600
  /**
4399
4601
  * @description
4400
4602
  * @constructor
@@ -4458,6 +4660,9 @@ var DeleteWindowCoveringCommand = class _DeleteWindowCoveringCommand {
4458
4660
 
4459
4661
  // src/useCases/describeAlarm.js
4460
4662
  var DescribeAlarmCommand = class _DescribeAlarmCommand {
4663
+ static {
4664
+ __name(this, "DescribeAlarmCommand");
4665
+ }
4461
4666
  /**
4462
4667
  * @description
4463
4668
  * @constructor
@@ -4521,6 +4726,9 @@ var DescribeAlarmCommand = class _DescribeAlarmCommand {
4521
4726
 
4522
4727
  // src/useCases/describeAlarmConfig.js
4523
4728
  var DescribeAlarmConfigCommand = class _DescribeAlarmConfigCommand {
4729
+ static {
4730
+ __name(this, "DescribeAlarmConfigCommand");
4731
+ }
4524
4732
  /**
4525
4733
  * @description
4526
4734
  * @constructor
@@ -4584,6 +4792,9 @@ var DescribeAlarmConfigCommand = class _DescribeAlarmConfigCommand {
4584
4792
 
4585
4793
  // src/useCases/describeAnnouncement.js
4586
4794
  var DescribeAnnouncementCommand = class _DescribeAnnouncementCommand {
4795
+ static {
4796
+ __name(this, "DescribeAnnouncementCommand");
4797
+ }
4587
4798
  /**
4588
4799
  * @description
4589
4800
  * @constructor
@@ -4647,6 +4858,9 @@ var DescribeAnnouncementCommand = class _DescribeAnnouncementCommand {
4647
4858
 
4648
4859
  // src/useCases/describeCamera.js
4649
4860
  var DescribeCameraCommand = class _DescribeCameraCommand {
4861
+ static {
4862
+ __name(this, "DescribeCameraCommand");
4863
+ }
4650
4864
  /**
4651
4865
  * @description
4652
4866
  * @constructor
@@ -4710,6 +4924,9 @@ var DescribeCameraCommand = class _DescribeCameraCommand {
4710
4924
 
4711
4925
  // src/useCases/describeCategory.js
4712
4926
  var DescribeCategoryCommand = class _DescribeCategoryCommand {
4927
+ static {
4928
+ __name(this, "DescribeCategoryCommand");
4929
+ }
4713
4930
  /**
4714
4931
  * @description
4715
4932
  * @constructor
@@ -4773,6 +4990,9 @@ var DescribeCategoryCommand = class _DescribeCategoryCommand {
4773
4990
 
4774
4991
  // src/useCases/describeCourtesy.js
4775
4992
  var DescribeCourtesyCommand = class _DescribeCourtesyCommand {
4993
+ static {
4994
+ __name(this, "DescribeCourtesyCommand");
4995
+ }
4776
4996
  /**
4777
4997
  * @description
4778
4998
  * @constructor
@@ -4836,6 +5056,9 @@ var DescribeCourtesyCommand = class _DescribeCourtesyCommand {
4836
5056
 
4837
5057
  // src/useCases/describeDimmer.js
4838
5058
  var DescribeDimmerCommand = class _DescribeDimmerCommand {
5059
+ static {
5060
+ __name(this, "DescribeDimmerCommand");
5061
+ }
4839
5062
  /**
4840
5063
  * @description
4841
5064
  * @constructor
@@ -4899,6 +5122,9 @@ var DescribeDimmerCommand = class _DescribeDimmerCommand {
4899
5122
 
4900
5123
  // src/useCases/describeDiscoveredDevice.js
4901
5124
  var DescribeDiscoveredDeviceCommand = class _DescribeDiscoveredDeviceCommand {
5125
+ static {
5126
+ __name(this, "DescribeDiscoveredDeviceCommand");
5127
+ }
4902
5128
  /**
4903
5129
  * @description
4904
5130
  * @constructor
@@ -4962,6 +5188,9 @@ var DescribeDiscoveredDeviceCommand = class _DescribeDiscoveredDeviceCommand {
4962
5188
 
4963
5189
  // src/useCases/describeIssue.js
4964
5190
  var DescribeIssueCommand = class _DescribeIssueCommand {
5191
+ static {
5192
+ __name(this, "DescribeIssueCommand");
5193
+ }
4965
5194
  /**
4966
5195
  * @description
4967
5196
  * @constructor
@@ -5025,6 +5254,9 @@ var DescribeIssueCommand = class _DescribeIssueCommand {
5025
5254
 
5026
5255
  // src/useCases/describeLock.js
5027
5256
  var DescribeLockCommand = class _DescribeLockCommand {
5257
+ static {
5258
+ __name(this, "DescribeLockCommand");
5259
+ }
5028
5260
  /**
5029
5261
  * @description
5030
5262
  * @constructor
@@ -5088,6 +5320,9 @@ var DescribeLockCommand = class _DescribeLockCommand {
5088
5320
 
5089
5321
  // src/useCases/describeLockCredential.js
5090
5322
  var DescribeLockCredentialCommand = class _DescribeLockCredentialCommand {
5323
+ static {
5324
+ __name(this, "DescribeLockCredentialCommand");
5325
+ }
5091
5326
  /**
5092
5327
  * @description
5093
5328
  * @constructor
@@ -5151,6 +5386,9 @@ var DescribeLockCredentialCommand = class _DescribeLockCredentialCommand {
5151
5386
 
5152
5387
  // src/useCases/describeMediaSource.js
5153
5388
  var DescribeMediaSourceCommand = class _DescribeMediaSourceCommand {
5389
+ static {
5390
+ __name(this, "DescribeMediaSourceCommand");
5391
+ }
5154
5392
  /**
5155
5393
  * @description
5156
5394
  * @constructor
@@ -5214,6 +5452,9 @@ var DescribeMediaSourceCommand = class _DescribeMediaSourceCommand {
5214
5452
 
5215
5453
  // src/useCases/describeMyAuth.js
5216
5454
  var DescribeMyAuthCommand = class _DescribeMyAuthCommand {
5455
+ static {
5456
+ __name(this, "DescribeMyAuthCommand");
5457
+ }
5217
5458
  /**
5218
5459
  * @description
5219
5460
  * @constructor
@@ -5277,6 +5518,9 @@ var DescribeMyAuthCommand = class _DescribeMyAuthCommand {
5277
5518
 
5278
5519
  // src/useCases/describeMyMobileKeyApp.js
5279
5520
  var DescribeMyMobileKeyAppCommand = class _DescribeMyMobileKeyAppCommand {
5521
+ static {
5522
+ __name(this, "DescribeMyMobileKeyAppCommand");
5523
+ }
5280
5524
  /**
5281
5525
  * @description
5282
5526
  * @constructor
@@ -5340,6 +5584,9 @@ var DescribeMyMobileKeyAppCommand = class _DescribeMyMobileKeyAppCommand {
5340
5584
 
5341
5585
  // src/useCases/describeMyOrganization.js
5342
5586
  var DescribeMyOrganizationCommand = class _DescribeMyOrganizationCommand {
5587
+ static {
5588
+ __name(this, "DescribeMyOrganizationCommand");
5589
+ }
5343
5590
  /**
5344
5591
  * @description
5345
5592
  * @constructor
@@ -5403,6 +5650,9 @@ var DescribeMyOrganizationCommand = class _DescribeMyOrganizationCommand {
5403
5650
 
5404
5651
  // src/useCases/describeMyPasskeyRegistrations.js
5405
5652
  var DescribeMyPasskeyRegistrationsCommand = class _DescribeMyPasskeyRegistrationsCommand {
5653
+ static {
5654
+ __name(this, "DescribeMyPasskeyRegistrationsCommand");
5655
+ }
5406
5656
  /**
5407
5657
  * @description
5408
5658
  * @constructor
@@ -5466,6 +5716,9 @@ var DescribeMyPasskeyRegistrationsCommand = class _DescribeMyPasskeyRegistration
5466
5716
 
5467
5717
  // src/useCases/describeOrganization.js
5468
5718
  var DescribeOrganizationCommand = class _DescribeOrganizationCommand {
5719
+ static {
5720
+ __name(this, "DescribeOrganizationCommand");
5721
+ }
5469
5722
  /**
5470
5723
  * @description
5471
5724
  * @constructor
@@ -5529,6 +5782,9 @@ var DescribeOrganizationCommand = class _DescribeOrganizationCommand {
5529
5782
 
5530
5783
  // src/useCases/describePolicy.js
5531
5784
  var DescribePolicyCommand = class _DescribePolicyCommand {
5785
+ static {
5786
+ __name(this, "DescribePolicyCommand");
5787
+ }
5532
5788
  /**
5533
5789
  * @description
5534
5790
  * @constructor
@@ -5592,6 +5848,9 @@ var DescribePolicyCommand = class _DescribePolicyCommand {
5592
5848
 
5593
5849
  // src/useCases/describeProduct.js
5594
5850
  var DescribeProductCommand = class _DescribeProductCommand {
5851
+ static {
5852
+ __name(this, "DescribeProductCommand");
5853
+ }
5595
5854
  /**
5596
5855
  * @description
5597
5856
  * @constructor
@@ -5655,6 +5914,9 @@ var DescribeProductCommand = class _DescribeProductCommand {
5655
5914
 
5656
5915
  // src/useCases/describeProperty.js
5657
5916
  var DescribePropertyCommand = class _DescribePropertyCommand {
5917
+ static {
5918
+ __name(this, "DescribePropertyCommand");
5919
+ }
5658
5920
  /**
5659
5921
  * @description
5660
5922
  * @constructor
@@ -5718,6 +5980,9 @@ var DescribePropertyCommand = class _DescribePropertyCommand {
5718
5980
 
5719
5981
  // src/useCases/describeReservation.js
5720
5982
  var DescribeReservationCommand = class _DescribeReservationCommand {
5983
+ static {
5984
+ __name(this, "DescribeReservationCommand");
5985
+ }
5721
5986
  /**
5722
5987
  * @description
5723
5988
  * @constructor
@@ -5781,6 +6046,9 @@ var DescribeReservationCommand = class _DescribeReservationCommand {
5781
6046
 
5782
6047
  // src/useCases/describeReservationEarlyCheckInProducts.js
5783
6048
  var DescribeReservationEarlyCheckInProductsCommand = class _DescribeReservationEarlyCheckInProductsCommand {
6049
+ static {
6050
+ __name(this, "DescribeReservationEarlyCheckInProductsCommand");
6051
+ }
5784
6052
  /**
5785
6053
  * @description
5786
6054
  * @constructor
@@ -5844,6 +6112,9 @@ var DescribeReservationEarlyCheckInProductsCommand = class _DescribeReservationE
5844
6112
 
5845
6113
  // src/useCases/describeReservationLateCheckOutProducts.js
5846
6114
  var DescribeReservationLateCheckOutProductsCommand = class _DescribeReservationLateCheckOutProductsCommand {
6115
+ static {
6116
+ __name(this, "DescribeReservationLateCheckOutProductsCommand");
6117
+ }
5847
6118
  /**
5848
6119
  * @description
5849
6120
  * @constructor
@@ -5907,6 +6178,9 @@ var DescribeReservationLateCheckOutProductsCommand = class _DescribeReservationL
5907
6178
 
5908
6179
  // src/useCases/describeReservationPetProducts.js
5909
6180
  var DescribeReservationPetProductsCommand = class _DescribeReservationPetProductsCommand {
6181
+ static {
6182
+ __name(this, "DescribeReservationPetProductsCommand");
6183
+ }
5910
6184
  /**
5911
6185
  * @description
5912
6186
  * @constructor
@@ -5970,6 +6244,9 @@ var DescribeReservationPetProductsCommand = class _DescribeReservationPetProduct
5970
6244
 
5971
6245
  // src/useCases/describeReservationPromos.js
5972
6246
  var DescribeReservationPromosCommand = class _DescribeReservationPromosCommand {
6247
+ static {
6248
+ __name(this, "DescribeReservationPromosCommand");
6249
+ }
5973
6250
  /**
5974
6251
  * @description
5975
6252
  * @constructor
@@ -6033,6 +6310,9 @@ var DescribeReservationPromosCommand = class _DescribeReservationPromosCommand {
6033
6310
 
6034
6311
  // src/useCases/describeReservationRoomUpgrades.js
6035
6312
  var DescribeReservationRoomUpgradesCommand = class _DescribeReservationRoomUpgradesCommand {
6313
+ static {
6314
+ __name(this, "DescribeReservationRoomUpgradesCommand");
6315
+ }
6036
6316
  /**
6037
6317
  * @description
6038
6318
  * @constructor
@@ -6096,6 +6376,9 @@ var DescribeReservationRoomUpgradesCommand = class _DescribeReservationRoomUpgra
6096
6376
 
6097
6377
  // src/useCases/describeRoom.js
6098
6378
  var DescribeRoomCommand = class _DescribeRoomCommand {
6379
+ static {
6380
+ __name(this, "DescribeRoomCommand");
6381
+ }
6099
6382
  /**
6100
6383
  * @description
6101
6384
  * @constructor
@@ -6159,6 +6442,9 @@ var DescribeRoomCommand = class _DescribeRoomCommand {
6159
6442
 
6160
6443
  // src/useCases/describeSOS.js
6161
6444
  var DescribeSOSCommand = class _DescribeSOSCommand {
6445
+ static {
6446
+ __name(this, "DescribeSOSCommand");
6447
+ }
6162
6448
  /**
6163
6449
  * @description
6164
6450
  * @constructor
@@ -6222,6 +6508,9 @@ var DescribeSOSCommand = class _DescribeSOSCommand {
6222
6508
 
6223
6509
  // src/useCases/describeSelf.js
6224
6510
  var DescribeSelfCommand = class _DescribeSelfCommand {
6511
+ static {
6512
+ __name(this, "DescribeSelfCommand");
6513
+ }
6225
6514
  /**
6226
6515
  * @description
6227
6516
  * @constructor
@@ -6285,6 +6574,9 @@ var DescribeSelfCommand = class _DescribeSelfCommand {
6285
6574
 
6286
6575
  // src/useCases/describeSpace.js
6287
6576
  var DescribeSpaceCommand = class _DescribeSpaceCommand {
6577
+ static {
6578
+ __name(this, "DescribeSpaceCommand");
6579
+ }
6288
6580
  /**
6289
6581
  * @description
6290
6582
  * @constructor
@@ -6348,6 +6640,9 @@ var DescribeSpaceCommand = class _DescribeSpaceCommand {
6348
6640
 
6349
6641
  // src/useCases/describeSwitch.js
6350
6642
  var DescribeSwitchCommand = class _DescribeSwitchCommand {
6643
+ static {
6644
+ __name(this, "DescribeSwitchCommand");
6645
+ }
6351
6646
  /**
6352
6647
  * @description
6353
6648
  * @constructor
@@ -6411,6 +6706,9 @@ var DescribeSwitchCommand = class _DescribeSwitchCommand {
6411
6706
 
6412
6707
  // src/useCases/describeThermostat.js
6413
6708
  var DescribeThermostatCommand = class _DescribeThermostatCommand {
6709
+ static {
6710
+ __name(this, "DescribeThermostatCommand");
6711
+ }
6414
6712
  /**
6415
6713
  * @description
6416
6714
  * @constructor
@@ -6474,6 +6772,9 @@ var DescribeThermostatCommand = class _DescribeThermostatCommand {
6474
6772
 
6475
6773
  // src/useCases/describeTicket.js
6476
6774
  var DescribeTicketCommand = class _DescribeTicketCommand {
6775
+ static {
6776
+ __name(this, "DescribeTicketCommand");
6777
+ }
6477
6778
  /**
6478
6779
  * @description
6479
6780
  * @constructor
@@ -6537,6 +6838,9 @@ var DescribeTicketCommand = class _DescribeTicketCommand {
6537
6838
 
6538
6839
  // src/useCases/describeTicketStats.js
6539
6840
  var DescribeTicketStatsCommand = class _DescribeTicketStatsCommand {
6841
+ static {
6842
+ __name(this, "DescribeTicketStatsCommand");
6843
+ }
6540
6844
  /**
6541
6845
  * @description
6542
6846
  * @constructor
@@ -6600,6 +6904,9 @@ var DescribeTicketStatsCommand = class _DescribeTicketStatsCommand {
6600
6904
 
6601
6905
  // src/useCases/describeTimeSheet.js
6602
6906
  var DescribeTimeSheetCommand = class _DescribeTimeSheetCommand {
6907
+ static {
6908
+ __name(this, "DescribeTimeSheetCommand");
6909
+ }
6603
6910
  /**
6604
6911
  * @description
6605
6912
  * @constructor
@@ -6663,6 +6970,9 @@ var DescribeTimeSheetCommand = class _DescribeTimeSheetCommand {
6663
6970
 
6664
6971
  // src/useCases/describeTimeSheetStats.js
6665
6972
  var DescribeTimeSheetStatsCommand = class _DescribeTimeSheetStatsCommand {
6973
+ static {
6974
+ __name(this, "DescribeTimeSheetStatsCommand");
6975
+ }
6666
6976
  /**
6667
6977
  * @description
6668
6978
  * @constructor
@@ -6726,6 +7036,9 @@ var DescribeTimeSheetStatsCommand = class _DescribeTimeSheetStatsCommand {
6726
7036
 
6727
7037
  // src/useCases/describeUser.js
6728
7038
  var DescribeUserCommand = class _DescribeUserCommand {
7039
+ static {
7040
+ __name(this, "DescribeUserCommand");
7041
+ }
6729
7042
  /**
6730
7043
  * @description
6731
7044
  * @constructor
@@ -6789,6 +7102,9 @@ var DescribeUserCommand = class _DescribeUserCommand {
6789
7102
 
6790
7103
  // src/useCases/describeVendor.js
6791
7104
  var DescribeVendorCommand = class _DescribeVendorCommand {
7105
+ static {
7106
+ __name(this, "DescribeVendorCommand");
7107
+ }
6792
7108
  /**
6793
7109
  * @description
6794
7110
  * @constructor
@@ -6852,6 +7168,9 @@ var DescribeVendorCommand = class _DescribeVendorCommand {
6852
7168
 
6853
7169
  // src/useCases/describeWindowCovering.js
6854
7170
  var DescribeWindowCoveringCommand = class _DescribeWindowCoveringCommand {
7171
+ static {
7172
+ __name(this, "DescribeWindowCoveringCommand");
7173
+ }
6855
7174
  /**
6856
7175
  * @description
6857
7176
  * @constructor
@@ -6915,6 +7234,9 @@ var DescribeWindowCoveringCommand = class _DescribeWindowCoveringCommand {
6915
7234
 
6916
7235
  // src/useCases/discoverReservations.js
6917
7236
  var DiscoverReservationsCommand = class _DiscoverReservationsCommand {
7237
+ static {
7238
+ __name(this, "DiscoverReservationsCommand");
7239
+ }
6918
7240
  /**
6919
7241
  * @description
6920
7242
  * @constructor
@@ -6978,6 +7300,9 @@ var DiscoverReservationsCommand = class _DiscoverReservationsCommand {
6978
7300
 
6979
7301
  // src/useCases/emailUserAccountSetup.js
6980
7302
  var EmailUserAccountSetupCommand = class _EmailUserAccountSetupCommand {
7303
+ static {
7304
+ __name(this, "EmailUserAccountSetupCommand");
7305
+ }
6981
7306
  /**
6982
7307
  * @description
6983
7308
  * @constructor
@@ -7041,6 +7366,9 @@ var EmailUserAccountSetupCommand = class _EmailUserAccountSetupCommand {
7041
7366
 
7042
7367
  // src/useCases/finishRegisterPasskey.js
7043
7368
  var FinishRegisterPasskeyCommand = class _FinishRegisterPasskeyCommand {
7369
+ static {
7370
+ __name(this, "FinishRegisterPasskeyCommand");
7371
+ }
7044
7372
  /**
7045
7373
  * @description
7046
7374
  * @constructor
@@ -7104,6 +7432,9 @@ var FinishRegisterPasskeyCommand = class _FinishRegisterPasskeyCommand {
7104
7432
 
7105
7433
  // src/useCases/listAlarms.js
7106
7434
  var ListAlarmsCommand = class _ListAlarmsCommand {
7435
+ static {
7436
+ __name(this, "ListAlarmsCommand");
7437
+ }
7107
7438
  /**
7108
7439
  * @description
7109
7440
  * @constructor
@@ -7167,6 +7498,9 @@ var ListAlarmsCommand = class _ListAlarmsCommand {
7167
7498
 
7168
7499
  // src/useCases/listAnnouncements.js
7169
7500
  var ListAnnouncementsCommand = class _ListAnnouncementsCommand {
7501
+ static {
7502
+ __name(this, "ListAnnouncementsCommand");
7503
+ }
7170
7504
  /**
7171
7505
  * @description
7172
7506
  * @constructor
@@ -7230,6 +7564,9 @@ var ListAnnouncementsCommand = class _ListAnnouncementsCommand {
7230
7564
 
7231
7565
  // src/useCases/listCameras.js
7232
7566
  var ListCamerasCommand = class _ListCamerasCommand {
7567
+ static {
7568
+ __name(this, "ListCamerasCommand");
7569
+ }
7233
7570
  /**
7234
7571
  * @description
7235
7572
  * @constructor
@@ -7293,6 +7630,9 @@ var ListCamerasCommand = class _ListCamerasCommand {
7293
7630
 
7294
7631
  // src/useCases/listCategories.js
7295
7632
  var ListCategoriesCommand = class _ListCategoriesCommand {
7633
+ static {
7634
+ __name(this, "ListCategoriesCommand");
7635
+ }
7296
7636
  /**
7297
7637
  * @description
7298
7638
  * @constructor
@@ -7356,6 +7696,9 @@ var ListCategoriesCommand = class _ListCategoriesCommand {
7356
7696
 
7357
7697
  // src/useCases/listCourtesy.js
7358
7698
  var ListCourtesyCommand = class _ListCourtesyCommand {
7699
+ static {
7700
+ __name(this, "ListCourtesyCommand");
7701
+ }
7359
7702
  /**
7360
7703
  * @description
7361
7704
  * @constructor
@@ -7419,6 +7762,9 @@ var ListCourtesyCommand = class _ListCourtesyCommand {
7419
7762
 
7420
7763
  // src/useCases/listDimmers.js
7421
7764
  var ListDimmersCommand = class _ListDimmersCommand {
7765
+ static {
7766
+ __name(this, "ListDimmersCommand");
7767
+ }
7422
7768
  /**
7423
7769
  * @description
7424
7770
  * @constructor
@@ -7482,6 +7828,9 @@ var ListDimmersCommand = class _ListDimmersCommand {
7482
7828
 
7483
7829
  // src/useCases/listDiscoveredDevices.js
7484
7830
  var ListDiscoveredDevicesCommand = class _ListDiscoveredDevicesCommand {
7831
+ static {
7832
+ __name(this, "ListDiscoveredDevicesCommand");
7833
+ }
7485
7834
  /**
7486
7835
  * @description
7487
7836
  * @constructor
@@ -7545,6 +7894,9 @@ var ListDiscoveredDevicesCommand = class _ListDiscoveredDevicesCommand {
7545
7894
 
7546
7895
  // src/useCases/listIssues.js
7547
7896
  var ListIssuesCommand = class _ListIssuesCommand {
7897
+ static {
7898
+ __name(this, "ListIssuesCommand");
7899
+ }
7548
7900
  /**
7549
7901
  * @description
7550
7902
  * @constructor
@@ -7608,6 +7960,9 @@ var ListIssuesCommand = class _ListIssuesCommand {
7608
7960
 
7609
7961
  // src/useCases/listLocks.js
7610
7962
  var ListLocksCommand = class _ListLocksCommand {
7963
+ static {
7964
+ __name(this, "ListLocksCommand");
7965
+ }
7611
7966
  /**
7612
7967
  * @description
7613
7968
  * @constructor
@@ -7671,6 +8026,9 @@ var ListLocksCommand = class _ListLocksCommand {
7671
8026
 
7672
8027
  // src/useCases/listMediaSources.js
7673
8028
  var ListMediaSourcesCommand = class _ListMediaSourcesCommand {
8029
+ static {
8030
+ __name(this, "ListMediaSourcesCommand");
8031
+ }
7674
8032
  /**
7675
8033
  * @description
7676
8034
  * @constructor
@@ -7734,6 +8092,9 @@ var ListMediaSourcesCommand = class _ListMediaSourcesCommand {
7734
8092
 
7735
8093
  // src/useCases/listMyOrders.js
7736
8094
  var ListMyOrdersCommand = class _ListMyOrdersCommand {
8095
+ static {
8096
+ __name(this, "ListMyOrdersCommand");
8097
+ }
7737
8098
  /**
7738
8099
  * @description
7739
8100
  * @constructor
@@ -7797,6 +8158,9 @@ var ListMyOrdersCommand = class _ListMyOrdersCommand {
7797
8158
 
7798
8159
  // src/useCases/listMyProperties.js
7799
8160
  var ListMyPropertiesCommand = class _ListMyPropertiesCommand {
8161
+ static {
8162
+ __name(this, "ListMyPropertiesCommand");
8163
+ }
7800
8164
  /**
7801
8165
  * @description
7802
8166
  * @constructor
@@ -7860,6 +8224,9 @@ var ListMyPropertiesCommand = class _ListMyPropertiesCommand {
7860
8224
 
7861
8225
  // src/useCases/listMyReservations.js
7862
8226
  var ListMyReservationsCommand = class _ListMyReservationsCommand {
8227
+ static {
8228
+ __name(this, "ListMyReservationsCommand");
8229
+ }
7863
8230
  /**
7864
8231
  * @description
7865
8232
  * @constructor
@@ -7923,6 +8290,9 @@ var ListMyReservationsCommand = class _ListMyReservationsCommand {
7923
8290
 
7924
8291
  // src/useCases/listMySpaces.js
7925
8292
  var ListMySpacesCommand = class _ListMySpacesCommand {
8293
+ static {
8294
+ __name(this, "ListMySpacesCommand");
8295
+ }
7926
8296
  /**
7927
8297
  * @description
7928
8298
  * @constructor
@@ -7986,6 +8356,9 @@ var ListMySpacesCommand = class _ListMySpacesCommand {
7986
8356
 
7987
8357
  // src/useCases/listMyTickets.js
7988
8358
  var ListMyTicketsCommand = class _ListMyTicketsCommand {
8359
+ static {
8360
+ __name(this, "ListMyTicketsCommand");
8361
+ }
7989
8362
  /**
7990
8363
  * @description
7991
8364
  * @constructor
@@ -8049,6 +8422,9 @@ var ListMyTicketsCommand = class _ListMyTicketsCommand {
8049
8422
 
8050
8423
  // src/useCases/listMyTimeSheets.js
8051
8424
  var ListMyTimeSheetsCommand = class _ListMyTimeSheetsCommand {
8425
+ static {
8426
+ __name(this, "ListMyTimeSheetsCommand");
8427
+ }
8052
8428
  /**
8053
8429
  * @description
8054
8430
  * @constructor
@@ -8112,6 +8488,9 @@ var ListMyTimeSheetsCommand = class _ListMyTimeSheetsCommand {
8112
8488
 
8113
8489
  // src/useCases/listOrders.js
8114
8490
  var ListOrdersCommand = class _ListOrdersCommand {
8491
+ static {
8492
+ __name(this, "ListOrdersCommand");
8493
+ }
8115
8494
  /**
8116
8495
  * @description
8117
8496
  * @constructor
@@ -8175,6 +8554,9 @@ var ListOrdersCommand = class _ListOrdersCommand {
8175
8554
 
8176
8555
  // src/useCases/listOrganizations.js
8177
8556
  var ListOrganizationsCommand = class _ListOrganizationsCommand {
8557
+ static {
8558
+ __name(this, "ListOrganizationsCommand");
8559
+ }
8178
8560
  /**
8179
8561
  * @description
8180
8562
  * @constructor
@@ -8238,6 +8620,9 @@ var ListOrganizationsCommand = class _ListOrganizationsCommand {
8238
8620
 
8239
8621
  // src/useCases/listPolicies.js
8240
8622
  var ListPoliciesCommand = class _ListPoliciesCommand {
8623
+ static {
8624
+ __name(this, "ListPoliciesCommand");
8625
+ }
8241
8626
  /**
8242
8627
  * @description
8243
8628
  * @constructor
@@ -8301,6 +8686,9 @@ var ListPoliciesCommand = class _ListPoliciesCommand {
8301
8686
 
8302
8687
  // src/useCases/listProducts.js
8303
8688
  var ListProductsCommand = class _ListProductsCommand {
8689
+ static {
8690
+ __name(this, "ListProductsCommand");
8691
+ }
8304
8692
  /**
8305
8693
  * @description
8306
8694
  * @constructor
@@ -8364,6 +8752,9 @@ var ListProductsCommand = class _ListProductsCommand {
8364
8752
 
8365
8753
  // src/useCases/listProperties.js
8366
8754
  var ListPropertiesCommand = class _ListPropertiesCommand {
8755
+ static {
8756
+ __name(this, "ListPropertiesCommand");
8757
+ }
8367
8758
  /**
8368
8759
  * @description
8369
8760
  * @constructor
@@ -8427,6 +8818,9 @@ var ListPropertiesCommand = class _ListPropertiesCommand {
8427
8818
 
8428
8819
  // src/useCases/listReservations.js
8429
8820
  var ListReservationsCommand = class _ListReservationsCommand {
8821
+ static {
8822
+ __name(this, "ListReservationsCommand");
8823
+ }
8430
8824
  /**
8431
8825
  * @description
8432
8826
  * @constructor
@@ -8490,6 +8884,9 @@ var ListReservationsCommand = class _ListReservationsCommand {
8490
8884
 
8491
8885
  // src/useCases/listRooms.js
8492
8886
  var ListRoomsCommand = class _ListRoomsCommand {
8887
+ static {
8888
+ __name(this, "ListRoomsCommand");
8889
+ }
8493
8890
  /**
8494
8891
  * @description
8495
8892
  * @constructor
@@ -8553,6 +8950,9 @@ var ListRoomsCommand = class _ListRoomsCommand {
8553
8950
 
8554
8951
  // src/useCases/listRoomsInSpace.js
8555
8952
  var ListRoomsInSpaceCommand = class _ListRoomsInSpaceCommand {
8953
+ static {
8954
+ __name(this, "ListRoomsInSpaceCommand");
8955
+ }
8556
8956
  /**
8557
8957
  * @description
8558
8958
  * @constructor
@@ -8616,6 +9016,9 @@ var ListRoomsInSpaceCommand = class _ListRoomsInSpaceCommand {
8616
9016
 
8617
9017
  // src/useCases/listScenes.js
8618
9018
  var ListScenesCommand = class _ListScenesCommand {
9019
+ static {
9020
+ __name(this, "ListScenesCommand");
9021
+ }
8619
9022
  /**
8620
9023
  * @description
8621
9024
  * @constructor
@@ -8679,6 +9082,9 @@ var ListScenesCommand = class _ListScenesCommand {
8679
9082
 
8680
9083
  // src/useCases/listSpaces.js
8681
9084
  var ListSpacesCommand = class _ListSpacesCommand {
9085
+ static {
9086
+ __name(this, "ListSpacesCommand");
9087
+ }
8682
9088
  /**
8683
9089
  * @description
8684
9090
  * @constructor
@@ -8742,6 +9148,9 @@ var ListSpacesCommand = class _ListSpacesCommand {
8742
9148
 
8743
9149
  // src/useCases/listSwitches.js
8744
9150
  var ListSwitchesCommand = class _ListSwitchesCommand {
9151
+ static {
9152
+ __name(this, "ListSwitchesCommand");
9153
+ }
8745
9154
  /**
8746
9155
  * @description
8747
9156
  * @constructor
@@ -8805,6 +9214,9 @@ var ListSwitchesCommand = class _ListSwitchesCommand {
8805
9214
 
8806
9215
  // src/useCases/listTeam.js
8807
9216
  var ListTeamCommand = class _ListTeamCommand {
9217
+ static {
9218
+ __name(this, "ListTeamCommand");
9219
+ }
8808
9220
  /**
8809
9221
  * @description
8810
9222
  * @constructor
@@ -8868,6 +9280,9 @@ var ListTeamCommand = class _ListTeamCommand {
8868
9280
 
8869
9281
  // src/useCases/listThermostats.js
8870
9282
  var ListThermostatsCommand = class _ListThermostatsCommand {
9283
+ static {
9284
+ __name(this, "ListThermostatsCommand");
9285
+ }
8871
9286
  /**
8872
9287
  * @description
8873
9288
  * @constructor
@@ -8931,6 +9346,9 @@ var ListThermostatsCommand = class _ListThermostatsCommand {
8931
9346
 
8932
9347
  // src/useCases/listTickets.js
8933
9348
  var ListTicketsCommand = class _ListTicketsCommand {
9349
+ static {
9350
+ __name(this, "ListTicketsCommand");
9351
+ }
8934
9352
  /**
8935
9353
  * @description
8936
9354
  * @constructor
@@ -8994,6 +9412,9 @@ var ListTicketsCommand = class _ListTicketsCommand {
8994
9412
 
8995
9413
  // src/useCases/listTimeSheets.js
8996
9414
  var ListTimeSheetsCommand = class _ListTimeSheetsCommand {
9415
+ static {
9416
+ __name(this, "ListTimeSheetsCommand");
9417
+ }
8997
9418
  /**
8998
9419
  * @description
8999
9420
  * @constructor
@@ -9057,6 +9478,9 @@ var ListTimeSheetsCommand = class _ListTimeSheetsCommand {
9057
9478
 
9058
9479
  // src/useCases/listUserMobileKeys.js
9059
9480
  var ListUserMobileKeysCommand = class _ListUserMobileKeysCommand {
9481
+ static {
9482
+ __name(this, "ListUserMobileKeysCommand");
9483
+ }
9060
9484
  /**
9061
9485
  * @description
9062
9486
  * @constructor
@@ -9120,6 +9544,9 @@ var ListUserMobileKeysCommand = class _ListUserMobileKeysCommand {
9120
9544
 
9121
9545
  // src/useCases/listUserOrders.js
9122
9546
  var ListUserOrdersCommand = class _ListUserOrdersCommand {
9547
+ static {
9548
+ __name(this, "ListUserOrdersCommand");
9549
+ }
9123
9550
  /**
9124
9551
  * @description
9125
9552
  * @constructor
@@ -9183,6 +9610,9 @@ var ListUserOrdersCommand = class _ListUserOrdersCommand {
9183
9610
 
9184
9611
  // src/useCases/listUserReservations.js
9185
9612
  var ListUserReservationsCommand = class _ListUserReservationsCommand {
9613
+ static {
9614
+ __name(this, "ListUserReservationsCommand");
9615
+ }
9186
9616
  /**
9187
9617
  * @description
9188
9618
  * @constructor
@@ -9246,6 +9676,9 @@ var ListUserReservationsCommand = class _ListUserReservationsCommand {
9246
9676
 
9247
9677
  // src/useCases/listUserSpaces.js
9248
9678
  var ListUserSpacesCommand = class _ListUserSpacesCommand {
9679
+ static {
9680
+ __name(this, "ListUserSpacesCommand");
9681
+ }
9249
9682
  /**
9250
9683
  * @description
9251
9684
  * @constructor
@@ -9309,6 +9742,9 @@ var ListUserSpacesCommand = class _ListUserSpacesCommand {
9309
9742
 
9310
9743
  // src/useCases/listUsers.js
9311
9744
  var ListUsersCommand = class _ListUsersCommand {
9745
+ static {
9746
+ __name(this, "ListUsersCommand");
9747
+ }
9312
9748
  /**
9313
9749
  * @description
9314
9750
  * @constructor
@@ -9372,6 +9808,9 @@ var ListUsersCommand = class _ListUsersCommand {
9372
9808
 
9373
9809
  // src/useCases/listVendors.js
9374
9810
  var ListVendorsCommand = class _ListVendorsCommand {
9811
+ static {
9812
+ __name(this, "ListVendorsCommand");
9813
+ }
9375
9814
  /**
9376
9815
  * @description
9377
9816
  * @constructor
@@ -9435,6 +9874,9 @@ var ListVendorsCommand = class _ListVendorsCommand {
9435
9874
 
9436
9875
  // src/useCases/listWindowCoverings.js
9437
9876
  var ListWindowCoveringsCommand = class _ListWindowCoveringsCommand {
9877
+ static {
9878
+ __name(this, "ListWindowCoveringsCommand");
9879
+ }
9438
9880
  /**
9439
9881
  * @description
9440
9882
  * @constructor
@@ -9498,6 +9940,9 @@ var ListWindowCoveringsCommand = class _ListWindowCoveringsCommand {
9498
9940
 
9499
9941
  // src/useCases/loginFinish.js
9500
9942
  var LoginFinishCommand = class _LoginFinishCommand {
9943
+ static {
9944
+ __name(this, "LoginFinishCommand");
9945
+ }
9501
9946
  /**
9502
9947
  * @description
9503
9948
  * @constructor
@@ -9561,6 +10006,9 @@ var LoginFinishCommand = class _LoginFinishCommand {
9561
10006
 
9562
10007
  // src/useCases/loginStart.js
9563
10008
  var LoginStartCommand = class _LoginStartCommand {
10009
+ static {
10010
+ __name(this, "LoginStartCommand");
10011
+ }
9564
10012
  /**
9565
10013
  * @description
9566
10014
  * @constructor
@@ -9624,6 +10072,9 @@ var LoginStartCommand = class _LoginStartCommand {
9624
10072
 
9625
10073
  // src/useCases/logoutSelf.js
9626
10074
  var LogoutSelfCommand = class _LogoutSelfCommand {
10075
+ static {
10076
+ __name(this, "LogoutSelfCommand");
10077
+ }
9627
10078
  /**
9628
10079
  * @description
9629
10080
  * @constructor
@@ -9687,6 +10138,9 @@ var LogoutSelfCommand = class _LogoutSelfCommand {
9687
10138
 
9688
10139
  // src/useCases/logoutUser.js
9689
10140
  var LogoutUserCommand = class _LogoutUserCommand {
10141
+ static {
10142
+ __name(this, "LogoutUserCommand");
10143
+ }
9690
10144
  /**
9691
10145
  * @description
9692
10146
  * @constructor
@@ -9750,6 +10204,9 @@ var LogoutUserCommand = class _LogoutUserCommand {
9750
10204
 
9751
10205
  // src/useCases/matchUserIdentification.js
9752
10206
  var MatchUserIdentificationCommand = class _MatchUserIdentificationCommand {
10207
+ static {
10208
+ __name(this, "MatchUserIdentificationCommand");
10209
+ }
9753
10210
  /**
9754
10211
  * @description
9755
10212
  * @constructor
@@ -9813,6 +10270,9 @@ var MatchUserIdentificationCommand = class _MatchUserIdentificationCommand {
9813
10270
 
9814
10271
  // src/useCases/oCRDocument.js
9815
10272
  var OCRDocumentCommand = class _OCRDocumentCommand {
10273
+ static {
10274
+ __name(this, "OCRDocumentCommand");
10275
+ }
9816
10276
  /**
9817
10277
  * @description
9818
10278
  * @constructor
@@ -9876,6 +10336,9 @@ var OCRDocumentCommand = class _OCRDocumentCommand {
9876
10336
 
9877
10337
  // src/useCases/purchaseReservationEarlyCheckInProducts.js
9878
10338
  var PurchaseReservationEarlyCheckInProductsCommand = class _PurchaseReservationEarlyCheckInProductsCommand {
10339
+ static {
10340
+ __name(this, "PurchaseReservationEarlyCheckInProductsCommand");
10341
+ }
9879
10342
  /**
9880
10343
  * @description
9881
10344
  * @constructor
@@ -9939,6 +10402,9 @@ var PurchaseReservationEarlyCheckInProductsCommand = class _PurchaseReservationE
9939
10402
 
9940
10403
  // src/useCases/purchaseReservationLateCheckOutProducts.js
9941
10404
  var PurchaseReservationLateCheckOutProductsCommand = class _PurchaseReservationLateCheckOutProductsCommand {
10405
+ static {
10406
+ __name(this, "PurchaseReservationLateCheckOutProductsCommand");
10407
+ }
9942
10408
  /**
9943
10409
  * @description
9944
10410
  * @constructor
@@ -10002,6 +10468,9 @@ var PurchaseReservationLateCheckOutProductsCommand = class _PurchaseReservationL
10002
10468
 
10003
10469
  // src/useCases/purchaseReservationPetProducts.js
10004
10470
  var PurchaseReservationPetProductsCommand = class _PurchaseReservationPetProductsCommand {
10471
+ static {
10472
+ __name(this, "PurchaseReservationPetProductsCommand");
10473
+ }
10005
10474
  /**
10006
10475
  * @description
10007
10476
  * @constructor
@@ -10065,6 +10534,9 @@ var PurchaseReservationPetProductsCommand = class _PurchaseReservationPetProduct
10065
10534
 
10066
10535
  // src/useCases/purchaseReservationPromos.js
10067
10536
  var PurchaseReservationPromosCommand = class _PurchaseReservationPromosCommand {
10537
+ static {
10538
+ __name(this, "PurchaseReservationPromosCommand");
10539
+ }
10068
10540
  /**
10069
10541
  * @description
10070
10542
  * @constructor
@@ -10128,6 +10600,9 @@ var PurchaseReservationPromosCommand = class _PurchaseReservationPromosCommand {
10128
10600
 
10129
10601
  // src/useCases/purchaseReservationRoomUpgrades.js
10130
10602
  var PurchaseReservationRoomUpgradesCommand = class _PurchaseReservationRoomUpgradesCommand {
10603
+ static {
10604
+ __name(this, "PurchaseReservationRoomUpgradesCommand");
10605
+ }
10131
10606
  /**
10132
10607
  * @description
10133
10608
  * @constructor
@@ -10191,6 +10666,9 @@ var PurchaseReservationRoomUpgradesCommand = class _PurchaseReservationRoomUpgra
10191
10666
 
10192
10667
  // src/useCases/refreshToken.js
10193
10668
  var RefreshTokenCommand = class _RefreshTokenCommand {
10669
+ static {
10670
+ __name(this, "RefreshTokenCommand");
10671
+ }
10194
10672
  /**
10195
10673
  * @description
10196
10674
  * @constructor
@@ -10254,6 +10732,9 @@ var RefreshTokenCommand = class _RefreshTokenCommand {
10254
10732
 
10255
10733
  // src/useCases/requestLoginToken.js
10256
10734
  var RequestLoginTokenCommand = class _RequestLoginTokenCommand {
10735
+ static {
10736
+ __name(this, "RequestLoginTokenCommand");
10737
+ }
10257
10738
  /**
10258
10739
  * @description
10259
10740
  * @constructor
@@ -10317,6 +10798,9 @@ var RequestLoginTokenCommand = class _RequestLoginTokenCommand {
10317
10798
 
10318
10799
  // src/useCases/sendCheckInSMS.js
10319
10800
  var SendCheckInSMSCommand = class _SendCheckInSMSCommand {
10801
+ static {
10802
+ __name(this, "SendCheckInSMSCommand");
10803
+ }
10320
10804
  /**
10321
10805
  * @description
10322
10806
  * @constructor
@@ -10380,6 +10864,9 @@ var SendCheckInSMSCommand = class _SendCheckInSMSCommand {
10380
10864
 
10381
10865
  // src/useCases/sendCheckOutSMS.js
10382
10866
  var SendCheckOutSMSCommand = class _SendCheckOutSMSCommand {
10867
+ static {
10868
+ __name(this, "SendCheckOutSMSCommand");
10869
+ }
10383
10870
  /**
10384
10871
  * @description
10385
10872
  * @constructor
@@ -10443,6 +10930,9 @@ var SendCheckOutSMSCommand = class _SendCheckOutSMSCommand {
10443
10930
 
10444
10931
  // src/useCases/sendPreArrivalEmail.js
10445
10932
  var SendPreArrivalEmailCommand = class _SendPreArrivalEmailCommand {
10933
+ static {
10934
+ __name(this, "SendPreArrivalEmailCommand");
10935
+ }
10446
10936
  /**
10447
10937
  * @description
10448
10938
  * @constructor
@@ -10506,6 +10996,9 @@ var SendPreArrivalEmailCommand = class _SendPreArrivalEmailCommand {
10506
10996
 
10507
10997
  // src/useCases/sendPreArrivalSMS.js
10508
10998
  var SendPreArrivalSMSCommand = class _SendPreArrivalSMSCommand {
10999
+ static {
11000
+ __name(this, "SendPreArrivalSMSCommand");
11001
+ }
10509
11002
  /**
10510
11003
  * @description
10511
11004
  * @constructor
@@ -10569,6 +11062,9 @@ var SendPreArrivalSMSCommand = class _SendPreArrivalSMSCommand {
10569
11062
 
10570
11063
  // src/useCases/sendRoomControlSMS.js
10571
11064
  var SendRoomControlSMSCommand = class _SendRoomControlSMSCommand {
11065
+ static {
11066
+ __name(this, "SendRoomControlSMSCommand");
11067
+ }
10572
11068
  /**
10573
11069
  * @description
10574
11070
  * @constructor
@@ -10632,6 +11128,9 @@ var SendRoomControlSMSCommand = class _SendRoomControlSMSCommand {
10632
11128
 
10633
11129
  // src/useCases/sendVerificationCode.js
10634
11130
  var SendVerificationCodeCommand = class _SendVerificationCodeCommand {
11131
+ static {
11132
+ __name(this, "SendVerificationCodeCommand");
11133
+ }
10635
11134
  /**
10636
11135
  * @description
10637
11136
  * @constructor
@@ -10695,6 +11194,9 @@ var SendVerificationCodeCommand = class _SendVerificationCodeCommand {
10695
11194
 
10696
11195
  // src/useCases/setAlarm.js
10697
11196
  var SetAlarmCommand = class _SetAlarmCommand {
11197
+ static {
11198
+ __name(this, "SetAlarmCommand");
11199
+ }
10698
11200
  /**
10699
11201
  * @description
10700
11202
  * @constructor
@@ -10758,6 +11260,9 @@ var SetAlarmCommand = class _SetAlarmCommand {
10758
11260
 
10759
11261
  // src/useCases/setCamera.js
10760
11262
  var SetCameraCommand = class _SetCameraCommand {
11263
+ static {
11264
+ __name(this, "SetCameraCommand");
11265
+ }
10761
11266
  /**
10762
11267
  * @description
10763
11268
  * @constructor
@@ -10821,6 +11326,9 @@ var SetCameraCommand = class _SetCameraCommand {
10821
11326
 
10822
11327
  // src/useCases/setCourtesy.js
10823
11328
  var SetCourtesyCommand = class _SetCourtesyCommand {
11329
+ static {
11330
+ __name(this, "SetCourtesyCommand");
11331
+ }
10824
11332
  /**
10825
11333
  * @description
10826
11334
  * @constructor
@@ -10884,6 +11392,9 @@ var SetCourtesyCommand = class _SetCourtesyCommand {
10884
11392
 
10885
11393
  // src/useCases/setDimmer.js
10886
11394
  var SetDimmerCommand = class _SetDimmerCommand {
11395
+ static {
11396
+ __name(this, "SetDimmerCommand");
11397
+ }
10887
11398
  /**
10888
11399
  * @description
10889
11400
  * @constructor
@@ -10947,6 +11458,9 @@ var SetDimmerCommand = class _SetDimmerCommand {
10947
11458
 
10948
11459
  // src/useCases/setLock.js
10949
11460
  var SetLockCommand = class _SetLockCommand {
11461
+ static {
11462
+ __name(this, "SetLockCommand");
11463
+ }
10950
11464
  /**
10951
11465
  * @description
10952
11466
  * @constructor
@@ -11010,6 +11524,9 @@ var SetLockCommand = class _SetLockCommand {
11010
11524
 
11011
11525
  // src/useCases/setMediaSource.js
11012
11526
  var SetMediaSourceCommand = class _SetMediaSourceCommand {
11527
+ static {
11528
+ __name(this, "SetMediaSourceCommand");
11529
+ }
11013
11530
  /**
11014
11531
  * @description
11015
11532
  * @constructor
@@ -11073,6 +11590,9 @@ var SetMediaSourceCommand = class _SetMediaSourceCommand {
11073
11590
 
11074
11591
  // src/useCases/setRoomScene.js
11075
11592
  var SetRoomSceneCommand = class _SetRoomSceneCommand {
11593
+ static {
11594
+ __name(this, "SetRoomSceneCommand");
11595
+ }
11076
11596
  /**
11077
11597
  * @description
11078
11598
  * @constructor
@@ -11136,6 +11656,9 @@ var SetRoomSceneCommand = class _SetRoomSceneCommand {
11136
11656
 
11137
11657
  // src/useCases/setScene.js
11138
11658
  var SetSceneCommand = class _SetSceneCommand {
11659
+ static {
11660
+ __name(this, "SetSceneCommand");
11661
+ }
11139
11662
  /**
11140
11663
  * @description
11141
11664
  * @constructor
@@ -11199,6 +11722,9 @@ var SetSceneCommand = class _SetSceneCommand {
11199
11722
 
11200
11723
  // src/useCases/setSpaceScene.js
11201
11724
  var SetSpaceSceneCommand = class _SetSpaceSceneCommand {
11725
+ static {
11726
+ __name(this, "SetSpaceSceneCommand");
11727
+ }
11202
11728
  /**
11203
11729
  * @description
11204
11730
  * @constructor
@@ -11262,6 +11788,9 @@ var SetSpaceSceneCommand = class _SetSpaceSceneCommand {
11262
11788
 
11263
11789
  // src/useCases/setSwitch.js
11264
11790
  var SetSwitchCommand = class _SetSwitchCommand {
11791
+ static {
11792
+ __name(this, "SetSwitchCommand");
11793
+ }
11265
11794
  /**
11266
11795
  * @description
11267
11796
  * @constructor
@@ -11325,6 +11854,9 @@ var SetSwitchCommand = class _SetSwitchCommand {
11325
11854
 
11326
11855
  // src/useCases/setThermostat.js
11327
11856
  var SetThermostatCommand = class _SetThermostatCommand {
11857
+ static {
11858
+ __name(this, "SetThermostatCommand");
11859
+ }
11328
11860
  /**
11329
11861
  * @description
11330
11862
  * @constructor
@@ -11388,6 +11920,9 @@ var SetThermostatCommand = class _SetThermostatCommand {
11388
11920
 
11389
11921
  // src/useCases/setWindowCovering.js
11390
11922
  var SetWindowCoveringCommand = class _SetWindowCoveringCommand {
11923
+ static {
11924
+ __name(this, "SetWindowCoveringCommand");
11925
+ }
11391
11926
  /**
11392
11927
  * @description
11393
11928
  * @constructor
@@ -11451,6 +11986,9 @@ var SetWindowCoveringCommand = class _SetWindowCoveringCommand {
11451
11986
 
11452
11987
  // src/useCases/startRegisterPasskey.js
11453
11988
  var StartRegisterPasskeyCommand = class _StartRegisterPasskeyCommand {
11989
+ static {
11990
+ __name(this, "StartRegisterPasskeyCommand");
11991
+ }
11454
11992
  /**
11455
11993
  * @description
11456
11994
  * @constructor
@@ -11514,6 +12052,9 @@ var StartRegisterPasskeyCommand = class _StartRegisterPasskeyCommand {
11514
12052
 
11515
12053
  // src/useCases/startSOS.js
11516
12054
  var StartSOSCommand = class _StartSOSCommand {
12055
+ static {
12056
+ __name(this, "StartSOSCommand");
12057
+ }
11517
12058
  /**
11518
12059
  * @description
11519
12060
  * @constructor
@@ -11577,6 +12118,9 @@ var StartSOSCommand = class _StartSOSCommand {
11577
12118
 
11578
12119
  // src/useCases/stopSOS.js
11579
12120
  var StopSOSCommand = class _StopSOSCommand {
12121
+ static {
12122
+ __name(this, "StopSOSCommand");
12123
+ }
11580
12124
  /**
11581
12125
  * @description
11582
12126
  * @constructor
@@ -11640,6 +12184,9 @@ var StopSOSCommand = class _StopSOSCommand {
11640
12184
 
11641
12185
  // src/useCases/tipUser.js
11642
12186
  var TipUserCommand = class _TipUserCommand {
12187
+ static {
12188
+ __name(this, "TipUserCommand");
12189
+ }
11643
12190
  /**
11644
12191
  * @description
11645
12192
  * @constructor
@@ -11703,6 +12250,9 @@ var TipUserCommand = class _TipUserCommand {
11703
12250
 
11704
12251
  // src/useCases/updateAlarm.js
11705
12252
  var UpdateAlarmCommand = class _UpdateAlarmCommand {
12253
+ static {
12254
+ __name(this, "UpdateAlarmCommand");
12255
+ }
11706
12256
  /**
11707
12257
  * @description
11708
12258
  * @constructor
@@ -11766,6 +12316,9 @@ var UpdateAlarmCommand = class _UpdateAlarmCommand {
11766
12316
 
11767
12317
  // src/useCases/updateAnnouncement.js
11768
12318
  var UpdateAnnouncementCommand = class _UpdateAnnouncementCommand {
12319
+ static {
12320
+ __name(this, "UpdateAnnouncementCommand");
12321
+ }
11769
12322
  /**
11770
12323
  * @description
11771
12324
  * @constructor
@@ -11829,6 +12382,9 @@ var UpdateAnnouncementCommand = class _UpdateAnnouncementCommand {
11829
12382
 
11830
12383
  // src/useCases/updateCamera.js
11831
12384
  var UpdateCameraCommand = class _UpdateCameraCommand {
12385
+ static {
12386
+ __name(this, "UpdateCameraCommand");
12387
+ }
11832
12388
  /**
11833
12389
  * @description
11834
12390
  * @constructor
@@ -11892,6 +12448,9 @@ var UpdateCameraCommand = class _UpdateCameraCommand {
11892
12448
 
11893
12449
  // src/useCases/updateCategory.js
11894
12450
  var UpdateCategoryCommand = class _UpdateCategoryCommand {
12451
+ static {
12452
+ __name(this, "UpdateCategoryCommand");
12453
+ }
11895
12454
  /**
11896
12455
  * @description
11897
12456
  * @constructor
@@ -11955,6 +12514,9 @@ var UpdateCategoryCommand = class _UpdateCategoryCommand {
11955
12514
 
11956
12515
  // src/useCases/updateCourtesy.js
11957
12516
  var UpdateCourtesyCommand = class _UpdateCourtesyCommand {
12517
+ static {
12518
+ __name(this, "UpdateCourtesyCommand");
12519
+ }
11958
12520
  /**
11959
12521
  * @description
11960
12522
  * @constructor
@@ -12018,6 +12580,9 @@ var UpdateCourtesyCommand = class _UpdateCourtesyCommand {
12018
12580
 
12019
12581
  // src/useCases/updateDimmer.js
12020
12582
  var UpdateDimmerCommand = class _UpdateDimmerCommand {
12583
+ static {
12584
+ __name(this, "UpdateDimmerCommand");
12585
+ }
12021
12586
  /**
12022
12587
  * @description
12023
12588
  * @constructor
@@ -12081,6 +12646,9 @@ var UpdateDimmerCommand = class _UpdateDimmerCommand {
12081
12646
 
12082
12647
  // src/useCases/updateDiscoveredDevice.js
12083
12648
  var UpdateDiscoveredDeviceCommand = class _UpdateDiscoveredDeviceCommand {
12649
+ static {
12650
+ __name(this, "UpdateDiscoveredDeviceCommand");
12651
+ }
12084
12652
  /**
12085
12653
  * @description
12086
12654
  * @constructor
@@ -12144,6 +12712,9 @@ var UpdateDiscoveredDeviceCommand = class _UpdateDiscoveredDeviceCommand {
12144
12712
 
12145
12713
  // src/useCases/updateIssue.js
12146
12714
  var UpdateIssueCommand = class _UpdateIssueCommand {
12715
+ static {
12716
+ __name(this, "UpdateIssueCommand");
12717
+ }
12147
12718
  /**
12148
12719
  * @description
12149
12720
  * @constructor
@@ -12207,6 +12778,9 @@ var UpdateIssueCommand = class _UpdateIssueCommand {
12207
12778
 
12208
12779
  // src/useCases/updateLock.js
12209
12780
  var UpdateLockCommand = class _UpdateLockCommand {
12781
+ static {
12782
+ __name(this, "UpdateLockCommand");
12783
+ }
12210
12784
  /**
12211
12785
  * @description
12212
12786
  * @constructor
@@ -12270,6 +12844,9 @@ var UpdateLockCommand = class _UpdateLockCommand {
12270
12844
 
12271
12845
  // src/useCases/updateMediaSource.js
12272
12846
  var UpdateMediaSourceCommand = class _UpdateMediaSourceCommand {
12847
+ static {
12848
+ __name(this, "UpdateMediaSourceCommand");
12849
+ }
12273
12850
  /**
12274
12851
  * @description
12275
12852
  * @constructor
@@ -12333,6 +12910,9 @@ var UpdateMediaSourceCommand = class _UpdateMediaSourceCommand {
12333
12910
 
12334
12911
  // src/useCases/updateMessageReadStatus.js
12335
12912
  var UpdateMessageReadStatusCommand = class _UpdateMessageReadStatusCommand {
12913
+ static {
12914
+ __name(this, "UpdateMessageReadStatusCommand");
12915
+ }
12336
12916
  /**
12337
12917
  * @description
12338
12918
  * @constructor
@@ -12396,6 +12976,9 @@ var UpdateMessageReadStatusCommand = class _UpdateMessageReadStatusCommand {
12396
12976
 
12397
12977
  // src/useCases/updateOrganization.js
12398
12978
  var UpdateOrganizationCommand = class _UpdateOrganizationCommand {
12979
+ static {
12980
+ __name(this, "UpdateOrganizationCommand");
12981
+ }
12399
12982
  /**
12400
12983
  * @description
12401
12984
  * @constructor
@@ -12459,6 +13042,9 @@ var UpdateOrganizationCommand = class _UpdateOrganizationCommand {
12459
13042
 
12460
13043
  // src/useCases/updatePolicy.js
12461
13044
  var UpdatePolicyCommand = class _UpdatePolicyCommand {
13045
+ static {
13046
+ __name(this, "UpdatePolicyCommand");
13047
+ }
12462
13048
  /**
12463
13049
  * @description
12464
13050
  * @constructor
@@ -12522,6 +13108,9 @@ var UpdatePolicyCommand = class _UpdatePolicyCommand {
12522
13108
 
12523
13109
  // src/useCases/updateProperty.js
12524
13110
  var UpdatePropertyCommand = class _UpdatePropertyCommand {
13111
+ static {
13112
+ __name(this, "UpdatePropertyCommand");
13113
+ }
12525
13114
  /**
12526
13115
  * @description
12527
13116
  * @constructor
@@ -12585,6 +13174,9 @@ var UpdatePropertyCommand = class _UpdatePropertyCommand {
12585
13174
 
12586
13175
  // src/useCases/updatePropertySettings.js
12587
13176
  var UpdatePropertySettingsCommand = class _UpdatePropertySettingsCommand {
13177
+ static {
13178
+ __name(this, "UpdatePropertySettingsCommand");
13179
+ }
12588
13180
  /**
12589
13181
  * @description
12590
13182
  * @constructor
@@ -12648,6 +13240,9 @@ var UpdatePropertySettingsCommand = class _UpdatePropertySettingsCommand {
12648
13240
 
12649
13241
  // src/useCases/updateReservation.js
12650
13242
  var UpdateReservationCommand = class _UpdateReservationCommand {
13243
+ static {
13244
+ __name(this, "UpdateReservationCommand");
13245
+ }
12651
13246
  /**
12652
13247
  * @description
12653
13248
  * @constructor
@@ -12711,6 +13306,9 @@ var UpdateReservationCommand = class _UpdateReservationCommand {
12711
13306
 
12712
13307
  // src/useCases/updateReservationExpectedArrivalTime.js
12713
13308
  var UpdateReservationExpectedArrivalTimeCommand = class _UpdateReservationExpectedArrivalTimeCommand {
13309
+ static {
13310
+ __name(this, "UpdateReservationExpectedArrivalTimeCommand");
13311
+ }
12714
13312
  /**
12715
13313
  * @description
12716
13314
  * @constructor
@@ -12774,6 +13372,9 @@ var UpdateReservationExpectedArrivalTimeCommand = class _UpdateReservationExpect
12774
13372
 
12775
13373
  // src/useCases/updateRoom.js
12776
13374
  var UpdateRoomCommand = class _UpdateRoomCommand {
13375
+ static {
13376
+ __name(this, "UpdateRoomCommand");
13377
+ }
12777
13378
  /**
12778
13379
  * @description
12779
13380
  * @constructor
@@ -12837,6 +13438,9 @@ var UpdateRoomCommand = class _UpdateRoomCommand {
12837
13438
 
12838
13439
  // src/useCases/updateSelf.js
12839
13440
  var UpdateSelfCommand = class _UpdateSelfCommand {
13441
+ static {
13442
+ __name(this, "UpdateSelfCommand");
13443
+ }
12840
13444
  /**
12841
13445
  * @description
12842
13446
  * @constructor
@@ -12900,6 +13504,9 @@ var UpdateSelfCommand = class _UpdateSelfCommand {
12900
13504
 
12901
13505
  // src/useCases/updateSpace.js
12902
13506
  var UpdateSpaceCommand = class _UpdateSpaceCommand {
13507
+ static {
13508
+ __name(this, "UpdateSpaceCommand");
13509
+ }
12903
13510
  /**
12904
13511
  * @description
12905
13512
  * @constructor
@@ -12963,6 +13570,9 @@ var UpdateSpaceCommand = class _UpdateSpaceCommand {
12963
13570
 
12964
13571
  // src/useCases/updateSwitch.js
12965
13572
  var UpdateSwitchCommand = class _UpdateSwitchCommand {
13573
+ static {
13574
+ __name(this, "UpdateSwitchCommand");
13575
+ }
12966
13576
  /**
12967
13577
  * @description
12968
13578
  * @constructor
@@ -13026,6 +13636,9 @@ var UpdateSwitchCommand = class _UpdateSwitchCommand {
13026
13636
 
13027
13637
  // src/useCases/updateThermostat.js
13028
13638
  var UpdateThermostatCommand = class _UpdateThermostatCommand {
13639
+ static {
13640
+ __name(this, "UpdateThermostatCommand");
13641
+ }
13029
13642
  /**
13030
13643
  * @description
13031
13644
  * @constructor
@@ -13089,6 +13702,9 @@ var UpdateThermostatCommand = class _UpdateThermostatCommand {
13089
13702
 
13090
13703
  // src/useCases/updateTicket.js
13091
13704
  var UpdateTicketCommand = class _UpdateTicketCommand {
13705
+ static {
13706
+ __name(this, "UpdateTicketCommand");
13707
+ }
13092
13708
  /**
13093
13709
  * @description
13094
13710
  * @constructor
@@ -13152,6 +13768,9 @@ var UpdateTicketCommand = class _UpdateTicketCommand {
13152
13768
 
13153
13769
  // src/useCases/updateTicketStatus.js
13154
13770
  var UpdateTicketStatusCommand = class _UpdateTicketStatusCommand {
13771
+ static {
13772
+ __name(this, "UpdateTicketStatusCommand");
13773
+ }
13155
13774
  /**
13156
13775
  * @description
13157
13776
  * @constructor
@@ -13215,6 +13834,9 @@ var UpdateTicketStatusCommand = class _UpdateTicketStatusCommand {
13215
13834
 
13216
13835
  // src/useCases/updateTimeSheet.js
13217
13836
  var UpdateTimeSheetCommand = class _UpdateTimeSheetCommand {
13837
+ static {
13838
+ __name(this, "UpdateTimeSheetCommand");
13839
+ }
13218
13840
  /**
13219
13841
  * @description
13220
13842
  * @constructor
@@ -13278,6 +13900,9 @@ var UpdateTimeSheetCommand = class _UpdateTimeSheetCommand {
13278
13900
 
13279
13901
  // src/useCases/updateTimeSheetTimeEntry.js
13280
13902
  var UpdateTimeSheetTimeEntryCommand = class _UpdateTimeSheetTimeEntryCommand {
13903
+ static {
13904
+ __name(this, "UpdateTimeSheetTimeEntryCommand");
13905
+ }
13281
13906
  /**
13282
13907
  * @description
13283
13908
  * @constructor
@@ -13341,6 +13966,9 @@ var UpdateTimeSheetTimeEntryCommand = class _UpdateTimeSheetTimeEntryCommand {
13341
13966
 
13342
13967
  // src/useCases/updateUser.js
13343
13968
  var UpdateUserCommand = class _UpdateUserCommand {
13969
+ static {
13970
+ __name(this, "UpdateUserCommand");
13971
+ }
13344
13972
  /**
13345
13973
  * @description
13346
13974
  * @constructor
@@ -13404,6 +14032,9 @@ var UpdateUserCommand = class _UpdateUserCommand {
13404
14032
 
13405
14033
  // src/useCases/updateVendor.js
13406
14034
  var UpdateVendorCommand = class _UpdateVendorCommand {
14035
+ static {
14036
+ __name(this, "UpdateVendorCommand");
14037
+ }
13407
14038
  /**
13408
14039
  * @description
13409
14040
  * @constructor
@@ -13467,6 +14098,9 @@ var UpdateVendorCommand = class _UpdateVendorCommand {
13467
14098
 
13468
14099
  // src/useCases/updateWindowCovering.js
13469
14100
  var UpdateWindowCoveringCommand = class _UpdateWindowCoveringCommand {
14101
+ static {
14102
+ __name(this, "UpdateWindowCoveringCommand");
14103
+ }
13470
14104
  /**
13471
14105
  * @description
13472
14106
  * @constructor
@@ -13530,6 +14164,9 @@ var UpdateWindowCoveringCommand = class _UpdateWindowCoveringCommand {
13530
14164
 
13531
14165
  // src/useCases/uploadImage.js
13532
14166
  var UploadImageCommand = class _UploadImageCommand {
14167
+ static {
14168
+ __name(this, "UploadImageCommand");
14169
+ }
13533
14170
  /**
13534
14171
  * @description
13535
14172
  * @constructor
@@ -13593,6 +14230,9 @@ var UploadImageCommand = class _UploadImageCommand {
13593
14230
 
13594
14231
  // src/useCases/upsertDiscoveredDevice.js
13595
14232
  var UpsertDiscoveredDeviceCommand = class _UpsertDiscoveredDeviceCommand {
14233
+ static {
14234
+ __name(this, "UpsertDiscoveredDeviceCommand");
14235
+ }
13596
14236
  /**
13597
14237
  * @description
13598
14238
  * @constructor