@seamapi/types 1.416.2 → 1.418.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 +244 -79
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +423 -4
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +131 -67
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +408 -4
- package/lib/seam/connect/openapi.js +94 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/devices/device.ts +202 -150
- package/src/lib/seam/connect/openapi.ts +102 -18
- package/src/lib/seam/connect/route-types.ts +12 -0
|
@@ -69,6 +69,7 @@ declare const _default: {
|
|
|
69
69
|
};
|
|
70
70
|
required: string[];
|
|
71
71
|
type: string;
|
|
72
|
+
'x-variant-group-key'?: never;
|
|
72
73
|
} | {
|
|
73
74
|
description: string;
|
|
74
75
|
properties: {
|
|
@@ -101,6 +102,69 @@ declare const _default: {
|
|
|
101
102
|
};
|
|
102
103
|
required: string[];
|
|
103
104
|
type: string;
|
|
105
|
+
'x-variant-group-key'?: never;
|
|
106
|
+
} | {
|
|
107
|
+
description: string;
|
|
108
|
+
properties: {
|
|
109
|
+
created_at: {
|
|
110
|
+
description: string;
|
|
111
|
+
format: string;
|
|
112
|
+
type: string;
|
|
113
|
+
};
|
|
114
|
+
error_code: {
|
|
115
|
+
description: string;
|
|
116
|
+
enum: string[];
|
|
117
|
+
type: string;
|
|
118
|
+
};
|
|
119
|
+
is_connected_account_error: {
|
|
120
|
+
description: string;
|
|
121
|
+
enum: boolean[];
|
|
122
|
+
type: string;
|
|
123
|
+
};
|
|
124
|
+
is_device_error: {
|
|
125
|
+
description: string;
|
|
126
|
+
enum: boolean[];
|
|
127
|
+
type: string;
|
|
128
|
+
};
|
|
129
|
+
message: {
|
|
130
|
+
description: string;
|
|
131
|
+
type: string;
|
|
132
|
+
};
|
|
133
|
+
is_access_code_error?: never;
|
|
134
|
+
is_bridge_error?: never;
|
|
135
|
+
};
|
|
136
|
+
required: string[];
|
|
137
|
+
type: string;
|
|
138
|
+
'x-variant-group-key': string;
|
|
139
|
+
} | {
|
|
140
|
+
description: string;
|
|
141
|
+
properties: {
|
|
142
|
+
created_at: {
|
|
143
|
+
description: string;
|
|
144
|
+
format: string;
|
|
145
|
+
type: string;
|
|
146
|
+
};
|
|
147
|
+
error_code: {
|
|
148
|
+
description: string;
|
|
149
|
+
enum: string[];
|
|
150
|
+
type: string;
|
|
151
|
+
};
|
|
152
|
+
is_device_error: {
|
|
153
|
+
description: string;
|
|
154
|
+
enum: boolean[];
|
|
155
|
+
type: string;
|
|
156
|
+
};
|
|
157
|
+
message: {
|
|
158
|
+
description: string;
|
|
159
|
+
type: string;
|
|
160
|
+
};
|
|
161
|
+
is_access_code_error?: never;
|
|
162
|
+
is_connected_account_error?: never;
|
|
163
|
+
is_bridge_error?: never;
|
|
164
|
+
};
|
|
165
|
+
required: string[];
|
|
166
|
+
type: string;
|
|
167
|
+
'x-variant-group-key'?: never;
|
|
104
168
|
} | {
|
|
105
169
|
description: string;
|
|
106
170
|
properties: {
|
|
@@ -129,6 +193,7 @@ declare const _default: {
|
|
|
129
193
|
};
|
|
130
194
|
required: string[];
|
|
131
195
|
type: string;
|
|
196
|
+
'x-variant-group-key': string;
|
|
132
197
|
} | {
|
|
133
198
|
description: string;
|
|
134
199
|
properties: {
|
|
@@ -160,6 +225,7 @@ declare const _default: {
|
|
|
160
225
|
};
|
|
161
226
|
required: string[];
|
|
162
227
|
type: string;
|
|
228
|
+
'x-variant-group-key'?: never;
|
|
163
229
|
})[];
|
|
164
230
|
};
|
|
165
231
|
type: string;
|
|
@@ -903,6 +969,11 @@ declare const _default: {
|
|
|
903
969
|
required: string[];
|
|
904
970
|
type: string;
|
|
905
971
|
};
|
|
972
|
+
connected_account_id: {
|
|
973
|
+
description: string;
|
|
974
|
+
format: string;
|
|
975
|
+
type: string;
|
|
976
|
+
};
|
|
906
977
|
created_at: {
|
|
907
978
|
description: string;
|
|
908
979
|
format: string;
|
|
@@ -4237,6 +4308,39 @@ declare const _default: {
|
|
|
4237
4308
|
};
|
|
4238
4309
|
required: string[];
|
|
4239
4310
|
type: string;
|
|
4311
|
+
'x-variant-group-key'?: never;
|
|
4312
|
+
} | {
|
|
4313
|
+
description: string;
|
|
4314
|
+
properties: {
|
|
4315
|
+
created_at: {
|
|
4316
|
+
description: string;
|
|
4317
|
+
format: string;
|
|
4318
|
+
type: string;
|
|
4319
|
+
};
|
|
4320
|
+
error_code: {
|
|
4321
|
+
description: string;
|
|
4322
|
+
enum: string[];
|
|
4323
|
+
type: string;
|
|
4324
|
+
};
|
|
4325
|
+
is_connected_account_error: {
|
|
4326
|
+
description: string;
|
|
4327
|
+
enum: boolean[];
|
|
4328
|
+
type: string;
|
|
4329
|
+
};
|
|
4330
|
+
is_device_error: {
|
|
4331
|
+
description: string;
|
|
4332
|
+
enum: boolean[];
|
|
4333
|
+
type: string;
|
|
4334
|
+
};
|
|
4335
|
+
message: {
|
|
4336
|
+
description: string;
|
|
4337
|
+
type: string;
|
|
4338
|
+
};
|
|
4339
|
+
is_bridge_error?: never;
|
|
4340
|
+
};
|
|
4341
|
+
required: string[];
|
|
4342
|
+
type: string;
|
|
4343
|
+
'x-variant-group-key': string;
|
|
4240
4344
|
} | {
|
|
4241
4345
|
description: string;
|
|
4242
4346
|
properties: {
|
|
@@ -4264,6 +4368,35 @@ declare const _default: {
|
|
|
4264
4368
|
};
|
|
4265
4369
|
required: string[];
|
|
4266
4370
|
type: string;
|
|
4371
|
+
'x-variant-group-key'?: never;
|
|
4372
|
+
} | {
|
|
4373
|
+
description: string;
|
|
4374
|
+
properties: {
|
|
4375
|
+
created_at: {
|
|
4376
|
+
description: string;
|
|
4377
|
+
format: string;
|
|
4378
|
+
type: string;
|
|
4379
|
+
};
|
|
4380
|
+
error_code: {
|
|
4381
|
+
description: string;
|
|
4382
|
+
enum: string[];
|
|
4383
|
+
type: string;
|
|
4384
|
+
};
|
|
4385
|
+
is_device_error: {
|
|
4386
|
+
description: string;
|
|
4387
|
+
enum: boolean[];
|
|
4388
|
+
type: string;
|
|
4389
|
+
};
|
|
4390
|
+
message: {
|
|
4391
|
+
description: string;
|
|
4392
|
+
type: string;
|
|
4393
|
+
};
|
|
4394
|
+
is_connected_account_error?: never;
|
|
4395
|
+
is_bridge_error?: never;
|
|
4396
|
+
};
|
|
4397
|
+
required: string[];
|
|
4398
|
+
type: string;
|
|
4399
|
+
'x-variant-group-key': string;
|
|
4267
4400
|
} | {
|
|
4268
4401
|
description: string;
|
|
4269
4402
|
properties: {
|
|
@@ -4294,9 +4427,33 @@ declare const _default: {
|
|
|
4294
4427
|
};
|
|
4295
4428
|
required: string[];
|
|
4296
4429
|
type: string;
|
|
4430
|
+
'x-variant-group-key'?: never;
|
|
4297
4431
|
})[];
|
|
4298
4432
|
};
|
|
4299
4433
|
type: string;
|
|
4434
|
+
'x-variant-groups': {
|
|
4435
|
+
access_codes: {
|
|
4436
|
+
name: string;
|
|
4437
|
+
};
|
|
4438
|
+
hardware: {
|
|
4439
|
+
name: string;
|
|
4440
|
+
};
|
|
4441
|
+
locks: {
|
|
4442
|
+
name: string;
|
|
4443
|
+
};
|
|
4444
|
+
noise_sensors: {
|
|
4445
|
+
name: string;
|
|
4446
|
+
};
|
|
4447
|
+
phones: {
|
|
4448
|
+
name: string;
|
|
4449
|
+
};
|
|
4450
|
+
provider_metadata: {
|
|
4451
|
+
name: string;
|
|
4452
|
+
};
|
|
4453
|
+
thermostats: {
|
|
4454
|
+
name: string;
|
|
4455
|
+
};
|
|
4456
|
+
};
|
|
4300
4457
|
};
|
|
4301
4458
|
is_managed: {
|
|
4302
4459
|
description: string;
|
|
@@ -6263,7 +6420,7 @@ declare const _default: {
|
|
|
6263
6420
|
discriminator: {
|
|
6264
6421
|
propertyName: string;
|
|
6265
6422
|
};
|
|
6266
|
-
oneOf: {
|
|
6423
|
+
oneOf: ({
|
|
6267
6424
|
description: string;
|
|
6268
6425
|
properties: {
|
|
6269
6426
|
created_at: {
|
|
@@ -6283,9 +6440,54 @@ declare const _default: {
|
|
|
6283
6440
|
};
|
|
6284
6441
|
required: string[];
|
|
6285
6442
|
type: string;
|
|
6286
|
-
|
|
6443
|
+
'x-variant-group-key': string;
|
|
6444
|
+
} | {
|
|
6445
|
+
description: string;
|
|
6446
|
+
properties: {
|
|
6447
|
+
created_at: {
|
|
6448
|
+
description: string;
|
|
6449
|
+
format: string;
|
|
6450
|
+
type: string;
|
|
6451
|
+
};
|
|
6452
|
+
message: {
|
|
6453
|
+
description: string;
|
|
6454
|
+
type: string;
|
|
6455
|
+
};
|
|
6456
|
+
warning_code: {
|
|
6457
|
+
description: string;
|
|
6458
|
+
enum: string[];
|
|
6459
|
+
type: string;
|
|
6460
|
+
};
|
|
6461
|
+
};
|
|
6462
|
+
required: string[];
|
|
6463
|
+
type: string;
|
|
6464
|
+
'x-variant-group-key'?: never;
|
|
6465
|
+
})[];
|
|
6287
6466
|
};
|
|
6288
6467
|
type: string;
|
|
6468
|
+
'x-variant-groups': {
|
|
6469
|
+
access_codes: {
|
|
6470
|
+
name: string;
|
|
6471
|
+
};
|
|
6472
|
+
hardware: {
|
|
6473
|
+
name: string;
|
|
6474
|
+
};
|
|
6475
|
+
locks: {
|
|
6476
|
+
name: string;
|
|
6477
|
+
};
|
|
6478
|
+
noise_sensors: {
|
|
6479
|
+
name: string;
|
|
6480
|
+
};
|
|
6481
|
+
phones: {
|
|
6482
|
+
name: string;
|
|
6483
|
+
};
|
|
6484
|
+
provider_metadata: {
|
|
6485
|
+
name: string;
|
|
6486
|
+
};
|
|
6487
|
+
thermostats: {
|
|
6488
|
+
name: string;
|
|
6489
|
+
};
|
|
6490
|
+
};
|
|
6289
6491
|
};
|
|
6290
6492
|
workspace_id: {
|
|
6291
6493
|
description: string;
|
|
@@ -9969,6 +10171,11 @@ declare const _default: {
|
|
|
9969
10171
|
required: string[];
|
|
9970
10172
|
type: string;
|
|
9971
10173
|
};
|
|
10174
|
+
connected_account_id: {
|
|
10175
|
+
description: string;
|
|
10176
|
+
format: string;
|
|
10177
|
+
type: string;
|
|
10178
|
+
};
|
|
9972
10179
|
created_at: {
|
|
9973
10180
|
description: string;
|
|
9974
10181
|
format: string;
|
|
@@ -10623,6 +10830,40 @@ declare const _default: {
|
|
|
10623
10830
|
};
|
|
10624
10831
|
required: string[];
|
|
10625
10832
|
type: string;
|
|
10833
|
+
'x-variant-group-key'?: never;
|
|
10834
|
+
} | {
|
|
10835
|
+
description: string;
|
|
10836
|
+
properties: {
|
|
10837
|
+
created_at: {
|
|
10838
|
+
description: string;
|
|
10839
|
+
format: string;
|
|
10840
|
+
type: string;
|
|
10841
|
+
};
|
|
10842
|
+
error_code: {
|
|
10843
|
+
description: string;
|
|
10844
|
+
enum: string[];
|
|
10845
|
+
type: string;
|
|
10846
|
+
};
|
|
10847
|
+
is_connected_account_error: {
|
|
10848
|
+
description: string;
|
|
10849
|
+
enum: boolean[];
|
|
10850
|
+
type: string;
|
|
10851
|
+
};
|
|
10852
|
+
is_device_error: {
|
|
10853
|
+
description: string;
|
|
10854
|
+
enum: boolean[];
|
|
10855
|
+
type: string;
|
|
10856
|
+
};
|
|
10857
|
+
message: {
|
|
10858
|
+
description: string;
|
|
10859
|
+
type: string;
|
|
10860
|
+
};
|
|
10861
|
+
is_access_code_error?: never;
|
|
10862
|
+
is_bridge_error?: never;
|
|
10863
|
+
};
|
|
10864
|
+
required: string[];
|
|
10865
|
+
type: string;
|
|
10866
|
+
'x-variant-group-key'?: never;
|
|
10626
10867
|
} | {
|
|
10627
10868
|
description: string;
|
|
10628
10869
|
properties: {
|
|
@@ -10655,6 +10896,7 @@ declare const _default: {
|
|
|
10655
10896
|
};
|
|
10656
10897
|
required: string[];
|
|
10657
10898
|
type: string;
|
|
10899
|
+
'x-variant-group-key': string;
|
|
10658
10900
|
} | {
|
|
10659
10901
|
description: string;
|
|
10660
10902
|
properties: {
|
|
@@ -10683,6 +10925,36 @@ declare const _default: {
|
|
|
10683
10925
|
};
|
|
10684
10926
|
required: string[];
|
|
10685
10927
|
type: string;
|
|
10928
|
+
'x-variant-group-key'?: never;
|
|
10929
|
+
} | {
|
|
10930
|
+
description: string;
|
|
10931
|
+
properties: {
|
|
10932
|
+
created_at: {
|
|
10933
|
+
description: string;
|
|
10934
|
+
format: string;
|
|
10935
|
+
type: string;
|
|
10936
|
+
};
|
|
10937
|
+
error_code: {
|
|
10938
|
+
description: string;
|
|
10939
|
+
enum: string[];
|
|
10940
|
+
type: string;
|
|
10941
|
+
};
|
|
10942
|
+
is_device_error: {
|
|
10943
|
+
description: string;
|
|
10944
|
+
enum: boolean[];
|
|
10945
|
+
type: string;
|
|
10946
|
+
};
|
|
10947
|
+
message: {
|
|
10948
|
+
description: string;
|
|
10949
|
+
type: string;
|
|
10950
|
+
};
|
|
10951
|
+
is_access_code_error?: never;
|
|
10952
|
+
is_connected_account_error?: never;
|
|
10953
|
+
is_bridge_error?: never;
|
|
10954
|
+
};
|
|
10955
|
+
required: string[];
|
|
10956
|
+
type: string;
|
|
10957
|
+
'x-variant-group-key': string;
|
|
10686
10958
|
} | {
|
|
10687
10959
|
description: string;
|
|
10688
10960
|
properties: {
|
|
@@ -10714,6 +10986,7 @@ declare const _default: {
|
|
|
10714
10986
|
};
|
|
10715
10987
|
required: string[];
|
|
10716
10988
|
type: string;
|
|
10989
|
+
'x-variant-group-key'?: never;
|
|
10717
10990
|
})[];
|
|
10718
10991
|
};
|
|
10719
10992
|
type: string;
|
|
@@ -11689,6 +11962,39 @@ declare const _default: {
|
|
|
11689
11962
|
};
|
|
11690
11963
|
required: string[];
|
|
11691
11964
|
type: string;
|
|
11965
|
+
'x-variant-group-key'?: never;
|
|
11966
|
+
} | {
|
|
11967
|
+
description: string;
|
|
11968
|
+
properties: {
|
|
11969
|
+
created_at: {
|
|
11970
|
+
description: string;
|
|
11971
|
+
format: string;
|
|
11972
|
+
type: string;
|
|
11973
|
+
};
|
|
11974
|
+
error_code: {
|
|
11975
|
+
description: string;
|
|
11976
|
+
enum: string[];
|
|
11977
|
+
type: string;
|
|
11978
|
+
};
|
|
11979
|
+
is_connected_account_error: {
|
|
11980
|
+
description: string;
|
|
11981
|
+
enum: boolean[];
|
|
11982
|
+
type: string;
|
|
11983
|
+
};
|
|
11984
|
+
is_device_error: {
|
|
11985
|
+
description: string;
|
|
11986
|
+
enum: boolean[];
|
|
11987
|
+
type: string;
|
|
11988
|
+
};
|
|
11989
|
+
message: {
|
|
11990
|
+
description: string;
|
|
11991
|
+
type: string;
|
|
11992
|
+
};
|
|
11993
|
+
is_bridge_error?: never;
|
|
11994
|
+
};
|
|
11995
|
+
required: string[];
|
|
11996
|
+
type: string;
|
|
11997
|
+
'x-variant-group-key': string;
|
|
11692
11998
|
} | {
|
|
11693
11999
|
description: string;
|
|
11694
12000
|
properties: {
|
|
@@ -11716,6 +12022,35 @@ declare const _default: {
|
|
|
11716
12022
|
};
|
|
11717
12023
|
required: string[];
|
|
11718
12024
|
type: string;
|
|
12025
|
+
'x-variant-group-key'?: never;
|
|
12026
|
+
} | {
|
|
12027
|
+
description: string;
|
|
12028
|
+
properties: {
|
|
12029
|
+
created_at: {
|
|
12030
|
+
description: string;
|
|
12031
|
+
format: string;
|
|
12032
|
+
type: string;
|
|
12033
|
+
};
|
|
12034
|
+
error_code: {
|
|
12035
|
+
description: string;
|
|
12036
|
+
enum: string[];
|
|
12037
|
+
type: string;
|
|
12038
|
+
};
|
|
12039
|
+
is_device_error: {
|
|
12040
|
+
description: string;
|
|
12041
|
+
enum: boolean[];
|
|
12042
|
+
type: string;
|
|
12043
|
+
};
|
|
12044
|
+
message: {
|
|
12045
|
+
description: string;
|
|
12046
|
+
type: string;
|
|
12047
|
+
};
|
|
12048
|
+
is_connected_account_error?: never;
|
|
12049
|
+
is_bridge_error?: never;
|
|
12050
|
+
};
|
|
12051
|
+
required: string[];
|
|
12052
|
+
type: string;
|
|
12053
|
+
'x-variant-group-key': string;
|
|
11719
12054
|
} | {
|
|
11720
12055
|
description: string;
|
|
11721
12056
|
properties: {
|
|
@@ -11746,9 +12081,33 @@ declare const _default: {
|
|
|
11746
12081
|
};
|
|
11747
12082
|
required: string[];
|
|
11748
12083
|
type: string;
|
|
12084
|
+
'x-variant-group-key'?: never;
|
|
11749
12085
|
})[];
|
|
11750
12086
|
};
|
|
11751
12087
|
type: string;
|
|
12088
|
+
'x-variant-groups': {
|
|
12089
|
+
access_codes: {
|
|
12090
|
+
name: string;
|
|
12091
|
+
};
|
|
12092
|
+
hardware: {
|
|
12093
|
+
name: string;
|
|
12094
|
+
};
|
|
12095
|
+
locks: {
|
|
12096
|
+
name: string;
|
|
12097
|
+
};
|
|
12098
|
+
noise_sensors: {
|
|
12099
|
+
name: string;
|
|
12100
|
+
};
|
|
12101
|
+
phones: {
|
|
12102
|
+
name: string;
|
|
12103
|
+
};
|
|
12104
|
+
provider_metadata: {
|
|
12105
|
+
name: string;
|
|
12106
|
+
};
|
|
12107
|
+
thermostats: {
|
|
12108
|
+
name: string;
|
|
12109
|
+
};
|
|
12110
|
+
};
|
|
11752
12111
|
};
|
|
11753
12112
|
is_managed: {
|
|
11754
12113
|
enum: boolean[];
|
|
@@ -11933,7 +12292,7 @@ declare const _default: {
|
|
|
11933
12292
|
discriminator: {
|
|
11934
12293
|
propertyName: string;
|
|
11935
12294
|
};
|
|
11936
|
-
oneOf: {
|
|
12295
|
+
oneOf: ({
|
|
11937
12296
|
description: string;
|
|
11938
12297
|
properties: {
|
|
11939
12298
|
created_at: {
|
|
@@ -11953,9 +12312,54 @@ declare const _default: {
|
|
|
11953
12312
|
};
|
|
11954
12313
|
required: string[];
|
|
11955
12314
|
type: string;
|
|
11956
|
-
|
|
12315
|
+
'x-variant-group-key': string;
|
|
12316
|
+
} | {
|
|
12317
|
+
description: string;
|
|
12318
|
+
properties: {
|
|
12319
|
+
created_at: {
|
|
12320
|
+
description: string;
|
|
12321
|
+
format: string;
|
|
12322
|
+
type: string;
|
|
12323
|
+
};
|
|
12324
|
+
message: {
|
|
12325
|
+
description: string;
|
|
12326
|
+
type: string;
|
|
12327
|
+
};
|
|
12328
|
+
warning_code: {
|
|
12329
|
+
description: string;
|
|
12330
|
+
enum: string[];
|
|
12331
|
+
type: string;
|
|
12332
|
+
};
|
|
12333
|
+
};
|
|
12334
|
+
required: string[];
|
|
12335
|
+
type: string;
|
|
12336
|
+
'x-variant-group-key'?: never;
|
|
12337
|
+
})[];
|
|
11957
12338
|
};
|
|
11958
12339
|
type: string;
|
|
12340
|
+
'x-variant-groups': {
|
|
12341
|
+
access_codes: {
|
|
12342
|
+
name: string;
|
|
12343
|
+
};
|
|
12344
|
+
hardware: {
|
|
12345
|
+
name: string;
|
|
12346
|
+
};
|
|
12347
|
+
locks: {
|
|
12348
|
+
name: string;
|
|
12349
|
+
};
|
|
12350
|
+
noise_sensors: {
|
|
12351
|
+
name: string;
|
|
12352
|
+
};
|
|
12353
|
+
phones: {
|
|
12354
|
+
name: string;
|
|
12355
|
+
};
|
|
12356
|
+
provider_metadata: {
|
|
12357
|
+
name: string;
|
|
12358
|
+
};
|
|
12359
|
+
thermostats: {
|
|
12360
|
+
name: string;
|
|
12361
|
+
};
|
|
12362
|
+
};
|
|
11959
12363
|
};
|
|
11960
12364
|
workspace_id: {
|
|
11961
12365
|
description: string;
|