@seamapi/types 1.96.1 → 1.98.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 +142 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +268 -23
- package/lib/seam/connect/openapi.d.ts +151 -0
- package/lib/seam/connect/openapi.js +127 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +117 -23
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +21 -0
- package/lib/seam/connect/unstable/models/acs/credential.js +4 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +38 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +8 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js +1 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +73 -3
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +127 -0
- package/src/lib/seam/connect/route-types.ts +149 -0
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +9 -0
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +9 -0
- package/src/lib/seam/connect/unstable/models/devices/device-type.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -616,7 +616,8 @@ var openapi_default = {
|
|
|
616
616
|
"igloohome_lock",
|
|
617
617
|
"hubitat_lock",
|
|
618
618
|
"four_suites_door",
|
|
619
|
-
"dormakaba_oracode_door"
|
|
619
|
+
"dormakaba_oracode_door",
|
|
620
|
+
"tedee_lock"
|
|
620
621
|
],
|
|
621
622
|
type: "string"
|
|
622
623
|
},
|
|
@@ -1132,6 +1133,25 @@ var openapi_default = {
|
|
|
1132
1133
|
required: ["device_id", "device_name"],
|
|
1133
1134
|
type: "object"
|
|
1134
1135
|
},
|
|
1136
|
+
tedee_metadata: {
|
|
1137
|
+
properties: {
|
|
1138
|
+
bridge_id: { type: "number" },
|
|
1139
|
+
bridge_name: { type: "string" },
|
|
1140
|
+
device_id: { type: "number" },
|
|
1141
|
+
device_model: { type: "string" },
|
|
1142
|
+
device_name: { type: "string" },
|
|
1143
|
+
serial_number: { type: "string" }
|
|
1144
|
+
},
|
|
1145
|
+
required: [
|
|
1146
|
+
"device_id",
|
|
1147
|
+
"serial_number",
|
|
1148
|
+
"device_name",
|
|
1149
|
+
"device_model",
|
|
1150
|
+
"bridge_id",
|
|
1151
|
+
"bridge_name"
|
|
1152
|
+
],
|
|
1153
|
+
type: "object"
|
|
1154
|
+
},
|
|
1135
1155
|
ttlock_metadata: {
|
|
1136
1156
|
properties: {
|
|
1137
1157
|
lock_alias: { type: "string" },
|
|
@@ -2021,7 +2041,8 @@ var openapi_default = {
|
|
|
2021
2041
|
"igloohome_lock",
|
|
2022
2042
|
"hubitat_lock",
|
|
2023
2043
|
"four_suites_door",
|
|
2024
|
-
"dormakaba_oracode_door"
|
|
2044
|
+
"dormakaba_oracode_door",
|
|
2045
|
+
"tedee_lock"
|
|
2025
2046
|
],
|
|
2026
2047
|
type: "string"
|
|
2027
2048
|
},
|
|
@@ -3850,6 +3871,15 @@ var openapi_default = {
|
|
|
3850
3871
|
external_type_display_name: { type: "string" },
|
|
3851
3872
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
3852
3873
|
starts_at: { type: "string" },
|
|
3874
|
+
visionline_metadata: {
|
|
3875
|
+
properties: {
|
|
3876
|
+
joiner_acs_credential_ids: {
|
|
3877
|
+
items: { format: "uuid", type: "string" },
|
|
3878
|
+
type: "array"
|
|
3879
|
+
}
|
|
3880
|
+
},
|
|
3881
|
+
type: "object"
|
|
3882
|
+
},
|
|
3853
3883
|
workspace_id: { format: "uuid", type: "string" }
|
|
3854
3884
|
},
|
|
3855
3885
|
required: [
|
|
@@ -3934,6 +3964,15 @@ var openapi_default = {
|
|
|
3934
3964
|
external_type_display_name: { type: "string" },
|
|
3935
3965
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
3936
3966
|
starts_at: { type: "string" },
|
|
3967
|
+
visionline_metadata: {
|
|
3968
|
+
properties: {
|
|
3969
|
+
joiner_acs_credential_ids: {
|
|
3970
|
+
items: { format: "uuid", type: "string" },
|
|
3971
|
+
type: "array"
|
|
3972
|
+
}
|
|
3973
|
+
},
|
|
3974
|
+
type: "object"
|
|
3975
|
+
},
|
|
3937
3976
|
workspace_id: { format: "uuid", type: "string" }
|
|
3938
3977
|
},
|
|
3939
3978
|
required: [
|
|
@@ -4005,7 +4044,11 @@ var openapi_default = {
|
|
|
4005
4044
|
enum: ["TLCode", "rfid48"],
|
|
4006
4045
|
type: "string"
|
|
4007
4046
|
},
|
|
4008
|
-
is_override_key: { type: "boolean" }
|
|
4047
|
+
is_override_key: { type: "boolean" },
|
|
4048
|
+
joiner_acs_credential_ids: {
|
|
4049
|
+
items: { format: "uuid", type: "string" },
|
|
4050
|
+
type: "array"
|
|
4051
|
+
}
|
|
4009
4052
|
},
|
|
4010
4053
|
type: "object"
|
|
4011
4054
|
}
|
|
@@ -4051,6 +4094,15 @@ var openapi_default = {
|
|
|
4051
4094
|
external_type_display_name: { type: "string" },
|
|
4052
4095
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4053
4096
|
starts_at: { type: "string" },
|
|
4097
|
+
visionline_metadata: {
|
|
4098
|
+
properties: {
|
|
4099
|
+
joiner_acs_credential_ids: {
|
|
4100
|
+
items: { format: "uuid", type: "string" },
|
|
4101
|
+
type: "array"
|
|
4102
|
+
}
|
|
4103
|
+
},
|
|
4104
|
+
type: "object"
|
|
4105
|
+
},
|
|
4054
4106
|
workspace_id: { format: "uuid", type: "string" }
|
|
4055
4107
|
},
|
|
4056
4108
|
required: [
|
|
@@ -4180,6 +4232,15 @@ var openapi_default = {
|
|
|
4180
4232
|
external_type_display_name: { type: "string" },
|
|
4181
4233
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4182
4234
|
starts_at: { type: "string" },
|
|
4235
|
+
visionline_metadata: {
|
|
4236
|
+
properties: {
|
|
4237
|
+
joiner_acs_credential_ids: {
|
|
4238
|
+
items: { format: "uuid", type: "string" },
|
|
4239
|
+
type: "array"
|
|
4240
|
+
}
|
|
4241
|
+
},
|
|
4242
|
+
type: "object"
|
|
4243
|
+
},
|
|
4183
4244
|
workspace_id: { format: "uuid", type: "string" }
|
|
4184
4245
|
},
|
|
4185
4246
|
required: [
|
|
@@ -4293,6 +4354,15 @@ var openapi_default = {
|
|
|
4293
4354
|
external_type_display_name: { type: "string" },
|
|
4294
4355
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4295
4356
|
starts_at: { type: "string" },
|
|
4357
|
+
visionline_metadata: {
|
|
4358
|
+
properties: {
|
|
4359
|
+
joiner_acs_credential_ids: {
|
|
4360
|
+
items: { format: "uuid", type: "string" },
|
|
4361
|
+
type: "array"
|
|
4362
|
+
}
|
|
4363
|
+
},
|
|
4364
|
+
type: "object"
|
|
4365
|
+
},
|
|
4296
4366
|
workspace_id: { format: "uuid", type: "string" }
|
|
4297
4367
|
},
|
|
4298
4368
|
required: [
|
|
@@ -4383,6 +4453,15 @@ var openapi_default = {
|
|
|
4383
4453
|
external_type_display_name: { type: "string" },
|
|
4384
4454
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4385
4455
|
starts_at: { type: "string" },
|
|
4456
|
+
visionline_metadata: {
|
|
4457
|
+
properties: {
|
|
4458
|
+
joiner_acs_credential_ids: {
|
|
4459
|
+
items: { format: "uuid", type: "string" },
|
|
4460
|
+
type: "array"
|
|
4461
|
+
}
|
|
4462
|
+
},
|
|
4463
|
+
type: "object"
|
|
4464
|
+
},
|
|
4386
4465
|
workspace_id: { format: "uuid", type: "string" }
|
|
4387
4466
|
},
|
|
4388
4467
|
required: [
|
|
@@ -4467,6 +4546,15 @@ var openapi_default = {
|
|
|
4467
4546
|
external_type_display_name: { type: "string" },
|
|
4468
4547
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4469
4548
|
starts_at: { type: "string" },
|
|
4549
|
+
visionline_metadata: {
|
|
4550
|
+
properties: {
|
|
4551
|
+
joiner_acs_credential_ids: {
|
|
4552
|
+
items: { format: "uuid", type: "string" },
|
|
4553
|
+
type: "array"
|
|
4554
|
+
}
|
|
4555
|
+
},
|
|
4556
|
+
type: "object"
|
|
4557
|
+
},
|
|
4470
4558
|
workspace_id: { format: "uuid", type: "string" }
|
|
4471
4559
|
},
|
|
4472
4560
|
required: [
|
|
@@ -4554,6 +4642,15 @@ var openapi_default = {
|
|
|
4554
4642
|
external_type_display_name: { type: "string" },
|
|
4555
4643
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4556
4644
|
starts_at: { type: "string" },
|
|
4645
|
+
visionline_metadata: {
|
|
4646
|
+
properties: {
|
|
4647
|
+
joiner_acs_credential_ids: {
|
|
4648
|
+
items: { format: "uuid", type: "string" },
|
|
4649
|
+
type: "array"
|
|
4650
|
+
}
|
|
4651
|
+
},
|
|
4652
|
+
type: "object"
|
|
4653
|
+
},
|
|
4557
4654
|
workspace_id: { format: "uuid", type: "string" }
|
|
4558
4655
|
},
|
|
4559
4656
|
required: [
|
|
@@ -4638,6 +4735,15 @@ var openapi_default = {
|
|
|
4638
4735
|
external_type_display_name: { type: "string" },
|
|
4639
4736
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4640
4737
|
starts_at: { type: "string" },
|
|
4738
|
+
visionline_metadata: {
|
|
4739
|
+
properties: {
|
|
4740
|
+
joiner_acs_credential_ids: {
|
|
4741
|
+
items: { format: "uuid", type: "string" },
|
|
4742
|
+
type: "array"
|
|
4743
|
+
}
|
|
4744
|
+
},
|
|
4745
|
+
type: "object"
|
|
4746
|
+
},
|
|
4641
4747
|
workspace_id: { format: "uuid", type: "string" }
|
|
4642
4748
|
},
|
|
4643
4749
|
required: [
|
|
@@ -4958,6 +5064,15 @@ var openapi_default = {
|
|
|
4958
5064
|
external_type_display_name: { type: "string" },
|
|
4959
5065
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4960
5066
|
starts_at: { type: "string" },
|
|
5067
|
+
visionline_metadata: {
|
|
5068
|
+
properties: {
|
|
5069
|
+
joiner_acs_credential_ids: {
|
|
5070
|
+
items: { format: "uuid", type: "string" },
|
|
5071
|
+
type: "array"
|
|
5072
|
+
}
|
|
5073
|
+
},
|
|
5074
|
+
type: "object"
|
|
5075
|
+
},
|
|
4961
5076
|
workspace_id: { format: "uuid", type: "string" }
|
|
4962
5077
|
},
|
|
4963
5078
|
required: [
|
|
@@ -6997,7 +7112,8 @@ var openapi_default = {
|
|
|
6997
7112
|
"igloohome_lock",
|
|
6998
7113
|
"hubitat_lock",
|
|
6999
7114
|
"four_suites_door",
|
|
7000
|
-
"dormakaba_oracode_door"
|
|
7115
|
+
"dormakaba_oracode_door",
|
|
7116
|
+
"tedee_lock"
|
|
7001
7117
|
],
|
|
7002
7118
|
type: "string"
|
|
7003
7119
|
},
|
|
@@ -7041,7 +7157,8 @@ var openapi_default = {
|
|
|
7041
7157
|
"igloohome_lock",
|
|
7042
7158
|
"hubitat_lock",
|
|
7043
7159
|
"four_suites_door",
|
|
7044
|
-
"dormakaba_oracode_door"
|
|
7160
|
+
"dormakaba_oracode_door",
|
|
7161
|
+
"tedee_lock"
|
|
7045
7162
|
],
|
|
7046
7163
|
type: "string"
|
|
7047
7164
|
},
|
|
@@ -7095,7 +7212,8 @@ var openapi_default = {
|
|
|
7095
7212
|
"hubitat",
|
|
7096
7213
|
"controlbyweb",
|
|
7097
7214
|
"smartthings",
|
|
7098
|
-
"dormakaba_oracode"
|
|
7215
|
+
"dormakaba_oracode",
|
|
7216
|
+
"tedee"
|
|
7099
7217
|
],
|
|
7100
7218
|
type: "string"
|
|
7101
7219
|
},
|
|
@@ -7305,7 +7423,8 @@ var openapi_default = {
|
|
|
7305
7423
|
"igloohome_lock",
|
|
7306
7424
|
"hubitat_lock",
|
|
7307
7425
|
"four_suites_door",
|
|
7308
|
-
"dormakaba_oracode_door"
|
|
7426
|
+
"dormakaba_oracode_door",
|
|
7427
|
+
"tedee_lock"
|
|
7309
7428
|
],
|
|
7310
7429
|
type: "string"
|
|
7311
7430
|
},
|
|
@@ -7349,7 +7468,8 @@ var openapi_default = {
|
|
|
7349
7468
|
"igloohome_lock",
|
|
7350
7469
|
"hubitat_lock",
|
|
7351
7470
|
"four_suites_door",
|
|
7352
|
-
"dormakaba_oracode_door"
|
|
7471
|
+
"dormakaba_oracode_door",
|
|
7472
|
+
"tedee_lock"
|
|
7353
7473
|
],
|
|
7354
7474
|
type: "string"
|
|
7355
7475
|
},
|
|
@@ -7403,7 +7523,8 @@ var openapi_default = {
|
|
|
7403
7523
|
"hubitat",
|
|
7404
7524
|
"controlbyweb",
|
|
7405
7525
|
"smartthings",
|
|
7406
|
-
"dormakaba_oracode"
|
|
7526
|
+
"dormakaba_oracode",
|
|
7527
|
+
"tedee"
|
|
7407
7528
|
],
|
|
7408
7529
|
type: "string"
|
|
7409
7530
|
},
|
|
@@ -8215,7 +8336,8 @@ var openapi_default = {
|
|
|
8215
8336
|
"igloohome_lock",
|
|
8216
8337
|
"hubitat_lock",
|
|
8217
8338
|
"four_suites_door",
|
|
8218
|
-
"dormakaba_oracode_door"
|
|
8339
|
+
"dormakaba_oracode_door",
|
|
8340
|
+
"tedee_lock"
|
|
8219
8341
|
],
|
|
8220
8342
|
type: "string"
|
|
8221
8343
|
},
|
|
@@ -8259,7 +8381,8 @@ var openapi_default = {
|
|
|
8259
8381
|
"igloohome_lock",
|
|
8260
8382
|
"hubitat_lock",
|
|
8261
8383
|
"four_suites_door",
|
|
8262
|
-
"dormakaba_oracode_door"
|
|
8384
|
+
"dormakaba_oracode_door",
|
|
8385
|
+
"tedee_lock"
|
|
8263
8386
|
],
|
|
8264
8387
|
type: "string"
|
|
8265
8388
|
},
|
|
@@ -8313,7 +8436,8 @@ var openapi_default = {
|
|
|
8313
8436
|
"hubitat",
|
|
8314
8437
|
"controlbyweb",
|
|
8315
8438
|
"smartthings",
|
|
8316
|
-
"dormakaba_oracode"
|
|
8439
|
+
"dormakaba_oracode",
|
|
8440
|
+
"tedee"
|
|
8317
8441
|
],
|
|
8318
8442
|
type: "string"
|
|
8319
8443
|
},
|
|
@@ -9845,7 +9969,8 @@ var openapi_default = {
|
|
|
9845
9969
|
"igloohome_lock",
|
|
9846
9970
|
"hubitat_lock",
|
|
9847
9971
|
"four_suites_door",
|
|
9848
|
-
"dormakaba_oracode_door"
|
|
9972
|
+
"dormakaba_oracode_door",
|
|
9973
|
+
"tedee_lock"
|
|
9849
9974
|
],
|
|
9850
9975
|
type: "string"
|
|
9851
9976
|
},
|
|
@@ -9889,7 +10014,8 @@ var openapi_default = {
|
|
|
9889
10014
|
"igloohome_lock",
|
|
9890
10015
|
"hubitat_lock",
|
|
9891
10016
|
"four_suites_door",
|
|
9892
|
-
"dormakaba_oracode_door"
|
|
10017
|
+
"dormakaba_oracode_door",
|
|
10018
|
+
"tedee_lock"
|
|
9893
10019
|
],
|
|
9894
10020
|
type: "string"
|
|
9895
10021
|
},
|
|
@@ -9943,7 +10069,8 @@ var openapi_default = {
|
|
|
9943
10069
|
"hubitat",
|
|
9944
10070
|
"controlbyweb",
|
|
9945
10071
|
"smartthings",
|
|
9946
|
-
"dormakaba_oracode"
|
|
10072
|
+
"dormakaba_oracode",
|
|
10073
|
+
"tedee"
|
|
9947
10074
|
],
|
|
9948
10075
|
type: "string"
|
|
9949
10076
|
},
|