@seamapi/types 1.139.0 → 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 +73 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +170 -42
- package/lib/seam/connect/openapi.d.ts +152 -42
- package/lib/seam/connect/openapi.js +67 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +18 -0
- package/lib/seam/connect/unstable/models/acs/entrance.d.ts +45 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js +7 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +67 -9
- package/src/lib/seam/connect/route-types.ts +18 -0
- package/src/lib/seam/connect/unstable/models/acs/entrance.ts +11 -0
package/dist/connect.cjs
CHANGED
|
@@ -5280,6 +5280,22 @@ var openapi_default = {
|
|
|
5280
5280
|
acs_system_id: { format: "uuid", type: "string" },
|
|
5281
5281
|
created_at: { format: "date-time", type: "string" },
|
|
5282
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
|
+
},
|
|
5283
5299
|
visionline_metadata: {
|
|
5284
5300
|
nullable: true,
|
|
5285
5301
|
properties: {
|
|
@@ -5323,6 +5339,7 @@ var openapi_default = {
|
|
|
5323
5339
|
"display_name",
|
|
5324
5340
|
"acs_system_id",
|
|
5325
5341
|
"created_at",
|
|
5342
|
+
"latch_metadata",
|
|
5326
5343
|
"visionline_metadata"
|
|
5327
5344
|
],
|
|
5328
5345
|
type: "object"
|
|
@@ -5425,6 +5442,22 @@ var openapi_default = {
|
|
|
5425
5442
|
acs_system_id: { format: "uuid", type: "string" },
|
|
5426
5443
|
created_at: { format: "date-time", type: "string" },
|
|
5427
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
|
+
},
|
|
5428
5461
|
visionline_metadata: {
|
|
5429
5462
|
nullable: true,
|
|
5430
5463
|
properties: {
|
|
@@ -5468,6 +5501,7 @@ var openapi_default = {
|
|
|
5468
5501
|
"display_name",
|
|
5469
5502
|
"acs_system_id",
|
|
5470
5503
|
"created_at",
|
|
5504
|
+
"latch_metadata",
|
|
5471
5505
|
"visionline_metadata"
|
|
5472
5506
|
],
|
|
5473
5507
|
type: "object"
|
|
@@ -6055,6 +6089,22 @@ var openapi_default = {
|
|
|
6055
6089
|
acs_system_id: { format: "uuid", type: "string" },
|
|
6056
6090
|
created_at: { format: "date-time", type: "string" },
|
|
6057
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
|
+
},
|
|
6058
6108
|
visionline_metadata: {
|
|
6059
6109
|
nullable: true,
|
|
6060
6110
|
properties: {
|
|
@@ -6098,6 +6148,7 @@ var openapi_default = {
|
|
|
6098
6148
|
"display_name",
|
|
6099
6149
|
"acs_system_id",
|
|
6100
6150
|
"created_at",
|
|
6151
|
+
"latch_metadata",
|
|
6101
6152
|
"visionline_metadata"
|
|
6102
6153
|
],
|
|
6103
6154
|
type: "object"
|
|
@@ -9237,9 +9288,10 @@ var openapi_default = {
|
|
|
9237
9288
|
401: { description: "Unauthorized" }
|
|
9238
9289
|
},
|
|
9239
9290
|
security: [
|
|
9240
|
-
{
|
|
9241
|
-
{
|
|
9242
|
-
{
|
|
9291
|
+
{ client_session: [] },
|
|
9292
|
+
{ pat_with_workspace: [] },
|
|
9293
|
+
{ console_session: [] },
|
|
9294
|
+
{ api_key: [] }
|
|
9243
9295
|
],
|
|
9244
9296
|
summary: "/locks/lock_door",
|
|
9245
9297
|
tags: ["/locks"],
|
|
@@ -10513,9 +10565,10 @@ var openapi_default = {
|
|
|
10513
10565
|
401: { description: "Unauthorized" }
|
|
10514
10566
|
},
|
|
10515
10567
|
security: [
|
|
10516
|
-
{ api_key: [] },
|
|
10517
10568
|
{ client_session: [] },
|
|
10518
|
-
{ pat_with_workspace: [] }
|
|
10569
|
+
{ pat_with_workspace: [] },
|
|
10570
|
+
{ console_session: [] },
|
|
10571
|
+
{ api_key: [] }
|
|
10519
10572
|
],
|
|
10520
10573
|
summary: "/thermostats/cool",
|
|
10521
10574
|
tags: ["/thermostats"],
|
|
@@ -10560,9 +10613,10 @@ var openapi_default = {
|
|
|
10560
10613
|
401: { description: "Unauthorized" }
|
|
10561
10614
|
},
|
|
10562
10615
|
security: [
|
|
10563
|
-
{ api_key: [] },
|
|
10564
10616
|
{ client_session: [] },
|
|
10565
|
-
{ pat_with_workspace: [] }
|
|
10617
|
+
{ pat_with_workspace: [] },
|
|
10618
|
+
{ console_session: [] },
|
|
10619
|
+
{ api_key: [] }
|
|
10566
10620
|
],
|
|
10567
10621
|
summary: "/thermostats/get",
|
|
10568
10622
|
tags: ["/thermostats"],
|
|
@@ -10612,9 +10666,10 @@ var openapi_default = {
|
|
|
10612
10666
|
401: { description: "Unauthorized" }
|
|
10613
10667
|
},
|
|
10614
10668
|
security: [
|
|
10615
|
-
{ api_key: [] },
|
|
10616
10669
|
{ client_session: [] },
|
|
10617
|
-
{ pat_with_workspace: [] }
|
|
10670
|
+
{ pat_with_workspace: [] },
|
|
10671
|
+
{ console_session: [] },
|
|
10672
|
+
{ api_key: [] }
|
|
10618
10673
|
],
|
|
10619
10674
|
summary: "/thermostats/heat",
|
|
10620
10675
|
tags: ["/thermostats"],
|
|
@@ -10666,9 +10721,10 @@ var openapi_default = {
|
|
|
10666
10721
|
401: { description: "Unauthorized" }
|
|
10667
10722
|
},
|
|
10668
10723
|
security: [
|
|
10669
|
-
{ api_key: [] },
|
|
10670
10724
|
{ client_session: [] },
|
|
10671
|
-
{ pat_with_workspace: [] }
|
|
10725
|
+
{ pat_with_workspace: [] },
|
|
10726
|
+
{ console_session: [] },
|
|
10727
|
+
{ api_key: [] }
|
|
10672
10728
|
],
|
|
10673
10729
|
summary: "/thermostats/heat_cool",
|
|
10674
10730
|
tags: ["/thermostats"],
|
|
@@ -10938,9 +10994,10 @@ var openapi_default = {
|
|
|
10938
10994
|
401: { description: "Unauthorized" }
|
|
10939
10995
|
},
|
|
10940
10996
|
security: [
|
|
10941
|
-
{ api_key: [] },
|
|
10942
10997
|
{ client_session: [] },
|
|
10943
|
-
{ pat_with_workspace: [] }
|
|
10998
|
+
{ pat_with_workspace: [] },
|
|
10999
|
+
{ console_session: [] },
|
|
11000
|
+
{ api_key: [] }
|
|
10944
11001
|
],
|
|
10945
11002
|
summary: "/thermostats/off",
|
|
10946
11003
|
tags: ["/thermostats"],
|
|
@@ -10990,9 +11047,10 @@ var openapi_default = {
|
|
|
10990
11047
|
401: { description: "Unauthorized" }
|
|
10991
11048
|
},
|
|
10992
11049
|
security: [
|
|
10993
|
-
{ api_key: [] },
|
|
10994
11050
|
{ client_session: [] },
|
|
10995
|
-
{ pat_with_workspace: [] }
|
|
11051
|
+
{ pat_with_workspace: [] },
|
|
11052
|
+
{ console_session: [] },
|
|
11053
|
+
{ api_key: [] }
|
|
10996
11054
|
],
|
|
10997
11055
|
summary: "/thermostats/set_fan_mode",
|
|
10998
11056
|
tags: ["/thermostats"],
|