hap-nodejs 0.9.5 → 0.9.8

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 (107) hide show
  1. package/README.md +1 -1
  2. package/dist/BridgedCore.js +3 -3
  3. package/dist/BridgedCore.js.map +1 -1
  4. package/dist/Core.js +3 -3
  5. package/dist/Core.js.map +1 -1
  6. package/dist/accessories/AppleTVRemote_accessory.js +8 -8
  7. package/dist/accessories/AppleTVRemote_accessory.js.map +1 -1
  8. package/dist/accessories/Camera_accessory.js +2 -2
  9. package/dist/accessories/Camera_accessory.js.map +1 -1
  10. package/dist/accessories/Fan_accessory.js +4 -4
  11. package/dist/accessories/gstreamer-audioProducer.js +7 -7
  12. package/dist/accessories/gstreamer-audioProducer.js.map +1 -1
  13. package/dist/index.d.ts +5 -0
  14. package/dist/index.d.ts.map +1 -1
  15. package/dist/index.js +34 -24
  16. package/dist/index.js.map +1 -1
  17. package/dist/lib/Accessory.d.ts +20 -3
  18. package/dist/lib/Accessory.d.ts.map +1 -1
  19. package/dist/lib/Accessory.js +114 -81
  20. package/dist/lib/Accessory.js.map +1 -1
  21. package/dist/lib/AccessoryLoader.js +5 -5
  22. package/dist/lib/AccessoryLoader.js.map +1 -1
  23. package/dist/lib/Advertiser.d.ts +2 -2
  24. package/dist/lib/Advertiser.d.ts.map +1 -1
  25. package/dist/lib/Advertiser.js +32 -24
  26. package/dist/lib/Advertiser.js.map +1 -1
  27. package/dist/lib/Bridge.js +1 -1
  28. package/dist/lib/Bridge.js.map +1 -1
  29. package/dist/lib/Characteristic.js +48 -48
  30. package/dist/lib/Characteristic.js.map +1 -1
  31. package/dist/lib/HAPServer.js +26 -26
  32. package/dist/lib/HAPServer.js.map +1 -1
  33. package/dist/lib/Service.d.ts.map +1 -1
  34. package/dist/lib/Service.js +29 -25
  35. package/dist/lib/Service.js.map +1 -1
  36. package/dist/lib/camera/RTPProxy.js +1 -1
  37. package/dist/lib/camera/RTPProxy.js.map +1 -1
  38. package/dist/lib/camera/RTPStreamManagement.d.ts +2 -2
  39. package/dist/lib/camera/RTPStreamManagement.d.ts.map +1 -1
  40. package/dist/lib/camera/RTPStreamManagement.js +16 -15
  41. package/dist/lib/camera/RTPStreamManagement.js.map +1 -1
  42. package/dist/lib/camera/index.js +3 -3
  43. package/dist/lib/camera/index.js.map +1 -1
  44. package/dist/lib/controller/AdaptiveLightingController.js +12 -12
  45. package/dist/lib/controller/AdaptiveLightingController.js.map +1 -1
  46. package/dist/lib/controller/CameraController.js +5 -5
  47. package/dist/lib/controller/CameraController.js.map +1 -1
  48. package/dist/lib/controller/DoorbellController.js +1 -1
  49. package/dist/lib/controller/DoorbellController.js.map +1 -1
  50. package/dist/lib/controller/RemoteController.js +20 -20
  51. package/dist/lib/controller/RemoteController.js.map +1 -1
  52. package/dist/lib/controller/index.js +5 -5
  53. package/dist/lib/controller/index.js.map +1 -1
  54. package/dist/lib/datastream/DataStreamManagement.js +3 -3
  55. package/dist/lib/datastream/DataStreamManagement.js.map +1 -1
  56. package/dist/lib/datastream/DataStreamParser.js +15 -15
  57. package/dist/lib/datastream/DataStreamParser.js.map +1 -1
  58. package/dist/lib/datastream/DataStreamServer.js +10 -10
  59. package/dist/lib/datastream/DataStreamServer.js.map +1 -1
  60. package/dist/lib/datastream/index.js +3 -3
  61. package/dist/lib/datastream/index.js.map +1 -1
  62. package/dist/lib/definitions/CharacteristicDefinitions.js +249 -249
  63. package/dist/lib/definitions/CharacteristicDefinitions.js.map +1 -1
  64. package/dist/lib/definitions/ServiceDefinitions.js +75 -75
  65. package/dist/lib/definitions/ServiceDefinitions.js.map +1 -1
  66. package/dist/lib/definitions/generate-definitions.js +59 -59
  67. package/dist/lib/definitions/generate-definitions.js.map +1 -1
  68. package/dist/lib/definitions/generator-configuration.js +2 -2
  69. package/dist/lib/definitions/generator-configuration.js.map +1 -1
  70. package/dist/lib/definitions/index.js +2 -2
  71. package/dist/lib/definitions/index.js.map +1 -1
  72. package/dist/lib/model/AccessoryInfo.js +9 -9
  73. package/dist/lib/model/AccessoryInfo.js.map +1 -1
  74. package/dist/lib/model/ControllerStorage.js +6 -6
  75. package/dist/lib/model/ControllerStorage.js.map +1 -1
  76. package/dist/lib/model/HAPStorage.js +1 -1
  77. package/dist/lib/model/HAPStorage.js.map +1 -1
  78. package/dist/lib/model/IdentifierCache.js +2 -2
  79. package/dist/lib/model/IdentifierCache.js.map +1 -1
  80. package/dist/lib/tv/AccessControlManagement.js +2 -2
  81. package/dist/lib/tv/AccessControlManagement.js.map +1 -1
  82. package/dist/lib/util/clone.js +4 -4
  83. package/dist/lib/util/clone.js.map +1 -1
  84. package/dist/lib/util/color-utils.js +2 -2
  85. package/dist/lib/util/color-utils.js.map +1 -1
  86. package/dist/lib/util/eventedhttp.js +32 -32
  87. package/dist/lib/util/eventedhttp.js.map +1 -1
  88. package/dist/lib/util/hapCrypto.d.ts.map +1 -1
  89. package/dist/lib/util/hapCrypto.js +20 -7
  90. package/dist/lib/util/hapCrypto.js.map +1 -1
  91. package/dist/lib/util/hapStatusError.js +2 -2
  92. package/dist/lib/util/hapStatusError.js.map +1 -1
  93. package/dist/lib/util/net-utils.js +6 -6
  94. package/dist/lib/util/net-utils.js.map +1 -1
  95. package/dist/lib/util/once.js +1 -1
  96. package/dist/lib/util/once.js.map +1 -1
  97. package/dist/lib/util/promise-utils.d.ts +2 -0
  98. package/dist/lib/util/promise-utils.d.ts.map +1 -0
  99. package/dist/lib/util/promise-utils.js +10 -0
  100. package/dist/lib/util/promise-utils.js.map +1 -0
  101. package/dist/lib/util/time.js +3 -3
  102. package/dist/lib/util/time.js.map +1 -1
  103. package/dist/lib/util/tlv.js +6 -6
  104. package/dist/lib/util/tlv.js.map +1 -1
  105. package/dist/lib/util/uuid.js +1 -1
  106. package/dist/lib/util/uuid.js.map +1 -1
  107. package/package.json +16 -16
@@ -14,7 +14,7 @@ var Characteristic_1 = require("../Characteristic");
14
14
  * @since iOS 15
15
15
  */
