@seamapi/types 1.700.0 → 1.702.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 +108 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +332 -4
- package/dist/index.cjs +108 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +42 -0
- package/lib/seam/connect/models/events/access-grants.d.ts +54 -0
- package/lib/seam/connect/models/events/access-grants.js +12 -0
- package/lib/seam/connect/models/events/access-grants.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +27 -1
- package/lib/seam/connect/openapi.d.ts +191 -0
- package/lib/seam/connect/openapi.js +93 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +73 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-grants.ts +20 -0
- package/src/lib/seam/connect/openapi.ts +100 -2
- package/src/lib/seam/connect/route-types.ts +77 -0
|
@@ -16056,6 +16056,32 @@ export declare const batch: z.ZodObject<{
|
|
|
16056
16056
|
workspace_id: z.ZodString;
|
|
16057
16057
|
created_at: z.ZodString;
|
|
16058
16058
|
occurred_at: z.ZodString;
|
|
16059
|
+
} & {
|
|
16060
|
+
access_grant_id: z.ZodString;
|
|
16061
|
+
} & {
|
|
16062
|
+
event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
|
|
16063
|
+
error_message: z.ZodString;
|
|
16064
|
+
}, "strip", z.ZodTypeAny, {
|
|
16065
|
+
workspace_id: string;
|
|
16066
|
+
created_at: string;
|
|
16067
|
+
access_grant_id: string;
|
|
16068
|
+
event_id: string;
|
|
16069
|
+
occurred_at: string;
|
|
16070
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
16071
|
+
error_message: string;
|
|
16072
|
+
}, {
|
|
16073
|
+
workspace_id: string;
|
|
16074
|
+
created_at: string;
|
|
16075
|
+
access_grant_id: string;
|
|
16076
|
+
event_id: string;
|
|
16077
|
+
occurred_at: string;
|
|
16078
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
16079
|
+
error_message: string;
|
|
16080
|
+
}>, z.ZodObject<{
|
|
16081
|
+
event_id: z.ZodString;
|
|
16082
|
+
workspace_id: z.ZodString;
|
|
16083
|
+
created_at: z.ZodString;
|
|
16084
|
+
occurred_at: z.ZodString;
|
|
16059
16085
|
} & {
|
|
16060
16086
|
access_method_id: z.ZodString;
|
|
16061
16087
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -24322,6 +24348,14 @@ export declare const batch: z.ZodObject<{
|
|
|
24322
24348
|
starts_at?: string | undefined;
|
|
24323
24349
|
ends_at?: string | undefined;
|
|
24324
24350
|
access_grant_key?: string | undefined;
|
|
24351
|
+
} | {
|
|
24352
|
+
workspace_id: string;
|
|
24353
|
+
created_at: string;
|
|
24354
|
+
access_grant_id: string;
|
|
24355
|
+
event_id: string;
|
|
24356
|
+
occurred_at: string;
|
|
24357
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
24358
|
+
error_message: string;
|
|
24325
24359
|
} | {
|
|
24326
24360
|
workspace_id: string;
|
|
24327
24361
|
created_at: string;
|
|
@@ -28404,6 +28438,14 @@ export declare const batch: z.ZodObject<{
|
|
|
28404
28438
|
starts_at?: string | undefined;
|
|
28405
28439
|
ends_at?: string | undefined;
|
|
28406
28440
|
access_grant_key?: string | undefined;
|
|
28441
|
+
} | {
|
|
28442
|
+
workspace_id: string;
|
|
28443
|
+
created_at: string;
|
|
28444
|
+
access_grant_id: string;
|
|
28445
|
+
event_id: string;
|
|
28446
|
+
occurred_at: string;
|
|
28447
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
28448
|
+
error_message: string;
|
|
28407
28449
|
} | {
|
|
28408
28450
|
workspace_id: string;
|
|
28409
28451
|
created_at: string;
|
|
@@ -162,6 +162,34 @@ export declare const access_grant_access_times_changed_event: z.ZodObject<{
|
|
|
162
162
|
access_grant_key?: string | undefined;
|
|
163
163
|
}>;
|
|
164
164
|
export type AccessGrantAccessTimesChangedEvent = z.infer<typeof access_grant_access_times_changed_event>;
|
|
165
|
+
export declare const access_grant_could_not_create_requested_access_methods_event: z.ZodObject<{
|
|
166
|
+
event_id: z.ZodString;
|
|
167
|
+
workspace_id: z.ZodString;
|
|
168
|
+
created_at: z.ZodString;
|
|
169
|
+
occurred_at: z.ZodString;
|
|
170
|
+
} & {
|
|
171
|
+
access_grant_id: z.ZodString;
|
|
172
|
+
} & {
|
|
173
|
+
event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
|
|
174
|
+
error_message: z.ZodString;
|
|
175
|
+
}, "strip", z.ZodTypeAny, {
|
|
176
|
+
workspace_id: string;
|
|
177
|
+
created_at: string;
|
|
178
|
+
access_grant_id: string;
|
|
179
|
+
event_id: string;
|
|
180
|
+
occurred_at: string;
|
|
181
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
182
|
+
error_message: string;
|
|
183
|
+
}, {
|
|
184
|
+
workspace_id: string;
|
|
185
|
+
created_at: string;
|
|
186
|
+
access_grant_id: string;
|
|
187
|
+
event_id: string;
|
|
188
|
+
occurred_at: string;
|
|
189
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
190
|
+
error_message: string;
|
|
191
|
+
}>;
|
|
192
|
+
export type AccessGrantCouldNotCreateRequestedAccessMethodsEvent = z.infer<typeof access_grant_could_not_create_requested_access_methods_event>;
|
|
165
193
|
export declare const access_grant_events: readonly [z.ZodObject<{
|
|
166
194
|
event_id: z.ZodString;
|
|
167
195
|
workspace_id: z.ZodString;
|
|
@@ -315,4 +343,30 @@ export declare const access_grant_events: readonly [z.ZodObject<{
|
|
|
315
343
|
starts_at?: string | undefined;
|
|
316
344
|
ends_at?: string | undefined;
|
|
317
345
|
access_grant_key?: string | undefined;
|
|
346
|
+
}>, z.ZodObject<{
|
|
347
|
+
event_id: z.ZodString;
|
|
348
|
+
workspace_id: z.ZodString;
|
|
349
|
+
created_at: z.ZodString;
|
|
350
|
+
occurred_at: z.ZodString;
|
|
351
|
+
} & {
|
|
352
|
+
access_grant_id: z.ZodString;
|
|
353
|
+
} & {
|
|
354
|
+
event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
|
|
355
|
+
error_message: z.ZodString;
|
|
356
|
+
}, "strip", z.ZodTypeAny, {
|
|
357
|
+
workspace_id: string;
|
|
358
|
+
created_at: string;
|
|
359
|
+
access_grant_id: string;
|
|
360
|
+
event_id: string;
|
|
361
|
+
occurred_at: string;
|
|
362
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
363
|
+
error_message: string;
|
|
364
|
+
}, {
|
|
365
|
+
workspace_id: string;
|
|
366
|
+
created_at: string;
|
|
367
|
+
access_grant_id: string;
|
|
368
|
+
event_id: string;
|
|
369
|
+
occurred_at: string;
|
|
370
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
371
|
+
error_message: string;
|
|
318
372
|
}>];
|
|
@@ -72,6 +72,17 @@ export const access_grant_access_times_changed_event = access_grant_event.extend
|
|
|
72
72
|
---
|
|
73
73
|
An Access Grant's start or end time was changed.
|
|
74
74
|
`);
|
|
75
|
+
export const access_grant_could_not_create_requested_access_methods_event = access_grant_event.extend({
|
|
76
|
+
event_type: z.literal('access_grant.could_not_create_requested_access_methods'),
|
|
77
|
+
error_message: z
|
|
78
|
+
.string()
|
|
79
|
+
.describe('Description of why the access methods could not be created.'),
|
|
80
|
+
}).describe(`
|
|
81
|
+
---
|
|
82
|
+
route_path: /access_grants
|
|
83
|
+
---
|
|
84
|
+
One or more requested access methods could not be created for an Access Grant.
|
|
85
|
+
`);
|
|
75
86
|
export const access_grant_events = [
|
|
76
87
|
access_grant_created_event,
|
|
77
88
|
access_grant_deleted_event,
|
|
@@ -79,5 +90,6 @@ export const access_grant_events = [
|
|
|
79
90
|
access_grant_access_granted_to_door_event,
|
|
80
91
|
access_grant_access_to_door_lost_event,
|
|
81
92
|
access_grant_access_times_changed_event,
|
|
93
|
+
access_grant_could_not_create_requested_access_methods_event,
|
|
82
94
|
];
|
|
83
95
|
//# sourceMappingURL=access-grants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-grants.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-grants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE1C,MAAM,kBAAkB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC7C,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,kCAAkC,CAAC;CAChD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,8CAA8C,GACzD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,0CAA0C,CAAC;CAClE,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,eAAe,GAAG,CAAC;KACtB,MAAM,EAAE;KACR,IAAI,EAAE;KACN,QAAQ,CACP,2GAA2G,CAC5G,CAAA;AAEH,MAAM,CAAC,MAAM,yCAAyC,GACpD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAAC;IAC5D,eAAe;CAChB,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,sCAAsC,GAAG,kBAAkB,CAAC,MAAM,CAC7E;IACE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,kCAAkC,CAAC;IACzD,eAAe;CAChB,CACF,CAAC,QAAQ,CAAC;;;;;GAKR,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,uCAAuC,GAClD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,mCAAmC,CAAC;IAC1D,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IACvD,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,0BAA0B;IAC1B,0BAA0B;IAC1B,8CAA8C;IAC9C,yCAAyC;IACzC,sCAAsC;IACtC,uCAAuC;
|
|
1
|
+
{"version":3,"file":"access-grants.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/access-grants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE1C,MAAM,kBAAkB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC7C,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,kCAAkC,CAAC;CAChD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,0BAA0B,GAAG,kBAAkB,CAAC,MAAM,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sBAAsB,CAAC;CAC9C,CAAC,CAAC,QAAQ,CAAC;;;;;GAKT,CAAC,CAAA;AAEJ,MAAM,CAAC,MAAM,8CAA8C,GACzD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,0CAA0C,CAAC;CAClE,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,eAAe,GAAG,CAAC;KACtB,MAAM,EAAE;KACR,IAAI,EAAE;KACN,QAAQ,CACP,2GAA2G,CAC5G,CAAA;AAEH,MAAM,CAAC,MAAM,yCAAyC,GACpD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAAC;IAC5D,eAAe;CAChB,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,sCAAsC,GAAG,kBAAkB,CAAC,MAAM,CAC7E;IACE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,kCAAkC,CAAC;IACzD,eAAe;CAChB,CACF,CAAC,QAAQ,CAAC;;;;;GAKR,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,uCAAuC,GAClD,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,mCAAmC,CAAC;IAC1D,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IACvD,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,4DAA4D,GACvE,kBAAkB,CAAC,MAAM,CAAC;IACxB,UAAU,EAAE,CAAC,CAAC,OAAO,CACnB,wDAAwD,CACzD;IACD,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,QAAQ,CAAC,6DAA6D,CAAC;CAC3E,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,0BAA0B;IAC1B,0BAA0B;IAC1B,8CAA8C;IAC9C,yCAAyC;IACzC,sCAAsC;IACtC,uCAAuC;IACvC,4DAA4D;CACpD,CAAA"}
|
|
@@ -764,6 +764,32 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
764
764
|
workspace_id: z.ZodString;
|
|
765
765
|
created_at: z.ZodString;
|
|
766
766
|
occurred_at: z.ZodString;
|
|
767
|
+
} & {
|
|
768
|
+
access_grant_id: z.ZodString;
|
|
769
|
+
} & {
|
|
770
|
+
event_type: z.ZodLiteral<"access_grant.could_not_create_requested_access_methods">;
|
|
771
|
+
error_message: z.ZodString;
|
|
772
|
+
}, "strip", z.ZodTypeAny, {
|
|
773
|
+
workspace_id: string;
|
|
774
|
+
created_at: string;
|
|
775
|
+
access_grant_id: string;
|
|
776
|
+
event_id: string;
|
|
777
|
+
occurred_at: string;
|
|
778
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
779
|
+
error_message: string;
|
|
780
|
+
}, {
|
|
781
|
+
workspace_id: string;
|
|
782
|
+
created_at: string;
|
|
783
|
+
access_grant_id: string;
|
|
784
|
+
event_id: string;
|
|
785
|
+
occurred_at: string;
|
|
786
|
+
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
787
|
+
error_message: string;
|
|
788
|
+
}>, z.ZodObject<{
|
|
789
|
+
event_id: z.ZodString;
|
|
790
|
+
workspace_id: z.ZodString;
|
|
791
|
+
created_at: z.ZodString;
|
|
792
|
+
occurred_at: z.ZodString;
|
|
767
793
|
} & {
|
|
768
794
|
access_method_id: z.ZodString;
|
|
769
795
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3126,5 +3152,5 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3126
3152
|
space_key?: string | undefined;
|
|
3127
3153
|
}>]>;
|
|
3128
3154
|
export type SeamEvent = z.infer<typeof seam_event>;
|
|
3129
|
-
export declare const seam_event_type: z.ZodEnum<["access_code.created" | "access_code.changed" | "access_code.scheduled_on_device" | "access_code.set_on_device" | "access_code.removed_from_device" | "access_code.delay_in_setting_on_device" | "access_code.failed_to_set_on_device" | "access_code.deleted" | "access_code.delay_in_removing_from_device" | "access_code.failed_to_remove_from_device" | "access_code.modified_external_to_seam" | "access_code.deleted_external_to_seam" | "access_code.backup_access_code_pulled" | "access_code.unmanaged.converted_to_managed" | "access_code.unmanaged.failed_to_convert_to_managed" | "access_code.unmanaged.created" | "access_code.unmanaged.removed" | "access_grant.created" | "access_grant.deleted" | "access_grant.access_granted_to_all_doors" | "access_grant.access_granted_to_door" | "access_grant.access_to_door_lost" | "access_grant.access_times_changed" | "access_method.issued" | "access_method.card_encoding_required" | "access_method.revoked" | "access_method.deleted" | "access_method.reissued" | "acs_access_group.deleted" | "acs_credential.deleted" | "acs_credential.issued" | "acs_credential.reissued" | "acs_credential.invalidated" | "acs_encoder.added" | "acs_encoder.removed" | "acs_entrance.added" | "acs_entrance.removed" | "acs_system.connected" | "acs_system.disconnected" | "acs_system.added" | "acs_user.deleted" | "acs_user.created" | "action_attempt.lock_door.succeeded" | "action_attempt.lock_door.failed" | "action_attempt.unlock_door.succeeded" | "action_attempt.unlock_door.failed" | "client_session.deleted" | "connect_webview.login_succeeded" | "connect_webview.login_failed" | "connected_account.connected" | "connected_account.created" | "connected_account.successful_login" | "connected_account.disconnected" | "connected_account.completed_first_sync" | "connected_account.deleted" | "connected_account.completed_first_sync_after_reconnection" | "connected_account.reauthorization_requested" | "device.connected" | "device.added" | "device.converted_to_unmanaged" | "device.unmanaged.converted_to_managed" | "device.unmanaged.connected" | "device.disconnected" | "device.unmanaged.disconnected" | "device.tampered" | "device.low_battery" | "device.battery_status_changed" | "device.removed" | "device.deleted" | "device.third_party_integration_detected" | "device.third_party_integration_no_longer_detected" | "device.salto.privacy_mode_activated" | "device.salto.privacy_mode_deactivated" | "device.connection_became_flaky" | "device.connection_stabilized" | "device.error.subscription_required" | "device.error.subscription_required.resolved" | "device.accessory_keypad_connected" | "device.accessory_keypad_disconnected" | "noise_sensor.noise_threshold_triggered" | "lock.locked" | "lock.unlocked" | "lock.access_denied" | "thermostat.climate_preset_activated" | "thermostat.manually_adjusted" | "thermostat.temperature_threshold_exceeded" | "thermostat.temperature_threshold_no_longer_exceeded" | "thermostat.temperature_reached_set_point" | "thermostat.temperature_changed" | "device.name_changed" | "enrollment_automation.deleted" | "phone.deactivated" | "space.device_membership_changed" | "space.created" | "space.deleted", ...("access_code.created" | "access_code.changed" | "access_code.scheduled_on_device" | "access_code.set_on_device" | "access_code.removed_from_device" | "access_code.delay_in_setting_on_device" | "access_code.failed_to_set_on_device" | "access_code.deleted" | "access_code.delay_in_removing_from_device" | "access_code.failed_to_remove_from_device" | "access_code.modified_external_to_seam" | "access_code.deleted_external_to_seam" | "access_code.backup_access_code_pulled" | "access_code.unmanaged.converted_to_managed" | "access_code.unmanaged.failed_to_convert_to_managed" | "access_code.unmanaged.created" | "access_code.unmanaged.removed" | "access_grant.created" | "access_grant.deleted" | "access_grant.access_granted_to_all_doors" | "access_grant.access_granted_to_door" | "access_grant.access_to_door_lost" | "access_grant.access_times_changed" | "access_method.issued" | "access_method.card_encoding_required" | "access_method.revoked" | "access_method.deleted" | "access_method.reissued" | "acs_access_group.deleted" | "acs_credential.deleted" | "acs_credential.issued" | "acs_credential.reissued" | "acs_credential.invalidated" | "acs_encoder.added" | "acs_encoder.removed" | "acs_entrance.added" | "acs_entrance.removed" | "acs_system.connected" | "acs_system.disconnected" | "acs_system.added" | "acs_user.deleted" | "acs_user.created" | "action_attempt.lock_door.succeeded" | "action_attempt.lock_door.failed" | "action_attempt.unlock_door.succeeded" | "action_attempt.unlock_door.failed" | "client_session.deleted" | "connect_webview.login_succeeded" | "connect_webview.login_failed" | "connected_account.connected" | "connected_account.created" | "connected_account.successful_login" | "connected_account.disconnected" | "connected_account.completed_first_sync" | "connected_account.deleted" | "connected_account.completed_first_sync_after_reconnection" | "connected_account.reauthorization_requested" | "device.connected" | "device.added" | "device.converted_to_unmanaged" | "device.unmanaged.converted_to_managed" | "device.unmanaged.connected" | "device.disconnected" | "device.unmanaged.disconnected" | "device.tampered" | "device.low_battery" | "device.battery_status_changed" | "device.removed" | "device.deleted" | "device.third_party_integration_detected" | "device.third_party_integration_no_longer_detected" | "device.salto.privacy_mode_activated" | "device.salto.privacy_mode_deactivated" | "device.connection_became_flaky" | "device.connection_stabilized" | "device.error.subscription_required" | "device.error.subscription_required.resolved" | "device.accessory_keypad_connected" | "device.accessory_keypad_disconnected" | "noise_sensor.noise_threshold_triggered" | "lock.locked" | "lock.unlocked" | "lock.access_denied" | "thermostat.climate_preset_activated" | "thermostat.manually_adjusted" | "thermostat.temperature_threshold_exceeded" | "thermostat.temperature_threshold_no_longer_exceeded" | "thermostat.temperature_reached_set_point" | "thermostat.temperature_changed" | "device.name_changed" | "enrollment_automation.deleted" | "phone.deactivated" | "space.device_membership_changed" | "space.created" | "space.deleted")[]]>;
|
|
3155
|
+
export declare const seam_event_type: z.ZodEnum<["access_code.created" | "access_code.changed" | "access_code.scheduled_on_device" | "access_code.set_on_device" | "access_code.removed_from_device" | "access_code.delay_in_setting_on_device" | "access_code.failed_to_set_on_device" | "access_code.deleted" | "access_code.delay_in_removing_from_device" | "access_code.failed_to_remove_from_device" | "access_code.modified_external_to_seam" | "access_code.deleted_external_to_seam" | "access_code.backup_access_code_pulled" | "access_code.unmanaged.converted_to_managed" | "access_code.unmanaged.failed_to_convert_to_managed" | "access_code.unmanaged.created" | "access_code.unmanaged.removed" | "access_grant.created" | "access_grant.deleted" | "access_grant.access_granted_to_all_doors" | "access_grant.access_granted_to_door" | "access_grant.access_to_door_lost" | "access_grant.access_times_changed" | "access_grant.could_not_create_requested_access_methods" | "access_method.issued" | "access_method.card_encoding_required" | "access_method.revoked" | "access_method.deleted" | "access_method.reissued" | "acs_access_group.deleted" | "acs_credential.deleted" | "acs_credential.issued" | "acs_credential.reissued" | "acs_credential.invalidated" | "acs_encoder.added" | "acs_encoder.removed" | "acs_entrance.added" | "acs_entrance.removed" | "acs_system.connected" | "acs_system.disconnected" | "acs_system.added" | "acs_user.deleted" | "acs_user.created" | "action_attempt.lock_door.succeeded" | "action_attempt.lock_door.failed" | "action_attempt.unlock_door.succeeded" | "action_attempt.unlock_door.failed" | "client_session.deleted" | "connect_webview.login_succeeded" | "connect_webview.login_failed" | "connected_account.connected" | "connected_account.created" | "connected_account.successful_login" | "connected_account.disconnected" | "connected_account.completed_first_sync" | "connected_account.deleted" | "connected_account.completed_first_sync_after_reconnection" | "connected_account.reauthorization_requested" | "device.connected" | "device.added" | "device.converted_to_unmanaged" | "device.unmanaged.converted_to_managed" | "device.unmanaged.connected" | "device.disconnected" | "device.unmanaged.disconnected" | "device.tampered" | "device.low_battery" | "device.battery_status_changed" | "device.removed" | "device.deleted" | "device.third_party_integration_detected" | "device.third_party_integration_no_longer_detected" | "device.salto.privacy_mode_activated" | "device.salto.privacy_mode_deactivated" | "device.connection_became_flaky" | "device.connection_stabilized" | "device.error.subscription_required" | "device.error.subscription_required.resolved" | "device.accessory_keypad_connected" | "device.accessory_keypad_disconnected" | "noise_sensor.noise_threshold_triggered" | "lock.locked" | "lock.unlocked" | "lock.access_denied" | "thermostat.climate_preset_activated" | "thermostat.manually_adjusted" | "thermostat.temperature_threshold_exceeded" | "thermostat.temperature_threshold_no_longer_exceeded" | "thermostat.temperature_reached_set_point" | "thermostat.temperature_changed" | "device.name_changed" | "enrollment_automation.deleted" | "phone.deactivated" | "space.device_membership_changed" | "space.created" | "space.deleted", ...("access_code.created" | "access_code.changed" | "access_code.scheduled_on_device" | "access_code.set_on_device" | "access_code.removed_from_device" | "access_code.delay_in_setting_on_device" | "access_code.failed_to_set_on_device" | "access_code.deleted" | "access_code.delay_in_removing_from_device" | "access_code.failed_to_remove_from_device" | "access_code.modified_external_to_seam" | "access_code.deleted_external_to_seam" | "access_code.backup_access_code_pulled" | "access_code.unmanaged.converted_to_managed" | "access_code.unmanaged.failed_to_convert_to_managed" | "access_code.unmanaged.created" | "access_code.unmanaged.removed" | "access_grant.created" | "access_grant.deleted" | "access_grant.access_granted_to_all_doors" | "access_grant.access_granted_to_door" | "access_grant.access_to_door_lost" | "access_grant.access_times_changed" | "access_grant.could_not_create_requested_access_methods" | "access_method.issued" | "access_method.card_encoding_required" | "access_method.revoked" | "access_method.deleted" | "access_method.reissued" | "acs_access_group.deleted" | "acs_credential.deleted" | "acs_credential.issued" | "acs_credential.reissued" | "acs_credential.invalidated" | "acs_encoder.added" | "acs_encoder.removed" | "acs_entrance.added" | "acs_entrance.removed" | "acs_system.connected" | "acs_system.disconnected" | "acs_system.added" | "acs_user.deleted" | "acs_user.created" | "action_attempt.lock_door.succeeded" | "action_attempt.lock_door.failed" | "action_attempt.unlock_door.succeeded" | "action_attempt.unlock_door.failed" | "client_session.deleted" | "connect_webview.login_succeeded" | "connect_webview.login_failed" | "connected_account.connected" | "connected_account.created" | "connected_account.successful_login" | "connected_account.disconnected" | "connected_account.completed_first_sync" | "connected_account.deleted" | "connected_account.completed_first_sync_after_reconnection" | "connected_account.reauthorization_requested" | "device.connected" | "device.added" | "device.converted_to_unmanaged" | "device.unmanaged.converted_to_managed" | "device.unmanaged.connected" | "device.disconnected" | "device.unmanaged.disconnected" | "device.tampered" | "device.low_battery" | "device.battery_status_changed" | "device.removed" | "device.deleted" | "device.third_party_integration_detected" | "device.third_party_integration_no_longer_detected" | "device.salto.privacy_mode_activated" | "device.salto.privacy_mode_deactivated" | "device.connection_became_flaky" | "device.connection_stabilized" | "device.error.subscription_required" | "device.error.subscription_required.resolved" | "device.accessory_keypad_connected" | "device.accessory_keypad_disconnected" | "noise_sensor.noise_threshold_triggered" | "lock.locked" | "lock.unlocked" | "lock.access_denied" | "thermostat.climate_preset_activated" | "thermostat.manually_adjusted" | "thermostat.temperature_threshold_exceeded" | "thermostat.temperature_threshold_no_longer_exceeded" | "thermostat.temperature_reached_set_point" | "thermostat.temperature_changed" | "device.name_changed" | "enrollment_automation.deleted" | "phone.deactivated" | "space.device_membership_changed" | "space.created" | "space.deleted")[]]>;
|
|
3130
3156
|
export type SeamEventType = SeamEvent['event_type'];
|