@seamapi/types 1.946.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 +441 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1201 -24
- package/dist/index.cjs +441 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +16 -16
- package/lib/seam/connect/models/access-codes/managed-access-code.js +5 -5
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +5 -5
- 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 +432 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +867 -11
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -13
- package/src/lib/seam/connect/models/events/common.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +539 -4
- package/src/lib/seam/connect/route-types.ts +867 -11
|
@@ -4,6 +4,7 @@ export declare const acs_credential_deleted_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
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
9
10
|
acs_system_id: z.ZodString;
|
|
@@ -20,6 +21,7 @@ export declare const acs_credential_deleted_event: z.ZodObject<{
|
|
|
20
21
|
occurred_at: string;
|
|
21
22
|
event_type: "acs_credential.deleted";
|
|
22
23
|
connected_account_id?: string | undefined;
|
|
24
|
+
event_description?: string | undefined;
|
|
23
25
|
}, {
|
|
24
26
|
workspace_id: string;
|
|
25
27
|
created_at: string;
|
|
@@ -29,6 +31,7 @@ export declare const acs_credential_deleted_event: z.ZodObject<{
|
|
|
29
31
|
occurred_at: string;
|
|
30
32
|
event_type: "acs_credential.deleted";
|
|
31
33
|
connected_account_id?: string | undefined;
|
|
34
|
+
event_description?: string | undefined;
|
|
32
35
|
}>;
|
|
33
36
|
export type AcsCredentialDeletedEvent = z.infer<typeof acs_credential_deleted_event>;
|
|
34
37
|
export declare const acs_credential_issued: z.ZodObject<{
|
|
@@ -36,6 +39,7 @@ export declare const acs_credential_issued: z.ZodObject<{
|
|
|
36
39
|
workspace_id: z.ZodString;
|
|
37
40
|
created_at: z.ZodString;
|
|
38
41
|
occurred_at: z.ZodString;
|
|
42
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
39
43
|
} & {
|
|
40
44
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
41
45
|
acs_system_id: z.ZodString;
|
|
@@ -52,6 +56,7 @@ export declare const acs_credential_issued: z.ZodObject<{
|
|
|
52
56
|
occurred_at: string;
|
|
53
57
|
event_type: "acs_credential.issued";
|
|
54
58
|
connected_account_id?: string | undefined;
|
|
59
|
+
event_description?: string | undefined;
|
|
55
60
|
}, {
|
|
56
61
|
workspace_id: string;
|
|
57
62
|
created_at: string;
|
|
@@ -61,12 +66,14 @@ export declare const acs_credential_issued: z.ZodObject<{
|
|
|
61
66
|
occurred_at: string;
|
|
62
67
|
event_type: "acs_credential.issued";
|
|
63
68
|
connected_account_id?: string | undefined;
|
|
69
|
+
event_description?: string | undefined;
|
|
64
70
|
}>;
|
|
65
71
|
export declare const acs_credential_reissued: z.ZodObject<{
|
|
66
72
|
event_id: z.ZodString;
|
|
67
73
|
workspace_id: z.ZodString;
|
|
68
74
|
created_at: z.ZodString;
|
|
69
75
|
occurred_at: z.ZodString;
|
|
76
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
70
77
|
} & {
|
|
71
78
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
72
79
|
acs_system_id: z.ZodString;
|
|
@@ -83,6 +90,7 @@ export declare const acs_credential_reissued: z.ZodObject<{
|
|
|
83
90
|
occurred_at: string;
|
|
84
91
|
event_type: "acs_credential.reissued";
|
|
85
92
|
connected_account_id?: string | undefined;
|
|
93
|
+
event_description?: string | undefined;
|
|
86
94
|
}, {
|
|
87
95
|
workspace_id: string;
|
|
88
96
|
created_at: string;
|
|
@@ -92,12 +100,14 @@ export declare const acs_credential_reissued: z.ZodObject<{
|
|
|
92
100
|
occurred_at: string;
|
|
93
101
|
event_type: "acs_credential.reissued";
|
|
94
102
|
connected_account_id?: string | undefined;
|
|
103
|
+
event_description?: string | undefined;
|
|
95
104
|
}>;
|
|
96
105
|
export declare const acs_credential_invalidated: z.ZodObject<{
|
|
97
106
|
event_id: z.ZodString;
|
|
98
107
|
workspace_id: z.ZodString;
|
|
99
108
|
created_at: z.ZodString;
|
|
100
109
|
occurred_at: z.ZodString;
|
|
110
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
101
111
|
} & {
|
|
102
112
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
103
113
|
acs_system_id: z.ZodString;
|
|
@@ -114,6 +124,7 @@ export declare const acs_credential_invalidated: z.ZodObject<{
|
|
|
114
124
|
occurred_at: string;
|
|
115
125
|
event_type: "acs_credential.invalidated";
|
|
116
126
|
connected_account_id?: string | undefined;
|
|
127
|
+
event_description?: string | undefined;
|
|
117
128
|
}, {
|
|
118
129
|
workspace_id: string;
|
|
119
130
|
created_at: string;
|
|
@@ -123,12 +134,14 @@ export declare const acs_credential_invalidated: z.ZodObject<{
|
|
|
123
134
|
occurred_at: string;
|
|
124
135
|
event_type: "acs_credential.invalidated";
|
|
125
136
|
connected_account_id?: string | undefined;
|
|
137
|
+
event_description?: string | undefined;
|
|
126
138
|
}>;
|
|
127
139
|
export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
128
140
|
event_id: z.ZodString;
|
|
129
141
|
workspace_id: z.ZodString;
|
|
130
142
|
created_at: z.ZodString;
|
|
131
143
|
occurred_at: z.ZodString;
|
|
144
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
132
145
|
} & {
|
|
133
146
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
134
147
|
acs_system_id: z.ZodString;
|
|
@@ -145,6 +158,7 @@ export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
|
145
158
|
occurred_at: string;
|
|
146
159
|
event_type: "acs_credential.deleted";
|
|
147
160
|
connected_account_id?: string | undefined;
|
|
161
|
+
event_description?: string | undefined;
|
|
148
162
|
}, {
|
|
149
163
|
workspace_id: string;
|
|
150
164
|
created_at: string;
|
|
@@ -154,11 +168,13 @@ export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
|
154
168
|
occurred_at: string;
|
|
155
169
|
event_type: "acs_credential.deleted";
|
|
156
170
|
connected_account_id?: string | undefined;
|
|
171
|
+
event_description?: string | undefined;
|
|
157
172
|
}>, z.ZodObject<{
|
|
158
173
|
event_id: z.ZodString;
|
|
159
174
|
workspace_id: z.ZodString;
|
|
160
175
|
created_at: z.ZodString;
|
|
161
176
|
occurred_at: z.ZodString;
|
|
177
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
162
178
|
} & {
|
|
163
179
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
164
180
|
acs_system_id: z.ZodString;
|
|
@@ -175,6 +191,7 @@ export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
|
175
191
|
occurred_at: string;
|
|
176
192
|
event_type: "acs_credential.issued";
|
|
177
193
|
connected_account_id?: string | undefined;
|
|
194
|
+
event_description?: string | undefined;
|
|
178
195
|
}, {
|
|
179
196
|
workspace_id: string;
|
|
180
197
|
created_at: string;
|
|
@@ -184,11 +201,13 @@ export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
|
184
201
|
occurred_at: string;
|
|
185
202
|
event_type: "acs_credential.issued";
|
|
186
203
|
connected_account_id?: string | undefined;
|
|
204
|
+
event_description?: string | undefined;
|
|
187
205
|
}>, z.ZodObject<{
|
|
188
206
|
event_id: z.ZodString;
|
|
189
207
|
workspace_id: z.ZodString;
|
|
190
208
|
created_at: z.ZodString;
|
|
191
209
|
occurred_at: z.ZodString;
|
|
210
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
192
211
|
} & {
|
|
193
212
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
194
213
|
acs_system_id: z.ZodString;
|
|
@@ -205,6 +224,7 @@ export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
|
205
224
|
occurred_at: string;
|
|
206
225
|
event_type: "acs_credential.reissued";
|
|
207
226
|
connected_account_id?: string | undefined;
|
|
227
|
+
event_description?: string | undefined;
|
|
208
228
|
}, {
|
|
209
229
|
workspace_id: string;
|
|
210
230
|
created_at: string;
|
|
@@ -214,11 +234,13 @@ export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
|
214
234
|
occurred_at: string;
|
|
215
235
|
event_type: "acs_credential.reissued";
|
|
216
236
|
connected_account_id?: string | undefined;
|
|
237
|
+
event_description?: string | undefined;
|
|
217
238
|
}>, z.ZodObject<{
|
|
218
239
|
event_id: z.ZodString;
|
|
219
240
|
workspace_id: z.ZodString;
|
|
220
241
|
created_at: z.ZodString;
|
|
221
242
|
occurred_at: z.ZodString;
|
|
243
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
222
244
|
} & {
|
|
223
245
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
224
246
|
acs_system_id: z.ZodString;
|
|
@@ -235,6 +257,7 @@ export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
|
235
257
|
occurred_at: string;
|
|
236
258
|
event_type: "acs_credential.invalidated";
|
|
237
259
|
connected_account_id?: string | undefined;
|
|
260
|
+
event_description?: string | undefined;
|
|
238
261
|
}, {
|
|
239
262
|
workspace_id: string;
|
|
240
263
|
created_at: string;
|
|
@@ -244,4 +267,5 @@ export declare const acs_credential_events: readonly [z.ZodObject<{
|
|
|
244
267
|
occurred_at: string;
|
|
245
268
|
event_type: "acs_credential.invalidated";
|
|
246
269
|
connected_account_id?: string | undefined;
|
|
270
|
+
event_description?: string | undefined;
|
|
247
271
|
}>];
|
|
@@ -4,6 +4,7 @@ export declare const acs_encoder_added_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
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
9
10
|
acs_system_id: z.ZodString;
|
|
@@ -20,6 +21,7 @@ export declare const acs_encoder_added_event: z.ZodObject<{
|
|
|
20
21
|
occurred_at: string;
|
|
21
22
|
event_type: "acs_encoder.added";
|
|
22
23
|
connected_account_id?: string | undefined;
|
|
24
|
+
event_description?: string | undefined;
|
|
23
25
|
}, {
|
|
24
26
|
workspace_id: string;
|
|
25
27
|
created_at: string;
|
|
@@ -29,6 +31,7 @@ export declare const acs_encoder_added_event: z.ZodObject<{
|
|
|
29
31
|
occurred_at: string;
|
|
30
32
|
event_type: "acs_encoder.added";
|
|
31
33
|
connected_account_id?: string | undefined;
|
|
34
|
+
event_description?: string | undefined;
|
|
32
35
|
}>;
|
|
33
36
|
export type AcsEncoderAddedEvent = z.infer<typeof acs_encoder_added_event>;
|
|
34
37
|
export declare const acs_encoder_removed_event: z.ZodObject<{
|
|
@@ -36,6 +39,7 @@ export declare const acs_encoder_removed_event: z.ZodObject<{
|
|
|
36
39
|
workspace_id: z.ZodString;
|
|
37
40
|
created_at: z.ZodString;
|
|
38
41
|
occurred_at: z.ZodString;
|
|
42
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
39
43
|
} & {
|
|
40
44
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
41
45
|
acs_system_id: z.ZodString;
|
|
@@ -52,6 +56,7 @@ export declare const acs_encoder_removed_event: z.ZodObject<{
|
|
|
52
56
|
occurred_at: string;
|
|
53
57
|
event_type: "acs_encoder.removed";
|
|
54
58
|
connected_account_id?: string | undefined;
|
|
59
|
+
event_description?: string | undefined;
|
|
55
60
|
}, {
|
|
56
61
|
workspace_id: string;
|
|
57
62
|
created_at: string;
|
|
@@ -61,6 +66,7 @@ export declare const acs_encoder_removed_event: z.ZodObject<{
|
|
|
61
66
|
occurred_at: string;
|
|
62
67
|
event_type: "acs_encoder.removed";
|
|
63
68
|
connected_account_id?: string | undefined;
|
|
69
|
+
event_description?: string | undefined;
|
|
64
70
|
}>;
|
|
65
71
|
export type AcsEncoderRemovedEvent = z.infer<typeof acs_encoder_removed_event>;
|
|
66
72
|
export declare const acs_encoder_events: readonly [z.ZodObject<{
|
|
@@ -68,6 +74,7 @@ export declare const acs_encoder_events: readonly [z.ZodObject<{
|
|
|
68
74
|
workspace_id: z.ZodString;
|
|
69
75
|
created_at: z.ZodString;
|
|
70
76
|
occurred_at: z.ZodString;
|
|
77
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
71
78
|
} & {
|
|
72
79
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
73
80
|
acs_system_id: z.ZodString;
|
|
@@ -84,6 +91,7 @@ export declare const acs_encoder_events: readonly [z.ZodObject<{
|
|
|
84
91
|
occurred_at: string;
|
|
85
92
|
event_type: "acs_encoder.added";
|
|
86
93
|
connected_account_id?: string | undefined;
|
|
94
|
+
event_description?: string | undefined;
|
|
87
95
|
}, {
|
|
88
96
|
workspace_id: string;
|
|
89
97
|
created_at: string;
|
|
@@ -93,11 +101,13 @@ export declare const acs_encoder_events: readonly [z.ZodObject<{
|
|
|
93
101
|
occurred_at: string;
|
|
94
102
|
event_type: "acs_encoder.added";
|
|
95
103
|
connected_account_id?: string | undefined;
|
|
104
|
+
event_description?: string | undefined;
|
|
96
105
|
}>, z.ZodObject<{
|
|
97
106
|
event_id: z.ZodString;
|
|
98
107
|
workspace_id: z.ZodString;
|
|
99
108
|
created_at: z.ZodString;
|
|
100
109
|
occurred_at: z.ZodString;
|
|
110
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
101
111
|
} & {
|
|
102
112
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
103
113
|
acs_system_id: z.ZodString;
|
|
@@ -114,6 +124,7 @@ export declare const acs_encoder_events: readonly [z.ZodObject<{
|
|
|
114
124
|
occurred_at: string;
|
|
115
125
|
event_type: "acs_encoder.removed";
|
|
116
126
|
connected_account_id?: string | undefined;
|
|
127
|
+
event_description?: string | undefined;
|
|
117
128
|
}, {
|
|
118
129
|
workspace_id: string;
|
|
119
130
|
created_at: string;
|
|
@@ -123,4 +134,5 @@ export declare const acs_encoder_events: readonly [z.ZodObject<{
|
|
|
123
134
|
occurred_at: string;
|
|
124
135
|
event_type: "acs_encoder.removed";
|
|
125
136
|
connected_account_id?: string | undefined;
|
|
137
|
+
event_description?: string | undefined;
|
|
126
138
|
}>];
|
|
@@ -4,6 +4,7 @@ export declare const acs_entrance_added_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
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
9
10
|
acs_system_id: z.ZodString;
|
|
@@ -20,6 +21,7 @@ export declare const acs_entrance_added_event: z.ZodObject<{
|
|
|
20
21
|
occurred_at: string;
|
|
21
22
|
event_type: "acs_entrance.added";
|
|
22
23
|
connected_account_id?: string | undefined;
|
|
24
|
+
event_description?: string | undefined;
|
|
23
25
|
}, {
|
|
24
26
|
workspace_id: string;
|
|
25
27
|
created_at: string;
|
|
@@ -29,12 +31,14 @@ export declare const acs_entrance_added_event: z.ZodObject<{
|
|
|
29
31
|
occurred_at: string;
|
|
30
32
|
event_type: "acs_entrance.added";
|
|
31
33
|
connected_account_id?: string | undefined;
|
|
34
|
+
event_description?: string | undefined;
|
|
32
35
|
}>;
|
|
33
36
|
export declare const acs_entrance_removed_event: z.ZodObject<{
|
|
34
37
|
event_id: z.ZodString;
|
|
35
38
|
workspace_id: z.ZodString;
|
|
36
39
|
created_at: z.ZodString;
|
|
37
40
|
occurred_at: z.ZodString;
|
|
41
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
38
42
|
} & {
|
|
39
43
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
40
44
|
acs_system_id: z.ZodString;
|
|
@@ -51,6 +55,7 @@ export declare const acs_entrance_removed_event: z.ZodObject<{
|
|
|
51
55
|
occurred_at: string;
|
|
52
56
|
event_type: "acs_entrance.removed";
|
|
53
57
|
connected_account_id?: string | undefined;
|
|
58
|
+
event_description?: string | undefined;
|
|
54
59
|
}, {
|
|
55
60
|
workspace_id: string;
|
|
56
61
|
created_at: string;
|
|
@@ -60,6 +65,7 @@ export declare const acs_entrance_removed_event: z.ZodObject<{
|
|
|
60
65
|
occurred_at: string;
|
|
61
66
|
event_type: "acs_entrance.removed";
|
|
62
67
|
connected_account_id?: string | undefined;
|
|
68
|
+
event_description?: string | undefined;
|
|
63
69
|
}>;
|
|
64
70
|
export type AcsUserDeletedEvent = z.infer<typeof acs_entrance_removed_event>;
|
|
65
71
|
export declare const acs_entrance_events: readonly [z.ZodObject<{
|
|
@@ -67,6 +73,7 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
|
|
|
67
73
|
workspace_id: z.ZodString;
|
|
68
74
|
created_at: z.ZodString;
|
|
69
75
|
occurred_at: z.ZodString;
|
|
76
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
70
77
|
} & {
|
|
71
78
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
72
79
|
acs_system_id: z.ZodString;
|
|
@@ -83,6 +90,7 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
|
|
|
83
90
|
occurred_at: string;
|
|
84
91
|
event_type: "acs_entrance.added";
|
|
85
92
|
connected_account_id?: string | undefined;
|
|
93
|
+
event_description?: string | undefined;
|
|
86
94
|
}, {
|
|
87
95
|
workspace_id: string;
|
|
88
96
|
created_at: string;
|
|
@@ -92,11 +100,13 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
|
|
|
92
100
|
occurred_at: string;
|
|
93
101
|
event_type: "acs_entrance.added";
|
|
94
102
|
connected_account_id?: string | undefined;
|
|
103
|
+
event_description?: string | undefined;
|
|
95
104
|
}>, z.ZodObject<{
|
|
96
105
|
event_id: z.ZodString;
|
|
97
106
|
workspace_id: z.ZodString;
|
|
98
107
|
created_at: z.ZodString;
|
|
99
108
|
occurred_at: z.ZodString;
|
|
109
|
+
event_description: z.ZodOptional<z.ZodString>;
|
|
100
110
|
} & {
|
|
101
111
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
102
112
|
acs_system_id: z.ZodString;
|
|
@@ -113,6 +123,7 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
|
|
|
113
123
|
occurred_at: string;
|
|
114
124
|
event_type: "acs_entrance.removed";
|
|
115
125
|
connected_account_id?: string | undefined;
|
|
126
|
+
event_description?: string | undefined;
|
|
116
127
|
}, {
|
|
117
128
|
workspace_id: string;
|
|
118
129
|
created_at: string;
|
|
@@ -122,4 +133,5 @@ export declare const acs_entrance_events: readonly [z.ZodObject<{
|
|
|
122
133
|
occurred_at: string;
|
|
123
134
|
event_type: "acs_entrance.removed";
|
|
124
135
|
connected_account_id?: string | undefined;
|
|
136
|
+
event_description?: string | undefined;
|
|
125
137
|
}>];
|
|
@@ -3,6 +3,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
3
3
|
workspace_id: import("zod").ZodString;
|
|
4
4
|
created_at: import("zod").ZodString;
|
|
5
5
|
occurred_at: import("zod").ZodString;
|
|
6
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6
7
|
} & {
|
|
7
8
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8
9
|
acs_system_id: import("zod").ZodString;
|
|
@@ -16,6 +17,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
16
17
|
occurred_at: string;
|
|
17
18
|
event_type: "acs_system.connected";
|
|
18
19
|
connected_account_id?: string | undefined;
|
|
20
|
+
event_description?: string | undefined;
|
|
19
21
|
}, {
|
|
20
22
|
workspace_id: string;
|
|
21
23
|
created_at: string;
|
|
@@ -24,11 +26,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
24
26
|
occurred_at: string;
|
|
25
27
|
event_type: "acs_system.connected";
|
|
26
28
|
connected_account_id?: string | undefined;
|
|
29
|
+
event_description?: string | undefined;
|
|
27
30
|
}>, import("zod").ZodObject<{
|
|
28
31
|
event_id: import("zod").ZodString;
|
|
29
32
|
workspace_id: import("zod").ZodString;
|
|
30
33
|
created_at: import("zod").ZodString;
|
|
31
34
|
occurred_at: import("zod").ZodString;
|
|
35
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
32
36
|
} & {
|
|
33
37
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
34
38
|
acs_system_id: import("zod").ZodString;
|
|
@@ -42,6 +46,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
42
46
|
occurred_at: string;
|
|
43
47
|
event_type: "acs_system.added";
|
|
44
48
|
connected_account_id?: string | undefined;
|
|
49
|
+
event_description?: string | undefined;
|
|
45
50
|
}, {
|
|
46
51
|
workspace_id: string;
|
|
47
52
|
created_at: string;
|
|
@@ -50,11 +55,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
50
55
|
occurred_at: string;
|
|
51
56
|
event_type: "acs_system.added";
|
|
52
57
|
connected_account_id?: string | undefined;
|
|
58
|
+
event_description?: string | undefined;
|
|
53
59
|
}>, import("zod").ZodObject<{
|
|
54
60
|
event_id: import("zod").ZodString;
|
|
55
61
|
workspace_id: import("zod").ZodString;
|
|
56
62
|
created_at: import("zod").ZodString;
|
|
57
63
|
occurred_at: import("zod").ZodString;
|
|
64
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
58
65
|
} & {
|
|
59
66
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
60
67
|
acs_system_id: import("zod").ZodString;
|
|
@@ -141,6 +148,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
141
148
|
warning_code: string;
|
|
142
149
|
}[];
|
|
143
150
|
connected_account_id?: string | undefined;
|
|
151
|
+
event_description?: string | undefined;
|
|
144
152
|
}, {
|
|
145
153
|
workspace_id: string;
|
|
146
154
|
created_at: string;
|
|
@@ -169,11 +177,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
169
177
|
warning_code: string;
|
|
170
178
|
}[];
|
|
171
179
|
connected_account_id?: string | undefined;
|
|
180
|
+
event_description?: string | undefined;
|
|
172
181
|
}>, import("zod").ZodObject<{
|
|
173
182
|
event_id: import("zod").ZodString;
|
|
174
183
|
workspace_id: import("zod").ZodString;
|
|
175
184
|
created_at: import("zod").ZodString;
|
|
176
185
|
occurred_at: import("zod").ZodString;
|
|
186
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
177
187
|
} & {
|
|
178
188
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
179
189
|
acs_system_id: import("zod").ZodString;
|
|
@@ -190,6 +200,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
190
200
|
occurred_at: string;
|
|
191
201
|
event_type: "acs_credential.deleted";
|
|
192
202
|
connected_account_id?: string | undefined;
|
|
203
|
+
event_description?: string | undefined;
|
|
193
204
|
}, {
|
|
194
205
|
workspace_id: string;
|
|
195
206
|
created_at: string;
|
|
@@ -199,11 +210,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
199
210
|
occurred_at: string;
|
|
200
211
|
event_type: "acs_credential.deleted";
|
|
201
212
|
connected_account_id?: string | undefined;
|
|
213
|
+
event_description?: string | undefined;
|
|
202
214
|
}>, import("zod").ZodObject<{
|
|
203
215
|
event_id: import("zod").ZodString;
|
|
204
216
|
workspace_id: import("zod").ZodString;
|
|
205
217
|
created_at: import("zod").ZodString;
|
|
206
218
|
occurred_at: import("zod").ZodString;
|
|
219
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
207
220
|
} & {
|
|
208
221
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
209
222
|
acs_system_id: import("zod").ZodString;
|
|
@@ -220,6 +233,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
220
233
|
occurred_at: string;
|
|
221
234
|
event_type: "acs_credential.issued";
|
|
222
235
|
connected_account_id?: string | undefined;
|
|
236
|
+
event_description?: string | undefined;
|
|
223
237
|
}, {
|
|
224
238
|
workspace_id: string;
|
|
225
239
|
created_at: string;
|
|
@@ -229,11 +243,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
229
243
|
occurred_at: string;
|
|
230
244
|
event_type: "acs_credential.issued";
|
|
231
245
|
connected_account_id?: string | undefined;
|
|
246
|
+
event_description?: string | undefined;
|
|
232
247
|
}>, import("zod").ZodObject<{
|
|
233
248
|
event_id: import("zod").ZodString;
|
|
234
249
|
workspace_id: import("zod").ZodString;
|
|
235
250
|
created_at: import("zod").ZodString;
|
|
236
251
|
occurred_at: import("zod").ZodString;
|
|
252
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
237
253
|
} & {
|
|
238
254
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
239
255
|
acs_system_id: import("zod").ZodString;
|
|
@@ -250,6 +266,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
250
266
|
occurred_at: string;
|
|
251
267
|
event_type: "acs_credential.reissued";
|
|
252
268
|
connected_account_id?: string | undefined;
|
|
269
|
+
event_description?: string | undefined;
|
|
253
270
|
}, {
|
|
254
271
|
workspace_id: string;
|
|
255
272
|
created_at: string;
|
|
@@ -259,11 +276,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
259
276
|
occurred_at: string;
|
|
260
277
|
event_type: "acs_credential.reissued";
|
|
261
278
|
connected_account_id?: string | undefined;
|
|
279
|
+
event_description?: string | undefined;
|
|
262
280
|
}>, import("zod").ZodObject<{
|
|
263
281
|
event_id: import("zod").ZodString;
|
|
264
282
|
workspace_id: import("zod").ZodString;
|
|
265
283
|
created_at: import("zod").ZodString;
|
|
266
284
|
occurred_at: import("zod").ZodString;
|
|
285
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
267
286
|
} & {
|
|
268
287
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
269
288
|
acs_system_id: import("zod").ZodString;
|
|
@@ -280,6 +299,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
280
299
|
occurred_at: string;
|
|
281
300
|
event_type: "acs_credential.invalidated";
|
|
282
301
|
connected_account_id?: string | undefined;
|
|
302
|
+
event_description?: string | undefined;
|
|
283
303
|
}, {
|
|
284
304
|
workspace_id: string;
|
|
285
305
|
created_at: string;
|
|
@@ -289,11 +309,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
289
309
|
occurred_at: string;
|
|
290
310
|
event_type: "acs_credential.invalidated";
|
|
291
311
|
connected_account_id?: string | undefined;
|
|
312
|
+
event_description?: string | undefined;
|
|
292
313
|
}>, import("zod").ZodObject<{
|
|
293
314
|
event_id: import("zod").ZodString;
|
|
294
315
|
workspace_id: import("zod").ZodString;
|
|
295
316
|
created_at: import("zod").ZodString;
|
|
296
317
|
occurred_at: import("zod").ZodString;
|
|
318
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
297
319
|
} & {
|
|
298
320
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
299
321
|
acs_system_id: import("zod").ZodString;
|
|
@@ -310,6 +332,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
310
332
|
occurred_at: string;
|
|
311
333
|
event_type: "acs_user.created";
|
|
312
334
|
connected_account_id?: string | undefined;
|
|
335
|
+
event_description?: string | undefined;
|
|
313
336
|
}, {
|
|
314
337
|
workspace_id: string;
|
|
315
338
|
created_at: string;
|
|
@@ -319,11 +342,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
319
342
|
occurred_at: string;
|
|
320
343
|
event_type: "acs_user.created";
|
|
321
344
|
connected_account_id?: string | undefined;
|
|
345
|
+
event_description?: string | undefined;
|
|
322
346
|
}>, import("zod").ZodObject<{
|
|
323
347
|
event_id: import("zod").ZodString;
|
|
324
348
|
workspace_id: import("zod").ZodString;
|
|
325
349
|
created_at: import("zod").ZodString;
|
|
326
350
|
occurred_at: import("zod").ZodString;
|
|
351
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
327
352
|
} & {
|
|
328
353
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
329
354
|
acs_system_id: import("zod").ZodString;
|
|
@@ -340,6 +365,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
340
365
|
occurred_at: string;
|
|
341
366
|
event_type: "acs_user.deleted";
|
|
342
367
|
connected_account_id?: string | undefined;
|
|
368
|
+
event_description?: string | undefined;
|
|
343
369
|
}, {
|
|
344
370
|
workspace_id: string;
|
|
345
371
|
created_at: string;
|
|
@@ -349,11 +375,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
349
375
|
occurred_at: string;
|
|
350
376
|
event_type: "acs_user.deleted";
|
|
351
377
|
connected_account_id?: string | undefined;
|
|
378
|
+
event_description?: string | undefined;
|
|
352
379
|
}>, import("zod").ZodObject<{
|
|
353
380
|
event_id: import("zod").ZodString;
|
|
354
381
|
workspace_id: import("zod").ZodString;
|
|
355
382
|
created_at: import("zod").ZodString;
|
|
356
383
|
occurred_at: import("zod").ZodString;
|
|
384
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
357
385
|
} & {
|
|
358
386
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
359
387
|
acs_system_id: import("zod").ZodString;
|
|
@@ -370,6 +398,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
370
398
|
occurred_at: string;
|
|
371
399
|
event_type: "acs_encoder.added";
|
|
372
400
|
connected_account_id?: string | undefined;
|
|
401
|
+
event_description?: string | undefined;
|
|
373
402
|
}, {
|
|
374
403
|
workspace_id: string;
|
|
375
404
|
created_at: string;
|
|
@@ -379,11 +408,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
379
408
|
occurred_at: string;
|
|
380
409
|
event_type: "acs_encoder.added";
|
|
381
410
|
connected_account_id?: string | undefined;
|
|
411
|
+
event_description?: string | undefined;
|
|
382
412
|
}>, import("zod").ZodObject<{
|
|
383
413
|
event_id: import("zod").ZodString;
|
|
384
414
|
workspace_id: import("zod").ZodString;
|
|
385
415
|
created_at: import("zod").ZodString;
|
|
386
416
|
occurred_at: import("zod").ZodString;
|
|
417
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
387
418
|
} & {
|
|
388
419
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
389
420
|
acs_system_id: import("zod").ZodString;
|
|
@@ -400,6 +431,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
400
431
|
occurred_at: string;
|
|
401
432
|
event_type: "acs_encoder.removed";
|
|
402
433
|
connected_account_id?: string | undefined;
|
|
434
|
+
event_description?: string | undefined;
|
|
403
435
|
}, {
|
|
404
436
|
workspace_id: string;
|
|
405
437
|
created_at: string;
|
|
@@ -409,11 +441,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
409
441
|
occurred_at: string;
|
|
410
442
|
event_type: "acs_encoder.removed";
|
|
411
443
|
connected_account_id?: string | undefined;
|
|
444
|
+
event_description?: string | undefined;
|
|
412
445
|
}>, import("zod").ZodObject<{
|
|
413
446
|
event_id: import("zod").ZodString;
|
|
414
447
|
workspace_id: import("zod").ZodString;
|
|
415
448
|
created_at: import("zod").ZodString;
|
|
416
449
|
occurred_at: import("zod").ZodString;
|
|
450
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
417
451
|
} & {
|
|
418
452
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
419
453
|
acs_system_id: import("zod").ZodString;
|
|
@@ -430,6 +464,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
430
464
|
occurred_at: string;
|
|
431
465
|
event_type: "acs_access_group.deleted";
|
|
432
466
|
connected_account_id?: string | undefined;
|
|
467
|
+
event_description?: string | undefined;
|
|
433
468
|
}, {
|
|
434
469
|
workspace_id: string;
|
|
435
470
|
created_at: string;
|
|
@@ -439,11 +474,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
439
474
|
occurred_at: string;
|
|
440
475
|
event_type: "acs_access_group.deleted";
|
|
441
476
|
connected_account_id?: string | undefined;
|
|
477
|
+
event_description?: string | undefined;
|
|
442
478
|
}>, import("zod").ZodObject<{
|
|
443
479
|
event_id: import("zod").ZodString;
|
|
444
480
|
workspace_id: import("zod").ZodString;
|
|
445
481
|
created_at: import("zod").ZodString;
|
|
446
482
|
occurred_at: import("zod").ZodString;
|
|
483
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
447
484
|
} & {
|
|
448
485
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
449
486
|
acs_system_id: import("zod").ZodString;
|
|
@@ -460,6 +497,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
460
497
|
occurred_at: string;
|
|
461
498
|
event_type: "acs_entrance.added";
|
|
462
499
|
connected_account_id?: string | undefined;
|
|
500
|
+
event_description?: string | undefined;
|
|
463
501
|
}, {
|
|
464
502
|
workspace_id: string;
|
|
465
503
|
created_at: string;
|
|
@@ -469,11 +507,13 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
469
507
|
occurred_at: string;
|
|
470
508
|
event_type: "acs_entrance.added";
|
|
471
509
|
connected_account_id?: string | undefined;
|
|
510
|
+
event_description?: string | undefined;
|
|
472
511
|
}>, import("zod").ZodObject<{
|
|
473
512
|
event_id: import("zod").ZodString;
|
|
474
513
|
workspace_id: import("zod").ZodString;
|
|
475
514
|
created_at: import("zod").ZodString;
|
|
476
515
|
occurred_at: import("zod").ZodString;
|
|
516
|
+
event_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
477
517
|
} & {
|
|
478
518
|
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
479
519
|
acs_system_id: import("zod").ZodString;
|
|
@@ -490,6 +530,7 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
490
530
|
occurred_at: string;
|
|
491
531
|
event_type: "acs_entrance.removed";
|
|
492
532
|
connected_account_id?: string | undefined;
|
|
533
|
+
event_description?: string | undefined;
|
|
493
534
|
}, {
|
|
494
535
|
workspace_id: string;
|
|
495
536
|
created_at: string;
|
|
@@ -499,4 +540,5 @@ export declare const acs_events: readonly [import("zod").ZodObject<{
|
|
|
499
540
|
occurred_at: string;
|
|
500
541
|
event_type: "acs_entrance.removed";
|
|
501
542
|
connected_account_id?: string | undefined;
|
|
543
|
+
event_description?: string | undefined;
|
|
502
544
|
}>];
|