16
16
  var AccessCodeControlPoint = /** @class */ (function (_super) {
17
- tslib_1.__extends(AccessCodeControlPoint, _super);
17
+ (0, tslib_1.__extends)(AccessCodeControlPoint, _super);
18
18
  function AccessCodeControlPoint() {
19
19
  var _this = _super.call(this, "Access Code Control Point", AccessCodeControlPoint.UUID, {
20
20
  format: "tlv8" /* TLV8 */,
@@ -33,7 +33,7 @@ Characteristic_1.Characteristic.AccessCodeControlPoint = AccessCodeControlPoint;
33
33
  * @since iOS 15
34
34
  */
35
35
  var AccessCodeSupportedConfiguration = /** @class */ (function (_super) {
36
- tslib_1.__extends(AccessCodeSupportedConfiguration, _super);
36
+ (0, tslib_1.__extends)(AccessCodeSupportedConfiguration, _super);
37
37
  function AccessCodeSupportedConfiguration() {
38
38
  var _this = _super.call(this, "Access Code Supported Configuration", AccessCodeSupportedConfiguration.UUID, {
39
39
  format: "tlv8" /* TLV8 */,
@@ -51,7 +51,7 @@ Characteristic_1.Characteristic.AccessCodeSupportedConfiguration = AccessCodeSup
51
51
  * Characteristic "Access Control Level"
52
52
  */
53
53
  var AccessControlLevel = /** @class */ (function (_super) {
54
- tslib_1.__extends(AccessControlLevel, _super);
54
+ (0, tslib_1.__extends)(AccessControlLevel, _super);
55
55
  function AccessControlLevel() {
56
56
  var _this = _super.call(this, "Access Control Level", AccessControlLevel.UUID, {
57
57
  format: "uint16" /* UINT16 */,
@@ -72,7 +72,7 @@ Characteristic_1.Characteristic.AccessControlLevel = AccessControlLevel;
72
72
  * Characteristic "Accessory Flags"
73
73
  */
74
74
  var AccessoryFlags = /** @class */ (function (_super) {
75
- tslib_1.__extends(AccessoryFlags, _super);
75
+ (0, tslib_1.__extends)(AccessoryFlags, _super);
76
76
  function AccessoryFlags() {
77
77
  var _this = _super.call(this, "Accessory Flags", AccessoryFlags.UUID, {
78
78
  format: "uint32" /* UINT32 */,
@@ -91,7 +91,7 @@ Characteristic_1.Characteristic.AccessoryFlags = AccessoryFlags;
91
91
  * Characteristic "Accessory Identifier"
92
92
  */
93
93
  var AccessoryIdentifier = /** @class */ (function (_super) {
94
- tslib_1.__extends(AccessoryIdentifier, _super);
94
+ (0, tslib_1.__extends)(AccessoryIdentifier, _super);
95
95
  function AccessoryIdentifier() {
96
96
  var _this = _super.call(this, "Accessory Identifier", AccessoryIdentifier.UUID, {
97
97
  format: "string" /* STRING */,
@@ -109,7 +109,7 @@ Characteristic_1.Characteristic.AccessoryIdentifier = AccessoryIdentifier;
109
109
  * Characteristic "Active"
110
110
  */
111
111
  var Active = /** @class */ (function (_super) {
112
- tslib_1.__extends(Active, _super);
112
+ (0, tslib_1.__extends)(Active, _super);
113
113
  function Active() {
114
114
  var _this = _super.call(this, "Active", Active.UUID, {
115
115
  format: "uint8" /* UINT8 */,
@@ -133,7 +133,7 @@ Characteristic_1.Characteristic.Active = Active;
133
133
  * Characteristic "Active Identifier"
134
134
  */
135
135
  var ActiveIdentifier = /** @class */ (function (_super) {
136
- tslib_1.__extends(ActiveIdentifier, _super);
136
+ (0, tslib_1.__extends)(ActiveIdentifier, _super);
137
137
  function ActiveIdentifier() {
138
138
  var _this = _super.call(this, "Active Identifier", ActiveIdentifier.UUID, {
139
139
  format: "uint32" /* UINT32 */,
@@ -152,7 +152,7 @@ Characteristic_1.Characteristic.ActiveIdentifier = ActiveIdentifier;
152
152
  * @since iOS 14
153
153
  */
154
154
  var ActivityInterval = /** @class */ (function (_super) {
155
- tslib_1.__extends(ActivityInterval, _super);
155
+ (0, tslib_1.__extends)(ActivityInterval, _super);
156
156
  function ActivityInterval() {
157
157
  var _this = _super.call(this, "Activity Interval", ActivityInterval.UUID, {
158
158
  format: "uint32" /* UINT32 */,
@@ -172,7 +172,7 @@ Characteristic_1.Characteristic.ActivityInterval = ActivityInterval;
172
172
  * Characteristic "Administrator Only Access"
173
173
  */
174
174
  var AdministratorOnlyAccess = /** @class */ (function (_super) {
175
- tslib_1.__extends(AdministratorOnlyAccess, _super);
175
+ (0, tslib_1.__extends)(AdministratorOnlyAccess, _super);
176
176
  function AdministratorOnlyAccess() {
177
177
  var _this = _super.call(this, "Administrator Only Access", AdministratorOnlyAccess.UUID, {
178
178
  format: "bool" /* BOOL */,
@@ -190,7 +190,7 @@ Characteristic_1.Characteristic.AdministratorOnlyAccess = AdministratorOnlyAcces
190
190
  * Characteristic "Air Particulate Density"
191
191
  */
192
192
  var AirParticulateDensity = /** @class */ (function (_super) {
193
- tslib_1.__extends(AirParticulateDensity, _super);
193
+ (0, tslib_1.__extends)(AirParticulateDensity, _super);
194
194
  function AirParticulateDensity() {
195
195
  var _this = _super.call(this, "Air Particulate Density", AirParticulateDensity.UUID, {
196
196
  format: "float" /* FLOAT */,
@@ -210,7 +210,7 @@ Characteristic_1.Characteristic.AirParticulateDensity = AirParticulateDensity;
210
210
  * Characteristic "Air Particulate Size"
211
211
  */
212
212
  var AirParticulateSize = /** @class */ (function (_super) {
213
- tslib_1.__extends(AirParticulateSize, _super);
213
+ (0, tslib_1.__extends)(AirParticulateSize, _super);
214
214
  function AirParticulateSize() {
215
215
  var _this = _super.call(this, "Air Particulate Size", AirParticulateSize.UUID, {
216
216
  format: "uint8" /* UINT8 */,
@@ -234,7 +234,7 @@ Characteristic_1.Characteristic.AirParticulateSize = AirParticulateSize;
234
234
  * Characteristic "AirPlay Enable"
235
235
  */
236
236
  var AirPlayEnable = /** @class */ (function (_super) {
237
- tslib_1.__extends(AirPlayEnable, _super);
237
+ (0, tslib_1.__extends)(AirPlayEnable, _super);
238
238
  function AirPlayEnable() {
239
239
  var _this = _super.call(this, "AirPlay Enable", AirPlayEnable.UUID, {
240
240
  format: "uint8" /* UINT8 */,
@@ -254,7 +254,7 @@ Characteristic_1.Characteristic.AirPlayEnable = AirPlayEnable;
254
254
  * Characteristic "Air Quality"
255
255
  */
256
256
  var AirQuality = /** @class */ (function (_super) {
257
- tslib_1.__extends(AirQuality, _super);
257
+ (0, tslib_1.__extends)(AirQuality, _super);
258
258
  function AirQuality() {
259
259
  var _this = _super.call(this, "Air Quality", AirQuality.UUID, {
260
260
  format: "uint8" /* UINT8 */,
@@ -282,7 +282,7 @@ Characteristic_1.Characteristic.AirQuality = AirQuality;
282
282
  * Characteristic "App Matching Identifier"
283
283
  */
284
284
  var AppMatchingIdentifier = /** @class */ (function (_super) {
285
- tslib_1.__extends(AppMatchingIdentifier, _super);
285
+ (0, tslib_1.__extends)(AppMatchingIdentifier, _super);
286
286
  function AppMatchingIdentifier() {
287
287
  var _this = _super.call(this, "App Matching Identifier", AppMatchingIdentifier.UUID, {
288
288
  format: "tlv8" /* TLV8 */,
@@ -300,7 +300,7 @@ Characteristic_1.Characteristic.AppMatchingIdentifier = AppMatchingIdentifier;
300
300
  * Characteristic "Asset Update Readiness"
301
301
  */
302
302
  var AssetUpdateReadiness = /** @class */ (function (_super) {
303
- tslib_1.__extends(AssetUpdateReadiness, _super);
303
+ (0, tslib_1.__extends)(AssetUpdateReadiness, _super);
304
304
  function AssetUpdateReadiness() {
305
305
  var _this = _super.call(this, "Asset Update Readiness", AssetUpdateReadiness.UUID, {
306
306
  format: "uint32" /* UINT32 */,
@@ -318,7 +318,7 @@ Characteristic_1.Characteristic.AssetUpdateReadiness = AssetUpdateReadiness;
318
318
  * Characteristic "Audio Feedback"
319
319
  */
320
320
  var AudioFeedback = /** @class */ (function (_super) {
321
- tslib_1.__extends(AudioFeedback, _super);
321
+ (0, tslib_1.__extends)(AudioFeedback, _super);
322
322
  function AudioFeedback() {
323
323
  var _this = _super.call(this, "Audio Feedback", AudioFeedback.UUID, {
324
324
  format: "bool" /* BOOL */,
@@ -336,7 +336,7 @@ Characteristic_1.Characteristic.AudioFeedback = AudioFeedback;
336
336
  * Characteristic "Battery Level"
337
337
  */
338
338
  var BatteryLevel = /** @class */ (function (_super) {
339
- tslib_1.__extends(BatteryLevel, _super);
339
+ (0, tslib_1.__extends)(BatteryLevel, _super);
340
340
  function BatteryLevel() {
341
341
  var _this = _super.call(this, "Battery Level", BatteryLevel.UUID, {
342
342
  format: "uint8" /* UINT8 */,
@@ -358,7 +358,7 @@ Characteristic_1.Characteristic.BatteryLevel = BatteryLevel;
358
358
  * Characteristic "Brightness"
359
359
  */
360
360
  var Brightness = /** @class */ (function (_super) {
361
- tslib_1.__extends(Brightness, _super);
361
+ (0, tslib_1.__extends)(Brightness, _super);
362
362
  function Brightness() {
363
363
  var _this = _super.call(this, "Brightness", Brightness.UUID, {
364
364
  format: "int" /* INT */,
@@ -380,7 +380,7 @@ Characteristic_1.Characteristic.Brightness = Brightness;
380
380
  * Characteristic "Button Event"
381
381
  */
382
382
  var ButtonEvent = /** @class */ (function (_super) {
383
- tslib_1.__extends(ButtonEvent, _super);
383
+ (0, tslib_1.__extends)(ButtonEvent, _super);
384
384
  function ButtonEvent() {
385
385
  var _this = _super.call(this, "Button Event", ButtonEvent.UUID, {
386
386
  format: "tlv8" /* TLV8 */,
@@ -399,7 +399,7 @@ Characteristic_1.Characteristic.ButtonEvent = ButtonEvent;
399
399
  * Characteristic "Camera Operating Mode Indicator"
400
400
  */
401
401
  var CameraOperatingModeIndicator = /** @class */ (function (_super) {
402
- tslib_1.__extends(CameraOperatingModeIndicator, _super);
402
+ (0, tslib_1.__extends)(CameraOperatingModeIndicator, _super);
403
403
  function CameraOperatingModeIndicator() {
404
404
  var _this = _super.call(this, "Camera Operating Mode Indicator", CameraOperatingModeIndicator.UUID, {
405
405
  format: "bool" /* BOOL */,
@@ -420,7 +420,7 @@ Characteristic_1.Characteristic.CameraOperatingModeIndicator = CameraOperatingMo
420
420
  * Characteristic "Carbon Dioxide Detected"
421
421
  */
422
422
  var CarbonDioxideDetected = /** @class */ (function (_super) {
423
- tslib_1.__extends(CarbonDioxideDetected, _super);
423
+ (0, tslib_1.__extends)(CarbonDioxideDetected, _super);
424
424
  function CarbonDioxideDetected() {
425
425
  var _this = _super.call(this, "Carbon Dioxide Detected", CarbonDioxideDetected.UUID, {
426
426
  format: "uint8" /* UINT8 */,
@@ -444,7 +444,7 @@ Characteristic_1.Characteristic.CarbonDioxideDetected = CarbonDioxideDetected;
444
444
  * Characteristic "Carbon Dioxide Level"
445
445
  */
446
446
  var CarbonDioxideLevel = /** @class */ (function (_super) {
447
- tslib_1.__extends(CarbonDioxideLevel, _super);
447
+ (0, tslib_1.__extends)(CarbonDioxideLevel, _super);
448
448
  function CarbonDioxideLevel() {
449
449
  var _this = _super.call(this, "Carbon Dioxide Level", CarbonDioxideLevel.UUID, {
450
450
  format: "float" /* FLOAT */,
@@ -465,7 +465,7 @@ Characteristic_1.Characteristic.CarbonDioxideLevel = CarbonDioxideLevel;
465
465
  * Characteristic "Carbon Dioxide Peak Level"
466
466
  */
467
467
  var CarbonDioxidePeakLevel = /** @class */ (function (_super) {
468
- tslib_1.__extends(CarbonDioxidePeakLevel, _super);
468
+ (0, tslib_1.__extends)(CarbonDioxidePeakLevel, _super);
469
469
  function CarbonDioxidePeakLevel() {
470
470
  var _this = _super.call(this, "Carbon Dioxide Peak Level", CarbonDioxidePeakLevel.UUID, {
471
471
  format: "float" /* FLOAT */,
@@ -486,7 +486,7 @@ Characteristic_1.Characteristic.CarbonDioxidePeakLevel = CarbonDioxidePeakLevel;
486
486
  * Characteristic "Carbon Monoxide Detected"
487
487
  */
488
488
  var CarbonMonoxideDetected = /** @class */ (function (_super) {
489
- tslib_1.__extends(CarbonMonoxideDetected, _super);
489
+ (0, tslib_1.__extends)(CarbonMonoxideDetected, _super);
490
490
  function CarbonMonoxideDetected() {
491
491
  var _this = _super.call(this, "Carbon Monoxide Detected", CarbonMonoxideDetected.UUID, {
492
492
  format: "uint8" /* UINT8 */,
@@ -510,7 +510,7 @@ Characteristic_1.Characteristic.CarbonMonoxideDetected = CarbonMonoxideDetected;
510
510
  * Characteristic "Carbon Monoxide Level"
511
511
  */
512
512
  var CarbonMonoxideLevel = /** @class */ (function (_super) {
513
- tslib_1.__extends(CarbonMonoxideLevel, _super);
513
+ (0, tslib_1.__extends)(CarbonMonoxideLevel, _super);
514
514
  function CarbonMonoxideLevel() {
515
515
  var _this = _super.call(this, "Carbon Monoxide Level", CarbonMonoxideLevel.UUID, {
516
516
  format: "float" /* FLOAT */,
@@ -531,7 +531,7 @@ Characteristic_1.Characteristic.CarbonMonoxideLevel = CarbonMonoxideLevel;
531
531
  * Characteristic "Carbon Monoxide Peak Level"
532
532
  */
533
533
  var CarbonMonoxidePeakLevel = /** @class */ (function (_super) {
534
- tslib_1.__extends(CarbonMonoxidePeakLevel, _super);
534
+ (0, tslib_1.__extends)(CarbonMonoxidePeakLevel, _super);
535
535
  function CarbonMonoxidePeakLevel() {
536
536
  var _this = _super.call(this, "Carbon Monoxide Peak Level", CarbonMonoxidePeakLevel.UUID, {
537
537
  format: "float" /* FLOAT */,
@@ -553,7 +553,7 @@ Characteristic_1.Characteristic.CarbonMonoxidePeakLevel = CarbonMonoxidePeakLeve
553
553
  * @deprecated Removed and not used anymore
554
554
  */
555
555
  var Category = /** @class */ (function (_super) {
556
- tslib_1.__extends(Category, _super);
556
+ (0, tslib_1.__extends)(Category, _super);
557
557
  function Category() {
558
558
  var _this = _super.call(this, "Category", Category.UUID, {
559
559
  format: "uint16" /* UINT16 */,
@@ -575,7 +575,7 @@ Characteristic_1.Characteristic.Category = Category;
575
575
  * @since iOS 14
576
576
  */
577
577
  var CCAEnergyDetectThreshold = /** @class */ (function (_super) {
578
- tslib_1.__extends(CCAEnergyDetectThreshold, _super);
578
+ (0, tslib_1.__extends)(CCAEnergyDetectThreshold, _super);
579
579
  function CCAEnergyDetectThreshold() {
580
580
  var _this = _super.call(this, "CCA Energy Detect Threshold", CCAEnergyDetectThreshold.UUID, {
581
581
  format: "int" /* INT */,
@@ -594,7 +594,7 @@ Characteristic_1.Characteristic.CCAEnergyDetectThreshold = CCAEnergyDetectThresh
594
594
  * @since iOS 14
595
595
  */
596
596
  var CCASignalDetectThreshold = /** @class */ (function (_super) {
597
- tslib_1.__extends(CCASignalDetectThreshold, _super);
597
+ (0, tslib_1.__extends)(CCASignalDetectThreshold, _super);
598
598
  function CCASignalDetectThreshold() {
599
599
  var _this = _super.call(this, "CCA Signal Detect Threshold", CCASignalDetectThreshold.UUID, {
600
600
  format: "int" /* INT */,
@@ -613,7 +613,7 @@ Characteristic_1.Characteristic.CCASignalDetectThreshold = CCASignalDetectThresh
613
613
  * @since iOS 14
614
614
  */
615
615
  var CharacteristicValueActiveTransitionCount = /** @class */ (function (_super) {
616
- tslib_1.__extends(CharacteristicValueActiveTransitionCount, _super);
616
+ (0, tslib_1.__extends)(CharacteristicValueActiveTransitionCount, _super);
617
617
  function CharacteristicValueActiveTransitionCount() {
618
618
  var _this = _super.call(this, "Characteristic Value Active Transition Count", CharacteristicValueActiveTransitionCount.UUID, {
619
619
  format: "uint8" /* UINT8 */,
@@ -632,7 +632,7 @@ Characteristic_1.Characteristic.CharacteristicValueActiveTransitionCount = Chara
632
632
  * @since iOS 14
633
633
  */
634
634
  var CharacteristicValueTransitionControl = /** @class */ (function (_super) {
635
- tslib_1.__extends(CharacteristicValueTransitionControl, _super);
635
+ (0, tslib_1.__extends)(CharacteristicValueTransitionControl, _super);
636
636
  function CharacteristicValueTransitionControl() {
637
637
  var _this = _super.call(this, "Characteristic Value Transition Control", CharacteristicValueTransitionControl.UUID, {
638
638
  format: "tlv8" /* TLV8 */,
@@ -650,7 +650,7 @@ Characteristic_1.Characteristic.CharacteristicValueTransitionControl = Character
650
650
  * Characteristic "Charging State"
651
651
  */
652
652
  var ChargingState = /** @class */ (function (_super) {
653
- tslib_1.__extends(ChargingState, _super);
653
+ (0, tslib_1.__extends)(ChargingState, _super);
654
654
  function ChargingState() {
655
655
  var _this = _super.call(this, "Charging State", ChargingState.UUID, {
656
656
  format: "uint8" /* UINT8 */,
@@ -675,7 +675,7 @@ Characteristic_1.Characteristic.ChargingState = ChargingState;
675
675
  * Characteristic "Closed Captions"
676
676
  */
677
677
  var ClosedCaptions = /** @class */ (function (_super) {
678
- tslib_1.__extends(ClosedCaptions, _super);
678
+ (0, tslib_1.__extends)(ClosedCaptions, _super);
679
679
  function ClosedCaptions() {
680
680
  var _this = _super.call(this, "Closed Captions", ClosedCaptions.UUID, {
681
681
  format: "uint8" /* UINT8 */,
@@ -699,7 +699,7 @@ Characteristic_1.Characteristic.ClosedCaptions = ClosedCaptions;
699
699
  * Characteristic "Color Temperature"
700
700
  */
701
701
  var ColorTemperature = /** @class */ (function (_super) {
702
- tslib_1.__extends(ColorTemperature, _super);
702
+ (0, tslib_1.__extends)(ColorTemperature, _super);
703
703
  function ColorTemperature() {
704
704
  var _this = _super.call(this, "Color Temperature", ColorTemperature.UUID, {
705
705
  format: "int" /* INT */,
@@ -721,7 +721,7 @@ Characteristic_1.Characteristic.ColorTemperature = ColorTemperature;
721
721
  * @since iOS 15
722
722
  */
723
723
  var ConfigurationState = /** @class */ (function (_super) {
724
- tslib_1.__extends(ConfigurationState, _super);
724
+ (0, tslib_1.__extends)(ConfigurationState, _super);
725
725
  function ConfigurationState() {
726
726
  var _this = _super.call(this, "Configuration State", ConfigurationState.UUID, {
727
727
  format: "uint16" /* UINT16 */,
@@ -740,7 +740,7 @@ Characteristic_1.Characteristic.ConfigurationState = ConfigurationState;
740
740
  * @deprecated Removed and not used anymore
741
741
  */
742
742
  var ConfigureBridgedAccessory = /** @class */ (function (_super) {
743
- tslib_1.__extends(ConfigureBridgedAccessory, _super);
743
+ (0, tslib_1.__extends)(ConfigureBridgedAccessory, _super);
744
744
  function ConfigureBridgedAccessory() {
745
745
  var _this = _super.call(this, "Configure Bridged Accessory", ConfigureBridgedAccessory.UUID, {
746
746
  format: "tlv8" /* TLV8 */,
@@ -760,7 +760,7 @@ Characteristic_1.Characteristic.ConfigureBridgedAccessory = ConfigureBridgedAcce
760
760
  * @deprecated Removed and not used anymore
761
761
  */
762
762
  var ConfigureBridgedAccessoryStatus = /** @class */ (function (_super) {
763
- tslib_1.__extends(ConfigureBridgedAccessoryStatus, _super);
763
+ (0, tslib_1.__extends)(ConfigureBridgedAccessoryStatus, _super);
764
764
  function ConfigureBridgedAccessoryStatus() {
765
765
  var _this = _super.call(this, "Configure Bridged Accessory Status", ConfigureBridgedAccessoryStatus.UUID, {
766
766
  format: "tlv8" /* TLV8 */,
@@ -779,7 +779,7 @@ Characteristic_1.Characteristic.ConfigureBridgedAccessoryStatus = ConfigureBridg
779
779
  * Characteristic "Configured Name"
780
780
  */
781
781
  var ConfiguredName = /** @class */ (function (_super) {
782
- tslib_1.__extends(ConfiguredName, _super);
782
+ (0, tslib_1.__extends)(ConfiguredName, _super);
783
783
  function ConfiguredName() {
784
784
  var _this = _super.call(this, "Configured Name", ConfiguredName.UUID, {
785
785
  format: "string" /* STRING */,
@@ -797,7 +797,7 @@ Characteristic_1.Characteristic.ConfiguredName = ConfiguredName;
797
797
  * Characteristic "Contact Sensor State"
798
798
  */
799
799
  var ContactSensorState = /** @class */ (function (_super) {
800
- tslib_1.__extends(ContactSensorState, _super);
800
+ (0, tslib_1.__extends)(ContactSensorState, _super);
801
801
  function ContactSensorState() {
802
802
  var _this = _super.call(this, "Contact Sensor State", ContactSensorState.UUID, {
803
803
  format: "uint8" /* UINT8 */,
@@ -821,7 +821,7 @@ Characteristic_1.Characteristic.ContactSensorState = ContactSensorState;
821
821
  * Characteristic "Cooling Threshold Temperature"
822
822
  */
823
823
  var CoolingThresholdTemperature = /** @class */ (function (_super) {
824
- tslib_1.__extends(CoolingThresholdTemperature, _super);
824
+ (0, tslib_1.__extends)(CoolingThresholdTemperature, _super);
825
825
  function CoolingThresholdTemperature() {
826
826
  var _this = _super.call(this, "Cooling Threshold Temperature", CoolingThresholdTemperature.UUID, {
827
827
  format: "float" /* FLOAT */,
@@ -843,7 +843,7 @@ Characteristic_1.Characteristic.CoolingThresholdTemperature = CoolingThresholdTe
843
843
  * Characteristic "Current Air Purifier State"
844
844
  */
845
845
  var CurrentAirPurifierState = /** @class */ (function (_super) {
846
- tslib_1.__extends(CurrentAirPurifierState, _super);
846
+ (0, tslib_1.__extends)(CurrentAirPurifierState, _super);
847
847
  function CurrentAirPurifierState() {
848
848
  var _this = _super.call(this, "Current Air Purifier State", CurrentAirPurifierState.UUID, {
849
849
  format: "uint8" /* UINT8 */,
@@ -868,7 +868,7 @@ Characteristic_1.Characteristic.CurrentAirPurifierState = CurrentAirPurifierStat
868
868
  * Characteristic "Current Ambient Light Level"
869
869
  */
870
870
  var CurrentAmbientLightLevel = /** @class */ (function (_super) {
871
- tslib_1.__extends(CurrentAmbientLightLevel, _super);
871
+ (0, tslib_1.__extends)(CurrentAmbientLightLevel, _super);
872
872
  function CurrentAmbientLightLevel() {
873
873
  var _this = _super.call(this, "Current Ambient Light Level", CurrentAmbientLightLevel.UUID, {
874
874
  format: "float" /* FLOAT */,
@@ -889,7 +889,7 @@ Characteristic_1.Characteristic.CurrentAmbientLightLevel = CurrentAmbientLightLe
889
889
  * Characteristic "Current Door State"
890
890
  */
891
891
  var CurrentDoorState = /** @class */ (function (_super) {
892
- tslib_1.__extends(CurrentDoorState, _super);
892
+ (0, tslib_1.__extends)(CurrentDoorState, _super);
893
893
  function CurrentDoorState() {
894
894
  var _this = _super.call(this, "Current Door State", CurrentDoorState.UUID, {
895
895
  format: "uint8" /* UINT8 */,
@@ -916,7 +916,7 @@ Characteristic_1.Characteristic.CurrentDoorState = CurrentDoorState;
916
916
  * Characteristic "Current Fan State"
917
917
  */
918
918
  var CurrentFanState = /** @class */ (function (_super) {
919
- tslib_1.__extends(CurrentFanState, _super);
919
+ (0, tslib_1.__extends)(CurrentFanState, _super);
920
920
  function CurrentFanState() {
921
921
  var _this = _super.call(this, "Current Fan State", CurrentFanState.UUID, {
922
922
  format: "uint8" /* UINT8 */,
@@ -941,7 +941,7 @@ Characteristic_1.Characteristic.CurrentFanState = CurrentFanState;
941
941
  * Characteristic "Current Heater-Cooler State"
942
942
  */
943
943
  var CurrentHeaterCoolerState = /** @class */ (function (_super) {
944
- tslib_1.__extends(CurrentHeaterCoolerState, _super);
944
+ (0, tslib_1.__extends)(CurrentHeaterCoolerState, _super);
945
945
  function CurrentHeaterCoolerState() {
946
946
  var _this = _super.call(this, "Current Heater-Cooler State", CurrentHeaterCoolerState.UUID, {
947
947
  format: "uint8" /* UINT8 */,
@@ -967,7 +967,7 @@ Characteristic_1.Characteristic.CurrentHeaterCoolerState = CurrentHeaterCoolerSt
967
967
  * Characteristic "Current Heating Cooling State"
968
968
  */
969
969
  var CurrentHeatingCoolingState = /** @class */ (function (_super) {
970
- tslib_1.__extends(CurrentHeatingCoolingState, _super);
970
+ (0, tslib_1.__extends)(CurrentHeatingCoolingState, _super);
971
971
  function CurrentHeatingCoolingState() {
972
972
  var _this = _super.call(this, "Current Heating Cooling State", CurrentHeatingCoolingState.UUID, {
973
973
  format: "uint8" /* UINT8 */,
@@ -992,7 +992,7 @@ Characteristic_1.Characteristic.CurrentHeatingCoolingState = CurrentHeatingCooli
992
992
  * Characteristic "Current Horizontal Tilt Angle"
993
993
  */
994
994
  var CurrentHorizontalTiltAngle = /** @class */ (function (_super) {
995
- tslib_1.__extends(CurrentHorizontalTiltAngle, _super);
995
+ (0, tslib_1.__extends)(CurrentHorizontalTiltAngle, _super);
996
996
  function CurrentHorizontalTiltAngle() {
997
997
  var _this = _super.call(this, "Current Horizontal Tilt Angle", CurrentHorizontalTiltAngle.UUID, {
998
998
  format: "int" /* INT */,
@@ -1014,7 +1014,7 @@ Characteristic_1.Characteristic.CurrentHorizontalTiltAngle = CurrentHorizontalTi
1014
1014
  * Characteristic "Current Humidifier-Dehumidifier State"
1015
1015
  */
1016
1016
  var CurrentHumidifierDehumidifierState = /** @class */ (function (_super) {
1017
- tslib_1.__extends(CurrentHumidifierDehumidifierState, _super);
1017
+ (0, tslib_1.__extends)(CurrentHumidifierDehumidifierState, _super);
1018
1018
  function CurrentHumidifierDehumidifierState() {
1019
1019
  var _this = _super.call(this, "Current Humidifier-Dehumidifier State", CurrentHumidifierDehumidifierState.UUID, {
1020
1020
  format: "uint8" /* UINT8 */,
@@ -1040,7 +1040,7 @@ Characteristic_1.Characteristic.CurrentHumidifierDehumidifierState = CurrentHumi
1040
1040
  * Characteristic "Current Media State"
1041
1041
  */
1042
1042
  var CurrentMediaState = /** @class */ (function (_super) {
1043
- tslib_1.__extends(CurrentMediaState, _super);
1043
+ (0, tslib_1.__extends)(CurrentMediaState, _super);
1044
1044
  function CurrentMediaState() {
1045
1045
  var _this = _super.call(this, "Current Media State", CurrentMediaState.UUID, {
1046
1046
  format: "uint8" /* UINT8 */,
@@ -1067,7 +1067,7 @@ Characteristic_1.Characteristic.CurrentMediaState = CurrentMediaState;
1067
1067
  * Characteristic "Current Position"
1068
1068
  */
1069
1069
  var CurrentPosition = /** @class */ (function (_super) {
1070
- tslib_1.__extends(CurrentPosition, _super);
1070
+ (0, tslib_1.__extends)(CurrentPosition, _super);
1071
1071
  function CurrentPosition() {
1072
1072
  var _this = _super.call(this, "Current Position", CurrentPosition.UUID, {
1073
1073
  format: "uint8" /* UINT8 */,
@@ -1089,7 +1089,7 @@ Characteristic_1.Characteristic.CurrentPosition = CurrentPosition;
1089
1089
  * Characteristic "Current Relative Humidity"
1090
1090
  */
1091
1091
  var CurrentRelativeHumidity = /** @class */ (function (_super) {
1092
- tslib_1.__extends(CurrentRelativeHumidity, _super);
1092
+ (0, tslib_1.__extends)(CurrentRelativeHumidity, _super);
1093
1093
  function CurrentRelativeHumidity() {
1094
1094
  var _this = _super.call(this, "Current Relative Humidity", CurrentRelativeHumidity.UUID, {
1095
1095
  format: "float" /* FLOAT */,
@@ -1111,7 +1111,7 @@ Characteristic_1.Characteristic.CurrentRelativeHumidity = CurrentRelativeHumidit
1111
1111
  * Characteristic "Current Slat State"
1112
1112
  */
1113
1113
  var CurrentSlatState = /** @class */ (function (_super) {
1114
- tslib_1.__extends(CurrentSlatState, _super);
1114
+ (0, tslib_1.__extends)(CurrentSlatState, _super);
1115
1115
  function CurrentSlatState() {
1116
1116
  var _this = _super.call(this, "Current Slat State", CurrentSlatState.UUID, {
1117
1117
  format: "uint8" /* UINT8 */,
@@ -1136,7 +1136,7 @@ Characteristic_1.Characteristic.CurrentSlatState = CurrentSlatState;
1136
1136
  * Characteristic "Current Temperature"
1137
1137
  */
1138
1138
  var CurrentTemperature = /** @class */ (function (_super) {
1139
- tslib_1.__extends(CurrentTemperature, _super);
1139
+ (0, tslib_1.__extends)(CurrentTemperature, _super);
1140
1140
  function CurrentTemperature() {
1141
1141
  var _this = _super.call(this, "Current Temperature", CurrentTemperature.UUID, {
1142
1142
  format: "float" /* FLOAT */,
@@ -1158,7 +1158,7 @@ Characteristic_1.Characteristic.CurrentTemperature = CurrentTemperature;
1158
1158
  * Characteristic "Current Tilt Angle"
1159
1159
  */
1160
1160
  var CurrentTiltAngle = /** @class */ (function (_super) {
1161
- tslib_1.__extends(CurrentTiltAngle, _super);
1161
+ (0, tslib_1.__extends)(CurrentTiltAngle, _super);
1162
1162
  function CurrentTiltAngle() {
1163
1163
  var _this = _super.call(this, "Current Tilt Angle", CurrentTiltAngle.UUID, {
1164
1164
  format: "int" /* INT */,
@@ -1181,7 +1181,7 @@ Characteristic_1.Characteristic.CurrentTiltAngle = CurrentTiltAngle;
1181
1181
  * @deprecated Removed and not used anymore
1182
1182
  */
1183
1183
  var CurrentTime = /** @class */ (function (_super) {
1184
- tslib_1.__extends(CurrentTime, _super);
1184
+ (0, tslib_1.__extends)(CurrentTime, _super);
1185
1185
  function CurrentTime() {
1186
1186
  var _this = _super.call(this, "Current Time", CurrentTime.UUID, {
1187
1187
  format: "string" /* STRING */,
@@ -1201,7 +1201,7 @@ Characteristic_1.Characteristic.CurrentTime = CurrentTime;
1201
1201
  * @since iOS 14
1202
1202
  */
1203
1203
  var CurrentTransport = /** @class */ (function (_super) {
1204
- tslib_1.__extends(CurrentTransport, _super);
1204
+ (0, tslib_1.__extends)(CurrentTransport, _super);
1205
1205
  function CurrentTransport() {
1206
1206
  var _this = _super.call(this, "Current Transport", CurrentTransport.UUID, {
1207
1207
  format: "bool" /* BOOL */,
@@ -1219,7 +1219,7 @@ Characteristic_1.Characteristic.CurrentTransport = CurrentTransport;
1219
1219
  * Characteristic "Current Vertical Tilt Angle"
1220
1220
  */
1221
1221
  var CurrentVerticalTiltAngle = /** @class */ (function (_super) {
1222
- tslib_1.__extends(CurrentVerticalTiltAngle, _super);
1222
+ (0, tslib_1.__extends)(CurrentVerticalTiltAngle, _super);
1223
1223
  function CurrentVerticalTiltAngle() {
1224
1224
  var _this = _super.call(this, "Current Vertical Tilt Angle", CurrentVerticalTiltAngle.UUID, {
1225
1225
  format: "int" /* INT */,
@@ -1241,7 +1241,7 @@ Characteristic_1.Characteristic.CurrentVerticalTiltAngle = CurrentVerticalTiltAn
1241
1241
  * Characteristic "Current Visibility State"
1242
1242
  */
1243
1243
  var CurrentVisibilityState = /** @class */ (function (_super) {
1244
- tslib_1.__extends(CurrentVisibilityState, _super);
1244
+ (0, tslib_1.__extends)(CurrentVisibilityState, _super);
1245
1245
  function CurrentVisibilityState() {
1246
1246
  var _this = _super.call(this, "Current Visibility State", CurrentVisibilityState.UUID, {
1247
1247
  format: "uint8" /* UINT8 */,
@@ -1266,7 +1266,7 @@ Characteristic_1.Characteristic.CurrentVisibilityState = CurrentVisibilityState;
1266
1266
  * @since iOS 14
1267
1267
  */
1268
1268
  var DataStreamHAPTransport = /** @class */ (function (_super) {
1269
- tslib_1.__extends(DataStreamHAPTransport, _super);
1269
+ (0, tslib_1.__extends)(DataStreamHAPTransport, _super);
1270
1270
  function DataStreamHAPTransport() {
1271
1271
  var _this = _super.call(this, "Data Stream HAP Transport", DataStreamHAPTransport.UUID, {
1272
1272
  format: "tlv8" /* TLV8 */,
@@ -1285,7 +1285,7 @@ Characteristic_1.Characteristic.DataStreamHAPTransport = DataStreamHAPTransport;
1285
1285
  * @since iOS 14
1286
1286
  */
1287
1287
  var DataStreamHAPTransportInterrupt = /** @class */ (function (_super) {
1288
- tslib_1.__extends(DataStreamHAPTransportInterrupt, _super);
1288
+ (0, tslib_1.__extends)(DataStreamHAPTransportInterrupt, _super);
1289
1289
  function DataStreamHAPTransportInterrupt() {
1290
1290
  var _this = _super.call(this, "Data Stream HAP Transport Interrupt", DataStreamHAPTransportInterrupt.UUID, {
1291
1291
  format: "tlv8" /* TLV8 */,
@@ -1304,7 +1304,7 @@ Characteristic_1.Characteristic.DataStreamHAPTransportInterrupt = DataStreamHAPT
1304
1304
  * @deprecated Removed and not used anymore
1305
1305
  */
1306
1306
  var DayoftheWeek = /** @class */ (function (_super) {
1307
- tslib_1.__extends(DayoftheWeek, _super);
1307
+ (0, tslib_1.__extends)(DayoftheWeek, _super);
1308
1308
  function DayoftheWeek() {
1309
1309
  var _this = _super.call(this, "Day of the Week", DayoftheWeek.UUID, {
1310
1310
  format: "uint8" /* UINT8 */,
@@ -1326,7 +1326,7 @@ Characteristic_1.Characteristic.DayoftheWeek = DayoftheWeek;
1326
1326
  * @since iOS 13.2
1327
1327
  */
1328
1328
  var DiagonalFieldOfView = /** @class */ (function (_super) {
1329
- tslib_1.__extends(DiagonalFieldOfView, _super);
1329
+ (0, tslib_1.__extends)(DiagonalFieldOfView, _super);
1330
1330
  function DiagonalFieldOfView() {
1331
1331
  var _this = _super.call(this, "Diagonal Field Of View", DiagonalFieldOfView.UUID, {
1332
1332
  format: "float" /* FLOAT */,
@@ -1347,7 +1347,7 @@ Characteristic_1.Characteristic.DiagonalFieldOfView = DiagonalFieldOfView;
1347
1347
  * Characteristic "Digital Zoom"
1348
1348
  */
1349
1349
  var DigitalZoom = /** @class */ (function (_super) {
1350
- tslib_1.__extends(DigitalZoom, _super);
1350
+ (0, tslib_1.__extends)(DigitalZoom, _super);
1351
1351
  function DigitalZoom() {
1352
1352
  var _this = _super.call(this, "Digital Zoom", DigitalZoom.UUID, {
1353
1353
  format: "float" /* FLOAT */,
@@ -1367,7 +1367,7 @@ Characteristic_1.Characteristic.DigitalZoom = DigitalZoom;
1367
1367
  * @deprecated Removed and not used anymore
1368
1368
  */
1369
1369
  var DiscoverBridgedAccessories = /** @class */ (function (_super) {
1370
- tslib_1.__extends(DiscoverBridgedAccessories, _super);
1370
+ (0, tslib_1.__extends)(DiscoverBridgedAccessories, _super);
1371
1371
  function DiscoverBridgedAccessories() {
1372
1372
  var _this = _super.call(this, "Discover Bridged Accessories", DiscoverBridgedAccessories.UUID, {
1373
1373
  format: "uint8" /* UINT8 */,
@@ -1387,7 +1387,7 @@ Characteristic_1.Characteristic.DiscoverBridgedAccessories = DiscoverBridgedAcce
1387
1387
  * @deprecated Removed and not used anymore
1388
1388
  */
1389
1389
  var DiscoveredBridgedAccessories = /** @class */ (function (_super) {
1390
- tslib_1.__extends(DiscoveredBridgedAccessories, _super);
1390
+ (0, tslib_1.__extends)(DiscoveredBridgedAccessories, _super);
1391
1391
  function DiscoveredBridgedAccessories() {
1392
1392
  var _this = _super.call(this, "Discovered Bridged Accessories", DiscoveredBridgedAccessories.UUID, {
1393
1393
  format: "uint16" /* UINT16 */,
@@ -1406,7 +1406,7 @@ Characteristic_1.Characteristic.DiscoveredBridgedAccessories = DiscoveredBridged
1406
1406
  * Characteristic "Display Order"
1407
1407
  */
1408
1408
  var DisplayOrder = /** @class */ (function (_super) {
1409
- tslib_1.__extends(DisplayOrder, _super);
1409
+ (0, tslib_1.__extends)(DisplayOrder, _super);
1410
1410
  function DisplayOrder() {
1411
1411
  var _this = _super.call(this, "Display Order", DisplayOrder.UUID, {
1412
1412
  format: "tlv8" /* TLV8 */,
@@ -1425,7 +1425,7 @@ Characteristic_1.Characteristic.DisplayOrder = DisplayOrder;
1425
1425
  * @since iOS 14
1426
1426
  */
1427
1427
  var EventRetransmissionMaximum = /** @class */ (function (_super) {
1428
- tslib_1.__extends(EventRetransmissionMaximum, _super);
1428
+ (0, tslib_1.__extends)(EventRetransmissionMaximum, _super);
1429
1429
  function EventRetransmissionMaximum() {
1430
1430
  var _this = _super.call(this, "Event Retransmission Maximum", EventRetransmissionMaximum.UUID, {
1431
1431
  format: "uint8" /* UINT8 */,
@@ -1443,7 +1443,7 @@ Characteristic_1.Characteristic.EventRetransmissionMaximum = EventRetransmission
1443
1443
  * Characteristic "Event Snapshots Active"
1444
1444
  */
1445
1445
  var EventSnapshotsActive = /** @class */ (function (_super) {
1446
- tslib_1.__extends(EventSnapshotsActive, _super);
1446
+ (0, tslib_1.__extends)(EventSnapshotsActive, _super);
1447
1447
  function EventSnapshotsActive() {
1448
1448
  var _this = _super.call(this, "Event Snapshots Active", EventSnapshotsActive.UUID, {
1449
1449
  format: "uint8" /* UINT8 */,
@@ -1467,7 +1467,7 @@ Characteristic_1.Characteristic.EventSnapshotsActive = EventSnapshotsActive;
1467
1467
  * @since iOS 14
1468
1468
  */
1469
1469
  var EventTransmissionCounters = /** @class */ (function (_super) {
1470
- tslib_1.__extends(EventTransmissionCounters, _super);
1470
+ (0, tslib_1.__extends)(EventTransmissionCounters, _super);
1471
1471
  function EventTransmissionCounters() {
1472
1472
  var _this = _super.call(this, "Event Transmission Counters", EventTransmissionCounters.UUID, {
1473
1473
  format: "uint32" /* UINT32 */,
@@ -1485,7 +1485,7 @@ Characteristic_1.Characteristic.EventTransmissionCounters = EventTransmissionCou
1485
1485
  * Characteristic "Filter Change Indication"
1486
1486
  */
1487
1487
  var FilterChangeIndication = /** @class */ (function (_super) {
1488
- tslib_1.__extends(FilterChangeIndication, _super);
1488
+ (0, tslib_1.__extends)(FilterChangeIndication, _super);
1489
1489
  function FilterChangeIndication() {
1490
1490
  var _this = _super.call(this, "Filter Change Indication", FilterChangeIndication.UUID, {
1491
1491
  format: "uint8" /* UINT8 */,
@@ -1509,7 +1509,7 @@ Characteristic_1.Characteristic.FilterChangeIndication = FilterChangeIndication;
1509
1509
  * Characteristic "Filter Life Level"
1510
1510
  */
1511
1511
  var FilterLifeLevel = /** @class */ (function (_super) {
1512
- tslib_1.__extends(FilterLifeLevel, _super);
1512
+ (0, tslib_1.__extends)(FilterLifeLevel, _super);
1513
1513
  function FilterLifeLevel() {
1514
1514
  var _this = _super.call(this, "Filter Life Level", FilterLifeLevel.UUID, {
1515
1515
  format: "float" /* FLOAT */,
@@ -1530,7 +1530,7 @@ Characteristic_1.Characteristic.FilterLifeLevel = FilterLifeLevel;
1530
1530
  * Characteristic "Firmware Revision"
1531
1531
  */
1532
1532
  var FirmwareRevision = /** @class */ (function (_super) {
1533
- tslib_1.__extends(FirmwareRevision, _super);
1533
+ (0, tslib_1.__extends)(FirmwareRevision, _super);
1534
1534
  function FirmwareRevision() {
1535
1535
  var _this = _super.call(this, "Firmware Revision", FirmwareRevision.UUID, {
1536
1536
  format: "string" /* STRING */,
@@ -1548,7 +1548,7 @@ Characteristic_1.Characteristic.FirmwareRevision = FirmwareRevision;
1548
1548
  * Characteristic "Firmware Update Readiness"
1549
1549
  */
1550
1550
  var FirmwareUpdateReadiness = /** @class */ (function (_super) {
1551
- tslib_1.__extends(FirmwareUpdateReadiness, _super);
1551
+ (0, tslib_1.__extends)(FirmwareUpdateReadiness, _super);
1552
1552
  function FirmwareUpdateReadiness() {
1553
1553
  var _this = _super.call(this, "Firmware Update Readiness", FirmwareUpdateReadiness.UUID, {
1554
1554
  format: "tlv8" /* TLV8 */,
@@ -1566,7 +1566,7 @@ Characteristic_1.Characteristic.FirmwareUpdateReadiness = FirmwareUpdateReadines
1566
1566
  * Characteristic "Firmware Update Status"
1567
1567
  */
1568
1568
  var FirmwareUpdateStatus = /** @class */ (function (_super) {
1569
- tslib_1.__extends(FirmwareUpdateStatus, _super);
1569
+ (0, tslib_1.__extends)(FirmwareUpdateStatus, _super);
1570
1570
  function FirmwareUpdateStatus() {
1571
1571
  var _this = _super.call(this, "Firmware Update Status", FirmwareUpdateStatus.UUID, {
1572
1572
  format: "tlv8" /* TLV8 */,
@@ -1585,7 +1585,7 @@ Characteristic_1.Characteristic.FirmwareUpdateStatus = FirmwareUpdateStatus;
1585
1585
  * @since iOS 15
1586
1586
  */
1587
1587
  var HardwareFinish = /** @class */ (function (_super) {
1588
- tslib_1.__extends(HardwareFinish, _super);
1588
+ (0, tslib_1.__extends)(HardwareFinish, _super);
1589
1589
  function HardwareFinish() {
1590
1590
  var _this = _super.call(this, "Hardware Finish", HardwareFinish.UUID, {
1591
1591
  format: "tlv8" /* TLV8 */,
@@ -1603,7 +1603,7 @@ Characteristic_1.Characteristic.HardwareFinish = HardwareFinish;
1603
1603
  * Characteristic "Hardware Revision"
1604
1604
  */
1605
1605
  var HardwareRevision = /** @class */ (function (_super) {
1606
- tslib_1.__extends(HardwareRevision, _super);
1606
+ (0, tslib_1.__extends)(HardwareRevision, _super);
1607
1607
  function HardwareRevision() {
1608
1608
  var _this = _super.call(this, "Hardware Revision", HardwareRevision.UUID, {
1609
1609
  format: "string" /* STRING */,
@@ -1622,7 +1622,7 @@ Characteristic_1.Characteristic.HardwareRevision = HardwareRevision;
1622
1622
  * @since iOS 14
1623
1623
  */
1624
1624
  var HeartBeat = /** @class */ (function (_super) {
1625
- tslib_1.__extends(HeartBeat, _super);
1625
+ (0, tslib_1.__extends)(HeartBeat, _super);
1626
1626
  function HeartBeat() {
1627
1627
  var _this = _super.call(this, "Heart Beat", HeartBeat.UUID, {
1628
1628
  format: "uint32" /* UINT32 */,
@@ -1640,7 +1640,7 @@ Characteristic_1.Characteristic.HeartBeat = HeartBeat;
1640
1640
  * Characteristic "Heating Threshold Temperature"
1641
1641
  */
1642
1642
  var HeatingThresholdTemperature = /** @class */ (function (_super) {
1643
- tslib_1.__extends(HeatingThresholdTemperature, _super);
1643
+ (0, tslib_1.__extends)(HeatingThresholdTemperature, _super);
1644
1644
  function HeatingThresholdTemperature() {
1645
1645
  var _this = _super.call(this, "Heating Threshold Temperature", HeatingThresholdTemperature.UUID, {
1646
1646
  format: "float" /* FLOAT */,
@@ -1662,7 +1662,7 @@ Characteristic_1.Characteristic.HeatingThresholdTemperature = HeatingThresholdTe
1662
1662
  * Characteristic "Hold Position"
1663
1663
  */
1664
1664
  var HoldPosition = /** @class */ (function (_super) {
1665
- tslib_1.__extends(HoldPosition, _super);
1665
+ (0, tslib_1.__extends)(HoldPosition, _super);
1666
1666
  function HoldPosition() {
1667
1667
  var _this = _super.call(this, "Hold Position", HoldPosition.UUID, {
1668
1668
  format: "bool" /* BOOL */,
@@ -1680,7 +1680,7 @@ Characteristic_1.Characteristic.HoldPosition = HoldPosition;
1680
1680
  * Characteristic "HomeKit Camera Active"
1681
1681
  */
1682
1682
  var HomeKitCameraActive = /** @class */ (function (_super) {
1683
- tslib_1.__extends(HomeKitCameraActive, _super);
1683
+ (0, tslib_1.__extends)(HomeKitCameraActive, _super);
1684
1684
  function HomeKitCameraActive() {
1685
1685
  var _this = _super.call(this, "HomeKit Camera Active", HomeKitCameraActive.UUID, {
1686
1686
  format: "uint8" /* UINT8 */,
@@ -1703,7 +1703,7 @@ Characteristic_1.Characteristic.HomeKitCameraActive = HomeKitCameraActive;
1703
1703
  * Characteristic "Hue"
1704
1704
  */
1705
1705
  var Hue = /** @class */ (function (_super) {
1706
- tslib_1.__extends(Hue, _super);
1706
+ (0, tslib_1.__extends)(Hue, _super);
1707
1707
  function Hue() {
1708
1708
  var _this = _super.call(this, "Hue", Hue.UUID, {
1709
1709
  format: "float" /* FLOAT */,
@@ -1725,7 +1725,7 @@ Characteristic_1.Characteristic.Hue = Hue;
1725
1725
  * Characteristic "Identifier"
1726
1726
  */
1727
1727
  var Identifier = /** @class */ (function (_super) {
1728
- tslib_1.__extends(Identifier, _super);
1728
+ (0, tslib_1.__extends)(Identifier, _super);
1729
1729
  function Identifier() {
1730
1730
  var _this = _super.call(this, "Identifier", Identifier.UUID, {
1731
1731
  format: "uint32" /* UINT32 */,
@@ -1743,7 +1743,7 @@ Characteristic_1.Characteristic.Identifier = Identifier;
1743
1743
  * Characteristic "Identify"
1744
1744
  */
1745
1745
  var Identify = /** @class */ (function (_super) {
1746
- tslib_1.__extends(Identify, _super);
1746
+ (0, tslib_1.__extends)(Identify, _super);
1747
1747
  function Identify() {
1748
1748
  var _this = _super.call(this, "Identify", Identify.UUID, {
1749
1749
  format: "bool" /* BOOL */,
@@ -1761,7 +1761,7 @@ Characteristic_1.Characteristic.Identify = Identify;
1761
1761
  * Characteristic "Image Mirroring"
1762
1762
  */
1763
1763
  var ImageMirroring = /** @class */ (function (_super) {
1764
- tslib_1.__extends(ImageMirroring, _super);
1764
+ (0, tslib_1.__extends)(ImageMirroring, _super);
1765
1765
  function ImageMirroring() {
1766
1766
  var _this = _super.call(this, "Image Mirroring", ImageMirroring.UUID, {
1767
1767
  format: "bool" /* BOOL */,
@@ -1779,7 +1779,7 @@ Characteristic_1.Characteristic.ImageMirroring = ImageMirroring;
1779
1779
  * Characteristic "Image Rotation"
1780
1780
  */
1781
1781
  var ImageRotation = /** @class */ (function (_super) {
1782
- tslib_1.__extends(ImageRotation, _super);
1782
+ (0, tslib_1.__extends)(ImageRotation, _super);
1783
1783
  function ImageRotation() {
1784
1784
  var _this = _super.call(this, "Image Rotation", ImageRotation.UUID, {
1785
1785
  format: "int" /* INT */,
@@ -1801,7 +1801,7 @@ Characteristic_1.Characteristic.ImageRotation = ImageRotation;
1801
1801
  * Characteristic "Input Device Type"
1802
1802
  */
1803
1803
  var InputDeviceType = /** @class */ (function (_super) {
1804
- tslib_1.__extends(InputDeviceType, _super);
1804
+ (0, tslib_1.__extends)(InputDeviceType, _super);
1805
1805
  function InputDeviceType() {
1806
1806
  var _this = _super.call(this, "Input Device Type", InputDeviceType.UUID, {
1807
1807
  format: "uint8" /* UINT8 */,
@@ -1829,7 +1829,7 @@ Characteristic_1.Characteristic.InputDeviceType = InputDeviceType;
1829
1829
  * Characteristic "Input Source Type"
1830
1830
  */
1831
1831
  var InputSourceType = /** @class */ (function (_super) {
1832
- tslib_1.__extends(InputSourceType, _super);
1832
+ (0, tslib_1.__extends)(InputSourceType, _super);
1833
1833
  function InputSourceType() {
1834
1834
  var _this = _super.call(this, "Input Source Type", InputSourceType.UUID, {
1835
1835
  format: "uint8" /* UINT8 */,
@@ -1862,7 +1862,7 @@ Characteristic_1.Characteristic.InputSourceType = InputSourceType;
1862
1862
  * Characteristic "In Use"
1863
1863
  */
1864
1864
  var InUse = /** @class */ (function (_super) {
1865
- tslib_1.__extends(InUse, _super);
1865
+ (0, tslib_1.__extends)(InUse, _super);
1866
1866
  function InUse() {
1867
1867
  var _this = _super.call(this, "In Use", InUse.UUID, {
1868
1868
  format: "uint8" /* UINT8 */,
@@ -1886,7 +1886,7 @@ Characteristic_1.Characteristic.InUse = InUse;
1886
1886
  * Characteristic "Is Configured"
1887
1887
  */
1888
1888
  var IsConfigured = /** @class */ (function (_super) {
1889
- tslib_1.__extends(IsConfigured, _super);
1889
+ (0, tslib_1.__extends)(IsConfigured, _super);
1890
1890
  function IsConfigured() {
1891
1891
  var _this = _super.call(this, "Is Configured", IsConfigured.UUID, {
1892
1892
  format: "uint8" /* UINT8 */,
@@ -1910,7 +1910,7 @@ Characteristic_1.Characteristic.IsConfigured = IsConfigured;
1910
1910
  * Characteristic "Leak Detected"
1911
1911
  */
1912
1912
  var LeakDetected = /** @class */ (function (_super) {
1913
- tslib_1.__extends(LeakDetected, _super);
1913
+ (0, tslib_1.__extends)(LeakDetected, _super);
1914
1914
  function LeakDetected() {
1915
1915
  var _this = _super.call(this, "Leak Detected", LeakDetected.UUID, {
1916
1916
  format: "uint8" /* UINT8 */,
@@ -1935,7 +1935,7 @@ Characteristic_1.Characteristic.LeakDetected = LeakDetected;
1935
1935
  * @deprecated Removed and not used anymore
1936
1936
  */
1937
1937
  var LinkQuality = /** @class */ (function (_super) {
1938
- tslib_1.__extends(LinkQuality, _super);
1938
+ (0, tslib_1.__extends)(LinkQuality, _super);
1939
1939
  function LinkQuality() {
1940
1940
  var _this = _super.call(this, "Link Quality", LinkQuality.UUID, {
1941
1941
  format: "uint8" /* UINT8 */,
@@ -1956,7 +1956,7 @@ Characteristic_1.Characteristic.LinkQuality = LinkQuality;
1956
1956
  * Characteristic "List Pairings"
1957
1957
  */
1958
1958
  var ListPairings = /** @class */ (function (_super) {
1959
- tslib_1.__extends(ListPairings, _super);
1959
+ (0, tslib_1.__extends)(ListPairings, _super);
1960
1960
  function ListPairings() {
1961
1961
  var _this = _super.call(this, "List Pairings", ListPairings.UUID, {
1962
1962
  format: "tlv8" /* TLV8 */,
@@ -1974,7 +1974,7 @@ Characteristic_1.Characteristic.ListPairings = ListPairings;
1974
1974
  * Characteristic "Lock Control Point"
1975
1975
  */
1976
1976
  var LockControlPoint = /** @class */ (function (_super) {
1977
- tslib_1.__extends(LockControlPoint, _super);
1977
+ (0, tslib_1.__extends)(LockControlPoint, _super);
1978
1978
  function LockControlPoint() {
1979
1979
  var _this = _super.call(this, "Lock Control Point", LockControlPoint.UUID, {
1980
1980
  format: "tlv8" /* TLV8 */,
@@ -1992,7 +1992,7 @@ Characteristic_1.Characteristic.LockControlPoint = LockControlPoint;
1992
1992
  * Characteristic "Lock Current State"
1993
1993
  */
1994
1994
  var LockCurrentState = /** @class */ (function (_super) {
1995
- tslib_1.__extends(LockCurrentState, _super);
1995
+ (0, tslib_1.__extends)(LockCurrentState, _super);
1996
1996
  function LockCurrentState() {
1997
1997
  var _this = _super.call(this, "Lock Current State", LockCurrentState.UUID, {
1998
1998
  format: "uint8" /* UINT8 */,
@@ -2018,7 +2018,7 @@ Characteristic_1.Characteristic.LockCurrentState = LockCurrentState;
2018
2018
  * Characteristic "Lock Last Known Action"
2019
2019
  */
2020
2020
  var LockLastKnownAction = /** @class */ (function (_super) {
2021
- tslib_1.__extends(LockLastKnownAction, _super);
2021
+ (0, tslib_1.__extends)(LockLastKnownAction, _super);
2022
2022
  function LockLastKnownAction() {
2023
2023
  var _this = _super.call(this, "Lock Last Known Action", LockLastKnownAction.UUID, {
2024
2024
  format: "uint8" /* UINT8 */,
@@ -2051,7 +2051,7 @@ Characteristic_1.Characteristic.LockLastKnownAction = LockLastKnownAction;
2051
2051
  * Characteristic "Lock Management Auto Security Timeout"
2052
2052
  */
2053
2053
  var LockManagementAutoSecurityTimeout = /** @class */ (function (_super) {
2054
- tslib_1.__extends(LockManagementAutoSecurityTimeout, _super);
2054
+ (0, tslib_1.__extends)(LockManagementAutoSecurityTimeout, _super);
2055
2055
  function LockManagementAutoSecurityTimeout() {
2056
2056
  var _this = _super.call(this, "Lock Management Auto Security Timeout", LockManagementAutoSecurityTimeout.UUID, {
2057
2057
  format: "uint32" /* UINT32 */,
@@ -2070,7 +2070,7 @@ Characteristic_1.Characteristic.LockManagementAutoSecurityTimeout = LockManageme
2070
2070
  * Characteristic "Lock Physical Controls"
2071
2071
  */
2072
2072
  var LockPhysicalControls = /** @class */ (function (_super) {
2073
- tslib_1.__extends(LockPhysicalControls, _super);
2073
+ (0, tslib_1.__extends)(LockPhysicalControls, _super);
2074
2074
  function LockPhysicalControls() {
2075
2075
  var _this = _super.call(this, "Lock Physical Controls", LockPhysicalControls.UUID, {
2076
2076
  format: "uint8" /* UINT8 */,
@@ -2094,7 +2094,7 @@ Characteristic_1.Characteristic.LockPhysicalControls = LockPhysicalControls;
2094
2094
  * Characteristic "Lock Target State"
2095
2095
  */
2096
2096
  var LockTargetState = /** @class */ (function (_super) {
2097
- tslib_1.__extends(LockTargetState, _super);
2097
+ (0, tslib_1.__extends)(LockTargetState, _super);
2098
2098
  function LockTargetState() {
2099
2099
  var _this = _super.call(this, "Lock Target State", LockTargetState.UUID, {
2100
2100
  format: "uint8" /* UINT8 */,
@@ -2118,7 +2118,7 @@ Characteristic_1.Characteristic.LockTargetState = LockTargetState;
2118
2118
  * Characteristic "Logs"
2119
2119
  */
2120
2120
  var Logs = /** @class */ (function (_super) {
2121
- tslib_1.__extends(Logs, _super);
2121
+ (0, tslib_1.__extends)(Logs, _super);
2122
2122
  function Logs() {
2123
2123
  var _this = _super.call(this, "Logs", Logs.UUID, {
2124
2124
  format: "tlv8" /* TLV8 */,
@@ -2137,7 +2137,7 @@ Characteristic_1.Characteristic.Logs = Logs;
2137
2137
  * @since iOS 14
2138
2138
  */
2139
2139
  var MACRetransmissionMaximum = /** @class */ (function (_super) {
2140
- tslib_1.__extends(MACRetransmissionMaximum, _super);
2140
+ (0, tslib_1.__extends)(MACRetransmissionMaximum, _super);
2141
2141
  function MACRetransmissionMaximum() {
2142
2142
  var _this = _super.call(this, "MAC Retransmission Maximum", MACRetransmissionMaximum.UUID, {
2143
2143
  format: "uint8" /* UINT8 */,
@@ -2155,7 +2155,7 @@ Characteristic_1.Characteristic.MACRetransmissionMaximum = MACRetransmissionMaxi
2155
2155
  * Characteristic "MAC Transmission Counters"
2156
2156
  */
2157
2157
  var MACTransmissionCounters = /** @class */ (function (_super) {
2158
- tslib_1.__extends(MACTransmissionCounters, _super);
2158
+ (0, tslib_1.__extends)(MACTransmissionCounters, _super);
2159
2159
  function MACTransmissionCounters() {
2160
2160
  var _this = _super.call(this, "MAC Transmission Counters", MACTransmissionCounters.UUID, {
2161
2161
  format: "data" /* DATA */,
@@ -2173,7 +2173,7 @@ Characteristic_1.Characteristic.MACTransmissionCounters = MACTransmissionCounter
2173
2173
  * Characteristic "Managed Network Enable"
2174
2174
  */
2175
2175
  var ManagedNetworkEnable = /** @class */ (function (_super) {
2176
- tslib_1.__extends(ManagedNetworkEnable, _super);
2176
+ (0, tslib_1.__extends)(ManagedNetworkEnable, _super);
2177
2177
  function ManagedNetworkEnable() {
2178
2178
  var _this = _super.call(this, "Managed Network Enable", ManagedNetworkEnable.UUID, {
2179
2179
  format: "uint8" /* UINT8 */,
@@ -2196,7 +2196,7 @@ Characteristic_1.Characteristic.ManagedNetworkEnable = ManagedNetworkEnable;
2196
2196
  * Characteristic "Manually Disabled"
2197
2197
  */
2198
2198
  var ManuallyDisabled = /** @class */ (function (_super) {
2199
- tslib_1.__extends(ManuallyDisabled, _super);
2199
+ (0, tslib_1.__extends)(ManuallyDisabled, _super);
2200
2200
  function ManuallyDisabled() {
2201
2201
  var _this = _super.call(this, "Manually Disabled", ManuallyDisabled.UUID, {
2202
2202
  format: "bool" /* BOOL */,
@@ -2217,7 +2217,7 @@ Characteristic_1.Characteristic.ManuallyDisabled = ManuallyDisabled;
2217
2217
  * Characteristic "Manufacturer"
2218
2218
  */
2219
2219
  var Manufacturer = /** @class */ (function (_super) {
2220
- tslib_1.__extends(Manufacturer, _super);
2220
+ (0, tslib_1.__extends)(Manufacturer, _super);
2221
2221
  function Manufacturer() {
2222
2222
  var _this = _super.call(this, "Manufacturer", Manufacturer.UUID, {
2223
2223
  format: "string" /* STRING */,
@@ -2237,7 +2237,7 @@ Characteristic_1.Characteristic.Manufacturer = Manufacturer;
2237
2237
  * @since iOS 14
2238
2238
  */
2239
2239
  var MaximumTransmitPower = /** @class */ (function (_super) {
2240
- tslib_1.__extends(MaximumTransmitPower, _super);
2240
+ (0, tslib_1.__extends)(MaximumTransmitPower, _super);
2241
2241
  function MaximumTransmitPower() {
2242
2242
  var _this = _super.call(this, "Maximum Transmit Power", MaximumTransmitPower.UUID, {
2243
2243
  format: "int" /* INT */,
@@ -2255,7 +2255,7 @@ Characteristic_1.Characteristic.MaximumTransmitPower = MaximumTransmitPower;
2255
2255
  * Characteristic "Model"
2256
2256
  */
2257
2257
  var Model = /** @class */ (function (_super) {
2258
- tslib_1.__extends(Model, _super);
2258
+ (0, tslib_1.__extends)(Model, _super);
2259
2259
  function Model() {
2260
2260
  var _this = _super.call(this, "Model", Model.UUID, {
2261
2261
  format: "string" /* STRING */,
@@ -2274,7 +2274,7 @@ Characteristic_1.Characteristic.Model = Model;
2274
2274
  * Characteristic "Motion Detected"
2275
2275
  */
2276
2276
  var MotionDetected = /** @class */ (function (_super) {
2277
- tslib_1.__extends(MotionDetected, _super);
2277
+ (0, tslib_1.__extends)(MotionDetected, _super);
2278
2278
  function MotionDetected() {
2279
2279
  var _this = _super.call(this, "Motion Detected", MotionDetected.UUID, {
2280
2280
  format: "bool" /* BOOL */,
@@ -2292,7 +2292,7 @@ Characteristic_1.Characteristic.MotionDetected = MotionDetected;
2292
2292
  * Characteristic "Multifunction Button"
2293
2293
  */
2294
2294
  var MultifunctionButton = /** @class */ (function (_super) {
2295
- tslib_1.__extends(MultifunctionButton, _super);
2295
+ (0, tslib_1.__extends)(MultifunctionButton, _super);
2296
2296
  function MultifunctionButton() {
2297
2297
  var _this = _super.call(this, "Multifunction Button", MultifunctionButton.UUID, {
2298
2298
  format: "uint8" /* UINT8 */,
@@ -2312,7 +2312,7 @@ Characteristic_1.Characteristic.MultifunctionButton = MultifunctionButton;
2312
2312
  * Characteristic "Mute"
2313
2313
  */
2314
2314
  var Mute = /** @class */ (function (_super) {
2315
- tslib_1.__extends(Mute, _super);
2315
+ (0, tslib_1.__extends)(Mute, _super);
2316
2316
  function Mute() {
2317
2317
  var _this = _super.call(this, "Mute", Mute.UUID, {
2318
2318
  format: "bool" /* BOOL */,
@@ -2330,7 +2330,7 @@ Characteristic_1.Characteristic.Mute = Mute;
2330
2330
  * Characteristic "Name"
2331
2331
  */
2332
2332
  var Name = /** @class */ (function (_super) {
2333
- tslib_1.__extends(Name, _super);
2333
+ (0, tslib_1.__extends)(Name, _super);
2334
2334
  function Name() {
2335
2335
  var _this = _super.call(this, "Name", Name.UUID, {
2336
2336
  format: "string" /* STRING */,
@@ -2349,7 +2349,7 @@ Characteristic_1.Characteristic.Name = Name;
2349
2349
  * Characteristic "Network Access Violation Control"
2350
2350
  */
2351
2351
  var NetworkAccessViolationControl = /** @class */ (function (_super) {
2352
- tslib_1.__extends(NetworkAccessViolationControl, _super);
2352
+ (0, tslib_1.__extends)(NetworkAccessViolationControl, _super);
2353
2353
  function NetworkAccessViolationControl() {
2354
2354
  var _this = _super.call(this, "Network Access Violation Control", NetworkAccessViolationControl.UUID, {
2355
2355
  format: "tlv8" /* TLV8 */,
@@ -2367,7 +2367,7 @@ Characteristic_1.Characteristic.NetworkAccessViolationControl = NetworkAccessVio
2367
2367
  * Characteristic "Network Client Profile Control"
2368
2368
  */
2369
2369
  var NetworkClientProfileControl = /** @class */ (function (_super) {
2370
- tslib_1.__extends(NetworkClientProfileControl, _super);
2370
+ (0, tslib_1.__extends)(NetworkClientProfileControl, _super);
2371
2371
  function NetworkClientProfileControl() {
2372
2372
  var _this = _super.call(this, "Network Client Profile Control", NetworkClientProfileControl.UUID, {
2373
2373
  format: "tlv8" /* TLV8 */,
@@ -2385,7 +2385,7 @@ Characteristic_1.Characteristic.NetworkClientProfileControl = NetworkClientProfi
2385
2385
  * Characteristic "Network Client Status Control"
2386
2386
  */
2387
2387
  var NetworkClientStatusControl = /** @class */ (function (_super) {
2388
- tslib_1.__extends(NetworkClientStatusControl, _super);
2388
+ (0, tslib_1.__extends)(NetworkClientStatusControl, _super);
2389
2389
  function NetworkClientStatusControl() {
2390
2390
  var _this = _super.call(this, "Network Client Status Control", NetworkClientStatusControl.UUID, {
2391
2391
  format: "tlv8" /* TLV8 */,
@@ -2404,7 +2404,7 @@ Characteristic_1.Characteristic.NetworkClientStatusControl = NetworkClientStatus
2404
2404
  * @since iOS 15
2405
2405
  */
2406
2406
  var NFCAccessControlPoint = /** @class */ (function (_super) {
2407
- tslib_1.__extends(NFCAccessControlPoint, _super);
2407
+ (0, tslib_1.__extends)(NFCAccessControlPoint, _super);
2408
2408
  function NFCAccessControlPoint() {
2409
2409
  var _this = _super.call(this, "NFC Access Control Point", NFCAccessControlPoint.UUID, {
2410
2410
  format: "tlv8" /* TLV8 */,
@@ -2423,7 +2423,7 @@ Characteristic_1.Characteristic.NFCAccessControlPoint = NFCAccessControlPoint;
2423
2423
  * @since iOS 15
2424
2424
  */
2425
2425
  var NFCAccessSupportedConfiguration = /** @class */ (function (_super) {
2426
- tslib_1.__extends(NFCAccessSupportedConfiguration, _super);
2426
+ (0, tslib_1.__extends)(NFCAccessSupportedConfiguration, _super);
2427
2427
  function NFCAccessSupportedConfiguration() {
2428
2428
  var _this = _super.call(this, "NFC Access Supported Configuration", NFCAccessSupportedConfiguration.UUID, {
2429
2429
  format: "tlv8" /* TLV8 */,
@@ -2441,7 +2441,7 @@ Characteristic_1.Characteristic.NFCAccessSupportedConfiguration = NFCAccessSuppo
2441
2441
  * Characteristic "Night Vision"
2442
2442
  */
2443
2443
  var NightVision = /** @class */ (function (_super) {
2444
- tslib_1.__extends(NightVision, _super);
2444
+ (0, tslib_1.__extends)(NightVision, _super);
2445
2445
  function NightVision() {
2446
2446
  var _this = _super.call(this, "Night Vision", NightVision.UUID, {
2447
2447
  format: "bool" /* BOOL */,
@@ -2459,7 +2459,7 @@ Characteristic_1.Characteristic.NightVision = NightVision;
2459
2459
  * Characteristic "Nitrogen Dioxide Density"
2460
2460
  */
2461
2461
  var NitrogenDioxideDensity = /** @class */ (function (_super) {
2462
- tslib_1.__extends(NitrogenDioxideDensity, _super);
2462
+ (0, tslib_1.__extends)(NitrogenDioxideDensity, _super);
2463
2463
  function NitrogenDioxideDensity() {
2464
2464
  var _this = _super.call(this, "Nitrogen Dioxide Density", NitrogenDioxideDensity.UUID, {
2465
2465
  format: "float" /* FLOAT */,
@@ -2480,7 +2480,7 @@ Characteristic_1.Characteristic.NitrogenDioxideDensity = NitrogenDioxideDensity;
2480
2480
  * Characteristic "Obstruction Detected"
2481
2481
  */
2482
2482
  var ObstructionDetected = /** @class */ (function (_super) {
2483
- tslib_1.__extends(ObstructionDetected, _super);
2483
+ (0, tslib_1.__extends)(ObstructionDetected, _super);
2484
2484
  function ObstructionDetected() {
2485
2485
  var _this = _super.call(this, "Obstruction Detected", ObstructionDetected.UUID, {
2486
2486
  format: "bool" /* BOOL */,
@@ -2498,7 +2498,7 @@ Characteristic_1.Characteristic.ObstructionDetected = ObstructionDetected;
2498
2498
  * Characteristic "Occupancy Detected"
2499
2499
  */
2500
2500
  var OccupancyDetected = /** @class */ (function (_super) {
2501
- tslib_1.__extends(OccupancyDetected, _super);
2501
+ (0, tslib_1.__extends)(OccupancyDetected, _super);
2502
2502
  function OccupancyDetected() {
2503
2503
  var _this = _super.call(this, "Occupancy Detected", OccupancyDetected.UUID, {
2504
2504
  format: "uint8" /* UINT8 */,
@@ -2522,7 +2522,7 @@ Characteristic_1.Characteristic.OccupancyDetected = OccupancyDetected;
2522
2522
  * Characteristic "On"
2523
2523
  */
2524
2524
  var On = /** @class */ (function (_super) {
2525
- tslib_1.__extends(On, _super);
2525
+ (0, tslib_1.__extends)(On, _super);
2526
2526
  function On() {
2527
2527
  var _this = _super.call(this, "On", On.UUID, {
2528
2528
  format: "bool" /* BOOL */,
@@ -2541,7 +2541,7 @@ Characteristic_1.Characteristic.On = On;
2541
2541
  * @since iOS 14
2542
2542
  */
2543
2543
  var OperatingStateResponse = /** @class */ (function (_super) {
2544
- tslib_1.__extends(OperatingStateResponse, _super);
2544
+ (0, tslib_1.__extends)(OperatingStateResponse, _super);
2545
2545
  function OperatingStateResponse() {
2546
2546
  var _this = _super.call(this, "Operating State Response", OperatingStateResponse.UUID, {
2547
2547
  format: "tlv8" /* TLV8 */,
@@ -2559,7 +2559,7 @@ Characteristic_1.Characteristic.OperatingStateResponse = OperatingStateResponse;
2559
2559
  * Characteristic "Optical Zoom"
2560
2560
  */
2561
2561
  var OpticalZoom = /** @class */ (function (_super) {
2562
- tslib_1.__extends(OpticalZoom, _super);
2562
+ (0, tslib_1.__extends)(OpticalZoom, _super);
2563
2563
  function OpticalZoom() {
2564
2564
  var _this = _super.call(this, "Optical Zoom", OpticalZoom.UUID, {
2565
2565
  format: "float" /* FLOAT */,
@@ -2578,7 +2578,7 @@ Characteristic_1.Characteristic.OpticalZoom = OpticalZoom;
2578
2578
  * Characteristic "Outlet In Use"
2579
2579
  */
2580
2580
  var OutletInUse = /** @class */ (function (_super) {
2581
- tslib_1.__extends(OutletInUse, _super);
2581
+ (0, tslib_1.__extends)(OutletInUse, _super);
2582
2582
  function OutletInUse() {
2583
2583
  var _this = _super.call(this, "Outlet In Use", OutletInUse.UUID, {
2584
2584
  format: "bool" /* BOOL */,
@@ -2596,7 +2596,7 @@ Characteristic_1.Characteristic.OutletInUse = OutletInUse;
2596
2596
  * Characteristic "Ozone Density"
2597
2597
  */
2598
2598
  var OzoneDensity = /** @class */ (function (_super) {
2599
- tslib_1.__extends(OzoneDensity, _super);
2599
+ (0, tslib_1.__extends)(OzoneDensity, _super);
2600
2600
  function OzoneDensity() {
2601
2601
  var _this = _super.call(this, "Ozone Density", OzoneDensity.UUID, {
2602
2602
  format: "float" /* FLOAT */,
@@ -2617,7 +2617,7 @@ Characteristic_1.Characteristic.OzoneDensity = OzoneDensity;
2617
2617
  * Characteristic "Pairing Features"
2618
2618
  */
2619
2619
  var PairingFeatures = /** @class */ (function (_super) {
2620
- tslib_1.__extends(PairingFeatures, _super);
2620
+ (0, tslib_1.__extends)(PairingFeatures, _super);
2621
2621
  function PairingFeatures() {
2622
2622
  var _this = _super.call(this, "Pairing Features", PairingFeatures.UUID, {
2623
2623
  format: "uint8" /* UINT8 */,
@@ -2635,7 +2635,7 @@ Characteristic_1.Characteristic.PairingFeatures = PairingFeatures;
2635
2635
  * Characteristic "Pair Setup"
2636
2636
  */
2637
2637
  var PairSetup = /** @class */ (function (_super) {
2638
- tslib_1.__extends(PairSetup, _super);
2638
+ (0, tslib_1.__extends)(PairSetup, _super);
2639
2639
  function PairSetup() {
2640
2640
  var _this = _super.call(this, "Pair Setup", PairSetup.UUID, {
2641
2641
  format: "tlv8" /* TLV8 */,
@@ -2653,7 +2653,7 @@ Characteristic_1.Characteristic.PairSetup = PairSetup;
2653
2653
  * Characteristic "Pair Verify"
2654
2654
  */
2655
2655
  var PairVerify = /** @class */ (function (_super) {
2656
- tslib_1.__extends(PairVerify, _super);
2656
+ (0, tslib_1.__extends)(PairVerify, _super);
2657
2657
  function PairVerify() {
2658
2658
  var _this = _super.call(this, "Pair Verify", PairVerify.UUID, {
2659
2659
  format: "tlv8" /* TLV8 */,
@@ -2671,7 +2671,7 @@ Characteristic_1.Characteristic.PairVerify = PairVerify;
2671
2671
  * Characteristic "Password Setting"
2672
2672
  */
2673
2673
  var PasswordSetting = /** @class */ (function (_super) {
2674
- tslib_1.__extends(PasswordSetting, _super);
2674
+ (0, tslib_1.__extends)(PasswordSetting, _super);
2675
2675
  function PasswordSetting() {
2676
2676
  var _this = _super.call(this, "Password Setting", PasswordSetting.UUID, {
2677
2677
  format: "tlv8" /* TLV8 */,
@@ -2689,7 +2689,7 @@ Characteristic_1.Characteristic.PasswordSetting = PasswordSetting;
2689
2689
  * Characteristic "Periodic Snapshots Active"
2690
2690
  */
2691
2691
  var PeriodicSnapshotsActive = /** @class */ (function (_super) {
2692
- tslib_1.__extends(PeriodicSnapshotsActive, _super);
2692
+ (0, tslib_1.__extends)(PeriodicSnapshotsActive, _super);
2693
2693
  function PeriodicSnapshotsActive() {
2694
2694
  var _this = _super.call(this, "Periodic Snapshots Active", PeriodicSnapshotsActive.UUID, {
2695
2695
  format: "uint8" /* UINT8 */,
@@ -2710,7 +2710,7 @@ Characteristic_1.Characteristic.PeriodicSnapshotsActive = PeriodicSnapshotsActiv
2710
2710
  * Characteristic "Picture Mode"
2711
2711
  */
2712
2712
  var PictureMode = /** @class */ (function (_super) {
2713
- tslib_1.__extends(PictureMode, _super);
2713
+ (0, tslib_1.__extends)(PictureMode, _super);
2714
2714
  function PictureMode() {
2715
2715
  var _this = _super.call(this, "Picture Mode", PictureMode.UUID, {
2716
2716
  format: "uint8" /* UINT8 */,
@@ -2741,7 +2741,7 @@ Characteristic_1.Characteristic.PictureMode = PictureMode;
2741
2741
  * @since iOS 14
2742
2742
  */
2743
2743
  var Ping = /** @class */ (function (_super) {
2744
- tslib_1.__extends(Ping, _super);
2744
+ (0, tslib_1.__extends)(Ping, _super);
2745
2745
  function Ping() {
2746
2746
  var _this = _super.call(this, "Ping", Ping.UUID, {
2747
2747
  format: "data" /* DATA */,
@@ -2759,7 +2759,7 @@ Characteristic_1.Characteristic.Ping = Ping;
2759
2759
  * Characteristic "PM10 Density"
2760
2760
  */
2761
2761
  var PM10Density = /** @class */ (function (_super) {
2762
- tslib_1.__extends(PM10Density, _super);
2762
+ (0, tslib_1.__extends)(PM10Density, _super);
2763
2763
  function PM10Density() {
2764
2764
  var _this = _super.call(this, "PM10 Density", PM10Density.UUID, {
2765
2765
  format: "float" /* FLOAT */,
@@ -2780,7 +2780,7 @@ Characteristic_1.Characteristic.PM10Density = PM10Density;
2780
2780
  * Characteristic "PM2.5 Density"
2781
2781
  */
2782
2782
  var PM2_5Density = /** @class */ (function (_super) {
2783
- tslib_1.__extends(PM2_5Density, _super);
2783
+ (0, tslib_1.__extends)(PM2_5Density, _super);
2784
2784
  function PM2_5Density() {
2785
2785
  var _this = _super.call(this, "PM2.5 Density", PM2_5Density.UUID, {
2786
2786
  format: "float" /* FLOAT */,
@@ -2801,7 +2801,7 @@ Characteristic_1.Characteristic.PM2_5Density = PM2_5Density;
2801
2801
  * Characteristic "Position State"
2802
2802
  */
2803
2803
  var PositionState = /** @class */ (function (_super) {
2804
- tslib_1.__extends(PositionState, _super);
2804
+ (0, tslib_1.__extends)(PositionState, _super);
2805
2805
  function PositionState() {
2806
2806
  var _this = _super.call(this, "Position State", PositionState.UUID, {
2807
2807
  format: "uint8" /* UINT8 */,
@@ -2826,7 +2826,7 @@ Characteristic_1.Characteristic.PositionState = PositionState;
2826
2826
  * Characteristic "Power Mode Selection"
2827
2827
  */
2828
2828
  var PowerModeSelection = /** @class */ (function (_super) {
2829
- tslib_1.__extends(PowerModeSelection, _super);
2829
+ (0, tslib_1.__extends)(PowerModeSelection, _super);
2830
2830
  function PowerModeSelection() {
2831
2831
  var _this = _super.call(this, "Power Mode Selection", PowerModeSelection.UUID, {
2832
2832
  format: "uint8" /* UINT8 */,
@@ -2850,7 +2850,7 @@ Characteristic_1.Characteristic.PowerModeSelection = PowerModeSelection;
2850
2850
  * Characteristic "Product Data"
2851
2851
  */
2852
2852
  var ProductData = /** @class */ (function (_super) {
2853
- tslib_1.__extends(ProductData, _super);
2853
+ (0, tslib_1.__extends)(ProductData, _super);
2854
2854
  function ProductData() {
2855
2855
  var _this = _super.call(this, "Product Data", ProductData.UUID, {
2856
2856
  format: "data" /* DATA */,
@@ -2868,7 +2868,7 @@ Characteristic_1.Characteristic.ProductData = ProductData;
2868
2868
  * Characteristic "Programmable Switch Event"
2869
2869
  */
2870
2870
  var ProgrammableSwitchEvent = /** @class */ (function (_super) {
2871
- tslib_1.__extends(ProgrammableSwitchEvent, _super);
2871
+ (0, tslib_1.__extends)(ProgrammableSwitchEvent, _super);
2872
2872
  function ProgrammableSwitchEvent() {
2873
2873
  var _this = _super.call(this, "Programmable Switch Event", ProgrammableSwitchEvent.UUID, {
2874
2874
  format: "uint8" /* UINT8 */,
@@ -2893,7 +2893,7 @@ Characteristic_1.Characteristic.ProgrammableSwitchEvent = ProgrammableSwitchEven
2893
2893
  * Characteristic "Programmable Switch Output State"
2894
2894
  */
2895
2895
  var ProgrammableSwitchOutputState = /** @class */ (function (_super) {
2896
- tslib_1.__extends(ProgrammableSwitchOutputState, _super);
2896
+ (0, tslib_1.__extends)(ProgrammableSwitchOutputState, _super);
2897
2897
  function ProgrammableSwitchOutputState() {
2898
2898
  var _this = _super.call(this, "Programmable Switch Output State", ProgrammableSwitchOutputState.UUID, {
2899
2899
  format: "uint8" /* UINT8 */,
@@ -2914,7 +2914,7 @@ Characteristic_1.Characteristic.ProgrammableSwitchOutputState = ProgrammableSwit
2914
2914
  * Characteristic "Program Mode"
2915
2915
  */
2916
2916
  var ProgramMode = /** @class */ (function (_super) {
2917
- tslib_1.__extends(ProgramMode, _super);
2917
+ (0, tslib_1.__extends)(ProgramMode, _super);
2918
2918
  function ProgramMode() {
2919
2919
  var _this = _super.call(this, "Program Mode", ProgramMode.UUID, {
2920
2920
  format: "uint8" /* UINT8 */,
@@ -2940,7 +2940,7 @@ Characteristic_1.Characteristic.ProgramMode = ProgramMode;
2940
2940
  * @deprecated Removed and not used anymore
2941
2941
  */
2942
2942
  var Reachable = /** @class */ (function (_super) {
2943
- tslib_1.__extends(Reachable, _super);
2943
+ (0, tslib_1.__extends)(Reachable, _super);
2944
2944
  function Reachable() {
2945
2945
  var _this = _super.call(this, "Reachable", Reachable.UUID, {
2946
2946
  format: "bool" /* BOOL */,
@@ -2960,7 +2960,7 @@ Characteristic_1.Characteristic.Reachable = Reachable;
2960
2960
  * @since iOS 14
2961
2961
  */
2962
2962
  var ReceivedSignalStrengthIndication = /** @class */ (function (_super) {
2963
- tslib_1.__extends(ReceivedSignalStrengthIndication, _super);
2963
+ (0, tslib_1.__extends)(ReceivedSignalStrengthIndication, _super);
2964
2964
  function ReceivedSignalStrengthIndication() {
2965
2965
  var _this = _super.call(this, "Received Signal Strength Indication", ReceivedSignalStrengthIndication.UUID, {
2966
2966
  format: "int" /* INT */,
@@ -2979,7 +2979,7 @@ Characteristic_1.Characteristic.ReceivedSignalStrengthIndication = ReceivedSigna
2979
2979
  * @since iOS 14
2980
2980
  */
2981
2981
  var ReceiverSensitivity = /** @class */ (function (_super) {
2982
- tslib_1.__extends(ReceiverSensitivity, _super);
2982
+ (0, tslib_1.__extends)(ReceiverSensitivity, _super);
2983
2983
  function ReceiverSensitivity() {
2984
2984
  var _this = _super.call(this, "Receiver Sensitivity", ReceiverSensitivity.UUID, {
2985
2985
  format: "int" /* INT */,
@@ -2997,7 +2997,7 @@ Characteristic_1.Characteristic.ReceiverSensitivity = ReceiverSensitivity;
2997
2997
  * Characteristic "Recording Audio Active"
2998
2998
  */
2999
2999
  var RecordingAudioActive = /** @class */ (function (_super) {
3000
- tslib_1.__extends(RecordingAudioActive, _super);
3000
+ (0, tslib_1.__extends)(RecordingAudioActive, _super);
3001
3001
  function RecordingAudioActive() {
3002
3002
  var _this = _super.call(this, "Recording Audio Active", RecordingAudioActive.UUID, {
3003
3003
  format: "uint8" /* UINT8 */,
@@ -3018,7 +3018,7 @@ Characteristic_1.Characteristic.RecordingAudioActive = RecordingAudioActive;
3018
3018
  * Characteristic "Relative Humidity Dehumidifier Threshold"
3019
3019
  */
3020
3020
  var RelativeHumidityDehumidifierThreshold = /** @class */ (function (_super) {
3021
- tslib_1.__extends(RelativeHumidityDehumidifierThreshold, _super);
3021
+ (0, tslib_1.__extends)(RelativeHumidityDehumidifierThreshold, _super);
3022
3022
  function RelativeHumidityDehumidifierThreshold() {
3023
3023
  var _this = _super.call(this, "Relative Humidity Dehumidifier Threshold", RelativeHumidityDehumidifierThreshold.UUID, {
3024
3024
  format: "float" /* FLOAT */,
@@ -3040,7 +3040,7 @@ Characteristic_1.Characteristic.RelativeHumidityDehumidifierThreshold = Relative
3040
3040
  * Characteristic "Relative Humidity Humidifier Threshold"
3041
3041
  */
3042
3042
  var RelativeHumidityHumidifierThreshold = /** @class */ (function (_super) {
3043
- tslib_1.__extends(RelativeHumidityHumidifierThreshold, _super);
3043
+ (0, tslib_1.__extends)(RelativeHumidityHumidifierThreshold, _super);
3044
3044
  function RelativeHumidityHumidifierThreshold() {
3045
3045
  var _this = _super.call(this, "Relative Humidity Humidifier Threshold", RelativeHumidityHumidifierThreshold.UUID, {
3046
3046
  format: "float" /* FLOAT */,
@@ -3062,7 +3062,7 @@ Characteristic_1.Characteristic.RelativeHumidityHumidifierThreshold = RelativeHu
3062
3062
  * Characteristic "Relay Control Point"
3063
3063
  */
3064
3064
  var RelayControlPoint = /** @class */ (function (_super) {
3065
- tslib_1.__extends(RelayControlPoint, _super);
3065
+ (0, tslib_1.__extends)(RelayControlPoint, _super);
3066
3066
  function RelayControlPoint() {
3067
3067
  var _this = _super.call(this, "Relay Control Point", RelayControlPoint.UUID, {
3068
3068
  format: "tlv8" /* TLV8 */,
@@ -3080,7 +3080,7 @@ Characteristic_1.Characteristic.RelayControlPoint = RelayControlPoint;
3080
3080
  * Characteristic "Relay Enabled"
3081
3081
  */
3082
3082
  var RelayEnabled = /** @class */ (function (_super) {
3083
- tslib_1.__extends(RelayEnabled, _super);
3083
+ (0, tslib_1.__extends)(RelayEnabled, _super);
3084
3084
  function RelayEnabled() {
3085
3085
  var _this = _super.call(this, "Relay Enabled", RelayEnabled.UUID, {
3086
3086
  format: "bool" /* BOOL */,
@@ -3098,7 +3098,7 @@ Characteristic_1.Characteristic.RelayEnabled = RelayEnabled;
3098
3098
  * Characteristic "Relay State"
3099
3099
  */
3100
3100
  var RelayState = /** @class */ (function (_super) {
3101
- tslib_1.__extends(RelayState, _super);
3101
+ (0, tslib_1.__extends)(RelayState, _super);
3102
3102
  function RelayState() {
3103
3103
  var _this = _super.call(this, "Relay State", RelayState.UUID, {
3104
3104
  format: "uint8" /* UINT8 */,
@@ -3119,7 +3119,7 @@ Characteristic_1.Characteristic.RelayState = RelayState;
3119
3119
  * Characteristic "Remaining Duration"
3120
3120
  */
3121
3121
  var RemainingDuration = /** @class */ (function (_super) {
3122
- tslib_1.__extends(RemainingDuration, _super);
3122
+ (0, tslib_1.__extends)(RemainingDuration, _super);
3123
3123
  function RemainingDuration() {
3124
3124
  var _this = _super.call(this, "Remaining Duration", RemainingDuration.UUID, {
3125
3125
  format: "uint32" /* UINT32 */,
@@ -3141,7 +3141,7 @@ Characteristic_1.Characteristic.RemainingDuration = RemainingDuration;
3141
3141
  * Characteristic "Remote Key"
3142
3142
  */
3143
3143
  var RemoteKey = /** @class */ (function (_super) {
3144
- tslib_1.__extends(RemoteKey, _super);
3144
+ (0, tslib_1.__extends)(RemoteKey, _super);
3145
3145
  function RemoteKey() {
3146
3146
  var _this = _super.call(this, "Remote Key", RemoteKey.UUID, {
3147
3147
  format: "uint8" /* UINT8 */,
@@ -3176,7 +3176,7 @@ Characteristic_1.Characteristic.RemoteKey = RemoteKey;
3176
3176
  * Characteristic "Reset Filter Indication"
3177
3177
  */
3178
3178
  var ResetFilterIndication = /** @class */ (function (_super) {
3179
- tslib_1.__extends(ResetFilterIndication, _super);
3179
+ (0, tslib_1.__extends)(ResetFilterIndication, _super);
3180
3180
  function ResetFilterIndication() {
3181
3181
  var _this = _super.call(this, "Reset Filter Indication", ResetFilterIndication.UUID, {
3182
3182
  format: "uint8" /* UINT8 */,
@@ -3197,7 +3197,7 @@ Characteristic_1.Characteristic.ResetFilterIndication = ResetFilterIndication;
3197
3197
  * Characteristic "Rotation Direction"
3198
3198
  */
3199
3199
  var RotationDirection = /** @class */ (function (_super) {
3200
- tslib_1.__extends(RotationDirection, _super);
3200
+ (0, tslib_1.__extends)(RotationDirection, _super);
3201
3201
  function RotationDirection() {
3202
3202
  var _this = _super.call(this, "Rotation Direction", RotationDirection.UUID, {
3203
3203
  format: "int" /* INT */,
@@ -3221,7 +3221,7 @@ Characteristic_1.Characteristic.RotationDirection = RotationDirection;
3221
3221
  * Characteristic "Rotation Speed"
3222
3222
  */
3223
3223
  var RotationSpeed = /** @class */ (function (_super) {
3224
- tslib_1.__extends(RotationSpeed, _super);
3224
+ (0, tslib_1.__extends)(RotationSpeed, _super);
3225
3225
  function RotationSpeed() {
3226
3226
  var _this = _super.call(this, "Rotation Speed", RotationSpeed.UUID, {
3227
3227
  format: "float" /* FLOAT */,
@@ -3243,7 +3243,7 @@ Characteristic_1.Characteristic.RotationSpeed = RotationSpeed;
3243
3243
  * Characteristic "Router Status"
3244
3244
  */
3245
3245
  var RouterStatus = /** @class */ (function (_super) {
3246
- tslib_1.__extends(RouterStatus, _super);
3246
+ (0, tslib_1.__extends)(RouterStatus, _super);
3247
3247
  function RouterStatus() {
3248
3248
  var _this = _super.call(this, "Router Status", RouterStatus.UUID, {
3249
3249
  format: "uint8" /* UINT8 */,
@@ -3266,7 +3266,7 @@ Characteristic_1.Characteristic.RouterStatus = RouterStatus;
3266
3266
  * Characteristic "Saturation"
3267
3267
  */
3268
3268
  var Saturation = /** @class */ (function (_super) {
3269
- tslib_1.__extends(Saturation, _super);
3269
+ (0, tslib_1.__extends)(Saturation, _super);
3270
3270
  function Saturation() {
3271
3271
  var _this = _super.call(this, "Saturation", Saturation.UUID, {
3272
3272
  format: "float" /* FLOAT */,
@@ -3288,7 +3288,7 @@ Characteristic_1.Characteristic.Saturation = Saturation;
3288
3288
  * Characteristic "Security System Alarm Type"
3289
3289
  */
3290
3290
  var SecuritySystemAlarmType = /** @class */ (function (_super) {
3291
- tslib_1.__extends(SecuritySystemAlarmType, _super);
3291
+ (0, tslib_1.__extends)(SecuritySystemAlarmType, _super);
3292
3292
  function SecuritySystemAlarmType() {
3293
3293
  var _this = _super.call(this, "Security System Alarm Type", SecuritySystemAlarmType.UUID, {
3294
3294
  format: "uint8" /* UINT8 */,
@@ -3309,7 +3309,7 @@ Characteristic_1.Characteristic.SecuritySystemAlarmType = SecuritySystemAlarmTyp
3309
3309
  * Characteristic "Security System Current State"
3310
3310
  */
3311
3311
  var SecuritySystemCurrentState = /** @class */ (function (_super) {
3312
- tslib_1.__extends(SecuritySystemCurrentState, _super);
3312
+ (0, tslib_1.__extends)(SecuritySystemCurrentState, _super);
3313
3313
  function SecuritySystemCurrentState() {
3314
3314
  var _this = _super.call(this, "Security System Current State", SecuritySystemCurrentState.UUID, {
3315
3315
  format: "uint8" /* UINT8 */,
@@ -3336,7 +3336,7 @@ Characteristic_1.Characteristic.SecuritySystemCurrentState = SecuritySystemCurre
3336
3336
  * Characteristic "Security System Target State"
3337
3337
  */
3338
3338
  var SecuritySystemTargetState = /** @class */ (function (_super) {
3339
- tslib_1.__extends(SecuritySystemTargetState, _super);
3339
+ (0, tslib_1.__extends)(SecuritySystemTargetState, _super);
3340
3340
  function SecuritySystemTargetState() {
3341
3341
  var _this = _super.call(this, "Security System Target State", SecuritySystemTargetState.UUID, {
3342
3342
  format: "uint8" /* UINT8 */,
@@ -3362,7 +3362,7 @@ Characteristic_1.Characteristic.SecuritySystemTargetState = SecuritySystemTarget
3362
3362
  * Characteristic "Selected Audio Stream Configuration"
3363
3363
  */
3364
3364
  var SelectedAudioStreamConfiguration = /** @class */ (function (_super) {
3365
- tslib_1.__extends(SelectedAudioStreamConfiguration, _super);
3365
+ (0, tslib_1.__extends)(SelectedAudioStreamConfiguration, _super);
3366
3366
  function SelectedAudioStreamConfiguration() {
3367
3367
  var _this = _super.call(this, "Selected Audio Stream Configuration", SelectedAudioStreamConfiguration.UUID, {
3368
3368
  format: "tlv8" /* TLV8 */,
@@ -3380,7 +3380,7 @@ Characteristic_1.Characteristic.SelectedAudioStreamConfiguration = SelectedAudio
3380
3380
  * Characteristic "Selected Camera Recording Configuration"
3381
3381
  */
3382
3382
  var SelectedCameraRecordingConfiguration = /** @class */ (function (_super) {
3383
- tslib_1.__extends(SelectedCameraRecordingConfiguration, _super);
3383
+ (0, tslib_1.__extends)(SelectedCameraRecordingConfiguration, _super);
3384
3384
  function SelectedCameraRecordingConfiguration() {
3385
3385
  var _this = _super.call(this, "Selected Camera Recording Configuration", SelectedCameraRecordingConfiguration.UUID, {
3386
3386
  format: "tlv8" /* TLV8 */,
@@ -3398,7 +3398,7 @@ Characteristic_1.Characteristic.SelectedCameraRecordingConfiguration = SelectedC
3398
3398
  * Characteristic "Selected Diagnostics Modes"
3399
3399
  */
3400
3400
  var SelectedDiagnosticsModes = /** @class */ (function (_super) {
3401
- tslib_1.__extends(SelectedDiagnosticsModes, _super);
3401
+ (0, tslib_1.__extends)(SelectedDiagnosticsModes, _super);
3402
3402
  function SelectedDiagnosticsModes() {
3403
3403
  var _this = _super.call(this, "Selected Diagnostics Modes", SelectedDiagnosticsModes.UUID, {
3404
3404
  format: "uint32" /* UINT32 */,
@@ -3416,7 +3416,7 @@ Characteristic_1.Characteristic.SelectedDiagnosticsModes = SelectedDiagnosticsMo
3416
3416
  * Characteristic "Selected RTP Stream Configuration"
3417
3417
  */
3418
3418
  var SelectedRTPStreamConfiguration = /** @class */ (function (_super) {
3419
- tslib_1.__extends(SelectedRTPStreamConfiguration, _super);
3419
+ (0, tslib_1.__extends)(SelectedRTPStreamConfiguration, _super);
3420
3420
  function SelectedRTPStreamConfiguration() {
3421
3421
  var _this = _super.call(this, "Selected RTP Stream Configuration", SelectedRTPStreamConfiguration.UUID, {
3422
3422
  format: "tlv8" /* TLV8 */,
@@ -3434,7 +3434,7 @@ Characteristic_1.Characteristic.SelectedRTPStreamConfiguration = SelectedRTPStre
3434
3434
  * Characteristic "Serial Number"
3435
3435
  */
3436
3436
  var SerialNumber = /** @class */ (function (_super) {
3437
- tslib_1.__extends(SerialNumber, _super);
3437
+ (0, tslib_1.__extends)(SerialNumber, _super);
3438
3438
  function SerialNumber() {
3439
3439
  var _this = _super.call(this, "Serial Number", SerialNumber.UUID, {
3440
3440
  format: "string" /* STRING */,
@@ -3453,7 +3453,7 @@ Characteristic_1.Characteristic.SerialNumber = SerialNumber;
3453
3453
  * Characteristic "Service Label Index"
3454
3454
  */
3455
3455
  var ServiceLabelIndex = /** @class */ (function (_super) {
3456
- tslib_1.__extends(ServiceLabelIndex, _super);
3456
+ (0, tslib_1.__extends)(ServiceLabelIndex, _super);
3457
3457
  function ServiceLabelIndex() {
3458
3458
  var _this = _super.call(this, "Service Label Index", ServiceLabelIndex.UUID, {
3459
3459
  format: "uint8" /* UINT8 */,
@@ -3474,7 +3474,7 @@ Characteristic_1.Characteristic.ServiceLabelIndex = ServiceLabelIndex;
3474
3474
  * Characteristic "Service Label Namespace"
3475
3475
  */
3476
3476
  var ServiceLabelNamespace = /** @class */ (function (_super) {
3477
- tslib_1.__extends(ServiceLabelNamespace, _super);
3477
+ (0, tslib_1.__extends)(ServiceLabelNamespace, _super);
3478
3478
  function ServiceLabelNamespace() {
3479
3479
  var _this = _super.call(this, "Service Label Namespace", ServiceLabelNamespace.UUID, {
3480
3480
  format: "uint8" /* UINT8 */,
@@ -3498,7 +3498,7 @@ Characteristic_1.Characteristic.ServiceLabelNamespace = ServiceLabelNamespace;
3498
3498
  * Characteristic "Set Duration"
3499
3499
  */
3500
3500
  var SetDuration = /** @class */ (function (_super) {
3501
- tslib_1.__extends(SetDuration, _super);
3501
+ (0, tslib_1.__extends)(SetDuration, _super);
3502
3502
  function SetDuration() {
3503
3503
  var _this = _super.call(this, "Set Duration", SetDuration.UUID, {
3504
3504
  format: "uint32" /* UINT32 */,
@@ -3520,7 +3520,7 @@ Characteristic_1.Characteristic.SetDuration = SetDuration;
3520
3520
  * Characteristic "Setup Data Stream Transport"
3521
3521
  */
3522
3522
  var SetupDataStreamTransport = /** @class */ (function (_super) {
3523
- tslib_1.__extends(SetupDataStreamTransport, _super);
3523
+ (0, tslib_1.__extends)(SetupDataStreamTransport, _super);
3524
3524
  function SetupDataStreamTransport() {
3525
3525
  var _this = _super.call(this, "Setup Data Stream Transport", SetupDataStreamTransport.UUID, {
3526
3526
  format: "tlv8" /* TLV8 */,
@@ -3538,7 +3538,7 @@ Characteristic_1.Characteristic.SetupDataStreamTransport = SetupDataStreamTransp
3538
3538
  * Characteristic "Setup Endpoints"
3539
3539
  */
3540
3540
  var SetupEndpoints = /** @class */ (function (_super) {
3541
- tslib_1.__extends(SetupEndpoints, _super);
3541
+ (0, tslib_1.__extends)(SetupEndpoints, _super);
3542
3542
  function SetupEndpoints() {
3543
3543
  var _this = _super.call(this, "Setup Endpoints", SetupEndpoints.UUID, {
3544
3544
  format: "tlv8" /* TLV8 */,
@@ -3557,7 +3557,7 @@ Characteristic_1.Characteristic.SetupEndpoints = SetupEndpoints;
3557
3557
  * @since iOS 13.4
3558
3558
  */
3559
3559
  var SetupTransferTransport = /** @class */ (function (_super) {
3560
- tslib_1.__extends(SetupTransferTransport, _super);
3560
+ (0, tslib_1.__extends)(SetupTransferTransport, _super);
3561
3561
  function SetupTransferTransport() {
3562
3562
  var _this = _super.call(this, "Setup Transfer Transport", SetupTransferTransport.UUID, {
3563
3563
  format: "tlv8" /* TLV8 */,
@@ -3576,7 +3576,7 @@ Characteristic_1.Characteristic.SetupTransferTransport = SetupTransferTransport;
3576
3576
  * @since iOS 14
3577
3577
  */
3578
3578
  var SignalToNoiseRatio = /** @class */ (function (_super) {
3579
- tslib_1.__extends(SignalToNoiseRatio, _super);
3579
+ (0, tslib_1.__extends)(SignalToNoiseRatio, _super);
3580
3580
  function SignalToNoiseRatio() {
3581
3581
  var _this = _super.call(this, "Signal To Noise Ratio", SignalToNoiseRatio.UUID, {
3582
3582
  format: "int" /* INT */,
@@ -3594,7 +3594,7 @@ Characteristic_1.Characteristic.SignalToNoiseRatio = SignalToNoiseRatio;
3594
3594
  * Characteristic "Siri Enable"
3595
3595
  */
3596
3596
  var SiriEnable = /** @class */ (function (_super) {
3597
- tslib_1.__extends(SiriEnable, _super);
3597
+ (0, tslib_1.__extends)(SiriEnable, _super);
3598
3598
  function SiriEnable() {
3599
3599
  var _this = _super.call(this, "Siri Enable", SiriEnable.UUID, {
3600
3600
  format: "uint8" /* UINT8 */,
@@ -3614,7 +3614,7 @@ Characteristic_1.Characteristic.SiriEnable = SiriEnable;
3614
3614
  * Characteristic "Siri Endpoint Session Status"
3615
3615
  */
3616
3616
  var SiriEndpointSessionStatus = /** @class */ (function (_super) {
3617
- tslib_1.__extends(SiriEndpointSessionStatus, _super);
3617
+ (0, tslib_1.__extends)(SiriEndpointSessionStatus, _super);
3618
3618
  function SiriEndpointSessionStatus() {
3619
3619
  var _this = _super.call(this, "Siri Endpoint Session Status", SiriEndpointSessionStatus.UUID, {
3620
3620
  format: "tlv8" /* TLV8 */,
@@ -3632,7 +3632,7 @@ Characteristic_1.Characteristic.SiriEndpointSessionStatus = SiriEndpointSessionS
3632
3632
  * Characteristic "Siri Engine Version"
3633
3633
  */
3634
3634
  var SiriEngineVersion = /** @class */ (function (_super) {
3635
- tslib_1.__extends(SiriEngineVersion, _super);
3635
+ (0, tslib_1.__extends)(SiriEngineVersion, _super);
3636
3636
  function SiriEngineVersion() {
3637
3637
  var _this = _super.call(this, "Siri Engine Version", SiriEngineVersion.UUID, {
3638
3638
  format: "string" /* STRING */,
@@ -3650,7 +3650,7 @@ Characteristic_1.Characteristic.SiriEngineVersion = SiriEngineVersion;
3650
3650
  * Characteristic "Siri Input Type"
3651
3651
  */
3652
3652
  var SiriInputType = /** @class */ (function (_super) {
3653
- tslib_1.__extends(SiriInputType, _super);
3653
+ (0, tslib_1.__extends)(SiriInputType, _super);
3654
3654
  function SiriInputType() {
3655
3655
  var _this = _super.call(this, "Siri Input Type", SiriInputType.UUID, {
3656
3656
  format: "uint8" /* UINT8 */,
@@ -3672,7 +3672,7 @@ Characteristic_1.Characteristic.SiriInputType = SiriInputType;
3672
3672
  * Characteristic "Siri Light On Use"
3673
3673
  */
3674
3674
  var SiriLightOnUse = /** @class */ (function (_super) {
3675
- tslib_1.__extends(SiriLightOnUse, _super);
3675
+ (0, tslib_1.__extends)(SiriLightOnUse, _super);
3676
3676
  function SiriLightOnUse() {
3677
3677
  var _this = _super.call(this, "Siri Light On Use", SiriLightOnUse.UUID, {
3678
3678
  format: "uint8" /* UINT8 */,
@@ -3692,7 +3692,7 @@ Characteristic_1.Characteristic.SiriLightOnUse = SiriLightOnUse;
3692
3692
  * Characteristic "Siri Listening"
3693
3693
  */
3694
3694
  var SiriListening = /** @class */ (function (_super) {
3695
- tslib_1.__extends(SiriListening, _super);
3695
+ (0, tslib_1.__extends)(SiriListening, _super);
3696
3696
  function SiriListening() {
3697
3697
  var _this = _super.call(this, "Siri Listening", SiriListening.UUID, {
3698
3698
  format: "uint8" /* UINT8 */,
@@ -3712,7 +3712,7 @@ Characteristic_1.Characteristic.SiriListening = SiriListening;
3712
3712
  * Characteristic "Siri Touch To Use"
3713
3713
  */
3714
3714
  var SiriTouchToUse = /** @class */ (function (_super) {
3715
- tslib_1.__extends(SiriTouchToUse, _super);
3715
+ (0, tslib_1.__extends)(SiriTouchToUse, _super);
3716
3716
  function SiriTouchToUse() {
3717
3717
  var _this = _super.call(this, "Siri Touch To Use", SiriTouchToUse.UUID, {
3718
3718
  format: "uint8" /* UINT8 */,
@@ -3732,7 +3732,7 @@ Characteristic_1.Characteristic.SiriTouchToUse = SiriTouchToUse;
3732
3732
  * Characteristic "Slat Type"
3733
3733
  */
3734
3734
  var SlatType = /** @class */ (function (_super) {
3735
- tslib_1.__extends(SlatType, _super);
3735
+ (0, tslib_1.__extends)(SlatType, _super);
3736
3736
  function SlatType() {
3737
3737
  var _this = _super.call(this, "Slat Type", SlatType.UUID, {
3738
3738
  format: "uint8" /* UINT8 */,
@@ -3756,7 +3756,7 @@ Characteristic_1.Characteristic.SlatType = SlatType;
3756
3756
  * Characteristic "Sleep Discovery Mode"
3757
3757
  */
3758
3758
  var SleepDiscoveryMode = /** @class */ (function (_super) {
3759
- tslib_1.__extends(SleepDiscoveryMode, _super);
3759
+ (0, tslib_1.__extends)(SleepDiscoveryMode, _super);
3760
3760
  function SleepDiscoveryMode() {
3761
3761
  var _this = _super.call(this, "Sleep Discovery Mode", SleepDiscoveryMode.UUID, {
3762
3762
  format: "uint8" /* UINT8 */,
@@ -3781,7 +3781,7 @@ Characteristic_1.Characteristic.SleepDiscoveryMode = SleepDiscoveryMode;
3781
3781
  * @since iOS 14
3782
3782
  */
3783
3783
  var SleepInterval = /** @class */ (function (_super) {
3784
- tslib_1.__extends(SleepInterval, _super);
3784
+ (0, tslib_1.__extends)(SleepInterval, _super);
3785
3785
  function SleepInterval() {
3786
3786
  var _this = _super.call(this, "Sleep Interval", SleepInterval.UUID, {
3787
3787
  format: "uint32" /* UINT32 */,
@@ -3801,7 +3801,7 @@ Characteristic_1.Characteristic.SleepInterval = SleepInterval;
3801
3801
  * Characteristic "Smoke Detected"
3802
3802
  */
3803
3803
  var SmokeDetected = /** @class */ (function (_super) {
3804
- tslib_1.__extends(SmokeDetected, _super);
3804
+ (0, tslib_1.__extends)(SmokeDetected, _super);
3805
3805
  function SmokeDetected() {
3806
3806
  var _this = _super.call(this, "Smoke Detected", SmokeDetected.UUID, {
3807
3807
  format: "uint8" /* UINT8 */,
@@ -3825,7 +3825,7 @@ Characteristic_1.Characteristic.SmokeDetected = SmokeDetected;
3825
3825
  * Characteristic "Software Revision"
3826
3826
  */
3827
3827
  var SoftwareRevision = /** @class */ (function (_super) {
3828
- tslib_1.__extends(SoftwareRevision, _super);
3828
+ (0, tslib_1.__extends)(SoftwareRevision, _super);
3829
3829
  function SoftwareRevision() {
3830
3830
  var _this = _super.call(this, "Software Revision", SoftwareRevision.UUID, {
3831
3831
  format: "string" /* STRING */,
@@ -3843,7 +3843,7 @@ Characteristic_1.Characteristic.SoftwareRevision = SoftwareRevision;
3843
3843
  * Characteristic "Staged Firmware Version"
3844
3844
  */
3845
3845
  var StagedFirmwareVersion = /** @class */ (function (_super) {
3846
- tslib_1.__extends(StagedFirmwareVersion, _super);
3846
+ (0, tslib_1.__extends)(StagedFirmwareVersion, _super);
3847
3847
  function StagedFirmwareVersion() {
3848
3848
  var _this = _super.call(this, "Staged Firmware Version", StagedFirmwareVersion.UUID, {
3849
3849
  format: "string" /* STRING */,
@@ -3861,7 +3861,7 @@ Characteristic_1.Characteristic.StagedFirmwareVersion = StagedFirmwareVersion;
3861
3861
  * Characteristic "Status Active"
3862
3862
  */
3863
3863
  var StatusActive = /** @class */ (function (_super) {
3864
- tslib_1.__extends(StatusActive, _super);
3864
+ (0, tslib_1.__extends)(StatusActive, _super);
3865
3865
  function StatusActive() {
3866
3866
  var _this = _super.call(this, "Status Active", StatusActive.UUID, {
3867
3867
  format: "bool" /* BOOL */,
@@ -3879,7 +3879,7 @@ Characteristic_1.Characteristic.StatusActive = StatusActive;
3879
3879
  * Characteristic "Status Fault"
3880
3880
  */
3881
3881
  var StatusFault = /** @class */ (function (_super) {
3882
- tslib_1.__extends(StatusFault, _super);
3882
+ (0, tslib_1.__extends)(StatusFault, _super);
3883
3883
  function StatusFault() {
3884
3884
  var _this = _super.call(this, "Status Fault", StatusFault.UUID, {
3885
3885
  format: "uint8" /* UINT8 */,
@@ -3903,7 +3903,7 @@ Characteristic_1.Characteristic.StatusFault = StatusFault;
3903
3903
  * Characteristic "Status Jammed"
3904
3904
  */
3905
3905
  var StatusJammed = /** @class */ (function (_super) {
3906
- tslib_1.__extends(StatusJammed, _super);
3906
+ (0, tslib_1.__extends)(StatusJammed, _super);
3907
3907
  function StatusJammed() {
3908
3908
  var _this = _super.call(this, "Status Jammed", StatusJammed.UUID, {
3909
3909
  format: "uint8" /* UINT8 */,
@@ -3927,7 +3927,7 @@ Characteristic_1.Characteristic.StatusJammed = StatusJammed;
3927
3927
  * Characteristic "Status Low Battery"
3928
3928
  */
3929
3929
  var StatusLowBattery = /** @class */ (function (_super) {
3930
- tslib_1.__extends(StatusLowBattery, _super);
3930
+ (0, tslib_1.__extends)(StatusLowBattery, _super);
3931
3931
  function StatusLowBattery() {
3932
3932
  var _this = _super.call(this, "Status Low Battery", StatusLowBattery.UUID, {
3933
3933
  format: "uint8" /* UINT8 */,
@@ -3951,7 +3951,7 @@ Characteristic_1.Characteristic.StatusLowBattery = StatusLowBattery;
3951
3951
  * Characteristic "Status Tampered"
3952
3952
  */
3953
3953
  var StatusTampered = /** @class */ (function (_super) {
3954
- tslib_1.__extends(StatusTampered, _super);
3954
+ (0, tslib_1.__extends)(StatusTampered, _super);
3955
3955
  function StatusTampered() {
3956
3956
  var _this = _super.call(this, "Status Tampered", StatusTampered.UUID, {
3957
3957
  format: "uint8" /* UINT8 */,
@@ -3975,7 +3975,7 @@ Characteristic_1.Characteristic.StatusTampered = StatusTampered;
3975
3975
  * Characteristic "Streaming Status"
3976
3976
  */
3977
3977
  var StreamingStatus = /** @class */ (function (_super) {
3978
- tslib_1.__extends(StreamingStatus, _super);
3978
+ (0, tslib_1.__extends)(StreamingStatus, _super);
3979
3979
  function StreamingStatus() {
3980
3980
  var _this = _super.call(this, "Streaming Status", StreamingStatus.UUID, {
3981
3981
  format: "tlv8" /* TLV8 */,
@@ -3993,7 +3993,7 @@ Characteristic_1.Characteristic.StreamingStatus = StreamingStatus;
3993
3993
  * Characteristic "Sulphur Dioxide Density"
3994
3994
  */
3995
3995
  var SulphurDioxideDensity = /** @class */ (function (_super) {
3996
- tslib_1.__extends(SulphurDioxideDensity, _super);
3996
+ (0, tslib_1.__extends)(SulphurDioxideDensity, _super);
3997
3997
  function SulphurDioxideDensity() {
3998
3998
  var _this = _super.call(this, "Sulphur Dioxide Density", SulphurDioxideDensity.UUID, {
3999
3999
  format: "float" /* FLOAT */,
@@ -4014,7 +4014,7 @@ Characteristic_1.Characteristic.SulphurDioxideDensity = SulphurDioxideDensity;
4014
4014
  * Characteristic "Supported Asset Types"
4015
4015
  */
4016
4016
  var SupportedAssetTypes = /** @class */ (function (_super) {
4017
- tslib_1.__extends(SupportedAssetTypes, _super);
4017
+ (0, tslib_1.__extends)(SupportedAssetTypes, _super);
4018
4018
  function SupportedAssetTypes() {
4019
4019
  var _this = _super.call(this, "Supported Asset Types", SupportedAssetTypes.UUID, {
4020
4020
  format: "uint32" /* UINT32 */,
@@ -4032,7 +4032,7 @@ Characteristic_1.Characteristic.SupportedAssetTypes = SupportedAssetTypes;
4032
4032
  * Characteristic "Supported Audio Recording Configuration"
4033
4033
  */
4034
4034
  var SupportedAudioRecordingConfiguration = /** @class */ (function (_super) {
4035
- tslib_1.__extends(SupportedAudioRecordingConfiguration, _super);
4035
+ (0, tslib_1.__extends)(SupportedAudioRecordingConfiguration, _super);
4036
4036
  function SupportedAudioRecordingConfiguration() {
4037
4037
  var _this = _super.call(this, "Supported Audio Recording Configuration", SupportedAudioRecordingConfiguration.UUID, {
4038
4038
  format: "tlv8" /* TLV8 */,
@@ -4050,7 +4050,7 @@ Characteristic_1.Characteristic.SupportedAudioRecordingConfiguration = Supported
4050
4050
  * Characteristic "Supported Audio Stream Configuration"
4051
4051
  */
4052
4052
  var SupportedAudioStreamConfiguration = /** @class */ (function (_super) {
4053
- tslib_1.__extends(SupportedAudioStreamConfiguration, _super);
4053
+ (0, tslib_1.__extends)(SupportedAudioStreamConfiguration, _super);
4054
4054
  function SupportedAudioStreamConfiguration() {
4055
4055
  var _this = _super.call(this, "Supported Audio Stream Configuration", SupportedAudioStreamConfiguration.UUID, {
4056
4056
  format: "tlv8" /* TLV8 */,
@@ -4068,7 +4068,7 @@ Characteristic_1.Characteristic.SupportedAudioStreamConfiguration = SupportedAud
4068
4068
  * Characteristic "Supported Camera Recording Configuration"
4069
4069
  */
4070
4070
  var SupportedCameraRecordingConfiguration = /** @class */ (function (_super) {
4071
- tslib_1.__extends(SupportedCameraRecordingConfiguration, _super);
4071
+ (0, tslib_1.__extends)(SupportedCameraRecordingConfiguration, _super);
4072
4072
  function SupportedCameraRecordingConfiguration() {
4073
4073
  var _this = _super.call(this, "Supported Camera Recording Configuration", SupportedCameraRecordingConfiguration.UUID, {
4074
4074
  format: "tlv8" /* TLV8 */,
@@ -4087,7 +4087,7 @@ Characteristic_1.Characteristic.SupportedCameraRecordingConfiguration = Supporte
4087
4087
  * @since iOS 14
4088
4088
  */
4089
4089
  var SupportedCharacteristicValueTransitionConfiguration = /** @class */ (function (_super) {
4090
- tslib_1.__extends(SupportedCharacteristicValueTransitionConfiguration, _super);
4090
+ (0, tslib_1.__extends)(SupportedCharacteristicValueTransitionConfiguration, _super);
4091
4091
  function SupportedCharacteristicValueTransitionConfiguration() {
4092
4092
  var _this = _super.call(this, "Supported Characteristic Value Transition Configuration", SupportedCharacteristicValueTransitionConfiguration.UUID, {
4093
4093
  format: "tlv8" /* TLV8 */,
@@ -4105,7 +4105,7 @@ Characteristic_1.Characteristic.SupportedCharacteristicValueTransitionConfigurat
4105
4105
  * Characteristic "Supported Data Stream Transport Configuration"
4106
4106
  */
4107
4107
  var SupportedDataStreamTransportConfiguration = /** @class */ (function (_super) {
4108
- tslib_1.__extends(SupportedDataStreamTransportConfiguration, _super);
4108
+ (0, tslib_1.__extends)(SupportedDataStreamTransportConfiguration, _super);
4109
4109
  function SupportedDataStreamTransportConfiguration() {
4110
4110
  var _this = _super.call(this, "Supported Data Stream Transport Configuration", SupportedDataStreamTransportConfiguration.UUID, {
4111
4111
  format: "tlv8" /* TLV8 */,
@@ -4123,7 +4123,7 @@ Characteristic_1.Characteristic.SupportedDataStreamTransportConfiguration = Supp
4123
4123
  * Characteristic "Supported Diagnostics Modes"
4124
4124
  */
4125
4125
  var SupportedDiagnosticsModes = /** @class */ (function (_super) {
4126
- tslib_1.__extends(SupportedDiagnosticsModes, _super);
4126
+ (0, tslib_1.__extends)(SupportedDiagnosticsModes, _super);
4127
4127
  function SupportedDiagnosticsModes() {
4128
4128
  var _this = _super.call(this, "Supported Diagnostics Modes", SupportedDiagnosticsModes.UUID, {
4129
4129
  format: "uint32" /* UINT32 */,
@@ -4142,7 +4142,7 @@ Characteristic_1.Characteristic.SupportedDiagnosticsModes = SupportedDiagnostics
4142
4142
  * @since iOS 14
4143
4143
  */
4144
4144
  var SupportedDiagnosticsSnapshot = /** @class */ (function (_super) {
4145
- tslib_1.__extends(SupportedDiagnosticsSnapshot, _super);
4145
+ (0, tslib_1.__extends)(SupportedDiagnosticsSnapshot, _super);
4146
4146
  function SupportedDiagnosticsSnapshot() {
4147
4147
  var _this = _super.call(this, "Supported Diagnostics Snapshot", SupportedDiagnosticsSnapshot.UUID, {
4148
4148
  format: "tlv8" /* TLV8 */,
@@ -4160,7 +4160,7 @@ Characteristic_1.Characteristic.SupportedDiagnosticsSnapshot = SupportedDiagnost
4160
4160
  * Characteristic "Supported Firmware Update Configuration"
4161
4161
  */
4162
4162
  var SupportedFirmwareUpdateConfiguration = /** @class */ (function (_super) {
4163
- tslib_1.__extends(SupportedFirmwareUpdateConfiguration, _super);
4163
+ (0, tslib_1.__extends)(SupportedFirmwareUpdateConfiguration, _super);
4164
4164
  function SupportedFirmwareUpdateConfiguration() {
4165
4165
  var _this = _super.call(this, "Supported Firmware Update Configuration", SupportedFirmwareUpdateConfiguration.UUID, {
4166
4166
  format: "tlv8" /* TLV8 */,
@@ -4178,7 +4178,7 @@ Characteristic_1.Characteristic.SupportedFirmwareUpdateConfiguration = Supported
4178
4178
  * Characteristic "Supported Router Configuration"
4179
4179
  */
4180
4180
  var SupportedRouterConfiguration = /** @class */ (function (_super) {
4181
- tslib_1.__extends(SupportedRouterConfiguration, _super);
4181
+ (0, tslib_1.__extends)(SupportedRouterConfiguration, _super);
4182
4182
  function SupportedRouterConfiguration() {
4183
4183
  var _this = _super.call(this, "Supported Router Configuration", SupportedRouterConfiguration.UUID, {
4184
4184
  format: "tlv8" /* TLV8 */,
@@ -4196,7 +4196,7 @@ Characteristic_1.Characteristic.SupportedRouterConfiguration = SupportedRouterCo
4196
4196
  * Characteristic "Supported RTP Configuration"
4197
4197
  */
4198
4198
  var SupportedRTPConfiguration = /** @class */ (function (_super) {
4199
- tslib_1.__extends(SupportedRTPConfiguration, _super);
4199
+ (0, tslib_1.__extends)(SupportedRTPConfiguration, _super);
4200
4200
  function SupportedRTPConfiguration() {
4201
4201
  var _this = _super.call(this, "Supported RTP Configuration", SupportedRTPConfiguration.UUID, {
4202
4202
  format: "tlv8" /* TLV8 */,
@@ -4215,7 +4215,7 @@ Characteristic_1.Characteristic.SupportedRTPConfiguration = SupportedRTPConfigur
4215
4215
  * @since iOS 13.4
4216
4216
  */
4217
4217
  var SupportedTransferTransportConfiguration = /** @class */ (function (_super) {
4218
- tslib_1.__extends(SupportedTransferTransportConfiguration, _super);
4218
+ (0, tslib_1.__extends)(SupportedTransferTransportConfiguration, _super);
4219
4219
  function SupportedTransferTransportConfiguration() {
4220
4220
  var _this = _super.call(this, "Supported Transfer Transport Configuration", SupportedTransferTransportConfiguration.UUID, {
4221
4221
  format: "tlv8" /* TLV8 */,
@@ -4233,7 +4233,7 @@ Characteristic_1.Characteristic.SupportedTransferTransportConfiguration = Suppor
4233
4233
  * Characteristic "Supported Video Recording Configuration"
4234
4234
  */
4235
4235
  var SupportedVideoRecordingConfiguration = /** @class */ (function (_super) {
4236
- tslib_1.__extends(SupportedVideoRecordingConfiguration, _super);
4236
+ (0, tslib_1.__extends)(SupportedVideoRecordingConfiguration, _super);
4237
4237
  function SupportedVideoRecordingConfiguration() {
4238
4238
  var _this = _super.call(this, "Supported Video Recording Configuration", SupportedVideoRecordingConfiguration.UUID, {
4239
4239
  format: "tlv8" /* TLV8 */,
@@ -4251,7 +4251,7 @@ Characteristic_1.Characteristic.SupportedVideoRecordingConfiguration = Supported
4251
4251
  * Characteristic "Supported Video Stream Configuration"
4252
4252
  */
4253
4253
  var SupportedVideoStreamConfiguration = /** @class */ (function (_super) {
4254
- tslib_1.__extends(SupportedVideoStreamConfiguration, _super);
4254
+ (0, tslib_1.__extends)(SupportedVideoStreamConfiguration, _super);
4255
4255
  function SupportedVideoStreamConfiguration() {
4256
4256
  var _this = _super.call(this, "Supported Video Stream Configuration", SupportedVideoStreamConfiguration.UUID, {
4257
4257
  format: "tlv8" /* TLV8 */,
@@ -4269,7 +4269,7 @@ Characteristic_1.Characteristic.SupportedVideoStreamConfiguration = SupportedVid
4269
4269
  * Characteristic "Swing Mode"
4270
4270
  */
4271
4271
  var SwingMode = /** @class */ (function (_super) {
4272
- tslib_1.__extends(SwingMode, _super);
4272
+ (0, tslib_1.__extends)(SwingMode, _super);
4273
4273
  function SwingMode() {
4274
4274
  var _this = _super.call(this, "Swing Mode", SwingMode.UUID, {
4275
4275
  format: "uint8" /* UINT8 */,
@@ -4293,7 +4293,7 @@ Characteristic_1.Characteristic.SwingMode = SwingMode;
4293
4293
  * Characteristic "Target Air Purifier State"
4294
4294
  */
4295
4295
  var TargetAirPurifierState = /** @class */ (function (_super) {
4296
- tslib_1.__extends(TargetAirPurifierState, _super);
4296
+ (0, tslib_1.__extends)(TargetAirPurifierState, _super);
4297
4297
  function TargetAirPurifierState() {
4298
4298
  var _this = _super.call(this, "Target Air Purifier State", TargetAirPurifierState.UUID, {
4299
4299
  format: "uint8" /* UINT8 */,
@@ -4318,7 +4318,7 @@ Characteristic_1.Characteristic.TargetAirPurifierState = TargetAirPurifierState;
4318
4318
  * @deprecated Removed and not used anymore
4319
4319
  */
4320
4320
  var TargetAirQuality = /** @class */ (function (_super) {
4321
- tslib_1.__extends(TargetAirQuality, _super);
4321
+ (0, tslib_1.__extends)(TargetAirQuality, _super);
4322
4322
  function TargetAirQuality() {
4323
4323
  var _this = _super.call(this, "Target Air Quality", TargetAirQuality.UUID, {
4324
4324
  format: "uint8" /* UINT8 */,
@@ -4343,7 +4343,7 @@ Characteristic_1.Characteristic.TargetAirQuality = TargetAirQuality;
4343
4343
  * Characteristic "Target Control List"
4344
4344
  */
4345
4345
  var TargetControlList = /** @class */ (function (_super) {
4346
- tslib_1.__extends(TargetControlList, _super);
4346
+ (0, tslib_1.__extends)(TargetControlList, _super);
4347
4347
  function TargetControlList() {
4348
4348
  var _this = _super.call(this, "Target Control List", TargetControlList.UUID, {
4349
4349
  format: "tlv8" /* TLV8 */,
@@ -4362,7 +4362,7 @@ Characteristic_1.Characteristic.TargetControlList = TargetControlList;
4362
4362
  * Characteristic "Target Control Supported Configuration"
4363
4363
  */
4364
4364
  var TargetControlSupportedConfiguration = /** @class */ (function (_super) {
4365
- tslib_1.__extends(TargetControlSupportedConfiguration, _super);
4365
+ (0, tslib_1.__extends)(TargetControlSupportedConfiguration, _super);
4366
4366
  function TargetControlSupportedConfiguration() {
4367
4367
  var _this = _super.call(this, "Target Control Supported Configuration", TargetControlSupportedConfiguration.UUID, {
4368
4368
  format: "tlv8" /* TLV8 */,
@@ -4380,7 +4380,7 @@ Characteristic_1.Characteristic.TargetControlSupportedConfiguration = TargetCont
4380
4380
  * Characteristic "Target Door State"
4381
4381
  */
4382
4382
  var TargetDoorState = /** @class */ (function (_super) {
4383
- tslib_1.__extends(TargetDoorState, _super);
4383
+ (0, tslib_1.__extends)(TargetDoorState, _super);
4384
4384
  function TargetDoorState() {
4385
4385
  var _this = _super.call(this, "Target Door State", TargetDoorState.UUID, {
4386
4386
  format: "uint8" /* UINT8 */,
@@ -4404,7 +4404,7 @@ Characteristic_1.Characteristic.TargetDoorState = TargetDoorState;
4404
4404
  * Characteristic "Target Fan State"
4405
4405
  */
4406
4406
  var TargetFanState = /** @class */ (function (_super) {
4407
- tslib_1.__extends(TargetFanState, _super);
4407
+ (0, tslib_1.__extends)(TargetFanState, _super);
4408
4408
  function TargetFanState() {
4409
4409
  var _this = _super.call(this, "Target Fan State", TargetFanState.UUID, {
4410
4410
  format: "uint8" /* UINT8 */,
@@ -4428,7 +4428,7 @@ Characteristic_1.Characteristic.TargetFanState = TargetFanState;
4428
4428
  * Characteristic "Target Heater-Cooler State"
4429
4429
  */
4430
4430
  var TargetHeaterCoolerState = /** @class */ (function (_super) {
4431
- tslib_1.__extends(TargetHeaterCoolerState, _super);
4431
+ (0, tslib_1.__extends)(TargetHeaterCoolerState, _super);
4432
4432
  function TargetHeaterCoolerState() {
4433
4433
  var _this = _super.call(this, "Target Heater-Cooler State", TargetHeaterCoolerState.UUID, {
4434
4434
  format: "uint8" /* UINT8 */,
@@ -4453,7 +4453,7 @@ Characteristic_1.Characteristic.TargetHeaterCoolerState = TargetHeaterCoolerStat
4453
4453
  * Characteristic "Target Heating Cooling State"
4454
4454
  */
4455
4455
  var TargetHeatingCoolingState = /** @class */ (function (_super) {
4456
- tslib_1.__extends(TargetHeatingCoolingState, _super);
4456
+ (0, tslib_1.__extends)(TargetHeatingCoolingState, _super);
4457
4457
  function TargetHeatingCoolingState() {
4458
4458
  var _this = _super.call(this, "Target Heating Cooling State", TargetHeatingCoolingState.UUID, {
4459
4459
  format: "uint8" /* UINT8 */,
@@ -4479,7 +4479,7 @@ Characteristic_1.Characteristic.TargetHeatingCoolingState = TargetHeatingCooling
4479
4479
  * Characteristic "Target Horizontal Tilt Angle"
4480
4480
  */
4481
4481
  var TargetHorizontalTiltAngle = /** @class */ (function (_super) {
4482
- tslib_1.__extends(TargetHorizontalTiltAngle, _super);
4482
+ (0, tslib_1.__extends)(TargetHorizontalTiltAngle, _super);
4483
4483
  function TargetHorizontalTiltAngle() {
4484
4484
  var _this = _super.call(this, "Target Horizontal Tilt Angle", TargetHorizontalTiltAngle.UUID, {
4485
4485
  format: "int" /* INT */,
@@ -4501,7 +4501,7 @@ Characteristic_1.Characteristic.TargetHorizontalTiltAngle = TargetHorizontalTilt
4501
4501
  * Characteristic "Target Humidifier-Dehumidifier State"
4502
4502
  */
4503
4503
  var TargetHumidifierDehumidifierState = /** @class */ (function (_super) {
4504
- tslib_1.__extends(TargetHumidifierDehumidifierState, _super);
4504
+ (0, tslib_1.__extends)(TargetHumidifierDehumidifierState, _super);
4505
4505
  function TargetHumidifierDehumidifierState() {
4506
4506
  var _this = _super.call(this, "Target Humidifier-Dehumidifier State", TargetHumidifierDehumidifierState.UUID, {
4507
4507
  format: "uint8" /* UINT8 */,
@@ -4530,7 +4530,7 @@ Characteristic_1.Characteristic.TargetHumidifierDehumidifierState = TargetHumidi
4530
4530
  * Characteristic "Target Media State"
4531
4531
  */
4532
4532
  var TargetMediaState = /** @class */ (function (_super) {
4533
- tslib_1.__extends(TargetMediaState, _super);
4533
+ (0, tslib_1.__extends)(TargetMediaState, _super);
4534
4534
  function TargetMediaState() {
4535
4535
  var _this = _super.call(this, "Target Media State", TargetMediaState.UUID, {
4536
4536
  format: "uint8" /* UINT8 */,
@@ -4555,7 +4555,7 @@ Characteristic_1.Characteristic.TargetMediaState = TargetMediaState;
4555
4555
  * Characteristic "Target Position"
4556
4556
  */
4557
4557
  var TargetPosition = /** @class */ (function (_super) {
4558
- tslib_1.__extends(TargetPosition, _super);
4558
+ (0, tslib_1.__extends)(TargetPosition, _super);
4559
4559
  function TargetPosition() {
4560
4560
  var _this = _super.call(this, "Target Position", TargetPosition.UUID, {
4561
4561
  format: "uint8" /* UINT8 */,
@@ -4577,7 +4577,7 @@ Characteristic_1.Characteristic.TargetPosition = TargetPosition;
4577
4577
  * Characteristic "Target Relative Humidity"
4578
4578
  */
4579
4579
  var TargetRelativeHumidity = /** @class */ (function (_super) {
4580
- tslib_1.__extends(TargetRelativeHumidity, _super);
4580
+ (0, tslib_1.__extends)(TargetRelativeHumidity, _super);
4581
4581
  function TargetRelativeHumidity() {
4582
4582
  var _this = _super.call(this, "Target Relative Humidity", TargetRelativeHumidity.UUID, {
4583
4583
  format: "float" /* FLOAT */,
@@ -4600,7 +4600,7 @@ Characteristic_1.Characteristic.TargetRelativeHumidity = TargetRelativeHumidity;
4600
4600
  * @deprecated Removed and not used anymore
4601
4601
  */
4602
4602
  var TargetSlatState = /** @class */ (function (_super) {
4603
- tslib_1.__extends(TargetSlatState, _super);
4603
+ (0, tslib_1.__extends)(TargetSlatState, _super);
4604
4604
  function TargetSlatState() {
4605
4605
  var _this = _super.call(this, "Target Slat State", TargetSlatState.UUID, {
4606
4606
  format: "uint8" /* UINT8 */,
@@ -4624,7 +4624,7 @@ Characteristic_1.Characteristic.TargetSlatState = TargetSlatState;
4624
4624
  * Characteristic "Target Temperature"
4625
4625
  */
4626
4626
  var TargetTemperature = /** @class */ (function (_super) {
4627
- tslib_1.__extends(TargetTemperature, _super);
4627
+ (0, tslib_1.__extends)(TargetTemperature, _super);
4628
4628
  function TargetTemperature() {
4629
4629
  var _this = _super.call(this, "Target Temperature", TargetTemperature.UUID, {
4630
4630
  format: "float" /* FLOAT */,
@@ -4646,7 +4646,7 @@ Characteristic_1.Characteristic.TargetTemperature = TargetTemperature;
4646
4646
  * Characteristic "Target Tilt Angle"
4647
4647
  */
4648
4648
  var TargetTiltAngle = /** @class */ (function (_super) {
4649
- tslib_1.__extends(TargetTiltAngle, _super);
4649
+ (0, tslib_1.__extends)(TargetTiltAngle, _super);
4650
4650
  function TargetTiltAngle() {
4651
4651
  var _this = _super.call(this, "Target Tilt Angle", TargetTiltAngle.UUID, {
4652
4652
  format: "int" /* INT */,
@@ -4668,7 +4668,7 @@ Characteristic_1.Characteristic.TargetTiltAngle = TargetTiltAngle;
4668
4668
  * Characteristic "Target Vertical Tilt Angle"
4669
4669
  */
4670
4670
  var TargetVerticalTiltAngle = /** @class */ (function (_super) {
4671
- tslib_1.__extends(TargetVerticalTiltAngle, _super);
4671
+ (0, tslib_1.__extends)(TargetVerticalTiltAngle, _super);
4672
4672
  function TargetVerticalTiltAngle() {
4673
4673
  var _this = _super.call(this, "Target Vertical Tilt Angle", TargetVerticalTiltAngle.UUID, {
4674
4674
  format: "int" /* INT */,
@@ -4690,7 +4690,7 @@ Characteristic_1.Characteristic.TargetVerticalTiltAngle = TargetVerticalTiltAngl
4690
4690
  * Characteristic "Target Visibility State"
4691
4691
  */
4692
4692
  var TargetVisibilityState = /** @class */ (function (_super) {
4693
- tslib_1.__extends(TargetVisibilityState, _super);
4693
+ (0, tslib_1.__extends)(TargetVisibilityState, _super);
4694
4694
  function TargetVisibilityState() {
4695
4695
  var _this = _super.call(this, "Target Visibility State", TargetVisibilityState.UUID, {
4696
4696
  format: "uint8" /* UINT8 */,
@@ -4714,7 +4714,7 @@ Characteristic_1.Characteristic.TargetVisibilityState = TargetVisibilityState;
4714
4714
  * Characteristic "Temperature Display Units"
4715
4715
  */
4716
4716
  var TemperatureDisplayUnits = /** @class */ (function (_super) {
4717
- tslib_1.__extends(TemperatureDisplayUnits, _super);
4717
+ (0, tslib_1.__extends)(TemperatureDisplayUnits, _super);
4718
4718
  function TemperatureDisplayUnits() {
4719
4719
  var _this = _super.call(this, "Temperature Display Units", TemperatureDisplayUnits.UUID, {
4720
4720
  format: "uint8" /* UINT8 */,
@@ -4738,7 +4738,7 @@ Characteristic_1.Characteristic.TemperatureDisplayUnits = TemperatureDisplayUnit
4738
4738
  * Characteristic "Third Party Camera Active"
4739
4739
  */
4740
4740
  var ThirdPartyCameraActive = /** @class */ (function (_super) {
4741
- tslib_1.__extends(ThirdPartyCameraActive, _super);
4741
+ (0, tslib_1.__extends)(ThirdPartyCameraActive, _super);
4742
4742
  function ThirdPartyCameraActive() {
4743
4743
  var _this = _super.call(this, "Third Party Camera Active", ThirdPartyCameraActive.UUID, {
4744
4744
  format: "uint8" /* UINT8 */,
@@ -4759,7 +4759,7 @@ Characteristic_1.Characteristic.ThirdPartyCameraActive = ThirdPartyCameraActive;
4759
4759
  * Characteristic "Thread Control Point"
4760
4760
  */
4761
4761
  var ThreadControlPoint = /** @class */ (function (_super) {
4762
- tslib_1.__extends(ThreadControlPoint, _super);
4762
+ (0, tslib_1.__extends)(ThreadControlPoint, _super);
4763
4763
  function ThreadControlPoint() {
4764
4764
  var _this = _super.call(this, "Thread Control Point", ThreadControlPoint.UUID, {
4765
4765
  format: "tlv8" /* TLV8 */,
@@ -4777,7 +4777,7 @@ Characteristic_1.Characteristic.ThreadControlPoint = ThreadControlPoint;
4777
4777
  * Characteristic "Thread Node Capabilities"
4778
4778
  */
4779
4779
  var ThreadNodeCapabilities = /** @class */ (function (_super) {
4780
- tslib_1.__extends(ThreadNodeCapabilities, _super);
4780
+ (0, tslib_1.__extends)(ThreadNodeCapabilities, _super);
4781
4781
  function ThreadNodeCapabilities() {
4782
4782
  var _this = _super.call(this, "Thread Node Capabilities", ThreadNodeCapabilities.UUID, {
4783
4783
  format: "uint16" /* UINT16 */,
@@ -4798,7 +4798,7 @@ Characteristic_1.Characteristic.ThreadNodeCapabilities = ThreadNodeCapabilities;
4798
4798
  * Characteristic "Thread OpenThread Version"
4799
4799
  */
4800
4800
  var ThreadOpenThreadVersion = /** @class */ (function (_super) {
4801
- tslib_1.__extends(ThreadOpenThreadVersion, _super);
4801
+ (0, tslib_1.__extends)(ThreadOpenThreadVersion, _super);
4802
4802
  function ThreadOpenThreadVersion() {
4803
4803
  var _this = _super.call(this, "Thread OpenThread Version", ThreadOpenThreadVersion.UUID, {
4804
4804
  format: "string" /* STRING */,
@@ -4816,7 +4816,7 @@ Characteristic_1.Characteristic.ThreadOpenThreadVersion = ThreadOpenThreadVersio
4816
4816
  * Characteristic "Thread Status"
4817
4817
  */
4818
4818
  var ThreadStatus = /** @class */ (function (_super) {
4819
- tslib_1.__extends(ThreadStatus, _super);
4819
+ (0, tslib_1.__extends)(ThreadStatus, _super);
4820
4820
  function ThreadStatus() {
4821
4821
  var _this = _super.call(this, "Thread Status", ThreadStatus.UUID, {
4822
4822
  format: "uint16" /* UINT16 */,
@@ -4838,7 +4838,7 @@ Characteristic_1.Characteristic.ThreadStatus = ThreadStatus;
4838
4838
  * @deprecated Removed and not used anymore
4839
4839
  */
4840
4840
  var TimeUpdate = /** @class */ (function (_super) {
4841
- tslib_1.__extends(TimeUpdate, _super);
4841
+ (0, tslib_1.__extends)(TimeUpdate, _super);
4842
4842
  function TimeUpdate() {
4843
4843
  var _this = _super.call(this, "Time Update", TimeUpdate.UUID, {
4844
4844
  format: "bool" /* BOOL */,
@@ -4858,7 +4858,7 @@ Characteristic_1.Characteristic.TimeUpdate = TimeUpdate;
4858
4858
  * @since iOS 14
4859
4859
  */
4860
4860
  var TransmitPower = /** @class */ (function (_super) {
4861
- tslib_1.__extends(TransmitPower, _super);
4861
+ (0, tslib_1.__extends)(TransmitPower, _super);
4862
4862
  function TransmitPower() {
4863
4863
  var _this = _super.call(this, "Transmit Power", TransmitPower.UUID, {
4864
4864
  format: "int" /* INT */,
@@ -4876,7 +4876,7 @@ Characteristic_1.Characteristic.TransmitPower = TransmitPower;
4876
4876
  * Characteristic "Tunnel Connection Timeout"
4877
4877
  */
4878
4878
  var TunnelConnectionTimeout = /** @class */ (function (_super) {
4879
- tslib_1.__extends(TunnelConnectionTimeout, _super);
4879
+ (0, tslib_1.__extends)(TunnelConnectionTimeout, _super);
4880
4880
  function TunnelConnectionTimeout() {
4881
4881
  var _this = _super.call(this, "Tunnel Connection Timeout", TunnelConnectionTimeout.UUID, {
4882
4882
  format: "int" /* INT */,
@@ -4894,7 +4894,7 @@ Characteristic_1.Characteristic.TunnelConnectionTimeout = TunnelConnectionTimeou
4894
4894
  * Characteristic "Tunneled Accessory Advertising"
4895
4895
  */
4896
4896
  var TunneledAccessoryAdvertising = /** @class */ (function (_super) {
4897
- tslib_1.__extends(TunneledAccessoryAdvertising, _super);
4897
+ (0, tslib_1.__extends)(TunneledAccessoryAdvertising, _super);
4898
4898
  function TunneledAccessoryAdvertising() {
4899
4899
  var _this = _super.call(this, "Tunneled Accessory Advertising", TunneledAccessoryAdvertising.UUID, {
4900
4900
  format: "bool" /* BOOL */,
@@ -4912,7 +4912,7 @@ Characteristic_1.Characteristic.TunneledAccessoryAdvertising = TunneledAccessory
4912
4912
  * Characteristic "Tunneled Accessory Connected"
4913
4913
  */
4914
4914
  var TunneledAccessoryConnected = /** @class */ (function (_super) {
4915
- tslib_1.__extends(TunneledAccessoryConnected, _super);
4915
+ (0, tslib_1.__extends)(TunneledAccessoryConnected, _super);
4916
4916
  function TunneledAccessoryConnected() {
4917
4917
  var _this = _super.call(this, "Tunneled Accessory Connected", TunneledAccessoryConnected.UUID, {
4918
4918
  format: "bool" /* BOOL */,
@@ -4930,7 +4930,7 @@ Characteristic_1.Characteristic.TunneledAccessoryConnected = TunneledAccessoryCo
4930
4930
  * Characteristic "Tunneled Accessory State Number"
4931
4931
  */
4932
4932
  var TunneledAccessoryStateNumber = /** @class */ (function (_super) {
4933
- tslib_1.__extends(TunneledAccessoryStateNumber, _super);
4933
+ (0, tslib_1.__extends)(TunneledAccessoryStateNumber, _super);
4934
4934
  function TunneledAccessoryStateNumber() {
4935
4935
  var _this = _super.call(this, "Tunneled Accessory State Number", TunneledAccessoryStateNumber.UUID, {
4936
4936
  format: "int" /* INT */,
@@ -4948,7 +4948,7 @@ Characteristic_1.Characteristic.TunneledAccessoryStateNumber = TunneledAccessory
4948
4948
  * Characteristic "Valve Type"
4949
4949
  */
4950
4950
  var ValveType = /** @class */ (function (_super) {
4951
- tslib_1.__extends(ValveType, _super);
4951
+ (0, tslib_1.__extends)(ValveType, _super);
4952
4952
  function ValveType() {
4953
4953
  var _this = _super.call(this, "Valve Type", ValveType.UUID, {
4954
4954
  format: "uint8" /* UINT8 */,
@@ -4974,7 +4974,7 @@ Characteristic_1.Characteristic.ValveType = ValveType;
4974
4974
  * Characteristic "Version"
4975
4975
  */
4976
4976
  var Version = /** @class */ (function (_super) {
4977
- tslib_1.__extends(Version, _super);
4977
+ (0, tslib_1.__extends)(Version, _super);
4978
4978
  function Version() {
4979
4979
  var _this = _super.call(this, "Version", Version.UUID, {
4980
4980
  format: "string" /* STRING */,
@@ -4994,7 +4994,7 @@ Characteristic_1.Characteristic.Version = Version;
4994
4994
  * @since iOS 14
4995
4995
  */
4996
4996
  var VideoAnalysisActive = /** @class */ (function (_super) {
4997
- tslib_1.__extends(VideoAnalysisActive, _super);
4997
+ (0, tslib_1.__extends)(VideoAnalysisActive, _super);
4998
4998
  function VideoAnalysisActive() {
4999
4999
  var _this = _super.call(this, "Video Analysis Active", VideoAnalysisActive.UUID, {
5000
5000
  format: "uint8" /* UINT8 */,
@@ -5012,7 +5012,7 @@ Characteristic_1.Characteristic.VideoAnalysisActive = VideoAnalysisActive;
5012
5012
  * Characteristic "VOC Density"
5013
5013
  */
5014
5014
  var VOCDensity = /** @class */ (function (_super) {
5015
- tslib_1.__extends(VOCDensity, _super);
5015
+ (0, tslib_1.__extends)(VOCDensity, _super);
5016
5016
  function VOCDensity() {
5017
5017
  var _this = _super.call(this, "VOC Density", VOCDensity.UUID, {
5018
5018
  format: "float" /* FLOAT */,
@@ -5033,7 +5033,7 @@ Characteristic_1.Characteristic.VOCDensity = VOCDensity;
5033
5033
  * Characteristic "Volume"
5034
5034
  */
5035
5035
  var Volume = /** @class */ (function (_super) {
5036
- tslib_1.__extends(Volume, _super);
5036
+ (0, tslib_1.__extends)(Volume, _super);
5037
5037
  function Volume() {
5038
5038
  var _this = _super.call(this, "Volume", Volume.UUID, {
5039
5039
  format: "uint8" /* UINT8 */,
@@ -5055,7 +5055,7 @@ Characteristic_1.Characteristic.Volume = Volume;
5055
5055
  * Characteristic "Volume Control Type"
5056
5056
  */
5057
5057
  var VolumeControlType = /** @class */ (function (_super) {
5058
- tslib_1.__extends(VolumeControlType, _super);
5058
+ (0, tslib_1.__extends)(VolumeControlType, _super);
5059
5059
  function VolumeControlType() {
5060
5060
  var _this = _super.call(this, "Volume Control Type", VolumeControlType.UUID, {
5061
5061
  format: "uint8" /* UINT8 */,
@@ -5081,7 +5081,7 @@ Characteristic_1.Characteristic.VolumeControlType = VolumeControlType;
5081
5081
  * Characteristic "Volume Selector"
5082
5082
  */
5083
5083
  var VolumeSelector = /** @class */ (function (_super) {
5084
- tslib_1.__extends(VolumeSelector, _super);
5084
+ (0, tslib_1.__extends)(VolumeSelector, _super);
5085
5085
  function VolumeSelector() {
5086
5086
  var _this = _super.call(this, "Volume Selector", VolumeSelector.UUID, {
5087
5087
  format: "uint8" /* UINT8 */,
@@ -5106,7 +5106,7 @@ Characteristic_1.Characteristic.VolumeSelector = VolumeSelector;
5106
5106
  * @since iOS 13.4
5107
5107
  */
5108
5108
  var WakeConfiguration = /** @class */ (function (_super) {
5109
- tslib_1.__extends(WakeConfiguration, _super);
5109
+ (0, tslib_1.__extends)(WakeConfiguration, _super);
5110
5110
  function WakeConfiguration() {
5111
5111
  var _this = _super.call(this, "Wake Configuration", WakeConfiguration.UUID, {
5112
5112
  format: "tlv8" /* TLV8 */,
@@ -5124,7 +5124,7 @@ Characteristic_1.Characteristic.WakeConfiguration = WakeConfiguration;
5124
5124
  * Characteristic "WAN Configuration List"
5125
5125
  */
5126
5126
  var WANConfigurationList = /** @class */ (function (_super) {
5127
- tslib_1.__extends(WANConfigurationList, _super);
5127
+ (0, tslib_1.__extends)(WANConfigurationList, _super);
5128
5128
  function WANConfigurationList() {
5129
5129
  var _this = _super.call(this, "WAN Configuration List", WANConfigurationList.UUID, {
5130
5130
  format: "tlv8" /* TLV8 */,
@@ -5142,7 +5142,7 @@ Characteristic_1.Characteristic.WANConfigurationList = WANConfigurationList;
5142
5142
  * Characteristic "WAN Status List"
5143
5143
  */
5144
5144
  var WANStatusList = /** @class */ (function (_super) {
5145
- tslib_1.__extends(WANStatusList, _super);
5145
+ (0, tslib_1.__extends)(WANStatusList, _super);
5146
5146
  function WANStatusList() {
5147
5147
  var _this = _super.call(this, "WAN Status List", WANStatusList.UUID, {
5148
5148
  format: "tlv8" /* TLV8 */,
@@ -5160,7 +5160,7 @@ Characteristic_1.Characteristic.WANStatusList = WANStatusList;
5160
5160
  * Characteristic "Water Level"
5161
5161
  */
5162
5162
  var WaterLevel = /** @class */ (function (_super) {
5163
- tslib_1.__extends(WaterLevel, _super);
5163
+ (0, tslib_1.__extends)(WaterLevel, _super);
5164
5164
  function WaterLevel() {
5165
5165
  var _this = _super.call(this, "Water Level", WaterLevel.UUID, {
5166
5166
  format: "float" /* FLOAT */,
@@ -5183,7 +5183,7 @@ Characteristic_1.Characteristic.WaterLevel = WaterLevel;
5183
5183
  * @since iOS 14
5184
5184
  */
5185
5185
  var WiFiCapabilities = /** @class */ (function (_super) {
5186
- tslib_1.__extends(WiFiCapabilities, _super);
5186
+ (0, tslib_1.__extends)(WiFiCapabilities, _super);
5187
5187
  function WiFiCapabilities() {
5188
5188
  var _this = _super.call(this, "Wi-Fi Capabilities", WiFiCapabilities.UUID, {
5189
5189
  format: "uint32" /* UINT32 */,
@@ -5202,7 +5202,7 @@ Characteristic_1.Characteristic.WiFiCapabilities = WiFiCapabilities;
5202
5202
  * @since iOS 14
5203
5203
  */
5204
5204
  var WiFiConfigurationControl = /** @class */ (function (_super) {
5205
- tslib_1.__extends(WiFiConfigurationControl, _super);
5205
+ (0, tslib_1.__extends)(WiFiConfigurationControl, _super);
5206
5206
  function WiFiConfigurationControl() {
5207
5207
  var _this = _super.call(this, "Wi-Fi Configuration Control", WiFiConfigurationControl.UUID, {
5208
5208
  format: "tlv8" /* TLV8 */,
@@ -5220,7 +5220,7 @@ Characteristic_1.Characteristic.WiFiConfigurationControl = WiFiConfigurationCont
5220
5220
  * Characteristic "Wi-Fi Satellite Status"
5221
5221
  */
5222
5222
  var WiFiSatelliteStatus = /** @class */ (function (_super) {
5223
- tslib_1.__extends(WiFiSatelliteStatus, _super);
5223
+ (0, tslib_1.__extends)(WiFiSatelliteStatus, _super);
5224
5224
  function WiFiSatelliteStatus() {
5225
5225
  var _this = _super.call(this, "Wi-Fi Satellite Status", WiFiSatelliteStatus.UUID, {
5226
5226
  format: "uint8" /* UINT8 */,