@seamapi/types 1.358.0 → 1.360.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 +532 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2726 -1075
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +100 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +100 -0
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +14 -14
- package/lib/seam/connect/models/acs/acs-credential.d.ts +74 -74
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +8 -8
- package/lib/seam/connect/models/acs/acs-system.d.ts +72 -72
- package/lib/seam/connect/models/acs/acs-user.d.ts +104 -104
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +168 -168
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +72 -72
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +96 -96
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +634 -21
- package/lib/seam/connect/models/connected-accounts/connected-account.js +56 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +24 -24
- package/lib/seam/connect/models/devices/device.d.ts +146 -46
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +127 -27
- package/lib/seam/connect/models/events/access-codes.d.ts +68 -68
- package/lib/seam/connect/models/events/connect-webviews.d.ts +4 -4
- package/lib/seam/connect/models/events/connected-accounts.d.ts +28 -28
- package/lib/seam/connect/models/events/devices.d.ts +188 -128
- package/lib/seam/connect/models/events/devices.js +10 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +144 -115
- package/lib/seam/connect/openapi.d.ts +482 -4
- package/lib/seam/connect/openapi.js +469 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +601 -2
- package/package.json +2 -2
- package/src/lib/seam/connect/model-types.ts +0 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +77 -2
- package/src/lib/seam/connect/models/events/devices.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +502 -2
- package/src/lib/seam/connect/route-types.ts +633 -0
|
@@ -11,8 +11,8 @@ export declare const access_code_created_event: z.ZodObject<z.objectUtil.extendS
|
|
|
11
11
|
}>, {
|
|
12
12
|
event_type: z.ZodLiteral<"access_code.created">;
|
|
13
13
|
}>, "strip", z.ZodTypeAny, {
|
|
14
|
-
connected_account_id: string;
|
|
15
14
|
created_at: string;
|
|
15
|
+
connected_account_id: string;
|
|
16
16
|
device_id: string;
|
|
17
17
|
workspace_id: string;
|
|
18
18
|
access_code_id: string;
|
|
@@ -20,8 +20,8 @@ export declare const access_code_created_event: z.ZodObject<z.objectUtil.extendS
|
|
|
20
20
|
occurred_at: string;
|
|
21
21
|
event_type: "access_code.created";
|
|
22
22
|
}, {
|
|
23
|
-
connected_account_id: string;
|
|
24
23
|
created_at: string;
|
|
24
|
+
connected_account_id: string;
|
|
25
25
|
device_id: string;
|
|
26
26
|
workspace_id: string;
|
|
27
27
|
access_code_id: string;
|
|
@@ -42,8 +42,8 @@ export declare const access_code_changed_event: z.ZodObject<z.objectUtil.extendS
|
|
|
42
42
|
}>, {
|
|
43
43
|
event_type: z.ZodLiteral<"access_code.changed">;
|
|
44
44
|
}>, "strip", z.ZodTypeAny, {
|
|
45
|
-
connected_account_id: string;
|
|
46
45
|
created_at: string;
|
|
46
|
+
connected_account_id: string;
|
|
47
47
|
device_id: string;
|
|
48
48
|
workspace_id: string;
|
|
49
49
|
access_code_id: string;
|
|
@@ -51,8 +51,8 @@ export declare const access_code_changed_event: z.ZodObject<z.objectUtil.extendS
|
|
|
51
51
|
occurred_at: string;
|
|
52
52
|
event_type: "access_code.changed";
|
|
53
53
|
}, {
|
|
54
|
-
connected_account_id: string;
|
|
55
54
|
created_at: string;
|
|
55
|
+
connected_account_id: string;
|
|
56
56
|
device_id: string;
|
|
57
57
|
workspace_id: string;
|
|
58
58
|
access_code_id: string;
|
|
@@ -75,8 +75,8 @@ export declare const access_code_scheduled_on_device_event: z.ZodObject<z.object
|
|
|
75
75
|
code: z.ZodString;
|
|
76
76
|
}>, "strip", z.ZodTypeAny, {
|
|
77
77
|
code: string;
|
|
78
|
-
connected_account_id: string;
|
|
79
78
|
created_at: string;
|
|
79
|
+
connected_account_id: string;
|
|
80
80
|
device_id: string;
|
|
81
81
|
workspace_id: string;
|
|
82
82
|
access_code_id: string;
|
|
@@ -85,8 +85,8 @@ export declare const access_code_scheduled_on_device_event: z.ZodObject<z.object
|
|
|
85
85
|
event_type: "access_code.scheduled_on_device";
|
|
86
86
|
}, {
|
|
87
87
|
code: string;
|
|
88
|
-
connected_account_id: string;
|
|
89
88
|
created_at: string;
|
|
89
|
+
connected_account_id: string;
|
|
90
90
|
device_id: string;
|
|
91
91
|
workspace_id: string;
|
|
92
92
|
access_code_id: string;
|
|
@@ -109,8 +109,8 @@ export declare const access_code_set_on_device_event: z.ZodObject<z.objectUtil.e
|
|
|
109
109
|
code: z.ZodString;
|
|
110
110
|
}>, "strip", z.ZodTypeAny, {
|
|
111
111
|
code: string;
|
|
112
|
-
connected_account_id: string;
|
|
113
112
|
created_at: string;
|
|
113
|
+
connected_account_id: string;
|
|
114
114
|
device_id: string;
|
|
115
115
|
workspace_id: string;
|
|
116
116
|
access_code_id: string;
|
|
@@ -119,8 +119,8 @@ export declare const access_code_set_on_device_event: z.ZodObject<z.objectUtil.e
|
|
|
119
119
|
event_type: "access_code.set_on_device";
|
|
120
120
|
}, {
|
|
121
121
|
code: string;
|
|
122
|
-
connected_account_id: string;
|
|
123
122
|
created_at: string;
|
|
123
|
+
connected_account_id: string;
|
|
124
124
|
device_id: string;
|
|
125
125
|
workspace_id: string;
|
|
126
126
|
access_code_id: string;
|
|
@@ -141,8 +141,8 @@ export declare const access_code_removed_from_device_event: z.ZodObject<z.object
|
|
|
141
141
|
}>, {
|
|
142
142
|
event_type: z.ZodLiteral<"access_code.removed_from_device">;
|
|
143
143
|
}>, "strip", z.ZodTypeAny, {
|
|
144
|
-
connected_account_id: string;
|
|
145
144
|
created_at: string;
|
|
145
|
+
connected_account_id: string;
|
|
146
146
|
device_id: string;
|
|
147
147
|
workspace_id: string;
|
|
148
148
|
access_code_id: string;
|
|
@@ -150,8 +150,8 @@ export declare const access_code_removed_from_device_event: z.ZodObject<z.object
|
|
|
150
150
|
occurred_at: string;
|
|
151
151
|
event_type: "access_code.removed_from_device";
|
|
152
152
|
}, {
|
|
153
|
-
connected_account_id: string;
|
|
154
153
|
created_at: string;
|
|
154
|
+
connected_account_id: string;
|
|
155
155
|
device_id: string;
|
|
156
156
|
workspace_id: string;
|
|
157
157
|
access_code_id: string;
|
|
@@ -172,8 +172,8 @@ export declare const access_code_delay_in_setting_on_device_event: z.ZodObject<z
|
|
|
172
172
|
}>, {
|
|
173
173
|
event_type: z.ZodLiteral<"access_code.delay_in_setting_on_device">;
|
|
174
174
|
}>, "strip", z.ZodTypeAny, {
|
|
175
|
-
connected_account_id: string;
|
|
176
175
|
created_at: string;
|
|
176
|
+
connected_account_id: string;
|
|
177
177
|
device_id: string;
|
|
178
178
|
workspace_id: string;
|
|
179
179
|
access_code_id: string;
|
|
@@ -181,8 +181,8 @@ export declare const access_code_delay_in_setting_on_device_event: z.ZodObject<z
|
|
|
181
181
|
occurred_at: string;
|
|
182
182
|
event_type: "access_code.delay_in_setting_on_device";
|
|
183
183
|
}, {
|
|
184
|
-
connected_account_id: string;
|
|
185
184
|
created_at: string;
|
|
185
|
+
connected_account_id: string;
|
|
186
186
|
device_id: string;
|
|
187
187
|
workspace_id: string;
|
|
188
188
|
access_code_id: string;
|
|
@@ -203,8 +203,8 @@ export declare const access_code_failed_to_set_on_device_event: z.ZodObject<z.ob
|
|
|
203
203
|
}>, {
|
|
204
204
|
event_type: z.ZodLiteral<"access_code.failed_to_set_on_device">;
|
|
205
205
|
}>, "strip", z.ZodTypeAny, {
|
|
206
|
-
connected_account_id: string;
|
|
207
206
|
created_at: string;
|
|
207
|
+
connected_account_id: string;
|
|
208
208
|
device_id: string;
|
|
209
209
|
workspace_id: string;
|
|
210
210
|
access_code_id: string;
|
|
@@ -212,8 +212,8 @@ export declare const access_code_failed_to_set_on_device_event: z.ZodObject<z.ob
|
|
|
212
212
|
occurred_at: string;
|
|
213
213
|
event_type: "access_code.failed_to_set_on_device";
|
|
214
214
|
}, {
|
|
215
|
-
connected_account_id: string;
|
|
216
215
|
created_at: string;
|
|
216
|
+
connected_account_id: string;
|
|
217
217
|
device_id: string;
|
|
218
218
|
workspace_id: string;
|
|
219
219
|
access_code_id: string;
|
|
@@ -236,8 +236,8 @@ export declare const access_code_deleted_event: z.ZodObject<z.objectUtil.extendS
|
|
|
236
236
|
code: z.ZodNullable<z.ZodString>;
|
|
237
237
|
}>, "strip", z.ZodTypeAny, {
|
|
238
238
|
code: string | null;
|
|
239
|
-
connected_account_id: string;
|
|
240
239
|
created_at: string;
|
|
240
|
+
connected_account_id: string;
|
|
241
241
|
device_id: string;
|
|
242
242
|
workspace_id: string;
|
|
243
243
|
access_code_id: string;
|
|
@@ -246,8 +246,8 @@ export declare const access_code_deleted_event: z.ZodObject<z.objectUtil.extendS
|
|
|
246
246
|
event_type: "access_code.deleted";
|
|
247
247
|
}, {
|
|
248
248
|
code: string | null;
|
|
249
|
-
connected_account_id: string;
|
|
250
249
|
created_at: string;
|
|
250
|
+
connected_account_id: string;
|
|
251
251
|
device_id: string;
|
|
252
252
|
workspace_id: string;
|
|
253
253
|
access_code_id: string;
|
|
@@ -268,8 +268,8 @@ export declare const access_code_delay_in_removing_from_device_event: z.ZodObjec
|
|
|
268
268
|
}>, {
|
|
269
269
|
event_type: z.ZodLiteral<"access_code.delay_in_removing_from_device">;
|
|
270
270
|
}>, "strip", z.ZodTypeAny, {
|
|
271
|
-
connected_account_id: string;
|
|
272
271
|
created_at: string;
|
|
272
|
+
connected_account_id: string;
|
|
273
273
|
device_id: string;
|
|
274
274
|
workspace_id: string;
|
|
275
275
|
access_code_id: string;
|
|
@@ -277,8 +277,8 @@ export declare const access_code_delay_in_removing_from_device_event: z.ZodObjec
|
|
|
277
277
|
occurred_at: string;
|
|
278
278
|
event_type: "access_code.delay_in_removing_from_device";
|
|
279
279
|
}, {
|
|
280
|
-
connected_account_id: string;
|
|
281
280
|
created_at: string;
|
|
281
|
+
connected_account_id: string;
|
|
282
282
|
device_id: string;
|
|
283
283
|
workspace_id: string;
|
|
284
284
|
access_code_id: string;
|
|
@@ -299,8 +299,8 @@ export declare const access_code_failed_to_remove_from_device_event: z.ZodObject
|
|
|
299
299
|
}>, {
|
|
300
300
|
event_type: z.ZodLiteral<"access_code.failed_to_remove_from_device">;
|
|
301
301
|
}>, "strip", z.ZodTypeAny, {
|
|
302
|
-
connected_account_id: string;
|
|
303
302
|
created_at: string;
|
|
303
|
+
connected_account_id: string;
|
|
304
304
|
device_id: string;
|
|
305
305
|
workspace_id: string;
|
|
306
306
|
access_code_id: string;
|
|
@@ -308,8 +308,8 @@ export declare const access_code_failed_to_remove_from_device_event: z.ZodObject
|
|
|
308
308
|
occurred_at: string;
|
|
309
309
|
event_type: "access_code.failed_to_remove_from_device";
|
|
310
310
|
}, {
|
|
311
|
-
connected_account_id: string;
|
|
312
311
|
created_at: string;
|
|
312
|
+
connected_account_id: string;
|
|
313
313
|
device_id: string;
|
|
314
314
|
workspace_id: string;
|
|
315
315
|
access_code_id: string;
|
|
@@ -330,8 +330,8 @@ export declare const access_code_modified_external_to_seam_event: z.ZodObject<z.
|
|
|
330
330
|
}>, {
|
|
331
331
|
event_type: z.ZodLiteral<"access_code.modified_external_to_seam">;
|
|
332
332
|
}>, "strip", z.ZodTypeAny, {
|
|
333
|
-
connected_account_id: string;
|
|
334
333
|
created_at: string;
|
|
334
|
+
connected_account_id: string;
|
|
335
335
|
device_id: string;
|
|
336
336
|
workspace_id: string;
|
|
337
337
|
access_code_id: string;
|
|
@@ -339,8 +339,8 @@ export declare const access_code_modified_external_to_seam_event: z.ZodObject<z.
|
|
|
339
339
|
occurred_at: string;
|
|
340
340
|
event_type: "access_code.modified_external_to_seam";
|
|
341
341
|
}, {
|
|
342
|
-
connected_account_id: string;
|
|
343
342
|
created_at: string;
|
|
343
|
+
connected_account_id: string;
|
|
344
344
|
device_id: string;
|
|
345
345
|
workspace_id: string;
|
|
346
346
|
access_code_id: string;
|
|
@@ -361,8 +361,8 @@ export declare const access_code_deleted_external_to_seam_event: z.ZodObject<z.o
|
|
|
361
361
|
}>, {
|
|
362
362
|
event_type: z.ZodLiteral<"access_code.deleted_external_to_seam">;
|
|
363
363
|
}>, "strip", z.ZodTypeAny, {
|
|
364
|
-
connected_account_id: string;
|
|
365
364
|
created_at: string;
|
|
365
|
+
connected_account_id: string;
|
|
366
366
|
device_id: string;
|
|
367
367
|
workspace_id: string;
|
|
368
368
|
access_code_id: string;
|
|
@@ -370,8 +370,8 @@ export declare const access_code_deleted_external_to_seam_event: z.ZodObject<z.o
|
|
|
370
370
|
occurred_at: string;
|
|
371
371
|
event_type: "access_code.deleted_external_to_seam";
|
|
372
372
|
}, {
|
|
373
|
-
connected_account_id: string;
|
|
374
373
|
created_at: string;
|
|
374
|
+
connected_account_id: string;
|
|
375
375
|
device_id: string;
|
|
376
376
|
workspace_id: string;
|
|
377
377
|
access_code_id: string;
|
|
@@ -393,8 +393,8 @@ export declare const access_code_backup_access_code_pulled_event: z.ZodObject<z.
|
|
|
393
393
|
event_type: z.ZodLiteral<"access_code.backup_access_code_pulled">;
|
|
394
394
|
backup_access_code_id: z.ZodString;
|
|
395
395
|
}>, "strip", z.ZodTypeAny, {
|
|
396
|
-
connected_account_id: string;
|
|
397
396
|
created_at: string;
|
|
397
|
+
connected_account_id: string;
|
|
398
398
|
device_id: string;
|
|
399
399
|
workspace_id: string;
|
|
400
400
|
access_code_id: string;
|
|
@@ -403,8 +403,8 @@ export declare const access_code_backup_access_code_pulled_event: z.ZodObject<z.
|
|
|
403
403
|
event_type: "access_code.backup_access_code_pulled";
|
|
404
404
|
backup_access_code_id: string;
|
|
405
405
|
}, {
|
|
406
|
-
connected_account_id: string;
|
|
407
406
|
created_at: string;
|
|
407
|
+
connected_account_id: string;
|
|
408
408
|
device_id: string;
|
|
409
409
|
workspace_id: string;
|
|
410
410
|
access_code_id: string;
|
|
@@ -426,8 +426,8 @@ export declare const unmanaged_access_code_converted_to_managed_event: z.ZodObje
|
|
|
426
426
|
}>, {
|
|
427
427
|
event_type: z.ZodLiteral<"access_code.unmanaged.converted_to_managed">;
|
|
428
428
|
}>, "strip", z.ZodTypeAny, {
|
|
429
|
-
connected_account_id: string;
|
|
430
429
|
created_at: string;
|
|
430
|
+
connected_account_id: string;
|
|
431
431
|
device_id: string;
|
|
432
432
|
workspace_id: string;
|
|
433
433
|
access_code_id: string;
|
|
@@ -435,8 +435,8 @@ export declare const unmanaged_access_code_converted_to_managed_event: z.ZodObje
|
|
|
435
435
|
occurred_at: string;
|
|
436
436
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
437
437
|
}, {
|
|
438
|
-
connected_account_id: string;
|
|
439
438
|
created_at: string;
|
|
439
|
+
connected_account_id: string;
|
|
440
440
|
device_id: string;
|
|
441
441
|
workspace_id: string;
|
|
442
442
|
access_code_id: string;
|
|
@@ -457,8 +457,8 @@ export declare const unmanaged_access_code_failed_to_convert_to_managed_event: z
|
|
|
457
457
|
}>, {
|
|
458
458
|
event_type: z.ZodLiteral<"access_code.unmanaged.failed_to_convert_to_managed">;
|
|
459
459
|
}>, "strip", z.ZodTypeAny, {
|
|
460
|
-
connected_account_id: string;
|
|
461
460
|
created_at: string;
|
|
461
|
+
connected_account_id: string;
|
|
462
462
|
device_id: string;
|
|
463
463
|
workspace_id: string;
|
|
464
464
|
access_code_id: string;
|
|
@@ -466,8 +466,8 @@ export declare const unmanaged_access_code_failed_to_convert_to_managed_event: z
|
|
|
466
466
|
occurred_at: string;
|
|
467
467
|
event_type: "access_code.unmanaged.failed_to_convert_to_managed";
|
|
468
468
|
}, {
|
|
469
|
-
connected_account_id: string;
|
|
470
469
|
created_at: string;
|
|
470
|
+
connected_account_id: string;
|
|
471
471
|
device_id: string;
|
|
472
472
|
workspace_id: string;
|
|
473
473
|
access_code_id: string;
|
|
@@ -488,8 +488,8 @@ export declare const unmanaged_access_code_created_event: z.ZodObject<z.objectUt
|
|
|
488
488
|
}>, {
|
|
489
489
|
event_type: z.ZodLiteral<"access_code.unmanaged.created">;
|
|
490
490
|
}>, "strip", z.ZodTypeAny, {
|
|
491
|
-
connected_account_id: string;
|
|
492
491
|
created_at: string;
|
|
492
|
+
connected_account_id: string;
|
|
493
493
|
device_id: string;
|
|
494
494
|
workspace_id: string;
|
|
495
495
|
access_code_id: string;
|
|
@@ -497,8 +497,8 @@ export declare const unmanaged_access_code_created_event: z.ZodObject<z.objectUt
|
|
|
497
497
|
occurred_at: string;
|
|
498
498
|
event_type: "access_code.unmanaged.created";
|
|
499
499
|
}, {
|
|
500
|
-
connected_account_id: string;
|
|
501
500
|
created_at: string;
|
|
501
|
+
connected_account_id: string;
|
|
502
502
|
device_id: string;
|
|
503
503
|
workspace_id: string;
|
|
504
504
|
access_code_id: string;
|
|
@@ -519,8 +519,8 @@ export declare const unmanaged_access_code_removed_event: z.ZodObject<z.objectUt
|
|
|
519
519
|
}>, {
|
|
520
520
|
event_type: z.ZodLiteral<"access_code.unmanaged.removed">;
|
|
521
521
|
}>, "strip", z.ZodTypeAny, {
|
|
522
|
-
connected_account_id: string;
|
|
523
522
|
created_at: string;
|
|
523
|
+
connected_account_id: string;
|
|
524
524
|
device_id: string;
|
|
525
525
|
workspace_id: string;
|
|
526
526
|
access_code_id: string;
|
|
@@ -528,8 +528,8 @@ export declare const unmanaged_access_code_removed_event: z.ZodObject<z.objectUt
|
|
|
528
528
|
occurred_at: string;
|
|
529
529
|
event_type: "access_code.unmanaged.removed";
|
|
530
530
|
}, {
|
|
531
|
-
connected_account_id: string;
|
|
532
531
|
created_at: string;
|
|
532
|
+
connected_account_id: string;
|
|
533
533
|
device_id: string;
|
|
534
534
|
workspace_id: string;
|
|
535
535
|
access_code_id: string;
|
|
@@ -550,8 +550,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
550
550
|
}>, {
|
|
551
551
|
event_type: z.ZodLiteral<"access_code.created">;
|
|
552
552
|
}>, "strip", z.ZodTypeAny, {
|
|
553
|
-
connected_account_id: string;
|
|
554
553
|
created_at: string;
|
|
554
|
+
connected_account_id: string;
|
|
555
555
|
device_id: string;
|
|
556
556
|
workspace_id: string;
|
|
557
557
|
access_code_id: string;
|
|
@@ -559,8 +559,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
559
559
|
occurred_at: string;
|
|
560
560
|
event_type: "access_code.created";
|
|
561
561
|
}, {
|
|
562
|
-
connected_account_id: string;
|
|
563
562
|
created_at: string;
|
|
563
|
+
connected_account_id: string;
|
|
564
564
|
device_id: string;
|
|
565
565
|
workspace_id: string;
|
|
566
566
|
access_code_id: string;
|
|
@@ -579,8 +579,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
579
579
|
}>, {
|
|
580
580
|
event_type: z.ZodLiteral<"access_code.changed">;
|
|
581
581
|
}>, "strip", z.ZodTypeAny, {
|
|
582
|
-
connected_account_id: string;
|
|
583
582
|
created_at: string;
|
|
583
|
+
connected_account_id: string;
|
|
584
584
|
device_id: string;
|
|
585
585
|
workspace_id: string;
|
|
586
586
|
access_code_id: string;
|
|
@@ -588,8 +588,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
588
588
|
occurred_at: string;
|
|
589
589
|
event_type: "access_code.changed";
|
|
590
590
|
}, {
|
|
591
|
-
connected_account_id: string;
|
|
592
591
|
created_at: string;
|
|
592
|
+
connected_account_id: string;
|
|
593
593
|
device_id: string;
|
|
594
594
|
workspace_id: string;
|
|
595
595
|
access_code_id: string;
|
|
@@ -610,8 +610,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
610
610
|
code: z.ZodString;
|
|
611
611
|
}>, "strip", z.ZodTypeAny, {
|
|
612
612
|
code: string;
|
|
613
|
-
connected_account_id: string;
|
|
614
613
|
created_at: string;
|
|
614
|
+
connected_account_id: string;
|
|
615
615
|
device_id: string;
|
|
616
616
|
workspace_id: string;
|
|
617
617
|
access_code_id: string;
|
|
@@ -620,8 +620,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
620
620
|
event_type: "access_code.scheduled_on_device";
|
|
621
621
|
}, {
|
|
622
622
|
code: string;
|
|
623
|
-
connected_account_id: string;
|
|
624
623
|
created_at: string;
|
|
624
|
+
connected_account_id: string;
|
|
625
625
|
device_id: string;
|
|
626
626
|
workspace_id: string;
|
|
627
627
|
access_code_id: string;
|
|
@@ -642,8 +642,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
642
642
|
code: z.ZodString;
|
|
643
643
|
}>, "strip", z.ZodTypeAny, {
|
|
644
644
|
code: string;
|
|
645
|
-
connected_account_id: string;
|
|
646
645
|
created_at: string;
|
|
646
|
+
connected_account_id: string;
|
|
647
647
|
device_id: string;
|
|
648
648
|
workspace_id: string;
|
|
649
649
|
access_code_id: string;
|
|
@@ -652,8 +652,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
652
652
|
event_type: "access_code.set_on_device";
|
|
653
653
|
}, {
|
|
654
654
|
code: string;
|
|
655
|
-
connected_account_id: string;
|
|
656
655
|
created_at: string;
|
|
656
|
+
connected_account_id: string;
|
|
657
657
|
device_id: string;
|
|
658
658
|
workspace_id: string;
|
|
659
659
|
access_code_id: string;
|
|
@@ -672,8 +672,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
672
672
|
}>, {
|
|
673
673
|
event_type: z.ZodLiteral<"access_code.removed_from_device">;
|
|
674
674
|
}>, "strip", z.ZodTypeAny, {
|
|
675
|
-
connected_account_id: string;
|
|
676
675
|
created_at: string;
|
|
676
|
+
connected_account_id: string;
|
|
677
677
|
device_id: string;
|
|
678
678
|
workspace_id: string;
|
|
679
679
|
access_code_id: string;
|
|
@@ -681,8 +681,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
681
681
|
occurred_at: string;
|
|
682
682
|
event_type: "access_code.removed_from_device";
|
|
683
683
|
}, {
|
|
684
|
-
connected_account_id: string;
|
|
685
684
|
created_at: string;
|
|
685
|
+
connected_account_id: string;
|
|
686
686
|
device_id: string;
|
|
687
687
|
workspace_id: string;
|
|
688
688
|
access_code_id: string;
|
|
@@ -701,8 +701,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
701
701
|
}>, {
|
|
702
702
|
event_type: z.ZodLiteral<"access_code.delay_in_setting_on_device">;
|
|
703
703
|
}>, "strip", z.ZodTypeAny, {
|
|
704
|
-
connected_account_id: string;
|
|
705
704
|
created_at: string;
|
|
705
|
+
connected_account_id: string;
|
|
706
706
|
device_id: string;
|
|
707
707
|
workspace_id: string;
|
|
708
708
|
access_code_id: string;
|
|
@@ -710,8 +710,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
710
710
|
occurred_at: string;
|
|
711
711
|
event_type: "access_code.delay_in_setting_on_device";
|
|
712
712
|
}, {
|
|
713
|
-
connected_account_id: string;
|
|
714
713
|
created_at: string;
|
|
714
|
+
connected_account_id: string;
|
|
715
715
|
device_id: string;
|
|
716
716
|
workspace_id: string;
|
|
717
717
|
access_code_id: string;
|
|
@@ -730,8 +730,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
730
730
|
}>, {
|
|
731
731
|
event_type: z.ZodLiteral<"access_code.failed_to_set_on_device">;
|
|
732
732
|
}>, "strip", z.ZodTypeAny, {
|
|
733
|
-
connected_account_id: string;
|
|
734
733
|
created_at: string;
|
|
734
|
+
connected_account_id: string;
|
|
735
735
|
device_id: string;
|
|
736
736
|
workspace_id: string;
|
|
737
737
|
access_code_id: string;
|
|
@@ -739,8 +739,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
739
739
|
occurred_at: string;
|
|
740
740
|
event_type: "access_code.failed_to_set_on_device";
|
|
741
741
|
}, {
|
|
742
|
-
connected_account_id: string;
|
|
743
742
|
created_at: string;
|
|
743
|
+
connected_account_id: string;
|
|
744
744
|
device_id: string;
|
|
745
745
|
workspace_id: string;
|
|
746
746
|
access_code_id: string;
|
|
@@ -761,8 +761,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
761
761
|
code: z.ZodNullable<z.ZodString>;
|
|
762
762
|
}>, "strip", z.ZodTypeAny, {
|
|
763
763
|
code: string | null;
|
|
764
|
-
connected_account_id: string;
|
|
765
764
|
created_at: string;
|
|
765
|
+
connected_account_id: string;
|
|
766
766
|
device_id: string;
|
|
767
767
|
workspace_id: string;
|
|
768
768
|
access_code_id: string;
|
|
@@ -771,8 +771,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
771
771
|
event_type: "access_code.deleted";
|
|
772
772
|
}, {
|
|
773
773
|
code: string | null;
|
|
774
|
-
connected_account_id: string;
|
|
775
774
|
created_at: string;
|
|
775
|
+
connected_account_id: string;
|
|
776
776
|
device_id: string;
|
|
777
777
|
workspace_id: string;
|
|
778
778
|
access_code_id: string;
|
|
@@ -791,8 +791,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
791
791
|
}>, {
|
|
792
792
|
event_type: z.ZodLiteral<"access_code.delay_in_removing_from_device">;
|
|
793
793
|
}>, "strip", z.ZodTypeAny, {
|
|
794
|
-
connected_account_id: string;
|
|
795
794
|
created_at: string;
|
|
795
|
+
connected_account_id: string;
|
|
796
796
|
device_id: string;
|
|
797
797
|
workspace_id: string;
|
|
798
798
|
access_code_id: string;
|
|
@@ -800,8 +800,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
800
800
|
occurred_at: string;
|
|
801
801
|
event_type: "access_code.delay_in_removing_from_device";
|
|
802
802
|
}, {
|
|
803
|
-
connected_account_id: string;
|
|
804
803
|
created_at: string;
|
|
804
|
+
connected_account_id: string;
|
|
805
805
|
device_id: string;
|
|
806
806
|
workspace_id: string;
|
|
807
807
|
access_code_id: string;
|
|
@@ -820,8 +820,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
820
820
|
}>, {
|
|
821
821
|
event_type: z.ZodLiteral<"access_code.failed_to_remove_from_device">;
|
|
822
822
|
}>, "strip", z.ZodTypeAny, {
|
|
823
|
-
connected_account_id: string;
|
|
824
823
|
created_at: string;
|
|
824
|
+
connected_account_id: string;
|
|
825
825
|
device_id: string;
|
|
826
826
|
workspace_id: string;
|
|
827
827
|
access_code_id: string;
|
|
@@ -829,8 +829,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
829
829
|
occurred_at: string;
|
|
830
830
|
event_type: "access_code.failed_to_remove_from_device";
|
|
831
831
|
}, {
|
|
832
|
-
connected_account_id: string;
|
|
833
832
|
created_at: string;
|
|
833
|
+
connected_account_id: string;
|
|
834
834
|
device_id: string;
|
|
835
835
|
workspace_id: string;
|
|
836
836
|
access_code_id: string;
|
|
@@ -849,8 +849,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
849
849
|
}>, {
|
|
850
850
|
event_type: z.ZodLiteral<"access_code.modified_external_to_seam">;
|
|
851
851
|
}>, "strip", z.ZodTypeAny, {
|
|
852
|
-
connected_account_id: string;
|
|
853
852
|
created_at: string;
|
|
853
|
+
connected_account_id: string;
|
|
854
854
|
device_id: string;
|
|
855
855
|
workspace_id: string;
|
|
856
856
|
access_code_id: string;
|
|
@@ -858,8 +858,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
858
858
|
occurred_at: string;
|
|
859
859
|
event_type: "access_code.modified_external_to_seam";
|
|
860
860
|
}, {
|
|
861
|
-
connected_account_id: string;
|
|
862
861
|
created_at: string;
|
|
862
|
+
connected_account_id: string;
|
|
863
863
|
device_id: string;
|
|
864
864
|
workspace_id: string;
|
|
865
865
|
access_code_id: string;
|
|
@@ -878,8 +878,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
878
878
|
}>, {
|
|
879
879
|
event_type: z.ZodLiteral<"access_code.deleted_external_to_seam">;
|
|
880
880
|
}>, "strip", z.ZodTypeAny, {
|
|
881
|
-
connected_account_id: string;
|
|
882
881
|
created_at: string;
|
|
882
|
+
connected_account_id: string;
|
|
883
883
|
device_id: string;
|
|
884
884
|
workspace_id: string;
|
|
885
885
|
access_code_id: string;
|
|
@@ -887,8 +887,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
887
887
|
occurred_at: string;
|
|
888
888
|
event_type: "access_code.deleted_external_to_seam";
|
|
889
889
|
}, {
|
|
890
|
-
connected_account_id: string;
|
|
891
890
|
created_at: string;
|
|
891
|
+
connected_account_id: string;
|
|
892
892
|
device_id: string;
|
|
893
893
|
workspace_id: string;
|
|
894
894
|
access_code_id: string;
|
|
@@ -908,8 +908,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
908
908
|
event_type: z.ZodLiteral<"access_code.backup_access_code_pulled">;
|
|
909
909
|
backup_access_code_id: z.ZodString;
|
|
910
910
|
}>, "strip", z.ZodTypeAny, {
|
|
911
|
-
connected_account_id: string;
|
|
912
911
|
created_at: string;
|
|
912
|
+
connected_account_id: string;
|
|
913
913
|
device_id: string;
|
|
914
914
|
workspace_id: string;
|
|
915
915
|
access_code_id: string;
|
|
@@ -918,8 +918,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
918
918
|
event_type: "access_code.backup_access_code_pulled";
|
|
919
919
|
backup_access_code_id: string;
|
|
920
920
|
}, {
|
|
921
|
-
connected_account_id: string;
|
|
922
921
|
created_at: string;
|
|
922
|
+
connected_account_id: string;
|
|
923
923
|
device_id: string;
|
|
924
924
|
workspace_id: string;
|
|
925
925
|
access_code_id: string;
|
|
@@ -939,8 +939,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
939
939
|
}>, {
|
|
940
940
|
event_type: z.ZodLiteral<"access_code.unmanaged.converted_to_managed">;
|
|
941
941
|
}>, "strip", z.ZodTypeAny, {
|
|
942
|
-
connected_account_id: string;
|
|
943
942
|
created_at: string;
|
|
943
|
+
connected_account_id: string;
|
|
944
944
|
device_id: string;
|
|
945
945
|
workspace_id: string;
|
|
946
946
|
access_code_id: string;
|
|
@@ -948,8 +948,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
948
948
|
occurred_at: string;
|
|
949
949
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
950
950
|
}, {
|
|
951
|
-
connected_account_id: string;
|
|
952
951
|
created_at: string;
|
|
952
|
+
connected_account_id: string;
|
|
953
953
|
device_id: string;
|
|
954
954
|
workspace_id: string;
|
|
955
955
|
access_code_id: string;
|
|
@@ -968,8 +968,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
968
968
|
}>, {
|
|
969
969
|
event_type: z.ZodLiteral<"access_code.unmanaged.failed_to_convert_to_managed">;
|
|
970
970
|
}>, "strip", z.ZodTypeAny, {
|
|
971
|
-
connected_account_id: string;
|
|
972
971
|
created_at: string;
|
|
972
|
+
connected_account_id: string;
|
|
973
973
|
device_id: string;
|
|
974
974
|
workspace_id: string;
|
|
975
975
|
access_code_id: string;
|
|
@@ -977,8 +977,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
977
977
|
occurred_at: string;
|
|
978
978
|
event_type: "access_code.unmanaged.failed_to_convert_to_managed";
|
|
979
979
|
}, {
|
|
980
|
-
connected_account_id: string;
|
|
981
980
|
created_at: string;
|
|
981
|
+
connected_account_id: string;
|
|
982
982
|
device_id: string;
|
|
983
983
|
workspace_id: string;
|
|
984
984
|
access_code_id: string;
|
|
@@ -997,8 +997,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
997
997
|
}>, {
|
|
998
998
|
event_type: z.ZodLiteral<"access_code.unmanaged.created">;
|
|
999
999
|
}>, "strip", z.ZodTypeAny, {
|
|
1000
|
-
connected_account_id: string;
|
|
1001
1000
|
created_at: string;
|
|
1001
|
+
connected_account_id: string;
|
|
1002
1002
|
device_id: string;
|
|
1003
1003
|
workspace_id: string;
|
|
1004
1004
|
access_code_id: string;
|
|
@@ -1006,8 +1006,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
1006
1006
|
occurred_at: string;
|
|
1007
1007
|
event_type: "access_code.unmanaged.created";
|
|
1008
1008
|
}, {
|
|
1009
|
-
connected_account_id: string;
|
|
1010
1009
|
created_at: string;
|
|
1010
|
+
connected_account_id: string;
|
|
1011
1011
|
device_id: string;
|
|
1012
1012
|
workspace_id: string;
|
|
1013
1013
|
access_code_id: string;
|
|
@@ -1026,8 +1026,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
1026
1026
|
}>, {
|
|
1027
1027
|
event_type: z.ZodLiteral<"access_code.unmanaged.removed">;
|
|
1028
1028
|
}>, "strip", z.ZodTypeAny, {
|
|
1029
|
-
connected_account_id: string;
|
|
1030
1029
|
created_at: string;
|
|
1030
|
+
connected_account_id: string;
|
|
1031
1031
|
device_id: string;
|
|
1032
1032
|
workspace_id: string;
|
|
1033
1033
|
access_code_id: string;
|
|
@@ -1035,8 +1035,8 @@ export declare const access_code_events: readonly [z.ZodObject<z.objectUtil.exte
|
|
|
1035
1035
|
occurred_at: string;
|
|
1036
1036
|
event_type: "access_code.unmanaged.removed";
|
|
1037
1037
|
}, {
|
|
1038
|
-
connected_account_id: string;
|
|
1039
1038
|
created_at: string;
|
|
1039
|
+
connected_account_id: string;
|
|
1040
1040
|
device_id: string;
|
|
1041
1041
|
workspace_id: string;
|
|
1042
1042
|
access_code_id: string;
|
|
@@ -10,16 +10,16 @@ export declare const connect_webview_login_succeeded_event: z.ZodObject<z.object
|
|
|
10
10
|
event_type: z.ZodLiteral<"connect_webview.login_succeeded">;
|
|
11
11
|
connected_account_id: z.ZodString;
|
|
12
12
|
}>, "strip", z.ZodTypeAny, {
|
|
13
|
-
connected_account_id: string;
|
|
14
13
|
created_at: string;
|
|
14
|
+
connected_account_id: string;
|
|
15
15
|
workspace_id: string;
|
|
16
16
|
connect_webview_id: string;
|
|
17
17
|
event_id: string;
|
|
18
18
|
occurred_at: string;
|
|
19
19
|
event_type: "connect_webview.login_succeeded";
|
|
20
20
|
}, {
|
|
21
|
-
connected_account_id: string;
|
|
22
21
|
created_at: string;
|
|
22
|
+
connected_account_id: string;
|
|
23
23
|
workspace_id: string;
|
|
24
24
|
connect_webview_id: string;
|
|
25
25
|
event_id: string;
|
|
@@ -63,16 +63,16 @@ export declare const connect_webview_events: readonly [z.ZodObject<z.objectUtil.
|
|
|
63
63
|
event_type: z.ZodLiteral<"connect_webview.login_succeeded">;
|
|
64
64
|
connected_account_id: z.ZodString;
|
|
65
65
|
}>, "strip", z.ZodTypeAny, {
|
|
66
|
-
connected_account_id: string;
|
|
67
66
|
created_at: string;
|
|
67
|
+
connected_account_id: string;
|
|
68
68
|
workspace_id: string;
|
|
69
69
|
connect_webview_id: string;
|
|
70
70
|
event_id: string;
|
|
71
71
|
occurred_at: string;
|
|
72
72
|
event_type: "connect_webview.login_succeeded";
|
|
73
73
|
}, {
|
|
74
|
-
connected_account_id: string;
|
|
75
74
|
created_at: string;
|
|
75
|
+
connected_account_id: string;
|
|
76
76
|
workspace_id: string;
|
|
77
77
|
connect_webview_id: string;
|
|
78
78
|
event_id: string;
|