@seamapi/types 1.947.0 → 1.948.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 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1177 -0
- package/dist/index.cjs +432 -1
- package/dist/index.cjs.map +1 -1
- 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 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +856 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +535 -0
- package/src/lib/seam/connect/route-types.ts +856 -0
|
@@ -4,6 +4,7 @@ export declare const access_code_created_event: z.ZodObject<{
|
|
|
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 access_code_created_event: z.ZodObject<{
|
|
|
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 access_code_created_event: z.ZodObject<{
|
|
|
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
|
}>;
|
|
@@ -41,6 +44,7 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
41
44
|
workspace_id: z.ZodString;
|
|
42
45
|
created_at: z.ZodString;
|
|
43
46
|
occurred_at: z.ZodString;
|
|
47
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
44
48
|
} & {
|
|
45
49
|
access_code_id: z.ZodString;
|
|
46
50
|
device_id: z.ZodString;
|
|
@@ -72,6 +76,7 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
72
76
|
event_id: string;
|
|
73
77
|
occurred_at: string;
|
|
74
78
|
event_type: "access_code.changed";
|
|
79
|
+
event_description?: string | undefined;
|
|
75
80
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
76
81
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
77
82
|
changed_properties?: {
|
|
@@ -89,6 +94,7 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
89
94
|
event_id: string;
|
|
90
95
|
occurred_at: string;
|
|
91
96
|
event_type: "access_code.changed";
|
|
97
|
+
event_description?: string | undefined;
|
|
92
98
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
93
99
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
94
100
|
changed_properties?: {
|
|
@@ -104,6 +110,7 @@ export declare const access_code_name_changed_event: z.ZodObject<{
|
|
|
104
110
|
workspace_id: z.ZodString;
|
|
105
111
|
created_at: z.ZodString;
|
|
106
112
|
occurred_at: z.ZodString;
|
|
113
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
107
114
|
} & {
|
|
108
115
|
access_code_id: z.ZodString;
|
|
109
116
|
device_id: z.ZodString;
|
|
@@ -143,6 +150,7 @@ export declare const access_code_name_changed_event: z.ZodObject<{
|
|
|
143
150
|
event_id: string;
|
|
144
151
|
occurred_at: string;
|
|
145
152
|
event_type: "access_code.name_changed";
|
|
153
|
+
event_description?: string | undefined;
|
|
146
154
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
147
155
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
148
156
|
}, {
|
|
@@ -161,6 +169,7 @@ export declare const access_code_name_changed_event: z.ZodObject<{
|
|
|
161
169
|
event_id: string;
|
|
162
170
|
occurred_at: string;
|
|
163
171
|
event_type: "access_code.name_changed";
|
|
172
|
+
event_description?: string | undefined;
|
|
164
173
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
165
174
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
166
175
|
}>;
|
|
@@ -170,6 +179,7 @@ export declare const access_code_code_changed_event: z.ZodObject<{
|
|
|
170
179
|
workspace_id: z.ZodString;
|
|
171
180
|
created_at: z.ZodString;
|
|
172
181
|
occurred_at: z.ZodString;
|
|
182
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
173
183
|
} & {
|
|
174
184
|
access_code_id: z.ZodString;
|
|
175
185
|
device_id: z.ZodString;
|
|
@@ -209,6 +219,7 @@ export declare const access_code_code_changed_event: z.ZodObject<{
|
|
|
209
219
|
event_id: string;
|
|
210
220
|
occurred_at: string;
|
|
211
221
|
event_type: "access_code.code_changed";
|
|
222
|
+
event_description?: string | undefined;
|
|
212
223
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
213
224
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
214
225
|
}, {
|
|
@@ -227,6 +238,7 @@ export declare const access_code_code_changed_event: z.ZodObject<{
|
|
|
227
238
|
event_id: string;
|
|
228
239
|
occurred_at: string;
|
|
229
240
|
event_type: "access_code.code_changed";
|
|
241
|
+
event_description?: string | undefined;
|
|
230
242
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
231
243
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
232
244
|
}>;
|
|
@@ -236,6 +248,7 @@ export declare const access_code_time_frame_changed_event: z.ZodObject<{
|
|
|
236
248
|
workspace_id: z.ZodString;
|
|
237
249
|
created_at: z.ZodString;
|
|
238
250
|
occurred_at: z.ZodString;
|
|
251
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
239
252
|
} & {
|
|
240
253
|
access_code_id: z.ZodString;
|
|
241
254
|
device_id: z.ZodString;
|
|
@@ -283,6 +296,7 @@ export declare const access_code_time_frame_changed_event: z.ZodObject<{
|
|
|
283
296
|
event_id: string;
|
|
284
297
|
occurred_at: string;
|
|
285
298
|
event_type: "access_code.time_frame_changed";
|
|
299
|
+
event_description?: string | undefined;
|
|
286
300
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
287
301
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
288
302
|
}, {
|
|
@@ -303,6 +317,7 @@ export declare const access_code_time_frame_changed_event: z.ZodObject<{
|
|
|
303
317
|
event_id: string;
|
|
304
318
|
occurred_at: string;
|
|
305
319
|
event_type: "access_code.time_frame_changed";
|
|
320
|
+
event_description?: string | undefined;
|
|
306
321
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
307
322
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
308
323
|
}>;
|
|
@@ -312,6 +327,7 @@ export declare const access_code_mutations_requested_event: z.ZodObject<{
|
|
|
312
327
|
workspace_id: z.ZodString;
|
|
313
328
|
created_at: z.ZodString;
|
|
314
329
|
occurred_at: z.ZodString;
|
|
330
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
315
331
|
} & {
|
|
316
332
|
access_code_id: z.ZodString;
|
|
317
333
|
device_id: z.ZodString;
|
|
@@ -347,6 +363,7 @@ export declare const access_code_mutations_requested_event: z.ZodObject<{
|
|
|
347
363
|
from?: Record<string, unknown> | undefined;
|
|
348
364
|
to?: Record<string, unknown> | undefined;
|
|
349
365
|
}[];
|
|
366
|
+
event_description?: string | undefined;
|
|
350
367
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
351
368
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
352
369
|
}, {
|
|
@@ -363,6 +380,7 @@ export declare const access_code_mutations_requested_event: z.ZodObject<{
|
|
|
363
380
|
from?: Record<string, unknown> | undefined;
|
|
364
381
|
to?: Record<string, unknown> | undefined;
|
|
365
382
|
}[];
|
|
383
|
+
event_description?: string | undefined;
|
|
366
384
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
367
385
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
368
386
|
}>;
|
|
@@ -372,6 +390,7 @@ export declare const access_code_scheduled_on_device_event: z.ZodObject<{
|
|
|
372
390
|
workspace_id: z.ZodString;
|
|
373
391
|
created_at: z.ZodString;
|
|
374
392
|
occurred_at: z.ZodString;
|
|
393
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
375
394
|
} & {
|
|
376
395
|
access_code_id: z.ZodString;
|
|
377
396
|
device_id: z.ZodString;
|
|
@@ -391,6 +410,7 @@ export declare const access_code_scheduled_on_device_event: z.ZodObject<{
|
|
|
391
410
|
event_id: string;
|
|
392
411
|
occurred_at: string;
|
|
393
412
|
event_type: "access_code.scheduled_on_device";
|
|
413
|
+
event_description?: string | undefined;
|
|
394
414
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
395
415
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
396
416
|
}, {
|
|
@@ -403,6 +423,7 @@ export declare const access_code_scheduled_on_device_event: z.ZodObject<{
|
|
|
403
423
|
event_id: string;
|
|
404
424
|
occurred_at: string;
|
|
405
425
|
event_type: "access_code.scheduled_on_device";
|
|
426
|
+
event_description?: string | undefined;
|
|
406
427
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
407
428
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
408
429
|
}>;
|
|
@@ -412,6 +433,7 @@ export declare const access_code_set_on_device_event: z.ZodObject<{
|
|
|
412
433
|
workspace_id: z.ZodString;
|
|
413
434
|
created_at: z.ZodString;
|
|
414
435
|
occurred_at: z.ZodString;
|
|
436
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
415
437
|
} & {
|
|
416
438
|
access_code_id: z.ZodString;
|
|
417
439
|
device_id: z.ZodString;
|
|
@@ -431,6 +453,7 @@ export declare const access_code_set_on_device_event: z.ZodObject<{
|
|
|
431
453
|
event_id: string;
|
|
432
454
|
occurred_at: string;
|
|
433
455
|
event_type: "access_code.set_on_device";
|
|
456
|
+
event_description?: string | undefined;
|
|
434
457
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
435
458
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
436
459
|
}, {
|
|
@@ -443,6 +466,7 @@ export declare const access_code_set_on_device_event: z.ZodObject<{
|
|
|
443
466
|
event_id: string;
|
|
444
467
|
occurred_at: string;
|
|
445
468
|
event_type: "access_code.set_on_device";
|
|
469
|
+
event_description?: string | undefined;
|
|
446
470
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
447
471
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
448
472
|
}>;
|
|
@@ -452,6 +476,7 @@ export declare const access_code_removed_from_device_event: z.ZodObject<{
|
|
|
452
476
|
workspace_id: z.ZodString;
|
|
453
477
|
created_at: z.ZodString;
|
|
454
478
|
occurred_at: z.ZodString;
|
|
479
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
455
480
|
} & {
|
|
456
481
|
access_code_id: z.ZodString;
|
|
457
482
|
device_id: z.ZodString;
|
|
@@ -469,6 +494,7 @@ export declare const access_code_removed_from_device_event: z.ZodObject<{
|
|
|
469
494
|
event_id: string;
|
|
470
495
|
occurred_at: string;
|
|
471
496
|
event_type: "access_code.removed_from_device";
|
|
497
|
+
event_description?: string | undefined;
|
|
472
498
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
473
499
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
474
500
|
}, {
|
|
@@ -480,6 +506,7 @@ export declare const access_code_removed_from_device_event: z.ZodObject<{
|
|
|
480
506
|
event_id: string;
|
|
481
507
|
occurred_at: string;
|
|
482
508
|
event_type: "access_code.removed_from_device";
|
|
509
|
+
event_description?: string | undefined;
|
|
483
510
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
484
511
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
485
512
|
}>;
|
|
@@ -489,6 +516,7 @@ export declare const access_code_delay_in_setting_on_device_event: z.ZodObject<{
|
|
|
489
516
|
workspace_id: z.ZodString;
|
|
490
517
|
created_at: z.ZodString;
|
|
491
518
|
occurred_at: z.ZodString;
|
|
519
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
492
520
|
} & {
|
|
493
521
|
access_code_id: z.ZodString;
|
|
494
522
|
device_id: z.ZodString;
|
|
@@ -615,6 +643,7 @@ export declare const access_code_delay_in_setting_on_device_event: z.ZodObject<{
|
|
|
615
643
|
created_at: string;
|
|
616
644
|
warning_code: string;
|
|
617
645
|
}[];
|
|
646
|
+
event_description?: string | undefined;
|
|
618
647
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
619
648
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
620
649
|
}, {
|
|
@@ -656,6 +685,7 @@ export declare const access_code_delay_in_setting_on_device_event: z.ZodObject<{
|
|
|
656
685
|
created_at: string;
|
|
657
686
|
warning_code: string;
|
|
658
687
|
}[];
|
|
688
|
+
event_description?: string | undefined;
|
|
659
689
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
660
690
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
661
691
|
}>;
|
|
@@ -665,6 +695,7 @@ export declare const access_code_failed_to_set_on_device_event: z.ZodObject<{
|
|
|
665
695
|
workspace_id: z.ZodString;
|
|
666
696
|
created_at: z.ZodString;
|
|
667
697
|
occurred_at: z.ZodString;
|
|
698
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
668
699
|
} & {
|
|
669
700
|
access_code_id: z.ZodString;
|
|
670
701
|
device_id: z.ZodString;
|
|
@@ -791,6 +822,7 @@ export declare const access_code_failed_to_set_on_device_event: z.ZodObject<{
|
|
|
791
822
|
created_at: string;
|
|
792
823
|
warning_code: string;
|
|
793
824
|
}[];
|
|
825
|
+
event_description?: string | undefined;
|
|
794
826
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
795
827
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
796
828
|
}, {
|
|
@@ -832,6 +864,7 @@ export declare const access_code_failed_to_set_on_device_event: z.ZodObject<{
|
|
|
832
864
|
created_at: string;
|
|
833
865
|
warning_code: string;
|
|
834
866
|
}[];
|
|
867
|
+
event_description?: string | undefined;
|
|
835
868
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
836
869
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
837
870
|
}>;
|
|
@@ -841,6 +874,7 @@ export declare const access_code_deleted_event: z.ZodObject<{
|
|
|
841
874
|
workspace_id: z.ZodString;
|
|
842
875
|
created_at: z.ZodString;
|
|
843
876
|
occurred_at: z.ZodString;
|
|
877
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
844
878
|
} & {
|
|
845
879
|
access_code_id: z.ZodString;
|
|
846
880
|
device_id: z.ZodString;
|
|
@@ -860,6 +894,7 @@ export declare const access_code_deleted_event: z.ZodObject<{
|
|
|
860
894
|
event_id: string;
|
|
861
895
|
occurred_at: string;
|
|
862
896
|
event_type: "access_code.deleted";
|
|
897
|
+
event_description?: string | undefined;
|
|
863
898
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
864
899
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
865
900
|
}, {
|
|
@@ -872,6 +907,7 @@ export declare const access_code_deleted_event: z.ZodObject<{
|
|
|
872
907
|
event_id: string;
|
|
873
908
|
occurred_at: string;
|
|
874
909
|
event_type: "access_code.deleted";
|
|
910
|
+
event_description?: string | undefined;
|
|
875
911
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
876
912
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
877
913
|
}>;
|
|
@@ -881,6 +917,7 @@ export declare const access_code_delay_in_removing_from_device_event: z.ZodObjec
|
|
|
881
917
|
workspace_id: z.ZodString;
|
|
882
918
|
created_at: z.ZodString;
|
|
883
919
|
occurred_at: z.ZodString;
|
|
920
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
884
921
|
} & {
|
|
885
922
|
access_code_id: z.ZodString;
|
|
886
923
|
device_id: z.ZodString;
|
|
@@ -1007,6 +1044,7 @@ export declare const access_code_delay_in_removing_from_device_event: z.ZodObjec
|
|
|
1007
1044
|
created_at: string;
|
|
1008
1045
|
warning_code: string;
|
|
1009
1046
|
}[];
|
|
1047
|
+
event_description?: string | undefined;
|
|
1010
1048
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1011
1049
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1012
1050
|
}, {
|
|
@@ -1048,6 +1086,7 @@ export declare const access_code_delay_in_removing_from_device_event: z.ZodObjec
|
|
|
1048
1086
|
created_at: string;
|
|
1049
1087
|
warning_code: string;
|
|
1050
1088
|
}[];
|
|
1089
|
+
event_description?: string | undefined;
|
|
1051
1090
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1052
1091
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1053
1092
|
}>;
|
|
@@ -1057,6 +1096,7 @@ export declare const access_code_failed_to_remove_from_device_event: z.ZodObject
|
|
|
1057
1096
|
workspace_id: z.ZodString;
|
|
1058
1097
|
created_at: z.ZodString;
|
|
1059
1098
|
occurred_at: z.ZodString;
|
|
1099
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1060
1100
|
} & {
|
|
1061
1101
|
access_code_id: z.ZodString;
|
|
1062
1102
|
device_id: z.ZodString;
|
|
@@ -1183,6 +1223,7 @@ export declare const access_code_failed_to_remove_from_device_event: z.ZodObject
|
|
|
1183
1223
|
created_at: string;
|
|
1184
1224
|
warning_code: string;
|
|
1185
1225
|
}[];
|
|
1226
|
+
event_description?: string | undefined;
|
|
1186
1227
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1187
1228
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1188
1229
|
}, {
|
|
@@ -1224,6 +1265,7 @@ export declare const access_code_failed_to_remove_from_device_event: z.ZodObject
|
|
|
1224
1265
|
created_at: string;
|
|
1225
1266
|
warning_code: string;
|
|
1226
1267
|
}[];
|
|
1268
|
+
event_description?: string | undefined;
|
|
1227
1269
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1228
1270
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1229
1271
|
}>;
|
|
@@ -1233,6 +1275,7 @@ export declare const access_code_modified_external_to_seam_event: z.ZodObject<{
|
|
|
1233
1275
|
workspace_id: z.ZodString;
|
|
1234
1276
|
created_at: z.ZodString;
|
|
1235
1277
|
occurred_at: z.ZodString;
|
|
1278
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1236
1279
|
} & {
|
|
1237
1280
|
access_code_id: z.ZodString;
|
|
1238
1281
|
device_id: z.ZodString;
|
|
@@ -1250,6 +1293,7 @@ export declare const access_code_modified_external_to_seam_event: z.ZodObject<{
|
|
|
1250
1293
|
event_id: string;
|
|
1251
1294
|
occurred_at: string;
|
|
1252
1295
|
event_type: "access_code.modified_external_to_seam";
|
|
1296
|
+
event_description?: string | undefined;
|
|
1253
1297
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1254
1298
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1255
1299
|
}, {
|
|
@@ -1261,6 +1305,7 @@ export declare const access_code_modified_external_to_seam_event: z.ZodObject<{
|
|
|
1261
1305
|
event_id: string;
|
|
1262
1306
|
occurred_at: string;
|
|
1263
1307
|
event_type: "access_code.modified_external_to_seam";
|
|
1308
|
+
event_description?: string | undefined;
|
|
1264
1309
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1265
1310
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1266
1311
|
}>;
|
|
@@ -1270,6 +1315,7 @@ export declare const access_code_deleted_external_to_seam_event: z.ZodObject<{
|
|
|
1270
1315
|
workspace_id: z.ZodString;
|
|
1271
1316
|
created_at: z.ZodString;
|
|
1272
1317
|
occurred_at: z.ZodString;
|
|
1318
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1273
1319
|
} & {
|
|
1274
1320
|
access_code_id: z.ZodString;
|
|
1275
1321
|
device_id: z.ZodString;
|
|
@@ -1287,6 +1333,7 @@ export declare const access_code_deleted_external_to_seam_event: z.ZodObject<{
|
|
|
1287
1333
|
event_id: string;
|
|
1288
1334
|
occurred_at: string;
|
|
1289
1335
|
event_type: "access_code.deleted_external_to_seam";
|
|
1336
|
+
event_description?: string | undefined;
|
|
1290
1337
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1291
1338
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1292
1339
|
}, {
|
|
@@ -1298,6 +1345,7 @@ export declare const access_code_deleted_external_to_seam_event: z.ZodObject<{
|
|
|
1298
1345
|
event_id: string;
|
|
1299
1346
|
occurred_at: string;
|
|
1300
1347
|
event_type: "access_code.deleted_external_to_seam";
|
|
1348
|
+
event_description?: string | undefined;
|
|
1301
1349
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1302
1350
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1303
1351
|
}>;
|
|
@@ -1307,6 +1355,7 @@ export declare const access_code_backup_access_code_pulled_event: z.ZodObject<{
|
|
|
1307
1355
|
workspace_id: z.ZodString;
|
|
1308
1356
|
created_at: z.ZodString;
|
|
1309
1357
|
occurred_at: z.ZodString;
|
|
1358
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1310
1359
|
} & {
|
|
1311
1360
|
access_code_id: z.ZodString;
|
|
1312
1361
|
device_id: z.ZodString;
|
|
@@ -1326,6 +1375,7 @@ export declare const access_code_backup_access_code_pulled_event: z.ZodObject<{
|
|
|
1326
1375
|
occurred_at: string;
|
|
1327
1376
|
event_type: "access_code.backup_access_code_pulled";
|
|
1328
1377
|
backup_access_code_id: string;
|
|
1378
|
+
event_description?: string | undefined;
|
|
1329
1379
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1330
1380
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1331
1381
|
}, {
|
|
@@ -1338,6 +1388,7 @@ export declare const access_code_backup_access_code_pulled_event: z.ZodObject<{
|
|
|
1338
1388
|
occurred_at: string;
|
|
1339
1389
|
event_type: "access_code.backup_access_code_pulled";
|
|
1340
1390
|
backup_access_code_id: string;
|
|
1391
|
+
event_description?: string | undefined;
|
|
1341
1392
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1342
1393
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1343
1394
|
}>;
|
|
@@ -1347,6 +1398,7 @@ export declare const unmanaged_access_code_converted_to_managed_event: z.ZodObje
|
|
|
1347
1398
|
workspace_id: z.ZodString;
|
|
1348
1399
|
created_at: z.ZodString;
|
|
1349
1400
|
occurred_at: z.ZodString;
|
|
1401
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1350
1402
|
} & {
|
|
1351
1403
|
access_code_id: z.ZodString;
|
|
1352
1404
|
device_id: z.ZodString;
|
|
@@ -1364,6 +1416,7 @@ export declare const unmanaged_access_code_converted_to_managed_event: z.ZodObje
|
|
|
1364
1416
|
event_id: string;
|
|
1365
1417
|
occurred_at: string;
|
|
1366
1418
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
1419
|
+
event_description?: string | undefined;
|
|
1367
1420
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1368
1421
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1369
1422
|
}, {
|
|
@@ -1375,6 +1428,7 @@ export declare const unmanaged_access_code_converted_to_managed_event: z.ZodObje
|
|
|
1375
1428
|
event_id: string;
|
|
1376
1429
|
occurred_at: string;
|
|
1377
1430
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
1431
|
+
event_description?: string | undefined;
|
|
1378
1432
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1379
1433
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1380
1434
|
}>;
|
|
@@ -1384,6 +1438,7 @@ export declare const unmanaged_access_code_failed_to_convert_to_managed_event: z
|
|
|
1384
1438
|
workspace_id: z.ZodString;
|
|
1385
1439
|
created_at: z.ZodString;
|
|
1386
1440
|
occurred_at: z.ZodString;
|
|
1441
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1387
1442
|
} & {
|
|
1388
1443
|
access_code_id: z.ZodString;
|
|
1389
1444
|
device_id: z.ZodString;
|
|
@@ -1510,6 +1565,7 @@ export declare const unmanaged_access_code_failed_to_convert_to_managed_event: z
|
|
|
1510
1565
|
created_at: string;
|
|
1511
1566
|
warning_code: string;
|
|
1512
1567
|
}[];
|
|
1568
|
+
event_description?: string | undefined;
|
|
1513
1569
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1514
1570
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1515
1571
|
}, {
|
|
@@ -1551,6 +1607,7 @@ export declare const unmanaged_access_code_failed_to_convert_to_managed_event: z
|
|
|
1551
1607
|
created_at: string;
|
|
1552
1608
|
warning_code: string;
|
|
1553
1609
|
}[];
|
|
1610
|
+
event_description?: string | undefined;
|
|
1554
1611
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1555
1612
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1556
1613
|
}>;
|
|
@@ -1560,6 +1617,7 @@ export declare const unmanaged_access_code_created_event: z.ZodObject<{
|
|
|
1560
1617
|
workspace_id: z.ZodString;
|
|
1561
1618
|
created_at: z.ZodString;
|
|
1562
1619
|
occurred_at: z.ZodString;
|
|
1620
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1563
1621
|
} & {
|
|
1564
1622
|
access_code_id: z.ZodString;
|
|
1565
1623
|
device_id: z.ZodString;
|
|
@@ -1577,6 +1635,7 @@ export declare const unmanaged_access_code_created_event: z.ZodObject<{
|
|
|
1577
1635
|
event_id: string;
|
|
1578
1636
|
occurred_at: string;
|
|
1579
1637
|
event_type: "access_code.unmanaged.created";
|
|
1638
|
+
event_description?: string | undefined;
|
|
1580
1639
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1581
1640
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1582
1641
|
}, {
|
|
@@ -1588,6 +1647,7 @@ export declare const unmanaged_access_code_created_event: z.ZodObject<{
|
|
|
1588
1647
|
event_id: string;
|
|
1589
1648
|
occurred_at: string;
|
|
1590
1649
|
event_type: "access_code.unmanaged.created";
|
|
1650
|
+
event_description?: string | undefined;
|
|
1591
1651
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1592
1652
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1593
1653
|
}>;
|
|
@@ -1597,6 +1657,7 @@ export declare const unmanaged_access_code_removed_event: z.ZodObject<{
|
|
|
1597
1657
|
workspace_id: z.ZodString;
|
|
1598
1658
|
created_at: z.ZodString;
|
|
1599
1659
|
occurred_at: z.ZodString;
|
|
1660
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1600
1661
|
} & {
|
|
1601
1662
|
access_code_id: z.ZodString;
|
|
1602
1663
|
device_id: z.ZodString;
|
|
@@ -1614,6 +1675,7 @@ export declare const unmanaged_access_code_removed_event: z.ZodObject<{
|
|
|
1614
1675
|
event_id: string;
|
|
1615
1676
|
occurred_at: string;
|
|
1616
1677
|
event_type: "access_code.unmanaged.removed";
|
|
1678
|
+
event_description?: string | undefined;
|
|
1617
1679
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1618
1680
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1619
1681
|
}, {
|
|
@@ -1625,6 +1687,7 @@ export declare const unmanaged_access_code_removed_event: z.ZodObject<{
|
|
|
1625
1687
|
event_id: string;
|
|
1626
1688
|
occurred_at: string;
|
|
1627
1689
|
event_type: "access_code.unmanaged.removed";
|
|
1690
|
+
event_description?: string | undefined;
|
|
1628
1691
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1629
1692
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1630
1693
|
}>;
|
|
@@ -1634,6 +1697,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1634
1697
|
workspace_id: z.ZodString;
|
|
1635
1698
|
created_at: z.ZodString;
|
|
1636
1699
|
occurred_at: z.ZodString;
|
|
1700
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1637
1701
|
} & {
|
|
1638
1702
|
access_code_id: z.ZodString;
|
|
1639
1703
|
device_id: z.ZodString;
|
|
@@ -1651,6 +1715,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1651
1715
|
event_id: string;
|
|
1652
1716
|
occurred_at: string;
|
|
1653
1717
|
event_type: "access_code.created";
|
|
1718
|
+
event_description?: string | undefined;
|
|
1654
1719
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1655
1720
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1656
1721
|
}, {
|
|
@@ -1662,6 +1727,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1662
1727
|
event_id: string;
|
|
1663
1728
|
occurred_at: string;
|
|
1664
1729
|
event_type: "access_code.created";
|
|
1730
|
+
event_description?: string | undefined;
|
|
1665
1731
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1666
1732
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1667
1733
|
}>, z.ZodObject<{
|
|
@@ -1669,6 +1735,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1669
1735
|
workspace_id: z.ZodString;
|
|
1670
1736
|
created_at: z.ZodString;
|
|
1671
1737
|
occurred_at: z.ZodString;
|
|
1738
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1672
1739
|
} & {
|
|
1673
1740
|
access_code_id: z.ZodString;
|
|
1674
1741
|
device_id: z.ZodString;
|
|
@@ -1700,6 +1767,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1700
1767
|
event_id: string;
|
|
1701
1768
|
occurred_at: string;
|
|
1702
1769
|
event_type: "access_code.changed";
|
|
1770
|
+
event_description?: string | undefined;
|
|
1703
1771
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1704
1772
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1705
1773
|
changed_properties?: {
|
|
@@ -1717,6 +1785,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1717
1785
|
event_id: string;
|
|
1718
1786
|
occurred_at: string;
|
|
1719
1787
|
event_type: "access_code.changed";
|
|
1788
|
+
event_description?: string | undefined;
|
|
1720
1789
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1721
1790
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1722
1791
|
changed_properties?: {
|
|
@@ -1730,6 +1799,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1730
1799
|
workspace_id: z.ZodString;
|
|
1731
1800
|
created_at: z.ZodString;
|
|
1732
1801
|
occurred_at: z.ZodString;
|
|
1802
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1733
1803
|
} & {
|
|
1734
1804
|
access_code_id: z.ZodString;
|
|
1735
1805
|
device_id: z.ZodString;
|
|
@@ -1769,6 +1839,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1769
1839
|
event_id: string;
|
|
1770
1840
|
occurred_at: string;
|
|
1771
1841
|
event_type: "access_code.name_changed";
|
|
1842
|
+
event_description?: string | undefined;
|
|
1772
1843
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1773
1844
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1774
1845
|
}, {
|
|
@@ -1787,6 +1858,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1787
1858
|
event_id: string;
|
|
1788
1859
|
occurred_at: string;
|
|
1789
1860
|
event_type: "access_code.name_changed";
|
|
1861
|
+
event_description?: string | undefined;
|
|
1790
1862
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1791
1863
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1792
1864
|
}>, z.ZodObject<{
|
|
@@ -1794,6 +1866,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1794
1866
|
workspace_id: z.ZodString;
|
|
1795
1867
|
created_at: z.ZodString;
|
|
1796
1868
|
occurred_at: z.ZodString;
|
|
1869
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1797
1870
|
} & {
|
|
1798
1871
|
access_code_id: z.ZodString;
|
|
1799
1872
|
device_id: z.ZodString;
|
|
@@ -1833,6 +1906,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1833
1906
|
event_id: string;
|
|
1834
1907
|
occurred_at: string;
|
|
1835
1908
|
event_type: "access_code.code_changed";
|
|
1909
|
+
event_description?: string | undefined;
|
|
1836
1910
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1837
1911
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1838
1912
|
}, {
|
|
@@ -1851,6 +1925,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1851
1925
|
event_id: string;
|
|
1852
1926
|
occurred_at: string;
|
|
1853
1927
|
event_type: "access_code.code_changed";
|
|
1928
|
+
event_description?: string | undefined;
|
|
1854
1929
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1855
1930
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1856
1931
|
}>, z.ZodObject<{
|
|
@@ -1858,6 +1933,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1858
1933
|
workspace_id: z.ZodString;
|
|
1859
1934
|
created_at: z.ZodString;
|
|
1860
1935
|
occurred_at: z.ZodString;
|
|
1936
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1861
1937
|
} & {
|
|
1862
1938
|
access_code_id: z.ZodString;
|
|
1863
1939
|
device_id: z.ZodString;
|
|
@@ -1905,6 +1981,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1905
1981
|
event_id: string;
|
|
1906
1982
|
occurred_at: string;
|
|
1907
1983
|
event_type: "access_code.time_frame_changed";
|
|
1984
|
+
event_description?: string | undefined;
|
|
1908
1985
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1909
1986
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1910
1987
|
}, {
|
|
@@ -1925,6 +2002,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1925
2002
|
event_id: string;
|
|
1926
2003
|
occurred_at: string;
|
|
1927
2004
|
event_type: "access_code.time_frame_changed";
|
|
2005
|
+
event_description?: string | undefined;
|
|
1928
2006
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1929
2007
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1930
2008
|
}>, z.ZodObject<{
|
|
@@ -1932,6 +2010,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1932
2010
|
workspace_id: z.ZodString;
|
|
1933
2011
|
created_at: z.ZodString;
|
|
1934
2012
|
occurred_at: z.ZodString;
|
|
2013
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1935
2014
|
} & {
|
|
1936
2015
|
access_code_id: z.ZodString;
|
|
1937
2016
|
device_id: z.ZodString;
|
|
@@ -1967,6 +2046,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1967
2046
|
from?: Record<string, unknown> | undefined;
|
|
1968
2047
|
to?: Record<string, unknown> | undefined;
|
|
1969
2048
|
}[];
|
|
2049
|
+
event_description?: string | undefined;
|
|
1970
2050
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1971
2051
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1972
2052
|
}, {
|
|
@@ -1983,6 +2063,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1983
2063
|
from?: Record<string, unknown> | undefined;
|
|
1984
2064
|
to?: Record<string, unknown> | undefined;
|
|
1985
2065
|
}[];
|
|
2066
|
+
event_description?: string | undefined;
|
|
1986
2067
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1987
2068
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
1988
2069
|
}>, z.ZodObject<{
|
|
@@ -1990,6 +2071,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
1990
2071
|
workspace_id: z.ZodString;
|
|
1991
2072
|
created_at: z.ZodString;
|
|
1992
2073
|
occurred_at: z.ZodString;
|
|
2074
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
1993
2075
|
} & {
|
|
1994
2076
|
access_code_id: z.ZodString;
|
|
1995
2077
|
device_id: z.ZodString;
|
|
@@ -2009,6 +2091,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2009
2091
|
event_id: string;
|
|
2010
2092
|
occurred_at: string;
|
|
2011
2093
|
event_type: "access_code.scheduled_on_device";
|
|
2094
|
+
event_description?: string | undefined;
|
|
2012
2095
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2013
2096
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2014
2097
|
}, {
|
|
@@ -2021,6 +2104,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2021
2104
|
event_id: string;
|
|
2022
2105
|
occurred_at: string;
|
|
2023
2106
|
event_type: "access_code.scheduled_on_device";
|
|
2107
|
+
event_description?: string | undefined;
|
|
2024
2108
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2025
2109
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2026
2110
|
}>, z.ZodObject<{
|
|
@@ -2028,6 +2112,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2028
2112
|
workspace_id: z.ZodString;
|
|
2029
2113
|
created_at: z.ZodString;
|
|
2030
2114
|
occurred_at: z.ZodString;
|
|
2115
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2031
2116
|
} & {
|
|
2032
2117
|
access_code_id: z.ZodString;
|
|
2033
2118
|
device_id: z.ZodString;
|
|
@@ -2047,6 +2132,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2047
2132
|
event_id: string;
|
|
2048
2133
|
occurred_at: string;
|
|
2049
2134
|
event_type: "access_code.set_on_device";
|
|
2135
|
+
event_description?: string | undefined;
|
|
2050
2136
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2051
2137
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2052
2138
|
}, {
|
|
@@ -2059,6 +2145,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2059
2145
|
event_id: string;
|
|
2060
2146
|
occurred_at: string;
|
|
2061
2147
|
event_type: "access_code.set_on_device";
|
|
2148
|
+
event_description?: string | undefined;
|
|
2062
2149
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2063
2150
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2064
2151
|
}>, z.ZodObject<{
|
|
@@ -2066,6 +2153,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2066
2153
|
workspace_id: z.ZodString;
|
|
2067
2154
|
created_at: z.ZodString;
|
|
2068
2155
|
occurred_at: z.ZodString;
|
|
2156
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2069
2157
|
} & {
|
|
2070
2158
|
access_code_id: z.ZodString;
|
|
2071
2159
|
device_id: z.ZodString;
|
|
@@ -2083,6 +2171,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2083
2171
|
event_id: string;
|
|
2084
2172
|
occurred_at: string;
|
|
2085
2173
|
event_type: "access_code.removed_from_device";
|
|
2174
|
+
event_description?: string | undefined;
|
|
2086
2175
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2087
2176
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2088
2177
|
}, {
|
|
@@ -2094,6 +2183,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2094
2183
|
event_id: string;
|
|
2095
2184
|
occurred_at: string;
|
|
2096
2185
|
event_type: "access_code.removed_from_device";
|
|
2186
|
+
event_description?: string | undefined;
|
|
2097
2187
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2098
2188
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2099
2189
|
}>, z.ZodObject<{
|
|
@@ -2101,6 +2191,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2101
2191
|
workspace_id: z.ZodString;
|
|
2102
2192
|
created_at: z.ZodString;
|
|
2103
2193
|
occurred_at: z.ZodString;
|
|
2194
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2104
2195
|
} & {
|
|
2105
2196
|
access_code_id: z.ZodString;
|
|
2106
2197
|
device_id: z.ZodString;
|
|
@@ -2227,6 +2318,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2227
2318
|
created_at: string;
|
|
2228
2319
|
warning_code: string;
|
|
2229
2320
|
}[];
|
|
2321
|
+
event_description?: string | undefined;
|
|
2230
2322
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2231
2323
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2232
2324
|
}, {
|
|
@@ -2268,6 +2360,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2268
2360
|
created_at: string;
|
|
2269
2361
|
warning_code: string;
|
|
2270
2362
|
}[];
|
|
2363
|
+
event_description?: string | undefined;
|
|
2271
2364
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2272
2365
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2273
2366
|
}>, z.ZodObject<{
|
|
@@ -2275,6 +2368,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2275
2368
|
workspace_id: z.ZodString;
|
|
2276
2369
|
created_at: z.ZodString;
|
|
2277
2370
|
occurred_at: z.ZodString;
|
|
2371
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2278
2372
|
} & {
|
|
2279
2373
|
access_code_id: z.ZodString;
|
|
2280
2374
|
device_id: z.ZodString;
|
|
@@ -2401,6 +2495,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2401
2495
|
created_at: string;
|
|
2402
2496
|
warning_code: string;
|
|
2403
2497
|
}[];
|
|
2498
|
+
event_description?: string | undefined;
|
|
2404
2499
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2405
2500
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2406
2501
|
}, {
|
|
@@ -2442,6 +2537,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2442
2537
|
created_at: string;
|
|
2443
2538
|
warning_code: string;
|
|
2444
2539
|
}[];
|
|
2540
|
+
event_description?: string | undefined;
|
|
2445
2541
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2446
2542
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2447
2543
|
}>, z.ZodObject<{
|
|
@@ -2449,6 +2545,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2449
2545
|
workspace_id: z.ZodString;
|
|
2450
2546
|
created_at: z.ZodString;
|
|
2451
2547
|
occurred_at: z.ZodString;
|
|
2548
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2452
2549
|
} & {
|
|
2453
2550
|
access_code_id: z.ZodString;
|
|
2454
2551
|
device_id: z.ZodString;
|
|
@@ -2468,6 +2565,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2468
2565
|
event_id: string;
|
|
2469
2566
|
occurred_at: string;
|
|
2470
2567
|
event_type: "access_code.deleted";
|
|
2568
|
+
event_description?: string | undefined;
|
|
2471
2569
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2472
2570
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2473
2571
|
}, {
|
|
@@ -2480,6 +2578,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2480
2578
|
event_id: string;
|
|
2481
2579
|
occurred_at: string;
|
|
2482
2580
|
event_type: "access_code.deleted";
|
|
2581
|
+
event_description?: string | undefined;
|
|
2483
2582
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2484
2583
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2485
2584
|
}>, z.ZodObject<{
|
|
@@ -2487,6 +2586,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2487
2586
|
workspace_id: z.ZodString;
|
|
2488
2587
|
created_at: z.ZodString;
|
|
2489
2588
|
occurred_at: z.ZodString;
|
|
2589
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2490
2590
|
} & {
|
|
2491
2591
|
access_code_id: z.ZodString;
|
|
2492
2592
|
device_id: z.ZodString;
|
|
@@ -2613,6 +2713,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2613
2713
|
created_at: string;
|
|
2614
2714
|
warning_code: string;
|
|
2615
2715
|
}[];
|
|
2716
|
+
event_description?: string | undefined;
|
|
2616
2717
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2617
2718
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2618
2719
|
}, {
|
|
@@ -2654,6 +2755,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2654
2755
|
created_at: string;
|
|
2655
2756
|
warning_code: string;
|
|
2656
2757
|
}[];
|
|
2758
|
+
event_description?: string | undefined;
|
|
2657
2759
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2658
2760
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2659
2761
|
}>, z.ZodObject<{
|
|
@@ -2661,6 +2763,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2661
2763
|
workspace_id: z.ZodString;
|
|
2662
2764
|
created_at: z.ZodString;
|
|
2663
2765
|
occurred_at: z.ZodString;
|
|
2766
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2664
2767
|
} & {
|
|
2665
2768
|
access_code_id: z.ZodString;
|
|
2666
2769
|
device_id: z.ZodString;
|
|
@@ -2787,6 +2890,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2787
2890
|
created_at: string;
|
|
2788
2891
|
warning_code: string;
|
|
2789
2892
|
}[];
|
|
2893
|
+
event_description?: string | undefined;
|
|
2790
2894
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2791
2895
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2792
2896
|
}, {
|
|
@@ -2828,6 +2932,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2828
2932
|
created_at: string;
|
|
2829
2933
|
warning_code: string;
|
|
2830
2934
|
}[];
|
|
2935
|
+
event_description?: string | undefined;
|
|
2831
2936
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2832
2937
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2833
2938
|
}>, z.ZodObject<{
|
|
@@ -2835,6 +2940,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2835
2940
|
workspace_id: z.ZodString;
|
|
2836
2941
|
created_at: z.ZodString;
|
|
2837
2942
|
occurred_at: z.ZodString;
|
|
2943
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2838
2944
|
} & {
|
|
2839
2945
|
access_code_id: z.ZodString;
|
|
2840
2946
|
device_id: z.ZodString;
|
|
@@ -2852,6 +2958,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2852
2958
|
event_id: string;
|
|
2853
2959
|
occurred_at: string;
|
|
2854
2960
|
event_type: "access_code.modified_external_to_seam";
|
|
2961
|
+
event_description?: string | undefined;
|
|
2855
2962
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2856
2963
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2857
2964
|
}, {
|
|
@@ -2863,6 +2970,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2863
2970
|
event_id: string;
|
|
2864
2971
|
occurred_at: string;
|
|
2865
2972
|
event_type: "access_code.modified_external_to_seam";
|
|
2973
|
+
event_description?: string | undefined;
|
|
2866
2974
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2867
2975
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2868
2976
|
}>, z.ZodObject<{
|
|
@@ -2870,6 +2978,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2870
2978
|
workspace_id: z.ZodString;
|
|
2871
2979
|
created_at: z.ZodString;
|
|
2872
2980
|
occurred_at: z.ZodString;
|
|
2981
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2873
2982
|
} & {
|
|
2874
2983
|
access_code_id: z.ZodString;
|
|
2875
2984
|
device_id: z.ZodString;
|
|
@@ -2887,6 +2996,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2887
2996
|
event_id: string;
|
|
2888
2997
|
occurred_at: string;
|
|
2889
2998
|
event_type: "access_code.deleted_external_to_seam";
|
|
2999
|
+
event_description?: string | undefined;
|
|
2890
3000
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2891
3001
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2892
3002
|
}, {
|
|
@@ -2898,6 +3008,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2898
3008
|
event_id: string;
|
|
2899
3009
|
occurred_at: string;
|
|
2900
3010
|
event_type: "access_code.deleted_external_to_seam";
|
|
3011
|
+
event_description?: string | undefined;
|
|
2901
3012
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2902
3013
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2903
3014
|
}>, z.ZodObject<{
|
|
@@ -2905,6 +3016,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2905
3016
|
workspace_id: z.ZodString;
|
|
2906
3017
|
created_at: z.ZodString;
|
|
2907
3018
|
occurred_at: z.ZodString;
|
|
3019
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2908
3020
|
} & {
|
|
2909
3021
|
access_code_id: z.ZodString;
|
|
2910
3022
|
device_id: z.ZodString;
|
|
@@ -2924,6 +3036,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2924
3036
|
occurred_at: string;
|
|
2925
3037
|
event_type: "access_code.backup_access_code_pulled";
|
|
2926
3038
|
backup_access_code_id: string;
|
|
3039
|
+
event_description?: string | undefined;
|
|
2927
3040
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2928
3041
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2929
3042
|
}, {
|
|
@@ -2936,6 +3049,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2936
3049
|
occurred_at: string;
|
|
2937
3050
|
event_type: "access_code.backup_access_code_pulled";
|
|
2938
3051
|
backup_access_code_id: string;
|
|
3052
|
+
event_description?: string | undefined;
|
|
2939
3053
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2940
3054
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2941
3055
|
}>, z.ZodObject<{
|
|
@@ -2943,6 +3057,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2943
3057
|
workspace_id: z.ZodString;
|
|
2944
3058
|
created_at: z.ZodString;
|
|
2945
3059
|
occurred_at: z.ZodString;
|
|
3060
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2946
3061
|
} & {
|
|
2947
3062
|
access_code_id: z.ZodString;
|
|
2948
3063
|
device_id: z.ZodString;
|
|
@@ -2960,6 +3075,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2960
3075
|
event_id: string;
|
|
2961
3076
|
occurred_at: string;
|
|
2962
3077
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
3078
|
+
event_description?: string | undefined;
|
|
2963
3079
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2964
3080
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2965
3081
|
}, {
|
|
@@ -2971,6 +3087,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2971
3087
|
event_id: string;
|
|
2972
3088
|
occurred_at: string;
|
|
2973
3089
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
3090
|
+
event_description?: string | undefined;
|
|
2974
3091
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2975
3092
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
2976
3093
|
}>, z.ZodObject<{
|
|
@@ -2978,6 +3095,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
2978
3095
|
workspace_id: z.ZodString;
|
|
2979
3096
|
created_at: z.ZodString;
|
|
2980
3097
|
occurred_at: z.ZodString;
|
|
3098
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
2981
3099
|
} & {
|
|
2982
3100
|
access_code_id: z.ZodString;
|
|
2983
3101
|
device_id: z.ZodString;
|
|
@@ -3104,6 +3222,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3104
3222
|
created_at: string;
|
|
3105
3223
|
warning_code: string;
|
|
3106
3224
|
}[];
|
|
3225
|
+
event_description?: string | undefined;
|
|
3107
3226
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3108
3227
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3109
3228
|
}, {
|
|
@@ -3145,6 +3264,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3145
3264
|
created_at: string;
|
|
3146
3265
|
warning_code: string;
|
|
3147
3266
|
}[];
|
|
3267
|
+
event_description?: string | undefined;
|
|
3148
3268
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3149
3269
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3150
3270
|
}>, z.ZodObject<{
|
|
@@ -3152,6 +3272,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3152
3272
|
workspace_id: z.ZodString;
|
|
3153
3273
|
created_at: z.ZodString;
|
|
3154
3274
|
occurred_at: z.ZodString;
|
|
3275
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3155
3276
|
} & {
|
|
3156
3277
|
access_code_id: z.ZodString;
|
|
3157
3278
|
device_id: z.ZodString;
|
|
@@ -3169,6 +3290,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3169
3290
|
event_id: string;
|
|
3170
3291
|
occurred_at: string;
|
|
3171
3292
|
event_type: "access_code.unmanaged.created";
|
|
3293
|
+
event_description?: string | undefined;
|
|
3172
3294
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3173
3295
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3174
3296
|
}, {
|
|
@@ -3180,6 +3302,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3180
3302
|
event_id: string;
|
|
3181
3303
|
occurred_at: string;
|
|
3182
3304
|
event_type: "access_code.unmanaged.created";
|
|
3305
|
+
event_description?: string | undefined;
|
|
3183
3306
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3184
3307
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3185
3308
|
}>, z.ZodObject<{
|
|
@@ -3187,6 +3310,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3187
3310
|
workspace_id: z.ZodString;
|
|
3188
3311
|
created_at: z.ZodString;
|
|
3189
3312
|
occurred_at: z.ZodString;
|
|
3313
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
3190
3314
|
} & {
|
|
3191
3315
|
access_code_id: z.ZodString;
|
|
3192
3316
|
device_id: z.ZodString;
|
|
@@ -3204,6 +3328,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3204
3328
|
event_id: string;
|
|
3205
3329
|
occurred_at: string;
|
|
3206
3330
|
event_type: "access_code.unmanaged.removed";
|
|
3331
|
+
event_description?: string | undefined;
|
|
3207
3332
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3208
3333
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3209
3334
|
}, {
|
|
@@ -3215,6 +3340,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
3215
3340
|
event_id: string;
|
|
3216
3341
|
occurred_at: string;
|
|
3217
3342
|
event_type: "access_code.unmanaged.removed";
|
|
3343
|
+
event_description?: string | undefined;
|
|
3218
3344
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3219
3345
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
3220
3346
|
}>];
|