@seamapi/types 1.243.1 → 1.245.0

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.
@@ -623,9 +623,18 @@ export default {
623
623
  },
624
624
  visionline_metadata: {
625
625
  properties: {
626
- lan_address: { type: 'string' },
627
- mobile_access_uuid: { type: 'string' },
628
- system_id: { type: 'string' },
626
+ lan_address: {
627
+ description: 'IP address or hostname of the main Visionline server relative to the Seam Bridge on the local network.',
628
+ type: 'string',
629
+ },
630
+ mobile_access_uuid: {
631
+ description: 'Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset.',
632
+ type: 'string',
633
+ },
634
+ system_id: {
635
+ description: 'Unique ID assigned by the ASSA ABLOY licensing team that identifies each hotel in your credential manager.',
636
+ type: 'string',
637
+ },
629
638
  },
630
639
  required: ['mobile_access_uuid', 'system_id', 'lan_address'],
631
640
  type: 'object',
@@ -2083,6 +2092,33 @@ export default {
2083
2092
  ],
2084
2093
  type: 'object',
2085
2094
  },
2095
+ climate_preset: {
2096
+ properties: {
2097
+ can_delete: { type: 'boolean' },
2098
+ can_edit: { type: 'boolean' },
2099
+ climate_preset_key: { type: 'string' },
2100
+ cooling_set_point_celsius: { format: 'float', type: 'number' },
2101
+ cooling_set_point_fahrenheit: { format: 'float', type: 'number' },
2102
+ display_name: { type: 'string' },
2103
+ fan_mode_setting: { enum: ['auto', 'on'], type: 'string' },
2104
+ heating_set_point_celsius: { format: 'float', type: 'number' },
2105
+ heating_set_point_fahrenheit: { format: 'float', type: 'number' },
2106
+ hvac_mode_setting: {
2107
+ enum: ['off', 'heat', 'cool', 'heat_cool'],
2108
+ type: 'string',
2109
+ },
2110
+ manual_override_allowed: { type: 'boolean' },
2111
+ name: { default: null, nullable: true, type: 'string' },
2112
+ },
2113
+ required: [
2114
+ 'climate_preset_key',
2115
+ 'can_edit',
2116
+ 'can_delete',
2117
+ 'display_name',
2118
+ 'manual_override_allowed',
2119
+ ],
2120
+ type: 'object',
2121
+ },
2086
2122
  connect_webview: {
2087
2123
  properties: {
2088
2124
  accepted_devices: {
@@ -12481,46 +12517,7 @@ export default {
12481
12517
  schema: {
12482
12518
  properties: {
12483
12519
  climate_preset: {
12484
- properties: {
12485
- can_delete: { type: 'boolean' },
12486
- can_edit: { type: 'boolean' },
12487
- climate_preset_key: { type: 'string' },
12488
- cooling_set_point_celsius: {
12489
- format: 'float',
12490
- type: 'number',
12491
- },
12492
- cooling_set_point_fahrenheit: {
12493
- format: 'float',
12494
- type: 'number',
12495
- },
12496
- display_name: { type: 'string' },
12497
- fan_mode_setting: {
12498
- enum: ['auto', 'on'],
12499
- type: 'string',
12500
- },
12501
- heating_set_point_celsius: {
12502
- format: 'float',
12503
- type: 'number',
12504
- },
12505
- heating_set_point_fahrenheit: {
12506
- format: 'float',
12507
- type: 'number',
12508
- },
12509
- hvac_mode_setting: {
12510
- enum: ['off', 'heat', 'cool', 'heat_cool'],
12511
- type: 'string',
12512
- },
12513
- manual_override_allowed: { type: 'boolean' },
12514
- name: { default: null, nullable: true, type: 'string' },
12515
- },
12516
- required: [
12517
- 'climate_preset_key',
12518
- 'can_edit',
12519
- 'can_delete',
12520
- 'display_name',
12521
- 'manual_override_allowed',
12522
- ],
12523
- type: 'object',
12520
+ $ref: '#/components/schemas/climate_preset',
12524
12521
  },
12525
12522
  ok: { type: 'boolean' },
12526
12523
  },
@@ -13536,46 +13533,7 @@ export default {
13536
13533
  schema: {
13537
13534
  properties: {
13538
13535
  climate_preset: {
13539
- properties: {
13540
- can_delete: { type: 'boolean' },
13541
- can_edit: { type: 'boolean' },
13542
- climate_preset_key: { type: 'string' },
13543
- cooling_set_point_celsius: {
13544
- format: 'float',
13545
- type: 'number',
13546
- },
13547
- cooling_set_point_fahrenheit: {
13548
- format: 'float',
13549
- type: 'number',
13550
- },
13551
- display_name: { type: 'string' },
13552
- fan_mode_setting: {
13553
- enum: ['auto', 'on'],
13554
- type: 'string',
13555
- },
13556
- heating_set_point_celsius: {
13557
- format: 'float',
13558
- type: 'number',
13559
- },
13560
- heating_set_point_fahrenheit: {
13561
- format: 'float',
13562
- type: 'number',
13563
- },
13564
- hvac_mode_setting: {
13565
- enum: ['off', 'heat', 'cool', 'heat_cool'],
13566
- type: 'string',
13567
- },
13568
- manual_override_allowed: { type: 'boolean' },
13569
- name: { default: null, nullable: true, type: 'string' },
13570
- },
13571
- required: [
13572
- 'climate_preset_key',
13573
- 'can_edit',
13574
- 'can_delete',
13575
- 'display_name',
13576
- 'manual_override_allowed',
13577
- ],
13578
- type: 'object',
13536
+ $ref: '#/components/schemas/climate_preset',
13579
13537
  },
13580
13538
  ok: { type: 'boolean' },
13581
13539
  },
@@ -13648,46 +13606,7 @@ export default {
13648
13606
  schema: {
13649
13607
  properties: {
13650
13608
  climate_preset: {
13651
- properties: {
13652
- can_delete: { type: 'boolean' },
13653
- can_edit: { type: 'boolean' },
13654
- climate_preset_key: { type: 'string' },
13655
- cooling_set_point_celsius: {
13656
- format: 'float',
13657
- type: 'number',
13658
- },
13659
- cooling_set_point_fahrenheit: {
13660
- format: 'float',
13661
- type: 'number',
13662
- },
13663
- display_name: { type: 'string' },
13664
- fan_mode_setting: {
13665
- enum: ['auto', 'on'],
13666
- type: 'string',
13667
- },
13668
- heating_set_point_celsius: {
13669
- format: 'float',
13670
- type: 'number',
13671
- },
13672
- heating_set_point_fahrenheit: {
13673
- format: 'float',
13674
- type: 'number',
13675
- },
13676
- hvac_mode_setting: {
13677
- enum: ['off', 'heat', 'cool', 'heat_cool'],
13678
- type: 'string',
13679
- },
13680
- manual_override_allowed: { type: 'boolean' },
13681
- name: { default: null, nullable: true, type: 'string' },
13682
- },
13683
- required: [
13684
- 'climate_preset_key',
13685
- 'can_edit',
13686
- 'can_delete',
13687
- 'display_name',
13688
- 'manual_override_allowed',
13689
- ],
13690
- type: 'object',
13609
+ $ref: '#/components/schemas/climate_preset',
13691
13610
  },
13692
13611
  ok: { type: 'boolean' },
13693
13612
  },