@seamapi/types 1.666.0 → 1.667.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 +42 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +325 -14
- package/dist/index.cjs +42 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +25 -6
- package/lib/seam/connect/models/events/devices.d.ts +30 -8
- package/lib/seam/connect/models/events/devices.js +25 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +15 -4
- package/lib/seam/connect/openapi.d.ts +185 -0
- package/lib/seam/connect/openapi.js +20 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -4
- package/package.json +2 -2
- package/src/lib/seam/connect/models/events/devices.ts +25 -0
- package/src/lib/seam/connect/openapi.ts +24 -1
- package/src/lib/seam/connect/route-types.ts +100 -4
package/dist/connect.d.cts
CHANGED
|
@@ -28044,8 +28044,6 @@ declare const batch: z.ZodObject<{
|
|
|
28044
28044
|
workspace_id: z.ZodString;
|
|
28045
28045
|
created_at: z.ZodString;
|
|
28046
28046
|
occurred_at: z.ZodString;
|
|
28047
|
-
} & {
|
|
28048
|
-
device_id: z.ZodString;
|
|
28049
28047
|
connected_account_id: z.ZodString;
|
|
28050
28048
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
28051
28049
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -28054,8 +28052,12 @@ declare const batch: z.ZodObject<{
|
|
|
28054
28052
|
access_code_id: z.ZodOptional<z.ZodString>;
|
|
28055
28053
|
action_attempt_id: z.ZodOptional<z.ZodString>;
|
|
28056
28054
|
method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "seamapi"]>;
|
|
28055
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
28056
|
+
acs_system_id: z.ZodOptional<z.ZodString>;
|
|
28057
|
+
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
28058
|
+
acs_entrance_id: z.ZodOptional<z.ZodString>;
|
|
28059
|
+
device_id: z.ZodOptional<z.ZodString>;
|
|
28057
28060
|
}, "strip", z.ZodTypeAny, {
|
|
28058
|
-
device_id: string;
|
|
28059
28061
|
workspace_id: string;
|
|
28060
28062
|
created_at: string;
|
|
28061
28063
|
connected_account_id: string;
|
|
@@ -28063,12 +28065,16 @@ declare const batch: z.ZodObject<{
|
|
|
28063
28065
|
occurred_at: string;
|
|
28064
28066
|
event_type: "lock.unlocked";
|
|
28065
28067
|
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
28068
|
+
device_id?: string | undefined;
|
|
28066
28069
|
access_code_id?: string | undefined;
|
|
28070
|
+
user_identity_id?: string | undefined;
|
|
28071
|
+
acs_system_id?: string | undefined;
|
|
28072
|
+
acs_user_id?: string | undefined;
|
|
28073
|
+
acs_entrance_id?: string | undefined;
|
|
28067
28074
|
action_attempt_id?: string | undefined;
|
|
28068
28075
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
28069
28076
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
28070
28077
|
}, {
|
|
28071
|
-
device_id: string;
|
|
28072
28078
|
workspace_id: string;
|
|
28073
28079
|
created_at: string;
|
|
28074
28080
|
connected_account_id: string;
|
|
@@ -28076,7 +28082,12 @@ declare const batch: z.ZodObject<{
|
|
|
28076
28082
|
occurred_at: string;
|
|
28077
28083
|
event_type: "lock.unlocked";
|
|
28078
28084
|
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
28085
|
+
device_id?: string | undefined;
|
|
28079
28086
|
access_code_id?: string | undefined;
|
|
28087
|
+
user_identity_id?: string | undefined;
|
|
28088
|
+
acs_system_id?: string | undefined;
|
|
28089
|
+
acs_user_id?: string | undefined;
|
|
28090
|
+
acs_entrance_id?: string | undefined;
|
|
28080
28091
|
action_attempt_id?: string | undefined;
|
|
28081
28092
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
28082
28093
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
@@ -35019,7 +35030,6 @@ declare const batch: z.ZodObject<{
|
|
|
35019
35030
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
35020
35031
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
35021
35032
|
} | {
|
|
35022
|
-
device_id: string;
|
|
35023
35033
|
workspace_id: string;
|
|
35024
35034
|
created_at: string;
|
|
35025
35035
|
connected_account_id: string;
|
|
@@ -35027,7 +35037,12 @@ declare const batch: z.ZodObject<{
|
|
|
35027
35037
|
occurred_at: string;
|
|
35028
35038
|
event_type: "lock.unlocked";
|
|
35029
35039
|
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
35040
|
+
device_id?: string | undefined;
|
|
35030
35041
|
access_code_id?: string | undefined;
|
|
35042
|
+
user_identity_id?: string | undefined;
|
|
35043
|
+
acs_system_id?: string | undefined;
|
|
35044
|
+
acs_user_id?: string | undefined;
|
|
35045
|
+
acs_entrance_id?: string | undefined;
|
|
35031
35046
|
action_attempt_id?: string | undefined;
|
|
35032
35047
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
35033
35048
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
@@ -39052,7 +39067,6 @@ declare const batch: z.ZodObject<{
|
|
|
39052
39067
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
39053
39068
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
39054
39069
|
} | {
|
|
39055
|
-
device_id: string;
|
|
39056
39070
|
workspace_id: string;
|
|
39057
39071
|
created_at: string;
|
|
39058
39072
|
connected_account_id: string;
|
|
@@ -39060,7 +39074,12 @@ declare const batch: z.ZodObject<{
|
|
|
39060
39074
|
occurred_at: string;
|
|
39061
39075
|
event_type: "lock.unlocked";
|
|
39062
39076
|
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
39077
|
+
device_id?: string | undefined;
|
|
39063
39078
|
access_code_id?: string | undefined;
|
|
39079
|
+
user_identity_id?: string | undefined;
|
|
39080
|
+
acs_system_id?: string | undefined;
|
|
39081
|
+
acs_user_id?: string | undefined;
|
|
39082
|
+
acs_entrance_id?: string | undefined;
|
|
39064
39083
|
action_attempt_id?: string | undefined;
|
|
39065
39084
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
39066
39085
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
@@ -51638,8 +51657,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
51638
51657
|
workspace_id: z.ZodString;
|
|
51639
51658
|
created_at: z.ZodString;
|
|
51640
51659
|
occurred_at: z.ZodString;
|
|
51641
|
-
} & {
|
|
51642
|
-
device_id: z.ZodString;
|
|
51643
51660
|
connected_account_id: z.ZodString;
|
|
51644
51661
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
51645
51662
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -51648,8 +51665,12 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
51648
51665
|
access_code_id: z.ZodOptional<z.ZodString>;
|
|
51649
51666
|
action_attempt_id: z.ZodOptional<z.ZodString>;
|
|
51650
51667
|
method: z.ZodEnum<["keycode", "manual", "automatic", "unknown", "seamapi"]>;
|
|
51668
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
51669
|
+
acs_system_id: z.ZodOptional<z.ZodString>;
|
|
51670
|
+
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
51671
|
+
acs_entrance_id: z.ZodOptional<z.ZodString>;
|
|
51672
|
+
device_id: z.ZodOptional<z.ZodString>;
|
|
51651
51673
|
}, "strip", z.ZodTypeAny, {
|
|
51652
|
-
device_id: string;
|
|
51653
51674
|
workspace_id: string;
|
|
51654
51675
|
created_at: string;
|
|
51655
51676
|
connected_account_id: string;
|
|
@@ -51657,12 +51678,16 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
51657
51678
|
occurred_at: string;
|
|
51658
51679
|
event_type: "lock.unlocked";
|
|
51659
51680
|
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
51681
|
+
device_id?: string | undefined;
|
|
51660
51682
|
access_code_id?: string | undefined;
|
|
51683
|
+
user_identity_id?: string | undefined;
|
|
51684
|
+
acs_system_id?: string | undefined;
|
|
51685
|
+
acs_user_id?: string | undefined;
|
|
51686
|
+
acs_entrance_id?: string | undefined;
|
|
51661
51687
|
action_attempt_id?: string | undefined;
|
|
51662
51688
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
51663
51689
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
51664
51690
|
}, {
|
|
51665
|
-
device_id: string;
|
|
51666
51691
|
workspace_id: string;
|
|
51667
51692
|
created_at: string;
|
|
51668
51693
|
connected_account_id: string;
|
|
@@ -51670,7 +51695,12 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
51670
51695
|
occurred_at: string;
|
|
51671
51696
|
event_type: "lock.unlocked";
|
|
51672
51697
|
method: "unknown" | "keycode" | "manual" | "automatic" | "seamapi";
|
|
51698
|
+
device_id?: string | undefined;
|
|
51673
51699
|
access_code_id?: string | undefined;
|
|
51700
|
+
user_identity_id?: string | undefined;
|
|
51701
|
+
acs_system_id?: string | undefined;
|
|
51702
|
+
acs_user_id?: string | undefined;
|
|
51703
|
+
acs_entrance_id?: string | undefined;
|
|
51674
51704
|
action_attempt_id?: string | undefined;
|
|
51675
51705
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
51676
51706
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
@@ -60185,6 +60215,7 @@ declare const _default: {
|
|
|
60185
60215
|
noise_threshold_name?: never;
|
|
60186
60216
|
noiseaware_metadata?: never;
|
|
60187
60217
|
method?: never;
|
|
60218
|
+
user_identity_id?: never;
|
|
60188
60219
|
climate_preset_key?: never;
|
|
60189
60220
|
is_fallback_climate_preset?: never;
|
|
60190
60221
|
thermostat_schedule_id?: never;
|
|
@@ -60311,6 +60342,7 @@ declare const _default: {
|
|
|
60311
60342
|
noise_threshold_name?: never;
|
|
60312
60343
|
noiseaware_metadata?: never;
|
|
60313
60344
|
method?: never;
|
|
60345
|
+
user_identity_id?: never;
|
|
60314
60346
|
climate_preset_key?: never;
|
|
60315
60347
|
is_fallback_climate_preset?: never;
|
|
60316
60348
|
thermostat_schedule_id?: never;
|
|
@@ -60437,6 +60469,7 @@ declare const _default: {
|
|
|
60437
60469
|
noise_threshold_name?: never;
|
|
60438
60470
|
noiseaware_metadata?: never;
|
|
60439
60471
|
method?: never;
|
|
60472
|
+
user_identity_id?: never;
|
|
60440
60473
|
climate_preset_key?: never;
|
|
60441
60474
|
is_fallback_climate_preset?: never;
|
|
60442
60475
|
thermostat_schedule_id?: never;
|
|
@@ -60561,6 +60594,7 @@ declare const _default: {
|
|
|
60561
60594
|
noise_threshold_name?: never;
|
|
60562
60595
|
noiseaware_metadata?: never;
|
|
60563
60596
|
method?: never;
|
|
60597
|
+
user_identity_id?: never;
|
|
60564
60598
|
climate_preset_key?: never;
|
|
60565
60599
|
is_fallback_climate_preset?: never;
|
|
60566
60600
|
thermostat_schedule_id?: never;
|
|
@@ -60659,6 +60693,7 @@ declare const _default: {
|
|
|
60659
60693
|
noise_threshold_name?: never;
|
|
60660
60694
|
noiseaware_metadata?: never;
|
|
60661
60695
|
method?: never;
|
|
60696
|
+
user_identity_id?: never;
|
|
60662
60697
|
climate_preset_key?: never;
|
|
60663
60698
|
is_fallback_climate_preset?: never;
|
|
60664
60699
|
thermostat_schedule_id?: never;
|
|
@@ -60761,6 +60796,7 @@ declare const _default: {
|
|
|
60761
60796
|
noise_threshold_name?: never;
|
|
60762
60797
|
noiseaware_metadata?: never;
|
|
60763
60798
|
method?: never;
|
|
60799
|
+
user_identity_id?: never;
|
|
60764
60800
|
climate_preset_key?: never;
|
|
60765
60801
|
is_fallback_climate_preset?: never;
|
|
60766
60802
|
thermostat_schedule_id?: never;
|
|
@@ -60868,6 +60904,7 @@ declare const _default: {
|
|
|
60868
60904
|
noise_threshold_name?: never;
|
|
60869
60905
|
noiseaware_metadata?: never;
|
|
60870
60906
|
method?: never;
|
|
60907
|
+
user_identity_id?: never;
|
|
60871
60908
|
climate_preset_key?: never;
|
|
60872
60909
|
is_fallback_climate_preset?: never;
|
|
60873
60910
|
thermostat_schedule_id?: never;
|
|
@@ -60986,6 +61023,7 @@ declare const _default: {
|
|
|
60986
61023
|
noise_threshold_name?: never;
|
|
60987
61024
|
noiseaware_metadata?: never;
|
|
60988
61025
|
method?: never;
|
|
61026
|
+
user_identity_id?: never;
|
|
60989
61027
|
climate_preset_key?: never;
|
|
60990
61028
|
is_fallback_climate_preset?: never;
|
|
60991
61029
|
thermostat_schedule_id?: never;
|
|
@@ -61097,6 +61135,7 @@ declare const _default: {
|
|
|
61097
61135
|
noise_threshold_name?: never;
|
|
61098
61136
|
noiseaware_metadata?: never;
|
|
61099
61137
|
method?: never;
|
|
61138
|
+
user_identity_id?: never;
|
|
61100
61139
|
climate_preset_key?: never;
|
|
61101
61140
|
is_fallback_climate_preset?: never;
|
|
61102
61141
|
thermostat_schedule_id?: never;
|
|
@@ -61199,6 +61238,7 @@ declare const _default: {
|
|
|
61199
61238
|
noise_threshold_name?: never;
|
|
61200
61239
|
noiseaware_metadata?: never;
|
|
61201
61240
|
method?: never;
|
|
61241
|
+
user_identity_id?: never;
|
|
61202
61242
|
climate_preset_key?: never;
|
|
61203
61243
|
is_fallback_climate_preset?: never;
|
|
61204
61244
|
thermostat_schedule_id?: never;
|
|
@@ -61305,6 +61345,7 @@ declare const _default: {
|
|
|
61305
61345
|
noise_threshold_name?: never;
|
|
61306
61346
|
noiseaware_metadata?: never;
|
|
61307
61347
|
method?: never;
|
|
61348
|
+
user_identity_id?: never;
|
|
61308
61349
|
climate_preset_key?: never;
|
|
61309
61350
|
is_fallback_climate_preset?: never;
|
|
61310
61351
|
thermostat_schedule_id?: never;
|
|
@@ -61345,6 +61386,7 @@ declare const _default: {
|
|
|
61345
61386
|
acs_user_id: {
|
|
61346
61387
|
format: string;
|
|
61347
61388
|
type: string;
|
|
61389
|
+
description?: never;
|
|
61348
61390
|
};
|
|
61349
61391
|
connected_account_id: {
|
|
61350
61392
|
description: string;
|
|
@@ -61410,6 +61452,7 @@ declare const _default: {
|
|
|
61410
61452
|
noise_threshold_name?: never;
|
|
61411
61453
|
noiseaware_metadata?: never;
|
|
61412
61454
|
method?: never;
|
|
61455
|
+
user_identity_id?: never;
|
|
61413
61456
|
climate_preset_key?: never;
|
|
61414
61457
|
is_fallback_climate_preset?: never;
|
|
61415
61458
|
thermostat_schedule_id?: never;
|
|
@@ -61516,6 +61559,7 @@ declare const _default: {
|
|
|
61516
61559
|
noise_threshold_name?: never;
|
|
61517
61560
|
noiseaware_metadata?: never;
|
|
61518
61561
|
method?: never;
|
|
61562
|
+
user_identity_id?: never;
|
|
61519
61563
|
climate_preset_key?: never;
|
|
61520
61564
|
is_fallback_climate_preset?: never;
|
|
61521
61565
|
thermostat_schedule_id?: never;
|
|
@@ -61622,6 +61666,7 @@ declare const _default: {
|
|
|
61622
61666
|
noise_threshold_name?: never;
|
|
61623
61667
|
noiseaware_metadata?: never;
|
|
61624
61668
|
method?: never;
|
|
61669
|
+
user_identity_id?: never;
|
|
61625
61670
|
climate_preset_key?: never;
|
|
61626
61671
|
is_fallback_climate_preset?: never;
|
|
61627
61672
|
thermostat_schedule_id?: never;
|
|
@@ -61728,6 +61773,7 @@ declare const _default: {
|
|
|
61728
61773
|
noise_threshold_name?: never;
|
|
61729
61774
|
noiseaware_metadata?: never;
|
|
61730
61775
|
method?: never;
|
|
61776
|
+
user_identity_id?: never;
|
|
61731
61777
|
climate_preset_key?: never;
|
|
61732
61778
|
is_fallback_climate_preset?: never;
|
|
61733
61779
|
thermostat_schedule_id?: never;
|
|
@@ -61826,6 +61872,7 @@ declare const _default: {
|
|
|
61826
61872
|
noise_threshold_name?: never;
|
|
61827
61873
|
noiseaware_metadata?: never;
|
|
61828
61874
|
method?: never;
|
|
61875
|
+
user_identity_id?: never;
|
|
61829
61876
|
climate_preset_key?: never;
|
|
61830
61877
|
is_fallback_climate_preset?: never;
|
|
61831
61878
|
thermostat_schedule_id?: never;
|
|
@@ -61939,6 +61986,7 @@ declare const _default: {
|
|
|
61939
61986
|
noise_threshold_name?: never;
|
|
61940
61987
|
noiseaware_metadata?: never;
|
|
61941
61988
|
method?: never;
|
|
61989
|
+
user_identity_id?: never;
|
|
61942
61990
|
climate_preset_key?: never;
|
|
61943
61991
|
is_fallback_climate_preset?: never;
|
|
61944
61992
|
thermostat_schedule_id?: never;
|
|
@@ -62049,6 +62097,7 @@ declare const _default: {
|
|
|
62049
62097
|
noise_threshold_name?: never;
|
|
62050
62098
|
noiseaware_metadata?: never;
|
|
62051
62099
|
method?: never;
|
|
62100
|
+
user_identity_id?: never;
|
|
62052
62101
|
climate_preset_key?: never;
|
|
62053
62102
|
is_fallback_climate_preset?: never;
|
|
62054
62103
|
thermostat_schedule_id?: never;
|
|
@@ -62160,6 +62209,7 @@ declare const _default: {
|
|
|
62160
62209
|
noise_threshold_name?: never;
|
|
62161
62210
|
noiseaware_metadata?: never;
|
|
62162
62211
|
method?: never;
|
|
62212
|
+
user_identity_id?: never;
|
|
62163
62213
|
climate_preset_key?: never;
|
|
62164
62214
|
is_fallback_climate_preset?: never;
|
|
62165
62215
|
thermostat_schedule_id?: never;
|
|
@@ -62265,6 +62315,7 @@ declare const _default: {
|
|
|
62265
62315
|
noise_threshold_name?: never;
|
|
62266
62316
|
noiseaware_metadata?: never;
|
|
62267
62317
|
method?: never;
|
|
62318
|
+
user_identity_id?: never;
|
|
62268
62319
|
climate_preset_key?: never;
|
|
62269
62320
|
is_fallback_climate_preset?: never;
|
|
62270
62321
|
thermostat_schedule_id?: never;
|
|
@@ -62369,6 +62420,7 @@ declare const _default: {
|
|
|
62369
62420
|
noise_threshold_name?: never;
|
|
62370
62421
|
noiseaware_metadata?: never;
|
|
62371
62422
|
method?: never;
|
|
62423
|
+
user_identity_id?: never;
|
|
62372
62424
|
climate_preset_key?: never;
|
|
62373
62425
|
is_fallback_climate_preset?: never;
|
|
62374
62426
|
thermostat_schedule_id?: never;
|
|
@@ -62467,6 +62519,7 @@ declare const _default: {
|
|
|
62467
62519
|
noise_threshold_name?: never;
|
|
62468
62520
|
noiseaware_metadata?: never;
|
|
62469
62521
|
method?: never;
|
|
62522
|
+
user_identity_id?: never;
|
|
62470
62523
|
climate_preset_key?: never;
|
|
62471
62524
|
is_fallback_climate_preset?: never;
|
|
62472
62525
|
thermostat_schedule_id?: never;
|
|
@@ -62585,6 +62638,7 @@ declare const _default: {
|
|
|
62585
62638
|
noise_threshold_name?: never;
|
|
62586
62639
|
noiseaware_metadata?: never;
|
|
62587
62640
|
method?: never;
|
|
62641
|
+
user_identity_id?: never;
|
|
62588
62642
|
climate_preset_key?: never;
|
|
62589
62643
|
is_fallback_climate_preset?: never;
|
|
62590
62644
|
thermostat_schedule_id?: never;
|
|
@@ -62707,6 +62761,7 @@ declare const _default: {
|
|
|
62707
62761
|
noise_threshold_name?: never;
|
|
62708
62762
|
noiseaware_metadata?: never;
|
|
62709
62763
|
method?: never;
|
|
62764
|
+
user_identity_id?: never;
|
|
62710
62765
|
climate_preset_key?: never;
|
|
62711
62766
|
is_fallback_climate_preset?: never;
|
|
62712
62767
|
thermostat_schedule_id?: never;
|
|
@@ -62831,6 +62886,7 @@ declare const _default: {
|
|
|
62831
62886
|
noise_threshold_name?: never;
|
|
62832
62887
|
noiseaware_metadata?: never;
|
|
62833
62888
|
method?: never;
|
|
62889
|
+
user_identity_id?: never;
|
|
62834
62890
|
climate_preset_key?: never;
|
|
62835
62891
|
is_fallback_climate_preset?: never;
|
|
62836
62892
|
thermostat_schedule_id?: never;
|
|
@@ -62959,6 +63015,7 @@ declare const _default: {
|
|
|
62959
63015
|
noise_threshold_name?: never;
|
|
62960
63016
|
noiseaware_metadata?: never;
|
|
62961
63017
|
method?: never;
|
|
63018
|
+
user_identity_id?: never;
|
|
62962
63019
|
climate_preset_key?: never;
|
|
62963
63020
|
is_fallback_climate_preset?: never;
|
|
62964
63021
|
thermostat_schedule_id?: never;
|
|
@@ -63100,6 +63157,7 @@ declare const _default: {
|
|
|
63100
63157
|
battery_level?: never;
|
|
63101
63158
|
battery_status?: never;
|
|
63102
63159
|
method?: never;
|
|
63160
|
+
user_identity_id?: never;
|
|
63103
63161
|
climate_preset_key?: never;
|
|
63104
63162
|
is_fallback_climate_preset?: never;
|
|
63105
63163
|
thermostat_schedule_id?: never;
|
|
@@ -63230,6 +63288,154 @@ declare const _default: {
|
|
|
63230
63288
|
noise_threshold_id?: never;
|
|
63231
63289
|
noise_threshold_name?: never;
|
|
63232
63290
|
noiseaware_metadata?: never;
|
|
63291
|
+
user_identity_id?: never;
|
|
63292
|
+
climate_preset_key?: never;
|
|
63293
|
+
is_fallback_climate_preset?: never;
|
|
63294
|
+
thermostat_schedule_id?: never;
|
|
63295
|
+
cooling_set_point_celsius?: never;
|
|
63296
|
+
cooling_set_point_fahrenheit?: never;
|
|
63297
|
+
fan_mode_setting?: never;
|
|
63298
|
+
heating_set_point_celsius?: never;
|
|
63299
|
+
heating_set_point_fahrenheit?: never;
|
|
63300
|
+
hvac_mode_setting?: never;
|
|
63301
|
+
lower_limit_celsius?: never;
|
|
63302
|
+
lower_limit_fahrenheit?: never;
|
|
63303
|
+
temperature_celsius?: never;
|
|
63304
|
+
temperature_fahrenheit?: never;
|
|
63305
|
+
upper_limit_celsius?: never;
|
|
63306
|
+
upper_limit_fahrenheit?: never;
|
|
63307
|
+
desired_temperature_celsius?: never;
|
|
63308
|
+
desired_temperature_fahrenheit?: never;
|
|
63309
|
+
device_name?: never;
|
|
63310
|
+
enrollment_automation_id?: never;
|
|
63311
|
+
acs_entrance_ids?: never;
|
|
63312
|
+
device_ids?: never;
|
|
63313
|
+
space_id?: never;
|
|
63314
|
+
space_key?: never;
|
|
63315
|
+
};
|
|
63316
|
+
required: string[];
|
|
63317
|
+
type: string;
|
|
63318
|
+
'x-route-path': string;
|
|
63319
|
+
deprecated?: never;
|
|
63320
|
+
'x-deprecated'?: never;
|
|
63321
|
+
} | {
|
|
63322
|
+
description: string;
|
|
63323
|
+
properties: {
|
|
63324
|
+
access_code_id: {
|
|
63325
|
+
description: string;
|
|
63326
|
+
format: string;
|
|
63327
|
+
type: string;
|
|
63328
|
+
};
|
|
63329
|
+
acs_entrance_id: {
|
|
63330
|
+
description: string;
|
|
63331
|
+
format: string;
|
|
63332
|
+
type: string;
|
|
63333
|
+
};
|
|
63334
|
+
acs_system_id: {
|
|
63335
|
+
description: string;
|
|
63336
|
+
format: string;
|
|
63337
|
+
type: string;
|
|
63338
|
+
};
|
|
63339
|
+
acs_user_id: {
|
|
63340
|
+
description: string;
|
|
63341
|
+
format: string;
|
|
63342
|
+
type: string;
|
|
63343
|
+
};
|
|
63344
|
+
action_attempt_id: {
|
|
63345
|
+
description: string;
|
|
63346
|
+
format: string;
|
|
63347
|
+
type: string;
|
|
63348
|
+
};
|
|
63349
|
+
connected_account_custom_metadata: {
|
|
63350
|
+
additionalProperties: {
|
|
63351
|
+
oneOf: {
|
|
63352
|
+
type: string;
|
|
63353
|
+
}[];
|
|
63354
|
+
};
|
|
63355
|
+
description: string;
|
|
63356
|
+
type: string;
|
|
63357
|
+
};
|
|
63358
|
+
connected_account_id: {
|
|
63359
|
+
description: string;
|
|
63360
|
+
format: string;
|
|
63361
|
+
type: string;
|
|
63362
|
+
};
|
|
63363
|
+
created_at: {
|
|
63364
|
+
description: string;
|
|
63365
|
+
format: string;
|
|
63366
|
+
type: string;
|
|
63367
|
+
};
|
|
63368
|
+
device_custom_metadata: {
|
|
63369
|
+
additionalProperties: {
|
|
63370
|
+
oneOf: {
|
|
63371
|
+
type: string;
|
|
63372
|
+
}[];
|
|
63373
|
+
};
|
|
63374
|
+
description: string;
|
|
63375
|
+
type: string;
|
|
63376
|
+
};
|
|
63377
|
+
device_id: {
|
|
63378
|
+
description: string;
|
|
63379
|
+
format: string;
|
|
63380
|
+
type: string;
|
|
63381
|
+
};
|
|
63382
|
+
event_id: {
|
|
63383
|
+
description: string;
|
|
63384
|
+
format: string;
|
|
63385
|
+
type: string;
|
|
63386
|
+
};
|
|
63387
|
+
event_type: {
|
|
63388
|
+
enum: string[];
|
|
63389
|
+
type: string;
|
|
63390
|
+
description?: never;
|
|
63391
|
+
};
|
|
63392
|
+
method: {
|
|
63393
|
+
description: string;
|
|
63394
|
+
enum: string[];
|
|
63395
|
+
type: string;
|
|
63396
|
+
};
|
|
63397
|
+
occurred_at: {
|
|
63398
|
+
description: string;
|
|
63399
|
+
format: string;
|
|
63400
|
+
type: string;
|
|
63401
|
+
};
|
|
63402
|
+
user_identity_id: {
|
|
63403
|
+
description: string;
|
|
63404
|
+
format: string;
|
|
63405
|
+
type: string;
|
|
63406
|
+
};
|
|
63407
|
+
workspace_id: {
|
|
63408
|
+
description: string;
|
|
63409
|
+
format: string;
|
|
63410
|
+
type: string;
|
|
63411
|
+
};
|
|
63412
|
+
code?: never;
|
|
63413
|
+
backup_access_code_id?: never;
|
|
63414
|
+
access_grant_id?: never;
|
|
63415
|
+
access_grant_key?: never;
|
|
63416
|
+
ends_at?: never;
|
|
63417
|
+
starts_at?: never;
|
|
63418
|
+
access_grant_ids?: never;
|
|
63419
|
+
access_grant_keys?: never;
|
|
63420
|
+
access_method_id?: never;
|
|
63421
|
+
is_backup_code?: never;
|
|
63422
|
+
acs_credential_id?: never;
|
|
63423
|
+
acs_encoder_id?: never;
|
|
63424
|
+
acs_access_group_id?: never;
|
|
63425
|
+
client_session_id?: never;
|
|
63426
|
+
connect_webview_id?: never;
|
|
63427
|
+
customer_key?: never;
|
|
63428
|
+
action_type?: never;
|
|
63429
|
+
status?: never;
|
|
63430
|
+
error_code?: never;
|
|
63431
|
+
battery_level?: never;
|
|
63432
|
+
battery_status?: never;
|
|
63433
|
+
minut_metadata?: never;
|
|
63434
|
+
noise_level_decibels?: never;
|
|
63435
|
+
noise_level_nrs?: never;
|
|
63436
|
+
noise_threshold_id?: never;
|
|
63437
|
+
noise_threshold_name?: never;
|
|
63438
|
+
noiseaware_metadata?: never;
|
|
63233
63439
|
climate_preset_key?: never;
|
|
63234
63440
|
is_fallback_climate_preset?: never;
|
|
63235
63441
|
thermostat_schedule_id?: never;
|
|
@@ -63362,6 +63568,7 @@ declare const _default: {
|
|
|
63362
63568
|
noise_threshold_name?: never;
|
|
63363
63569
|
noiseaware_metadata?: never;
|
|
63364
63570
|
method?: never;
|
|
63571
|
+
user_identity_id?: never;
|
|
63365
63572
|
cooling_set_point_celsius?: never;
|
|
63366
63573
|
cooling_set_point_fahrenheit?: never;
|
|
63367
63574
|
fan_mode_setting?: never;
|
|
@@ -63511,6 +63718,7 @@ declare const _default: {
|
|
|
63511
63718
|
noise_threshold_id?: never;
|
|
63512
63719
|
noise_threshold_name?: never;
|
|
63513
63720
|
noiseaware_metadata?: never;
|
|
63721
|
+
user_identity_id?: never;
|
|
63514
63722
|
climate_preset_key?: never;
|
|
63515
63723
|
is_fallback_climate_preset?: never;
|
|
63516
63724
|
thermostat_schedule_id?: never;
|
|
@@ -63657,6 +63865,7 @@ declare const _default: {
|
|
|
63657
63865
|
noise_threshold_name?: never;
|
|
63658
63866
|
noiseaware_metadata?: never;
|
|
63659
63867
|
method?: never;
|
|
63868
|
+
user_identity_id?: never;
|
|
63660
63869
|
climate_preset_key?: never;
|
|
63661
63870
|
is_fallback_climate_preset?: never;
|
|
63662
63871
|
thermostat_schedule_id?: never;
|
|
@@ -63789,6 +63998,7 @@ declare const _default: {
|
|
|
63789
63998
|
noise_threshold_name?: never;
|
|
63790
63999
|
noiseaware_metadata?: never;
|
|
63791
64000
|
method?: never;
|
|
64001
|
+
user_identity_id?: never;
|
|
63792
64002
|
climate_preset_key?: never;
|
|
63793
64003
|
is_fallback_climate_preset?: never;
|
|
63794
64004
|
thermostat_schedule_id?: never;
|
|
@@ -63913,6 +64123,7 @@ declare const _default: {
|
|
|
63913
64123
|
noise_threshold_name?: never;
|
|
63914
64124
|
noiseaware_metadata?: never;
|
|
63915
64125
|
method?: never;
|
|
64126
|
+
user_identity_id?: never;
|
|
63916
64127
|
climate_preset_key?: never;
|
|
63917
64128
|
is_fallback_climate_preset?: never;
|
|
63918
64129
|
thermostat_schedule_id?: never;
|
|
@@ -64033,6 +64244,7 @@ declare const _default: {
|
|
|
64033
64244
|
noise_threshold_name?: never;
|
|
64034
64245
|
noiseaware_metadata?: never;
|
|
64035
64246
|
method?: never;
|
|
64247
|
+
user_identity_id?: never;
|
|
64036
64248
|
climate_preset_key?: never;
|
|
64037
64249
|
is_fallback_climate_preset?: never;
|
|
64038
64250
|
thermostat_schedule_id?: never;
|
|
@@ -64131,6 +64343,7 @@ declare const _default: {
|
|
|
64131
64343
|
noise_threshold_name?: never;
|
|
64132
64344
|
noiseaware_metadata?: never;
|
|
64133
64345
|
method?: never;
|
|
64346
|
+
user_identity_id?: never;
|
|
64134
64347
|
climate_preset_key?: never;
|
|
64135
64348
|
is_fallback_climate_preset?: never;
|
|
64136
64349
|
thermostat_schedule_id?: never;
|
|
@@ -64236,6 +64449,7 @@ declare const _default: {
|
|
|
64236
64449
|
noise_threshold_name?: never;
|
|
64237
64450
|
noiseaware_metadata?: never;
|
|
64238
64451
|
method?: never;
|
|
64452
|
+
user_identity_id?: never;
|
|
64239
64453
|
climate_preset_key?: never;
|
|
64240
64454
|
is_fallback_climate_preset?: never;
|
|
64241
64455
|
thermostat_schedule_id?: never;
|
|
@@ -64355,6 +64569,7 @@ declare const _default: {
|
|
|
64355
64569
|
noise_threshold_name?: never;
|
|
64356
64570
|
noiseaware_metadata?: never;
|
|
64357
64571
|
method?: never;
|
|
64572
|
+
user_identity_id?: never;
|
|
64358
64573
|
climate_preset_key?: never;
|
|
64359
64574
|
is_fallback_climate_preset?: never;
|
|
64360
64575
|
thermostat_schedule_id?: never;
|
|
@@ -145305,7 +145520,7 @@ type Routes = {
|
|
|
145305
145520
|
/** Date and time at which the event occurred. */
|
|
145306
145521
|
occurred_at: string;
|
|
145307
145522
|
/** ID of the affected device. */
|
|
145308
|
-
device_id
|
|
145523
|
+
device_id?: string | undefined;
|
|
145309
145524
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
145310
145525
|
connected_account_id: string;
|
|
145311
145526
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -145323,6 +145538,30 @@ type Routes = {
|
|
|
145323
145538
|
action_attempt_id?: string | undefined;
|
|
145324
145539
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
145325
145540
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
145541
|
+
/**
|
|
145542
|
+
undocumented: Unreleased.
|
|
145543
|
+
---
|
|
145544
|
+
ID of the user identity associated with the unlock event.
|
|
145545
|
+
*/
|
|
145546
|
+
user_identity_id?: string | undefined;
|
|
145547
|
+
/**
|
|
145548
|
+
undocumented: Unreleased.
|
|
145549
|
+
---
|
|
145550
|
+
ID of the ACS system associated with the unlock event.
|
|
145551
|
+
*/
|
|
145552
|
+
acs_system_id?: string | undefined;
|
|
145553
|
+
/**
|
|
145554
|
+
undocumented: Unreleased.
|
|
145555
|
+
---
|
|
145556
|
+
ID of the ACS user associated with the unlock event.
|
|
145557
|
+
*/
|
|
145558
|
+
acs_user_id?: string | undefined;
|
|
145559
|
+
/**
|
|
145560
|
+
undocumented: Unreleased.
|
|
145561
|
+
---
|
|
145562
|
+
ID of the ACS entrance associated with the unlock event.
|
|
145563
|
+
*/
|
|
145564
|
+
acs_entrance_id?: string | undefined;
|
|
145326
145565
|
} | {
|
|
145327
145566
|
/** ID of the event. */
|
|
145328
145567
|
event_id: string;
|
|
@@ -147265,7 +147504,7 @@ type Routes = {
|
|
|
147265
147504
|
/** Date and time at which the event occurred. */
|
|
147266
147505
|
occurred_at: string;
|
|
147267
147506
|
/** ID of the affected device. */
|
|
147268
|
-
device_id
|
|
147507
|
+
device_id?: string | undefined;
|
|
147269
147508
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
147270
147509
|
connected_account_id: string;
|
|
147271
147510
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -147283,6 +147522,30 @@ type Routes = {
|
|
|
147283
147522
|
action_attempt_id?: string | undefined;
|
|
147284
147523
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
147285
147524
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
147525
|
+
/**
|
|
147526
|
+
undocumented: Unreleased.
|
|
147527
|
+
---
|
|
147528
|
+
ID of the user identity associated with the unlock event.
|
|
147529
|
+
*/
|
|
147530
|
+
user_identity_id?: string | undefined;
|
|
147531
|
+
/**
|
|
147532
|
+
undocumented: Unreleased.
|
|
147533
|
+
---
|
|
147534
|
+
ID of the ACS system associated with the unlock event.
|
|
147535
|
+
*/
|
|
147536
|
+
acs_system_id?: string | undefined;
|
|
147537
|
+
/**
|
|
147538
|
+
undocumented: Unreleased.
|
|
147539
|
+
---
|
|
147540
|
+
ID of the ACS user associated with the unlock event.
|
|
147541
|
+
*/
|
|
147542
|
+
acs_user_id?: string | undefined;
|
|
147543
|
+
/**
|
|
147544
|
+
undocumented: Unreleased.
|
|
147545
|
+
---
|
|
147546
|
+
ID of the ACS entrance associated with the unlock event.
|
|
147547
|
+
*/
|
|
147548
|
+
acs_entrance_id?: string | undefined;
|
|
147286
147549
|
} | {
|
|
147287
147550
|
/** ID of the event. */
|
|
147288
147551
|
event_id: string;
|
|
@@ -166909,7 +167172,7 @@ type Routes = {
|
|
|
166909
167172
|
/** Date and time at which the event occurred. */
|
|
166910
167173
|
occurred_at: string;
|
|
166911
167174
|
/** ID of the affected device. */
|
|
166912
|
-
device_id
|
|
167175
|
+
device_id?: string | undefined;
|
|
166913
167176
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
166914
167177
|
connected_account_id: string;
|
|
166915
167178
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -166927,6 +167190,30 @@ type Routes = {
|
|
|
166927
167190
|
action_attempt_id?: string | undefined;
|
|
166928
167191
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
166929
167192
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
167193
|
+
/**
|
|
167194
|
+
undocumented: Unreleased.
|
|
167195
|
+
---
|
|
167196
|
+
ID of the user identity associated with the unlock event.
|
|
167197
|
+
*/
|
|
167198
|
+
user_identity_id?: string | undefined;
|
|
167199
|
+
/**
|
|
167200
|
+
undocumented: Unreleased.
|
|
167201
|
+
---
|
|
167202
|
+
ID of the ACS system associated with the unlock event.
|
|
167203
|
+
*/
|
|
167204
|
+
acs_system_id?: string | undefined;
|
|
167205
|
+
/**
|
|
167206
|
+
undocumented: Unreleased.
|
|
167207
|
+
---
|
|
167208
|
+
ID of the ACS user associated with the unlock event.
|
|
167209
|
+
*/
|
|
167210
|
+
acs_user_id?: string | undefined;
|
|
167211
|
+
/**
|
|
167212
|
+
undocumented: Unreleased.
|
|
167213
|
+
---
|
|
167214
|
+
ID of the ACS entrance associated with the unlock event.
|
|
167215
|
+
*/
|
|
167216
|
+
acs_entrance_id?: string | undefined;
|
|
166930
167217
|
} | {
|
|
166931
167218
|
/** ID of the event. */
|
|
166932
167219
|
event_id: string;
|
|
@@ -195424,7 +195711,7 @@ type Routes = {
|
|
|
195424
195711
|
/** Date and time at which the event occurred. */
|
|
195425
195712
|
occurred_at: string;
|
|
195426
195713
|
/** ID of the affected device. */
|
|
195427
|
-
device_id
|
|
195714
|
+
device_id?: string | undefined;
|
|
195428
195715
|
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
|
|
195429
195716
|
connected_account_id: string;
|
|
195430
195717
|
/** Custom metadata of the device, present when device_id is provided. */
|
|
@@ -195442,6 +195729,30 @@ type Routes = {
|
|
|
195442
195729
|
action_attempt_id?: string | undefined;
|
|
195443
195730
|
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
|
|
195444
195731
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
|
|
195732
|
+
/**
|
|
195733
|
+
undocumented: Unreleased.
|
|
195734
|
+
---
|
|
195735
|
+
ID of the user identity associated with the unlock event.
|
|
195736
|
+
*/
|
|
195737
|
+
user_identity_id?: string | undefined;
|
|
195738
|
+
/**
|
|
195739
|
+
undocumented: Unreleased.
|
|
195740
|
+
---
|
|
195741
|
+
ID of the ACS system associated with the unlock event.
|
|
195742
|
+
*/
|
|
195743
|
+
acs_system_id?: string | undefined;
|
|
195744
|
+
/**
|
|
195745
|
+
undocumented: Unreleased.
|
|
195746
|
+
---
|
|
195747
|
+
ID of the ACS user associated with the unlock event.
|
|
195748
|
+
*/
|
|
195749
|
+
acs_user_id?: string | undefined;
|
|
195750
|
+
/**
|
|
195751
|
+
undocumented: Unreleased.
|
|
195752
|
+
---
|
|
195753
|
+
ID of the ACS entrance associated with the unlock event.
|
|
195754
|
+
*/
|
|
195755
|
+
acs_entrance_id?: string | undefined;
|
|
195445
195756
|
} | {
|
|
195446
195757
|
/** ID of the event. */
|
|
195447
195758
|
event_id: string;
|