@seamapi/types 1.194.0 → 1.196.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 +147 -48
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +280 -8
- package/lib/seam/connect/models/acs/acs-system.js +84 -29
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/events/access-codes.d.ts +102 -0
- package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
- package/lib/seam/connect/models/events/acs/credentials.d.ts +6 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +9 -0
- package/lib/seam/connect/models/events/acs/systems.d.ts +6 -0
- package/lib/seam/connect/models/events/acs/users.d.ts +6 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +6 -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 +6 -0
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connected-accounts.d.ts +42 -0
- package/lib/seam/connect/models/events/devices.d.ts +150 -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 +165 -0
- package/lib/seam/connect/openapi.d.ts +22 -0
- package/lib/seam/connect/openapi.js +79 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +93 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +105 -26
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +98 -18
- package/src/lib/seam/connect/route-types.ts +93 -8
|
@@ -5,6 +5,7 @@ export declare const access_code_created_event: z.ZodObject<{
|
|
|
5
5
|
created_at: z.ZodString;
|
|
6
6
|
workspace_id: z.ZodString;
|
|
7
7
|
connected_account_id: z.ZodString;
|
|
8
|
+
event_id: z.ZodString;
|
|
8
9
|
occurred_at: z.ZodString;
|
|
9
10
|
event_type: z.ZodLiteral<"access_code.created">;
|
|
10
11
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13,6 +14,7 @@ export declare const access_code_created_event: z.ZodObject<{
|
|
|
13
14
|
created_at: string;
|
|
14
15
|
workspace_id: string;
|
|
15
16
|
connected_account_id: string;
|
|
17
|
+
event_id: string;
|
|
16
18
|
occurred_at: string;
|
|
17
19
|
event_type: "access_code.created";
|
|
18
20
|
}, {
|
|
@@ -21,6 +23,7 @@ export declare const access_code_created_event: z.ZodObject<{
|
|
|
21
23
|
created_at: string;
|
|
22
24
|
workspace_id: string;
|
|
23
25
|
connected_account_id: string;
|
|
26
|
+
event_id: string;
|
|
24
27
|
occurred_at: string;
|
|
25
28
|
event_type: "access_code.created";
|
|
26
29
|
}>;
|
|
@@ -31,6 +34,7 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
31
34
|
created_at: z.ZodString;
|
|
32
35
|
workspace_id: z.ZodString;
|
|
33
36
|
connected_account_id: z.ZodString;
|
|
37
|
+
event_id: z.ZodString;
|
|
34
38
|
occurred_at: z.ZodString;
|
|
35
39
|
event_type: z.ZodLiteral<"access_code.changed">;
|
|
36
40
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39,6 +43,7 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
39
43
|
created_at: string;
|
|
40
44
|
workspace_id: string;
|
|
41
45
|
connected_account_id: string;
|
|
46
|
+
event_id: string;
|
|
42
47
|
occurred_at: string;
|
|
43
48
|
event_type: "access_code.changed";
|
|
44
49
|
}, {
|
|
@@ -47,6 +52,7 @@ export declare const access_code_changed_event: z.ZodObject<{
|
|
|
47
52
|
created_at: string;
|
|
48
53
|
workspace_id: string;
|
|
49
54
|
connected_account_id: string;
|
|
55
|
+
event_id: string;
|
|
50
56
|
occurred_at: string;
|
|
51
57
|
event_type: "access_code.changed";
|
|
52
58
|
}>;
|
|
@@ -57,6 +63,7 @@ export declare const access_code_scheduled_on_device_event: z.ZodObject<{
|
|
|
57
63
|
created_at: z.ZodString;
|
|
58
64
|
workspace_id: z.ZodString;
|
|
59
65
|
connected_account_id: z.ZodString;
|
|
66
|
+
event_id: z.ZodString;
|
|
60
67
|
occurred_at: z.ZodString;
|
|
61
68
|
event_type: z.ZodLiteral<"access_code.scheduled_on_device">;
|
|
62
69
|
code: z.ZodString;
|
|
@@ -67,6 +74,7 @@ export declare const access_code_scheduled_on_device_event: z.ZodObject<{
|
|
|
67
74
|
created_at: string;
|
|
68
75
|
workspace_id: string;
|
|
69
76
|
connected_account_id: string;
|
|
77
|
+
event_id: string;
|
|
70
78
|
occurred_at: string;
|
|
71
79
|
event_type: "access_code.scheduled_on_device";
|
|
72
80
|
}, {
|
|
@@ -76,6 +84,7 @@ export declare const access_code_scheduled_on_device_event: z.ZodObject<{
|
|
|
76
84
|
created_at: string;
|
|
77
85
|
workspace_id: string;
|
|
78
86
|
connected_account_id: string;
|
|
87
|
+
event_id: string;
|
|
79
88
|
occurred_at: string;
|
|
80
89
|
event_type: "access_code.scheduled_on_device";
|
|
81
90
|
}>;
|
|
@@ -86,6 +95,7 @@ export declare const access_code_set_on_device_event: z.ZodObject<{
|
|
|
86
95
|
created_at: z.ZodString;
|
|
87
96
|
workspace_id: z.ZodString;
|
|
88
97
|
connected_account_id: z.ZodString;
|
|
98
|
+
event_id: z.ZodString;
|
|
89
99
|
occurred_at: z.ZodString;
|
|
90
100
|
event_type: z.ZodLiteral<"access_code.set_on_device">;
|
|
91
101
|
code: z.ZodString;
|
|
@@ -96,6 +106,7 @@ export declare const access_code_set_on_device_event: z.ZodObject<{
|
|
|
96
106
|
created_at: string;
|
|
97
107
|
workspace_id: string;
|
|
98
108
|
connected_account_id: string;
|
|
109
|
+
event_id: string;
|
|
99
110
|
occurred_at: string;
|
|
100
111
|
event_type: "access_code.set_on_device";
|
|
101
112
|
}, {
|
|
@@ -105,6 +116,7 @@ export declare const access_code_set_on_device_event: z.ZodObject<{
|
|
|
105
116
|
created_at: string;
|
|
106
117
|
workspace_id: string;
|
|
107
118
|
connected_account_id: string;
|
|
119
|
+
event_id: string;
|
|
108
120
|
occurred_at: string;
|
|
109
121
|
event_type: "access_code.set_on_device";
|
|
110
122
|
}>;
|
|
@@ -115,6 +127,7 @@ export declare const access_code_removed_from_device_event: z.ZodObject<{
|
|
|
115
127
|
created_at: z.ZodString;
|
|
116
128
|
workspace_id: z.ZodString;
|
|
117
129
|
connected_account_id: z.ZodString;
|
|
130
|
+
event_id: z.ZodString;
|
|
118
131
|
occurred_at: z.ZodString;
|
|
119
132
|
event_type: z.ZodLiteral<"access_code.removed_from_device">;
|
|
120
133
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -123,6 +136,7 @@ export declare const access_code_removed_from_device_event: z.ZodObject<{
|
|
|
123
136
|
created_at: string;
|
|
124
137
|
workspace_id: string;
|
|
125
138
|
connected_account_id: string;
|
|
139
|
+
event_id: string;
|
|
126
140
|
occurred_at: string;
|
|
127
141
|
event_type: "access_code.removed_from_device";
|
|
128
142
|
}, {
|
|
@@ -131,6 +145,7 @@ export declare const access_code_removed_from_device_event: z.ZodObject<{
|
|
|
131
145
|
created_at: string;
|
|
132
146
|
workspace_id: string;
|
|
133
147
|
connected_account_id: string;
|
|
148
|
+
event_id: string;
|
|
134
149
|
occurred_at: string;
|
|
135
150
|
event_type: "access_code.removed_from_device";
|
|
136
151
|
}>;
|
|
@@ -141,6 +156,7 @@ export declare const access_code_delay_in_setting_on_device_event: z.ZodObject<{
|
|
|
141
156
|
created_at: z.ZodString;
|
|
142
157
|
workspace_id: z.ZodString;
|
|
143
158
|
connected_account_id: z.ZodString;
|
|
159
|
+
event_id: z.ZodString;
|
|
144
160
|
occurred_at: z.ZodString;
|
|
145
161
|
event_type: z.ZodLiteral<"access_code.delay_in_setting_on_device">;
|
|
146
162
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -149,6 +165,7 @@ export declare const access_code_delay_in_setting_on_device_event: z.ZodObject<{
|
|
|
149
165
|
created_at: string;
|
|
150
166
|
workspace_id: string;
|
|
151
167
|
connected_account_id: string;
|
|
168
|
+
event_id: string;
|
|
152
169
|
occurred_at: string;
|
|
153
170
|
event_type: "access_code.delay_in_setting_on_device";
|
|
154
171
|
}, {
|
|
@@ -157,6 +174,7 @@ export declare const access_code_delay_in_setting_on_device_event: z.ZodObject<{
|
|
|
157
174
|
created_at: string;
|
|
158
175
|
workspace_id: string;
|
|
159
176
|
connected_account_id: string;
|
|
177
|
+
event_id: string;
|
|
160
178
|
occurred_at: string;
|
|
161
179
|
event_type: "access_code.delay_in_setting_on_device";
|
|
162
180
|
}>;
|
|
@@ -167,6 +185,7 @@ export declare const access_code_failed_to_set_on_device_event: z.ZodObject<{
|
|
|
167
185
|
created_at: z.ZodString;
|
|
168
186
|
workspace_id: z.ZodString;
|
|
169
187
|
connected_account_id: z.ZodString;
|
|
188
|
+
event_id: z.ZodString;
|
|
170
189
|
occurred_at: z.ZodString;
|
|
171
190
|
event_type: z.ZodLiteral<"access_code.failed_to_set_on_device">;
|
|
172
191
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -175,6 +194,7 @@ export declare const access_code_failed_to_set_on_device_event: z.ZodObject<{
|
|
|
175
194
|
created_at: string;
|
|
176
195
|
workspace_id: string;
|
|
177
196
|
connected_account_id: string;
|
|
197
|
+
event_id: string;
|
|
178
198
|
occurred_at: string;
|
|
179
199
|
event_type: "access_code.failed_to_set_on_device";
|
|
180
200
|
}, {
|
|
@@ -183,6 +203,7 @@ export declare const access_code_failed_to_set_on_device_event: z.ZodObject<{
|
|
|
183
203
|
created_at: string;
|
|
184
204
|
workspace_id: string;
|
|
185
205
|
connected_account_id: string;
|
|
206
|
+
event_id: string;
|
|
186
207
|
occurred_at: string;
|
|
187
208
|
event_type: "access_code.failed_to_set_on_device";
|
|
188
209
|
}>;
|
|
@@ -193,6 +214,7 @@ export declare const access_code_deleted_event: z.ZodObject<{
|
|
|
193
214
|
created_at: z.ZodString;
|
|
194
215
|
workspace_id: z.ZodString;
|
|
195
216
|
connected_account_id: z.ZodString;
|
|
217
|
+
event_id: z.ZodString;
|
|
196
218
|
occurred_at: z.ZodString;
|
|
197
219
|
event_type: z.ZodLiteral<"access_code.deleted">;
|
|
198
220
|
code: z.ZodNullable<z.ZodString>;
|
|
@@ -203,6 +225,7 @@ export declare const access_code_deleted_event: z.ZodObject<{
|
|
|
203
225
|
created_at: string;
|
|
204
226
|
workspace_id: string;
|
|
205
227
|
connected_account_id: string;
|
|
228
|
+
event_id: string;
|
|
206
229
|
occurred_at: string;
|
|
207
230
|
event_type: "access_code.deleted";
|
|
208
231
|
}, {
|
|
@@ -212,6 +235,7 @@ export declare const access_code_deleted_event: z.ZodObject<{
|
|
|
212
235
|
created_at: string;
|
|
213
236
|
workspace_id: string;
|
|
214
237
|
connected_account_id: string;
|
|
238
|
+
event_id: string;
|
|
215
239
|
occurred_at: string;
|
|
216
240
|
event_type: "access_code.deleted";
|
|
217
241
|
}>;
|
|
@@ -222,6 +246,7 @@ export declare const access_code_delay_in_removing_from_device_event: z.ZodObjec
|
|
|
222
246
|
created_at: z.ZodString;
|
|
223
247
|
workspace_id: z.ZodString;
|
|
224
248
|
connected_account_id: z.ZodString;
|
|
249
|
+
event_id: z.ZodString;
|
|
225
250
|
occurred_at: z.ZodString;
|
|
226
251
|
event_type: z.ZodLiteral<"access_code.delay_in_removing_from_device">;
|
|
227
252
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -230,6 +255,7 @@ export declare const access_code_delay_in_removing_from_device_event: z.ZodObjec
|
|
|
230
255
|
created_at: string;
|
|
231
256
|
workspace_id: string;
|
|
232
257
|
connected_account_id: string;
|
|
258
|
+
event_id: string;
|
|
233
259
|
occurred_at: string;
|
|
234
260
|
event_type: "access_code.delay_in_removing_from_device";
|
|
235
261
|
}, {
|
|
@@ -238,6 +264,7 @@ export declare const access_code_delay_in_removing_from_device_event: z.ZodObjec
|
|
|
238
264
|
created_at: string;
|
|
239
265
|
workspace_id: string;
|
|
240
266
|
connected_account_id: string;
|
|
267
|
+
event_id: string;
|
|
241
268
|
occurred_at: string;
|
|
242
269
|
event_type: "access_code.delay_in_removing_from_device";
|
|
243
270
|
}>;
|
|
@@ -248,6 +275,7 @@ export declare const access_code_failed_to_remove_from_device_event: z.ZodObject
|
|
|
248
275
|
created_at: z.ZodString;
|
|
249
276
|
workspace_id: z.ZodString;
|
|
250
277
|
connected_account_id: z.ZodString;
|
|
278
|
+
event_id: z.ZodString;
|
|
251
279
|
occurred_at: z.ZodString;
|
|
252
280
|
event_type: z.ZodLiteral<"access_code.failed_to_remove_from_device">;
|
|
253
281
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -256,6 +284,7 @@ export declare const access_code_failed_to_remove_from_device_event: z.ZodObject
|
|
|
256
284
|
created_at: string;
|
|
257
285
|
workspace_id: string;
|
|
258
286
|
connected_account_id: string;
|
|
287
|
+
event_id: string;
|
|
259
288
|
occurred_at: string;
|
|
260
289
|
event_type: "access_code.failed_to_remove_from_device";
|
|
261
290
|
}, {
|
|
@@ -264,6 +293,7 @@ export declare const access_code_failed_to_remove_from_device_event: z.ZodObject
|
|
|
264
293
|
created_at: string;
|
|
265
294
|
workspace_id: string;
|
|
266
295
|
connected_account_id: string;
|
|
296
|
+
event_id: string;
|
|
267
297
|
occurred_at: string;
|
|
268
298
|
event_type: "access_code.failed_to_remove_from_device";
|
|
269
299
|
}>;
|
|
@@ -274,6 +304,7 @@ export declare const access_code_modified_external_to_seam_event: z.ZodObject<{
|
|
|
274
304
|
created_at: z.ZodString;
|
|
275
305
|
workspace_id: z.ZodString;
|
|
276
306
|
connected_account_id: z.ZodString;
|
|
307
|
+
event_id: z.ZodString;
|
|
277
308
|
occurred_at: z.ZodString;
|
|
278
309
|
event_type: z.ZodLiteral<"access_code.modified_external_to_seam">;
|
|
279
310
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -282,6 +313,7 @@ export declare const access_code_modified_external_to_seam_event: z.ZodObject<{
|
|
|
282
313
|
created_at: string;
|
|
283
314
|
workspace_id: string;
|
|
284
315
|
connected_account_id: string;
|
|
316
|
+
event_id: string;
|
|
285
317
|
occurred_at: string;
|
|
286
318
|
event_type: "access_code.modified_external_to_seam";
|
|
287
319
|
}, {
|
|
@@ -290,6 +322,7 @@ export declare const access_code_modified_external_to_seam_event: z.ZodObject<{
|
|
|
290
322
|
created_at: string;
|
|
291
323
|
workspace_id: string;
|
|
292
324
|
connected_account_id: string;
|
|
325
|
+
event_id: string;
|
|
293
326
|
occurred_at: string;
|
|
294
327
|
event_type: "access_code.modified_external_to_seam";
|
|
295
328
|
}>;
|
|
@@ -300,6 +333,7 @@ export declare const access_code_deleted_external_to_seam_event: z.ZodObject<{
|
|
|
300
333
|
created_at: z.ZodString;
|
|
301
334
|
workspace_id: z.ZodString;
|
|
302
335
|
connected_account_id: z.ZodString;
|
|
336
|
+
event_id: z.ZodString;
|
|
303
337
|
occurred_at: z.ZodString;
|
|
304
338
|
event_type: z.ZodLiteral<"access_code.deleted_external_to_seam">;
|
|
305
339
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -308,6 +342,7 @@ export declare const access_code_deleted_external_to_seam_event: z.ZodObject<{
|
|
|
308
342
|
created_at: string;
|
|
309
343
|
workspace_id: string;
|
|
310
344
|
connected_account_id: string;
|
|
345
|
+
event_id: string;
|
|
311
346
|
occurred_at: string;
|
|
312
347
|
event_type: "access_code.deleted_external_to_seam";
|
|
313
348
|
}, {
|
|
@@ -316,6 +351,7 @@ export declare const access_code_deleted_external_to_seam_event: z.ZodObject<{
|
|
|
316
351
|
created_at: string;
|
|
317
352
|
workspace_id: string;
|
|
318
353
|
connected_account_id: string;
|
|
354
|
+
event_id: string;
|
|
319
355
|
occurred_at: string;
|
|
320
356
|
event_type: "access_code.deleted_external_to_seam";
|
|
321
357
|
}>;
|
|
@@ -326,6 +362,7 @@ export declare const access_code_backup_access_code_pulled_event: z.ZodObject<{
|
|
|
326
362
|
created_at: z.ZodString;
|
|
327
363
|
workspace_id: z.ZodString;
|
|
328
364
|
connected_account_id: z.ZodString;
|
|
365
|
+
event_id: z.ZodString;
|
|
329
366
|
occurred_at: z.ZodString;
|
|
330
367
|
event_type: z.ZodLiteral<"access_code.backup_access_code_pulled">;
|
|
331
368
|
backup_access_code_id: z.ZodString;
|
|
@@ -335,6 +372,7 @@ export declare const access_code_backup_access_code_pulled_event: z.ZodObject<{
|
|
|
335
372
|
created_at: string;
|
|
336
373
|
workspace_id: string;
|
|
337
374
|
connected_account_id: string;
|
|
375
|
+
event_id: string;
|
|
338
376
|
occurred_at: string;
|
|
339
377
|
event_type: "access_code.backup_access_code_pulled";
|
|
340
378
|
backup_access_code_id: string;
|
|
@@ -344,6 +382,7 @@ export declare const access_code_backup_access_code_pulled_event: z.ZodObject<{
|
|
|
344
382
|
created_at: string;
|
|
345
383
|
workspace_id: string;
|
|
346
384
|
connected_account_id: string;
|
|
385
|
+
event_id: string;
|
|
347
386
|
occurred_at: string;
|
|
348
387
|
event_type: "access_code.backup_access_code_pulled";
|
|
349
388
|
backup_access_code_id: string;
|
|
@@ -355,6 +394,7 @@ export declare const unmanaged_access_code_converted_to_managed_event: z.ZodObje
|
|
|
355
394
|
created_at: z.ZodString;
|
|
356
395
|
workspace_id: z.ZodString;
|
|
357
396
|
connected_account_id: z.ZodString;
|
|
397
|
+
event_id: z.ZodString;
|
|
358
398
|
occurred_at: z.ZodString;
|
|
359
399
|
event_type: z.ZodLiteral<"access_code.unmanaged.converted_to_managed">;
|
|
360
400
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -363,6 +403,7 @@ export declare const unmanaged_access_code_converted_to_managed_event: z.ZodObje
|
|
|
363
403
|
created_at: string;
|
|
364
404
|
workspace_id: string;
|
|
365
405
|
connected_account_id: string;
|
|
406
|
+
event_id: string;
|
|
366
407
|
occurred_at: string;
|
|
367
408
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
368
409
|
}, {
|
|
@@ -371,6 +412,7 @@ export declare const unmanaged_access_code_converted_to_managed_event: z.ZodObje
|
|
|
371
412
|
created_at: string;
|
|
372
413
|
workspace_id: string;
|
|
373
414
|
connected_account_id: string;
|
|
415
|
+
event_id: string;
|
|
374
416
|
occurred_at: string;
|
|
375
417
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
376
418
|
}>;
|
|
@@ -381,6 +423,7 @@ export declare const unmanaged_access_code_failed_to_convert_to_managed_event: z
|
|
|
381
423
|
created_at: z.ZodString;
|
|
382
424
|
workspace_id: z.ZodString;
|
|
383
425
|
connected_account_id: z.ZodString;
|
|
426
|
+
event_id: z.ZodString;
|
|
384
427
|
occurred_at: z.ZodString;
|
|
385
428
|
event_type: z.ZodLiteral<"access_code.unmanaged.failed_to_convert_to_managed">;
|
|
386
429
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -389,6 +432,7 @@ export declare const unmanaged_access_code_failed_to_convert_to_managed_event: z
|
|
|
389
432
|
created_at: string;
|
|
390
433
|
workspace_id: string;
|
|
391
434
|
connected_account_id: string;
|
|
435
|
+
event_id: string;
|
|
392
436
|
occurred_at: string;
|
|
393
437
|
event_type: "access_code.unmanaged.failed_to_convert_to_managed";
|
|
394
438
|
}, {
|
|
@@ -397,6 +441,7 @@ export declare const unmanaged_access_code_failed_to_convert_to_managed_event: z
|
|
|
397
441
|
created_at: string;
|
|
398
442
|
workspace_id: string;
|
|
399
443
|
connected_account_id: string;
|
|
444
|
+
event_id: string;
|
|
400
445
|
occurred_at: string;
|
|
401
446
|
event_type: "access_code.unmanaged.failed_to_convert_to_managed";
|
|
402
447
|
}>;
|
|
@@ -407,6 +452,7 @@ export declare const unmanaged_access_code_created_event: z.ZodObject<{
|
|
|
407
452
|
created_at: z.ZodString;
|
|
408
453
|
workspace_id: z.ZodString;
|
|
409
454
|
connected_account_id: z.ZodString;
|
|
455
|
+
event_id: z.ZodString;
|
|
410
456
|
occurred_at: z.ZodString;
|
|
411
457
|
event_type: z.ZodLiteral<"access_code.unmanaged.created">;
|
|
412
458
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -415,6 +461,7 @@ export declare const unmanaged_access_code_created_event: z.ZodObject<{
|
|
|
415
461
|
created_at: string;
|
|
416
462
|
workspace_id: string;
|
|
417
463
|
connected_account_id: string;
|
|
464
|
+
event_id: string;
|
|
418
465
|
occurred_at: string;
|
|
419
466
|
event_type: "access_code.unmanaged.created";
|
|
420
467
|
}, {
|
|
@@ -423,6 +470,7 @@ export declare const unmanaged_access_code_created_event: z.ZodObject<{
|
|
|
423
470
|
created_at: string;
|
|
424
471
|
workspace_id: string;
|
|
425
472
|
connected_account_id: string;
|
|
473
|
+
event_id: string;
|
|
426
474
|
occurred_at: string;
|
|
427
475
|
event_type: "access_code.unmanaged.created";
|
|
428
476
|
}>;
|
|
@@ -433,6 +481,7 @@ export declare const unmanaged_access_code_removed_event: z.ZodObject<{
|
|
|
433
481
|
created_at: z.ZodString;
|
|
434
482
|
workspace_id: z.ZodString;
|
|
435
483
|
connected_account_id: z.ZodString;
|
|
484
|
+
event_id: z.ZodString;
|
|
436
485
|
occurred_at: z.ZodString;
|
|
437
486
|
event_type: z.ZodLiteral<"access_code.unmanaged.removed">;
|
|
438
487
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -441,6 +490,7 @@ export declare const unmanaged_access_code_removed_event: z.ZodObject<{
|
|
|
441
490
|
created_at: string;
|
|
442
491
|
workspace_id: string;
|
|
443
492
|
connected_account_id: string;
|
|
493
|
+
event_id: string;
|
|
444
494
|
occurred_at: string;
|
|
445
495
|
event_type: "access_code.unmanaged.removed";
|
|
446
496
|
}, {
|
|
@@ -449,6 +499,7 @@ export declare const unmanaged_access_code_removed_event: z.ZodObject<{
|
|
|
449
499
|
created_at: string;
|
|
450
500
|
workspace_id: string;
|
|
451
501
|
connected_account_id: string;
|
|
502
|
+
event_id: string;
|
|
452
503
|
occurred_at: string;
|
|
453
504
|
event_type: "access_code.unmanaged.removed";
|
|
454
505
|
}>;
|
|
@@ -459,6 +510,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
459
510
|
created_at: z.ZodString;
|
|
460
511
|
workspace_id: z.ZodString;
|
|
461
512
|
connected_account_id: z.ZodString;
|
|
513
|
+
event_id: z.ZodString;
|
|
462
514
|
occurred_at: z.ZodString;
|
|
463
515
|
event_type: z.ZodLiteral<"access_code.created">;
|
|
464
516
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -467,6 +519,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
467
519
|
created_at: string;
|
|
468
520
|
workspace_id: string;
|
|
469
521
|
connected_account_id: string;
|
|
522
|
+
event_id: string;
|
|
470
523
|
occurred_at: string;
|
|
471
524
|
event_type: "access_code.created";
|
|
472
525
|
}, {
|
|
@@ -475,6 +528,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
475
528
|
created_at: string;
|
|
476
529
|
workspace_id: string;
|
|
477
530
|
connected_account_id: string;
|
|
531
|
+
event_id: string;
|
|
478
532
|
occurred_at: string;
|
|
479
533
|
event_type: "access_code.created";
|
|
480
534
|
}>, z.ZodObject<{
|
|
@@ -483,6 +537,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
483
537
|
created_at: z.ZodString;
|
|
484
538
|
workspace_id: z.ZodString;
|
|
485
539
|
connected_account_id: z.ZodString;
|
|
540
|
+
event_id: z.ZodString;
|
|
486
541
|
occurred_at: z.ZodString;
|
|
487
542
|
event_type: z.ZodLiteral<"access_code.changed">;
|
|
488
543
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -491,6 +546,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
491
546
|
created_at: string;
|
|
492
547
|
workspace_id: string;
|
|
493
548
|
connected_account_id: string;
|
|
549
|
+
event_id: string;
|
|
494
550
|
occurred_at: string;
|
|
495
551
|
event_type: "access_code.changed";
|
|
496
552
|
}, {
|
|
@@ -499,6 +555,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
499
555
|
created_at: string;
|
|
500
556
|
workspace_id: string;
|
|
501
557
|
connected_account_id: string;
|
|
558
|
+
event_id: string;
|
|
502
559
|
occurred_at: string;
|
|
503
560
|
event_type: "access_code.changed";
|
|
504
561
|
}>, z.ZodObject<{
|
|
@@ -507,6 +564,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
507
564
|
created_at: z.ZodString;
|
|
508
565
|
workspace_id: z.ZodString;
|
|
509
566
|
connected_account_id: z.ZodString;
|
|
567
|
+
event_id: z.ZodString;
|
|
510
568
|
occurred_at: z.ZodString;
|
|
511
569
|
event_type: z.ZodLiteral<"access_code.scheduled_on_device">;
|
|
512
570
|
code: z.ZodString;
|
|
@@ -517,6 +575,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
517
575
|
created_at: string;
|
|
518
576
|
workspace_id: string;
|
|
519
577
|
connected_account_id: string;
|
|
578
|
+
event_id: string;
|
|
520
579
|
occurred_at: string;
|
|
521
580
|
event_type: "access_code.scheduled_on_device";
|
|
522
581
|
}, {
|
|
@@ -526,6 +585,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
526
585
|
created_at: string;
|
|
527
586
|
workspace_id: string;
|
|
528
587
|
connected_account_id: string;
|
|
588
|
+
event_id: string;
|
|
529
589
|
occurred_at: string;
|
|
530
590
|
event_type: "access_code.scheduled_on_device";
|
|
531
591
|
}>, z.ZodObject<{
|
|
@@ -534,6 +594,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
534
594
|
created_at: z.ZodString;
|
|
535
595
|
workspace_id: z.ZodString;
|
|
536
596
|
connected_account_id: z.ZodString;
|
|
597
|
+
event_id: z.ZodString;
|
|
537
598
|
occurred_at: z.ZodString;
|
|
538
599
|
event_type: z.ZodLiteral<"access_code.set_on_device">;
|
|
539
600
|
code: z.ZodString;
|
|
@@ -544,6 +605,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
544
605
|
created_at: string;
|
|
545
606
|
workspace_id: string;
|
|
546
607
|
connected_account_id: string;
|
|
608
|
+
event_id: string;
|
|
547
609
|
occurred_at: string;
|
|
548
610
|
event_type: "access_code.set_on_device";
|
|
549
611
|
}, {
|
|
@@ -553,6 +615,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
553
615
|
created_at: string;
|
|
554
616
|
workspace_id: string;
|
|
555
617
|
connected_account_id: string;
|
|
618
|
+
event_id: string;
|
|
556
619
|
occurred_at: string;
|
|
557
620
|
event_type: "access_code.set_on_device";
|
|
558
621
|
}>, z.ZodObject<{
|
|
@@ -561,6 +624,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
561
624
|
created_at: z.ZodString;
|
|
562
625
|
workspace_id: z.ZodString;
|
|
563
626
|
connected_account_id: z.ZodString;
|
|
627
|
+
event_id: z.ZodString;
|
|
564
628
|
occurred_at: z.ZodString;
|
|
565
629
|
event_type: z.ZodLiteral<"access_code.removed_from_device">;
|
|
566
630
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -569,6 +633,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
569
633
|
created_at: string;
|
|
570
634
|
workspace_id: string;
|
|
571
635
|
connected_account_id: string;
|
|
636
|
+
event_id: string;
|
|
572
637
|
occurred_at: string;
|
|
573
638
|
event_type: "access_code.removed_from_device";
|
|
574
639
|
}, {
|
|
@@ -577,6 +642,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
577
642
|
created_at: string;
|
|
578
643
|
workspace_id: string;
|
|
579
644
|
connected_account_id: string;
|
|
645
|
+
event_id: string;
|
|
580
646
|
occurred_at: string;
|
|
581
647
|
event_type: "access_code.removed_from_device";
|
|
582
648
|
}>, z.ZodObject<{
|
|
@@ -585,6 +651,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
585
651
|
created_at: z.ZodString;
|
|
586
652
|
workspace_id: z.ZodString;
|
|
587
653
|
connected_account_id: z.ZodString;
|
|
654
|
+
event_id: z.ZodString;
|
|
588
655
|
occurred_at: z.ZodString;
|
|
589
656
|
event_type: z.ZodLiteral<"access_code.delay_in_setting_on_device">;
|
|
590
657
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -593,6 +660,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
593
660
|
created_at: string;
|
|
594
661
|
workspace_id: string;
|
|
595
662
|
connected_account_id: string;
|
|
663
|
+
event_id: string;
|
|
596
664
|
occurred_at: string;
|
|
597
665
|
event_type: "access_code.delay_in_setting_on_device";
|
|
598
666
|
}, {
|
|
@@ -601,6 +669,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
601
669
|
created_at: string;
|
|
602
670
|
workspace_id: string;
|
|
603
671
|
connected_account_id: string;
|
|
672
|
+
event_id: string;
|
|
604
673
|
occurred_at: string;
|
|
605
674
|
event_type: "access_code.delay_in_setting_on_device";
|
|
606
675
|
}>, z.ZodObject<{
|
|
@@ -609,6 +678,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
609
678
|
created_at: z.ZodString;
|
|
610
679
|
workspace_id: z.ZodString;
|
|
611
680
|
connected_account_id: z.ZodString;
|
|
681
|
+
event_id: z.ZodString;
|
|
612
682
|
occurred_at: z.ZodString;
|
|
613
683
|
event_type: z.ZodLiteral<"access_code.failed_to_set_on_device">;
|
|
614
684
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -617,6 +687,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
617
687
|
created_at: string;
|
|
618
688
|
workspace_id: string;
|
|
619
689
|
connected_account_id: string;
|
|
690
|
+
event_id: string;
|
|
620
691
|
occurred_at: string;
|
|
621
692
|
event_type: "access_code.failed_to_set_on_device";
|
|
622
693
|
}, {
|
|
@@ -625,6 +696,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
625
696
|
created_at: string;
|
|
626
697
|
workspace_id: string;
|
|
627
698
|
connected_account_id: string;
|
|
699
|
+
event_id: string;
|
|
628
700
|
occurred_at: string;
|
|
629
701
|
event_type: "access_code.failed_to_set_on_device";
|
|
630
702
|
}>, z.ZodObject<{
|
|
@@ -633,6 +705,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
633
705
|
created_at: z.ZodString;
|
|
634
706
|
workspace_id: z.ZodString;
|
|
635
707
|
connected_account_id: z.ZodString;
|
|
708
|
+
event_id: z.ZodString;
|
|
636
709
|
occurred_at: z.ZodString;
|
|
637
710
|
event_type: z.ZodLiteral<"access_code.deleted">;
|
|
638
711
|
code: z.ZodNullable<z.ZodString>;
|
|
@@ -643,6 +716,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
643
716
|
created_at: string;
|
|
644
717
|
workspace_id: string;
|
|
645
718
|
connected_account_id: string;
|
|
719
|
+
event_id: string;
|
|
646
720
|
occurred_at: string;
|
|
647
721
|
event_type: "access_code.deleted";
|
|
648
722
|
}, {
|
|
@@ -652,6 +726,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
652
726
|
created_at: string;
|
|
653
727
|
workspace_id: string;
|
|
654
728
|
connected_account_id: string;
|
|
729
|
+
event_id: string;
|
|
655
730
|
occurred_at: string;
|
|
656
731
|
event_type: "access_code.deleted";
|
|
657
732
|
}>, z.ZodObject<{
|
|
@@ -660,6 +735,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
660
735
|
created_at: z.ZodString;
|
|
661
736
|
workspace_id: z.ZodString;
|
|
662
737
|
connected_account_id: z.ZodString;
|
|
738
|
+
event_id: z.ZodString;
|
|
663
739
|
occurred_at: z.ZodString;
|
|
664
740
|
event_type: z.ZodLiteral<"access_code.delay_in_removing_from_device">;
|
|
665
741
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -668,6 +744,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
668
744
|
created_at: string;
|
|
669
745
|
workspace_id: string;
|
|
670
746
|
connected_account_id: string;
|
|
747
|
+
event_id: string;
|
|
671
748
|
occurred_at: string;
|
|
672
749
|
event_type: "access_code.delay_in_removing_from_device";
|
|
673
750
|
}, {
|
|
@@ -676,6 +753,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
676
753
|
created_at: string;
|
|
677
754
|
workspace_id: string;
|
|
678
755
|
connected_account_id: string;
|
|
756
|
+
event_id: string;
|
|
679
757
|
occurred_at: string;
|
|
680
758
|
event_type: "access_code.delay_in_removing_from_device";
|
|
681
759
|
}>, z.ZodObject<{
|
|
@@ -684,6 +762,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
684
762
|
created_at: z.ZodString;
|
|
685
763
|
workspace_id: z.ZodString;
|
|
686
764
|
connected_account_id: z.ZodString;
|
|
765
|
+
event_id: z.ZodString;
|
|
687
766
|
occurred_at: z.ZodString;
|
|
688
767
|
event_type: z.ZodLiteral<"access_code.failed_to_remove_from_device">;
|
|
689
768
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -692,6 +771,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
692
771
|
created_at: string;
|
|
693
772
|
workspace_id: string;
|
|
694
773
|
connected_account_id: string;
|
|
774
|
+
event_id: string;
|
|
695
775
|
occurred_at: string;
|
|
696
776
|
event_type: "access_code.failed_to_remove_from_device";
|
|
697
777
|
}, {
|
|
@@ -700,6 +780,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
700
780
|
created_at: string;
|
|
701
781
|
workspace_id: string;
|
|
702
782
|
connected_account_id: string;
|
|
783
|
+
event_id: string;
|
|
703
784
|
occurred_at: string;
|
|
704
785
|
event_type: "access_code.failed_to_remove_from_device";
|
|
705
786
|
}>, z.ZodObject<{
|
|
@@ -708,6 +789,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
708
789
|
created_at: z.ZodString;
|
|
709
790
|
workspace_id: z.ZodString;
|
|
710
791
|
connected_account_id: z.ZodString;
|
|
792
|
+
event_id: z.ZodString;
|
|
711
793
|
occurred_at: z.ZodString;
|
|
712
794
|
event_type: z.ZodLiteral<"access_code.modified_external_to_seam">;
|
|
713
795
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -716,6 +798,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
716
798
|
created_at: string;
|
|
717
799
|
workspace_id: string;
|
|
718
800
|
connected_account_id: string;
|
|
801
|
+
event_id: string;
|
|
719
802
|
occurred_at: string;
|
|
720
803
|
event_type: "access_code.modified_external_to_seam";
|
|
721
804
|
}, {
|
|
@@ -724,6 +807,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
724
807
|
created_at: string;
|
|
725
808
|
workspace_id: string;
|
|
726
809
|
connected_account_id: string;
|
|
810
|
+
event_id: string;
|
|
727
811
|
occurred_at: string;
|
|
728
812
|
event_type: "access_code.modified_external_to_seam";
|
|
729
813
|
}>, z.ZodObject<{
|
|
@@ -732,6 +816,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
732
816
|
created_at: z.ZodString;
|
|
733
817
|
workspace_id: z.ZodString;
|
|
734
818
|
connected_account_id: z.ZodString;
|
|
819
|
+
event_id: z.ZodString;
|
|
735
820
|
occurred_at: z.ZodString;
|
|
736
821
|
event_type: z.ZodLiteral<"access_code.deleted_external_to_seam">;
|
|
737
822
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -740,6 +825,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
740
825
|
created_at: string;
|
|
741
826
|
workspace_id: string;
|
|
742
827
|
connected_account_id: string;
|
|
828
|
+
event_id: string;
|
|
743
829
|
occurred_at: string;
|
|
744
830
|
event_type: "access_code.deleted_external_to_seam";
|
|
745
831
|
}, {
|
|
@@ -748,6 +834,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
748
834
|
created_at: string;
|
|
749
835
|
workspace_id: string;
|
|
750
836
|
connected_account_id: string;
|
|
837
|
+
event_id: string;
|
|
751
838
|
occurred_at: string;
|
|
752
839
|
event_type: "access_code.deleted_external_to_seam";
|
|
753
840
|
}>, z.ZodObject<{
|
|
@@ -756,6 +843,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
756
843
|
created_at: z.ZodString;
|
|
757
844
|
workspace_id: z.ZodString;
|
|
758
845
|
connected_account_id: z.ZodString;
|
|
846
|
+
event_id: z.ZodString;
|
|
759
847
|
occurred_at: z.ZodString;
|
|
760
848
|
event_type: z.ZodLiteral<"access_code.backup_access_code_pulled">;
|
|
761
849
|
backup_access_code_id: z.ZodString;
|
|
@@ -765,6 +853,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
765
853
|
created_at: string;
|
|
766
854
|
workspace_id: string;
|
|
767
855
|
connected_account_id: string;
|
|
856
|
+
event_id: string;
|
|
768
857
|
occurred_at: string;
|
|
769
858
|
event_type: "access_code.backup_access_code_pulled";
|
|
770
859
|
backup_access_code_id: string;
|
|
@@ -774,6 +863,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
774
863
|
created_at: string;
|
|
775
864
|
workspace_id: string;
|
|
776
865
|
connected_account_id: string;
|
|
866
|
+
event_id: string;
|
|
777
867
|
occurred_at: string;
|
|
778
868
|
event_type: "access_code.backup_access_code_pulled";
|
|
779
869
|
backup_access_code_id: string;
|
|
@@ -783,6 +873,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
783
873
|
created_at: z.ZodString;
|
|
784
874
|
workspace_id: z.ZodString;
|
|
785
875
|
connected_account_id: z.ZodString;
|
|
876
|
+
event_id: z.ZodString;
|
|
786
877
|
occurred_at: z.ZodString;
|
|
787
878
|
event_type: z.ZodLiteral<"access_code.unmanaged.converted_to_managed">;
|
|
788
879
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -791,6 +882,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
791
882
|
created_at: string;
|
|
792
883
|
workspace_id: string;
|
|
793
884
|
connected_account_id: string;
|
|
885
|
+
event_id: string;
|
|
794
886
|
occurred_at: string;
|
|
795
887
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
796
888
|
}, {
|
|
@@ -799,6 +891,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
799
891
|
created_at: string;
|
|
800
892
|
workspace_id: string;
|
|
801
893
|
connected_account_id: string;
|
|
894
|
+
event_id: string;
|
|
802
895
|
occurred_at: string;
|
|
803
896
|
event_type: "access_code.unmanaged.converted_to_managed";
|
|
804
897
|
}>, z.ZodObject<{
|
|
@@ -807,6 +900,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
807
900
|
created_at: z.ZodString;
|
|
808
901
|
workspace_id: z.ZodString;
|
|
809
902
|
connected_account_id: z.ZodString;
|
|
903
|
+
event_id: z.ZodString;
|
|
810
904
|
occurred_at: z.ZodString;
|
|
811
905
|
event_type: z.ZodLiteral<"access_code.unmanaged.failed_to_convert_to_managed">;
|
|
812
906
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -815,6 +909,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
815
909
|
created_at: string;
|
|
816
910
|
workspace_id: string;
|
|
817
911
|
connected_account_id: string;
|
|
912
|
+
event_id: string;
|
|
818
913
|
occurred_at: string;
|
|
819
914
|
event_type: "access_code.unmanaged.failed_to_convert_to_managed";
|
|
820
915
|
}, {
|
|
@@ -823,6 +918,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
823
918
|
created_at: string;
|
|
824
919
|
workspace_id: string;
|
|
825
920
|
connected_account_id: string;
|
|
921
|
+
event_id: string;
|
|
826
922
|
occurred_at: string;
|
|
827
923
|
event_type: "access_code.unmanaged.failed_to_convert_to_managed";
|
|
828
924
|
}>, z.ZodObject<{
|
|
@@ -831,6 +927,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
831
927
|
created_at: z.ZodString;
|
|
832
928
|
workspace_id: z.ZodString;
|
|
833
929
|
connected_account_id: z.ZodString;
|
|
930
|
+
event_id: z.ZodString;
|
|
834
931
|
occurred_at: z.ZodString;
|
|
835
932
|
event_type: z.ZodLiteral<"access_code.unmanaged.created">;
|
|
836
933
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -839,6 +936,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
839
936
|
created_at: string;
|
|
840
937
|
workspace_id: string;
|
|
841
938
|
connected_account_id: string;
|
|
939
|
+
event_id: string;
|
|
842
940
|
occurred_at: string;
|
|
843
941
|
event_type: "access_code.unmanaged.created";
|
|
844
942
|
}, {
|
|
@@ -847,6 +945,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
847
945
|
created_at: string;
|
|
848
946
|
workspace_id: string;
|
|
849
947
|
connected_account_id: string;
|
|
948
|
+
event_id: string;
|
|
850
949
|
occurred_at: string;
|
|
851
950
|
event_type: "access_code.unmanaged.created";
|
|
852
951
|
}>, z.ZodObject<{
|
|
@@ -855,6 +954,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
855
954
|
created_at: z.ZodString;
|
|
856
955
|
workspace_id: z.ZodString;
|
|
857
956
|
connected_account_id: z.ZodString;
|
|
957
|
+
event_id: z.ZodString;
|
|
858
958
|
occurred_at: z.ZodString;
|
|
859
959
|
event_type: z.ZodLiteral<"access_code.unmanaged.removed">;
|
|
860
960
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -863,6 +963,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
863
963
|
created_at: string;
|
|
864
964
|
workspace_id: string;
|
|
865
965
|
connected_account_id: string;
|
|
966
|
+
event_id: string;
|
|
866
967
|
occurred_at: string;
|
|
867
968
|
event_type: "access_code.unmanaged.removed";
|
|
868
969
|
}, {
|
|
@@ -871,6 +972,7 @@ export declare const access_code_events: readonly [z.ZodObject<{
|
|
|
871
972
|
created_at: string;
|
|
872
973
|
workspace_id: string;
|
|
873
974
|
connected_account_id: string;
|
|
975
|
+
event_id: string;
|
|
874
976
|
occurred_at: string;
|
|
875
977
|
event_type: "access_code.unmanaged.removed";
|
|
876
978
|
}>];
|