@seamapi/types 1.395.1 → 1.395.2

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.
Files changed (66) hide show
  1. package/dist/connect.cjs +57 -18
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +578 -502
  4. package/lib/seam/connect/models/access-grants/access-grant.d.ts +2 -2
  5. package/lib/seam/connect/models/access-grants/access-method.d.ts +2 -2
  6. package/lib/seam/connect/models/acs/acs-access-group.d.ts +4 -4
  7. package/lib/seam/connect/models/acs/acs-credential-pool.d.ts +2 -2
  8. package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.d.ts +4 -4
  9. package/lib/seam/connect/models/acs/acs-credential.d.ts +4 -4
  10. package/lib/seam/connect/models/acs/acs-encoder.d.ts +2 -2
  11. package/lib/seam/connect/models/acs/acs-system.d.ts +2 -2
  12. package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +4 -4
  13. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
  14. package/lib/seam/connect/models/action-attempts/encode-access-method.d.ts +4 -4
  15. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +8 -8
  16. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +12 -12
  17. package/lib/seam/connect/models/bridges/bridge-connected-system.d.ts +2 -2
  18. package/lib/seam/connect/models/bridges/bridge.d.ts +2 -2
  19. package/lib/seam/connect/models/client-sessions/client-session.d.ts +2 -2
  20. package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -2
  21. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +25 -20
  22. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +25 -20
  23. package/lib/seam/connect/models/devices/capability-properties/thermostat.js +2 -7
  24. package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
  25. package/lib/seam/connect/models/devices/device.d.ts +37 -30
  26. package/lib/seam/connect/models/devices/phone.d.ts +2 -2
  27. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +28 -23
  28. package/lib/seam/connect/models/events/access-codes.d.ts +68 -68
  29. package/lib/seam/connect/models/events/access-grants.d.ts +20 -20
  30. package/lib/seam/connect/models/events/access-methods.d.ts +12 -12
  31. package/lib/seam/connect/models/events/acs/access-groups.d.ts +4 -4
  32. package/lib/seam/connect/models/events/acs/common.d.ts +2 -2
  33. package/lib/seam/connect/models/events/acs/credentials.d.ts +16 -16
  34. package/lib/seam/connect/models/events/acs/encoders.d.ts +8 -8
  35. package/lib/seam/connect/models/events/acs/entrances.d.ts +8 -8
  36. package/lib/seam/connect/models/events/acs/index.d.ts +28 -28
  37. package/lib/seam/connect/models/events/acs/systems.d.ts +12 -12
  38. package/lib/seam/connect/models/events/acs/users.d.ts +8 -8
  39. package/lib/seam/connect/models/events/action-attempts.d.ts +16 -16
  40. package/lib/seam/connect/models/events/client-sessions.d.ts +4 -4
  41. package/lib/seam/connect/models/events/common.d.ts +2 -2
  42. package/lib/seam/connect/models/events/connect-webviews.d.ts +8 -8
  43. package/lib/seam/connect/models/events/connected-accounts.d.ts +28 -28
  44. package/lib/seam/connect/models/events/devices.d.ts +132 -132
  45. package/lib/seam/connect/models/events/enrollment-automations.d.ts +4 -4
  46. package/lib/seam/connect/models/events/phones.d.ts +4 -4
  47. package/lib/seam/connect/models/events/seam-event.d.ts +176 -176
  48. package/lib/seam/connect/models/instant-keys/instant-key.d.ts +2 -2
  49. package/lib/seam/connect/models/locations/location.d.ts +2 -2
  50. package/lib/seam/connect/models/thermostats/thermostat-program.d.ts +6 -6
  51. package/lib/seam/connect/models/thermostats/thermostat-program.js +5 -5
  52. package/lib/seam/connect/models/thermostats/thermostat-program.js.map +1 -1
  53. package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +6 -3
  54. package/lib/seam/connect/models/thermostats/thermostat-schedule.js +5 -1
  55. package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
  56. package/lib/seam/connect/models/user-identities/user-identity.d.ts +2 -2
  57. package/lib/seam/connect/openapi.d.ts +35 -8
  58. package/lib/seam/connect/openapi.js +43 -9
  59. package/lib/seam/connect/openapi.js.map +1 -1
  60. package/lib/seam/connect/route-types.d.ts +136 -102
  61. package/package.json +2 -2
  62. package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +2 -7
  63. package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +7 -5
  64. package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +7 -1
  65. package/src/lib/seam/connect/openapi.ts +47 -10
  66. package/src/lib/seam/connect/route-types.ts +617 -505
