@seamapi/types 1.947.0 → 1.949.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 +432 -65
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1177 -167
- package/dist/index.cjs +432 -65
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -71
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -14
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -26
- package/lib/seam/connect/models/events/access-codes.d.ts +126 -0
- package/lib/seam/connect/models/events/access-grants.d.ts +42 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +36 -0
- package/lib/seam/connect/models/events/acs/access-groups.d.ts +6 -0
- package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +24 -0
- package/lib/seam/connect/models/events/acs/encoders.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +12 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +42 -0
- package/lib/seam/connect/models/events/acs/systems.d.ts +18 -0
- package/lib/seam/connect/models/events/acs/users.d.ts +12 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +48 -0
- package/lib/seam/connect/models/events/client-sessions.d.ts +6 -0
- package/lib/seam/connect/models/events/common.d.ts +3 -0
- package/lib/seam/connect/models/events/common.js +4 -0
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.d.ts +12 -0
- package/lib/seam/connect/models/events/connected-accounts.d.ts +48 -0
- package/lib/seam/connect/models/events/devices.d.ts +210 -0
- package/lib/seam/connect/models/events/enrollment-automations.d.ts +6 -0
- package/lib/seam/connect/models/events/phones.d.ts +6 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +321 -0
- package/lib/seam/connect/models/events/spaces.d.ts +18 -0
- package/lib/seam/connect/openapi.js +428 -54
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +856 -99
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -15
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +535 -64
- package/src/lib/seam/connect/route-types.ts +856 -110
|
@@ -4,6 +4,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4
4
|
workspace_id: z.ZodString;
|
|
5
5
|
created_at: z.ZodString;
|
|
6
6
|
occurred_at: z.ZodString;
|
|
7
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
7
8
|
} & {
|
|
8
9
|
access_code_id: z.ZodString;
|
|
9
10
|
device_id: z.ZodString;
|
|
@@ -21,6 +22,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
21
22
|
event_id: string;
|
|
22
23
|
occurred_at: string;
|
|
23
24
|
event_type: "access_code.created";
|
|
25
|
+
event_description?: string | undefined;
|
|
24
26
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
25
27
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
26
28
|
}, {
|
|
@@ -32,6 +34,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
32
34
|
event_id: string;
|
|
33
35
|
occurred_at: string;
|
|
34
36
|
event_type: "access_code.created";
|
|
37
|
+
event_description?: string | undefined;
|
|
35
38
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
36
39
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
37
40
|
}>, z.ZodObject<{
|
|
@@ -39,6 +42,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
39
42
|
workspace_id: z.ZodString;
|
|
40
43
|
created_at: z.ZodString;
|
|
41
44
|
occurred_at: z.ZodString;
|
|
45
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
42
46
|
} & {
|
|
43
47
|
access_code_id: z.ZodString;
|
|
44
48
|
device_id: z.ZodString;
|
|
@@ -70,6 +74,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
70
74
|
event_id: string;
|
|
71
75
|
occurred_at: string;
|
|
72
76
|
event_type: "access_code.changed";
|
|
77
|
+
event_description?: string | undefined;
|
|
73
78
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
74
79
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
75
80
|
changed_properties?: {
|
|
@@ -87,6 +92,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
87
92
|
event_id: string;
|
|
88
93
|
occurred_at: string;
|
|
89
94
|
event_type: "access_code.changed";
|
|
95
|
+
event_description?: string | undefined;
|
|
90
96
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
91
97
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
92
98
|
changed_properties?: {
|
|
@@ -100,6 +106,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
100
106
|
workspace_id: z.ZodString;
|
|
101
107
|
created_at: z.ZodString;
|
|
102
108
|
occurred_at: z.ZodString;
|
|
109
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
103
110
|
} & {
|
|
104
111
|
access_code_id: z.ZodString;
|
|
105
112
|
device_id: z.ZodString;
|
|
@@ -139,6 +146,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
139
146
|
event_id: string;
|
|
140
147
|
occurred_at: string;
|
|
141
148
|
event_type: "access_code.name_changed";
|
|
149
|
+
event_description?: string | undefined;
|
|
142
150
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
143
151
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
144
152
|
}, {
|
|
@@ -157,6 +165,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
157
165
|
event_id: string;
|
|
158
166
|
occurred_at: string;
|
|
159
167
|
event_type: "access_code.name_changed";
|
|
168
|
+
event_description?: string | undefined;
|
|
160
169
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
161
170
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
162
171
|
}>, z.ZodObject<{
|
|
@@ -164,6 +173,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
164
173
|
workspace_id: z.ZodString;
|
|
165
174
|
created_at: z.ZodString;
|
|
166
175
|
occurred_at: z.ZodString;
|
|
176
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
167
177
|
} & {
|
|
168
178
|
access_code_id: z.ZodString;
|
|
169
179
|
device_id: z.ZodString;
|
|
@@ -203,6 +213,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
203
213
|
event_id: string;
|
|
204
214
|
occurred_at: string;
|
|
205
215
|
event_type: "access_code.code_changed";
|
|
216
|
+
event_description?: string | undefined;
|
|
206
217
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
207
218
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
208
219
|
}, {
|
|
@@ -221,6 +232,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
221
232
|
event_id: string;
|
|
222
233
|
occurred_at: string;
|
|
223
234
|
event_type: "access_code.code_changed";
|
|
235
|
+
event_description?: string | undefined;
|
|
224
236
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
225
237
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
226
238
|
}>, z.ZodObject<{
|
|
@@ -228,6 +240,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
228
240
|
workspace_id: z.ZodString;
|
|
229
241
|
created_at: z.ZodString;
|
|
230
242
|
occurred_at: z.ZodString;
|
|
243
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
231
244
|
} & {
|
|
232
245
|
access_code_id: z.ZodString;
|
|
233
246
|
device_id: z.ZodString;
|
|
@@ -275,6 +288,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
275
288
|
event_id: string;
|
|
276
289
|
occurred_at: string;
|
|
277
290
|
event_type: "access_code.time_frame_changed";
|
|
291
|
+
event_description?: string | undefined;
|
|
278
292
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
279
293
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
280
294
|
}, {
|
|
@@ -295,6 +309,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
295
309
|
event_id: string;
|
|
296
310
|
occurred_at: string;
|
|
297
311
|
event_type: "access_code.time_frame_changed";
|
|
312
|
+
event_description?: string | undefined;
|
|
298
313
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
299
314
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
300
315
|
}>, z.ZodObject<{
|
|
@@ -302,6 +317,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
302
317
|
workspace_id: z.ZodString;
|
|
303
318
|
created_at: z.ZodString;
|
|
304
319
|
occurred_at: z.ZodString;
|
|
320
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
305
321
|
} & {
|
|
306
322
|
access_code_id: z.ZodString;
|
|
307
323
|
device_id: z.ZodString;
|
|
@@ -337,6 +353,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
337
353
|
from?: Record<string, unknown> | undefined;
|
|
338
354
|
to?: Record<string, unknown> | undefined;
|
|
339
355
|
}[];
|
|
356
|
+
event_description?: string | undefined;
|
|
340
357
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
341
358
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
342
359
|
}, {
|
|
@@ -353,6 +370,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
353
370
|
from?: Record<string, unknown> | undefined;
|
|
354
371
|
to?: Record<string, unknown> | undefined;
|
|
355
372
|
}[];
|
|
373
|
+
event_description?: string | undefined;
|
|
356
374
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
357
375
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
358
376
|
}>, z.ZodObject<{
|
|
@@ -360,6 +378,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
360
378
|
workspace_id: z.ZodString;
|
|
361
379
|
created_at: z.ZodString;
|
|
362
380
|
occurred_at: z.ZodString;
|
|
381
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
363
382
|
} & {
|
|
364
383
|
access_code_id: z.ZodString;
|
|
365
384
|
device_id: z.ZodString;
|
|
@@ -379,6 +398,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
379
398
|
event_id: string;
|
|
380
399
|
occurred_at: string;
|
|
381
400
|
event_type: "access_code.scheduled_on_device";
|
|
401
|
+
event_description?: string | undefined;
|
|
382
402
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
383
403
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
384
404
|
}, {
|
|
@@ -391,6 +411,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
391
411
|
event_id: string;
|
|
392
412
|
occurred_at: string;
|
|
393
413
|
event_type: "access_code.scheduled_on_device";
|
|
414
|
+
event_description?: string | undefined;
|
|
394
415
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
395
416
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
396
417
|
}>, z.ZodObject<{
|
|
@@ -398,6 +419,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
398
419
|
workspace_id: z.ZodString;
|
|
399
420
|
created_at: z.ZodString;
|
|
400
421
|
occurred_at: z.ZodString;
|
|
422
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
401
423
|
} & {
|
|
402
424
|
access_code_id: z.ZodString;
|
|
403
425
|
device_id: z.ZodString;
|
|
@@ -417,6 +439,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
417
439
|
event_id: string;
|
|
418
440
|
occurred_at: string;
|
|
419
441
|
event_type: "access_code.set_on_device";
|
|
442
|
+
event_description?: string | undefined;
|
|
420
443
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
421
444
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
422
445
|
}, {
|
|
@@ -429,6 +452,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
429
452
|
event_id: string;
|
|
430
453
|
occurred_at: string;
|
|
431
454
|
event_type: "access_code.set_on_device";
|
|
455
|
+
event_description?: string | undefined;
|
|
432
456
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
433
457
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
434
458
|
}>, z.ZodObject<{
|
|
@@ -436,6 +460,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
436
460
|
workspace_id: z.ZodString;
|
|
437
461
|
created_at: z.ZodString;
|
|
438
462
|
occurred_at: z.ZodString;
|
|
463
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
439
464
|
} & {
|
|
440
465
|
access_code_id: z.ZodString;
|
|
441
466
|
device_id: z.ZodString;
|
|
@@ -453,6 +478,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
453
478
|
event_id: string;
|
|
454
479
|
occurred_at: string;
|
|
455
480
|
event_type: "access_code.removed_from_device";
|
|
481
|
+
event_description?: string | undefined;
|
|
456
482
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
457
483
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
458
484
|
}, {
|
|
@@ -464,6 +490,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
464
490
|
event_id: string;
|
|
465
491
|
occurred_at: string;
|
|
466
492
|
event_type: "access_code.removed_from_device";
|
|
493
|
+
event_description?: string | undefined;
|
|
467
494
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
468
495
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
469
496
|
}>, z.ZodObject<{
|
|
@@ -471,6 +498,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
471
498
|
workspace_id: z.ZodString;
|
|
472
499
|
created_at: z.ZodString;
|
|
473
500
|
occurred_at: z.ZodString;
|
|
501
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
474
502
|
} & {
|
|
475
503
|
access_code_id: z.ZodString;
|
|
476
504
|
device_id: z.ZodString;
|
|
@@ -597,6 +625,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
597
625
|
created_at: string;
|
|
598
626
|
warning_code: string;
|
|
599
627
|
}[];
|
|
628
|
+
event_description?: string | undefined;
|
|
600
629
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
601
630
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
602
631
|
}, {
|
|
@@ -638,6 +667,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
638
667
|
created_at: string;
|
|
639
668
|
warning_code: string;
|
|
640
669
|
}[];
|
|
670
|
+
event_description?: string | undefined;
|
|
641
671
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
642
672
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
643
673
|
}>, z.ZodObject<{
|
|
@@ -645,6 +675,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
645
675
|
workspace_id: z.ZodString;
|
|
646
676
|
created_at: z.ZodString;
|
|
647
677
|
occurred_at: z.ZodString;
|
|
678
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
648
679
|
} & {
|
|
649
680
|
access_code_id: z.ZodString;
|
|
650
681
|
device_id: z.ZodString;
|
|
@@ -771,6 +802,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
771
802
|
created_at: string;
|
|
772
803
|
warning_code: string;
|
|
773
804
|
}[];
|
|
805
|
+
event_description?: string | undefined;
|
|
774
806
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
775
807
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
776
808
|
}, {
|
|
@@ -812,6 +844,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
812
844
|
created_at: string;
|
|
813
845
|
warning_code: string;
|
|
814
846
|
}[];
|
|
847
|
+
event_description?: string | undefined;
|
|
815
848
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
816
849
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
817
850
|
}>, z.ZodObject<{
|
|
@@ -819,6 +852,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
819
852
|
workspace_id: z.ZodString;
|
|
820
853
|
created_at: z.ZodString;
|
|
821
854
|
occurred_at: z.ZodString;
|
|
855
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
822
856
|
} & {
|
|
823
857
|
access_code_id: z.ZodString;
|
|
824
858
|
device_id: z.ZodString;
|
|
@@ -838,6 +872,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
838
872
|
event_id: string;
|
|
839
873
|
occurred_at: string;
|
|
840
874
|
event_type: "access_code.deleted";
|
|
875
|
+
event_description?: string | undefined;
|
|
841
876
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
842
877
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
843
878
|
}, {
|
|
@@ -850,6 +885,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
850
885
|
event_id: string;
|
|
851
886
|
occurred_at: string;
|
|
852
887
|
event_type: "access_code.deleted";
|
|
888
|
+
event_description?: string | undefined;
|
|
853
889
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
854
890
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
855
891
|
}>, z.ZodObject<{
|
|
@@ -857,6 +893,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
857
893
|
workspace_id: z.ZodString;
|
|
858
894
|
created_at: z.ZodString;
|
|
859
895
|
occurred_at: z.ZodString;
|
|
896
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
860
897
|
} & {
|
|
861
898
|
access_code_id: z.ZodString;
|
|
862
899
|
device_id: z.ZodString;
|
|
@@ -983,6 +1020,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
983
1020
|
created_at: string;
|
|
984
1021
|
warning_code: string;
|
|
985
1022
|
}[];
|
|
1023
|
+
event_description?: string | undefined;
|
|
986
1024
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
987
1025
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
988
1026
|
}, {
|
|
@@ -1024,6 +1062,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1024
1062
|
created_at: string;
|
|
1025
1063
|
warning_code: string;
|
|
1026
1064
|
}[];
|
|
1065
|
+
event_description?: string | undefined;
|
|
1027
1066
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1028
1067
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1029
1068
|
}>, z.ZodObject<{
|
|
@@ -1031,6 +1070,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1031
1070
|
workspace_id: z.ZodString;
|
|
1032
1071
|
created_at: z.ZodString;
|
|
1033
1072
|
occurred_at: z.ZodString;
|
|
1073
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1034
1074
|
} & {
|
|
1035
1075
|
access_code_id: z.ZodString;
|
|
1036
1076
|
device_id: z.ZodString;
|
|
@@ -1157,6 +1197,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1157
1197
|
created_at: string;
|
|
1158
1198
|
warning_code: string;
|
|
1159
1199
|
}[];
|
|
1200
|
+
event_description?: string | undefined;
|
|
1160
1201
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1161
1202
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1162
1203
|
}, {
|
|
@@ -1198,6 +1239,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1198
1239
|
created_at: string;
|
|
1199
1240
|
warning_code: string;
|
|
1200
1241
|
}[];
|
|
1242
|
+
event_description?: string | undefined;
|
|
1201
1243
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1202
1244
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1203
1245
|
}>, z.ZodObject<{
|
|
@@ -1205,6 +1247,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1205
1247
|
workspace_id: z.ZodString;
|
|
1206
1248
|
created_at: z.ZodString;
|
|
1207
1249
|
occurred_at: z.ZodString;
|
|
1250
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1208
1251
|
} & {
|
|
1209
1252
|
access_code_id: z.ZodString;
|
|
1210
1253
|
device_id: z.ZodString;
|
|
@@ -1222,6 +1265,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1222
1265
|
event_id: string;
|
|
1223
1266
|
occurred_at: string;
|
|
1224
1267
|
event_type: "access_code.modified_external_to_seam";
|
|
1268
|
+
event_description?: string | undefined;
|
|
1225
1269
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1226
1270
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1227
1271
|
}, {
|
|
@@ -1233,6 +1277,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1233
1277
|
event_id: string;
|
|
1234
1278
|
occurred_at: string;
|
|
1235
1279
|
event_type: "access_code.modified_external_to_seam";
|
|
1280
|
+
event_description?: string | undefined;
|
|
1236
1281
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1237
1282
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1238
1283
|
}>, z.ZodObject<{
|
|
@@ -1240,6 +1285,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1240
1285
|
workspace_id: z.ZodString;
|
|
1241
1286
|
created_at: z.ZodString;
|
|
1242
1287
|
occurred_at: z.ZodString;
|
|
1288
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1243
1289
|
} & {
|
|
1244
1290
|
access_code_id: z.ZodString;
|
|
1245
1291
|
device_id: z.ZodString;
|
|
@@ -1257,6 +1303,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1257
1303
|
event_id: string;
|
|
1258
1304
|
occurred_at: string;
|
|
1259
1305
|
event_type: "access_code.deleted_external_to_seam";
|
|
1306
|
+
event_description?: string | undefined;
|
|
1260
1307
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1261
1308
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1262
1309
|
}, {
|
|
@@ -1268,6 +1315,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1268
1315
|
event_id: string;
|
|
1269
1316
|
occurred_at: string;
|
|
1270
1317
|
event_type: "access_code.deleted_external_to_seam";
|
|
1318
|
+
event_description?: string | undefined;
|
|
1271
1319
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1272
1320
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1273
1321
|
}>, z.ZodObject<{
|
|
@@ -1275,6 +1323,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1275
1323
|
workspace_id: z.ZodString;
|
|
1276
1324
|
created_at: z.ZodString;
|
|
1277
1325
|
occurred_at: z.ZodString;
|
|
1326
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1278
1327
|
} & {
|
|
1279
1328
|
access_code_id: z.ZodString;
|
|
1280
1329
|
device_id: z.ZodString;
|
|
@@ -1294,6 +1343,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1294
1343
|
occurred_at: string;
|
|
1295
1344
|
event_type: "access_code.backup_access_code_pulled";
|
|
1296
1345
|
backup_access_code_id: string;
|
|
1346
|
+
event_description?: string | undefined;
|
|
1297
1347
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1298
1348
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1299
1349
|
}, {
|
|
@@ -1306,6 +1356,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1306
1356
|
occurred_at: string;
|
|
1307
1357
|
event_type: "access_code.backup_access_code_pulled";
|
|
1308
1358
|
backup_access_code_id: string;
|
|
1359
|
+
event_description?: string | undefined;
|
|
1309
1360
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1310
1361
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1311
1362
|
}>, z.ZodObject<{
|
|
@@ -1313,6 +1364,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1313
1364
|
workspace_id: z.ZodString;
|
|
1314
1365
|
created_at: z.ZodString;
|
|
1315
1366
|
occurred_at: z.ZodString;
|
|
1367
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1316
1368
|
} & {
|
|
1317
1369
|
access_code_id: z.ZodString;
|
|
1318
1370
|
device_id: z.ZodString;
|
|
@@ -1330,6 +1382,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1330
1382
|
event_id: string;
|
|
1331
1383
|
occurred_at: string;
|
|
1332
1384
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
1385
|
+
event_description?: string | undefined;
|
|
1333
1386
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1334
1387
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1335
1388
|
}, {
|
|
@@ -1341,6 +1394,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1341
1394
|
event_id: string;
|
|
1342
1395
|
occurred_at: string;
|
|
1343
1396
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
1397
|
+
event_description?: string | undefined;
|
|
1344
1398
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1345
1399
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1346
1400
|
}>, z.ZodObject<{
|
|
@@ -1348,6 +1402,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1348
1402
|
workspace_id: z.ZodString;
|
|
1349
1403
|
created_at: z.ZodString;
|
|
1350
1404
|
occurred_at: z.ZodString;
|
|
1405
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1351
1406
|
} & {
|
|
1352
1407
|
access_code_id: z.ZodString;
|
|
1353
1408
|
device_id: z.ZodString;
|
|
@@ -1474,6 +1529,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1474
1529
|
created_at: string;
|
|
1475
1530
|
warning_code: string;
|
|
1476
1531
|
}[];
|
|
1532
|
+
event_description?: string | undefined;
|
|
1477
1533
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1478
1534
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1479
1535
|
}, {
|
|
@@ -1515,6 +1571,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1515
1571
|
created_at: string;
|
|
1516
1572
|
warning_code: string;
|
|
1517
1573
|
}[];
|
|
1574
|
+
event_description?: string | undefined;
|
|
1518
1575
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1519
1576
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1520
1577
|
}>, z.ZodObject<{
|
|
@@ -1522,6 +1579,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1522
1579
|
workspace_id: z.ZodString;
|
|
1523
1580
|
created_at: z.ZodString;
|
|
1524
1581
|
occurred_at: z.ZodString;
|
|
1582
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1525
1583
|
} & {
|
|
1526
1584
|
access_code_id: z.ZodString;
|
|
1527
1585
|
device_id: z.ZodString;
|
|
@@ -1539,6 +1597,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1539
1597
|
event_id: string;
|
|
1540
1598
|
occurred_at: string;
|
|
1541
1599
|
event_type: "access_code.unmanaged.created";
|
|
1600
|
+
event_description?: string | undefined;
|
|
1542
1601
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1543
1602
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1544
1603
|
}, {
|
|
@@ -1550,6 +1609,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1550
1609
|
event_id: string;
|
|
1551
1610
|
occurred_at: string;
|
|
1552
1611
|
event_type: "access_code.unmanaged.created";
|
|
1612
|
+
event_description?: string | undefined;
|
|
1553
1613
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1554
1614
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1555
1615
|
}>, z.ZodObject<{
|
|
@@ -1557,6 +1617,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1557
1617
|
workspace_id: z.ZodString;
|
|
1558
1618
|
created_at: z.ZodString;
|
|
1559
1619
|
occurred_at: z.ZodString;
|
|
1620
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1560
1621
|
} & {
|
|
1561
1622
|
access_code_id: z.ZodString;
|
|
1562
1623
|
device_id: z.ZodString;
|
|
@@ -1574,6 +1635,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1574
1635
|
event_id: string;
|
|
1575
1636
|
occurred_at: string;
|
|
1576
1637
|
event_type: "access_code.unmanaged.removed";
|
|
1638
|
+
event_description?: string | undefined;
|
|
1577
1639
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1578
1640
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1579
1641
|
}, {
|
|
@@ -1585,6 +1647,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1585
1647
|
event_id: string;
|
|
1586
1648
|
occurred_at: string;
|
|
1587
1649
|
event_type: "access_code.unmanaged.removed";
|
|
1650
|
+
event_description?: string | undefined;
|
|
1588
1651
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1589
1652
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1590
1653
|
}>, z.ZodObject<{
|
|
@@ -1592,6 +1655,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1592
1655
|
workspace_id: z.ZodString;
|
|
1593
1656
|
created_at: z.ZodString;
|
|
1594
1657
|
occurred_at: z.ZodString;
|
|
1658
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1595
1659
|
} & {
|
|
1596
1660
|
access_grant_id: z.ZodString;
|
|
1597
1661
|
} & {
|
|
@@ -1603,6 +1667,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1603
1667
|
event_id: string;
|
|
1604
1668
|
occurred_at: string;
|
|
1605
1669
|
event_type: "access_grant.created";
|
|
1670
|
+
event_description?: string | undefined;
|
|
1606
1671
|
}, {
|
|
1607
1672
|
workspace_id: string;
|
|
1608
1673
|
created_at: string;
|
|
@@ -1610,11 +1675,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1610
1675
|
event_id: string;
|
|
1611
1676
|
occurred_at: string;
|
|
1612
1677
|
event_type: "access_grant.created";
|
|
1678
|
+
event_description?: string | undefined;
|
|
1613
1679
|
}>, z.ZodObject<{
|
|
1614
1680
|
event_id: z.ZodString;
|
|
1615
1681
|
workspace_id: z.ZodString;
|
|
1616
1682
|
created_at: z.ZodString;
|
|
1617
1683
|
occurred_at: z.ZodString;
|
|
1684
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1618
1685
|
} & {
|
|
1619
1686
|
access_grant_id: z.ZodString;
|
|
1620
1687
|
} & {
|
|
@@ -1626,6 +1693,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1626
1693
|
event_id: string;
|
|
1627
1694
|
occurred_at: string;
|
|
1628
1695
|
event_type: "access_grant.deleted";
|
|
1696
|
+
event_description?: string | undefined;
|
|
1629
1697
|
}, {
|
|
1630
1698
|
workspace_id: string;
|
|
1631
1699
|
created_at: string;
|
|
@@ -1633,11 +1701,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1633
1701
|
event_id: string;
|
|
1634
1702
|
occurred_at: string;
|
|
1635
1703
|
event_type: "access_grant.deleted";
|
|
1704
|
+
event_description?: string | undefined;
|
|
1636
1705
|
}>, z.ZodObject<{
|
|
1637
1706
|
event_id: z.ZodString;
|
|
1638
1707
|
workspace_id: z.ZodString;
|
|
1639
1708
|
created_at: z.ZodString;
|
|
1640
1709
|
occurred_at: z.ZodString;
|
|
1710
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1641
1711
|
} & {
|
|
1642
1712
|
access_grant_id: z.ZodString;
|
|
1643
1713
|
} & {
|
|
@@ -1649,6 +1719,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1649
1719
|
event_id: string;
|
|
1650
1720
|
occurred_at: string;
|
|
1651
1721
|
event_type: "access_grant.access_granted_to_all_doors";
|
|
1722
|
+
event_description?: string | undefined;
|
|
1652
1723
|
}, {
|
|
1653
1724
|
workspace_id: string;
|
|
1654
1725
|
created_at: string;
|
|
@@ -1656,11 +1727,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1656
1727
|
event_id: string;
|
|
1657
1728
|
occurred_at: string;
|
|
1658
1729
|
event_type: "access_grant.access_granted_to_all_doors";
|
|
1730
|
+
event_description?: string | undefined;
|
|
1659
1731
|
}>, z.ZodObject<{
|
|
1660
1732
|
event_id: z.ZodString;
|
|
1661
1733
|
workspace_id: z.ZodString;
|
|
1662
1734
|
created_at: z.ZodString;
|
|
1663
1735
|
occurred_at: z.ZodString;
|
|
1736
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1664
1737
|
} & {
|
|
1665
1738
|
access_grant_id: z.ZodString;
|
|
1666
1739
|
} & {
|
|
@@ -1674,6 +1747,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1674
1747
|
event_id: string;
|
|
1675
1748
|
occurred_at: string;
|
|
1676
1749
|
event_type: "access_grant.access_granted_to_door";
|
|
1750
|
+
event_description?: string | undefined;
|
|
1677
1751
|
}, {
|
|
1678
1752
|
workspace_id: string;
|
|
1679
1753
|
created_at: string;
|
|
@@ -1682,11 +1756,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1682
1756
|
event_id: string;
|
|
1683
1757
|
occurred_at: string;
|
|
1684
1758
|
event_type: "access_grant.access_granted_to_door";
|
|
1759
|
+
event_description?: string | undefined;
|
|
1685
1760
|
}>, z.ZodObject<{
|
|
1686
1761
|
event_id: z.ZodString;
|
|
1687
1762
|
workspace_id: z.ZodString;
|
|
1688
1763
|
created_at: z.ZodString;
|
|
1689
1764
|
occurred_at: z.ZodString;
|
|
1765
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1690
1766
|
} & {
|
|
1691
1767
|
access_grant_id: z.ZodString;
|
|
1692
1768
|
} & {
|
|
@@ -1700,6 +1776,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1700
1776
|
event_id: string;
|
|
1701
1777
|
occurred_at: string;
|
|
1702
1778
|
event_type: "access_grant.access_to_door_lost";
|
|
1779
|
+
event_description?: string | undefined;
|
|
1703
1780
|
}, {
|
|
1704
1781
|
workspace_id: string;
|
|
1705
1782
|
created_at: string;
|
|
@@ -1708,11 +1785,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1708
1785
|
event_id: string;
|
|
1709
1786
|
occurred_at: string;
|
|
1710
1787
|
event_type: "access_grant.access_to_door_lost";
|
|
1788
|
+
event_description?: string | undefined;
|
|
1711
1789
|
}>, z.ZodObject<{
|
|
1712
1790
|
event_id: z.ZodString;
|
|
1713
1791
|
workspace_id: z.ZodString;
|
|
1714
1792
|
created_at: z.ZodString;
|
|
1715
1793
|
occurred_at: z.ZodString;
|
|
1794
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1716
1795
|
} & {
|
|
1717
1796
|
access_grant_id: z.ZodString;
|
|
1718
1797
|
} & {
|
|
@@ -1730,6 +1809,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1730
1809
|
starts_at?: string | undefined;
|
|
1731
1810
|
ends_at?: string | undefined;
|
|
1732
1811
|
access_grant_key?: string | undefined;
|
|
1812
|
+
event_description?: string | undefined;
|
|
1733
1813
|
}, {
|
|
1734
1814
|
workspace_id: string;
|
|
1735
1815
|
created_at: string;
|
|
@@ -1740,11 +1820,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1740
1820
|
starts_at?: string | undefined;
|
|
1741
1821
|
ends_at?: string | undefined;
|
|
1742
1822
|
access_grant_key?: string | undefined;
|
|
1823
|
+
event_description?: string | undefined;
|
|
1743
1824
|
}>, z.ZodObject<{
|
|
1744
1825
|
event_id: z.ZodString;
|
|
1745
1826
|
workspace_id: z.ZodString;
|
|
1746
1827
|
created_at: z.ZodString;
|
|
1747
1828
|
occurred_at: z.ZodString;
|
|
1829
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1748
1830
|
} & {
|
|
1749
1831
|
access_grant_id: z.ZodString;
|
|
1750
1832
|
} & {
|
|
@@ -1760,6 +1842,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1760
1842
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
1761
1843
|
error_message: string;
|
|
1762
1844
|
missing_device_ids?: string[] | undefined;
|
|
1845
|
+
event_description?: string | undefined;
|
|
1763
1846
|
}, {
|
|
1764
1847
|
workspace_id: string;
|
|
1765
1848
|
created_at: string;
|
|
@@ -1769,11 +1852,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1769
1852
|
event_type: "access_grant.could_not_create_requested_access_methods";
|
|
1770
1853
|
error_message: string;
|
|
1771
1854
|
missing_device_ids?: string[] | undefined;
|
|
1855
|
+
event_description?: string | undefined;
|
|
1772
1856
|
}>, z.ZodObject<{
|
|
1773
1857
|
event_id: z.ZodString;
|
|
1774
1858
|
workspace_id: z.ZodString;
|
|
1775
1859
|
created_at: z.ZodString;
|
|
1776
1860
|
occurred_at: z.ZodString;
|
|
1861
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1777
1862
|
} & {
|
|
1778
1863
|
access_method_id: z.ZodString;
|
|
1779
1864
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1791,6 +1876,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1791
1876
|
event_type: "access_method.issued";
|
|
1792
1877
|
access_grant_ids: string[];
|
|
1793
1878
|
code?: string | undefined;
|
|
1879
|
+
event_description?: string | undefined;
|
|
1794
1880
|
access_grant_keys?: string[] | undefined;
|
|
1795
1881
|
is_backup_code?: boolean | undefined;
|
|
1796
1882
|
}, {
|
|
@@ -1802,6 +1888,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1802
1888
|
event_type: "access_method.issued";
|
|
1803
1889
|
access_grant_ids: string[];
|
|
1804
1890
|
code?: string | undefined;
|
|
1891
|
+
event_description?: string | undefined;
|
|
1805
1892
|
access_grant_keys?: string[] | undefined;
|
|
1806
1893
|
is_backup_code?: boolean | undefined;
|
|
1807
1894
|
}>, z.ZodObject<{
|
|
@@ -1809,6 +1896,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1809
1896
|
workspace_id: z.ZodString;
|
|
1810
1897
|
created_at: z.ZodString;
|
|
1811
1898
|
occurred_at: z.ZodString;
|
|
1899
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1812
1900
|
} & {
|
|
1813
1901
|
access_method_id: z.ZodString;
|
|
1814
1902
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1823,6 +1911,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1823
1911
|
occurred_at: string;
|
|
1824
1912
|
event_type: "access_method.revoked";
|
|
1825
1913
|
access_grant_ids: string[];
|
|
1914
|
+
event_description?: string | undefined;
|
|
1826
1915
|
access_grant_keys?: string[] | undefined;
|
|
1827
1916
|
}, {
|
|
1828
1917
|
workspace_id: string;
|
|
@@ -1832,12 +1921,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1832
1921
|
occurred_at: string;
|
|
1833
1922
|
event_type: "access_method.revoked";
|
|
1834
1923
|
access_grant_ids: string[];
|
|
1924
|
+
event_description?: string | undefined;
|
|
1835
1925
|
access_grant_keys?: string[] | undefined;
|
|
1836
1926
|
}>, z.ZodObject<{
|
|
1837
1927
|
event_id: z.ZodString;
|
|
1838
1928
|
workspace_id: z.ZodString;
|
|
1839
1929
|
created_at: z.ZodString;
|
|
1840
1930
|
occurred_at: z.ZodString;
|
|
1931
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1841
1932
|
} & {
|
|
1842
1933
|
access_method_id: z.ZodString;
|
|
1843
1934
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1852,6 +1943,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1852
1943
|
occurred_at: string;
|
|
1853
1944
|
event_type: "access_method.card_encoding_required";
|
|
1854
1945
|
access_grant_ids: string[];
|
|
1946
|
+
event_description?: string | undefined;
|
|
1855
1947
|
access_grant_keys?: string[] | undefined;
|
|
1856
1948
|
}, {
|
|
1857
1949
|
workspace_id: string;
|
|
@@ -1861,12 +1953,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1861
1953
|
occurred_at: string;
|
|
1862
1954
|
event_type: "access_method.card_encoding_required";
|
|
1863
1955
|
access_grant_ids: string[];
|
|
1956
|
+
event_description?: string | undefined;
|
|
1864
1957
|
access_grant_keys?: string[] | undefined;
|
|
1865
1958
|
}>, z.ZodObject<{
|
|
1866
1959
|
event_id: z.ZodString;
|
|
1867
1960
|
workspace_id: z.ZodString;
|
|
1868
1961
|
created_at: z.ZodString;
|
|
1869
1962
|
occurred_at: z.ZodString;
|
|
1963
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1870
1964
|
} & {
|
|
1871
1965
|
access_method_id: z.ZodString;
|
|
1872
1966
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1881,6 +1975,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1881
1975
|
occurred_at: string;
|
|
1882
1976
|
event_type: "access_method.deleted";
|
|
1883
1977
|
access_grant_ids: string[];
|
|
1978
|
+
event_description?: string | undefined;
|
|
1884
1979
|
access_grant_keys?: string[] | undefined;
|
|
1885
1980
|
}, {
|
|
1886
1981
|
workspace_id: string;
|
|
@@ -1890,12 +1985,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1890
1985
|
occurred_at: string;
|
|
1891
1986
|
event_type: "access_method.deleted";
|
|
1892
1987
|
access_grant_ids: string[];
|
|
1988
|
+
event_description?: string | undefined;
|
|
1893
1989
|
access_grant_keys?: string[] | undefined;
|
|
1894
1990
|
}>, z.ZodObject<{
|
|
1895
1991
|
event_id: z.ZodString;
|
|
1896
1992
|
workspace_id: z.ZodString;
|
|
1897
1993
|
created_at: z.ZodString;
|
|
1898
1994
|
occurred_at: z.ZodString;
|
|
1995
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1899
1996
|
access_method_id: z.ZodString;
|
|
1900
1997
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
1901
1998
|
access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1912,6 +2009,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1912
2009
|
event_type: "access_method.reissued";
|
|
1913
2010
|
access_grant_ids: string[];
|
|
1914
2011
|
code?: string | undefined;
|
|
2012
|
+
event_description?: string | undefined;
|
|
1915
2013
|
access_grant_keys?: string[] | undefined;
|
|
1916
2014
|
is_backup_code?: boolean | undefined;
|
|
1917
2015
|
}, {
|
|
@@ -1923,6 +2021,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1923
2021
|
event_type: "access_method.reissued";
|
|
1924
2022
|
access_grant_ids: string[];
|
|
1925
2023
|
code?: string | undefined;
|
|
2024
|
+
event_description?: string | undefined;
|
|
1926
2025
|
access_grant_keys?: string[] | undefined;
|
|
1927
2026
|
is_backup_code?: boolean | undefined;
|
|
1928
2027
|
}>, z.ZodObject<{
|
|
@@ -1930,6 +2029,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1930
2029
|
workspace_id: z.ZodString;
|
|
1931
2030
|
created_at: z.ZodString;
|
|
1932
2031
|
occurred_at: z.ZodString;
|
|
2032
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1933
2033
|
} & {
|
|
1934
2034
|
access_method_id: z.ZodString;
|
|
1935
2035
|
access_grant_ids: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1944,6 +2044,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1944
2044
|
occurred_at: string;
|
|
1945
2045
|
event_type: "access_method.created";
|
|
1946
2046
|
access_grant_ids: string[];
|
|
2047
|
+
event_description?: string | undefined;
|
|
1947
2048
|
access_grant_keys?: string[] | undefined;
|
|
1948
2049
|
}, {
|
|
1949
2050
|
workspace_id: string;
|
|
@@ -1953,12 +2054,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1953
2054
|
occurred_at: string;
|
|
1954
2055
|
event_type: "access_method.created";
|
|
1955
2056
|
access_grant_ids: string[];
|
|
2057
|
+
event_description?: string | undefined;
|
|
1956
2058
|
access_grant_keys?: string[] | undefined;
|
|
1957
2059
|
}>, z.ZodObject<{
|
|
1958
2060
|
event_id: z.ZodString;
|
|
1959
2061
|
workspace_id: z.ZodString;
|
|
1960
2062
|
created_at: z.ZodString;
|
|
1961
2063
|
occurred_at: z.ZodString;
|
|
2064
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1962
2065
|
} & {
|
|
1963
2066
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
1964
2067
|
acs_system_id: z.ZodString;
|
|
@@ -1972,6 +2075,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1972
2075
|
occurred_at: string;
|
|
1973
2076
|
event_type: "acs_system.connected";
|
|
1974
2077
|
connected_account_id?: string | undefined;
|
|
2078
|
+
event_description?: string | undefined;
|
|
1975
2079
|
}, {
|
|
1976
2080
|
workspace_id: string;
|
|
1977
2081
|
created_at: string;
|
|
@@ -1980,11 +2084,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1980
2084
|
occurred_at: string;
|
|
1981
2085
|
event_type: "acs_system.connected";
|
|
1982
2086
|
connected_account_id?: string | undefined;
|
|
2087
|
+
event_description?: string | undefined;
|
|
1983
2088
|
}>, z.ZodObject<{
|
|
1984
2089
|
event_id: z.ZodString;
|
|
1985
2090
|
workspace_id: z.ZodString;
|
|
1986
2091
|
created_at: z.ZodString;
|
|
1987
2092
|
occurred_at: z.ZodString;
|
|
2093
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1988
2094
|
} & {
|
|
1989
2095
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
1990
2096
|
acs_system_id: z.ZodString;
|
|
@@ -1998,6 +2104,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
1998
2104
|
occurred_at: string;
|
|
1999
2105
|
event_type: "acs_system.added";
|
|
2000
2106
|
connected_account_id?: string | undefined;
|
|
2107
|
+
event_description?: string | undefined;
|
|
2001
2108
|
}, {
|
|
2002
2109
|
workspace_id: string;
|
|
2003
2110
|
created_at: string;
|
|
@@ -2006,11 +2113,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2006
2113
|
occurred_at: string;
|
|
2007
2114
|
event_type: "acs_system.added";
|
|
2008
2115
|
connected_account_id?: string | undefined;
|
|
2116
|
+
event_description?: string | undefined;
|
|
2009
2117
|
}>, z.ZodObject<{
|
|
2010
2118
|
event_id: z.ZodString;
|
|
2011
2119
|
workspace_id: z.ZodString;
|
|
2012
2120
|
created_at: z.ZodString;
|
|
2013
2121
|
occurred_at: z.ZodString;
|
|
2122
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2014
2123
|
} & {
|
|
2015
2124
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2016
2125
|
acs_system_id: z.ZodString;
|
|
@@ -2097,6 +2206,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2097
2206
|
warning_code: string;
|
|
2098
2207
|
}[];
|
|
2099
2208
|
connected_account_id?: string | undefined;
|
|
2209
|
+
event_description?: string | undefined;
|
|
2100
2210
|
}, {
|
|
2101
2211
|
workspace_id: string;
|
|
2102
2212
|
created_at: string;
|
|
@@ -2125,11 +2235,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2125
2235
|
warning_code: string;
|
|
2126
2236
|
}[];
|
|
2127
2237
|
connected_account_id?: string | undefined;
|
|
2238
|
+
event_description?: string | undefined;
|
|
2128
2239
|
}>, z.ZodObject<{
|
|
2129
2240
|
event_id: z.ZodString;
|
|
2130
2241
|
workspace_id: z.ZodString;
|
|
2131
2242
|
created_at: z.ZodString;
|
|
2132
2243
|
occurred_at: z.ZodString;
|
|
2244
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2133
2245
|
} & {
|
|
2134
2246
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2135
2247
|
acs_system_id: z.ZodString;
|
|
@@ -2146,6 +2258,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2146
2258
|
occurred_at: string;
|
|
2147
2259
|
event_type: "acs_credential.deleted";
|
|
2148
2260
|
connected_account_id?: string | undefined;
|
|
2261
|
+
event_description?: string | undefined;
|
|
2149
2262
|
}, {
|
|
2150
2263
|
workspace_id: string;
|
|
2151
2264
|
created_at: string;
|
|
@@ -2155,11 +2268,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2155
2268
|
occurred_at: string;
|
|
2156
2269
|
event_type: "acs_credential.deleted";
|
|
2157
2270
|
connected_account_id?: string | undefined;
|
|
2271
|
+
event_description?: string | undefined;
|
|
2158
2272
|
}>, z.ZodObject<{
|
|
2159
2273
|
event_id: z.ZodString;
|
|
2160
2274
|
workspace_id: z.ZodString;
|
|
2161
2275
|
created_at: z.ZodString;
|
|
2162
2276
|
occurred_at: z.ZodString;
|
|
2277
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2163
2278
|
} & {
|
|
2164
2279
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2165
2280
|
acs_system_id: z.ZodString;
|
|
@@ -2176,6 +2291,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2176
2291
|
occurred_at: string;
|
|
2177
2292
|
event_type: "acs_credential.issued";
|
|
2178
2293
|
connected_account_id?: string | undefined;
|
|
2294
|
+
event_description?: string | undefined;
|
|
2179
2295
|
}, {
|
|
2180
2296
|
workspace_id: string;
|
|
2181
2297
|
created_at: string;
|
|
@@ -2185,11 +2301,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2185
2301
|
occurred_at: string;
|
|
2186
2302
|
event_type: "acs_credential.issued";
|
|
2187
2303
|
connected_account_id?: string | undefined;
|
|
2304
|
+
event_description?: string | undefined;
|
|
2188
2305
|
}>, z.ZodObject<{
|
|
2189
2306
|
event_id: z.ZodString;
|
|
2190
2307
|
workspace_id: z.ZodString;
|
|
2191
2308
|
created_at: z.ZodString;
|
|
2192
2309
|
occurred_at: z.ZodString;
|
|
2310
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2193
2311
|
} & {
|
|
2194
2312
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2195
2313
|
acs_system_id: z.ZodString;
|
|
@@ -2206,6 +2324,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2206
2324
|
occurred_at: string;
|
|
2207
2325
|
event_type: "acs_credential.reissued";
|
|
2208
2326
|
connected_account_id?: string | undefined;
|
|
2327
|
+
event_description?: string | undefined;
|
|
2209
2328
|
}, {
|
|
2210
2329
|
workspace_id: string;
|
|
2211
2330
|
created_at: string;
|
|
@@ -2215,11 +2334,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2215
2334
|
occurred_at: string;
|
|
2216
2335
|
event_type: "acs_credential.reissued";
|
|
2217
2336
|
connected_account_id?: string | undefined;
|
|
2337
|
+
event_description?: string | undefined;
|
|
2218
2338
|
}>, z.ZodObject<{
|
|
2219
2339
|
event_id: z.ZodString;
|
|
2220
2340
|
workspace_id: z.ZodString;
|
|
2221
2341
|
created_at: z.ZodString;
|
|
2222
2342
|
occurred_at: z.ZodString;
|
|
2343
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2223
2344
|
} & {
|
|
2224
2345
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2225
2346
|
acs_system_id: z.ZodString;
|
|
@@ -2236,6 +2357,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2236
2357
|
occurred_at: string;
|
|
2237
2358
|
event_type: "acs_credential.invalidated";
|
|
2238
2359
|
connected_account_id?: string | undefined;
|
|
2360
|
+
event_description?: string | undefined;
|
|
2239
2361
|
}, {
|
|
2240
2362
|
workspace_id: string;
|
|
2241
2363
|
created_at: string;
|
|
@@ -2245,11 +2367,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2245
2367
|
occurred_at: string;
|
|
2246
2368
|
event_type: "acs_credential.invalidated";
|
|
2247
2369
|
connected_account_id?: string | undefined;
|
|
2370
|
+
event_description?: string | undefined;
|
|
2248
2371
|
}>, z.ZodObject<{
|
|
2249
2372
|
event_id: z.ZodString;
|
|
2250
2373
|
workspace_id: z.ZodString;
|
|
2251
2374
|
created_at: z.ZodString;
|
|
2252
2375
|
occurred_at: z.ZodString;
|
|
2376
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2253
2377
|
} & {
|
|
2254
2378
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2255
2379
|
acs_system_id: z.ZodString;
|
|
@@ -2266,6 +2390,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2266
2390
|
occurred_at: string;
|
|
2267
2391
|
event_type: "acs_user.created";
|
|
2268
2392
|
connected_account_id?: string | undefined;
|
|
2393
|
+
event_description?: string | undefined;
|
|
2269
2394
|
}, {
|
|
2270
2395
|
workspace_id: string;
|
|
2271
2396
|
created_at: string;
|
|
@@ -2275,11 +2400,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2275
2400
|
occurred_at: string;
|
|
2276
2401
|
event_type: "acs_user.created";
|
|
2277
2402
|
connected_account_id?: string | undefined;
|
|
2403
|
+
event_description?: string | undefined;
|
|
2278
2404
|
}>, z.ZodObject<{
|
|
2279
2405
|
event_id: z.ZodString;
|
|
2280
2406
|
workspace_id: z.ZodString;
|
|
2281
2407
|
created_at: z.ZodString;
|
|
2282
2408
|
occurred_at: z.ZodString;
|
|
2409
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2283
2410
|
} & {
|
|
2284
2411
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2285
2412
|
acs_system_id: z.ZodString;
|
|
@@ -2296,6 +2423,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2296
2423
|
occurred_at: string;
|
|
2297
2424
|
event_type: "acs_user.deleted";
|
|
2298
2425
|
connected_account_id?: string | undefined;
|
|
2426
|
+
event_description?: string | undefined;
|
|
2299
2427
|
}, {
|
|
2300
2428
|
workspace_id: string;
|
|
2301
2429
|
created_at: string;
|
|
@@ -2305,11 +2433,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2305
2433
|
occurred_at: string;
|
|
2306
2434
|
event_type: "acs_user.deleted";
|
|
2307
2435
|
connected_account_id?: string | undefined;
|
|
2436
|
+
event_description?: string | undefined;
|
|
2308
2437
|
}>, z.ZodObject<{
|
|
2309
2438
|
event_id: z.ZodString;
|
|
2310
2439
|
workspace_id: z.ZodString;
|
|
2311
2440
|
created_at: z.ZodString;
|
|
2312
2441
|
occurred_at: z.ZodString;
|
|
2442
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2313
2443
|
} & {
|
|
2314
2444
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2315
2445
|
acs_system_id: z.ZodString;
|
|
@@ -2326,6 +2456,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2326
2456
|
occurred_at: string;
|
|
2327
2457
|
event_type: "acs_encoder.added";
|
|
2328
2458
|
connected_account_id?: string | undefined;
|
|
2459
|
+
event_description?: string | undefined;
|
|
2329
2460
|
}, {
|
|
2330
2461
|
workspace_id: string;
|
|
2331
2462
|
created_at: string;
|
|
@@ -2335,11 +2466,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2335
2466
|
occurred_at: string;
|
|
2336
2467
|
event_type: "acs_encoder.added";
|
|
2337
2468
|
connected_account_id?: string | undefined;
|
|
2469
|
+
event_description?: string | undefined;
|
|
2338
2470
|
}>, z.ZodObject<{
|
|
2339
2471
|
event_id: z.ZodString;
|
|
2340
2472
|
workspace_id: z.ZodString;
|
|
2341
2473
|
created_at: z.ZodString;
|
|
2342
2474
|
occurred_at: z.ZodString;
|
|
2475
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2343
2476
|
} & {
|
|
2344
2477
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2345
2478
|
acs_system_id: z.ZodString;
|
|
@@ -2356,6 +2489,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2356
2489
|
occurred_at: string;
|
|
2357
2490
|
event_type: "acs_encoder.removed";
|
|
2358
2491
|
connected_account_id?: string | undefined;
|
|
2492
|
+
event_description?: string | undefined;
|
|
2359
2493
|
}, {
|
|
2360
2494
|
workspace_id: string;
|
|
2361
2495
|
created_at: string;
|
|
@@ -2365,11 +2499,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2365
2499
|
occurred_at: string;
|
|
2366
2500
|
event_type: "acs_encoder.removed";
|
|
2367
2501
|
connected_account_id?: string | undefined;
|
|
2502
|
+
event_description?: string | undefined;
|
|
2368
2503
|
}>, z.ZodObject<{
|
|
2369
2504
|
event_id: z.ZodString;
|
|
2370
2505
|
workspace_id: z.ZodString;
|
|
2371
2506
|
created_at: z.ZodString;
|
|
2372
2507
|
occurred_at: z.ZodString;
|
|
2508
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2373
2509
|
} & {
|
|
2374
2510
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2375
2511
|
acs_system_id: z.ZodString;
|
|
@@ -2386,6 +2522,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2386
2522
|
occurred_at: string;
|
|
2387
2523
|
event_type: "acs_access_group.deleted";
|
|
2388
2524
|
connected_account_id?: string | undefined;
|
|
2525
|
+
event_description?: string | undefined;
|
|
2389
2526
|
}, {
|
|
2390
2527
|
workspace_id: string;
|
|
2391
2528
|
created_at: string;
|
|
@@ -2395,11 +2532,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2395
2532
|
occurred_at: string;
|
|
2396
2533
|
event_type: "acs_access_group.deleted";
|
|
2397
2534
|
connected_account_id?: string | undefined;
|
|
2535
|
+
event_description?: string | undefined;
|
|
2398
2536
|
}>, z.ZodObject<{
|
|
2399
2537
|
event_id: z.ZodString;
|
|
2400
2538
|
workspace_id: z.ZodString;
|
|
2401
2539
|
created_at: z.ZodString;
|
|
2402
2540
|
occurred_at: z.ZodString;
|
|
2541
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2403
2542
|
} & {
|
|
2404
2543
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2405
2544
|
acs_system_id: z.ZodString;
|
|
@@ -2416,6 +2555,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2416
2555
|
occurred_at: string;
|
|
2417
2556
|
event_type: "acs_entrance.added";
|
|
2418
2557
|
connected_account_id?: string | undefined;
|
|
2558
|
+
event_description?: string | undefined;
|
|
2419
2559
|
}, {
|
|
2420
2560
|
workspace_id: string;
|
|
2421
2561
|
created_at: string;
|
|
@@ -2425,11 +2565,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2425
2565
|
occurred_at: string;
|
|
2426
2566
|
event_type: "acs_entrance.added";
|
|
2427
2567
|
connected_account_id?: string | undefined;
|
|
2568
|
+
event_description?: string | undefined;
|
|
2428
2569
|
}>, z.ZodObject<{
|
|
2429
2570
|
event_id: z.ZodString;
|
|
2430
2571
|
workspace_id: z.ZodString;
|
|
2431
2572
|
created_at: z.ZodString;
|
|
2432
2573
|
occurred_at: z.ZodString;
|
|
2574
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2433
2575
|
} & {
|
|
2434
2576
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
2435
2577
|
acs_system_id: z.ZodString;
|
|
@@ -2446,6 +2588,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2446
2588
|
occurred_at: string;
|
|
2447
2589
|
event_type: "acs_entrance.removed";
|
|
2448
2590
|
connected_account_id?: string | undefined;
|
|
2591
|
+
event_description?: string | undefined;
|
|
2449
2592
|
}, {
|
|
2450
2593
|
workspace_id: string;
|
|
2451
2594
|
created_at: string;
|
|
@@ -2455,11 +2598,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2455
2598
|
occurred_at: string;
|
|
2456
2599
|
event_type: "acs_entrance.removed";
|
|
2457
2600
|
connected_account_id?: string | undefined;
|
|
2601
|
+
event_description?: string | undefined;
|
|
2458
2602
|
}>, z.ZodObject<{
|
|
2459
2603
|
event_id: z.ZodString;
|
|
2460
2604
|
workspace_id: z.ZodString;
|
|
2461
2605
|
created_at: z.ZodString;
|
|
2462
2606
|
occurred_at: z.ZodString;
|
|
2607
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2463
2608
|
} & {
|
|
2464
2609
|
client_session_id: z.ZodString;
|
|
2465
2610
|
} & {
|
|
@@ -2471,6 +2616,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2471
2616
|
event_id: string;
|
|
2472
2617
|
occurred_at: string;
|
|
2473
2618
|
event_type: "client_session.deleted";
|
|
2619
|
+
event_description?: string | undefined;
|
|
2474
2620
|
}, {
|
|
2475
2621
|
workspace_id: string;
|
|
2476
2622
|
created_at: string;
|
|
@@ -2478,11 +2624,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2478
2624
|
event_id: string;
|
|
2479
2625
|
occurred_at: string;
|
|
2480
2626
|
event_type: "client_session.deleted";
|
|
2627
|
+
event_description?: string | undefined;
|
|
2481
2628
|
}>, z.ZodObject<{
|
|
2482
2629
|
event_id: z.ZodString;
|
|
2483
2630
|
workspace_id: z.ZodString;
|
|
2484
2631
|
created_at: z.ZodString;
|
|
2485
2632
|
occurred_at: z.ZodString;
|
|
2633
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2486
2634
|
} & {
|
|
2487
2635
|
connected_account_id: z.ZodString;
|
|
2488
2636
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -2499,6 +2647,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2499
2647
|
event_type: "connected_account.connected";
|
|
2500
2648
|
customer_key?: string | undefined;
|
|
2501
2649
|
connect_webview_id?: string | undefined;
|
|
2650
|
+
event_description?: string | undefined;
|
|
2502
2651
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2503
2652
|
}, {
|
|
2504
2653
|
workspace_id: string;
|
|
@@ -2509,12 +2658,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2509
2658
|
event_type: "connected_account.connected";
|
|
2510
2659
|
customer_key?: string | undefined;
|
|
2511
2660
|
connect_webview_id?: string | undefined;
|
|
2661
|
+
event_description?: string | undefined;
|
|
2512
2662
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2513
2663
|
}>, z.ZodObject<{
|
|
2514
2664
|
event_id: z.ZodString;
|
|
2515
2665
|
workspace_id: z.ZodString;
|
|
2516
2666
|
created_at: z.ZodString;
|
|
2517
2667
|
occurred_at: z.ZodString;
|
|
2668
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2518
2669
|
} & {
|
|
2519
2670
|
connected_account_id: z.ZodString;
|
|
2520
2671
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -2529,6 +2680,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2529
2680
|
event_id: string;
|
|
2530
2681
|
occurred_at: string;
|
|
2531
2682
|
event_type: "connected_account.created";
|
|
2683
|
+
event_description?: string | undefined;
|
|
2532
2684
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2533
2685
|
}, {
|
|
2534
2686
|
workspace_id: string;
|
|
@@ -2538,12 +2690,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2538
2690
|
event_id: string;
|
|
2539
2691
|
occurred_at: string;
|
|
2540
2692
|
event_type: "connected_account.created";
|
|
2693
|
+
event_description?: string | undefined;
|
|
2541
2694
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2542
2695
|
}>, z.ZodObject<{
|
|
2543
2696
|
event_id: z.ZodString;
|
|
2544
2697
|
workspace_id: z.ZodString;
|
|
2545
2698
|
created_at: z.ZodString;
|
|
2546
2699
|
occurred_at: z.ZodString;
|
|
2700
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2547
2701
|
} & {
|
|
2548
2702
|
connected_account_id: z.ZodString;
|
|
2549
2703
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -2558,6 +2712,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2558
2712
|
event_id: string;
|
|
2559
2713
|
occurred_at: string;
|
|
2560
2714
|
event_type: "connected_account.successful_login";
|
|
2715
|
+
event_description?: string | undefined;
|
|
2561
2716
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2562
2717
|
}, {
|
|
2563
2718
|
workspace_id: string;
|
|
@@ -2567,12 +2722,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2567
2722
|
event_id: string;
|
|
2568
2723
|
occurred_at: string;
|
|
2569
2724
|
event_type: "connected_account.successful_login";
|
|
2725
|
+
event_description?: string | undefined;
|
|
2570
2726
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2571
2727
|
}>, z.ZodObject<{
|
|
2572
2728
|
event_id: z.ZodString;
|
|
2573
2729
|
workspace_id: z.ZodString;
|
|
2574
2730
|
created_at: z.ZodString;
|
|
2575
2731
|
occurred_at: z.ZodString;
|
|
2732
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2576
2733
|
} & {
|
|
2577
2734
|
connected_account_id: z.ZodString;
|
|
2578
2735
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -2622,6 +2779,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2622
2779
|
created_at: string;
|
|
2623
2780
|
warning_code: string;
|
|
2624
2781
|
}[];
|
|
2782
|
+
event_description?: string | undefined;
|
|
2625
2783
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2626
2784
|
}, {
|
|
2627
2785
|
workspace_id: string;
|
|
@@ -2640,12 +2798,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2640
2798
|
created_at: string;
|
|
2641
2799
|
warning_code: string;
|
|
2642
2800
|
}[];
|
|
2801
|
+
event_description?: string | undefined;
|
|
2643
2802
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2644
2803
|
}>, z.ZodObject<{
|
|
2645
2804
|
event_id: z.ZodString;
|
|
2646
2805
|
workspace_id: z.ZodString;
|
|
2647
2806
|
created_at: z.ZodString;
|
|
2648
2807
|
occurred_at: z.ZodString;
|
|
2808
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2649
2809
|
} & {
|
|
2650
2810
|
connected_account_id: z.ZodString;
|
|
2651
2811
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -2658,6 +2818,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2658
2818
|
event_id: string;
|
|
2659
2819
|
occurred_at: string;
|
|
2660
2820
|
event_type: "connected_account.completed_first_sync";
|
|
2821
|
+
event_description?: string | undefined;
|
|
2661
2822
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2662
2823
|
}, {
|
|
2663
2824
|
workspace_id: string;
|
|
@@ -2666,12 +2827,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2666
2827
|
event_id: string;
|
|
2667
2828
|
occurred_at: string;
|
|
2668
2829
|
event_type: "connected_account.completed_first_sync";
|
|
2830
|
+
event_description?: string | undefined;
|
|
2669
2831
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2670
2832
|
}>, z.ZodObject<{
|
|
2671
2833
|
event_id: z.ZodString;
|
|
2672
2834
|
workspace_id: z.ZodString;
|
|
2673
2835
|
created_at: z.ZodString;
|
|
2674
2836
|
occurred_at: z.ZodString;
|
|
2837
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2675
2838
|
} & {
|
|
2676
2839
|
connected_account_id: z.ZodString;
|
|
2677
2840
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -2687,6 +2850,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2687
2850
|
occurred_at: string;
|
|
2688
2851
|
event_type: "connected_account.deleted";
|
|
2689
2852
|
customer_key?: string | undefined;
|
|
2853
|
+
event_description?: string | undefined;
|
|
2690
2854
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2691
2855
|
connected_account_type?: string | undefined;
|
|
2692
2856
|
}, {
|
|
@@ -2697,6 +2861,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2697
2861
|
occurred_at: string;
|
|
2698
2862
|
event_type: "connected_account.deleted";
|
|
2699
2863
|
customer_key?: string | undefined;
|
|
2864
|
+
event_description?: string | undefined;
|
|
2700
2865
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2701
2866
|
connected_account_type?: string | undefined;
|
|
2702
2867
|
}>, z.ZodObject<{
|
|
@@ -2704,6 +2869,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2704
2869
|
workspace_id: z.ZodString;
|
|
2705
2870
|
created_at: z.ZodString;
|
|
2706
2871
|
occurred_at: z.ZodString;
|
|
2872
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2707
2873
|
} & {
|
|
2708
2874
|
connected_account_id: z.ZodString;
|
|
2709
2875
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -2716,6 +2882,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2716
2882
|
event_id: string;
|
|
2717
2883
|
occurred_at: string;
|
|
2718
2884
|
event_type: "connected_account.completed_first_sync_after_reconnection";
|
|
2885
|
+
event_description?: string | undefined;
|
|
2719
2886
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2720
2887
|
}, {
|
|
2721
2888
|
workspace_id: string;
|
|
@@ -2724,12 +2891,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2724
2891
|
event_id: string;
|
|
2725
2892
|
occurred_at: string;
|
|
2726
2893
|
event_type: "connected_account.completed_first_sync_after_reconnection";
|
|
2894
|
+
event_description?: string | undefined;
|
|
2727
2895
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2728
2896
|
}>, z.ZodObject<{
|
|
2729
2897
|
event_id: z.ZodString;
|
|
2730
2898
|
workspace_id: z.ZodString;
|
|
2731
2899
|
created_at: z.ZodString;
|
|
2732
2900
|
occurred_at: z.ZodString;
|
|
2901
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2733
2902
|
} & {
|
|
2734
2903
|
connected_account_id: z.ZodString;
|
|
2735
2904
|
connected_account_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -2779,6 +2948,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2779
2948
|
created_at: string;
|
|
2780
2949
|
warning_code: string;
|
|
2781
2950
|
}[];
|
|
2951
|
+
event_description?: string | undefined;
|
|
2782
2952
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2783
2953
|
}, {
|
|
2784
2954
|
workspace_id: string;
|
|
@@ -2797,12 +2967,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2797
2967
|
created_at: string;
|
|
2798
2968
|
warning_code: string;
|
|
2799
2969
|
}[];
|
|
2970
|
+
event_description?: string | undefined;
|
|
2800
2971
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2801
2972
|
}>, ...(z.ZodObject<{
|
|
2802
2973
|
event_id: z.ZodString;
|
|
2803
2974
|
workspace_id: z.ZodString;
|
|
2804
2975
|
created_at: z.ZodString;
|
|
2805
2976
|
occurred_at: z.ZodString;
|
|
2977
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2806
2978
|
} & {
|
|
2807
2979
|
action_attempt_id: z.ZodString;
|
|
2808
2980
|
action_type: z.ZodString;
|
|
@@ -2822,6 +2994,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2822
2994
|
event_type: "action_attempt.lock_door.succeeded";
|
|
2823
2995
|
device_id?: string | undefined;
|
|
2824
2996
|
connected_account_id?: string | undefined;
|
|
2997
|
+
event_description?: string | undefined;
|
|
2825
2998
|
}, {
|
|
2826
2999
|
status: string;
|
|
2827
3000
|
workspace_id: string;
|
|
@@ -2833,11 +3006,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2833
3006
|
event_type: "action_attempt.lock_door.succeeded";
|
|
2834
3007
|
device_id?: string | undefined;
|
|
2835
3008
|
connected_account_id?: string | undefined;
|
|
3009
|
+
event_description?: string | undefined;
|
|
2836
3010
|
}> | z.ZodObject<{
|
|
2837
3011
|
event_id: z.ZodString;
|
|
2838
3012
|
workspace_id: z.ZodString;
|
|
2839
3013
|
created_at: z.ZodString;
|
|
2840
3014
|
occurred_at: z.ZodString;
|
|
3015
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2841
3016
|
} & {
|
|
2842
3017
|
action_attempt_id: z.ZodString;
|
|
2843
3018
|
action_type: z.ZodString;
|
|
@@ -2857,6 +3032,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2857
3032
|
event_type: "action_attempt.lock_door.failed";
|
|
2858
3033
|
device_id?: string | undefined;
|
|
2859
3034
|
connected_account_id?: string | undefined;
|
|
3035
|
+
event_description?: string | undefined;
|
|
2860
3036
|
}, {
|
|
2861
3037
|
status: string;
|
|
2862
3038
|
workspace_id: string;
|
|
@@ -2868,11 +3044,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2868
3044
|
event_type: "action_attempt.lock_door.failed";
|
|
2869
3045
|
device_id?: string | undefined;
|
|
2870
3046
|
connected_account_id?: string | undefined;
|
|
3047
|
+
event_description?: string | undefined;
|
|
2871
3048
|
}> | z.ZodObject<{
|
|
2872
3049
|
event_id: z.ZodString;
|
|
2873
3050
|
workspace_id: z.ZodString;
|
|
2874
3051
|
created_at: z.ZodString;
|
|
2875
3052
|
occurred_at: z.ZodString;
|
|
3053
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2876
3054
|
} & {
|
|
2877
3055
|
action_attempt_id: z.ZodString;
|
|
2878
3056
|
action_type: z.ZodString;
|
|
@@ -2892,6 +3070,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2892
3070
|
event_type: "action_attempt.unlock_door.succeeded";
|
|
2893
3071
|
device_id?: string | undefined;
|
|
2894
3072
|
connected_account_id?: string | undefined;
|
|
3073
|
+
event_description?: string | undefined;
|
|
2895
3074
|
}, {
|
|
2896
3075
|
status: string;
|
|
2897
3076
|
workspace_id: string;
|
|
@@ -2903,11 +3082,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2903
3082
|
event_type: "action_attempt.unlock_door.succeeded";
|
|
2904
3083
|
device_id?: string | undefined;
|
|
2905
3084
|
connected_account_id?: string | undefined;
|
|
3085
|
+
event_description?: string | undefined;
|
|
2906
3086
|
}> | z.ZodObject<{
|
|
2907
3087
|
event_id: z.ZodString;
|
|
2908
3088
|
workspace_id: z.ZodString;
|
|
2909
3089
|
created_at: z.ZodString;
|
|
2910
3090
|
occurred_at: z.ZodString;
|
|
3091
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2911
3092
|
} & {
|
|
2912
3093
|
action_attempt_id: z.ZodString;
|
|
2913
3094
|
action_type: z.ZodString;
|
|
@@ -2927,6 +3108,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2927
3108
|
event_type: "action_attempt.unlock_door.failed";
|
|
2928
3109
|
device_id?: string | undefined;
|
|
2929
3110
|
connected_account_id?: string | undefined;
|
|
3111
|
+
event_description?: string | undefined;
|
|
2930
3112
|
}, {
|
|
2931
3113
|
status: string;
|
|
2932
3114
|
workspace_id: string;
|
|
@@ -2938,11 +3120,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2938
3120
|
event_type: "action_attempt.unlock_door.failed";
|
|
2939
3121
|
device_id?: string | undefined;
|
|
2940
3122
|
connected_account_id?: string | undefined;
|
|
3123
|
+
event_description?: string | undefined;
|
|
2941
3124
|
}> | z.ZodObject<{
|
|
2942
3125
|
event_id: z.ZodString;
|
|
2943
3126
|
workspace_id: z.ZodString;
|
|
2944
3127
|
created_at: z.ZodString;
|
|
2945
3128
|
occurred_at: z.ZodString;
|
|
3129
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2946
3130
|
} & {
|
|
2947
3131
|
action_attempt_id: z.ZodString;
|
|
2948
3132
|
action_type: z.ZodString;
|
|
@@ -2962,6 +3146,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2962
3146
|
event_type: "action_attempt.simulate_keypad_code_entry.succeeded";
|
|
2963
3147
|
device_id?: string | undefined;
|
|
2964
3148
|
connected_account_id?: string | undefined;
|
|
3149
|
+
event_description?: string | undefined;
|
|
2965
3150
|
}, {
|
|
2966
3151
|
status: string;
|
|
2967
3152
|
workspace_id: string;
|
|
@@ -2973,11 +3158,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2973
3158
|
event_type: "action_attempt.simulate_keypad_code_entry.succeeded";
|
|
2974
3159
|
device_id?: string | undefined;
|
|
2975
3160
|
connected_account_id?: string | undefined;
|
|
3161
|
+
event_description?: string | undefined;
|
|
2976
3162
|
}> | z.ZodObject<{
|
|
2977
3163
|
event_id: z.ZodString;
|
|
2978
3164
|
workspace_id: z.ZodString;
|
|
2979
3165
|
created_at: z.ZodString;
|
|
2980
3166
|
occurred_at: z.ZodString;
|
|
3167
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2981
3168
|
} & {
|
|
2982
3169
|
action_attempt_id: z.ZodString;
|
|
2983
3170
|
action_type: z.ZodString;
|
|
@@ -2997,6 +3184,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2997
3184
|
event_type: "action_attempt.simulate_keypad_code_entry.failed";
|
|
2998
3185
|
device_id?: string | undefined;
|
|
2999
3186
|
connected_account_id?: string | undefined;
|
|
3187
|
+
event_description?: string | undefined;
|
|
3000
3188
|
}, {
|
|
3001
3189
|
status: string;
|
|
3002
3190
|
workspace_id: string;
|
|
@@ -3008,11 +3196,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3008
3196
|
event_type: "action_attempt.simulate_keypad_code_entry.failed";
|
|
3009
3197
|
device_id?: string | undefined;
|
|
3010
3198
|
connected_account_id?: string | undefined;
|
|
3199
|
+
event_description?: string | undefined;
|
|
3011
3200
|
}> | z.ZodObject<{
|
|
3012
3201
|
event_id: z.ZodString;
|
|
3013
3202
|
workspace_id: z.ZodString;
|
|
3014
3203
|
created_at: z.ZodString;
|
|
3015
3204
|
occurred_at: z.ZodString;
|
|
3205
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3016
3206
|
} & {
|
|
3017
3207
|
action_attempt_id: z.ZodString;
|
|
3018
3208
|
action_type: z.ZodString;
|
|
@@ -3032,6 +3222,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3032
3222
|
event_type: "action_attempt.simulate_manual_lock_via_keypad.succeeded";
|
|
3033
3223
|
device_id?: string | undefined;
|
|
3034
3224
|
connected_account_id?: string | undefined;
|
|
3225
|
+
event_description?: string | undefined;
|
|
3035
3226
|
}, {
|
|
3036
3227
|
status: string;
|
|
3037
3228
|
workspace_id: string;
|
|
@@ -3043,11 +3234,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3043
3234
|
event_type: "action_attempt.simulate_manual_lock_via_keypad.succeeded";
|
|
3044
3235
|
device_id?: string | undefined;
|
|
3045
3236
|
connected_account_id?: string | undefined;
|
|
3237
|
+
event_description?: string | undefined;
|
|
3046
3238
|
}> | z.ZodObject<{
|
|
3047
3239
|
event_id: z.ZodString;
|
|
3048
3240
|
workspace_id: z.ZodString;
|
|
3049
3241
|
created_at: z.ZodString;
|
|
3050
3242
|
occurred_at: z.ZodString;
|
|
3243
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3051
3244
|
} & {
|
|
3052
3245
|
action_attempt_id: z.ZodString;
|
|
3053
3246
|
action_type: z.ZodString;
|
|
@@ -3067,6 +3260,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3067
3260
|
event_type: "action_attempt.simulate_manual_lock_via_keypad.failed";
|
|
3068
3261
|
device_id?: string | undefined;
|
|
3069
3262
|
connected_account_id?: string | undefined;
|
|
3263
|
+
event_description?: string | undefined;
|
|
3070
3264
|
}, {
|
|
3071
3265
|
status: string;
|
|
3072
3266
|
workspace_id: string;
|
|
@@ -3078,11 +3272,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3078
3272
|
event_type: "action_attempt.simulate_manual_lock_via_keypad.failed";
|
|
3079
3273
|
device_id?: string | undefined;
|
|
3080
3274
|
connected_account_id?: string | undefined;
|
|
3275
|
+
event_description?: string | undefined;
|
|
3081
3276
|
}>)[], z.ZodObject<{
|
|
3082
3277
|
event_id: z.ZodString;
|
|
3083
3278
|
workspace_id: z.ZodString;
|
|
3084
3279
|
created_at: z.ZodString;
|
|
3085
3280
|
occurred_at: z.ZodString;
|
|
3281
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3086
3282
|
} & {
|
|
3087
3283
|
connect_webview_id: z.ZodString;
|
|
3088
3284
|
} & {
|
|
@@ -3099,6 +3295,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3099
3295
|
occurred_at: string;
|
|
3100
3296
|
event_type: "connect_webview.login_succeeded";
|
|
3101
3297
|
customer_key?: string | undefined;
|
|
3298
|
+
event_description?: string | undefined;
|
|
3102
3299
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3103
3300
|
}, {
|
|
3104
3301
|
workspace_id: string;
|
|
@@ -3109,12 +3306,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3109
3306
|
occurred_at: string;
|
|
3110
3307
|
event_type: "connect_webview.login_succeeded";
|
|
3111
3308
|
customer_key?: string | undefined;
|
|
3309
|
+
event_description?: string | undefined;
|
|
3112
3310
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3113
3311
|
}>, z.ZodObject<{
|
|
3114
3312
|
event_id: z.ZodString;
|
|
3115
3313
|
workspace_id: z.ZodString;
|
|
3116
3314
|
created_at: z.ZodString;
|
|
3117
3315
|
occurred_at: z.ZodString;
|
|
3316
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3118
3317
|
} & {
|
|
3119
3318
|
connect_webview_id: z.ZodString;
|
|
3120
3319
|
} & {
|
|
@@ -3126,6 +3325,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3126
3325
|
event_id: string;
|
|
3127
3326
|
occurred_at: string;
|
|
3128
3327
|
event_type: "connect_webview.login_failed";
|
|
3328
|
+
event_description?: string | undefined;
|
|
3129
3329
|
}, {
|
|
3130
3330
|
workspace_id: string;
|
|
3131
3331
|
created_at: string;
|
|
@@ -3133,11 +3333,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3133
3333
|
event_id: string;
|
|
3134
3334
|
occurred_at: string;
|
|
3135
3335
|
event_type: "connect_webview.login_failed";
|
|
3336
|
+
event_description?: string | undefined;
|
|
3136
3337
|
}>, z.ZodObject<{
|
|
3137
3338
|
event_id: z.ZodString;
|
|
3138
3339
|
workspace_id: z.ZodString;
|
|
3139
3340
|
created_at: z.ZodString;
|
|
3140
3341
|
occurred_at: z.ZodString;
|
|
3342
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3141
3343
|
} & {
|
|
3142
3344
|
device_id: z.ZodString;
|
|
3143
3345
|
connected_account_id: z.ZodString;
|
|
@@ -3155,6 +3357,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3155
3357
|
occurred_at: string;
|
|
3156
3358
|
event_type: "device.connected";
|
|
3157
3359
|
customer_key?: string | undefined;
|
|
3360
|
+
event_description?: string | undefined;
|
|
3158
3361
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3159
3362
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3160
3363
|
}, {
|
|
@@ -3166,6 +3369,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3166
3369
|
occurred_at: string;
|
|
3167
3370
|
event_type: "device.connected";
|
|
3168
3371
|
customer_key?: string | undefined;
|
|
3372
|
+
event_description?: string | undefined;
|
|
3169
3373
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3170
3374
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3171
3375
|
}>, z.ZodObject<{
|
|
@@ -3173,6 +3377,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3173
3377
|
workspace_id: z.ZodString;
|
|
3174
3378
|
created_at: z.ZodString;
|
|
3175
3379
|
occurred_at: z.ZodString;
|
|
3380
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3176
3381
|
} & {
|
|
3177
3382
|
device_id: z.ZodString;
|
|
3178
3383
|
connected_account_id: z.ZodString;
|
|
@@ -3190,6 +3395,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3190
3395
|
occurred_at: string;
|
|
3191
3396
|
event_type: "device.added";
|
|
3192
3397
|
customer_key?: string | undefined;
|
|
3398
|
+
event_description?: string | undefined;
|
|
3193
3399
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3194
3400
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3195
3401
|
}, {
|
|
@@ -3201,6 +3407,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3201
3407
|
occurred_at: string;
|
|
3202
3408
|
event_type: "device.added";
|
|
3203
3409
|
customer_key?: string | undefined;
|
|
3410
|
+
event_description?: string | undefined;
|
|
3204
3411
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3205
3412
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3206
3413
|
}>, z.ZodObject<{
|
|
@@ -3208,6 +3415,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3208
3415
|
workspace_id: z.ZodString;
|
|
3209
3416
|
created_at: z.ZodString;
|
|
3210
3417
|
occurred_at: z.ZodString;
|
|
3418
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3211
3419
|
} & {
|
|
3212
3420
|
device_id: z.ZodString;
|
|
3213
3421
|
connected_account_id: z.ZodString;
|
|
@@ -3225,6 +3433,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3225
3433
|
occurred_at: string;
|
|
3226
3434
|
event_type: "device.converted_to_unmanaged";
|
|
3227
3435
|
customer_key?: string | undefined;
|
|
3436
|
+
event_description?: string | undefined;
|
|
3228
3437
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3229
3438
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3230
3439
|
}, {
|
|
@@ -3236,6 +3445,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3236
3445
|
occurred_at: string;
|
|
3237
3446
|
event_type: "device.converted_to_unmanaged";
|
|
3238
3447
|
customer_key?: string | undefined;
|
|
3448
|
+
event_description?: string | undefined;
|
|
3239
3449
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3240
3450
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3241
3451
|
}>, z.ZodObject<{
|
|
@@ -3243,6 +3453,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3243
3453
|
workspace_id: z.ZodString;
|
|
3244
3454
|
created_at: z.ZodString;
|
|
3245
3455
|
occurred_at: z.ZodString;
|
|
3456
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3246
3457
|
} & {
|
|
3247
3458
|
device_id: z.ZodString;
|
|
3248
3459
|
connected_account_id: z.ZodString;
|
|
@@ -3260,6 +3471,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3260
3471
|
occurred_at: string;
|
|
3261
3472
|
event_type: "device.unmanaged.converted_to_managed";
|
|
3262
3473
|
customer_key?: string | undefined;
|
|
3474
|
+
event_description?: string | undefined;
|
|
3263
3475
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3264
3476
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3265
3477
|
}, {
|
|
@@ -3271,6 +3483,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3271
3483
|
occurred_at: string;
|
|
3272
3484
|
event_type: "device.unmanaged.converted_to_managed";
|
|
3273
3485
|
customer_key?: string | undefined;
|
|
3486
|
+
event_description?: string | undefined;
|
|
3274
3487
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3275
3488
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3276
3489
|
}>, z.ZodObject<{
|
|
@@ -3278,6 +3491,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3278
3491
|
workspace_id: z.ZodString;
|
|
3279
3492
|
created_at: z.ZodString;
|
|
3280
3493
|
occurred_at: z.ZodString;
|
|
3494
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3281
3495
|
} & {
|
|
3282
3496
|
device_id: z.ZodString;
|
|
3283
3497
|
connected_account_id: z.ZodString;
|
|
@@ -3295,6 +3509,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3295
3509
|
occurred_at: string;
|
|
3296
3510
|
event_type: "device.unmanaged.connected";
|
|
3297
3511
|
customer_key?: string | undefined;
|
|
3512
|
+
event_description?: string | undefined;
|
|
3298
3513
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3299
3514
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3300
3515
|
}, {
|
|
@@ -3306,6 +3521,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3306
3521
|
occurred_at: string;
|
|
3307
3522
|
event_type: "device.unmanaged.connected";
|
|
3308
3523
|
customer_key?: string | undefined;
|
|
3524
|
+
event_description?: string | undefined;
|
|
3309
3525
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3310
3526
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3311
3527
|
}>, z.ZodObject<{
|
|
@@ -3313,6 +3529,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3313
3529
|
workspace_id: z.ZodString;
|
|
3314
3530
|
created_at: z.ZodString;
|
|
3315
3531
|
occurred_at: z.ZodString;
|
|
3532
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3316
3533
|
} & {
|
|
3317
3534
|
device_id: z.ZodString;
|
|
3318
3535
|
connected_account_id: z.ZodString;
|
|
@@ -3405,6 +3622,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3405
3622
|
warning_code: string;
|
|
3406
3623
|
}[];
|
|
3407
3624
|
customer_key?: string | undefined;
|
|
3625
|
+
event_description?: string | undefined;
|
|
3408
3626
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3409
3627
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3410
3628
|
}, {
|
|
@@ -3437,6 +3655,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3437
3655
|
warning_code: string;
|
|
3438
3656
|
}[];
|
|
3439
3657
|
customer_key?: string | undefined;
|
|
3658
|
+
event_description?: string | undefined;
|
|
3440
3659
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3441
3660
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3442
3661
|
}>, z.ZodObject<{
|
|
@@ -3444,6 +3663,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3444
3663
|
workspace_id: z.ZodString;
|
|
3445
3664
|
created_at: z.ZodString;
|
|
3446
3665
|
occurred_at: z.ZodString;
|
|
3666
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3447
3667
|
} & {
|
|
3448
3668
|
device_id: z.ZodString;
|
|
3449
3669
|
connected_account_id: z.ZodString;
|
|
@@ -3536,6 +3756,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3536
3756
|
warning_code: string;
|
|
3537
3757
|
}[];
|
|
3538
3758
|
customer_key?: string | undefined;
|
|
3759
|
+
event_description?: string | undefined;
|
|
3539
3760
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3540
3761
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3541
3762
|
}, {
|
|
@@ -3568,6 +3789,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3568
3789
|
warning_code: string;
|
|
3569
3790
|
}[];
|
|
3570
3791
|
customer_key?: string | undefined;
|
|
3792
|
+
event_description?: string | undefined;
|
|
3571
3793
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3572
3794
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3573
3795
|
}>, z.ZodObject<{
|
|
@@ -3575,6 +3797,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3575
3797
|
workspace_id: z.ZodString;
|
|
3576
3798
|
created_at: z.ZodString;
|
|
3577
3799
|
occurred_at: z.ZodString;
|
|
3800
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3578
3801
|
} & {
|
|
3579
3802
|
device_id: z.ZodString;
|
|
3580
3803
|
connected_account_id: z.ZodString;
|
|
@@ -3592,6 +3815,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3592
3815
|
occurred_at: string;
|
|
3593
3816
|
event_type: "device.tampered";
|
|
3594
3817
|
customer_key?: string | undefined;
|
|
3818
|
+
event_description?: string | undefined;
|
|
3595
3819
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3596
3820
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3597
3821
|
}, {
|
|
@@ -3603,6 +3827,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3603
3827
|
occurred_at: string;
|
|
3604
3828
|
event_type: "device.tampered";
|
|
3605
3829
|
customer_key?: string | undefined;
|
|
3830
|
+
event_description?: string | undefined;
|
|
3606
3831
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3607
3832
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3608
3833
|
}>, z.ZodObject<{
|
|
@@ -3610,6 +3835,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3610
3835
|
workspace_id: z.ZodString;
|
|
3611
3836
|
created_at: z.ZodString;
|
|
3612
3837
|
occurred_at: z.ZodString;
|
|
3838
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3613
3839
|
} & {
|
|
3614
3840
|
device_id: z.ZodString;
|
|
3615
3841
|
connected_account_id: z.ZodString;
|
|
@@ -3629,6 +3855,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3629
3855
|
occurred_at: string;
|
|
3630
3856
|
event_type: "device.low_battery";
|
|
3631
3857
|
customer_key?: string | undefined;
|
|
3858
|
+
event_description?: string | undefined;
|
|
3632
3859
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3633
3860
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3634
3861
|
}, {
|
|
@@ -3641,6 +3868,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3641
3868
|
occurred_at: string;
|
|
3642
3869
|
event_type: "device.low_battery";
|
|
3643
3870
|
customer_key?: string | undefined;
|
|
3871
|
+
event_description?: string | undefined;
|
|
3644
3872
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3645
3873
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3646
3874
|
}>, z.ZodObject<{
|
|
@@ -3648,6 +3876,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3648
3876
|
workspace_id: z.ZodString;
|
|
3649
3877
|
created_at: z.ZodString;
|
|
3650
3878
|
occurred_at: z.ZodString;
|
|
3879
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3651
3880
|
} & {
|
|
3652
3881
|
device_id: z.ZodString;
|
|
3653
3882
|
connected_account_id: z.ZodString;
|
|
@@ -3669,6 +3898,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3669
3898
|
event_type: "device.battery_status_changed";
|
|
3670
3899
|
battery_status: "critical" | "low" | "good" | "full";
|
|
3671
3900
|
customer_key?: string | undefined;
|
|
3901
|
+
event_description?: string | undefined;
|
|
3672
3902
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3673
3903
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3674
3904
|
}, {
|
|
@@ -3682,6 +3912,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3682
3912
|
event_type: "device.battery_status_changed";
|
|
3683
3913
|
battery_status: "critical" | "low" | "good" | "full";
|
|
3684
3914
|
customer_key?: string | undefined;
|
|
3915
|
+
event_description?: string | undefined;
|
|
3685
3916
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3686
3917
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3687
3918
|
}>, z.ZodObject<{
|
|
@@ -3689,6 +3920,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3689
3920
|
workspace_id: z.ZodString;
|
|
3690
3921
|
created_at: z.ZodString;
|
|
3691
3922
|
occurred_at: z.ZodString;
|
|
3923
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3692
3924
|
} & {
|
|
3693
3925
|
device_id: z.ZodString;
|
|
3694
3926
|
connected_account_id: z.ZodString;
|
|
@@ -3706,6 +3938,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3706
3938
|
occurred_at: string;
|
|
3707
3939
|
event_type: "device.removed";
|
|
3708
3940
|
customer_key?: string | undefined;
|
|
3941
|
+
event_description?: string | undefined;
|
|
3709
3942
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3710
3943
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3711
3944
|
}, {
|
|
@@ -3717,6 +3950,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3717
3950
|
occurred_at: string;
|
|
3718
3951
|
event_type: "device.removed";
|
|
3719
3952
|
customer_key?: string | undefined;
|
|
3953
|
+
event_description?: string | undefined;
|
|
3720
3954
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3721
3955
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3722
3956
|
}>, z.ZodObject<{
|
|
@@ -3724,6 +3958,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3724
3958
|
workspace_id: z.ZodString;
|
|
3725
3959
|
created_at: z.ZodString;
|
|
3726
3960
|
occurred_at: z.ZodString;
|
|
3961
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3727
3962
|
} & {
|
|
3728
3963
|
device_id: z.ZodString;
|
|
3729
3964
|
connected_account_id: z.ZodString;
|
|
@@ -3743,6 +3978,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3743
3978
|
event_type: "device.deleted";
|
|
3744
3979
|
customer_key?: string | undefined;
|
|
3745
3980
|
device_name?: string | null | undefined;
|
|
3981
|
+
event_description?: string | undefined;
|
|
3746
3982
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3747
3983
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3748
3984
|
}, {
|
|
@@ -3755,6 +3991,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3755
3991
|
event_type: "device.deleted";
|
|
3756
3992
|
customer_key?: string | undefined;
|
|
3757
3993
|
device_name?: string | null | undefined;
|
|
3994
|
+
event_description?: string | undefined;
|
|
3758
3995
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3759
3996
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3760
3997
|
}>, z.ZodObject<{
|
|
@@ -3762,6 +3999,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3762
3999
|
workspace_id: z.ZodString;
|
|
3763
4000
|
created_at: z.ZodString;
|
|
3764
4001
|
occurred_at: z.ZodString;
|
|
4002
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3765
4003
|
} & {
|
|
3766
4004
|
device_id: z.ZodString;
|
|
3767
4005
|
connected_account_id: z.ZodString;
|
|
@@ -3779,6 +4017,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3779
4017
|
occurred_at: string;
|
|
3780
4018
|
event_type: "device.third_party_integration_detected";
|
|
3781
4019
|
customer_key?: string | undefined;
|
|
4020
|
+
event_description?: string | undefined;
|
|
3782
4021
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3783
4022
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3784
4023
|
}, {
|
|
@@ -3790,6 +4029,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3790
4029
|
occurred_at: string;
|
|
3791
4030
|
event_type: "device.third_party_integration_detected";
|
|
3792
4031
|
customer_key?: string | undefined;
|
|
4032
|
+
event_description?: string | undefined;
|
|
3793
4033
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3794
4034
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3795
4035
|
}>, z.ZodObject<{
|
|
@@ -3797,6 +4037,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3797
4037
|
workspace_id: z.ZodString;
|
|
3798
4038
|
created_at: z.ZodString;
|
|
3799
4039
|
occurred_at: z.ZodString;
|
|
4040
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3800
4041
|
} & {
|
|
3801
4042
|
device_id: z.ZodString;
|
|
3802
4043
|
connected_account_id: z.ZodString;
|
|
@@ -3814,6 +4055,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3814
4055
|
occurred_at: string;
|
|
3815
4056
|
event_type: "device.third_party_integration_no_longer_detected";
|
|
3816
4057
|
customer_key?: string | undefined;
|
|
4058
|
+
event_description?: string | undefined;
|
|
3817
4059
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3818
4060
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3819
4061
|
}, {
|
|
@@ -3825,6 +4067,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3825
4067
|
occurred_at: string;
|
|
3826
4068
|
event_type: "device.third_party_integration_no_longer_detected";
|
|
3827
4069
|
customer_key?: string | undefined;
|
|
4070
|
+
event_description?: string | undefined;
|
|
3828
4071
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3829
4072
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3830
4073
|
}>, z.ZodObject<{
|
|
@@ -3832,6 +4075,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3832
4075
|
workspace_id: z.ZodString;
|
|
3833
4076
|
created_at: z.ZodString;
|
|
3834
4077
|
occurred_at: z.ZodString;
|
|
4078
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3835
4079
|
} & {
|
|
3836
4080
|
device_id: z.ZodString;
|
|
3837
4081
|
connected_account_id: z.ZodString;
|
|
@@ -3849,6 +4093,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3849
4093
|
occurred_at: string;
|
|
3850
4094
|
event_type: "device.salto.privacy_mode_activated";
|
|
3851
4095
|
customer_key?: string | undefined;
|
|
4096
|
+
event_description?: string | undefined;
|
|
3852
4097
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3853
4098
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3854
4099
|
}, {
|
|
@@ -3860,6 +4105,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3860
4105
|
occurred_at: string;
|
|
3861
4106
|
event_type: "device.salto.privacy_mode_activated";
|
|
3862
4107
|
customer_key?: string | undefined;
|
|
4108
|
+
event_description?: string | undefined;
|
|
3863
4109
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3864
4110
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3865
4111
|
}>, z.ZodObject<{
|
|
@@ -3867,6 +4113,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3867
4113
|
workspace_id: z.ZodString;
|
|
3868
4114
|
created_at: z.ZodString;
|
|
3869
4115
|
occurred_at: z.ZodString;
|
|
4116
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3870
4117
|
} & {
|
|
3871
4118
|
device_id: z.ZodString;
|
|
3872
4119
|
connected_account_id: z.ZodString;
|
|
@@ -3884,6 +4131,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3884
4131
|
occurred_at: string;
|
|
3885
4132
|
event_type: "device.salto.privacy_mode_deactivated";
|
|
3886
4133
|
customer_key?: string | undefined;
|
|
4134
|
+
event_description?: string | undefined;
|
|
3887
4135
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3888
4136
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3889
4137
|
}, {
|
|
@@ -3895,6 +4143,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3895
4143
|
occurred_at: string;
|
|
3896
4144
|
event_type: "device.salto.privacy_mode_deactivated";
|
|
3897
4145
|
customer_key?: string | undefined;
|
|
4146
|
+
event_description?: string | undefined;
|
|
3898
4147
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3899
4148
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3900
4149
|
}>, z.ZodObject<{
|
|
@@ -3902,6 +4151,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3902
4151
|
workspace_id: z.ZodString;
|
|
3903
4152
|
created_at: z.ZodString;
|
|
3904
4153
|
occurred_at: z.ZodString;
|
|
4154
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3905
4155
|
} & {
|
|
3906
4156
|
device_id: z.ZodString;
|
|
3907
4157
|
connected_account_id: z.ZodString;
|
|
@@ -3992,6 +4242,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
3992
4242
|
warning_code: string;
|
|
3993
4243
|
}[];
|
|
3994
4244
|
customer_key?: string | undefined;
|
|
4245
|
+
event_description?: string | undefined;
|
|
3995
4246
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3996
4247
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3997
4248
|
}, {
|
|
@@ -4023,6 +4274,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4023
4274
|
warning_code: string;
|
|
4024
4275
|
}[];
|
|
4025
4276
|
customer_key?: string | undefined;
|
|
4277
|
+
event_description?: string | undefined;
|
|
4026
4278
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4027
4279
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4028
4280
|
}>, z.ZodObject<{
|
|
@@ -4030,6 +4282,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4030
4282
|
workspace_id: z.ZodString;
|
|
4031
4283
|
created_at: z.ZodString;
|
|
4032
4284
|
occurred_at: z.ZodString;
|
|
4285
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4033
4286
|
} & {
|
|
4034
4287
|
device_id: z.ZodString;
|
|
4035
4288
|
connected_account_id: z.ZodString;
|
|
@@ -4047,6 +4300,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4047
4300
|
occurred_at: string;
|
|
4048
4301
|
event_type: "device.connection_stabilized";
|
|
4049
4302
|
customer_key?: string | undefined;
|
|
4303
|
+
event_description?: string | undefined;
|
|
4050
4304
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4051
4305
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4052
4306
|
}, {
|
|
@@ -4058,6 +4312,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4058
4312
|
occurred_at: string;
|
|
4059
4313
|
event_type: "device.connection_stabilized";
|
|
4060
4314
|
customer_key?: string | undefined;
|
|
4315
|
+
event_description?: string | undefined;
|
|
4061
4316
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4062
4317
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4063
4318
|
}>, z.ZodObject<{
|
|
@@ -4065,6 +4320,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4065
4320
|
workspace_id: z.ZodString;
|
|
4066
4321
|
created_at: z.ZodString;
|
|
4067
4322
|
occurred_at: z.ZodString;
|
|
4323
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4068
4324
|
} & {
|
|
4069
4325
|
device_id: z.ZodString;
|
|
4070
4326
|
connected_account_id: z.ZodString;
|
|
@@ -4155,6 +4411,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4155
4411
|
warning_code: string;
|
|
4156
4412
|
}[];
|
|
4157
4413
|
customer_key?: string | undefined;
|
|
4414
|
+
event_description?: string | undefined;
|
|
4158
4415
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4159
4416
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4160
4417
|
}, {
|
|
@@ -4186,6 +4443,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4186
4443
|
warning_code: string;
|
|
4187
4444
|
}[];
|
|
4188
4445
|
customer_key?: string | undefined;
|
|
4446
|
+
event_description?: string | undefined;
|
|
4189
4447
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4190
4448
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4191
4449
|
}>, z.ZodObject<{
|
|
@@ -4193,6 +4451,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4193
4451
|
workspace_id: z.ZodString;
|
|
4194
4452
|
created_at: z.ZodString;
|
|
4195
4453
|
occurred_at: z.ZodString;
|
|
4454
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4196
4455
|
} & {
|
|
4197
4456
|
device_id: z.ZodString;
|
|
4198
4457
|
connected_account_id: z.ZodString;
|
|
@@ -4210,6 +4469,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4210
4469
|
occurred_at: string;
|
|
4211
4470
|
event_type: "device.error.subscription_required.resolved";
|
|
4212
4471
|
customer_key?: string | undefined;
|
|
4472
|
+
event_description?: string | undefined;
|
|
4213
4473
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4214
4474
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4215
4475
|
}, {
|
|
@@ -4221,6 +4481,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4221
4481
|
occurred_at: string;
|
|
4222
4482
|
event_type: "device.error.subscription_required.resolved";
|
|
4223
4483
|
customer_key?: string | undefined;
|
|
4484
|
+
event_description?: string | undefined;
|
|
4224
4485
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4225
4486
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4226
4487
|
}>, z.ZodObject<{
|
|
@@ -4228,6 +4489,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4228
4489
|
workspace_id: z.ZodString;
|
|
4229
4490
|
created_at: z.ZodString;
|
|
4230
4491
|
occurred_at: z.ZodString;
|
|
4492
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4231
4493
|
} & {
|
|
4232
4494
|
device_id: z.ZodString;
|
|
4233
4495
|
connected_account_id: z.ZodString;
|
|
@@ -4245,6 +4507,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4245
4507
|
occurred_at: string;
|
|
4246
4508
|
event_type: "device.accessory_keypad_connected";
|
|
4247
4509
|
customer_key?: string | undefined;
|
|
4510
|
+
event_description?: string | undefined;
|
|
4248
4511
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4249
4512
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4250
4513
|
}, {
|
|
@@ -4256,6 +4519,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4256
4519
|
occurred_at: string;
|
|
4257
4520
|
event_type: "device.accessory_keypad_connected";
|
|
4258
4521
|
customer_key?: string | undefined;
|
|
4522
|
+
event_description?: string | undefined;
|
|
4259
4523
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4260
4524
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4261
4525
|
}>, z.ZodObject<{
|
|
@@ -4263,6 +4527,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4263
4527
|
workspace_id: z.ZodString;
|
|
4264
4528
|
created_at: z.ZodString;
|
|
4265
4529
|
occurred_at: z.ZodString;
|
|
4530
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4266
4531
|
} & {
|
|
4267
4532
|
device_id: z.ZodString;
|
|
4268
4533
|
connected_account_id: z.ZodString;
|
|
@@ -4353,6 +4618,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4353
4618
|
warning_code: string;
|
|
4354
4619
|
}[];
|
|
4355
4620
|
customer_key?: string | undefined;
|
|
4621
|
+
event_description?: string | undefined;
|
|
4356
4622
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4357
4623
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4358
4624
|
}, {
|
|
@@ -4384,6 +4650,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4384
4650
|
warning_code: string;
|
|
4385
4651
|
}[];
|
|
4386
4652
|
customer_key?: string | undefined;
|
|
4653
|
+
event_description?: string | undefined;
|
|
4387
4654
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4388
4655
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4389
4656
|
}>, z.ZodObject<{
|
|
@@ -4391,6 +4658,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4391
4658
|
workspace_id: z.ZodString;
|
|
4392
4659
|
created_at: z.ZodString;
|
|
4393
4660
|
occurred_at: z.ZodString;
|
|
4661
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4394
4662
|
} & {
|
|
4395
4663
|
device_id: z.ZodString;
|
|
4396
4664
|
connected_account_id: z.ZodString;
|
|
@@ -4418,6 +4686,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4418
4686
|
noiseaware_metadata?: Record<string, unknown> | undefined;
|
|
4419
4687
|
minut_metadata?: Record<string, unknown> | undefined;
|
|
4420
4688
|
noise_level_decibels?: number | undefined;
|
|
4689
|
+
event_description?: string | undefined;
|
|
4421
4690
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4422
4691
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4423
4692
|
noise_threshold_id?: string | undefined;
|
|
@@ -4435,6 +4704,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4435
4704
|
noiseaware_metadata?: Record<string, unknown> | undefined;
|
|
4436
4705
|
minut_metadata?: Record<string, unknown> | undefined;
|
|
4437
4706
|
noise_level_decibels?: number | undefined;
|
|
4707
|
+
event_description?: string | undefined;
|
|
4438
4708
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4439
4709
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4440
4710
|
noise_threshold_id?: string | undefined;
|
|
@@ -4444,6 +4714,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4444
4714
|
workspace_id: z.ZodString;
|
|
4445
4715
|
created_at: z.ZodString;
|
|
4446
4716
|
occurred_at: z.ZodString;
|
|
4717
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4447
4718
|
} & {
|
|
4448
4719
|
device_id: z.ZodString;
|
|
4449
4720
|
connected_account_id: z.ZodString;
|
|
@@ -4472,6 +4743,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4472
4743
|
customer_key?: string | undefined;
|
|
4473
4744
|
access_code_id?: string | undefined;
|
|
4474
4745
|
action_attempt_id?: string | undefined;
|
|
4746
|
+
event_description?: string | undefined;
|
|
4475
4747
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4476
4748
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4477
4749
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -4490,6 +4762,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4490
4762
|
customer_key?: string | undefined;
|
|
4491
4763
|
access_code_id?: string | undefined;
|
|
4492
4764
|
action_attempt_id?: string | undefined;
|
|
4765
|
+
event_description?: string | undefined;
|
|
4493
4766
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4494
4767
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4495
4768
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -4500,6 +4773,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4500
4773
|
workspace_id: z.ZodString;
|
|
4501
4774
|
created_at: z.ZodString;
|
|
4502
4775
|
occurred_at: z.ZodString;
|
|
4776
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4503
4777
|
connected_account_id: z.ZodString;
|
|
4504
4778
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
4505
4779
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -4535,6 +4809,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4535
4809
|
acs_entrance_id?: string | undefined;
|
|
4536
4810
|
acs_system_id?: string | undefined;
|
|
4537
4811
|
action_attempt_id?: string | undefined;
|
|
4812
|
+
event_description?: string | undefined;
|
|
4538
4813
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4539
4814
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4540
4815
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -4557,6 +4832,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4557
4832
|
acs_entrance_id?: string | undefined;
|
|
4558
4833
|
acs_system_id?: string | undefined;
|
|
4559
4834
|
action_attempt_id?: string | undefined;
|
|
4835
|
+
event_description?: string | undefined;
|
|
4560
4836
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4561
4837
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4562
4838
|
access_code_is_managed?: boolean | undefined;
|
|
@@ -4567,6 +4843,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4567
4843
|
workspace_id: z.ZodString;
|
|
4568
4844
|
created_at: z.ZodString;
|
|
4569
4845
|
occurred_at: z.ZodString;
|
|
4846
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4570
4847
|
connected_account_id: z.ZodString;
|
|
4571
4848
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
4572
4849
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -4593,6 +4870,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4593
4870
|
acs_user_id?: string | undefined;
|
|
4594
4871
|
acs_entrance_id?: string | undefined;
|
|
4595
4872
|
acs_system_id?: string | undefined;
|
|
4873
|
+
event_description?: string | undefined;
|
|
4596
4874
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4597
4875
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4598
4876
|
}, {
|
|
@@ -4609,6 +4887,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4609
4887
|
acs_user_id?: string | undefined;
|
|
4610
4888
|
acs_entrance_id?: string | undefined;
|
|
4611
4889
|
acs_system_id?: string | undefined;
|
|
4890
|
+
event_description?: string | undefined;
|
|
4612
4891
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4613
4892
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4614
4893
|
}>, z.ZodObject<{
|
|
@@ -4616,6 +4895,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4616
4895
|
workspace_id: z.ZodString;
|
|
4617
4896
|
created_at: z.ZodString;
|
|
4618
4897
|
occurred_at: z.ZodString;
|
|
4898
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4619
4899
|
} & {
|
|
4620
4900
|
device_id: z.ZodString;
|
|
4621
4901
|
connected_account_id: z.ZodString;
|
|
@@ -4639,6 +4919,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4639
4919
|
event_type: "thermostat.climate_preset_activated";
|
|
4640
4920
|
is_fallback_climate_preset: boolean;
|
|
4641
4921
|
customer_key?: string | undefined;
|
|
4922
|
+
event_description?: string | undefined;
|
|
4642
4923
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4643
4924
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4644
4925
|
}, {
|
|
@@ -4653,6 +4934,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4653
4934
|
event_type: "thermostat.climate_preset_activated";
|
|
4654
4935
|
is_fallback_climate_preset: boolean;
|
|
4655
4936
|
customer_key?: string | undefined;
|
|
4937
|
+
event_description?: string | undefined;
|
|
4656
4938
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4657
4939
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4658
4940
|
}>, z.ZodObject<{
|
|
@@ -4660,6 +4942,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4660
4942
|
workspace_id: z.ZodString;
|
|
4661
4943
|
created_at: z.ZodString;
|
|
4662
4944
|
occurred_at: z.ZodString;
|
|
4945
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4663
4946
|
} & {
|
|
4664
4947
|
device_id: z.ZodString;
|
|
4665
4948
|
connected_account_id: z.ZodString;
|
|
@@ -4713,6 +4996,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4713
4996
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
4714
4997
|
heating_set_point_fahrenheit?: number | undefined;
|
|
4715
4998
|
customer_key?: string | undefined;
|
|
4999
|
+
event_description?: string | undefined;
|
|
4716
5000
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4717
5001
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4718
5002
|
}, {
|
|
@@ -4731,6 +5015,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4731
5015
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
4732
5016
|
heating_set_point_fahrenheit?: number | undefined;
|
|
4733
5017
|
customer_key?: string | undefined;
|
|
5018
|
+
event_description?: string | undefined;
|
|
4734
5019
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4735
5020
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4736
5021
|
}>, z.ZodObject<{
|
|
@@ -4738,6 +5023,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4738
5023
|
workspace_id: z.ZodString;
|
|
4739
5024
|
created_at: z.ZodString;
|
|
4740
5025
|
occurred_at: z.ZodString;
|
|
5026
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4741
5027
|
} & {
|
|
4742
5028
|
device_id: z.ZodString;
|
|
4743
5029
|
connected_account_id: z.ZodString;
|
|
@@ -4767,6 +5053,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4767
5053
|
occurred_at: string;
|
|
4768
5054
|
event_type: "thermostat.temperature_threshold_exceeded";
|
|
4769
5055
|
customer_key?: string | undefined;
|
|
5056
|
+
event_description?: string | undefined;
|
|
4770
5057
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4771
5058
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4772
5059
|
}, {
|
|
@@ -4784,6 +5071,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4784
5071
|
occurred_at: string;
|
|
4785
5072
|
event_type: "thermostat.temperature_threshold_exceeded";
|
|
4786
5073
|
customer_key?: string | undefined;
|
|
5074
|
+
event_description?: string | undefined;
|
|
4787
5075
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4788
5076
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4789
5077
|
}>, z.ZodObject<{
|
|
@@ -4791,6 +5079,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4791
5079
|
workspace_id: z.ZodString;
|
|
4792
5080
|
created_at: z.ZodString;
|
|
4793
5081
|
occurred_at: z.ZodString;
|
|
5082
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4794
5083
|
} & {
|
|
4795
5084
|
device_id: z.ZodString;
|
|
4796
5085
|
connected_account_id: z.ZodString;
|
|
@@ -4820,6 +5109,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4820
5109
|
occurred_at: string;
|
|
4821
5110
|
event_type: "thermostat.temperature_threshold_no_longer_exceeded";
|
|
4822
5111
|
customer_key?: string | undefined;
|
|
5112
|
+
event_description?: string | undefined;
|
|
4823
5113
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4824
5114
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4825
5115
|
}, {
|
|
@@ -4837,6 +5127,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4837
5127
|
occurred_at: string;
|
|
4838
5128
|
event_type: "thermostat.temperature_threshold_no_longer_exceeded";
|
|
4839
5129
|
customer_key?: string | undefined;
|
|
5130
|
+
event_description?: string | undefined;
|
|
4840
5131
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4841
5132
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4842
5133
|
}>, z.ZodObject<{
|
|
@@ -4844,6 +5135,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4844
5135
|
workspace_id: z.ZodString;
|
|
4845
5136
|
created_at: z.ZodString;
|
|
4846
5137
|
occurred_at: z.ZodString;
|
|
5138
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4847
5139
|
} & {
|
|
4848
5140
|
device_id: z.ZodString;
|
|
4849
5141
|
connected_account_id: z.ZodString;
|
|
@@ -4867,6 +5159,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4867
5159
|
occurred_at: string;
|
|
4868
5160
|
event_type: "thermostat.temperature_reached_set_point";
|
|
4869
5161
|
customer_key?: string | undefined;
|
|
5162
|
+
event_description?: string | undefined;
|
|
4870
5163
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4871
5164
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4872
5165
|
desired_temperature_celsius?: number | undefined;
|
|
@@ -4882,6 +5175,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4882
5175
|
occurred_at: string;
|
|
4883
5176
|
event_type: "thermostat.temperature_reached_set_point";
|
|
4884
5177
|
customer_key?: string | undefined;
|
|
5178
|
+
event_description?: string | undefined;
|
|
4885
5179
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4886
5180
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4887
5181
|
desired_temperature_celsius?: number | undefined;
|
|
@@ -4891,6 +5185,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4891
5185
|
workspace_id: z.ZodString;
|
|
4892
5186
|
created_at: z.ZodString;
|
|
4893
5187
|
occurred_at: z.ZodString;
|
|
5188
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4894
5189
|
} & {
|
|
4895
5190
|
device_id: z.ZodString;
|
|
4896
5191
|
connected_account_id: z.ZodString;
|
|
@@ -4912,6 +5207,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4912
5207
|
occurred_at: string;
|
|
4913
5208
|
event_type: "thermostat.temperature_changed";
|
|
4914
5209
|
customer_key?: string | undefined;
|
|
5210
|
+
event_description?: string | undefined;
|
|
4915
5211
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4916
5212
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4917
5213
|
}, {
|
|
@@ -4925,6 +5221,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4925
5221
|
occurred_at: string;
|
|
4926
5222
|
event_type: "thermostat.temperature_changed";
|
|
4927
5223
|
customer_key?: string | undefined;
|
|
5224
|
+
event_description?: string | undefined;
|
|
4928
5225
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4929
5226
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4930
5227
|
}>, z.ZodObject<{
|
|
@@ -4932,6 +5229,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4932
5229
|
workspace_id: z.ZodString;
|
|
4933
5230
|
created_at: z.ZodString;
|
|
4934
5231
|
occurred_at: z.ZodString;
|
|
5232
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4935
5233
|
} & {
|
|
4936
5234
|
device_id: z.ZodString;
|
|
4937
5235
|
connected_account_id: z.ZodString;
|
|
@@ -4951,6 +5249,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4951
5249
|
occurred_at: string;
|
|
4952
5250
|
event_type: "device.name_changed";
|
|
4953
5251
|
customer_key?: string | undefined;
|
|
5252
|
+
event_description?: string | undefined;
|
|
4954
5253
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4955
5254
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4956
5255
|
}, {
|
|
@@ -4963,6 +5262,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4963
5262
|
occurred_at: string;
|
|
4964
5263
|
event_type: "device.name_changed";
|
|
4965
5264
|
customer_key?: string | undefined;
|
|
5265
|
+
event_description?: string | undefined;
|
|
4966
5266
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4967
5267
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4968
5268
|
}>, z.ZodObject<{
|
|
@@ -4970,6 +5270,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4970
5270
|
workspace_id: z.ZodString;
|
|
4971
5271
|
created_at: z.ZodString;
|
|
4972
5272
|
occurred_at: z.ZodString;
|
|
5273
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
4973
5274
|
} & {
|
|
4974
5275
|
device_id: z.ZodString;
|
|
4975
5276
|
connected_account_id: z.ZodString;
|
|
@@ -4993,6 +5294,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
4993
5294
|
activation_reason: "motion_detected";
|
|
4994
5295
|
image_url?: string | undefined;
|
|
4995
5296
|
customer_key?: string | undefined;
|
|
5297
|
+
event_description?: string | undefined;
|
|
4996
5298
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4997
5299
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
4998
5300
|
motion_sub_type?: "human" | "vehicle" | "package" | "other" | undefined;
|
|
@@ -5008,6 +5310,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5008
5310
|
activation_reason: "motion_detected";
|
|
5009
5311
|
image_url?: string | undefined;
|
|
5010
5312
|
customer_key?: string | undefined;
|
|
5313
|
+
event_description?: string | undefined;
|
|
5011
5314
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5012
5315
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5013
5316
|
motion_sub_type?: "human" | "vehicle" | "package" | "other" | undefined;
|
|
@@ -5017,6 +5320,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5017
5320
|
workspace_id: z.ZodString;
|
|
5018
5321
|
created_at: z.ZodString;
|
|
5019
5322
|
occurred_at: z.ZodString;
|
|
5323
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
5020
5324
|
} & {
|
|
5021
5325
|
device_id: z.ZodString;
|
|
5022
5326
|
connected_account_id: z.ZodString;
|
|
@@ -5037,6 +5341,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5037
5341
|
event_type: "device.doorbell_rang";
|
|
5038
5342
|
image_url?: string | undefined;
|
|
5039
5343
|
customer_key?: string | undefined;
|
|
5344
|
+
event_description?: string | undefined;
|
|
5040
5345
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5041
5346
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5042
5347
|
video_url?: string | undefined;
|
|
@@ -5050,6 +5355,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5050
5355
|
event_type: "device.doorbell_rang";
|
|
5051
5356
|
image_url?: string | undefined;
|
|
5052
5357
|
customer_key?: string | undefined;
|
|
5358
|
+
event_description?: string | undefined;
|
|
5053
5359
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5054
5360
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5055
5361
|
video_url?: string | undefined;
|
|
@@ -5058,6 +5364,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5058
5364
|
workspace_id: z.ZodString;
|
|
5059
5365
|
created_at: z.ZodString;
|
|
5060
5366
|
occurred_at: z.ZodString;
|
|
5367
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
5061
5368
|
} & {
|
|
5062
5369
|
enrollment_automation_id: z.ZodString;
|
|
5063
5370
|
} & {
|
|
@@ -5069,6 +5376,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5069
5376
|
event_id: string;
|
|
5070
5377
|
occurred_at: string;
|
|
5071
5378
|
event_type: "enrollment_automation.deleted";
|
|
5379
|
+
event_description?: string | undefined;
|
|
5072
5380
|
}, {
|
|
5073
5381
|
workspace_id: string;
|
|
5074
5382
|
created_at: string;
|
|
@@ -5076,11 +5384,13 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5076
5384
|
event_id: string;
|
|
5077
5385
|
occurred_at: string;
|
|
5078
5386
|
event_type: "enrollment_automation.deleted";
|
|
5387
|
+
event_description?: string | undefined;
|
|
5079
5388
|
}>, z.ZodObject<{
|
|
5080
5389
|
event_id: z.ZodString;
|
|
5081
5390
|
workspace_id: z.ZodString;
|
|
5082
5391
|
created_at: z.ZodString;
|
|
5083
5392
|
occurred_at: z.ZodString;
|
|
5393
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
5084
5394
|
} & {
|
|
5085
5395
|
device_id: z.ZodString;
|
|
5086
5396
|
device_custom_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>>;
|
|
@@ -5093,6 +5403,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5093
5403
|
event_id: string;
|
|
5094
5404
|
occurred_at: string;
|
|
5095
5405
|
event_type: "phone.deactivated";
|
|
5406
|
+
event_description?: string | undefined;
|
|
5096
5407
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5097
5408
|
}, {
|
|
5098
5409
|
device_id: string;
|
|
@@ -5101,12 +5412,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5101
5412
|
event_id: string;
|
|
5102
5413
|
occurred_at: string;
|
|
5103
5414
|
event_type: "phone.deactivated";
|
|
5415
|
+
event_description?: string | undefined;
|
|
5104
5416
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
5105
5417
|
}>, z.ZodObject<{
|
|
5106
5418
|
event_id: z.ZodString;
|
|
5107
5419
|
workspace_id: z.ZodString;
|
|
5108
5420
|
created_at: z.ZodString;
|
|
5109
5421
|
occurred_at: z.ZodString;
|
|
5422
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
5110
5423
|
} & {
|
|
5111
5424
|
space_id: z.ZodString;
|
|
5112
5425
|
} & {
|
|
@@ -5123,6 +5436,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5123
5436
|
event_type: "space.device_membership_changed";
|
|
5124
5437
|
space_id: string;
|
|
5125
5438
|
acs_entrance_ids: string[];
|
|
5439
|
+
event_description?: string | undefined;
|
|
5126
5440
|
space_key?: string | undefined;
|
|
5127
5441
|
}, {
|
|
5128
5442
|
workspace_id: string;
|
|
@@ -5133,12 +5447,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5133
5447
|
event_type: "space.device_membership_changed";
|
|
5134
5448
|
space_id: string;
|
|
5135
5449
|
acs_entrance_ids: string[];
|
|
5450
|
+
event_description?: string | undefined;
|
|
5136
5451
|
space_key?: string | undefined;
|
|
5137
5452
|
}>, z.ZodObject<{
|
|
5138
5453
|
event_id: z.ZodString;
|
|
5139
5454
|
workspace_id: z.ZodString;
|
|
5140
5455
|
created_at: z.ZodString;
|
|
5141
5456
|
occurred_at: z.ZodString;
|
|
5457
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
5142
5458
|
} & {
|
|
5143
5459
|
space_id: z.ZodString;
|
|
5144
5460
|
} & {
|
|
@@ -5155,6 +5471,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5155
5471
|
event_type: "space.created";
|
|
5156
5472
|
space_id: string;
|
|
5157
5473
|
acs_entrance_ids: string[];
|
|
5474
|
+
event_description?: string | undefined;
|
|
5158
5475
|
space_key?: string | undefined;
|
|
5159
5476
|
}, {
|
|
5160
5477
|
workspace_id: string;
|
|
@@ -5165,12 +5482,14 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5165
5482
|
event_type: "space.created";
|
|
5166
5483
|
space_id: string;
|
|
5167
5484
|
acs_entrance_ids: string[];
|
|
5485
|
+
event_description?: string | undefined;
|
|
5168
5486
|
space_key?: string | undefined;
|
|
5169
5487
|
}>, z.ZodObject<{
|
|
5170
5488
|
event_id: z.ZodString;
|
|
5171
5489
|
workspace_id: z.ZodString;
|
|
5172
5490
|
created_at: z.ZodString;
|
|
5173
5491
|
occurred_at: z.ZodString;
|
|
5492
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
5174
5493
|
} & {
|
|
5175
5494
|
space_id: z.ZodString;
|
|
5176
5495
|
} & {
|
|
@@ -5187,6 +5506,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5187
5506
|
event_type: "space.deleted";
|
|
5188
5507
|
space_id: string;
|
|
5189
5508
|
acs_entrance_ids: string[];
|
|
5509
|
+
event_description?: string | undefined;
|
|
5190
5510
|
space_key?: string | undefined;
|
|
5191
5511
|
}, {
|
|
5192
5512
|
workspace_id: string;
|
|
@@ -5197,6 +5517,7 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
5197
5517
|
event_type: "space.deleted";
|
|
5198
5518
|
space_id: string;
|
|
5199
5519
|
acs_entrance_ids: string[];
|
|
5520
|
+
event_description?: string | undefined;
|
|
5200
5521
|
space_key?: string | undefined;
|
|
5201
5522
|
}>]>;
|
|
5202
5523
|
export type SeamEvent = z.infer<typeof seam_event>;
|