@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
|
@@ -5233,6 +5233,22 @@ export default {
|
|
|
5233
5233
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5234
5234
|
created_at: { format: 'date-time', type: 'string' },
|
|
5235
5235
|
display_name: { type: 'string' },
|
|
5236
|
+
latch_metadata: {
|
|
5237
|
+
nullable: true,
|
|
5238
|
+
properties: {
|
|
5239
|
+
accessibility_type: { type: 'string' },
|
|
5240
|
+
is_connected: { type: 'boolean' },
|
|
5241
|
+
name: { type: 'string' },
|
|
5242
|
+
type: { type: 'string' },
|
|
5243
|
+
},
|
|
5244
|
+
required: [
|
|
5245
|
+
'accessibility_type',
|
|
5246
|
+
'name',
|
|
5247
|
+
'type',
|
|
5248
|
+
'is_connected',
|
|
5249
|
+
],
|
|
5250
|
+
type: 'object',
|
|
5251
|
+
},
|
|
5236
5252
|
visionline_metadata: {
|
|
5237
5253
|
nullable: true,
|
|
5238
5254
|
properties: {
|
|
@@ -5276,6 +5292,7 @@ export default {
|
|
|
5276
5292
|
'display_name',
|
|
5277
5293
|
'acs_system_id',
|
|
5278
5294
|
'created_at',
|
|
5295
|
+
'latch_metadata',
|
|
5279
5296
|
'visionline_metadata',
|
|
5280
5297
|
],
|
|
5281
5298
|
type: 'object',
|
|
@@ -5378,6 +5395,22 @@ export default {
|
|
|
5378
5395
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5379
5396
|
created_at: { format: 'date-time', type: 'string' },
|
|
5380
5397
|
display_name: { type: 'string' },
|
|
5398
|
+
latch_metadata: {
|
|
5399
|
+
nullable: true,
|
|
5400
|
+
properties: {
|
|
5401
|
+
accessibility_type: { type: 'string' },
|
|
5402
|
+
is_connected: { type: 'boolean' },
|
|
5403
|
+
name: { type: 'string' },
|
|
5404
|
+
type: { type: 'string' },
|
|
5405
|
+
},
|
|
5406
|
+
required: [
|
|
5407
|
+
'accessibility_type',
|
|
5408
|
+
'name',
|
|
5409
|
+
'type',
|
|
5410
|
+
'is_connected',
|
|
5411
|
+
],
|
|
5412
|
+
type: 'object',
|
|
5413
|
+
},
|
|
5381
5414
|
visionline_metadata: {
|
|
5382
5415
|
nullable: true,
|
|
5383
5416
|
properties: {
|
|
@@ -5421,6 +5454,7 @@ export default {
|
|
|
5421
5454
|
'display_name',
|
|
5422
5455
|
'acs_system_id',
|
|
5423
5456
|
'created_at',
|
|
5457
|
+
'latch_metadata',
|
|
5424
5458
|
'visionline_metadata',
|
|
5425
5459
|
],
|
|
5426
5460
|
type: 'object',
|
|
@@ -6008,6 +6042,22 @@ export default {
|
|
|
6008
6042
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6009
6043
|
created_at: { format: 'date-time', type: 'string' },
|
|
6010
6044
|
display_name: { type: 'string' },
|
|
6045
|
+
latch_metadata: {
|
|
6046
|
+
nullable: true,
|
|
6047
|
+
properties: {
|
|
6048
|
+
accessibility_type: { type: 'string' },
|
|
6049
|
+
is_connected: { type: 'boolean' },
|
|
6050
|
+
name: { type: 'string' },
|
|
6051
|
+
type: { type: 'string' },
|
|
6052
|
+
},
|
|
6053
|
+
required: [
|
|
6054
|
+
'accessibility_type',
|
|
6055
|
+
'name',
|
|
6056
|
+
'type',
|
|
6057
|
+
'is_connected',
|
|
6058
|
+
],
|
|
6059
|
+
type: 'object',
|
|
6060
|
+
},
|
|
6011
6061
|
visionline_metadata: {
|
|
6012
6062
|
nullable: true,
|
|
6013
6063
|
properties: {
|
|
@@ -6051,6 +6101,7 @@ export default {
|
|
|
6051
6101
|
'display_name',
|
|
6052
6102
|
'acs_system_id',
|
|
6053
6103
|
'created_at',
|
|
6104
|
+
'latch_metadata',
|
|
6054
6105
|
'visionline_metadata',
|
|
6055
6106
|
],
|
|
6056
6107
|
type: 'object',
|
|
@@ -9190,9 +9241,10 @@ export default {
|
|
|
9190
9241
|
401: { description: 'Unauthorized' },
|
|
9191
9242
|
},
|
|
9192
9243
|
security: [
|
|
9193
|
-
{
|
|
9194
|
-
{
|
|
9195
|
-
{
|
|
9244
|
+
{ client_session: [] },
|
|
9245
|
+
{ pat_with_workspace: [] },
|
|
9246
|
+
{ console_session: [] },
|
|
9247
|
+
{ api_key: [] },
|
|
9196
9248
|
],
|
|
9197
9249
|
summary: '/locks/lock_door',
|
|
9198
9250
|
tags: ['/locks'],
|
|
@@ -10466,9 +10518,10 @@ export default {
|
|
|
10466
10518
|
401: { description: 'Unauthorized' },
|
|
10467
10519
|
},
|
|
10468
10520
|
security: [
|
|
10469
|
-
{ api_key: [] },
|
|
10470
10521
|
{ client_session: [] },
|
|
10471
10522
|
{ pat_with_workspace: [] },
|
|
10523
|
+
{ console_session: [] },
|
|
10524
|
+
{ api_key: [] },
|
|
10472
10525
|
],
|
|
10473
10526
|
summary: '/thermostats/cool',
|
|
10474
10527
|
tags: ['/thermostats'],
|
|
@@ -10513,9 +10566,10 @@ export default {
|
|
|
10513
10566
|
401: { description: 'Unauthorized' },
|
|
10514
10567
|
},
|
|
10515
10568
|
security: [
|
|
10516
|
-
{ api_key: [] },
|
|
10517
10569
|
{ client_session: [] },
|
|
10518
10570
|
{ pat_with_workspace: [] },
|
|
10571
|
+
{ console_session: [] },
|
|
10572
|
+
{ api_key: [] },
|
|
10519
10573
|
],
|
|
10520
10574
|
summary: '/thermostats/get',
|
|
10521
10575
|
tags: ['/thermostats'],
|
|
@@ -10565,9 +10619,10 @@ export default {
|
|
|
10565
10619
|
401: { description: 'Unauthorized' },
|
|
10566
10620
|
},
|
|
10567
10621
|
security: [
|
|
10568
|
-
{ api_key: [] },
|
|
10569
10622
|
{ client_session: [] },
|
|
10570
10623
|
{ pat_with_workspace: [] },
|
|
10624
|
+
{ console_session: [] },
|
|
10625
|
+
{ api_key: [] },
|
|
10571
10626
|
],
|
|
10572
10627
|
summary: '/thermostats/heat',
|
|
10573
10628
|
tags: ['/thermostats'],
|
|
@@ -10619,9 +10674,10 @@ export default {
|
|
|
10619
10674
|
401: { description: 'Unauthorized' },
|
|
10620
10675
|
},
|
|
10621
10676
|
security: [
|
|
10622
|
-
{ api_key: [] },
|
|
10623
10677
|
{ client_session: [] },
|
|
10624
10678
|
{ pat_with_workspace: [] },
|
|
10679
|
+
{ console_session: [] },
|
|
10680
|
+
{ api_key: [] },
|
|
10625
10681
|
],
|
|
10626
10682
|
summary: '/thermostats/heat_cool',
|
|
10627
10683
|
tags: ['/thermostats'],
|
|
@@ -10891,9 +10947,10 @@ export default {
|
|
|
10891
10947
|
401: { description: 'Unauthorized' },
|
|
10892
10948
|
},
|
|
10893
10949
|
security: [
|
|
10894
|
-
{ api_key: [] },
|
|
10895
10950
|
{ client_session: [] },
|
|
10896
10951
|
{ pat_with_workspace: [] },
|
|
10952
|
+
{ console_session: [] },
|
|
10953
|
+
{ api_key: [] },
|
|
10897
10954
|
],
|
|
10898
10955
|
summary: '/thermostats/off',
|
|
10899
10956
|
tags: ['/thermostats'],
|
|
@@ -10943,9 +11000,10 @@ export default {
|
|
|
10943
11000
|
401: { description: 'Unauthorized' },
|
|
10944
11001
|
},
|
|
10945
11002
|
security: [
|
|
10946
|
-
{ api_key: [] },
|
|
10947
11003
|
{ client_session: [] },
|
|
10948
11004
|
{ pat_with_workspace: [] },
|
|
11005
|
+
{ console_session: [] },
|
|
11006
|
+
{ api_key: [] },
|
|
10949
11007
|
],
|
|
10950
11008
|
summary: '/thermostats/set_fan_mode',
|
|
10951
11009
|
tags: ['/thermostats'],
|