@@ -9,16 +9,16 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
9
9
  }>, {}>, {
10
10
  event_type: import("zod").ZodLiteral<"acs_system.connected">;
11
11
  }>, "strip", import("zod").ZodTypeAny, {
12
- created_at: string;
13
12
  workspace_id: string;
13
+ created_at: string;
14
14
  acs_system_id: string;
15
15
  event_id: string;
16
16
  occurred_at: string;
17
17
  event_type: "acs_system.connected";
18
18
  connected_account_id?: string | undefined;
19
19
  }, {
20
- created_at: string;
21
20
  workspace_id: string;
21
+ created_at: string;
22
22
  acs_system_id: string;
23
23
  event_id: string;
24
24
  occurred_at: string;
@@ -35,16 +35,16 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
35
35
  }>, {}>, {
36
36
  event_type: import("zod").ZodLiteral<"acs_system.added">;
37
37
  }>, "strip", import("zod").ZodTypeAny, {
38
- created_at: string;
39
38
  workspace_id: string;
39
+ created_at: string;
40
40
  acs_system_id: string;
41
41
  event_id: string;
42
42
  occurred_at: string;
43
43
  event_type: "acs_system.added";
44
44
  connected_account_id?: string | undefined;
45
45
  }, {
46
- created_at: string;
47
46
  workspace_id: string;
47
+ created_at: string;
48
48
  acs_system_id: string;
49
49
  event_id: string;
50
50
  occurred_at: string;
@@ -61,16 +61,16 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
61
61
  }>, {}>, {
62
62
  event_type: import("zod").ZodLiteral<"acs_system.disconnected">;
63
63
  }>, "strip", import("zod").ZodTypeAny, {
64
- created_at: string;
65
64
  workspace_id: string;
65
+ created_at: string;
66
66
  acs_system_id: string;
67
67
  event_id: string;
68
68
  occurred_at: string;
69
69
  event_type: "acs_system.disconnected";
70
70
  connected_account_id?: string | undefined;
71
71
  }, {
72
- created_at: string;
73
72
  workspace_id: string;
73
+ created_at: string;
74
74
  acs_system_id: string;
75
75
  event_id: string;
76
76
  occurred_at: string;
@@ -89,8 +89,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
89
89
  }>, {
90
90
  event_type: import("zod").ZodLiteral<"acs_credential.deleted">;
91
91
  }>, "strip", import("zod").ZodTypeAny, {
92
- created_at: string;
93
92
  workspace_id: string;
93
+ created_at: string;
94
94
  acs_system_id: string;
95
95
  acs_credential_id: string;
96
96
  event_id: string;
@@ -98,8 +98,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
98
98
  event_type: "acs_credential.deleted";
99
99
  connected_account_id?: string | undefined;
100
100
  }, {
101
- created_at: string;
102
101
  workspace_id: string;
102
+ created_at: string;
103
103
  acs_system_id: string;
104
104
  acs_credential_id: string;
105
105
  event_id: string;
@@ -119,8 +119,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
119
119
  }>, {
120
120
  event_type: import("zod").ZodLiteral<"acs_credential.issued">;
121
121
  }>, "strip", import("zod").ZodTypeAny, {
122
- created_at: string;
123
122
  workspace_id: string;
123
+ created_at: string;
124
124
  acs_system_id: string;
125
125
  acs_credential_id: string;
126
126
  event_id: string;
@@ -128,8 +128,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
128
128
  event_type: "acs_credential.issued";
129
129
  connected_account_id?: string | undefined;
130
130
  }, {
131
- created_at: string;
132
131
  workspace_id: string;
132
+ created_at: string;
133
133
  acs_system_id: string;
134
134
  acs_credential_id: string;
135
135
  event_id: string;
@@ -149,8 +149,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
149
149
  }>, {
150
150
  event_type: import("zod").ZodLiteral<"acs_credential.reissued">;
151
151
  }>, "strip", import("zod").ZodTypeAny, {
152
- created_at: string;
153
152
  workspace_id: string;
153
+ created_at: string;
154
154
  acs_system_id: string;
155
155
  acs_credential_id: string;
156
156
  event_id: string;
@@ -158,8 +158,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
158
158
  event_type: "acs_credential.reissued";
159
159
  connected_account_id?: string | undefined;
160
160
  }, {
161
- created_at: string;
162
161
  workspace_id: string;
162
+ created_at: string;
163
163
  acs_system_id: string;
164
164
  acs_credential_id: string;
165
165
  event_id: string;
@@ -179,8 +179,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
179
179
  }>, {
180
180
  event_type: import("zod").ZodLiteral<"acs_credential.invalidated">;
181
181
  }>, "strip", import("zod").ZodTypeAny, {
182
- created_at: string;
183
182
  workspace_id: string;
183
+ created_at: string;
184
184
  acs_system_id: string;
185
185
  acs_credential_id: string;
186
186
  event_id: string;
@@ -188,8 +188,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
188
188
  event_type: "acs_credential.invalidated";
189
189
  connected_account_id?: string | undefined;
190
190
  }, {
191
- created_at: string;
192
191
  workspace_id: string;
192
+ created_at: string;
193
193
  acs_system_id: string;
194
194
  acs_credential_id: string;
195
195
  event_id: string;
@@ -209,8 +209,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
209
209
  }>, {
210
210
  event_type: import("zod").ZodLiteral<"acs_user.created">;
211
211
  }>, "strip", import("zod").ZodTypeAny, {
212
- created_at: string;
213
212
  workspace_id: string;
213
+ created_at: string;
214
214
  acs_system_id: string;
215
215
  acs_user_id: string;
216
216
  event_id: string;
@@ -218,8 +218,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
218
218
  event_type: "acs_user.created";
219
219
  connected_account_id?: string | undefined;
220
220
  }, {
221
- created_at: string;
222
221
  workspace_id: string;
222
+ created_at: string;
223
223
  acs_system_id: string;
224
224
  acs_user_id: string;
225
225
  event_id: string;
@@ -239,8 +239,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
239
239
  }>, {
240
240
  event_type: import("zod").ZodLiteral<"acs_user.deleted">;
241
241
  }>, "strip", import("zod").ZodTypeAny, {
242
- created_at: string;
243
242
  workspace_id: string;
243
+ created_at: string;
244
244
  acs_system_id: string;
245
245
  acs_user_id: string;
246
246
  event_id: string;
@@ -248,8 +248,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
248
248
  event_type: "acs_user.deleted";
249
249
  connected_account_id?: string | undefined;
250
250
  }, {
251
- created_at: string;
252
251
  workspace_id: string;
252
+ created_at: string;
253
253
  acs_system_id: string;
254
254
  acs_user_id: string;
255
255
  event_id: string;
@@ -269,8 +269,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
269
269
  }>, {
270
270
  event_type: import("zod").ZodLiteral<"acs_encoder.added">;
271
271
  }>, "strip", import("zod").ZodTypeAny, {
272
- created_at: string;
273
272
  workspace_id: string;
273
+ created_at: string;
274
274
  acs_system_id: string;
275
275
  acs_encoder_id: string;
276
276
  event_id: string;
@@ -278,8 +278,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
278
278
  event_type: "acs_encoder.added";
279
279
  connected_account_id?: string | undefined;
280
280
  }, {
281
- created_at: string;
282
281
  workspace_id: string;
282
+ created_at: string;
283
283
  acs_system_id: string;
284
284
  acs_encoder_id: string;
285
285
  event_id: string;
@@ -299,8 +299,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
299
299
  }>, {
300
300
  event_type: import("zod").ZodLiteral<"acs_encoder.removed">;
301
301
  }>, "strip", import("zod").ZodTypeAny, {
302
- created_at: string;
303
302
  workspace_id: string;
303
+ created_at: string;
304
304
  acs_system_id: string;
305
305
  acs_encoder_id: string;
306
306
  event_id: string;
@@ -308,8 +308,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
308
308
  event_type: "acs_encoder.removed";
309
309
  connected_account_id?: string | undefined;
310
310
  }, {
311
- created_at: string;
312
311
  workspace_id: string;
312
+ created_at: string;
313
313
  acs_system_id: string;
314
314
  acs_encoder_id: string;
315
315
  event_id: string;
@@ -329,8 +329,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
329
329
  }>, {
330
330
  event_type: import("zod").ZodLiteral<"acs_access_group.deleted">;
331
331
  }>, "strip", import("zod").ZodTypeAny, {
332
- created_at: string;
333
332
  workspace_id: string;
333
+ created_at: string;
334
334
  acs_access_group_id: string;
335
335
  acs_system_id: string;
336
336
  event_id: string;
@@ -338,8 +338,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
338
338
  event_type: "acs_access_group.deleted";
339
339
  connected_account_id?: string | undefined;
340
340
  }, {
341
- created_at: string;
342
341
  workspace_id: string;
342
+ created_at: string;
343
343
  acs_access_group_id: string;
344
344
  acs_system_id: string;
345
345
  event_id: string;
@@ -359,8 +359,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
359
359
  }>, {
360
360
  event_type: import("zod").ZodLiteral<"acs_entrance.added">;
361
361
  }>, "strip", import("zod").ZodTypeAny, {
362
- created_at: string;
363
362
  workspace_id: string;
363
+ created_at: string;
364
364
  acs_system_id: string;
365
365
  acs_entrance_id: string;
366
366
  event_id: string;
@@ -368,8 +368,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
368
368
  event_type: "acs_entrance.added";
369
369
  connected_account_id?: string | undefined;
370
370
  }, {
371
- created_at: string;
372
371
  workspace_id: string;
372
+ created_at: string;
373
373
  acs_system_id: string;
374
374
  acs_entrance_id: string;
375
375
  event_id: string;
@@ -389,8 +389,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
389
389
  }>, {
390
390
  event_type: import("zod").ZodLiteral<"acs_entrance.removed">;
391
391
  }>, "strip", import("zod").ZodTypeAny, {
392
- created_at: string;
393
392
  workspace_id: string;
393
+ created_at: string;
394
394
  acs_system_id: string;
395
395
  acs_entrance_id: string;
396
396
  event_id: string;
@@ -398,8 +398,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
398
398
  event_type: "acs_entrance.removed";
399
399
  connected_account_id?: string | undefined;
400
400
  }, {
401
- created_at: string;
402
401
  workspace_id: string;
402
+ created_at: string;
403
403
  acs_system_id: string;
404
404
  acs_entrance_id: string;
405
405
  event_id: string;
@@ -10,16 +10,16 @@ export declare const acs_system_connected_event: z.ZodObject<z.objectUtil.extend
10
10
  }>, {}>, {
11
11
  event_type: z.ZodLiteral<"acs_system.connected">;
12
12
  }>, "strip", z.ZodTypeAny, {
13
- created_at: string;
14
13
  workspace_id: string;
14
+ created_at: string;
15
15
  acs_system_id: string;
16
16
  event_id: string;
17
17
  occurred_at: string;
18
18
  event_type: "acs_system.connected";
19
19
  connected_account_id?: string | undefined;
20
20
  }, {
21
- created_at: string;
22
21
  workspace_id: string;
22
+ created_at: string;
23
23
  acs_system_id: string;
24
24
  event_id: string;
25
25
  occurred_at: string;
@@ -38,16 +38,16 @@ export declare const acs_system_disconnected_event: z.ZodObject<z.objectUtil.ext
38
38
  }>, {}>, {
39
39
  event_type: z.ZodLiteral<"acs_system.disconnected">;
40
40
  }>, "strip", z.ZodTypeAny, {
41
- created_at: string;
42
41
  workspace_id: string;
42
+ created_at: string;
43
43
  acs_system_id: string;
44
44
  event_id: string;
45
45
  occurred_at: string;
46
46
  event_type: "acs_system.disconnected";
47
47
  connected_account_id?: string | undefined;
48
48
  }, {
49
- created_at: string;
50
49
  workspace_id: string;
50
+ created_at: string;
51
51
  acs_system_id: string;
52
52
  event_id: string;
53
53
  occurred_at: string;
@@ -66,16 +66,16 @@ export declare const acs_system_added_event: z.ZodObject<z.objectUtil.extendShap
66
66
  }>, {}>, {
67
67
  event_type: z.ZodLiteral<"acs_system.added">;
68
68
  }>, "strip", z.ZodTypeAny, {
69
- created_at: string;
70
69
  workspace_id: string;
70
+ created_at: string;
71
71
  acs_system_id: string;
72
72
  event_id: string;
73
73
  occurred_at: string;
74
74
  event_type: "acs_system.added";
75
75
  connected_account_id?: string | undefined;
76
76
  }, {
77
- created_at: string;
78
77
  workspace_id: string;
78
+ created_at: string;
79
79
  acs_system_id: string;
80
80
  event_id: string;
81
81
  occurred_at: string;
@@ -94,16 +94,16 @@ export declare const acs_system_events: readonly [z.ZodObject<z.objectUtil.exten
94
94
  }>, {}>, {
95
95
  event_type: z.ZodLiteral<"acs_system.connected">;
96
96
  }>, "strip", z.ZodTypeAny, {
97
- created_at: string;
98
97
  workspace_id: string;
98
+ created_at: string;
99
99
  acs_system_id: string;
100
100
  event_id: string;
101
101
  occurred_at: string;
102
102
  event_type: "acs_system.connected";
103
103
  connected_account_id?: string | undefined;
104
104
  }, {
105
- created_at: string;
106
105
  workspace_id: string;
106
+ created_at: string;
107
107
  acs_system_id: string;
108
108
  event_id: string;
109
109
  occurred_at: string;
@@ -120,16 +120,16 @@ export declare const acs_system_events: readonly [z.ZodObject<z.objectUtil.exten
120
120
  }>, {}>, {
121
121
  event_type: z.ZodLiteral<"acs_system.added">;
122
122
  }>, "strip", z.ZodTypeAny, {
123
- created_at: string;
124
123
  workspace_id: string;
124
+ created_at: string;
125
125
  acs_system_id: string;
126
126
  event_id: string;
127
127
  occurred_at: string;
128
128
  event_type: "acs_system.added";
129
129
  connected_account_id?: string | undefined;
130
130
  }, {
131
- created_at: string;
132
131
  workspace_id: string;
132
+ created_at: string;
133
133
  acs_system_id: string;
134
134
  event_id: string;
135
135
  occurred_at: string;
@@ -146,16 +146,16 @@ export declare const acs_system_events: readonly [z.ZodObject<z.objectUtil.exten
146
146
  }>, {}>, {
147
147
  event_type: z.ZodLiteral<"acs_system.disconnected">;
148
148
  }>, "strip", z.ZodTypeAny, {
149
- created_at: string;
150
149
  workspace_id: string;
150
+ created_at: string;
151
151
  acs_system_id: string;
152
152
  event_id: string;
153
153
  occurred_at: string;
154
154
  event_type: "acs_system.disconnected";
155
155
  connected_account_id?: string | undefined;
156
156
  }, {
157
- created_at: string;
158
157
  workspace_id: string;
158
+ created_at: string;
159
159
  acs_system_id: string;
160
160
  event_id: string;
161
161
  occurred_at: string;
@@ -12,8 +12,8 @@ export declare const acs_user_deleted_event: z.ZodObject<z.objectUtil.extendShap
12
12
  }>, {
13
13
  event_type: z.ZodLiteral<"acs_user.deleted">;
14
14
  }>, "strip", z.ZodTypeAny, {
15
- created_at: string;
16
15
  workspace_id: string;
16
+ created_at: string;
17
17
  acs_system_id: string;
18
18
  acs_user_id: string;
19
19
  event_id: string;
@@ -21,8 +21,8 @@ export declare const acs_user_deleted_event: z.ZodObject<z.objectUtil.extendShap
21
21
  event_type: "acs_user.deleted";
22
22
  connected_account_id?: string | undefined;
23
23
  }, {
24
- created_at: string;
25
24
  workspace_id: string;
25
+ created_at: string;
26
26
  acs_system_id: string;
27
27
  acs_user_id: string;
28
28
  event_id: string;
@@ -44,8 +44,8 @@ export declare const acs_user_created_event: z.ZodObject<z.objectUtil.extendShap
44
44
  }>, {
45
45
  event_type: z.ZodLiteral<"acs_user.created">;
46
46
  }>, "strip", z.ZodTypeAny, {
47
- created_at: string;
48
47
  workspace_id: string;
48
+ created_at: string;
49
49
  acs_system_id: string;
50
50
  acs_user_id: string;
51
51
  event_id: string;
@@ -53,8 +53,8 @@ export declare const acs_user_created_event: z.ZodObject<z.objectUtil.extendShap
53
53
  event_type: "acs_user.created";
54
54
  connected_account_id?: string | undefined;
55
55
  }, {
56
- created_at: string;
57
56
  workspace_id: string;
57
+ created_at: string;
58
58
  acs_system_id: string;
59
59
  acs_user_id: string;
60
60
  event_id: string;
@@ -76,8 +76,8 @@ export declare const acs_user_events: readonly [z.ZodObject<z.objectUtil.extendS
76
76
  }>, {
77
77
  event_type: z.ZodLiteral<"acs_user.created">;
78
78
  }>, "strip", z.ZodTypeAny, {
79
- created_at: string;
80
79
  workspace_id: string;
80
+ created_at: string;
81
81
  acs_system_id: string;
82
82
  acs_user_id: string;
83
83
  event_id: string;
@@ -85,8 +85,8 @@ export declare const acs_user_events: readonly [z.ZodObject<z.objectUtil.extendS
85
85
  event_type: "acs_user.created";
86
86
  connected_account_id?: string | undefined;
87
87
  }, {
88
- created_at: string;
89
88
  workspace_id: string;
89
+ created_at: string;
90
90
  acs_system_id: string;
91
91
  acs_user_id: string;
92
92
  event_id: string;
@@ -106,8 +106,8 @@ export declare const acs_user_events: readonly [z.ZodObject<z.objectUtil.extendS
106
106
  }>, {
107
107
  event_type: z.ZodLiteral<"acs_user.deleted">;
108
108
  }>, "strip", z.ZodTypeAny, {
109
- created_at: string;
110
109
  workspace_id: string;
110
+ created_at: string;
111
111
  acs_system_id: string;
112
112
  acs_user_id: string;
113
113
  event_id: string;
@@ -115,8 +115,8 @@ export declare const acs_user_events: readonly [z.ZodObject<z.objectUtil.extendS
115
115
  event_type: "acs_user.deleted";
116
116
  connected_account_id?: string | undefined;
117
117
  }, {
118
- created_at: string;
119
118
  workspace_id: string;
119
+ created_at: string;
120
120
  acs_system_id: string;
121
121
  acs_user_id: string;
122
122
  event_id: string;
@@ -12,8 +12,8 @@ export declare const action_attempt_lock_door_succeeded_event: z.ZodObject<z.obj
12
12
  event_type: z.ZodLiteral<"action_attempt.lock_door.succeeded">;
13
13
  }>, "strip", z.ZodTypeAny, {
14
14
  status: string;
15
- created_at: string;
16
15
  workspace_id: string;
16
+ created_at: string;
17
17
  action_attempt_id: string;
18
18
  action_type: string;
19
19
  event_id: string;
@@ -21,8 +21,8 @@ export declare const action_attempt_lock_door_succeeded_event: z.ZodObject<z.obj
21
21
  event_type: "action_attempt.lock_door.succeeded";
22
22
  }, {
23
23
  status: string;
24
- created_at: string;
25
24
  workspace_id: string;
25
+ created_at: string;
26
26
  action_attempt_id: string;
27
27
  action_type: string;
28
28
  event_id: string;
@@ -42,8 +42,8 @@ export declare const action_attempt_lock_door_failed_event: z.ZodObject<z.object
42
42
  event_type: z.ZodLiteral<"action_attempt.lock_door.failed">;
43
43
  }>, "strip", z.ZodTypeAny, {
44
44
  status: string;
45
- created_at: string;
46
45
  workspace_id: string;
46
+ created_at: string;
47
47
  action_attempt_id: string;
48
48
  action_type: string;
49
49
  event_id: string;
@@ -51,8 +51,8 @@ export declare const action_attempt_lock_door_failed_event: z.ZodObject<z.object
51
51
  event_type: "action_attempt.lock_door.failed";
52
52
  }, {
53
53
  status: string;
54
- created_at: string;
55
54
  workspace_id: string;
55
+ created_at: string;
56
56
  action_attempt_id: string;
57
57
  action_type: string;
58
58
  event_id: string;
@@ -72,8 +72,8 @@ export declare const action_attempt_unlock_door_succeeded_event: z.ZodObject<z.o
72
72
  event_type: z.ZodLiteral<"action_attempt.unlock_door.succeeded">;
73
73
  }>, "strip", z.ZodTypeAny, {
74
74
  status: string;
75
- created_at: string;
76
75
  workspace_id: string;
76
+ created_at: string;
77
77
  action_attempt_id: string;
78
78
  action_type: string;
79
79
  event_id: string;
@@ -81,8 +81,8 @@ export declare const action_attempt_unlock_door_succeeded_event: z.ZodObject<z.o
81
81
  event_type: "action_attempt.unlock_door.succeeded";
82
82
  }, {
83
83
  status: string;
84
- created_at: string;
85
84
  workspace_id: string;
85
+ created_at: string;
86
86
  action_attempt_id: string;
87
87
  action_type: string;
88
88
  event_id: string;
@@ -102,8 +102,8 @@ export declare const action_attempt_unlock_door_failed_event: z.ZodObject<z.obje
102
102
  event_type: z.ZodLiteral<"action_attempt.unlock_door.failed">;
103
103
  }>, "strip", z.ZodTypeAny, {
104
104
  status: string;
105
- created_at: string;
106
105
  workspace_id: string;
106
+ created_at: string;
107
107
  action_attempt_id: string;
108
108
  action_type: string;
109
109
  event_id: string;
@@ -111,8 +111,8 @@ export declare const action_attempt_unlock_door_failed_event: z.ZodObject<z.obje
111
111
  event_type: "action_attempt.unlock_door.failed";
112
112
  }, {
113
113
  status: string;
114
- created_at: string;
115
114
  workspace_id: string;
115
+ created_at: string;
116
116
  action_attempt_id: string;
117
117
  action_type: string;
118
118
  event_id: string;
@@ -132,8 +132,8 @@ export declare const action_attempt_events: (z.ZodObject<z.objectUtil.extendShap
132
132
  event_type: z.ZodLiteral<"action_attempt.lock_door.succeeded">;
133
133
  }>, "strip", z.ZodTypeAny, {
134
134
  status: string;
135
- created_at: string;
136
135
  workspace_id: string;
136
+ created_at: string;
137
137
  action_attempt_id: string;
138
138
  action_type: string;
139
139
  event_id: string;
@@ -141,8 +141,8 @@ export declare const action_attempt_events: (z.ZodObject<z.objectUtil.extendShap
141
141
  event_type: "action_attempt.lock_door.succeeded";
142
142
  }, {
143
143
  status: string;
144
- created_at: string;
145
144
  workspace_id: string;
145
+ created_at: string;
146
146
  action_attempt_id: string;
147
147
  action_type: string;
148
148
  event_id: string;
@@ -161,8 +161,8 @@ export declare const action_attempt_events: (z.ZodObject<z.objectUtil.extendShap
161
161
  event_type: z.ZodLiteral<"action_attempt.lock_door.failed">;
162
162
  }>, "strip", z.ZodTypeAny, {
163
163
  status: string;
164
- created_at: string;
165
164
  workspace_id: string;
165
+ created_at: string;
166
166
  action_attempt_id: string;
167
167
  action_type: string;
168
168
  event_id: string;
@@ -170,8 +170,8 @@ export declare const action_attempt_events: (z.ZodObject<z.objectUtil.extendShap
170
170
  event_type: "action_attempt.lock_door.failed";
171
171
  }, {
172
172
  status: string;
173
- created_at: string;
174
173
  workspace_id: string;
174
+ created_at: string;
175
175
  action_attempt_id: string;
176
176
  action_type: string;
177
177
  event_id: string;
@@ -190,8 +190,8 @@ export declare const action_attempt_events: (z.ZodObject<z.objectUtil.extendShap
190
190
  event_type: z.ZodLiteral<"action_attempt.unlock_door.succeeded">;
191
191
  }>, "strip", z.ZodTypeAny, {
192
192
  status: string;
193
- created_at: string;
194
193
  workspace_id: string;
194
+ created_at: string;
195
195
  action_attempt_id: string;
196
196
  action_type: string;
197
197
  event_id: string;
@@ -199,8 +199,8 @@ export declare const action_attempt_events: (z.ZodObject<z.objectUtil.extendShap
199
199
  event_type: "action_attempt.unlock_door.succeeded";
200
200
  }, {
201
201
  status: string;
202
- created_at: string;
203
202
  workspace_id: string;
203
+ created_at: string;
204
204
  action_attempt_id: string;
205
205
  action_type: string;
206
206
  event_id: string;
@@ -219,8 +219,8 @@ export declare const action_attempt_events: (z.ZodObject<z.objectUtil.extendShap
219
219
  event_type: z.ZodLiteral<"action_attempt.unlock_door.failed">;
220
220
  }>, "strip", z.ZodTypeAny, {
221
221
  status: string;
222
- created_at: string;
223
222
  workspace_id: string;
223
+ created_at: string;
224
224
  action_attempt_id: string;
225
225
  action_type: string;
226
226
  event_id: string;
@@ -228,8 +228,8 @@ export declare const action_attempt_events: (z.ZodObject<z.objectUtil.extendShap
228
228
  event_type: "action_attempt.unlock_door.failed";
229
229
  }, {
230
230
  status: string;
231
- created_at: string;
232
231
  workspace_id: string;
232
+ created_at: string;
233
233
  action_attempt_id: string;
234
234
  action_type: string;
235
235
  event_id: string;
@@ -9,15 +9,15 @@ export declare const client_session_deleted_event: z.ZodObject<z.objectUtil.exte
9
9
  }>, {
10
10
  event_type: z.ZodLiteral<"client_session.deleted">;
11
11
  }>, "strip", z.ZodTypeAny, {
12
- created_at: string;
13
12
  workspace_id: string;
13
+ created_at: string;
14
14
  client_session_id: string;
15
15
  event_id: string;
16
16
  occurred_at: string;
17
17
  event_type: "client_session.deleted";
18
18
  }, {
19
- created_at: string;
20
19
  workspace_id: string;
20
+ created_at: string;
21
21
  client_session_id: string;
22
22
  event_id: string;
23
23
  occurred_at: string;
@@ -34,15 +34,15 @@ export declare const client_session_events: readonly [z.ZodObject<z.objectUtil.e
34
34
  }>, {
35
35
  event_type: z.ZodLiteral<"client_session.deleted">;
36
36
  }>, "strip", z.ZodTypeAny, {
37
- created_at: string;
38
37
  workspace_id: string;
38
+ created_at: string;
39
39
  client_session_id: string;
40
40
  event_id: string;
41
41
  occurred_at: string;
42
42
  event_type: "client_session.deleted";
43
43
  }, {
44
- created_at: string;
45
44
  workspace_id: string;
45
+ created_at: string;
46
46
  client_session_id: string;
47
47
  event_id: string;
48
48
  occurred_at: string;
@@ -5,13 +5,13 @@ export declare const common_event: z.ZodObject<{
5
5
  created_at: z.ZodString;
6
6
  occurred_at: z.ZodString;
7
7
  }, "strip", z.ZodTypeAny, {
8
- created_at: string;
9
8
  workspace_id: string;
9
+ created_at: string;
10
10
  event_id: string;
11
11
  occurred_at: string;
12
12
  }, {
13
- created_at: string;
14
13
  workspace_id: string;
14
+ created_at: string;
15
15
  event_id: string;
16
16
  occurred_at: string;
17
17
  }>;