@seamapi/types 1.138.1 → 1.140.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.
package/dist/connect.cjs CHANGED
@@ -692,6 +692,17 @@ var openapi_default = {
692
692
  allOf: [
693
693
  {
694
694
  properties: {
695
+ accessory_keypad: {
696
+ description: "Represents the accessory keypad state.",
697
+ properties: {
698
+ is_connected: {
699
+ description: "Indicates if the accessory_keypad is connected to the device.",
700
+ type: "boolean"
701
+ }
702
+ },
703
+ required: ["is_connected"],
704
+ type: "object"
705
+ },
695
706
  appearance: {
696
707
  properties: {
697
708
  name: {
@@ -743,10 +754,18 @@ var openapi_default = {
743
754
  description: "Indicates whether the device supports an accessory keypad.",
744
755
  type: "boolean"
745
756
  },
757
+ can_connect_accessory_keypad: {
758
+ description: "Indicates whether the device can connect a accessory keypad.",
759
+ type: "boolean"
760
+ },
746
761
  display_name: {
747
762
  description: "Display name of the device model.",
748
763
  type: "string"
749
764
  },
765
+ has_built_in_keypad: {
766
+ description: "Indicates whether the device has a built in accessory keypad.",
767
+ type: "boolean"
768
+ },
750
769
  manufacturer_display_name: {
751
770
  description: "Display name that corresponds to the manufacturer-specific terminology for the device.",
752
771
  type: "string"
@@ -2225,10 +2244,18 @@ var openapi_default = {
2225
2244
  description: "Indicates whether the device supports an accessory keypad.",
2226
2245
  type: "boolean"
2227
2246
  },
2247
+ can_connect_accessory_keypad: {
2248
+ description: "Indicates whether the device can connect a accessory keypad.",
2249
+ type: "boolean"
2250
+ },
2228
2251
  display_name: {
2229
2252
  description: "Display name of the device model.",
2230
2253
  type: "string"
2231
2254
  },
2255
+ has_built_in_keypad: {
2256
+ description: "Indicates whether the device has a built in accessory keypad.",
2257
+ type: "boolean"
2258
+ },
2232
2259
  manufacturer_display_name: {
2233
2260
  description: "Display name that corresponds to the manufacturer-specific terminology for the device.",
2234
2261
  type: "string"
@@ -5253,6 +5280,22 @@ var openapi_default = {
5253
5280
  acs_system_id: { format: "uuid", type: "string" },
5254
5281
  created_at: { format: "date-time", type: "string" },
5255
5282
  display_name: { type: "string" },
5283
+ latch_metadata: {
5284
+ nullable: true,
5285
+ properties: {
5286
+ accessibility_type: { type: "string" },
5287
+ is_connected: { type: "boolean" },
5288
+ name: { type: "string" },
5289
+ type: { type: "string" }
5290
+ },
5291
+ required: [
5292
+ "accessibility_type",
5293
+ "name",
5294
+ "type",
5295
+ "is_connected"
5296
+ ],
5297
+ type: "object"
5298
+ },
5256
5299
  visionline_metadata: {
5257
5300
  nullable: true,
5258
5301
  properties: {
@@ -5296,6 +5339,7 @@ var openapi_default = {
5296
5339
  "display_name",
5297
5340
  "acs_system_id",
5298
5341
  "created_at",
5342
+ "latch_metadata",
5299
5343
  "visionline_metadata"
5300
5344
  ],
5301
5345
  type: "object"
@@ -5398,6 +5442,22 @@ var openapi_default = {
5398
5442
  acs_system_id: { format: "uuid", type: "string" },
5399
5443
  created_at: { format: "date-time", type: "string" },
5400
5444
  display_name: { type: "string" },
5445
+ latch_metadata: {
5446
+ nullable: true,
5447
+ properties: {
5448
+ accessibility_type: { type: "string" },
5449
+ is_connected: { type: "boolean" },
5450
+ name: { type: "string" },
5451
+ type: { type: "string" }
5452
+ },
5453
+ required: [
5454
+ "accessibility_type",
5455
+ "name",
5456
+ "type",
5457
+ "is_connected"
5458
+ ],
5459
+ type: "object"
5460
+ },
5401
5461
  visionline_metadata: {
5402
5462
  nullable: true,
5403
5463
  properties: {
@@ -5441,6 +5501,7 @@ var openapi_default = {
5441
5501
  "display_name",
5442
5502
  "acs_system_id",
5443
5503
  "created_at",
5504
+ "latch_metadata",
5444
5505
  "visionline_metadata"
5445
5506
  ],
5446
5507
  type: "object"
@@ -6028,6 +6089,22 @@ var openapi_default = {
6028
6089
  acs_system_id: { format: "uuid", type: "string" },
6029
6090
  created_at: { format: "date-time", type: "string" },
6030
6091
  display_name: { type: "string" },
6092
+ latch_metadata: {
6093
+ nullable: true,
6094
+ properties: {
6095
+ accessibility_type: { type: "string" },
6096
+ is_connected: { type: "boolean" },
6097
+ name: { type: "string" },
6098
+ type: { type: "string" }
6099
+ },
6100
+ required: [
6101
+ "accessibility_type",
6102
+ "name",
6103
+ "type",
6104
+ "is_connected"
6105
+ ],
6106
+ type: "object"
6107
+ },
6031
6108
  visionline_metadata: {
6032
6109
  nullable: true,
6033
6110
  properties: {
@@ -6071,6 +6148,7 @@ var openapi_default = {
6071
6148
  "display_name",
6072
6149
  "acs_system_id",
6073
6150
  "created_at",
6151
+ "latch_metadata",
6074
6152
  "visionline_metadata"
6075
6153
  ],
6076
6154
  type: "object"
@@ -9210,9 +9288,10 @@ var openapi_default = {
9210
9288
  401: { description: "Unauthorized" }
9211
9289
  },
9212
9290
  security: [
9213
- { access_token: [], seam_workspace: [] },
9214
- { seam_client_session_token: [] },
9215
- { client_session_token: [] }
9291
+ { client_session: [] },
9292
+ { pat_with_workspace: [] },
9293
+ { console_session: [] },
9294
+ { api_key: [] }
9216
9295
  ],
9217
9296
  summary: "/locks/lock_door",
9218
9297
  tags: ["/locks"],
@@ -10486,9 +10565,10 @@ var openapi_default = {
10486
10565
  401: { description: "Unauthorized" }
10487
10566
  },
10488
10567
  security: [
10489
- { api_key: [] },
10490
10568
  { client_session: [] },
10491
- { pat_with_workspace: [] }
10569
+ { pat_with_workspace: [] },
10570
+ { console_session: [] },
10571
+ { api_key: [] }
10492
10572
  ],
10493
10573
  summary: "/thermostats/cool",
10494
10574
  tags: ["/thermostats"],
@@ -10533,9 +10613,10 @@ var openapi_default = {
10533
10613
  401: { description: "Unauthorized" }
10534
10614
  },
10535
10615
  security: [
10536
- { api_key: [] },
10537
10616
  { client_session: [] },
10538
- { pat_with_workspace: [] }
10617
+ { pat_with_workspace: [] },
10618
+ { console_session: [] },
10619
+ { api_key: [] }
10539
10620
  ],
10540
10621
  summary: "/thermostats/get",
10541
10622
  tags: ["/thermostats"],
@@ -10585,9 +10666,10 @@ var openapi_default = {
10585
10666
  401: { description: "Unauthorized" }
10586
10667
  },
10587
10668
  security: [
10588
- { api_key: [] },
10589
10669
  { client_session: [] },
10590
- { pat_with_workspace: [] }
10670
+ { pat_with_workspace: [] },
10671
+ { console_session: [] },
10672
+ { api_key: [] }
10591
10673
  ],
10592
10674
  summary: "/thermostats/heat",
10593
10675
  tags: ["/thermostats"],
@@ -10639,9 +10721,10 @@ var openapi_default = {
10639
10721
  401: { description: "Unauthorized" }
10640
10722
  },
10641
10723
  security: [
10642
- { api_key: [] },
10643
10724
  { client_session: [] },
10644
- { pat_with_workspace: [] }
10725
+ { pat_with_workspace: [] },
10726
+ { console_session: [] },
10727
+ { api_key: [] }
10645
10728
  ],
10646
10729
  summary: "/thermostats/heat_cool",
10647
10730
  tags: ["/thermostats"],
@@ -10911,9 +10994,10 @@ var openapi_default = {
10911
10994
  401: { description: "Unauthorized" }
10912
10995
  },
10913
10996
  security: [
10914
- { api_key: [] },
10915
10997
  { client_session: [] },
10916
- { pat_with_workspace: [] }
10998
+ { pat_with_workspace: [] },
10999
+ { console_session: [] },
11000
+ { api_key: [] }
10917
11001
  ],
10918
11002
  summary: "/thermostats/off",
10919
11003
  tags: ["/thermostats"],
@@ -10963,9 +11047,10 @@ var openapi_default = {
10963
11047
  401: { description: "Unauthorized" }
10964
11048
  },
10965
11049
  security: [
10966
- { api_key: [] },
10967
11050
  { client_session: [] },
10968
- { pat_with_workspace: [] }
11051
+ { pat_with_workspace: [] },
11052
+ { console_session: [] },
11053
+ { api_key: [] }
10969
11054
  ],
10970
11055
  summary: "/thermostats/set_fan_mode",
10971
11056
  tags: ["/thermostats"],