@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.
- package/dist/{chunk-EBJTC6MA.js → chunk-5I2BBUZP.js} +11 -1
- package/dist/{chunk-EBJTC6MA.js.map → chunk-5I2BBUZP.js.map} +1 -1
- package/dist/{chunk-HKJ2B2AA.js → chunk-FU4IK6I4.js} +3 -1
- package/dist/{chunk-KBBL6OJS.js → chunk-SLDNFNED.js} +290 -90
- package/dist/{chunk-KBBL6OJS.js.map → chunk-SLDNFNED.js.map} +1 -1
- package/dist/{chunk-36WNTEIW.js → chunk-SORMAXAX.js} +35 -2
- package/dist/{chunk-36WNTEIW.js.map → chunk-SORMAXAX.js.map} +1 -1
- package/dist/{chunk-MYWOGDCQ.js → chunk-TBEXLKDH.js} +25 -21
- package/dist/chunk-TBEXLKDH.js.map +1 -0
- package/dist/{chunk-W2G36LNI.js → chunk-UZQ2AWUY.js} +8 -1
- package/dist/{chunk-W2G36LNI.js.map → chunk-UZQ2AWUY.js.map} +1 -1
- package/dist/client.cjs +39 -7
- package/dist/client.cjs.map +1 -1
- package/dist/client.js +39 -9
- package/dist/client.js.map +1 -1
- package/dist/commands.cjs +85 -0
- package/dist/commands.cjs.map +1 -1
- package/dist/commands.js +87 -1
- package/dist/commands.js.map +1 -1
- package/dist/defs.js +1 -1
- package/dist/errors.cjs +37 -0
- package/dist/errors.cjs.map +1 -1
- package/dist/errors.js +3 -3
- package/dist/events.cjs +16 -12
- package/dist/events.cjs.map +1 -1
- package/dist/events.d.cts +7 -7
- package/dist/events.d.ts +7 -7
- package/dist/events.js +14 -14
- package/dist/index.cjs +1110 -108
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +21 -21
- package/dist/index.d.ts +21 -21
- package/dist/index.js +1110 -108
- package/dist/index.js.map +1 -1
- package/dist/models.cjs +292 -86
- package/dist/models.cjs.map +1 -1
- package/dist/models.js +3 -3
- package/dist/socketIoClient.cjs +7 -3
- package/dist/socketIoClient.cjs.map +1 -1
- package/dist/socketIoClient.d.cts +1 -1
- package/dist/socketIoClient.d.ts +1 -1
- package/dist/socketIoClient.js +9 -4
- package/dist/socketIoClient.js.map +1 -1
- package/dist/useCases.cjs +640 -0
- package/dist/useCases.cjs.map +1 -1
- package/dist/useCases.js +640 -2
- package/dist/useCases.js.map +1 -1
- package/dist/utils.cjs +340 -98
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.d.cts +2 -2
- package/dist/utils.d.ts +2 -2
- package/dist/utils.js +10 -5
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-MYWOGDCQ.js.map +0 -1
- /package/dist/{chunk-HKJ2B2AA.js.map → chunk-FU4IK6I4.js.map} +0 -0
package/dist/useCases.js
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
RefreshTokenCommand
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import
|
|
3
|
+
} from "./chunk-UZQ2AWUY.js";
|
|
4
|
+
import {
|
|
5
|
+
__name
|
|
6
|
+
} from "./chunk-FU4IK6I4.js";
|
|
5
7
|
|
|
6
8
|
// src/useCases/assignSpaceToReservation.js
|
|
7
9
|
var AssignSpaceToReservationCommand = class _AssignSpaceToReservationCommand {
|
|
10
|
+
static {
|
|
11
|
+
__name(this, "AssignSpaceToReservationCommand");
|
|
12
|
+
}
|
|
8
13
|
/**
|
|
9
14
|
* @description
|
|
10
15
|
* @constructor
|
|
@@ -68,6 +73,9 @@ var AssignSpaceToReservationCommand = class _AssignSpaceToReservationCommand {
|
|
|
68
73
|
|
|
69
74
|
// src/useCases/autoAssociateDiscoveredDevices.js
|
|
70
75
|
var AutoAssociateDiscoveredDevicesCommand = class _AutoAssociateDiscoveredDevicesCommand {
|
|
76
|
+
static {
|
|
77
|
+
__name(this, "AutoAssociateDiscoveredDevicesCommand");
|
|
78
|
+
}
|
|
71
79
|
/**
|
|
72
80
|
* @description
|
|
73
81
|
* @constructor
|
|
@@ -131,6 +139,9 @@ var AutoAssociateDiscoveredDevicesCommand = class _AutoAssociateDiscoveredDevice
|
|
|
131
139
|
|
|
132
140
|
// src/useCases/autoCloseTickets.js
|
|
133
141
|
var AutoCloseTicketsCommand = class _AutoCloseTicketsCommand {
|
|
142
|
+
static {
|
|
143
|
+
__name(this, "AutoCloseTicketsCommand");
|
|
144
|
+
}
|
|
134
145
|
/**
|
|
135
146
|
* @description
|
|
136
147
|
* @constructor
|
|
@@ -194,6 +205,9 @@ var AutoCloseTicketsCommand = class _AutoCloseTicketsCommand {
|
|
|
194
205
|
|
|
195
206
|
// src/useCases/batchNotifyCheckIn.js
|
|
196
207
|
var BatchNotifyCheckInCommand = class _BatchNotifyCheckInCommand {
|
|
208
|
+
static {
|
|
209
|
+
__name(this, "BatchNotifyCheckInCommand");
|
|
210
|
+
}
|
|
197
211
|
/**
|
|
198
212
|
* @description
|
|
199
213
|
* @constructor
|
|
@@ -257,6 +271,9 @@ var BatchNotifyCheckInCommand = class _BatchNotifyCheckInCommand {
|
|
|
257
271
|
|
|
258
272
|
// src/useCases/batchNotifyCheckOut.js
|
|
259
273
|
var BatchNotifyCheckOutCommand = class _BatchNotifyCheckOutCommand {
|
|
274
|
+
static {
|
|
275
|
+
__name(this, "BatchNotifyCheckOutCommand");
|
|
276
|
+
}
|
|
260
277
|
/**
|
|
261
278
|
* @description
|
|
262
279
|
* @constructor
|
|
@@ -320,6 +337,9 @@ var BatchNotifyCheckOutCommand = class _BatchNotifyCheckOutCommand {
|
|
|
320
337
|
|
|
321
338
|
// src/useCases/batchNotifyMissedCheckOut.js
|
|
322
339
|
var BatchNotifyMissedCheckOutCommand = class _BatchNotifyMissedCheckOutCommand {
|
|
340
|
+
static {
|
|
341
|
+
__name(this, "BatchNotifyMissedCheckOutCommand");
|
|
342
|
+
}
|
|
323
343
|
/**
|
|
324
344
|
* @description
|
|
325
345
|
* @constructor
|
|
@@ -383,6 +403,9 @@ var BatchNotifyMissedCheckOutCommand = class _BatchNotifyMissedCheckOutCommand {
|
|
|
383
403
|
|
|
384
404
|
// src/useCases/batchNotifyPreArrival.js
|
|
385
405
|
var BatchNotifyPreArrivalCommand = class _BatchNotifyPreArrivalCommand {
|
|
406
|
+
static {
|
|
407
|
+
__name(this, "BatchNotifyPreArrivalCommand");
|
|
408
|
+
}
|
|
386
409
|
/**
|
|
387
410
|
* @description
|
|
388
411
|
* @constructor
|
|
@@ -446,6 +469,9 @@ var BatchNotifyPreArrivalCommand = class _BatchNotifyPreArrivalCommand {
|
|
|
446
469
|
|
|
447
470
|
// src/useCases/bulkUpdateIssue.js
|
|
448
471
|
var BulkUpdateIssueCommand = class _BulkUpdateIssueCommand {
|
|
472
|
+
static {
|
|
473
|
+
__name(this, "BulkUpdateIssueCommand");
|
|
474
|
+
}
|
|
449
475
|
/**
|
|
450
476
|
* @description
|
|
451
477
|
* @constructor
|
|
@@ -509,6 +535,9 @@ var BulkUpdateIssueCommand = class _BulkUpdateIssueCommand {
|
|
|
509
535
|
|
|
510
536
|
// src/useCases/checkInReservation.js
|
|
511
537
|
var CheckInReservationCommand = class _CheckInReservationCommand {
|
|
538
|
+
static {
|
|
539
|
+
__name(this, "CheckInReservationCommand");
|
|
540
|
+
}
|
|
512
541
|
/**
|
|
513
542
|
* @description
|
|
514
543
|
* @constructor
|
|
@@ -572,6 +601,9 @@ var CheckInReservationCommand = class _CheckInReservationCommand {
|
|
|
572
601
|
|
|
573
602
|
// src/useCases/checkOutReservation.js
|
|
574
603
|
var CheckOutReservationCommand = class _CheckOutReservationCommand {
|
|
604
|
+
static {
|
|
605
|
+
__name(this, "CheckOutReservationCommand");
|
|
606
|
+
}
|
|
575
607
|
/**
|
|
576
608
|
* @description
|
|
577
609
|
* @constructor
|
|
@@ -635,6 +667,9 @@ var CheckOutReservationCommand = class _CheckOutReservationCommand {
|
|
|
635
667
|
|
|
636
668
|
// src/useCases/checkVerificationCode.js
|
|
637
669
|
var CheckVerificationCodeCommand = class _CheckVerificationCodeCommand {
|
|
670
|
+
static {
|
|
671
|
+
__name(this, "CheckVerificationCodeCommand");
|
|
672
|
+
}
|
|
638
673
|
/**
|
|
639
674
|
* @description
|
|
640
675
|
* @constructor
|
|
@@ -698,6 +733,9 @@ var CheckVerificationCodeCommand = class _CheckVerificationCodeCommand {
|
|
|
698
733
|
|
|
699
734
|
// src/useCases/createAlarm.js
|
|
700
735
|
var CreateAlarmCommand = class _CreateAlarmCommand {
|
|
736
|
+
static {
|
|
737
|
+
__name(this, "CreateAlarmCommand");
|
|
738
|
+
}
|
|
701
739
|
/**
|
|
702
740
|
* @description
|
|
703
741
|
* @constructor
|
|
@@ -761,6 +799,9 @@ var CreateAlarmCommand = class _CreateAlarmCommand {
|
|
|
761
799
|
|
|
762
800
|
// src/useCases/createAnnouncement.js
|
|
763
801
|
var CreateAnnouncementCommand = class _CreateAnnouncementCommand {
|
|
802
|
+
static {
|
|
803
|
+
__name(this, "CreateAnnouncementCommand");
|
|
804
|
+
}
|
|
764
805
|
/**
|
|
765
806
|
* @description
|
|
766
807
|
* @constructor
|
|
@@ -824,6 +865,9 @@ var CreateAnnouncementCommand = class _CreateAnnouncementCommand {
|
|
|
824
865
|
|
|
825
866
|
// src/useCases/createCamera.js
|
|
826
867
|
var CreateCameraCommand = class _CreateCameraCommand {
|
|
868
|
+
static {
|
|
869
|
+
__name(this, "CreateCameraCommand");
|
|
870
|
+
}
|
|
827
871
|
/**
|
|
828
872
|
* @description
|
|
829
873
|
* @constructor
|
|
@@ -887,6 +931,9 @@ var CreateCameraCommand = class _CreateCameraCommand {
|
|
|
887
931
|
|
|
888
932
|
// src/useCases/createCateory.js
|
|
889
933
|
var CreateCateoryCommand = class _CreateCateoryCommand {
|
|
934
|
+
static {
|
|
935
|
+
__name(this, "CreateCateoryCommand");
|
|
936
|
+
}
|
|
890
937
|
/**
|
|
891
938
|
* @description
|
|
892
939
|
* @constructor
|
|
@@ -950,6 +997,9 @@ var CreateCateoryCommand = class _CreateCateoryCommand {
|
|
|
950
997
|
|
|
951
998
|
// src/useCases/createCourtesy.js
|
|
952
999
|
var CreateCourtesyCommand = class _CreateCourtesyCommand {
|
|
1000
|
+
static {
|
|
1001
|
+
__name(this, "CreateCourtesyCommand");
|
|
1002
|
+
}
|
|
953
1003
|
/**
|
|
954
1004
|
* @description
|
|
955
1005
|
* @constructor
|
|
@@ -1013,6 +1063,9 @@ var CreateCourtesyCommand = class _CreateCourtesyCommand {
|
|
|
1013
1063
|
|
|
1014
1064
|
// src/useCases/createDefaultScenes.js
|
|
1015
1065
|
var CreateDefaultScenesCommand = class _CreateDefaultScenesCommand {
|
|
1066
|
+
static {
|
|
1067
|
+
__name(this, "CreateDefaultScenesCommand");
|
|
1068
|
+
}
|
|
1016
1069
|
/**
|
|
1017
1070
|
* @description
|
|
1018
1071
|
* @constructor
|
|
@@ -1076,6 +1129,9 @@ var CreateDefaultScenesCommand = class _CreateDefaultScenesCommand {
|
|
|
1076
1129
|
|
|
1077
1130
|
// src/useCases/createDimmer.js
|
|
1078
1131
|
var CreateDimmerCommand = class _CreateDimmerCommand {
|
|
1132
|
+
static {
|
|
1133
|
+
__name(this, "CreateDimmerCommand");
|
|
1134
|
+
}
|
|
1079
1135
|
/**
|
|
1080
1136
|
* @description
|
|
1081
1137
|
* @constructor
|
|
@@ -1139,6 +1195,9 @@ var CreateDimmerCommand = class _CreateDimmerCommand {
|
|
|
1139
1195
|
|
|
1140
1196
|
// src/useCases/createDiscoveredDevice.js
|
|
1141
1197
|
var CreateDiscoveredDeviceCommand = class _CreateDiscoveredDeviceCommand {
|
|
1198
|
+
static {
|
|
1199
|
+
__name(this, "CreateDiscoveredDeviceCommand");
|
|
1200
|
+
}
|
|
1142
1201
|
/**
|
|
1143
1202
|
* @description
|
|
1144
1203
|
* @constructor
|
|
@@ -1202,6 +1261,9 @@ var CreateDiscoveredDeviceCommand = class _CreateDiscoveredDeviceCommand {
|
|
|
1202
1261
|
|
|
1203
1262
|
// src/useCases/createDiscoveredDeviceAssociation.js
|
|
1204
1263
|
var CreateDiscoveredDeviceAssociationCommand = class _CreateDiscoveredDeviceAssociationCommand {
|
|
1264
|
+
static {
|
|
1265
|
+
__name(this, "CreateDiscoveredDeviceAssociationCommand");
|
|
1266
|
+
}
|
|
1205
1267
|
/**
|
|
1206
1268
|
* @description
|
|
1207
1269
|
* @constructor
|
|
@@ -1265,6 +1327,9 @@ var CreateDiscoveredDeviceAssociationCommand = class _CreateDiscoveredDeviceAsso
|
|
|
1265
1327
|
|
|
1266
1328
|
// src/useCases/createDiscoveredDeviceAssociationMap.js
|
|
1267
1329
|
var CreateDiscoveredDeviceAssociationMapCommand = class _CreateDiscoveredDeviceAssociationMapCommand {
|
|
1330
|
+
static {
|
|
1331
|
+
__name(this, "CreateDiscoveredDeviceAssociationMapCommand");
|
|
1332
|
+
}
|
|
1268
1333
|
/**
|
|
1269
1334
|
* @description
|
|
1270
1335
|
* @constructor
|
|
@@ -1328,6 +1393,9 @@ var CreateDiscoveredDeviceAssociationMapCommand = class _CreateDiscoveredDeviceA
|
|
|
1328
1393
|
|
|
1329
1394
|
// src/useCases/createImageUploadEndpoint.js
|
|
1330
1395
|
var CreateImageUploadEndpointCommand = class _CreateImageUploadEndpointCommand {
|
|
1396
|
+
static {
|
|
1397
|
+
__name(this, "CreateImageUploadEndpointCommand");
|
|
1398
|
+
}
|
|
1331
1399
|
/**
|
|
1332
1400
|
* @description
|
|
1333
1401
|
* @constructor
|
|
@@ -1391,6 +1459,9 @@ var CreateImageUploadEndpointCommand = class _CreateImageUploadEndpointCommand {
|
|
|
1391
1459
|
|
|
1392
1460
|
// src/useCases/createIssue.js
|
|
1393
1461
|
var CreateIssueCommand = class _CreateIssueCommand {
|
|
1462
|
+
static {
|
|
1463
|
+
__name(this, "CreateIssueCommand");
|
|
1464
|
+
}
|
|
1394
1465
|
/**
|
|
1395
1466
|
* @description
|
|
1396
1467
|
* @constructor
|
|
@@ -1454,6 +1525,9 @@ var CreateIssueCommand = class _CreateIssueCommand {
|
|
|
1454
1525
|
|
|
1455
1526
|
// src/useCases/createLock.js
|
|
1456
1527
|
var CreateLockCommand = class _CreateLockCommand {
|
|
1528
|
+
static {
|
|
1529
|
+
__name(this, "CreateLockCommand");
|
|
1530
|
+
}
|
|
1457
1531
|
/**
|
|
1458
1532
|
* @description
|
|
1459
1533
|
* @constructor
|
|
@@ -1517,6 +1591,9 @@ var CreateLockCommand = class _CreateLockCommand {
|
|
|
1517
1591
|
|
|
1518
1592
|
// src/useCases/createMediaSource.js
|
|
1519
1593
|
var CreateMediaSourceCommand = class _CreateMediaSourceCommand {
|
|
1594
|
+
static {
|
|
1595
|
+
__name(this, "CreateMediaSourceCommand");
|
|
1596
|
+
}
|
|
1520
1597
|
/**
|
|
1521
1598
|
* @description
|
|
1522
1599
|
* @constructor
|
|
@@ -1580,6 +1657,9 @@ var CreateMediaSourceCommand = class _CreateMediaSourceCommand {
|
|
|
1580
1657
|
|
|
1581
1658
|
// src/useCases/createOrganization.js
|
|
1582
1659
|
var CreateOrganizationCommand = class _CreateOrganizationCommand {
|
|
1660
|
+
static {
|
|
1661
|
+
__name(this, "CreateOrganizationCommand");
|
|
1662
|
+
}
|
|
1583
1663
|
/**
|
|
1584
1664
|
* @description
|
|
1585
1665
|
* @constructor
|
|
@@ -1643,6 +1723,9 @@ var CreateOrganizationCommand = class _CreateOrganizationCommand {
|
|
|
1643
1723
|
|
|
1644
1724
|
// src/useCases/createPolicy.js
|
|
1645
1725
|
var CreatePolicyCommand = class _CreatePolicyCommand {
|
|
1726
|
+
static {
|
|
1727
|
+
__name(this, "CreatePolicyCommand");
|
|
1728
|
+
}
|
|
1646
1729
|
/**
|
|
1647
1730
|
* @description
|
|
1648
1731
|
* @constructor
|
|
@@ -1706,6 +1789,9 @@ var CreatePolicyCommand = class _CreatePolicyCommand {
|
|
|
1706
1789
|
|
|
1707
1790
|
// src/useCases/createProperty.js
|
|
1708
1791
|
var CreatePropertyCommand = class _CreatePropertyCommand {
|
|
1792
|
+
static {
|
|
1793
|
+
__name(this, "CreatePropertyCommand");
|
|
1794
|
+
}
|
|
1709
1795
|
/**
|
|
1710
1796
|
* @description
|
|
1711
1797
|
* @constructor
|
|
@@ -1769,6 +1855,9 @@ var CreatePropertyCommand = class _CreatePropertyCommand {
|
|
|
1769
1855
|
|
|
1770
1856
|
// src/useCases/createReservation.js
|
|
1771
1857
|
var CreateReservationCommand = class _CreateReservationCommand {
|
|
1858
|
+
static {
|
|
1859
|
+
__name(this, "CreateReservationCommand");
|
|
1860
|
+
}
|
|
1772
1861
|
/**
|
|
1773
1862
|
* @description
|
|
1774
1863
|
* @constructor
|
|
@@ -1832,6 +1921,9 @@ var CreateReservationCommand = class _CreateReservationCommand {
|
|
|
1832
1921
|
|
|
1833
1922
|
// src/useCases/createRoom.js
|
|
1834
1923
|
var CreateRoomCommand = class _CreateRoomCommand {
|
|
1924
|
+
static {
|
|
1925
|
+
__name(this, "CreateRoomCommand");
|
|
1926
|
+
}
|
|
1835
1927
|
/**
|
|
1836
1928
|
* @description
|
|
1837
1929
|
* @constructor
|
|
@@ -1895,6 +1987,9 @@ var CreateRoomCommand = class _CreateRoomCommand {
|
|
|
1895
1987
|
|
|
1896
1988
|
// src/useCases/createRoomInSpace.js
|
|
1897
1989
|
var CreateRoomInSpaceCommand = class _CreateRoomInSpaceCommand {
|
|
1990
|
+
static {
|
|
1991
|
+
__name(this, "CreateRoomInSpaceCommand");
|
|
1992
|
+
}
|
|
1898
1993
|
/**
|
|
1899
1994
|
* @description
|
|
1900
1995
|
* @constructor
|
|
@@ -1958,6 +2053,9 @@ var CreateRoomInSpaceCommand = class _CreateRoomInSpaceCommand {
|
|
|
1958
2053
|
|
|
1959
2054
|
// src/useCases/createScene.js
|
|
1960
2055
|
var CreateSceneCommand = class _CreateSceneCommand {
|
|
2056
|
+
static {
|
|
2057
|
+
__name(this, "CreateSceneCommand");
|
|
2058
|
+
}
|
|
1961
2059
|
/**
|
|
1962
2060
|
* @description
|
|
1963
2061
|
* @constructor
|
|
@@ -2021,6 +2119,9 @@ var CreateSceneCommand = class _CreateSceneCommand {
|
|
|
2021
2119
|
|
|
2022
2120
|
// src/useCases/createSpace.js
|
|
2023
2121
|
var CreateSpaceCommand = class _CreateSpaceCommand {
|
|
2122
|
+
static {
|
|
2123
|
+
__name(this, "CreateSpaceCommand");
|
|
2124
|
+
}
|
|
2024
2125
|
/**
|
|
2025
2126
|
* @description
|
|
2026
2127
|
* @constructor
|
|
@@ -2084,6 +2185,9 @@ var CreateSpaceCommand = class _CreateSpaceCommand {
|
|
|
2084
2185
|
|
|
2085
2186
|
// src/useCases/createSwitch.js
|
|
2086
2187
|
var CreateSwitchCommand = class _CreateSwitchCommand {
|
|
2188
|
+
static {
|
|
2189
|
+
__name(this, "CreateSwitchCommand");
|
|
2190
|
+
}
|
|
2087
2191
|
/**
|
|
2088
2192
|
* @description
|
|
2089
2193
|
* @constructor
|
|
@@ -2147,6 +2251,9 @@ var CreateSwitchCommand = class _CreateSwitchCommand {
|
|
|
2147
2251
|
|
|
2148
2252
|
// src/useCases/createThermostat.js
|
|
2149
2253
|
var CreateThermostatCommand = class _CreateThermostatCommand {
|
|
2254
|
+
static {
|
|
2255
|
+
__name(this, "CreateThermostatCommand");
|
|
2256
|
+
}
|
|
2150
2257
|
/**
|
|
2151
2258
|
* @description
|
|
2152
2259
|
* @constructor
|
|
@@ -2210,6 +2317,9 @@ var CreateThermostatCommand = class _CreateThermostatCommand {
|
|
|
2210
2317
|
|
|
2211
2318
|
// src/useCases/createTicket.js
|
|
2212
2319
|
var CreateTicketCommand = class _CreateTicketCommand {
|
|
2320
|
+
static {
|
|
2321
|
+
__name(this, "CreateTicketCommand");
|
|
2322
|
+
}
|
|
2213
2323
|
/**
|
|
2214
2324
|
* @description
|
|
2215
2325
|
* @constructor
|
|
@@ -2273,6 +2383,9 @@ var CreateTicketCommand = class _CreateTicketCommand {
|
|
|
2273
2383
|
|
|
2274
2384
|
// src/useCases/createTicketMessage.js
|
|
2275
2385
|
var CreateTicketMessageCommand = class _CreateTicketMessageCommand {
|
|
2386
|
+
static {
|
|
2387
|
+
__name(this, "CreateTicketMessageCommand");
|
|
2388
|
+
}
|
|
2276
2389
|
/**
|
|
2277
2390
|
* @description
|
|
2278
2391
|
* @constructor
|
|
@@ -2336,6 +2449,9 @@ var CreateTicketMessageCommand = class _CreateTicketMessageCommand {
|
|
|
2336
2449
|
|
|
2337
2450
|
// src/useCases/createTimeSheet.js
|
|
2338
2451
|
var CreateTimeSheetCommand = class _CreateTimeSheetCommand {
|
|
2452
|
+
static {
|
|
2453
|
+
__name(this, "CreateTimeSheetCommand");
|
|
2454
|
+
}
|
|
2339
2455
|
/**
|
|
2340
2456
|
* @description
|
|
2341
2457
|
* @constructor
|
|
@@ -2399,6 +2515,9 @@ var CreateTimeSheetCommand = class _CreateTimeSheetCommand {
|
|
|
2399
2515
|
|
|
2400
2516
|
// src/useCases/createTimeSheetTimeEntry.js
|
|
2401
2517
|
var CreateTimeSheetTimeEntryCommand = class _CreateTimeSheetTimeEntryCommand {
|
|
2518
|
+
static {
|
|
2519
|
+
__name(this, "CreateTimeSheetTimeEntryCommand");
|
|
2520
|
+
}
|
|
2402
2521
|
/**
|
|
2403
2522
|
* @description
|
|
2404
2523
|
* @constructor
|
|
@@ -2462,6 +2581,9 @@ var CreateTimeSheetTimeEntryCommand = class _CreateTimeSheetTimeEntryCommand {
|
|
|
2462
2581
|
|
|
2463
2582
|
// src/useCases/createUser.js
|
|
2464
2583
|
var CreateUserCommand = class _CreateUserCommand {
|
|
2584
|
+
static {
|
|
2585
|
+
__name(this, "CreateUserCommand");
|
|
2586
|
+
}
|
|
2465
2587
|
/**
|
|
2466
2588
|
* @description
|
|
2467
2589
|
* @constructor
|
|
@@ -2525,6 +2647,9 @@ var CreateUserCommand = class _CreateUserCommand {
|
|
|
2525
2647
|
|
|
2526
2648
|
// src/useCases/createUserMobileKey.js
|
|
2527
2649
|
var CreateUserMobileKeyCommand = class _CreateUserMobileKeyCommand {
|
|
2650
|
+
static {
|
|
2651
|
+
__name(this, "CreateUserMobileKeyCommand");
|
|
2652
|
+
}
|
|
2528
2653
|
/**
|
|
2529
2654
|
* @description
|
|
2530
2655
|
* @constructor
|
|
@@ -2588,6 +2713,9 @@ var CreateUserMobileKeyCommand = class _CreateUserMobileKeyCommand {
|
|
|
2588
2713
|
|
|
2589
2714
|
// src/useCases/createVendor.js
|
|
2590
2715
|
var CreateVendorCommand = class _CreateVendorCommand {
|
|
2716
|
+
static {
|
|
2717
|
+
__name(this, "CreateVendorCommand");
|
|
2718
|
+
}
|
|
2591
2719
|
/**
|
|
2592
2720
|
* @description
|
|
2593
2721
|
* @constructor
|
|
@@ -2651,6 +2779,9 @@ var CreateVendorCommand = class _CreateVendorCommand {
|
|
|
2651
2779
|
|
|
2652
2780
|
// src/useCases/createWindowCovering.js
|
|
2653
2781
|
var CreateWindowCoveringCommand = class _CreateWindowCoveringCommand {
|
|
2782
|
+
static {
|
|
2783
|
+
__name(this, "CreateWindowCoveringCommand");
|
|
2784
|
+
}
|
|
2654
2785
|
/**
|
|
2655
2786
|
* @description
|
|
2656
2787
|
* @constructor
|
|
@@ -2714,6 +2845,9 @@ var CreateWindowCoveringCommand = class _CreateWindowCoveringCommand {
|
|
|
2714
2845
|
|
|
2715
2846
|
// src/useCases/deleteAlarm.js
|
|
2716
2847
|
var DeleteAlarmCommand = class _DeleteAlarmCommand {
|
|
2848
|
+
static {
|
|
2849
|
+
__name(this, "DeleteAlarmCommand");
|
|
2850
|
+
}
|
|
2717
2851
|
/**
|
|
2718
2852
|
* @description
|
|
2719
2853
|
* @constructor
|
|
@@ -2777,6 +2911,9 @@ var DeleteAlarmCommand = class _DeleteAlarmCommand {
|
|
|
2777
2911
|
|
|
2778
2912
|
// src/useCases/deleteAnnouncement.js
|
|
2779
2913
|
var DeleteAnnouncementCommand = class _DeleteAnnouncementCommand {
|
|
2914
|
+
static {
|
|
2915
|
+
__name(this, "DeleteAnnouncementCommand");
|
|
2916
|
+
}
|
|
2780
2917
|
/**
|
|
2781
2918
|
* @description
|
|
2782
2919
|
* @constructor
|
|
@@ -2840,6 +2977,9 @@ var DeleteAnnouncementCommand = class _DeleteAnnouncementCommand {
|
|
|
2840
2977
|
|
|
2841
2978
|
// src/useCases/deleteCamera.js
|
|
2842
2979
|
var DeleteCameraCommand = class _DeleteCameraCommand {
|
|
2980
|
+
static {
|
|
2981
|
+
__name(this, "DeleteCameraCommand");
|
|
2982
|
+
}
|
|
2843
2983
|
/**
|
|
2844
2984
|
* @description
|
|
2845
2985
|
* @constructor
|
|
@@ -2903,6 +3043,9 @@ var DeleteCameraCommand = class _DeleteCameraCommand {
|
|
|
2903
3043
|
|
|
2904
3044
|
// src/useCases/deleteCategory.js
|
|
2905
3045
|
var DeleteCategoryCommand = class _DeleteCategoryCommand {
|
|
3046
|
+
static {
|
|
3047
|
+
__name(this, "DeleteCategoryCommand");
|
|
3048
|
+
}
|
|
2906
3049
|
/**
|
|
2907
3050
|
* @description
|
|
2908
3051
|
* @constructor
|
|
@@ -2966,6 +3109,9 @@ var DeleteCategoryCommand = class _DeleteCategoryCommand {
|
|
|
2966
3109
|
|
|
2967
3110
|
// src/useCases/deleteCourtesy.js
|
|
2968
3111
|
var DeleteCourtesyCommand = class _DeleteCourtesyCommand {
|
|
3112
|
+
static {
|
|
3113
|
+
__name(this, "DeleteCourtesyCommand");
|
|
3114
|
+
}
|
|
2969
3115
|
/**
|
|
2970
3116
|
* @description
|
|
2971
3117
|
* @constructor
|
|
@@ -3029,6 +3175,9 @@ var DeleteCourtesyCommand = class _DeleteCourtesyCommand {
|
|
|
3029
3175
|
|
|
3030
3176
|
// src/useCases/deleteDimmer.js
|
|
3031
3177
|
var DeleteDimmerCommand = class _DeleteDimmerCommand {
|
|
3178
|
+
static {
|
|
3179
|
+
__name(this, "DeleteDimmerCommand");
|
|
3180
|
+
}
|
|
3032
3181
|
/**
|
|
3033
3182
|
* @description
|
|
3034
3183
|
* @constructor
|
|
@@ -3092,6 +3241,9 @@ var DeleteDimmerCommand = class _DeleteDimmerCommand {
|
|
|
3092
3241
|
|
|
3093
3242
|
// src/useCases/deleteDiscoveredDevice.js
|
|
3094
3243
|
var DeleteDiscoveredDeviceCommand = class _DeleteDiscoveredDeviceCommand {
|
|
3244
|
+
static {
|
|
3245
|
+
__name(this, "DeleteDiscoveredDeviceCommand");
|
|
3246
|
+
}
|
|
3095
3247
|
/**
|
|
3096
3248
|
* @description
|
|
3097
3249
|
* @constructor
|
|
@@ -3155,6 +3307,9 @@ var DeleteDiscoveredDeviceCommand = class _DeleteDiscoveredDeviceCommand {
|
|
|
3155
3307
|
|
|
3156
3308
|
// src/useCases/deleteIssue.js
|
|
3157
3309
|
var DeleteIssueCommand = class _DeleteIssueCommand {
|
|
3310
|
+
static {
|
|
3311
|
+
__name(this, "DeleteIssueCommand");
|
|
3312
|
+
}
|
|
3158
3313
|
/**
|
|
3159
3314
|
* @description
|
|
3160
3315
|
* @constructor
|
|
@@ -3218,6 +3373,9 @@ var DeleteIssueCommand = class _DeleteIssueCommand {
|
|
|
3218
3373
|
|
|
3219
3374
|
// src/useCases/deleteLock.js
|
|
3220
3375
|
var DeleteLockCommand = class _DeleteLockCommand {
|
|
3376
|
+
static {
|
|
3377
|
+
__name(this, "DeleteLockCommand");
|
|
3378
|
+
}
|
|
3221
3379
|
/**
|
|
3222
3380
|
* @description
|
|
3223
3381
|
* @constructor
|
|
@@ -3281,6 +3439,9 @@ var DeleteLockCommand = class _DeleteLockCommand {
|
|
|
3281
3439
|
|
|
3282
3440
|
// src/useCases/deleteMediaFile.js
|
|
3283
3441
|
var DeleteMediaFileCommand = class _DeleteMediaFileCommand {
|
|
3442
|
+
static {
|
|
3443
|
+
__name(this, "DeleteMediaFileCommand");
|
|
3444
|
+
}
|
|
3284
3445
|
/**
|
|
3285
3446
|
* @description
|
|
3286
3447
|
* @constructor
|
|
@@ -3344,6 +3505,9 @@ var DeleteMediaFileCommand = class _DeleteMediaFileCommand {
|
|
|
3344
3505
|
|
|
3345
3506
|
// src/useCases/deleteMediaSource.js
|
|
3346
3507
|
var DeleteMediaSourceCommand = class _DeleteMediaSourceCommand {
|
|
3508
|
+
static {
|
|
3509
|
+
__name(this, "DeleteMediaSourceCommand");
|
|
3510
|
+
}
|
|
3347
3511
|
/**
|
|
3348
3512
|
* @description
|
|
3349
3513
|
* @constructor
|
|
@@ -3407,6 +3571,9 @@ var DeleteMediaSourceCommand = class _DeleteMediaSourceCommand {
|
|
|
3407
3571
|
|
|
3408
3572
|
// src/useCases/deletePolicy.js
|
|
3409
3573
|
var DeletePolicyCommand = class _DeletePolicyCommand {
|
|
3574
|
+
static {
|
|
3575
|
+
__name(this, "DeletePolicyCommand");
|
|
3576
|
+
}
|
|
3410
3577
|
/**
|
|
3411
3578
|
* @description
|
|
3412
3579
|
* @constructor
|
|
@@ -3470,6 +3637,9 @@ var DeletePolicyCommand = class _DeletePolicyCommand {
|
|
|
3470
3637
|
|
|
3471
3638
|
// src/useCases/deleteReservation.js
|
|
3472
3639
|
var DeleteReservationCommand = class _DeleteReservationCommand {
|
|
3640
|
+
static {
|
|
3641
|
+
__name(this, "DeleteReservationCommand");
|
|
3642
|
+
}
|
|
3473
3643
|
/**
|
|
3474
3644
|
* @description
|
|
3475
3645
|
* @constructor
|
|
@@ -3533,6 +3703,9 @@ var DeleteReservationCommand = class _DeleteReservationCommand {
|
|
|
3533
3703
|
|
|
3534
3704
|
// src/useCases/deleteRoom.js
|
|
3535
3705
|
var DeleteRoomCommand = class _DeleteRoomCommand {
|
|
3706
|
+
static {
|
|
3707
|
+
__name(this, "DeleteRoomCommand");
|
|
3708
|
+
}
|
|
3536
3709
|
/**
|
|
3537
3710
|
* @description
|
|
3538
3711
|
* @constructor
|
|
@@ -3596,6 +3769,9 @@ var DeleteRoomCommand = class _DeleteRoomCommand {
|
|
|
3596
3769
|
|
|
3597
3770
|
// src/useCases/deleteSpace.js
|
|
3598
3771
|
var DeleteSpaceCommand = class _DeleteSpaceCommand {
|
|
3772
|
+
static {
|
|
3773
|
+
__name(this, "DeleteSpaceCommand");
|
|
3774
|
+
}
|
|
3599
3775
|
/**
|
|
3600
3776
|
* @description
|
|
3601
3777
|
* @constructor
|
|
@@ -3659,6 +3835,9 @@ var DeleteSpaceCommand = class _DeleteSpaceCommand {
|
|
|
3659
3835
|
|
|
3660
3836
|
// src/useCases/deleteSwitch.js
|
|
3661
3837
|
var DeleteSwitchCommand = class _DeleteSwitchCommand {
|
|
3838
|
+
static {
|
|
3839
|
+
__name(this, "DeleteSwitchCommand");
|
|
3840
|
+
}
|
|
3662
3841
|
/**
|
|
3663
3842
|
* @description
|
|
3664
3843
|
* @constructor
|
|
@@ -3722,6 +3901,9 @@ var DeleteSwitchCommand = class _DeleteSwitchCommand {
|
|
|
3722
3901
|
|
|
3723
3902
|
// src/useCases/deleteThermostat.js
|
|
3724
3903
|
var DeleteThermostatCommand = class _DeleteThermostatCommand {
|
|
3904
|
+
static {
|
|
3905
|
+
__name(this, "DeleteThermostatCommand");
|
|
3906
|
+
}
|
|
3725
3907
|
/**
|
|
3726
3908
|
* @description
|
|
3727
3909
|
* @constructor
|
|
@@ -3785,6 +3967,9 @@ var DeleteThermostatCommand = class _DeleteThermostatCommand {
|
|
|
3785
3967
|
|
|
3786
3968
|
// src/useCases/deleteTicket.js
|
|
3787
3969
|
var DeleteTicketCommand = class _DeleteTicketCommand {
|
|
3970
|
+
static {
|
|
3971
|
+
__name(this, "DeleteTicketCommand");
|
|
3972
|
+
}
|
|
3788
3973
|
/**
|
|
3789
3974
|
* @description
|
|
3790
3975
|
* @constructor
|
|
@@ -3848,6 +4033,9 @@ var DeleteTicketCommand = class _DeleteTicketCommand {
|
|
|
3848
4033
|
|
|
3849
4034
|
// src/useCases/deleteTimeSheet.js
|
|
3850
4035
|
var DeleteTimeSheetCommand = class _DeleteTimeSheetCommand {
|
|
4036
|
+
static {
|
|
4037
|
+
__name(this, "DeleteTimeSheetCommand");
|
|
4038
|
+
}
|
|
3851
4039
|
/**
|
|
3852
4040
|
* @description
|
|
3853
4041
|
* @constructor
|
|
@@ -3911,6 +4099,9 @@ var DeleteTimeSheetCommand = class _DeleteTimeSheetCommand {
|
|
|
3911
4099
|
|
|
3912
4100
|
// src/useCases/deleteTimeSheetTimeEntry.js
|
|
3913
4101
|
var DeleteTimeSheetTimeEntryCommand = class _DeleteTimeSheetTimeEntryCommand {
|
|
4102
|
+
static {
|
|
4103
|
+
__name(this, "DeleteTimeSheetTimeEntryCommand");
|
|
4104
|
+
}
|
|
3914
4105
|
/**
|
|
3915
4106
|
* @description
|
|
3916
4107
|
* @constructor
|
|
@@ -3974,6 +4165,9 @@ var DeleteTimeSheetTimeEntryCommand = class _DeleteTimeSheetTimeEntryCommand {
|
|
|
3974
4165
|
|
|
3975
4166
|
// src/useCases/deleteUser.js
|
|
3976
4167
|
var DeleteUserCommand = class _DeleteUserCommand {
|
|
4168
|
+
static {
|
|
4169
|
+
__name(this, "DeleteUserCommand");
|
|
4170
|
+
}
|
|
3977
4171
|
/**
|
|
3978
4172
|
* @description
|
|
3979
4173
|
* @constructor
|
|
@@ -4037,6 +4231,9 @@ var DeleteUserCommand = class _DeleteUserCommand {
|
|
|
4037
4231
|
|
|
4038
4232
|
// src/useCases/deleteUserCredential.js
|
|
4039
4233
|
var DeleteUserCredentialCommand = class _DeleteUserCredentialCommand {
|
|
4234
|
+
static {
|
|
4235
|
+
__name(this, "DeleteUserCredentialCommand");
|
|
4236
|
+
}
|
|
4040
4237
|
/**
|
|
4041
4238
|
* @description
|
|
4042
4239
|
* @constructor
|
|
@@ -4100,6 +4297,9 @@ var DeleteUserCredentialCommand = class _DeleteUserCredentialCommand {
|
|
|
4100
4297
|
|
|
4101
4298
|
// src/useCases/deleteVendor.js
|
|
4102
4299
|
var DeleteVendorCommand = class _DeleteVendorCommand {
|
|
4300
|
+
static {
|
|
4301
|
+
__name(this, "DeleteVendorCommand");
|
|
4302
|
+
}
|
|
4103
4303
|
/**
|
|
4104
4304
|
* @description
|
|
4105
4305
|
* @constructor
|
|
@@ -4163,6 +4363,9 @@ var DeleteVendorCommand = class _DeleteVendorCommand {
|
|
|
4163
4363
|
|
|
4164
4364
|
// src/useCases/deleteWindowCovering.js
|
|
4165
4365
|
var DeleteWindowCoveringCommand = class _DeleteWindowCoveringCommand {
|
|
4366
|
+
static {
|
|
4367
|
+
__name(this, "DeleteWindowCoveringCommand");
|
|
4368
|
+
}
|
|
4166
4369
|
/**
|
|
4167
4370
|
* @description
|
|
4168
4371
|
* @constructor
|
|
@@ -4226,6 +4429,9 @@ var DeleteWindowCoveringCommand = class _DeleteWindowCoveringCommand {
|
|
|
4226
4429
|
|
|
4227
4430
|
// src/useCases/describeAlarm.js
|
|
4228
4431
|
var DescribeAlarmCommand = class _DescribeAlarmCommand {
|
|
4432
|
+
static {
|
|
4433
|
+
__name(this, "DescribeAlarmCommand");
|
|
4434
|
+
}
|
|
4229
4435
|
/**
|
|
4230
4436
|
* @description
|
|
4231
4437
|
* @constructor
|
|
@@ -4289,6 +4495,9 @@ var DescribeAlarmCommand = class _DescribeAlarmCommand {
|
|
|
4289
4495
|
|
|
4290
4496
|
// src/useCases/describeAlarmConfig.js
|
|
4291
4497
|
var DescribeAlarmConfigCommand = class _DescribeAlarmConfigCommand {
|
|
4498
|
+
static {
|
|
4499
|
+
__name(this, "DescribeAlarmConfigCommand");
|
|
4500
|
+
}
|
|
4292
4501
|
/**
|
|
4293
4502
|
* @description
|
|
4294
4503
|
* @constructor
|
|
@@ -4352,6 +4561,9 @@ var DescribeAlarmConfigCommand = class _DescribeAlarmConfigCommand {
|
|
|
4352
4561
|
|
|
4353
4562
|
// src/useCases/describeAnnouncement.js
|
|
4354
4563
|
var DescribeAnnouncementCommand = class _DescribeAnnouncementCommand {
|
|
4564
|
+
static {
|
|
4565
|
+
__name(this, "DescribeAnnouncementCommand");
|
|
4566
|
+
}
|
|
4355
4567
|
/**
|
|
4356
4568
|
* @description
|
|
4357
4569
|
* @constructor
|
|
@@ -4415,6 +4627,9 @@ var DescribeAnnouncementCommand = class _DescribeAnnouncementCommand {
|
|
|
4415
4627
|
|
|
4416
4628
|
// src/useCases/describeCamera.js
|
|
4417
4629
|
var DescribeCameraCommand = class _DescribeCameraCommand {
|
|
4630
|
+
static {
|
|
4631
|
+
__name(this, "DescribeCameraCommand");
|
|
4632
|
+
}
|
|
4418
4633
|
/**
|
|
4419
4634
|
* @description
|
|
4420
4635
|
* @constructor
|
|
@@ -4478,6 +4693,9 @@ var DescribeCameraCommand = class _DescribeCameraCommand {
|
|
|
4478
4693
|
|
|
4479
4694
|
// src/useCases/describeCategory.js
|
|
4480
4695
|
var DescribeCategoryCommand = class _DescribeCategoryCommand {
|
|
4696
|
+
static {
|
|
4697
|
+
__name(this, "DescribeCategoryCommand");
|
|
4698
|
+
}
|
|
4481
4699
|
/**
|
|
4482
4700
|
* @description
|
|
4483
4701
|
* @constructor
|
|
@@ -4541,6 +4759,9 @@ var DescribeCategoryCommand = class _DescribeCategoryCommand {
|
|
|
4541
4759
|
|
|
4542
4760
|
// src/useCases/describeCourtesy.js
|
|
4543
4761
|
var DescribeCourtesyCommand = class _DescribeCourtesyCommand {
|
|
4762
|
+
static {
|
|
4763
|
+
__name(this, "DescribeCourtesyCommand");
|
|
4764
|
+
}
|
|
4544
4765
|
/**
|
|
4545
4766
|
* @description
|
|
4546
4767
|
* @constructor
|
|
@@ -4604,6 +4825,9 @@ var DescribeCourtesyCommand = class _DescribeCourtesyCommand {
|
|
|
4604
4825
|
|
|
4605
4826
|
// src/useCases/describeDimmer.js
|
|
4606
4827
|
var DescribeDimmerCommand = class _DescribeDimmerCommand {
|
|
4828
|
+
static {
|
|
4829
|
+
__name(this, "DescribeDimmerCommand");
|
|
4830
|
+
}
|
|
4607
4831
|
/**
|
|
4608
4832
|
* @description
|
|
4609
4833
|
* @constructor
|
|
@@ -4667,6 +4891,9 @@ var DescribeDimmerCommand = class _DescribeDimmerCommand {
|
|
|
4667
4891
|
|
|
4668
4892
|
// src/useCases/describeDiscoveredDevice.js
|
|
4669
4893
|
var DescribeDiscoveredDeviceCommand = class _DescribeDiscoveredDeviceCommand {
|
|
4894
|
+
static {
|
|
4895
|
+
__name(this, "DescribeDiscoveredDeviceCommand");
|
|
4896
|
+
}
|
|
4670
4897
|
/**
|
|
4671
4898
|
* @description
|
|
4672
4899
|
* @constructor
|
|
@@ -4730,6 +4957,9 @@ var DescribeDiscoveredDeviceCommand = class _DescribeDiscoveredDeviceCommand {
|
|
|
4730
4957
|
|
|
4731
4958
|
// src/useCases/describeIssue.js
|
|
4732
4959
|
var DescribeIssueCommand = class _DescribeIssueCommand {
|
|
4960
|
+
static {
|
|
4961
|
+
__name(this, "DescribeIssueCommand");
|
|
4962
|
+
}
|
|
4733
4963
|
/**
|
|
4734
4964
|
* @description
|
|
4735
4965
|
* @constructor
|
|
@@ -4793,6 +5023,9 @@ var DescribeIssueCommand = class _DescribeIssueCommand {
|
|
|
4793
5023
|
|
|
4794
5024
|
// src/useCases/describeLock.js
|
|
4795
5025
|
var DescribeLockCommand = class _DescribeLockCommand {
|
|
5026
|
+
static {
|
|
5027
|
+
__name(this, "DescribeLockCommand");
|
|
5028
|
+
}
|
|
4796
5029
|
/**
|
|
4797
5030
|
* @description
|
|
4798
5031
|
* @constructor
|
|
@@ -4856,6 +5089,9 @@ var DescribeLockCommand = class _DescribeLockCommand {
|
|
|
4856
5089
|
|
|
4857
5090
|
// src/useCases/describeLockCredential.js
|
|
4858
5091
|
var DescribeLockCredentialCommand = class _DescribeLockCredentialCommand {
|
|
5092
|
+
static {
|
|
5093
|
+
__name(this, "DescribeLockCredentialCommand");
|
|
5094
|
+
}
|
|
4859
5095
|
/**
|
|
4860
5096
|
* @description
|
|
4861
5097
|
* @constructor
|
|
@@ -4919,6 +5155,9 @@ var DescribeLockCredentialCommand = class _DescribeLockCredentialCommand {
|
|
|
4919
5155
|
|
|
4920
5156
|
// src/useCases/describeMediaSource.js
|
|
4921
5157
|
var DescribeMediaSourceCommand = class _DescribeMediaSourceCommand {
|
|
5158
|
+
static {
|
|
5159
|
+
__name(this, "DescribeMediaSourceCommand");
|
|
5160
|
+
}
|
|
4922
5161
|
/**
|
|
4923
5162
|
* @description
|
|
4924
5163
|
* @constructor
|
|
@@ -4982,6 +5221,9 @@ var DescribeMediaSourceCommand = class _DescribeMediaSourceCommand {
|
|
|
4982
5221
|
|
|
4983
5222
|
// src/useCases/describeMyAuth.js
|
|
4984
5223
|
var DescribeMyAuthCommand = class _DescribeMyAuthCommand {
|
|
5224
|
+
static {
|
|
5225
|
+
__name(this, "DescribeMyAuthCommand");
|
|
5226
|
+
}
|
|
4985
5227
|
/**
|
|
4986
5228
|
* @description
|
|
4987
5229
|
* @constructor
|
|
@@ -5045,6 +5287,9 @@ var DescribeMyAuthCommand = class _DescribeMyAuthCommand {
|
|
|
5045
5287
|
|
|
5046
5288
|
// src/useCases/describeMyMobileKeyApp.js
|
|
5047
5289
|
var DescribeMyMobileKeyAppCommand = class _DescribeMyMobileKeyAppCommand {
|
|
5290
|
+
static {
|
|
5291
|
+
__name(this, "DescribeMyMobileKeyAppCommand");
|
|
5292
|
+
}
|
|
5048
5293
|
/**
|
|
5049
5294
|
* @description
|
|
5050
5295
|
* @constructor
|
|
@@ -5108,6 +5353,9 @@ var DescribeMyMobileKeyAppCommand = class _DescribeMyMobileKeyAppCommand {
|
|
|
5108
5353
|
|
|
5109
5354
|
// src/useCases/describeMyOrganization.js
|
|
5110
5355
|
var DescribeMyOrganizationCommand = class _DescribeMyOrganizationCommand {
|
|
5356
|
+
static {
|
|
5357
|
+
__name(this, "DescribeMyOrganizationCommand");
|
|
5358
|
+
}
|
|
5111
5359
|
/**
|
|
5112
5360
|
* @description
|
|
5113
5361
|
* @constructor
|
|
@@ -5171,6 +5419,9 @@ var DescribeMyOrganizationCommand = class _DescribeMyOrganizationCommand {
|
|
|
5171
5419
|
|
|
5172
5420
|
// src/useCases/describeMyPasskeyRegistrations.js
|
|
5173
5421
|
var DescribeMyPasskeyRegistrationsCommand = class _DescribeMyPasskeyRegistrationsCommand {
|
|
5422
|
+
static {
|
|
5423
|
+
__name(this, "DescribeMyPasskeyRegistrationsCommand");
|
|
5424
|
+
}
|
|
5174
5425
|
/**
|
|
5175
5426
|
* @description
|
|
5176
5427
|
* @constructor
|
|
@@ -5234,6 +5485,9 @@ var DescribeMyPasskeyRegistrationsCommand = class _DescribeMyPasskeyRegistration
|
|
|
5234
5485
|
|
|
5235
5486
|
// src/useCases/describeOrganization.js
|
|
5236
5487
|
var DescribeOrganizationCommand = class _DescribeOrganizationCommand {
|
|
5488
|
+
static {
|
|
5489
|
+
__name(this, "DescribeOrganizationCommand");
|
|
5490
|
+
}
|
|
5237
5491
|
/**
|
|
5238
5492
|
* @description
|
|
5239
5493
|
* @constructor
|
|
@@ -5297,6 +5551,9 @@ var DescribeOrganizationCommand = class _DescribeOrganizationCommand {
|
|
|
5297
5551
|
|
|
5298
5552
|
// src/useCases/describePolicy.js
|
|
5299
5553
|
var DescribePolicyCommand = class _DescribePolicyCommand {
|
|
5554
|
+
static {
|
|
5555
|
+
__name(this, "DescribePolicyCommand");
|
|
5556
|
+
}
|
|
5300
5557
|
/**
|
|
5301
5558
|
* @description
|
|
5302
5559
|
* @constructor
|
|
@@ -5360,6 +5617,9 @@ var DescribePolicyCommand = class _DescribePolicyCommand {
|
|
|
5360
5617
|
|
|
5361
5618
|
// src/useCases/describeProduct.js
|
|
5362
5619
|
var DescribeProductCommand = class _DescribeProductCommand {
|
|
5620
|
+
static {
|
|
5621
|
+
__name(this, "DescribeProductCommand");
|
|
5622
|
+
}
|
|
5363
5623
|
/**
|
|
5364
5624
|
* @description
|
|
5365
5625
|
* @constructor
|
|
@@ -5423,6 +5683,9 @@ var DescribeProductCommand = class _DescribeProductCommand {
|
|
|
5423
5683
|
|
|
5424
5684
|
// src/useCases/describeProperty.js
|
|
5425
5685
|
var DescribePropertyCommand = class _DescribePropertyCommand {
|
|
5686
|
+
static {
|
|
5687
|
+
__name(this, "DescribePropertyCommand");
|
|
5688
|
+
}
|
|
5426
5689
|
/**
|
|
5427
5690
|
* @description
|
|
5428
5691
|
* @constructor
|
|
@@ -5486,6 +5749,9 @@ var DescribePropertyCommand = class _DescribePropertyCommand {
|
|
|
5486
5749
|
|
|
5487
5750
|
// src/useCases/describeReservation.js
|
|
5488
5751
|
var DescribeReservationCommand = class _DescribeReservationCommand {
|
|
5752
|
+
static {
|
|
5753
|
+
__name(this, "DescribeReservationCommand");
|
|
5754
|
+
}
|
|
5489
5755
|
/**
|
|
5490
5756
|
* @description
|
|
5491
5757
|
* @constructor
|
|
@@ -5549,6 +5815,9 @@ var DescribeReservationCommand = class _DescribeReservationCommand {
|
|
|
5549
5815
|
|
|
5550
5816
|
// src/useCases/describeReservationEarlyCheckInProducts.js
|
|
5551
5817
|
var DescribeReservationEarlyCheckInProductsCommand = class _DescribeReservationEarlyCheckInProductsCommand {
|
|
5818
|
+
static {
|
|
5819
|
+
__name(this, "DescribeReservationEarlyCheckInProductsCommand");
|
|
5820
|
+
}
|
|
5552
5821
|
/**
|
|
5553
5822
|
* @description
|
|
5554
5823
|
* @constructor
|
|
@@ -5612,6 +5881,9 @@ var DescribeReservationEarlyCheckInProductsCommand = class _DescribeReservationE
|
|
|
5612
5881
|
|
|
5613
5882
|
// src/useCases/describeReservationLateCheckOutProducts.js
|
|
5614
5883
|
var DescribeReservationLateCheckOutProductsCommand = class _DescribeReservationLateCheckOutProductsCommand {
|
|
5884
|
+
static {
|
|
5885
|
+
__name(this, "DescribeReservationLateCheckOutProductsCommand");
|
|
5886
|
+
}
|
|
5615
5887
|
/**
|
|
5616
5888
|
* @description
|
|
5617
5889
|
* @constructor
|
|
@@ -5675,6 +5947,9 @@ var DescribeReservationLateCheckOutProductsCommand = class _DescribeReservationL
|
|
|
5675
5947
|
|
|
5676
5948
|
// src/useCases/describeReservationPetProducts.js
|
|
5677
5949
|
var DescribeReservationPetProductsCommand = class _DescribeReservationPetProductsCommand {
|
|
5950
|
+
static {
|
|
5951
|
+
__name(this, "DescribeReservationPetProductsCommand");
|
|
5952
|
+
}
|
|
5678
5953
|
/**
|
|
5679
5954
|
* @description
|
|
5680
5955
|
* @constructor
|
|
@@ -5738,6 +6013,9 @@ var DescribeReservationPetProductsCommand = class _DescribeReservationPetProduct
|
|
|
5738
6013
|
|
|
5739
6014
|
// src/useCases/describeReservationPromos.js
|
|
5740
6015
|
var DescribeReservationPromosCommand = class _DescribeReservationPromosCommand {
|
|
6016
|
+
static {
|
|
6017
|
+
__name(this, "DescribeReservationPromosCommand");
|
|
6018
|
+
}
|
|
5741
6019
|
/**
|
|
5742
6020
|
* @description
|
|
5743
6021
|
* @constructor
|
|
@@ -5801,6 +6079,9 @@ var DescribeReservationPromosCommand = class _DescribeReservationPromosCommand {
|
|
|
5801
6079
|
|
|
5802
6080
|
// src/useCases/describeReservationRoomUpgrades.js
|
|
5803
6081
|
var DescribeReservationRoomUpgradesCommand = class _DescribeReservationRoomUpgradesCommand {
|
|
6082
|
+
static {
|
|
6083
|
+
__name(this, "DescribeReservationRoomUpgradesCommand");
|
|
6084
|
+
}
|
|
5804
6085
|
/**
|
|
5805
6086
|
* @description
|
|
5806
6087
|
* @constructor
|
|
@@ -5864,6 +6145,9 @@ var DescribeReservationRoomUpgradesCommand = class _DescribeReservationRoomUpgra
|
|
|
5864
6145
|
|
|
5865
6146
|
// src/useCases/describeRoom.js
|
|
5866
6147
|
var DescribeRoomCommand = class _DescribeRoomCommand {
|
|
6148
|
+
static {
|
|
6149
|
+
__name(this, "DescribeRoomCommand");
|
|
6150
|
+
}
|
|
5867
6151
|
/**
|
|
5868
6152
|
* @description
|
|
5869
6153
|
* @constructor
|
|
@@ -5927,6 +6211,9 @@ var DescribeRoomCommand = class _DescribeRoomCommand {
|
|
|
5927
6211
|
|
|
5928
6212
|
// src/useCases/describeSOS.js
|
|
5929
6213
|
var DescribeSOSCommand = class _DescribeSOSCommand {
|
|
6214
|
+
static {
|
|
6215
|
+
__name(this, "DescribeSOSCommand");
|
|
6216
|
+
}
|
|
5930
6217
|
/**
|
|
5931
6218
|
* @description
|
|
5932
6219
|
* @constructor
|
|
@@ -5990,6 +6277,9 @@ var DescribeSOSCommand = class _DescribeSOSCommand {
|
|
|
5990
6277
|
|
|
5991
6278
|
// src/useCases/describeSelf.js
|
|
5992
6279
|
var DescribeSelfCommand = class _DescribeSelfCommand {
|
|
6280
|
+
static {
|
|
6281
|
+
__name(this, "DescribeSelfCommand");
|
|
6282
|
+
}
|
|
5993
6283
|
/**
|
|
5994
6284
|
* @description
|
|
5995
6285
|
* @constructor
|
|
@@ -6053,6 +6343,9 @@ var DescribeSelfCommand = class _DescribeSelfCommand {
|
|
|
6053
6343
|
|
|
6054
6344
|
// src/useCases/describeSpace.js
|
|
6055
6345
|
var DescribeSpaceCommand = class _DescribeSpaceCommand {
|
|
6346
|
+
static {
|
|
6347
|
+
__name(this, "DescribeSpaceCommand");
|
|
6348
|
+
}
|
|
6056
6349
|
/**
|
|
6057
6350
|
* @description
|
|
6058
6351
|
* @constructor
|
|
@@ -6116,6 +6409,9 @@ var DescribeSpaceCommand = class _DescribeSpaceCommand {
|
|
|
6116
6409
|
|
|
6117
6410
|
// src/useCases/describeSwitch.js
|
|
6118
6411
|
var DescribeSwitchCommand = class _DescribeSwitchCommand {
|
|
6412
|
+
static {
|
|
6413
|
+
__name(this, "DescribeSwitchCommand");
|
|
6414
|
+
}
|
|
6119
6415
|
/**
|
|
6120
6416
|
* @description
|
|
6121
6417
|
* @constructor
|
|
@@ -6179,6 +6475,9 @@ var DescribeSwitchCommand = class _DescribeSwitchCommand {
|
|
|
6179
6475
|
|
|
6180
6476
|
// src/useCases/describeThermostat.js
|
|
6181
6477
|
var DescribeThermostatCommand = class _DescribeThermostatCommand {
|
|
6478
|
+
static {
|
|
6479
|
+
__name(this, "DescribeThermostatCommand");
|
|
6480
|
+
}
|
|
6182
6481
|
/**
|
|
6183
6482
|
* @description
|
|
6184
6483
|
* @constructor
|
|
@@ -6242,6 +6541,9 @@ var DescribeThermostatCommand = class _DescribeThermostatCommand {
|
|
|
6242
6541
|
|
|
6243
6542
|
// src/useCases/describeTicket.js
|
|
6244
6543
|
var DescribeTicketCommand = class _DescribeTicketCommand {
|
|
6544
|
+
static {
|
|
6545
|
+
__name(this, "DescribeTicketCommand");
|
|
6546
|
+
}
|
|
6245
6547
|
/**
|
|
6246
6548
|
* @description
|
|
6247
6549
|
* @constructor
|
|
@@ -6305,6 +6607,9 @@ var DescribeTicketCommand = class _DescribeTicketCommand {
|
|
|
6305
6607
|
|
|
6306
6608
|
// src/useCases/describeTicketStats.js
|
|
6307
6609
|
var DescribeTicketStatsCommand = class _DescribeTicketStatsCommand {
|
|
6610
|
+
static {
|
|
6611
|
+
__name(this, "DescribeTicketStatsCommand");
|
|
6612
|
+
}
|
|
6308
6613
|
/**
|
|
6309
6614
|
* @description
|
|
6310
6615
|
* @constructor
|
|
@@ -6368,6 +6673,9 @@ var DescribeTicketStatsCommand = class _DescribeTicketStatsCommand {
|
|
|
6368
6673
|
|
|
6369
6674
|
// src/useCases/describeTimeSheet.js
|
|
6370
6675
|
var DescribeTimeSheetCommand = class _DescribeTimeSheetCommand {
|
|
6676
|
+
static {
|
|
6677
|
+
__name(this, "DescribeTimeSheetCommand");
|
|
6678
|
+
}
|
|
6371
6679
|
/**
|
|
6372
6680
|
* @description
|
|
6373
6681
|
* @constructor
|
|
@@ -6431,6 +6739,9 @@ var DescribeTimeSheetCommand = class _DescribeTimeSheetCommand {
|
|
|
6431
6739
|
|
|
6432
6740
|
// src/useCases/describeTimeSheetStats.js
|
|
6433
6741
|
var DescribeTimeSheetStatsCommand = class _DescribeTimeSheetStatsCommand {
|
|
6742
|
+
static {
|
|
6743
|
+
__name(this, "DescribeTimeSheetStatsCommand");
|
|
6744
|
+
}
|
|
6434
6745
|
/**
|
|
6435
6746
|
* @description
|
|
6436
6747
|
* @constructor
|
|
@@ -6494,6 +6805,9 @@ var DescribeTimeSheetStatsCommand = class _DescribeTimeSheetStatsCommand {
|
|
|
6494
6805
|
|
|
6495
6806
|
// src/useCases/describeUser.js
|
|
6496
6807
|
var DescribeUserCommand = class _DescribeUserCommand {
|
|
6808
|
+
static {
|
|
6809
|
+
__name(this, "DescribeUserCommand");
|
|
6810
|
+
}
|
|
6497
6811
|
/**
|
|
6498
6812
|
* @description
|
|
6499
6813
|
* @constructor
|
|
@@ -6557,6 +6871,9 @@ var DescribeUserCommand = class _DescribeUserCommand {
|
|
|
6557
6871
|
|
|
6558
6872
|
// src/useCases/describeVendor.js
|
|
6559
6873
|
var DescribeVendorCommand = class _DescribeVendorCommand {
|
|
6874
|
+
static {
|
|
6875
|
+
__name(this, "DescribeVendorCommand");
|
|
6876
|
+
}
|
|
6560
6877
|
/**
|
|
6561
6878
|
* @description
|
|
6562
6879
|
* @constructor
|
|
@@ -6620,6 +6937,9 @@ var DescribeVendorCommand = class _DescribeVendorCommand {
|
|
|
6620
6937
|
|
|
6621
6938
|
// src/useCases/describeWindowCovering.js
|
|
6622
6939
|
var DescribeWindowCoveringCommand = class _DescribeWindowCoveringCommand {
|
|
6940
|
+
static {
|
|
6941
|
+
__name(this, "DescribeWindowCoveringCommand");
|
|
6942
|
+
}
|
|
6623
6943
|
/**
|
|
6624
6944
|
* @description
|
|
6625
6945
|
* @constructor
|
|
@@ -6683,6 +7003,9 @@ var DescribeWindowCoveringCommand = class _DescribeWindowCoveringCommand {
|
|
|
6683
7003
|
|
|
6684
7004
|
// src/useCases/discoverReservations.js
|
|
6685
7005
|
var DiscoverReservationsCommand = class _DiscoverReservationsCommand {
|
|
7006
|
+
static {
|
|
7007
|
+
__name(this, "DiscoverReservationsCommand");
|
|
7008
|
+
}
|
|
6686
7009
|
/**
|
|
6687
7010
|
* @description
|
|
6688
7011
|
* @constructor
|
|
@@ -6746,6 +7069,9 @@ var DiscoverReservationsCommand = class _DiscoverReservationsCommand {
|
|
|
6746
7069
|
|
|
6747
7070
|
// src/useCases/emailUserAccountSetup.js
|
|
6748
7071
|
var EmailUserAccountSetupCommand = class _EmailUserAccountSetupCommand {
|
|
7072
|
+
static {
|
|
7073
|
+
__name(this, "EmailUserAccountSetupCommand");
|
|
7074
|
+
}
|
|
6749
7075
|
/**
|
|
6750
7076
|
* @description
|
|
6751
7077
|
* @constructor
|
|
@@ -6809,6 +7135,9 @@ var EmailUserAccountSetupCommand = class _EmailUserAccountSetupCommand {
|
|
|
6809
7135
|
|
|
6810
7136
|
// src/useCases/finishRegisterPasskey.js
|
|
6811
7137
|
var FinishRegisterPasskeyCommand = class _FinishRegisterPasskeyCommand {
|
|
7138
|
+
static {
|
|
7139
|
+
__name(this, "FinishRegisterPasskeyCommand");
|
|
7140
|
+
}
|
|
6812
7141
|
/**
|
|
6813
7142
|
* @description
|
|
6814
7143
|
* @constructor
|
|
@@ -6872,6 +7201,9 @@ var FinishRegisterPasskeyCommand = class _FinishRegisterPasskeyCommand {
|
|
|
6872
7201
|
|
|
6873
7202
|
// src/useCases/listAlarms.js
|
|
6874
7203
|
var ListAlarmsCommand = class _ListAlarmsCommand {
|
|
7204
|
+
static {
|
|
7205
|
+
__name(this, "ListAlarmsCommand");
|
|
7206
|
+
}
|
|
6875
7207
|
/**
|
|
6876
7208
|
* @description
|
|
6877
7209
|
* @constructor
|
|
@@ -6935,6 +7267,9 @@ var ListAlarmsCommand = class _ListAlarmsCommand {
|
|
|
6935
7267
|
|
|
6936
7268
|
// src/useCases/listAnnouncements.js
|
|
6937
7269
|
var ListAnnouncementsCommand = class _ListAnnouncementsCommand {
|
|
7270
|
+
static {
|
|
7271
|
+
__name(this, "ListAnnouncementsCommand");
|
|
7272
|
+
}
|
|
6938
7273
|
/**
|
|
6939
7274
|
* @description
|
|
6940
7275
|
* @constructor
|
|
@@ -6998,6 +7333,9 @@ var ListAnnouncementsCommand = class _ListAnnouncementsCommand {
|
|
|
6998
7333
|
|
|
6999
7334
|
// src/useCases/listCameras.js
|
|
7000
7335
|
var ListCamerasCommand = class _ListCamerasCommand {
|
|
7336
|
+
static {
|
|
7337
|
+
__name(this, "ListCamerasCommand");
|
|
7338
|
+
}
|
|
7001
7339
|
/**
|
|
7002
7340
|
* @description
|
|
7003
7341
|
* @constructor
|
|
@@ -7061,6 +7399,9 @@ var ListCamerasCommand = class _ListCamerasCommand {
|
|
|
7061
7399
|
|
|
7062
7400
|
// src/useCases/listCategories.js
|
|
7063
7401
|
var ListCategoriesCommand = class _ListCategoriesCommand {
|
|
7402
|
+
static {
|
|
7403
|
+
__name(this, "ListCategoriesCommand");
|
|
7404
|
+
}
|
|
7064
7405
|
/**
|
|
7065
7406
|
* @description
|
|
7066
7407
|
* @constructor
|
|
@@ -7124,6 +7465,9 @@ var ListCategoriesCommand = class _ListCategoriesCommand {
|
|
|
7124
7465
|
|
|
7125
7466
|
// src/useCases/listCourtesy.js
|
|
7126
7467
|
var ListCourtesyCommand = class _ListCourtesyCommand {
|
|
7468
|
+
static {
|
|
7469
|
+
__name(this, "ListCourtesyCommand");
|
|
7470
|
+
}
|
|
7127
7471
|
/**
|
|
7128
7472
|
* @description
|
|
7129
7473
|
* @constructor
|
|
@@ -7187,6 +7531,9 @@ var ListCourtesyCommand = class _ListCourtesyCommand {
|
|
|
7187
7531
|
|
|
7188
7532
|
// src/useCases/listDimmers.js
|
|
7189
7533
|
var ListDimmersCommand = class _ListDimmersCommand {
|
|
7534
|
+
static {
|
|
7535
|
+
__name(this, "ListDimmersCommand");
|
|
7536
|
+
}
|
|
7190
7537
|
/**
|
|
7191
7538
|
* @description
|
|
7192
7539
|
* @constructor
|
|
@@ -7250,6 +7597,9 @@ var ListDimmersCommand = class _ListDimmersCommand {
|
|
|
7250
7597
|
|
|
7251
7598
|
// src/useCases/listDiscoveredDevices.js
|
|
7252
7599
|
var ListDiscoveredDevicesCommand = class _ListDiscoveredDevicesCommand {
|
|
7600
|
+
static {
|
|
7601
|
+
__name(this, "ListDiscoveredDevicesCommand");
|
|
7602
|
+
}
|
|
7253
7603
|
/**
|
|
7254
7604
|
* @description
|
|
7255
7605
|
* @constructor
|
|
@@ -7313,6 +7663,9 @@ var ListDiscoveredDevicesCommand = class _ListDiscoveredDevicesCommand {
|
|
|
7313
7663
|
|
|
7314
7664
|
// src/useCases/listIssues.js
|
|
7315
7665
|
var ListIssuesCommand = class _ListIssuesCommand {
|
|
7666
|
+
static {
|
|
7667
|
+
__name(this, "ListIssuesCommand");
|
|
7668
|
+
}
|
|
7316
7669
|
/**
|
|
7317
7670
|
* @description
|
|
7318
7671
|
* @constructor
|
|
@@ -7376,6 +7729,9 @@ var ListIssuesCommand = class _ListIssuesCommand {
|
|
|
7376
7729
|
|
|
7377
7730
|
// src/useCases/listLocks.js
|
|
7378
7731
|
var ListLocksCommand = class _ListLocksCommand {
|
|
7732
|
+
static {
|
|
7733
|
+
__name(this, "ListLocksCommand");
|
|
7734
|
+
}
|
|
7379
7735
|
/**
|
|
7380
7736
|
* @description
|
|
7381
7737
|
* @constructor
|
|
@@ -7439,6 +7795,9 @@ var ListLocksCommand = class _ListLocksCommand {
|
|
|
7439
7795
|
|
|
7440
7796
|
// src/useCases/listMediaSources.js
|
|
7441
7797
|
var ListMediaSourcesCommand = class _ListMediaSourcesCommand {
|
|
7798
|
+
static {
|
|
7799
|
+
__name(this, "ListMediaSourcesCommand");
|
|
7800
|
+
}
|
|
7442
7801
|
/**
|
|
7443
7802
|
* @description
|
|
7444
7803
|
* @constructor
|
|
@@ -7502,6 +7861,9 @@ var ListMediaSourcesCommand = class _ListMediaSourcesCommand {
|
|
|
7502
7861
|
|
|
7503
7862
|
// src/useCases/listMyOrders.js
|
|
7504
7863
|
var ListMyOrdersCommand = class _ListMyOrdersCommand {
|
|
7864
|
+
static {
|
|
7865
|
+
__name(this, "ListMyOrdersCommand");
|
|
7866
|
+
}
|
|
7505
7867
|
/**
|
|
7506
7868
|
* @description
|
|
7507
7869
|
* @constructor
|
|
@@ -7565,6 +7927,9 @@ var ListMyOrdersCommand = class _ListMyOrdersCommand {
|
|
|
7565
7927
|
|
|
7566
7928
|
// src/useCases/listMyProperties.js
|
|
7567
7929
|
var ListMyPropertiesCommand = class _ListMyPropertiesCommand {
|
|
7930
|
+
static {
|
|
7931
|
+
__name(this, "ListMyPropertiesCommand");
|
|
7932
|
+
}
|
|
7568
7933
|
/**
|
|
7569
7934
|
* @description
|
|
7570
7935
|
* @constructor
|
|
@@ -7628,6 +7993,9 @@ var ListMyPropertiesCommand = class _ListMyPropertiesCommand {
|
|
|
7628
7993
|
|
|
7629
7994
|
// src/useCases/listMyReservations.js
|
|
7630
7995
|
var ListMyReservationsCommand = class _ListMyReservationsCommand {
|
|
7996
|
+
static {
|
|
7997
|
+
__name(this, "ListMyReservationsCommand");
|
|
7998
|
+
}
|
|
7631
7999
|
/**
|
|
7632
8000
|
* @description
|
|
7633
8001
|
* @constructor
|
|
@@ -7691,6 +8059,9 @@ var ListMyReservationsCommand = class _ListMyReservationsCommand {
|
|
|
7691
8059
|
|
|
7692
8060
|
// src/useCases/listMySpaces.js
|
|
7693
8061
|
var ListMySpacesCommand = class _ListMySpacesCommand {
|
|
8062
|
+
static {
|
|
8063
|
+
__name(this, "ListMySpacesCommand");
|
|
8064
|
+
}
|
|
7694
8065
|
/**
|
|
7695
8066
|
* @description
|
|
7696
8067
|
* @constructor
|
|
@@ -7754,6 +8125,9 @@ var ListMySpacesCommand = class _ListMySpacesCommand {
|
|
|
7754
8125
|
|
|
7755
8126
|
// src/useCases/listMyTickets.js
|
|
7756
8127
|
var ListMyTicketsCommand = class _ListMyTicketsCommand {
|
|
8128
|
+
static {
|
|
8129
|
+
__name(this, "ListMyTicketsCommand");
|
|
8130
|
+
}
|
|
7757
8131
|
/**
|
|
7758
8132
|
* @description
|
|
7759
8133
|
* @constructor
|
|
@@ -7817,6 +8191,9 @@ var ListMyTicketsCommand = class _ListMyTicketsCommand {
|
|
|
7817
8191
|
|
|
7818
8192
|
// src/useCases/listMyTimeSheets.js
|
|
7819
8193
|
var ListMyTimeSheetsCommand = class _ListMyTimeSheetsCommand {
|
|
8194
|
+
static {
|
|
8195
|
+
__name(this, "ListMyTimeSheetsCommand");
|
|
8196
|
+
}
|
|
7820
8197
|
/**
|
|
7821
8198
|
* @description
|
|
7822
8199
|
* @constructor
|
|
@@ -7880,6 +8257,9 @@ var ListMyTimeSheetsCommand = class _ListMyTimeSheetsCommand {
|
|
|
7880
8257
|
|
|
7881
8258
|
// src/useCases/listOrders.js
|
|
7882
8259
|
var ListOrdersCommand = class _ListOrdersCommand {
|
|
8260
|
+
static {
|
|
8261
|
+
__name(this, "ListOrdersCommand");
|
|
8262
|
+
}
|
|
7883
8263
|
/**
|
|
7884
8264
|
* @description
|
|
7885
8265
|
* @constructor
|
|
@@ -7943,6 +8323,9 @@ var ListOrdersCommand = class _ListOrdersCommand {
|
|
|
7943
8323
|
|
|
7944
8324
|
// src/useCases/listOrganizations.js
|
|
7945
8325
|
var ListOrganizationsCommand = class _ListOrganizationsCommand {
|
|
8326
|
+
static {
|
|
8327
|
+
__name(this, "ListOrganizationsCommand");
|
|
8328
|
+
}
|
|
7946
8329
|
/**
|
|
7947
8330
|
* @description
|
|
7948
8331
|
* @constructor
|
|
@@ -8006,6 +8389,9 @@ var ListOrganizationsCommand = class _ListOrganizationsCommand {
|
|
|
8006
8389
|
|
|
8007
8390
|
// src/useCases/listPolicies.js
|
|
8008
8391
|
var ListPoliciesCommand = class _ListPoliciesCommand {
|
|
8392
|
+
static {
|
|
8393
|
+
__name(this, "ListPoliciesCommand");
|
|
8394
|
+
}
|
|
8009
8395
|
/**
|
|
8010
8396
|
* @description
|
|
8011
8397
|
* @constructor
|
|
@@ -8069,6 +8455,9 @@ var ListPoliciesCommand = class _ListPoliciesCommand {
|
|
|
8069
8455
|
|
|
8070
8456
|
// src/useCases/listProducts.js
|
|
8071
8457
|
var ListProductsCommand = class _ListProductsCommand {
|
|
8458
|
+
static {
|
|
8459
|
+
__name(this, "ListProductsCommand");
|
|
8460
|
+
}
|
|
8072
8461
|
/**
|
|
8073
8462
|
* @description
|
|
8074
8463
|
* @constructor
|
|
@@ -8132,6 +8521,9 @@ var ListProductsCommand = class _ListProductsCommand {
|
|
|
8132
8521
|
|
|
8133
8522
|
// src/useCases/listProperties.js
|
|
8134
8523
|
var ListPropertiesCommand = class _ListPropertiesCommand {
|
|
8524
|
+
static {
|
|
8525
|
+
__name(this, "ListPropertiesCommand");
|
|
8526
|
+
}
|
|
8135
8527
|
/**
|
|
8136
8528
|
* @description
|
|
8137
8529
|
* @constructor
|
|
@@ -8195,6 +8587,9 @@ var ListPropertiesCommand = class _ListPropertiesCommand {
|
|
|
8195
8587
|
|
|
8196
8588
|
// src/useCases/listReservations.js
|
|
8197
8589
|
var ListReservationsCommand = class _ListReservationsCommand {
|
|
8590
|
+
static {
|
|
8591
|
+
__name(this, "ListReservationsCommand");
|
|
8592
|
+
}
|
|
8198
8593
|
/**
|
|
8199
8594
|
* @description
|
|
8200
8595
|
* @constructor
|
|
@@ -8258,6 +8653,9 @@ var ListReservationsCommand = class _ListReservationsCommand {
|
|
|
8258
8653
|
|
|
8259
8654
|
// src/useCases/listRooms.js
|
|
8260
8655
|
var ListRoomsCommand = class _ListRoomsCommand {
|
|
8656
|
+
static {
|
|
8657
|
+
__name(this, "ListRoomsCommand");
|
|
8658
|
+
}
|
|
8261
8659
|
/**
|
|
8262
8660
|
* @description
|
|
8263
8661
|
* @constructor
|
|
@@ -8321,6 +8719,9 @@ var ListRoomsCommand = class _ListRoomsCommand {
|
|
|
8321
8719
|
|
|
8322
8720
|
// src/useCases/listRoomsInSpace.js
|
|
8323
8721
|
var ListRoomsInSpaceCommand = class _ListRoomsInSpaceCommand {
|
|
8722
|
+
static {
|
|
8723
|
+
__name(this, "ListRoomsInSpaceCommand");
|
|
8724
|
+
}
|
|
8324
8725
|
/**
|
|
8325
8726
|
* @description
|
|
8326
8727
|
* @constructor
|
|
@@ -8384,6 +8785,9 @@ var ListRoomsInSpaceCommand = class _ListRoomsInSpaceCommand {
|
|
|
8384
8785
|
|
|
8385
8786
|
// src/useCases/listScenes.js
|
|
8386
8787
|
var ListScenesCommand = class _ListScenesCommand {
|
|
8788
|
+
static {
|
|
8789
|
+
__name(this, "ListScenesCommand");
|
|
8790
|
+
}
|
|
8387
8791
|
/**
|
|
8388
8792
|
* @description
|
|
8389
8793
|
* @constructor
|
|
@@ -8447,6 +8851,9 @@ var ListScenesCommand = class _ListScenesCommand {
|
|
|
8447
8851
|
|
|
8448
8852
|
// src/useCases/listSpaces.js
|
|
8449
8853
|
var ListSpacesCommand = class _ListSpacesCommand {
|
|
8854
|
+
static {
|
|
8855
|
+
__name(this, "ListSpacesCommand");
|
|
8856
|
+
}
|
|
8450
8857
|
/**
|
|
8451
8858
|
* @description
|
|
8452
8859
|
* @constructor
|
|
@@ -8510,6 +8917,9 @@ var ListSpacesCommand = class _ListSpacesCommand {
|
|
|
8510
8917
|
|
|
8511
8918
|
// src/useCases/listSwitches.js
|
|
8512
8919
|
var ListSwitchesCommand = class _ListSwitchesCommand {
|
|
8920
|
+
static {
|
|
8921
|
+
__name(this, "ListSwitchesCommand");
|
|
8922
|
+
}
|
|
8513
8923
|
/**
|
|
8514
8924
|
* @description
|
|
8515
8925
|
* @constructor
|
|
@@ -8573,6 +8983,9 @@ var ListSwitchesCommand = class _ListSwitchesCommand {
|
|
|
8573
8983
|
|
|
8574
8984
|
// src/useCases/listTeam.js
|
|
8575
8985
|
var ListTeamCommand = class _ListTeamCommand {
|
|
8986
|
+
static {
|
|
8987
|
+
__name(this, "ListTeamCommand");
|
|
8988
|
+
}
|
|
8576
8989
|
/**
|
|
8577
8990
|
* @description
|
|
8578
8991
|
* @constructor
|
|
@@ -8636,6 +9049,9 @@ var ListTeamCommand = class _ListTeamCommand {
|
|
|
8636
9049
|
|
|
8637
9050
|
// src/useCases/listThermostats.js
|
|
8638
9051
|
var ListThermostatsCommand = class _ListThermostatsCommand {
|
|
9052
|
+
static {
|
|
9053
|
+
__name(this, "ListThermostatsCommand");
|
|
9054
|
+
}
|
|
8639
9055
|
/**
|
|
8640
9056
|
* @description
|
|
8641
9057
|
* @constructor
|
|
@@ -8699,6 +9115,9 @@ var ListThermostatsCommand = class _ListThermostatsCommand {
|
|
|
8699
9115
|
|
|
8700
9116
|
// src/useCases/listTickets.js
|
|
8701
9117
|
var ListTicketsCommand = class _ListTicketsCommand {
|
|
9118
|
+
static {
|
|
9119
|
+
__name(this, "ListTicketsCommand");
|
|
9120
|
+
}
|
|
8702
9121
|
/**
|
|
8703
9122
|
* @description
|
|
8704
9123
|
* @constructor
|
|
@@ -8762,6 +9181,9 @@ var ListTicketsCommand = class _ListTicketsCommand {
|
|
|
8762
9181
|
|
|
8763
9182
|
// src/useCases/listTimeSheets.js
|
|
8764
9183
|
var ListTimeSheetsCommand = class _ListTimeSheetsCommand {
|
|
9184
|
+
static {
|
|
9185
|
+
__name(this, "ListTimeSheetsCommand");
|
|
9186
|
+
}
|
|
8765
9187
|
/**
|
|
8766
9188
|
* @description
|
|
8767
9189
|
* @constructor
|
|
@@ -8825,6 +9247,9 @@ var ListTimeSheetsCommand = class _ListTimeSheetsCommand {
|
|
|
8825
9247
|
|
|
8826
9248
|
// src/useCases/listUserMobileKeys.js
|
|
8827
9249
|
var ListUserMobileKeysCommand = class _ListUserMobileKeysCommand {
|
|
9250
|
+
static {
|
|
9251
|
+
__name(this, "ListUserMobileKeysCommand");
|
|
9252
|
+
}
|
|
8828
9253
|
/**
|
|
8829
9254
|
* @description
|
|
8830
9255
|
* @constructor
|
|
@@ -8888,6 +9313,9 @@ var ListUserMobileKeysCommand = class _ListUserMobileKeysCommand {
|
|
|
8888
9313
|
|
|
8889
9314
|
// src/useCases/listUserOrders.js
|
|
8890
9315
|
var ListUserOrdersCommand = class _ListUserOrdersCommand {
|
|
9316
|
+
static {
|
|
9317
|
+
__name(this, "ListUserOrdersCommand");
|
|
9318
|
+
}
|
|
8891
9319
|
/**
|
|
8892
9320
|
* @description
|
|
8893
9321
|
* @constructor
|
|
@@ -8951,6 +9379,9 @@ var ListUserOrdersCommand = class _ListUserOrdersCommand {
|
|
|
8951
9379
|
|
|
8952
9380
|
// src/useCases/listUserReservations.js
|
|
8953
9381
|
var ListUserReservationsCommand = class _ListUserReservationsCommand {
|
|
9382
|
+
static {
|
|
9383
|
+
__name(this, "ListUserReservationsCommand");
|
|
9384
|
+
}
|
|
8954
9385
|
/**
|
|
8955
9386
|
* @description
|
|
8956
9387
|
* @constructor
|
|
@@ -9014,6 +9445,9 @@ var ListUserReservationsCommand = class _ListUserReservationsCommand {
|
|
|
9014
9445
|
|
|
9015
9446
|
// src/useCases/listUserSpaces.js
|
|
9016
9447
|
var ListUserSpacesCommand = class _ListUserSpacesCommand {
|
|
9448
|
+
static {
|
|
9449
|
+
__name(this, "ListUserSpacesCommand");
|
|
9450
|
+
}
|
|
9017
9451
|
/**
|
|
9018
9452
|
* @description
|
|
9019
9453
|
* @constructor
|
|
@@ -9077,6 +9511,9 @@ var ListUserSpacesCommand = class _ListUserSpacesCommand {
|
|
|
9077
9511
|
|
|
9078
9512
|
// src/useCases/listUsers.js
|
|
9079
9513
|
var ListUsersCommand = class _ListUsersCommand {
|
|
9514
|
+
static {
|
|
9515
|
+
__name(this, "ListUsersCommand");
|
|
9516
|
+
}
|
|
9080
9517
|
/**
|
|
9081
9518
|
* @description
|
|
9082
9519
|
* @constructor
|
|
@@ -9140,6 +9577,9 @@ var ListUsersCommand = class _ListUsersCommand {
|
|
|
9140
9577
|
|
|
9141
9578
|
// src/useCases/listVendors.js
|
|
9142
9579
|
var ListVendorsCommand = class _ListVendorsCommand {
|
|
9580
|
+
static {
|
|
9581
|
+
__name(this, "ListVendorsCommand");
|
|
9582
|
+
}
|
|
9143
9583
|
/**
|
|
9144
9584
|
* @description
|
|
9145
9585
|
* @constructor
|
|
@@ -9203,6 +9643,9 @@ var ListVendorsCommand = class _ListVendorsCommand {
|
|
|
9203
9643
|
|
|
9204
9644
|
// src/useCases/listWindowCoverings.js
|
|
9205
9645
|
var ListWindowCoveringsCommand = class _ListWindowCoveringsCommand {
|
|
9646
|
+
static {
|
|
9647
|
+
__name(this, "ListWindowCoveringsCommand");
|
|
9648
|
+
}
|
|
9206
9649
|
/**
|
|
9207
9650
|
* @description
|
|
9208
9651
|
* @constructor
|
|
@@ -9266,6 +9709,9 @@ var ListWindowCoveringsCommand = class _ListWindowCoveringsCommand {
|
|
|
9266
9709
|
|
|
9267
9710
|
// src/useCases/loginFinish.js
|
|
9268
9711
|
var LoginFinishCommand = class _LoginFinishCommand {
|
|
9712
|
+
static {
|
|
9713
|
+
__name(this, "LoginFinishCommand");
|
|
9714
|
+
}
|
|
9269
9715
|
/**
|
|
9270
9716
|
* @description
|
|
9271
9717
|
* @constructor
|
|
@@ -9329,6 +9775,9 @@ var LoginFinishCommand = class _LoginFinishCommand {
|
|
|
9329
9775
|
|
|
9330
9776
|
// src/useCases/loginStart.js
|
|
9331
9777
|
var LoginStartCommand = class _LoginStartCommand {
|
|
9778
|
+
static {
|
|
9779
|
+
__name(this, "LoginStartCommand");
|
|
9780
|
+
}
|
|
9332
9781
|
/**
|
|
9333
9782
|
* @description
|
|
9334
9783
|
* @constructor
|
|
@@ -9392,6 +9841,9 @@ var LoginStartCommand = class _LoginStartCommand {
|
|
|
9392
9841
|
|
|
9393
9842
|
// src/useCases/logoutSelf.js
|
|
9394
9843
|
var LogoutSelfCommand = class _LogoutSelfCommand {
|
|
9844
|
+
static {
|
|
9845
|
+
__name(this, "LogoutSelfCommand");
|
|
9846
|
+
}
|
|
9395
9847
|
/**
|
|
9396
9848
|
* @description
|
|
9397
9849
|
* @constructor
|
|
@@ -9455,6 +9907,9 @@ var LogoutSelfCommand = class _LogoutSelfCommand {
|
|
|
9455
9907
|
|
|
9456
9908
|
// src/useCases/logoutUser.js
|
|
9457
9909
|
var LogoutUserCommand = class _LogoutUserCommand {
|
|
9910
|
+
static {
|
|
9911
|
+
__name(this, "LogoutUserCommand");
|
|
9912
|
+
}
|
|
9458
9913
|
/**
|
|
9459
9914
|
* @description
|
|
9460
9915
|
* @constructor
|
|
@@ -9518,6 +9973,9 @@ var LogoutUserCommand = class _LogoutUserCommand {
|
|
|
9518
9973
|
|
|
9519
9974
|
// src/useCases/matchUserIdentification.js
|
|
9520
9975
|
var MatchUserIdentificationCommand = class _MatchUserIdentificationCommand {
|
|
9976
|
+
static {
|
|
9977
|
+
__name(this, "MatchUserIdentificationCommand");
|
|
9978
|
+
}
|
|
9521
9979
|
/**
|
|
9522
9980
|
* @description
|
|
9523
9981
|
* @constructor
|
|
@@ -9581,6 +10039,9 @@ var MatchUserIdentificationCommand = class _MatchUserIdentificationCommand {
|
|
|
9581
10039
|
|
|
9582
10040
|
// src/useCases/oCRDocument.js
|
|
9583
10041
|
var OCRDocumentCommand = class _OCRDocumentCommand {
|
|
10042
|
+
static {
|
|
10043
|
+
__name(this, "OCRDocumentCommand");
|
|
10044
|
+
}
|
|
9584
10045
|
/**
|
|
9585
10046
|
* @description
|
|
9586
10047
|
* @constructor
|
|
@@ -9644,6 +10105,9 @@ var OCRDocumentCommand = class _OCRDocumentCommand {
|
|
|
9644
10105
|
|
|
9645
10106
|
// src/useCases/purchaseReservationEarlyCheckInProducts.js
|
|
9646
10107
|
var PurchaseReservationEarlyCheckInProductsCommand = class _PurchaseReservationEarlyCheckInProductsCommand {
|
|
10108
|
+
static {
|
|
10109
|
+
__name(this, "PurchaseReservationEarlyCheckInProductsCommand");
|
|
10110
|
+
}
|
|
9647
10111
|
/**
|
|
9648
10112
|
* @description
|
|
9649
10113
|
* @constructor
|
|
@@ -9707,6 +10171,9 @@ var PurchaseReservationEarlyCheckInProductsCommand = class _PurchaseReservationE
|
|
|
9707
10171
|
|
|
9708
10172
|
// src/useCases/purchaseReservationLateCheckOutProducts.js
|
|
9709
10173
|
var PurchaseReservationLateCheckOutProductsCommand = class _PurchaseReservationLateCheckOutProductsCommand {
|
|
10174
|
+
static {
|
|
10175
|
+
__name(this, "PurchaseReservationLateCheckOutProductsCommand");
|
|
10176
|
+
}
|
|
9710
10177
|
/**
|
|
9711
10178
|
* @description
|
|
9712
10179
|
* @constructor
|
|
@@ -9770,6 +10237,9 @@ var PurchaseReservationLateCheckOutProductsCommand = class _PurchaseReservationL
|
|
|
9770
10237
|
|
|
9771
10238
|
// src/useCases/purchaseReservationPetProducts.js
|
|
9772
10239
|
var PurchaseReservationPetProductsCommand = class _PurchaseReservationPetProductsCommand {
|
|
10240
|
+
static {
|
|
10241
|
+
__name(this, "PurchaseReservationPetProductsCommand");
|
|
10242
|
+
}
|
|
9773
10243
|
/**
|
|
9774
10244
|
* @description
|
|
9775
10245
|
* @constructor
|
|
@@ -9833,6 +10303,9 @@ var PurchaseReservationPetProductsCommand = class _PurchaseReservationPetProduct
|
|
|
9833
10303
|
|
|
9834
10304
|
// src/useCases/purchaseReservationPromos.js
|
|
9835
10305
|
var PurchaseReservationPromosCommand = class _PurchaseReservationPromosCommand {
|
|
10306
|
+
static {
|
|
10307
|
+
__name(this, "PurchaseReservationPromosCommand");
|
|
10308
|
+
}
|
|
9836
10309
|
/**
|
|
9837
10310
|
* @description
|
|
9838
10311
|
* @constructor
|
|
@@ -9896,6 +10369,9 @@ var PurchaseReservationPromosCommand = class _PurchaseReservationPromosCommand {
|
|
|
9896
10369
|
|
|
9897
10370
|
// src/useCases/purchaseReservationRoomUpgrades.js
|
|
9898
10371
|
var PurchaseReservationRoomUpgradesCommand = class _PurchaseReservationRoomUpgradesCommand {
|
|
10372
|
+
static {
|
|
10373
|
+
__name(this, "PurchaseReservationRoomUpgradesCommand");
|
|
10374
|
+
}
|
|
9899
10375
|
/**
|
|
9900
10376
|
* @description
|
|
9901
10377
|
* @constructor
|
|
@@ -9959,6 +10435,9 @@ var PurchaseReservationRoomUpgradesCommand = class _PurchaseReservationRoomUpgra
|
|
|
9959
10435
|
|
|
9960
10436
|
// src/useCases/requestLoginToken.js
|
|
9961
10437
|
var RequestLoginTokenCommand = class _RequestLoginTokenCommand {
|
|
10438
|
+
static {
|
|
10439
|
+
__name(this, "RequestLoginTokenCommand");
|
|
10440
|
+
}
|
|
9962
10441
|
/**
|
|
9963
10442
|
* @description
|
|
9964
10443
|
* @constructor
|
|
@@ -10022,6 +10501,9 @@ var RequestLoginTokenCommand = class _RequestLoginTokenCommand {
|
|
|
10022
10501
|
|
|
10023
10502
|
// src/useCases/sendCheckInSMS.js
|
|
10024
10503
|
var SendCheckInSMSCommand = class _SendCheckInSMSCommand {
|
|
10504
|
+
static {
|
|
10505
|
+
__name(this, "SendCheckInSMSCommand");
|
|
10506
|
+
}
|
|
10025
10507
|
/**
|
|
10026
10508
|
* @description
|
|
10027
10509
|
* @constructor
|
|
@@ -10085,6 +10567,9 @@ var SendCheckInSMSCommand = class _SendCheckInSMSCommand {
|
|
|
10085
10567
|
|
|
10086
10568
|
// src/useCases/sendCheckOutSMS.js
|
|
10087
10569
|
var SendCheckOutSMSCommand = class _SendCheckOutSMSCommand {
|
|
10570
|
+
static {
|
|
10571
|
+
__name(this, "SendCheckOutSMSCommand");
|
|
10572
|
+
}
|
|
10088
10573
|
/**
|
|
10089
10574
|
* @description
|
|
10090
10575
|
* @constructor
|
|
@@ -10148,6 +10633,9 @@ var SendCheckOutSMSCommand = class _SendCheckOutSMSCommand {
|
|
|
10148
10633
|
|
|
10149
10634
|
// src/useCases/sendPreArrivalEmail.js
|
|
10150
10635
|
var SendPreArrivalEmailCommand = class _SendPreArrivalEmailCommand {
|
|
10636
|
+
static {
|
|
10637
|
+
__name(this, "SendPreArrivalEmailCommand");
|
|
10638
|
+
}
|
|
10151
10639
|
/**
|
|
10152
10640
|
* @description
|
|
10153
10641
|
* @constructor
|
|
@@ -10211,6 +10699,9 @@ var SendPreArrivalEmailCommand = class _SendPreArrivalEmailCommand {
|
|
|
10211
10699
|
|
|
10212
10700
|
// src/useCases/sendPreArrivalSMS.js
|
|
10213
10701
|
var SendPreArrivalSMSCommand = class _SendPreArrivalSMSCommand {
|
|
10702
|
+
static {
|
|
10703
|
+
__name(this, "SendPreArrivalSMSCommand");
|
|
10704
|
+
}
|
|
10214
10705
|
/**
|
|
10215
10706
|
* @description
|
|
10216
10707
|
* @constructor
|
|
@@ -10274,6 +10765,9 @@ var SendPreArrivalSMSCommand = class _SendPreArrivalSMSCommand {
|
|
|
10274
10765
|
|
|
10275
10766
|
// src/useCases/sendRoomControlSMS.js
|
|
10276
10767
|
var SendRoomControlSMSCommand = class _SendRoomControlSMSCommand {
|
|
10768
|
+
static {
|
|
10769
|
+
__name(this, "SendRoomControlSMSCommand");
|
|
10770
|
+
}
|
|
10277
10771
|
/**
|
|
10278
10772
|
* @description
|
|
10279
10773
|
* @constructor
|
|
@@ -10337,6 +10831,9 @@ var SendRoomControlSMSCommand = class _SendRoomControlSMSCommand {
|
|
|
10337
10831
|
|
|
10338
10832
|
// src/useCases/sendVerificationCode.js
|
|
10339
10833
|
var SendVerificationCodeCommand = class _SendVerificationCodeCommand {
|
|
10834
|
+
static {
|
|
10835
|
+
__name(this, "SendVerificationCodeCommand");
|
|
10836
|
+
}
|
|
10340
10837
|
/**
|
|
10341
10838
|
* @description
|
|
10342
10839
|
* @constructor
|
|
@@ -10400,6 +10897,9 @@ var SendVerificationCodeCommand = class _SendVerificationCodeCommand {
|
|
|
10400
10897
|
|
|
10401
10898
|
// src/useCases/setAlarm.js
|
|
10402
10899
|
var SetAlarmCommand = class _SetAlarmCommand {
|
|
10900
|
+
static {
|
|
10901
|
+
__name(this, "SetAlarmCommand");
|
|
10902
|
+
}
|
|
10403
10903
|
/**
|
|
10404
10904
|
* @description
|
|
10405
10905
|
* @constructor
|
|
@@ -10463,6 +10963,9 @@ var SetAlarmCommand = class _SetAlarmCommand {
|
|
|
10463
10963
|
|
|
10464
10964
|
// src/useCases/setCamera.js
|
|
10465
10965
|
var SetCameraCommand = class _SetCameraCommand {
|
|
10966
|
+
static {
|
|
10967
|
+
__name(this, "SetCameraCommand");
|
|
10968
|
+
}
|
|
10466
10969
|
/**
|
|
10467
10970
|
* @description
|
|
10468
10971
|
* @constructor
|
|
@@ -10526,6 +11029,9 @@ var SetCameraCommand = class _SetCameraCommand {
|
|
|
10526
11029
|
|
|
10527
11030
|
// src/useCases/setCourtesy.js
|
|
10528
11031
|
var SetCourtesyCommand = class _SetCourtesyCommand {
|
|
11032
|
+
static {
|
|
11033
|
+
__name(this, "SetCourtesyCommand");
|
|
11034
|
+
}
|
|
10529
11035
|
/**
|
|
10530
11036
|
* @description
|
|
10531
11037
|
* @constructor
|
|
@@ -10589,6 +11095,9 @@ var SetCourtesyCommand = class _SetCourtesyCommand {
|
|
|
10589
11095
|
|
|
10590
11096
|
// src/useCases/setDimmer.js
|
|
10591
11097
|
var SetDimmerCommand = class _SetDimmerCommand {
|
|
11098
|
+
static {
|
|
11099
|
+
__name(this, "SetDimmerCommand");
|
|
11100
|
+
}
|
|
10592
11101
|
/**
|
|
10593
11102
|
* @description
|
|
10594
11103
|
* @constructor
|
|
@@ -10652,6 +11161,9 @@ var SetDimmerCommand = class _SetDimmerCommand {
|
|
|
10652
11161
|
|
|
10653
11162
|
// src/useCases/setLock.js
|
|
10654
11163
|
var SetLockCommand = class _SetLockCommand {
|
|
11164
|
+
static {
|
|
11165
|
+
__name(this, "SetLockCommand");
|
|
11166
|
+
}
|
|
10655
11167
|
/**
|
|
10656
11168
|
* @description
|
|
10657
11169
|
* @constructor
|
|
@@ -10715,6 +11227,9 @@ var SetLockCommand = class _SetLockCommand {
|
|
|
10715
11227
|
|
|
10716
11228
|
// src/useCases/setMediaSource.js
|
|
10717
11229
|
var SetMediaSourceCommand = class _SetMediaSourceCommand {
|
|
11230
|
+
static {
|
|
11231
|
+
__name(this, "SetMediaSourceCommand");
|
|
11232
|
+
}
|
|
10718
11233
|
/**
|
|
10719
11234
|
* @description
|
|
10720
11235
|
* @constructor
|
|
@@ -10778,6 +11293,9 @@ var SetMediaSourceCommand = class _SetMediaSourceCommand {
|
|
|
10778
11293
|
|
|
10779
11294
|
// src/useCases/setRoomScene.js
|
|
10780
11295
|
var SetRoomSceneCommand = class _SetRoomSceneCommand {
|
|
11296
|
+
static {
|
|
11297
|
+
__name(this, "SetRoomSceneCommand");
|
|
11298
|
+
}
|
|
10781
11299
|
/**
|
|
10782
11300
|
* @description
|
|
10783
11301
|
* @constructor
|
|
@@ -10841,6 +11359,9 @@ var SetRoomSceneCommand = class _SetRoomSceneCommand {
|
|
|
10841
11359
|
|
|
10842
11360
|
// src/useCases/setScene.js
|
|
10843
11361
|
var SetSceneCommand = class _SetSceneCommand {
|
|
11362
|
+
static {
|
|
11363
|
+
__name(this, "SetSceneCommand");
|
|
11364
|
+
}
|
|
10844
11365
|
/**
|
|
10845
11366
|
* @description
|
|
10846
11367
|
* @constructor
|
|
@@ -10904,6 +11425,9 @@ var SetSceneCommand = class _SetSceneCommand {
|
|
|
10904
11425
|
|
|
10905
11426
|
// src/useCases/setSpaceScene.js
|
|
10906
11427
|
var SetSpaceSceneCommand = class _SetSpaceSceneCommand {
|
|
11428
|
+
static {
|
|
11429
|
+
__name(this, "SetSpaceSceneCommand");
|
|
11430
|
+
}
|
|
10907
11431
|
/**
|
|
10908
11432
|
* @description
|
|
10909
11433
|
* @constructor
|
|
@@ -10967,6 +11491,9 @@ var SetSpaceSceneCommand = class _SetSpaceSceneCommand {
|
|
|
10967
11491
|
|
|
10968
11492
|
// src/useCases/setSwitch.js
|
|
10969
11493
|
var SetSwitchCommand = class _SetSwitchCommand {
|
|
11494
|
+
static {
|
|
11495
|
+
__name(this, "SetSwitchCommand");
|
|
11496
|
+
}
|
|
10970
11497
|
/**
|
|
10971
11498
|
* @description
|
|
10972
11499
|
* @constructor
|
|
@@ -11030,6 +11557,9 @@ var SetSwitchCommand = class _SetSwitchCommand {
|
|
|
11030
11557
|
|
|
11031
11558
|
// src/useCases/setThermostat.js
|
|
11032
11559
|
var SetThermostatCommand = class _SetThermostatCommand {
|
|
11560
|
+
static {
|
|
11561
|
+
__name(this, "SetThermostatCommand");
|
|
11562
|
+
}
|
|
11033
11563
|
/**
|
|
11034
11564
|
* @description
|
|
11035
11565
|
* @constructor
|
|
@@ -11093,6 +11623,9 @@ var SetThermostatCommand = class _SetThermostatCommand {
|
|
|
11093
11623
|
|
|
11094
11624
|
// src/useCases/setWindowCovering.js
|
|
11095
11625
|
var SetWindowCoveringCommand = class _SetWindowCoveringCommand {
|
|
11626
|
+
static {
|
|
11627
|
+
__name(this, "SetWindowCoveringCommand");
|
|
11628
|
+
}
|
|
11096
11629
|
/**
|
|
11097
11630
|
* @description
|
|
11098
11631
|
* @constructor
|
|
@@ -11156,6 +11689,9 @@ var SetWindowCoveringCommand = class _SetWindowCoveringCommand {
|
|
|
11156
11689
|
|
|
11157
11690
|
// src/useCases/startRegisterPasskey.js
|
|
11158
11691
|
var StartRegisterPasskeyCommand = class _StartRegisterPasskeyCommand {
|
|
11692
|
+
static {
|
|
11693
|
+
__name(this, "StartRegisterPasskeyCommand");
|
|
11694
|
+
}
|
|
11159
11695
|
/**
|
|
11160
11696
|
* @description
|
|
11161
11697
|
* @constructor
|
|
@@ -11219,6 +11755,9 @@ var StartRegisterPasskeyCommand = class _StartRegisterPasskeyCommand {
|
|
|
11219
11755
|
|
|
11220
11756
|
// src/useCases/startSOS.js
|
|
11221
11757
|
var StartSOSCommand = class _StartSOSCommand {
|
|
11758
|
+
static {
|
|
11759
|
+
__name(this, "StartSOSCommand");
|
|
11760
|
+
}
|
|
11222
11761
|
/**
|
|
11223
11762
|
* @description
|
|
11224
11763
|
* @constructor
|
|
@@ -11282,6 +11821,9 @@ var StartSOSCommand = class _StartSOSCommand {
|
|
|
11282
11821
|
|
|
11283
11822
|
// src/useCases/stopSOS.js
|
|
11284
11823
|
var StopSOSCommand = class _StopSOSCommand {
|
|
11824
|
+
static {
|
|
11825
|
+
__name(this, "StopSOSCommand");
|
|
11826
|
+
}
|
|
11285
11827
|
/**
|
|
11286
11828
|
* @description
|
|
11287
11829
|
* @constructor
|
|
@@ -11345,6 +11887,9 @@ var StopSOSCommand = class _StopSOSCommand {
|
|
|
11345
11887
|
|
|
11346
11888
|
// src/useCases/tipUser.js
|
|
11347
11889
|
var TipUserCommand = class _TipUserCommand {
|
|
11890
|
+
static {
|
|
11891
|
+
__name(this, "TipUserCommand");
|
|
11892
|
+
}
|
|
11348
11893
|
/**
|
|
11349
11894
|
* @description
|
|
11350
11895
|
* @constructor
|
|
@@ -11408,6 +11953,9 @@ var TipUserCommand = class _TipUserCommand {
|
|
|
11408
11953
|
|
|
11409
11954
|
// src/useCases/updateAlarm.js
|
|
11410
11955
|
var UpdateAlarmCommand = class _UpdateAlarmCommand {
|
|
11956
|
+
static {
|
|
11957
|
+
__name(this, "UpdateAlarmCommand");
|
|
11958
|
+
}
|
|
11411
11959
|
/**
|
|
11412
11960
|
* @description
|
|
11413
11961
|
* @constructor
|
|
@@ -11471,6 +12019,9 @@ var UpdateAlarmCommand = class _UpdateAlarmCommand {
|
|
|
11471
12019
|
|
|
11472
12020
|
// src/useCases/updateAnnouncement.js
|
|
11473
12021
|
var UpdateAnnouncementCommand = class _UpdateAnnouncementCommand {
|
|
12022
|
+
static {
|
|
12023
|
+
__name(this, "UpdateAnnouncementCommand");
|
|
12024
|
+
}
|
|
11474
12025
|
/**
|
|
11475
12026
|
* @description
|
|
11476
12027
|
* @constructor
|
|
@@ -11534,6 +12085,9 @@ var UpdateAnnouncementCommand = class _UpdateAnnouncementCommand {
|
|
|
11534
12085
|
|
|
11535
12086
|
// src/useCases/updateCamera.js
|
|
11536
12087
|
var UpdateCameraCommand = class _UpdateCameraCommand {
|
|
12088
|
+
static {
|
|
12089
|
+
__name(this, "UpdateCameraCommand");
|
|
12090
|
+
}
|
|
11537
12091
|
/**
|
|
11538
12092
|
* @description
|
|
11539
12093
|
* @constructor
|
|
@@ -11597,6 +12151,9 @@ var UpdateCameraCommand = class _UpdateCameraCommand {
|
|
|
11597
12151
|
|
|
11598
12152
|
// src/useCases/updateCategory.js
|
|
11599
12153
|
var UpdateCategoryCommand = class _UpdateCategoryCommand {
|
|
12154
|
+
static {
|
|
12155
|
+
__name(this, "UpdateCategoryCommand");
|
|
12156
|
+
}
|
|
11600
12157
|
/**
|
|
11601
12158
|
* @description
|
|
11602
12159
|
* @constructor
|
|
@@ -11660,6 +12217,9 @@ var UpdateCategoryCommand = class _UpdateCategoryCommand {
|
|
|
11660
12217
|
|
|
11661
12218
|
// src/useCases/updateCourtesy.js
|
|
11662
12219
|
var UpdateCourtesyCommand = class _UpdateCourtesyCommand {
|
|
12220
|
+
static {
|
|
12221
|
+
__name(this, "UpdateCourtesyCommand");
|
|
12222
|
+
}
|
|
11663
12223
|
/**
|
|
11664
12224
|
* @description
|
|
11665
12225
|
* @constructor
|
|
@@ -11723,6 +12283,9 @@ var UpdateCourtesyCommand = class _UpdateCourtesyCommand {
|
|
|
11723
12283
|
|
|
11724
12284
|
// src/useCases/updateDimmer.js
|
|
11725
12285
|
var UpdateDimmerCommand = class _UpdateDimmerCommand {
|
|
12286
|
+
static {
|
|
12287
|
+
__name(this, "UpdateDimmerCommand");
|
|
12288
|
+
}
|
|
11726
12289
|
/**
|
|
11727
12290
|
* @description
|
|
11728
12291
|
* @constructor
|
|
@@ -11786,6 +12349,9 @@ var UpdateDimmerCommand = class _UpdateDimmerCommand {
|
|
|
11786
12349
|
|
|
11787
12350
|
// src/useCases/updateDiscoveredDevice.js
|
|
11788
12351
|
var UpdateDiscoveredDeviceCommand = class _UpdateDiscoveredDeviceCommand {
|
|
12352
|
+
static {
|
|
12353
|
+
__name(this, "UpdateDiscoveredDeviceCommand");
|
|
12354
|
+
}
|
|
11789
12355
|
/**
|
|
11790
12356
|
* @description
|
|
11791
12357
|
* @constructor
|
|
@@ -11849,6 +12415,9 @@ var UpdateDiscoveredDeviceCommand = class _UpdateDiscoveredDeviceCommand {
|
|
|
11849
12415
|
|
|
11850
12416
|
// src/useCases/updateIssue.js
|
|
11851
12417
|
var UpdateIssueCommand = class _UpdateIssueCommand {
|
|
12418
|
+
static {
|
|
12419
|
+
__name(this, "UpdateIssueCommand");
|
|
12420
|
+
}
|
|
11852
12421
|
/**
|
|
11853
12422
|
* @description
|
|
11854
12423
|
* @constructor
|
|
@@ -11912,6 +12481,9 @@ var UpdateIssueCommand = class _UpdateIssueCommand {
|
|
|
11912
12481
|
|
|
11913
12482
|
// src/useCases/updateLock.js
|
|
11914
12483
|
var UpdateLockCommand = class _UpdateLockCommand {
|
|
12484
|
+
static {
|
|
12485
|
+
__name(this, "UpdateLockCommand");
|
|
12486
|
+
}
|
|
11915
12487
|
/**
|
|
11916
12488
|
* @description
|
|
11917
12489
|
* @constructor
|
|
@@ -11975,6 +12547,9 @@ var UpdateLockCommand = class _UpdateLockCommand {
|
|
|
11975
12547
|
|
|
11976
12548
|
// src/useCases/updateMediaSource.js
|
|
11977
12549
|
var UpdateMediaSourceCommand = class _UpdateMediaSourceCommand {
|
|
12550
|
+
static {
|
|
12551
|
+
__name(this, "UpdateMediaSourceCommand");
|
|
12552
|
+
}
|
|
11978
12553
|
/**
|
|
11979
12554
|
* @description
|
|
11980
12555
|
* @constructor
|
|
@@ -12038,6 +12613,9 @@ var UpdateMediaSourceCommand = class _UpdateMediaSourceCommand {
|
|
|
12038
12613
|
|
|
12039
12614
|
// src/useCases/updateMessageReadStatus.js
|
|
12040
12615
|
var UpdateMessageReadStatusCommand = class _UpdateMessageReadStatusCommand {
|
|
12616
|
+
static {
|
|
12617
|
+
__name(this, "UpdateMessageReadStatusCommand");
|
|
12618
|
+
}
|
|
12041
12619
|
/**
|
|
12042
12620
|
* @description
|
|
12043
12621
|
* @constructor
|
|
@@ -12101,6 +12679,9 @@ var UpdateMessageReadStatusCommand = class _UpdateMessageReadStatusCommand {
|
|
|
12101
12679
|
|
|
12102
12680
|
// src/useCases/updateOrganization.js
|
|
12103
12681
|
var UpdateOrganizationCommand = class _UpdateOrganizationCommand {
|
|
12682
|
+
static {
|
|
12683
|
+
__name(this, "UpdateOrganizationCommand");
|
|
12684
|
+
}
|
|
12104
12685
|
/**
|
|
12105
12686
|
* @description
|
|
12106
12687
|
* @constructor
|
|
@@ -12164,6 +12745,9 @@ var UpdateOrganizationCommand = class _UpdateOrganizationCommand {
|
|
|
12164
12745
|
|
|
12165
12746
|
// src/useCases/updatePolicy.js
|
|
12166
12747
|
var UpdatePolicyCommand = class _UpdatePolicyCommand {
|
|
12748
|
+
static {
|
|
12749
|
+
__name(this, "UpdatePolicyCommand");
|
|
12750
|
+
}
|
|
12167
12751
|
/**
|
|
12168
12752
|
* @description
|
|
12169
12753
|
* @constructor
|
|
@@ -12227,6 +12811,9 @@ var UpdatePolicyCommand = class _UpdatePolicyCommand {
|
|
|
12227
12811
|
|
|
12228
12812
|
// src/useCases/updateProperty.js
|
|
12229
12813
|
var UpdatePropertyCommand = class _UpdatePropertyCommand {
|
|
12814
|
+
static {
|
|
12815
|
+
__name(this, "UpdatePropertyCommand");
|
|
12816
|
+
}
|
|
12230
12817
|
/**
|
|
12231
12818
|
* @description
|
|
12232
12819
|
* @constructor
|
|
@@ -12290,6 +12877,9 @@ var UpdatePropertyCommand = class _UpdatePropertyCommand {
|
|
|
12290
12877
|
|
|
12291
12878
|
// src/useCases/updatePropertySettings.js
|
|
12292
12879
|
var UpdatePropertySettingsCommand = class _UpdatePropertySettingsCommand {
|
|
12880
|
+
static {
|
|
12881
|
+
__name(this, "UpdatePropertySettingsCommand");
|
|
12882
|
+
}
|
|
12293
12883
|
/**
|
|
12294
12884
|
* @description
|
|
12295
12885
|
* @constructor
|
|
@@ -12353,6 +12943,9 @@ var UpdatePropertySettingsCommand = class _UpdatePropertySettingsCommand {
|
|
|
12353
12943
|
|
|
12354
12944
|
// src/useCases/updateReservation.js
|
|
12355
12945
|
var UpdateReservationCommand = class _UpdateReservationCommand {
|
|
12946
|
+
static {
|
|
12947
|
+
__name(this, "UpdateReservationCommand");
|
|
12948
|
+
}
|
|
12356
12949
|
/**
|
|
12357
12950
|
* @description
|
|
12358
12951
|
* @constructor
|
|
@@ -12416,6 +13009,9 @@ var UpdateReservationCommand = class _UpdateReservationCommand {
|
|
|
12416
13009
|
|
|
12417
13010
|
// src/useCases/updateReservationExpectedArrivalTime.js
|
|
12418
13011
|
var UpdateReservationExpectedArrivalTimeCommand = class _UpdateReservationExpectedArrivalTimeCommand {
|
|
13012
|
+
static {
|
|
13013
|
+
__name(this, "UpdateReservationExpectedArrivalTimeCommand");
|
|
13014
|
+
}
|
|
12419
13015
|
/**
|
|
12420
13016
|
* @description
|
|
12421
13017
|
* @constructor
|
|
@@ -12479,6 +13075,9 @@ var UpdateReservationExpectedArrivalTimeCommand = class _UpdateReservationExpect
|
|
|
12479
13075
|
|
|
12480
13076
|
// src/useCases/updateRoom.js
|
|
12481
13077
|
var UpdateRoomCommand = class _UpdateRoomCommand {
|
|
13078
|
+
static {
|
|
13079
|
+
__name(this, "UpdateRoomCommand");
|
|
13080
|
+
}
|
|
12482
13081
|
/**
|
|
12483
13082
|
* @description
|
|
12484
13083
|
* @constructor
|
|
@@ -12542,6 +13141,9 @@ var UpdateRoomCommand = class _UpdateRoomCommand {
|
|
|
12542
13141
|
|
|
12543
13142
|
// src/useCases/updateSelf.js
|
|
12544
13143
|
var UpdateSelfCommand = class _UpdateSelfCommand {
|
|
13144
|
+
static {
|
|
13145
|
+
__name(this, "UpdateSelfCommand");
|
|
13146
|
+
}
|
|
12545
13147
|
/**
|
|
12546
13148
|
* @description
|
|
12547
13149
|
* @constructor
|
|
@@ -12605,6 +13207,9 @@ var UpdateSelfCommand = class _UpdateSelfCommand {
|
|
|
12605
13207
|
|
|
12606
13208
|
// src/useCases/updateSpace.js
|
|
12607
13209
|
var UpdateSpaceCommand = class _UpdateSpaceCommand {
|
|
13210
|
+
static {
|
|
13211
|
+
__name(this, "UpdateSpaceCommand");
|
|
13212
|
+
}
|
|
12608
13213
|
/**
|
|
12609
13214
|
* @description
|
|
12610
13215
|
* @constructor
|
|
@@ -12668,6 +13273,9 @@ var UpdateSpaceCommand = class _UpdateSpaceCommand {
|
|
|
12668
13273
|
|
|
12669
13274
|
// src/useCases/updateSwitch.js
|
|
12670
13275
|
var UpdateSwitchCommand = class _UpdateSwitchCommand {
|
|
13276
|
+
static {
|
|
13277
|
+
__name(this, "UpdateSwitchCommand");
|
|
13278
|
+
}
|
|
12671
13279
|
/**
|
|
12672
13280
|
* @description
|
|
12673
13281
|
* @constructor
|
|
@@ -12731,6 +13339,9 @@ var UpdateSwitchCommand = class _UpdateSwitchCommand {
|
|
|
12731
13339
|
|
|
12732
13340
|
// src/useCases/updateThermostat.js
|
|
12733
13341
|
var UpdateThermostatCommand = class _UpdateThermostatCommand {
|
|
13342
|
+
static {
|
|
13343
|
+
__name(this, "UpdateThermostatCommand");
|
|
13344
|
+
}
|
|
12734
13345
|
/**
|
|
12735
13346
|
* @description
|
|
12736
13347
|
* @constructor
|
|
@@ -12794,6 +13405,9 @@ var UpdateThermostatCommand = class _UpdateThermostatCommand {
|
|
|
12794
13405
|
|
|
12795
13406
|
// src/useCases/updateTicket.js
|
|
12796
13407
|
var UpdateTicketCommand = class _UpdateTicketCommand {
|
|
13408
|
+
static {
|
|
13409
|
+
__name(this, "UpdateTicketCommand");
|
|
13410
|
+
}
|
|
12797
13411
|
/**
|
|
12798
13412
|
* @description
|
|
12799
13413
|
* @constructor
|
|
@@ -12857,6 +13471,9 @@ var UpdateTicketCommand = class _UpdateTicketCommand {
|
|
|
12857
13471
|
|
|
12858
13472
|
// src/useCases/updateTicketStatus.js
|
|
12859
13473
|
var UpdateTicketStatusCommand = class _UpdateTicketStatusCommand {
|
|
13474
|
+
static {
|
|
13475
|
+
__name(this, "UpdateTicketStatusCommand");
|
|
13476
|
+
}
|
|
12860
13477
|
/**
|
|
12861
13478
|
* @description
|
|
12862
13479
|
* @constructor
|
|
@@ -12920,6 +13537,9 @@ var UpdateTicketStatusCommand = class _UpdateTicketStatusCommand {
|
|
|
12920
13537
|
|
|
12921
13538
|
// src/useCases/updateTimeSheet.js
|
|
12922
13539
|
var UpdateTimeSheetCommand = class _UpdateTimeSheetCommand {
|
|
13540
|
+
static {
|
|
13541
|
+
__name(this, "UpdateTimeSheetCommand");
|
|
13542
|
+
}
|
|
12923
13543
|
/**
|
|
12924
13544
|
* @description
|
|
12925
13545
|
* @constructor
|
|
@@ -12983,6 +13603,9 @@ var UpdateTimeSheetCommand = class _UpdateTimeSheetCommand {
|
|
|
12983
13603
|
|
|
12984
13604
|
// src/useCases/updateTimeSheetTimeEntry.js
|
|
12985
13605
|
var UpdateTimeSheetTimeEntryCommand = class _UpdateTimeSheetTimeEntryCommand {
|
|
13606
|
+
static {
|
|
13607
|
+
__name(this, "UpdateTimeSheetTimeEntryCommand");
|
|
13608
|
+
}
|
|
12986
13609
|
/**
|
|
12987
13610
|
* @description
|
|
12988
13611
|
* @constructor
|
|
@@ -13046,6 +13669,9 @@ var UpdateTimeSheetTimeEntryCommand = class _UpdateTimeSheetTimeEntryCommand {
|
|
|
13046
13669
|
|
|
13047
13670
|
// src/useCases/updateUser.js
|
|
13048
13671
|
var UpdateUserCommand = class _UpdateUserCommand {
|
|
13672
|
+
static {
|
|
13673
|
+
__name(this, "UpdateUserCommand");
|
|
13674
|
+
}
|
|
13049
13675
|
/**
|
|
13050
13676
|
* @description
|
|
13051
13677
|
* @constructor
|
|
@@ -13109,6 +13735,9 @@ var UpdateUserCommand = class _UpdateUserCommand {
|
|
|
13109
13735
|
|
|
13110
13736
|
// src/useCases/updateVendor.js
|
|
13111
13737
|
var UpdateVendorCommand = class _UpdateVendorCommand {
|
|
13738
|
+
static {
|
|
13739
|
+
__name(this, "UpdateVendorCommand");
|
|
13740
|
+
}
|
|
13112
13741
|
/**
|
|
13113
13742
|
* @description
|
|
13114
13743
|
* @constructor
|
|
@@ -13172,6 +13801,9 @@ var UpdateVendorCommand = class _UpdateVendorCommand {
|
|
|
13172
13801
|
|
|
13173
13802
|
// src/useCases/updateWindowCovering.js
|
|
13174
13803
|
var UpdateWindowCoveringCommand = class _UpdateWindowCoveringCommand {
|
|
13804
|
+
static {
|
|
13805
|
+
__name(this, "UpdateWindowCoveringCommand");
|
|
13806
|
+
}
|
|
13175
13807
|
/**
|
|
13176
13808
|
* @description
|
|
13177
13809
|
* @constructor
|
|
@@ -13235,6 +13867,9 @@ var UpdateWindowCoveringCommand = class _UpdateWindowCoveringCommand {
|
|
|
13235
13867
|
|
|
13236
13868
|
// src/useCases/uploadImage.js
|
|
13237
13869
|
var UploadImageCommand = class _UploadImageCommand {
|
|
13870
|
+
static {
|
|
13871
|
+
__name(this, "UploadImageCommand");
|
|
13872
|
+
}
|
|
13238
13873
|
/**
|
|
13239
13874
|
* @description
|
|
13240
13875
|
* @constructor
|
|
@@ -13298,6 +13933,9 @@ var UploadImageCommand = class _UploadImageCommand {
|
|
|
13298
13933
|
|
|
13299
13934
|
// src/useCases/upsertDiscoveredDevice.js
|
|
13300
13935
|
var UpsertDiscoveredDeviceCommand = class _UpsertDiscoveredDeviceCommand {
|
|
13936
|
+
static {
|
|
13937
|
+
__name(this, "UpsertDiscoveredDeviceCommand");
|
|
13938
|
+
}
|
|
13301
13939
|
/**
|
|
13302
13940
|
* @description
|
|
13303
13941
|
* @constructor
|