@seamapi/types 1.821.0 → 1.822.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 +31 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +188 -87
- package/dist/index.cjs +31 -13
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +20 -10
- package/lib/seam/connect/models/events/devices.d.ts +24 -12
- package/lib/seam/connect/models/events/devices.js +13 -7
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +12 -6
- package/lib/seam/connect/openapi.d.ts +100 -47
- package/lib/seam/connect/openapi.js +14 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -24
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/devices.ts +17 -7
- package/src/lib/seam/connect/openapi.ts +16 -6
- package/src/lib/seam/connect/route-types.ts +56 -24
package/dist/connect.d.cts
CHANGED
|
@@ -34020,7 +34020,8 @@ declare const batch: z.ZodObject<{
|
|
|
34020
34020
|
access_code_is_managed: z.ZodOptional<z.ZodBoolean>;
|
|
34021
34021
|
action_attempt_id: z.ZodOptional<z.ZodString>;
|
|
34022
34022
|
method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "remote"]>;
|
|
34023
|
-
|
|
34023
|
+
is_via_bluetooth: z.ZodOptional<z.ZodBoolean>;
|
|
34024
|
+
is_via_nfc: z.ZodOptional<z.ZodBoolean>;
|
|
34024
34025
|
}, "strip", z.ZodTypeAny, {
|
|
34025
34026
|
device_id: string;
|
|
34026
34027
|
workspace_id: string;
|
|
@@ -34036,7 +34037,8 @@ declare const batch: z.ZodObject<{
|
|
|
34036
34037
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34037
34038
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34038
34039
|
access_code_is_managed?: boolean | undefined;
|
|
34039
|
-
|
|
34040
|
+
is_via_bluetooth?: boolean | undefined;
|
|
34041
|
+
is_via_nfc?: boolean | undefined;
|
|
34040
34042
|
}, {
|
|
34041
34043
|
device_id: string;
|
|
34042
34044
|
workspace_id: string;
|
|
@@ -34052,7 +34054,8 @@ declare const batch: z.ZodObject<{
|
|
|
34052
34054
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34053
34055
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34054
34056
|
access_code_is_managed?: boolean | undefined;
|
|
34055
|
-
|
|
34057
|
+
is_via_bluetooth?: boolean | undefined;
|
|
34058
|
+
is_via_nfc?: boolean | undefined;
|
|
34056
34059
|
}>, z.ZodObject<{
|
|
34057
34060
|
event_id: z.ZodString;
|
|
34058
34061
|
workspace_id: z.ZodString;
|
|
@@ -34073,7 +34076,8 @@ declare const batch: z.ZodObject<{
|
|
|
34073
34076
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
34074
34077
|
acs_entrance_id: z.ZodOptional<z.ZodString>;
|
|
34075
34078
|
device_id: z.ZodOptional<z.ZodString>;
|
|
34076
|
-
|
|
34079
|
+
is_via_bluetooth: z.ZodOptional<z.ZodBoolean>;
|
|
34080
|
+
is_via_nfc: z.ZodOptional<z.ZodBoolean>;
|
|
34077
34081
|
}, "strip", z.ZodTypeAny, {
|
|
34078
34082
|
workspace_id: string;
|
|
34079
34083
|
created_at: string;
|
|
@@ -34093,7 +34097,8 @@ declare const batch: z.ZodObject<{
|
|
|
34093
34097
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34094
34098
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34095
34099
|
access_code_is_managed?: boolean | undefined;
|
|
34096
|
-
|
|
34100
|
+
is_via_bluetooth?: boolean | undefined;
|
|
34101
|
+
is_via_nfc?: boolean | undefined;
|
|
34097
34102
|
}, {
|
|
34098
34103
|
workspace_id: string;
|
|
34099
34104
|
created_at: string;
|
|
@@ -34113,7 +34118,8 @@ declare const batch: z.ZodObject<{
|
|
|
34113
34118
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34114
34119
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
34115
34120
|
access_code_is_managed?: boolean | undefined;
|
|
34116
|
-
|
|
34121
|
+
is_via_bluetooth?: boolean | undefined;
|
|
34122
|
+
is_via_nfc?: boolean | undefined;
|
|
34117
34123
|
}>, z.ZodObject<{
|
|
34118
34124
|
event_id: z.ZodString;
|
|
34119
34125
|
workspace_id: z.ZodString;
|
|
@@ -42349,7 +42355,8 @@ declare const batch: z.ZodObject<{
|
|
|
42349
42355
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
42350
42356
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
42351
42357
|
access_code_is_managed?: boolean | undefined;
|
|
42352
|
-
|
|
42358
|
+
is_via_bluetooth?: boolean | undefined;
|
|
42359
|
+
is_via_nfc?: boolean | undefined;
|
|
42353
42360
|
} | {
|
|
42354
42361
|
workspace_id: string;
|
|
42355
42362
|
created_at: string;
|
|
@@ -42369,7 +42376,8 @@ declare const batch: z.ZodObject<{
|
|
|
42369
42376
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
42370
42377
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
42371
42378
|
access_code_is_managed?: boolean | undefined;
|
|
42372
|
-
|
|
42379
|
+
is_via_bluetooth?: boolean | undefined;
|
|
42380
|
+
is_via_nfc?: boolean | undefined;
|
|
42373
42381
|
} | {
|
|
42374
42382
|
device_id: string;
|
|
42375
42383
|
workspace_id: string;
|
|
@@ -47307,7 +47315,8 @@ declare const batch: z.ZodObject<{
|
|
|
47307
47315
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
47308
47316
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
47309
47317
|
access_code_is_managed?: boolean | undefined;
|
|
47310
|
-
|
|
47318
|
+
is_via_bluetooth?: boolean | undefined;
|
|
47319
|
+
is_via_nfc?: boolean | undefined;
|
|
47311
47320
|
} | {
|
|
47312
47321
|
workspace_id: string;
|
|
47313
47322
|
created_at: string;
|
|
@@ -47327,7 +47336,8 @@ declare const batch: z.ZodObject<{
|
|
|
47327
47336
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
47328
47337
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
47329
47338
|
access_code_is_managed?: boolean | undefined;
|
|
47330
|
-
|
|
47339
|
+
is_via_bluetooth?: boolean | undefined;
|
|
47340
|
+
is_via_nfc?: boolean | undefined;
|
|
47331
47341
|
} | {
|
|
47332
47342
|
device_id: string;
|
|
47333
47343
|
workspace_id: string;
|
|
@@ -62356,7 +62366,8 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
62356
62366
|
access_code_is_managed: z.ZodOptional<z.ZodBoolean>;
|
|
62357
62367
|
action_attempt_id: z.ZodOptional<z.ZodString>;
|
|
62358
62368
|
method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "remote"]>;
|
|
62359
|
-
|
|
62369
|
+
is_via_bluetooth: z.ZodOptional<z.ZodBoolean>;
|
|
62370
|
+
is_via_nfc: z.ZodOptional<z.ZodBoolean>;
|
|
62360
62371
|
}, "strip", z.ZodTypeAny, {
|
|
62361
62372
|
device_id: string;
|
|
62362
62373
|
workspace_id: string;
|
|
@@ -62372,7 +62383,8 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
62372
62383
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
62373
62384
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
62374
62385
|
access_code_is_managed?: boolean | undefined;
|
|
62375
|
-
|
|
62386
|
+
is_via_bluetooth?: boolean | undefined;
|
|
62387
|
+
is_via_nfc?: boolean | undefined;
|
|
62376
62388
|
}, {
|
|
62377
62389
|
device_id: string;
|
|
62378
62390
|
workspace_id: string;
|
|
@@ -62388,7 +62400,8 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
62388
62400
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
62389
62401
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
62390
62402
|
access_code_is_managed?: boolean | undefined;
|
|
62391
|
-
|
|
62403
|
+
is_via_bluetooth?: boolean | undefined;
|
|
62404
|
+
is_via_nfc?: boolean | undefined;
|
|
62392
62405
|
}>, z.ZodObject<{
|
|
62393
62406
|
event_id: z.ZodString;
|
|
62394
62407
|
workspace_id: z.ZodString;
|
|
@@ -62409,7 +62422,8 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
62409
62422
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
62410
62423
|
acs_entrance_id: z.ZodOptional<z.ZodString>;
|
|
62411
62424
|
device_id: z.ZodOptional<z.ZodString>;
|
|
62412
|
-
|
|
62425
|
+
is_via_bluetooth: z.ZodOptional<z.ZodBoolean>;
|
|
62426
|
+
is_via_nfc: z.ZodOptional<z.ZodBoolean>;
|
|
62413
62427
|
}, "strip", z.ZodTypeAny, {
|
|
62414
62428
|
workspace_id: string;
|
|
62415
62429
|
created_at: string;
|
|
@@ -62429,7 +62443,8 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
62429
62443
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
62430
62444
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
62431
62445
|
access_code_is_managed?: boolean | undefined;
|
|
62432
|
-
|
|
62446
|
+
is_via_bluetooth?: boolean | undefined;
|
|
62447
|
+
is_via_nfc?: boolean | undefined;
|
|
62433
62448
|
}, {
|
|
62434
62449
|
workspace_id: string;
|
|
62435
62450
|
created_at: string;
|
|
@@ -62449,7 +62464,8 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
62449
62464
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
62450
62465
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
62451
62466
|
access_code_is_managed?: boolean | undefined;
|
|
62452
|
-
|
|
62467
|
+
is_via_bluetooth?: boolean | undefined;
|
|
62468
|
+
is_via_nfc?: boolean | undefined;
|
|
62453
62469
|
}>, z.ZodObject<{
|
|
62454
62470
|
event_id: z.ZodString;
|
|
62455
62471
|
workspace_id: z.ZodString;
|
|
@@ -72681,7 +72697,8 @@ declare const _default: {
|
|
|
72681
72697
|
noise_threshold_name?: never;
|
|
72682
72698
|
noiseaware_metadata?: never;
|
|
72683
72699
|
access_code_is_managed?: never;
|
|
72684
|
-
|
|
72700
|
+
is_via_bluetooth?: never;
|
|
72701
|
+
is_via_nfc?: never;
|
|
72685
72702
|
method?: never;
|
|
72686
72703
|
user_identity_id?: never;
|
|
72687
72704
|
climate_preset_key?: never;
|
|
@@ -72824,7 +72841,8 @@ declare const _default: {
|
|
|
72824
72841
|
noise_threshold_name?: never;
|
|
72825
72842
|
noiseaware_metadata?: never;
|
|
72826
72843
|
access_code_is_managed?: never;
|
|
72827
|
-
|
|
72844
|
+
is_via_bluetooth?: never;
|
|
72845
|
+
is_via_nfc?: never;
|
|
72828
72846
|
method?: never;
|
|
72829
72847
|
user_identity_id?: never;
|
|
72830
72848
|
climate_preset_key?: never;
|
|
@@ -73095,7 +73113,8 @@ declare const _default: {
|
|
|
73095
73113
|
noise_threshold_name?: never;
|
|
73096
73114
|
noiseaware_metadata?: never;
|
|
73097
73115
|
access_code_is_managed?: never;
|
|
73098
|
-
|
|
73116
|
+
is_via_bluetooth?: never;
|
|
73117
|
+
is_via_nfc?: never;
|
|
73099
73118
|
method?: never;
|
|
73100
73119
|
user_identity_id?: never;
|
|
73101
73120
|
climate_preset_key?: never;
|
|
@@ -73238,7 +73257,8 @@ declare const _default: {
|
|
|
73238
73257
|
noise_threshold_name?: never;
|
|
73239
73258
|
noiseaware_metadata?: never;
|
|
73240
73259
|
access_code_is_managed?: never;
|
|
73241
|
-
|
|
73260
|
+
is_via_bluetooth?: never;
|
|
73261
|
+
is_via_nfc?: never;
|
|
73242
73262
|
method?: never;
|
|
73243
73263
|
user_identity_id?: never;
|
|
73244
73264
|
climate_preset_key?: never;
|
|
@@ -73379,7 +73399,8 @@ declare const _default: {
|
|
|
73379
73399
|
noise_threshold_name?: never;
|
|
73380
73400
|
noiseaware_metadata?: never;
|
|
73381
73401
|
access_code_is_managed?: never;
|
|
73382
|
-
|
|
73402
|
+
is_via_bluetooth?: never;
|
|
73403
|
+
is_via_nfc?: never;
|
|
73383
73404
|
method?: never;
|
|
73384
73405
|
user_identity_id?: never;
|
|
73385
73406
|
climate_preset_key?: never;
|
|
@@ -73494,7 +73515,8 @@ declare const _default: {
|
|
|
73494
73515
|
noise_threshold_name?: never;
|
|
73495
73516
|
noiseaware_metadata?: never;
|
|
73496
73517
|
access_code_is_managed?: never;
|
|
73497
|
-
|
|
73518
|
+
is_via_bluetooth?: never;
|
|
73519
|
+
is_via_nfc?: never;
|
|
73498
73520
|
method?: never;
|
|
73499
73521
|
user_identity_id?: never;
|
|
73500
73522
|
climate_preset_key?: never;
|
|
@@ -73613,7 +73635,8 @@ declare const _default: {
|
|
|
73613
73635
|
noise_threshold_name?: never;
|
|
73614
73636
|
noiseaware_metadata?: never;
|
|
73615
73637
|
access_code_is_managed?: never;
|
|
73616
|
-
|
|
73638
|
+
is_via_bluetooth?: never;
|
|
73639
|
+
is_via_nfc?: never;
|
|
73617
73640
|
method?: never;
|
|
73618
73641
|
user_identity_id?: never;
|
|
73619
73642
|
climate_preset_key?: never;
|
|
@@ -73737,7 +73760,8 @@ declare const _default: {
|
|
|
73737
73760
|
noise_threshold_name?: never;
|
|
73738
73761
|
noiseaware_metadata?: never;
|
|
73739
73762
|
access_code_is_managed?: never;
|
|
73740
|
-
|
|
73763
|
+
is_via_bluetooth?: never;
|
|
73764
|
+
is_via_nfc?: never;
|
|
73741
73765
|
method?: never;
|
|
73742
73766
|
user_identity_id?: never;
|
|
73743
73767
|
climate_preset_key?: never;
|
|
@@ -73855,7 +73879,8 @@ declare const _default: {
|
|
|
73855
73879
|
noise_threshold_name?: never;
|
|
73856
73880
|
noiseaware_metadata?: never;
|
|
73857
73881
|
access_code_is_managed?: never;
|
|
73858
|
-
|
|
73882
|
+
is_via_bluetooth?: never;
|
|
73883
|
+
is_via_nfc?: never;
|
|
73859
73884
|
method?: never;
|
|
73860
73885
|
user_identity_id?: never;
|
|
73861
73886
|
climate_preset_key?: never;
|
|
@@ -73990,7 +74015,8 @@ declare const _default: {
|
|
|
73990
74015
|
noise_threshold_name?: never;
|
|
73991
74016
|
noiseaware_metadata?: never;
|
|
73992
74017
|
access_code_is_managed?: never;
|
|
73993
|
-
|
|
74018
|
+
is_via_bluetooth?: never;
|
|
74019
|
+
is_via_nfc?: never;
|
|
73994
74020
|
method?: never;
|
|
73995
74021
|
user_identity_id?: never;
|
|
73996
74022
|
climate_preset_key?: never;
|
|
@@ -74118,7 +74144,8 @@ declare const _default: {
|
|
|
74118
74144
|
noise_threshold_name?: never;
|
|
74119
74145
|
noiseaware_metadata?: never;
|
|
74120
74146
|
access_code_is_managed?: never;
|
|
74121
|
-
|
|
74147
|
+
is_via_bluetooth?: never;
|
|
74148
|
+
is_via_nfc?: never;
|
|
74122
74149
|
method?: never;
|
|
74123
74150
|
user_identity_id?: never;
|
|
74124
74151
|
climate_preset_key?: never;
|
|
@@ -74237,7 +74264,8 @@ declare const _default: {
|
|
|
74237
74264
|
noise_threshold_name?: never;
|
|
74238
74265
|
noiseaware_metadata?: never;
|
|
74239
74266
|
access_code_is_managed?: never;
|
|
74240
|
-
|
|
74267
|
+
is_via_bluetooth?: never;
|
|
74268
|
+
is_via_nfc?: never;
|
|
74241
74269
|
method?: never;
|
|
74242
74270
|
user_identity_id?: never;
|
|
74243
74271
|
climate_preset_key?: never;
|
|
@@ -74444,7 +74472,8 @@ declare const _default: {
|
|
|
74444
74472
|
noise_threshold_name?: never;
|
|
74445
74473
|
noiseaware_metadata?: never;
|
|
74446
74474
|
access_code_is_managed?: never;
|
|
74447
|
-
|
|
74475
|
+
is_via_bluetooth?: never;
|
|
74476
|
+
is_via_nfc?: never;
|
|
74448
74477
|
method?: never;
|
|
74449
74478
|
user_identity_id?: never;
|
|
74450
74479
|
climate_preset_key?: never;
|
|
@@ -74567,7 +74596,8 @@ declare const _default: {
|
|
|
74567
74596
|
noise_threshold_name?: never;
|
|
74568
74597
|
noiseaware_metadata?: never;
|
|
74569
74598
|
access_code_is_managed?: never;
|
|
74570
|
-
|
|
74599
|
+
is_via_bluetooth?: never;
|
|
74600
|
+
is_via_nfc?: never;
|
|
74571
74601
|
method?: never;
|
|
74572
74602
|
user_identity_id?: never;
|
|
74573
74603
|
climate_preset_key?: never;
|
|
@@ -74690,7 +74720,8 @@ declare const _default: {
|
|
|
74690
74720
|
noise_threshold_name?: never;
|
|
74691
74721
|
noiseaware_metadata?: never;
|
|
74692
74722
|
access_code_is_managed?: never;
|
|
74693
|
-
|
|
74723
|
+
is_via_bluetooth?: never;
|
|
74724
|
+
is_via_nfc?: never;
|
|
74694
74725
|
method?: never;
|
|
74695
74726
|
user_identity_id?: never;
|
|
74696
74727
|
climate_preset_key?: never;
|
|
@@ -74813,7 +74844,8 @@ declare const _default: {
|
|
|
74813
74844
|
noise_threshold_name?: never;
|
|
74814
74845
|
noiseaware_metadata?: never;
|
|
74815
74846
|
access_code_is_managed?: never;
|
|
74816
|
-
|
|
74847
|
+
is_via_bluetooth?: never;
|
|
74848
|
+
is_via_nfc?: never;
|
|
74817
74849
|
method?: never;
|
|
74818
74850
|
user_identity_id?: never;
|
|
74819
74851
|
climate_preset_key?: never;
|
|
@@ -74936,7 +74968,8 @@ declare const _default: {
|
|
|
74936
74968
|
noise_threshold_name?: never;
|
|
74937
74969
|
noiseaware_metadata?: never;
|
|
74938
74970
|
access_code_is_managed?: never;
|
|
74939
|
-
|
|
74971
|
+
is_via_bluetooth?: never;
|
|
74972
|
+
is_via_nfc?: never;
|
|
74940
74973
|
method?: never;
|
|
74941
74974
|
user_identity_id?: never;
|
|
74942
74975
|
climate_preset_key?: never;
|
|
@@ -75059,7 +75092,8 @@ declare const _default: {
|
|
|
75059
75092
|
noise_threshold_name?: never;
|
|
75060
75093
|
noiseaware_metadata?: never;
|
|
75061
75094
|
access_code_is_managed?: never;
|
|
75062
|
-
|
|
75095
|
+
is_via_bluetooth?: never;
|
|
75096
|
+
is_via_nfc?: never;
|
|
75063
75097
|
method?: never;
|
|
75064
75098
|
user_identity_id?: never;
|
|
75065
75099
|
climate_preset_key?: never;
|
|
@@ -75174,7 +75208,8 @@ declare const _default: {
|
|
|
75174
75208
|
noise_threshold_name?: never;
|
|
75175
75209
|
noiseaware_metadata?: never;
|
|
75176
75210
|
access_code_is_managed?: never;
|
|
75177
|
-
|
|
75211
|
+
is_via_bluetooth?: never;
|
|
75212
|
+
is_via_nfc?: never;
|
|
75178
75213
|
method?: never;
|
|
75179
75214
|
user_identity_id?: never;
|
|
75180
75215
|
climate_preset_key?: never;
|
|
@@ -75304,7 +75339,8 @@ declare const _default: {
|
|
|
75304
75339
|
noise_threshold_name?: never;
|
|
75305
75340
|
noiseaware_metadata?: never;
|
|
75306
75341
|
access_code_is_managed?: never;
|
|
75307
|
-
|
|
75342
|
+
is_via_bluetooth?: never;
|
|
75343
|
+
is_via_nfc?: never;
|
|
75308
75344
|
method?: never;
|
|
75309
75345
|
user_identity_id?: never;
|
|
75310
75346
|
climate_preset_key?: never;
|
|
@@ -75431,7 +75467,8 @@ declare const _default: {
|
|
|
75431
75467
|
noise_threshold_name?: never;
|
|
75432
75468
|
noiseaware_metadata?: never;
|
|
75433
75469
|
access_code_is_managed?: never;
|
|
75434
|
-
|
|
75470
|
+
is_via_bluetooth?: never;
|
|
75471
|
+
is_via_nfc?: never;
|
|
75435
75472
|
method?: never;
|
|
75436
75473
|
user_identity_id?: never;
|
|
75437
75474
|
climate_preset_key?: never;
|
|
@@ -75559,7 +75596,8 @@ declare const _default: {
|
|
|
75559
75596
|
noise_threshold_name?: never;
|
|
75560
75597
|
noiseaware_metadata?: never;
|
|
75561
75598
|
access_code_is_managed?: never;
|
|
75562
|
-
|
|
75599
|
+
is_via_bluetooth?: never;
|
|
75600
|
+
is_via_nfc?: never;
|
|
75563
75601
|
method?: never;
|
|
75564
75602
|
user_identity_id?: never;
|
|
75565
75603
|
climate_preset_key?: never;
|
|
@@ -75725,7 +75763,8 @@ declare const _default: {
|
|
|
75725
75763
|
noise_threshold_name?: never;
|
|
75726
75764
|
noiseaware_metadata?: never;
|
|
75727
75765
|
access_code_is_managed?: never;
|
|
75728
|
-
|
|
75766
|
+
is_via_bluetooth?: never;
|
|
75767
|
+
is_via_nfc?: never;
|
|
75729
75768
|
method?: never;
|
|
75730
75769
|
user_identity_id?: never;
|
|
75731
75770
|
climate_preset_key?: never;
|
|
@@ -75848,7 +75887,8 @@ declare const _default: {
|
|
|
75848
75887
|
noise_threshold_name?: never;
|
|
75849
75888
|
noiseaware_metadata?: never;
|
|
75850
75889
|
access_code_is_managed?: never;
|
|
75851
|
-
|
|
75890
|
+
is_via_bluetooth?: never;
|
|
75891
|
+
is_via_nfc?: never;
|
|
75852
75892
|
method?: never;
|
|
75853
75893
|
user_identity_id?: never;
|
|
75854
75894
|
climate_preset_key?: never;
|
|
@@ -75977,7 +76017,8 @@ declare const _default: {
|
|
|
75977
76017
|
noise_threshold_name?: never;
|
|
75978
76018
|
noiseaware_metadata?: never;
|
|
75979
76019
|
access_code_is_managed?: never;
|
|
75980
|
-
|
|
76020
|
+
is_via_bluetooth?: never;
|
|
76021
|
+
is_via_nfc?: never;
|
|
75981
76022
|
method?: never;
|
|
75982
76023
|
user_identity_id?: never;
|
|
75983
76024
|
climate_preset_key?: never;
|
|
@@ -76106,7 +76147,8 @@ declare const _default: {
|
|
|
76106
76147
|
noise_threshold_name?: never;
|
|
76107
76148
|
noiseaware_metadata?: never;
|
|
76108
76149
|
access_code_is_managed?: never;
|
|
76109
|
-
|
|
76150
|
+
is_via_bluetooth?: never;
|
|
76151
|
+
is_via_nfc?: never;
|
|
76110
76152
|
method?: never;
|
|
76111
76153
|
user_identity_id?: never;
|
|
76112
76154
|
climate_preset_key?: never;
|
|
@@ -76221,7 +76263,8 @@ declare const _default: {
|
|
|
76221
76263
|
noise_threshold_name?: never;
|
|
76222
76264
|
noiseaware_metadata?: never;
|
|
76223
76265
|
access_code_is_managed?: never;
|
|
76224
|
-
|
|
76266
|
+
is_via_bluetooth?: never;
|
|
76267
|
+
is_via_nfc?: never;
|
|
76225
76268
|
method?: never;
|
|
76226
76269
|
user_identity_id?: never;
|
|
76227
76270
|
climate_preset_key?: never;
|
|
@@ -76359,7 +76402,8 @@ declare const _default: {
|
|
|
76359
76402
|
noise_threshold_name?: never;
|
|
76360
76403
|
noiseaware_metadata?: never;
|
|
76361
76404
|
access_code_is_managed?: never;
|
|
76362
|
-
|
|
76405
|
+
is_via_bluetooth?: never;
|
|
76406
|
+
is_via_nfc?: never;
|
|
76363
76407
|
method?: never;
|
|
76364
76408
|
user_identity_id?: never;
|
|
76365
76409
|
climate_preset_key?: never;
|
|
@@ -76589,7 +76633,8 @@ declare const _default: {
|
|
|
76589
76633
|
noise_threshold_name?: never;
|
|
76590
76634
|
noiseaware_metadata?: never;
|
|
76591
76635
|
access_code_is_managed?: never;
|
|
76592
|
-
|
|
76636
|
+
is_via_bluetooth?: never;
|
|
76637
|
+
is_via_nfc?: never;
|
|
76593
76638
|
method?: never;
|
|
76594
76639
|
user_identity_id?: never;
|
|
76595
76640
|
climate_preset_key?: never;
|
|
@@ -76733,7 +76778,8 @@ declare const _default: {
|
|
|
76733
76778
|
noise_threshold_name?: never;
|
|
76734
76779
|
noiseaware_metadata?: never;
|
|
76735
76780
|
access_code_is_managed?: never;
|
|
76736
|
-
|
|
76781
|
+
is_via_bluetooth?: never;
|
|
76782
|
+
is_via_nfc?: never;
|
|
76737
76783
|
method?: never;
|
|
76738
76784
|
user_identity_id?: never;
|
|
76739
76785
|
climate_preset_key?: never;
|
|
@@ -76881,7 +76927,8 @@ declare const _default: {
|
|
|
76881
76927
|
noise_threshold_name?: never;
|
|
76882
76928
|
noiseaware_metadata?: never;
|
|
76883
76929
|
access_code_is_managed?: never;
|
|
76884
|
-
|
|
76930
|
+
is_via_bluetooth?: never;
|
|
76931
|
+
is_via_nfc?: never;
|
|
76885
76932
|
method?: never;
|
|
76886
76933
|
user_identity_id?: never;
|
|
76887
76934
|
climate_preset_key?: never;
|
|
@@ -77107,7 +77154,8 @@ declare const _default: {
|
|
|
77107
77154
|
noise_threshold_name?: never;
|
|
77108
77155
|
noiseaware_metadata?: never;
|
|
77109
77156
|
access_code_is_managed?: never;
|
|
77110
|
-
|
|
77157
|
+
is_via_bluetooth?: never;
|
|
77158
|
+
is_via_nfc?: never;
|
|
77111
77159
|
method?: never;
|
|
77112
77160
|
user_identity_id?: never;
|
|
77113
77161
|
climate_preset_key?: never;
|
|
@@ -77268,7 +77316,8 @@ declare const _default: {
|
|
|
77268
77316
|
battery_level?: never;
|
|
77269
77317
|
battery_status?: never;
|
|
77270
77318
|
access_code_is_managed?: never;
|
|
77271
|
-
|
|
77319
|
+
is_via_bluetooth?: never;
|
|
77320
|
+
is_via_nfc?: never;
|
|
77272
77321
|
method?: never;
|
|
77273
77322
|
user_identity_id?: never;
|
|
77274
77323
|
climate_preset_key?: never;
|
|
@@ -77368,7 +77417,11 @@ declare const _default: {
|
|
|
77368
77417
|
type: string;
|
|
77369
77418
|
description?: never;
|
|
77370
77419
|
};
|
|
77371
|
-
|
|
77420
|
+
is_via_bluetooth: {
|
|
77421
|
+
description: string;
|
|
77422
|
+
type: string;
|
|
77423
|
+
};
|
|
77424
|
+
is_via_nfc: {
|
|
77372
77425
|
description: string;
|
|
77373
77426
|
type: string;
|
|
77374
77427
|
};
|
|
@@ -77539,7 +77592,11 @@ declare const _default: {
|
|
|
77539
77592
|
type: string;
|
|
77540
77593
|
description?: never;
|
|
77541
77594
|
};
|
|
77542
|
-
|
|
77595
|
+
is_via_bluetooth: {
|
|
77596
|
+
description: string;
|
|
77597
|
+
type: string;
|
|
77598
|
+
};
|
|
77599
|
+
is_via_nfc: {
|
|
77543
77600
|
description: string;
|
|
77544
77601
|
type: string;
|
|
77545
77602
|
};
|
|
@@ -77738,7 +77795,8 @@ declare const _default: {
|
|
|
77738
77795
|
noise_threshold_name?: never;
|
|
77739
77796
|
noiseaware_metadata?: never;
|
|
77740
77797
|
access_code_is_managed?: never;
|
|
77741
|
-
|
|
77798
|
+
is_via_bluetooth?: never;
|
|
77799
|
+
is_via_nfc?: never;
|
|
77742
77800
|
method?: never;
|
|
77743
77801
|
user_identity_id?: never;
|
|
77744
77802
|
climate_preset_key?: never;
|
|
@@ -77890,7 +77948,8 @@ declare const _default: {
|
|
|
77890
77948
|
noise_threshold_name?: never;
|
|
77891
77949
|
noiseaware_metadata?: never;
|
|
77892
77950
|
access_code_is_managed?: never;
|
|
77893
|
-
|
|
77951
|
+
is_via_bluetooth?: never;
|
|
77952
|
+
is_via_nfc?: never;
|
|
77894
77953
|
method?: never;
|
|
77895
77954
|
user_identity_id?: never;
|
|
77896
77955
|
cooling_set_point_celsius?: never;
|
|
@@ -78060,7 +78119,8 @@ declare const _default: {
|
|
|
78060
78119
|
noise_threshold_name?: never;
|
|
78061
78120
|
noiseaware_metadata?: never;
|
|
78062
78121
|
access_code_is_managed?: never;
|
|
78063
|
-
|
|
78122
|
+
is_via_bluetooth?: never;
|
|
78123
|
+
is_via_nfc?: never;
|
|
78064
78124
|
user_identity_id?: never;
|
|
78065
78125
|
climate_preset_key?: never;
|
|
78066
78126
|
is_fallback_climate_preset?: never;
|
|
@@ -78225,7 +78285,8 @@ declare const _default: {
|
|
|
78225
78285
|
noise_threshold_name?: never;
|
|
78226
78286
|
noiseaware_metadata?: never;
|
|
78227
78287
|
access_code_is_managed?: never;
|
|
78228
|
-
|
|
78288
|
+
is_via_bluetooth?: never;
|
|
78289
|
+
is_via_nfc?: never;
|
|
78229
78290
|
method?: never;
|
|
78230
78291
|
user_identity_id?: never;
|
|
78231
78292
|
climate_preset_key?: never;
|
|
@@ -78377,7 +78438,8 @@ declare const _default: {
|
|
|
78377
78438
|
noise_threshold_name?: never;
|
|
78378
78439
|
noiseaware_metadata?: never;
|
|
78379
78440
|
access_code_is_managed?: never;
|
|
78380
|
-
|
|
78441
|
+
is_via_bluetooth?: never;
|
|
78442
|
+
is_via_nfc?: never;
|
|
78381
78443
|
method?: never;
|
|
78382
78444
|
user_identity_id?: never;
|
|
78383
78445
|
climate_preset_key?: never;
|
|
@@ -78521,7 +78583,8 @@ declare const _default: {
|
|
|
78521
78583
|
noise_threshold_name?: never;
|
|
78522
78584
|
noiseaware_metadata?: never;
|
|
78523
78585
|
access_code_is_managed?: never;
|
|
78524
|
-
|
|
78586
|
+
is_via_bluetooth?: never;
|
|
78587
|
+
is_via_nfc?: never;
|
|
78525
78588
|
method?: never;
|
|
78526
78589
|
user_identity_id?: never;
|
|
78527
78590
|
climate_preset_key?: never;
|
|
@@ -78661,7 +78724,8 @@ declare const _default: {
|
|
|
78661
78724
|
noise_threshold_name?: never;
|
|
78662
78725
|
noiseaware_metadata?: never;
|
|
78663
78726
|
access_code_is_managed?: never;
|
|
78664
|
-
|
|
78727
|
+
is_via_bluetooth?: never;
|
|
78728
|
+
is_via_nfc?: never;
|
|
78665
78729
|
method?: never;
|
|
78666
78730
|
user_identity_id?: never;
|
|
78667
78731
|
climate_preset_key?: never;
|
|
@@ -78818,7 +78882,8 @@ declare const _default: {
|
|
|
78818
78882
|
noise_threshold_name?: never;
|
|
78819
78883
|
noiseaware_metadata?: never;
|
|
78820
78884
|
access_code_is_managed?: never;
|
|
78821
|
-
|
|
78885
|
+
is_via_bluetooth?: never;
|
|
78886
|
+
is_via_nfc?: never;
|
|
78822
78887
|
method?: never;
|
|
78823
78888
|
user_identity_id?: never;
|
|
78824
78889
|
climate_preset_key?: never;
|
|
@@ -78962,7 +79027,8 @@ declare const _default: {
|
|
|
78962
79027
|
noise_threshold_name?: never;
|
|
78963
79028
|
noiseaware_metadata?: never;
|
|
78964
79029
|
access_code_is_managed?: never;
|
|
78965
|
-
|
|
79030
|
+
is_via_bluetooth?: never;
|
|
79031
|
+
is_via_nfc?: never;
|
|
78966
79032
|
method?: never;
|
|
78967
79033
|
user_identity_id?: never;
|
|
78968
79034
|
climate_preset_key?: never;
|
|
@@ -79076,7 +79142,8 @@ declare const _default: {
|
|
|
79076
79142
|
noise_threshold_name?: never;
|
|
79077
79143
|
noiseaware_metadata?: never;
|
|
79078
79144
|
access_code_is_managed?: never;
|
|
79079
|
-
|
|
79145
|
+
is_via_bluetooth?: never;
|
|
79146
|
+
is_via_nfc?: never;
|
|
79080
79147
|
method?: never;
|
|
79081
79148
|
user_identity_id?: never;
|
|
79082
79149
|
climate_preset_key?: never;
|
|
@@ -79198,7 +79265,8 @@ declare const _default: {
|
|
|
79198
79265
|
noise_threshold_name?: never;
|
|
79199
79266
|
noiseaware_metadata?: never;
|
|
79200
79267
|
access_code_is_managed?: never;
|
|
79201
|
-
|
|
79268
|
+
is_via_bluetooth?: never;
|
|
79269
|
+
is_via_nfc?: never;
|
|
79202
79270
|
method?: never;
|
|
79203
79271
|
user_identity_id?: never;
|
|
79204
79272
|
climate_preset_key?: never;
|
|
@@ -79334,7 +79402,8 @@ declare const _default: {
|
|
|
79334
79402
|
noise_threshold_name?: never;
|
|
79335
79403
|
noiseaware_metadata?: never;
|
|
79336
79404
|
access_code_is_managed?: never;
|
|
79337
|
-
|
|
79405
|
+
is_via_bluetooth?: never;
|
|
79406
|
+
is_via_nfc?: never;
|
|
79338
79407
|
method?: never;
|
|
79339
79408
|
user_identity_id?: never;
|
|
79340
79409
|
climate_preset_key?: never;
|
|
@@ -176875,14 +176944,18 @@ type Routes = {
|
|
|
176875
176944
|
access_code_id?: string | undefined;
|
|
176876
176945
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
176877
176946
|
access_code_is_managed?: boolean | undefined;
|
|
176878
|
-
/** ID of the action attempt
|
|
176947
|
+
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
176879
176948
|
action_attempt_id?: string | undefined;
|
|
176880
|
-
/** Method by which the
|
|
176949
|
+
/** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
|
|
176881
176950
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
|
|
176882
176951
|
/**
|
|
176883
176952
|
Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
176884
176953
|
*/
|
|
176885
|
-
|
|
176954
|
+
is_via_bluetooth?: boolean | undefined;
|
|
176955
|
+
/**
|
|
176956
|
+
Whether the lock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
|
|
176957
|
+
*/
|
|
176958
|
+
is_via_nfc?: boolean | undefined;
|
|
176886
176959
|
} | {
|
|
176887
176960
|
/** ID of the event. */
|
|
176888
176961
|
event_id: string;
|
|
@@ -176911,9 +176984,9 @@ type Routes = {
|
|
|
176911
176984
|
access_code_id?: string | undefined;
|
|
176912
176985
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
176913
176986
|
access_code_is_managed?: boolean | undefined;
|
|
176914
|
-
/** ID of the action attempt
|
|
176987
|
+
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
176915
176988
|
action_attempt_id?: string | undefined;
|
|
176916
|
-
/** Method by which the
|
|
176989
|
+
/** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
|
|
176917
176990
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
|
|
176918
176991
|
/**
|
|
176919
176992
|
undocumented: Unreleased.
|
|
@@ -176942,7 +177015,11 @@ type Routes = {
|
|
|
176942
177015
|
/**
|
|
176943
177016
|
Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
176944
177017
|
*/
|
|
176945
|
-
|
|
177018
|
+
is_via_bluetooth?: boolean | undefined;
|
|
177019
|
+
/**
|
|
177020
|
+
Whether the unlock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
|
|
177021
|
+
*/
|
|
177022
|
+
is_via_nfc?: boolean | undefined;
|
|
176946
177023
|
} | {
|
|
176947
177024
|
/** ID of the event. */
|
|
176948
177025
|
event_id: string;
|
|
@@ -179711,14 +179788,18 @@ type Routes = {
|
|
|
179711
179788
|
access_code_id?: string | undefined;
|
|
179712
179789
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
179713
179790
|
access_code_is_managed?: boolean | undefined;
|
|
179714
|
-
/** ID of the action attempt
|
|
179791
|
+
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
179715
179792
|
action_attempt_id?: string | undefined;
|
|
179716
|
-
/** Method by which the
|
|
179793
|
+
/** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
|
|
179717
179794
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
|
|
179718
179795
|
/**
|
|
179719
179796
|
Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
179720
179797
|
*/
|
|
179721
|
-
|
|
179798
|
+
is_via_bluetooth?: boolean | undefined;
|
|
179799
|
+
/**
|
|
179800
|
+
Whether the lock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
|
|
179801
|
+
*/
|
|
179802
|
+
is_via_nfc?: boolean | undefined;
|
|
179722
179803
|
} | {
|
|
179723
179804
|
/** ID of the event. */
|
|
179724
179805
|
event_id: string;
|
|
@@ -179747,9 +179828,9 @@ type Routes = {
|
|
|
179747
179828
|
access_code_id?: string | undefined;
|
|
179748
179829
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
179749
179830
|
access_code_is_managed?: boolean | undefined;
|
|
179750
|
-
/** ID of the action attempt
|
|
179831
|
+
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
179751
179832
|
action_attempt_id?: string | undefined;
|
|
179752
|
-
/** Method by which the
|
|
179833
|
+
/** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
|
|
179753
179834
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
|
|
179754
179835
|
/**
|
|
179755
179836
|
undocumented: Unreleased.
|
|
@@ -179778,7 +179859,11 @@ type Routes = {
|
|
|
179778
179859
|
/**
|
|
179779
179860
|
Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
179780
179861
|
*/
|
|
179781
|
-
|
|
179862
|
+
is_via_bluetooth?: boolean | undefined;
|
|
179863
|
+
/**
|
|
179864
|
+
Whether the unlock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
|
|
179865
|
+
*/
|
|
179866
|
+
is_via_nfc?: boolean | undefined;
|
|
179782
179867
|
} | {
|
|
179783
179868
|
/** ID of the event. */
|
|
179784
179869
|
event_id: string;
|
|
@@ -204751,14 +204836,18 @@ type Routes = {
|
|
|
204751
204836
|
access_code_id?: string | undefined;
|
|
204752
204837
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
204753
204838
|
access_code_is_managed?: boolean | undefined;
|
|
204754
|
-
/** ID of the action attempt
|
|
204839
|
+
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
204755
204840
|
action_attempt_id?: string | undefined;
|
|
204756
|
-
/** Method by which the
|
|
204841
|
+
/** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
|
|
204757
204842
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
|
|
204758
204843
|
/**
|
|
204759
204844
|
Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
204760
204845
|
*/
|
|
204761
|
-
|
|
204846
|
+
is_via_bluetooth?: boolean | undefined;
|
|
204847
|
+
/**
|
|
204848
|
+
Whether the lock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
|
|
204849
|
+
*/
|
|
204850
|
+
is_via_nfc?: boolean | undefined;
|
|
204762
204851
|
} | {
|
|
204763
204852
|
/** ID of the event. */
|
|
204764
204853
|
event_id: string;
|
|
@@ -204787,9 +204876,9 @@ type Routes = {
|
|
|
204787
204876
|
access_code_id?: string | undefined;
|
|
204788
204877
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
204789
204878
|
access_code_is_managed?: boolean | undefined;
|
|
204790
|
-
/** ID of the action attempt
|
|
204879
|
+
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
204791
204880
|
action_attempt_id?: string | undefined;
|
|
204792
|
-
/** Method by which the
|
|
204881
|
+
/** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
|
|
204793
204882
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
|
|
204794
204883
|
/**
|
|
204795
204884
|
undocumented: Unreleased.
|
|
@@ -204818,7 +204907,11 @@ type Routes = {
|
|
|
204818
204907
|
/**
|
|
204819
204908
|
Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
204820
204909
|
*/
|
|
204821
|
-
|
|
204910
|
+
is_via_bluetooth?: boolean | undefined;
|
|
204911
|
+
/**
|
|
204912
|
+
Whether the unlock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
|
|
204913
|
+
*/
|
|
204914
|
+
is_via_nfc?: boolean | undefined;
|
|
204822
204915
|
} | {
|
|
204823
204916
|
/** ID of the event. */
|
|
204824
204917
|
event_id: string;
|
|
@@ -237233,14 +237326,18 @@ type Routes = {
|
|
|
237233
237326
|
access_code_id?: string | undefined;
|
|
237234
237327
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
237235
237328
|
access_code_is_managed?: boolean | undefined;
|
|
237236
|
-
/** ID of the action attempt
|
|
237329
|
+
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
237237
237330
|
action_attempt_id?: string | undefined;
|
|
237238
|
-
/** Method by which the
|
|
237331
|
+
/** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
|
|
237239
237332
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
|
|
237240
237333
|
/**
|
|
237241
237334
|
Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
237242
237335
|
*/
|
|
237243
|
-
|
|
237336
|
+
is_via_bluetooth?: boolean | undefined;
|
|
237337
|
+
/**
|
|
237338
|
+
Whether the lock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
|
|
237339
|
+
*/
|
|
237340
|
+
is_via_nfc?: boolean | undefined;
|
|
237244
237341
|
} | {
|
|
237245
237342
|
/** ID of the event. */
|
|
237246
237343
|
event_id: string;
|
|
@@ -237269,9 +237366,9 @@ type Routes = {
|
|
|
237269
237366
|
access_code_id?: string | undefined;
|
|
237270
237367
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
237271
237368
|
access_code_is_managed?: boolean | undefined;
|
|
237272
|
-
/** ID of the action attempt
|
|
237369
|
+
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
237273
237370
|
action_attempt_id?: string | undefined;
|
|
237274
|
-
/** Method by which the
|
|
237371
|
+
/** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
|
|
237275
237372
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote';
|
|
237276
237373
|
/**
|
|
237277
237374
|
undocumented: Unreleased.
|
|
@@ -237300,7 +237397,11 @@ type Routes = {
|
|
|
237300
237397
|
/**
|
|
237301
237398
|
Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
237302
237399
|
*/
|
|
237303
|
-
|
|
237400
|
+
is_via_bluetooth?: boolean | undefined;
|
|
237401
|
+
/**
|
|
237402
|
+
Whether the unlock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
|
|
237403
|
+
*/
|
|
237404
|
+
is_via_nfc?: boolean | undefined;
|
|
237304
237405
|
} | {
|
|
237305
237406
|
/** ID of the event. */
|
|
237306
237407
|
event_id: string;
|