@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
|
@@ -9,12 +9,12 @@ export declare const unknown_issue_with_acs_credential: z.ZodObject<z.objectUtil
|
|
|
9
9
|
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
10
10
|
}>, "strip", z.ZodTypeAny, {
|
|
11
11
|
message: string;
|
|
12
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
13
12
|
created_at: string;
|
|
13
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
14
14
|
}, {
|
|
15
15
|
message: string;
|
|
16
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
17
16
|
created_at: string;
|
|
17
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
18
18
|
}>;
|
|
19
19
|
declare const acs_credential_warning_map: z.ZodObject<{
|
|
20
20
|
waiting_to_be_issued: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -24,12 +24,12 @@ declare const acs_credential_warning_map: z.ZodObject<{
|
|
|
24
24
|
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
25
25
|
}>, "strip", z.ZodTypeAny, {
|
|
26
26
|
message: string;
|
|
27
|
-
warning_code: "waiting_to_be_issued";
|
|
28
27
|
created_at: string;
|
|
28
|
+
warning_code: "waiting_to_be_issued";
|
|
29
29
|
}, {
|
|
30
30
|
message: string;
|
|
31
|
-
warning_code: "waiting_to_be_issued";
|
|
32
31
|
created_at: string;
|
|
32
|
+
warning_code: "waiting_to_be_issued";
|
|
33
33
|
}>>>;
|
|
34
34
|
schedule_externally_modified: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
35
35
|
created_at: z.ZodString;
|
|
@@ -38,12 +38,12 @@ declare const acs_credential_warning_map: z.ZodObject<{
|
|
|
38
38
|
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
39
39
|
}>, "strip", z.ZodTypeAny, {
|
|
40
40
|
message: string;
|
|
41
|
-
warning_code: "schedule_externally_modified";
|
|
42
41
|
created_at: string;
|
|
42
|
+
warning_code: "schedule_externally_modified";
|
|
43
43
|
}, {
|
|
44
44
|
message: string;
|
|
45
|
-
warning_code: "schedule_externally_modified";
|
|
46
45
|
created_at: string;
|
|
46
|
+
warning_code: "schedule_externally_modified";
|
|
47
47
|
}>>>;
|
|
48
48
|
schedule_modified: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
49
49
|
created_at: z.ZodString;
|
|
@@ -52,12 +52,12 @@ declare const acs_credential_warning_map: z.ZodObject<{
|
|
|
52
52
|
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
53
53
|
}>, "strip", z.ZodTypeAny, {
|
|
54
54
|
message: string;
|
|
55
|
-
warning_code: "schedule_modified";
|
|
56
55
|
created_at: string;
|
|
56
|
+
warning_code: "schedule_modified";
|
|
57
57
|
}, {
|
|
58
58
|
message: string;
|
|
59
|
-
warning_code: "schedule_modified";
|
|
60
59
|
created_at: string;
|
|
60
|
+
warning_code: "schedule_modified";
|
|
61
61
|
}>>>;
|
|
62
62
|
being_deleted: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
63
63
|
created_at: z.ZodString;
|
|
@@ -66,12 +66,12 @@ declare const acs_credential_warning_map: z.ZodObject<{
|
|
|
66
66
|
warning_code: z.ZodLiteral<"being_deleted">;
|
|
67
67
|
}>, "strip", z.ZodTypeAny, {
|
|
68
68
|
message: string;
|
|
69
|
-
warning_code: "being_deleted";
|
|
70
69
|
created_at: string;
|
|
70
|
+
warning_code: "being_deleted";
|
|
71
71
|
}, {
|
|
72
72
|
message: string;
|
|
73
|
-
warning_code: "being_deleted";
|
|
74
73
|
created_at: string;
|
|
74
|
+
warning_code: "being_deleted";
|
|
75
75
|
}>>>;
|
|
76
76
|
unknown_issue_with_acs_credential: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
77
77
|
created_at: z.ZodString;
|
|
@@ -80,12 +80,12 @@ declare const acs_credential_warning_map: z.ZodObject<{
|
|
|
80
80
|
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
81
81
|
}>, "strip", z.ZodTypeAny, {
|
|
82
82
|
message: string;
|
|
83
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
84
83
|
created_at: string;
|
|
84
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
85
85
|
}, {
|
|
86
86
|
message: string;
|
|
87
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
88
87
|
created_at: string;
|
|
88
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
89
89
|
}>>>;
|
|
90
90
|
needs_to_be_reissued: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
91
91
|
created_at: z.ZodString;
|
|
@@ -94,74 +94,74 @@ declare const acs_credential_warning_map: z.ZodObject<{
|
|
|
94
94
|
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
95
95
|
}>, "strip", z.ZodTypeAny, {
|
|
96
96
|
message: string;
|
|
97
|
-
warning_code: "needs_to_be_reissued";
|
|
98
97
|
created_at: string;
|
|
98
|
+
warning_code: "needs_to_be_reissued";
|
|
99
99
|
}, {
|
|
100
100
|
message: string;
|
|
101
|
-
warning_code: "needs_to_be_reissued";
|
|
102
101
|
created_at: string;
|
|
102
|
+
warning_code: "needs_to_be_reissued";
|
|
103
103
|
}>>>;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
105
|
waiting_to_be_issued?: {
|
|
106
106
|
message: string;
|
|
107
|
-
warning_code: "waiting_to_be_issued";
|
|
108
107
|
created_at: string;
|
|
108
|
+
warning_code: "waiting_to_be_issued";
|
|
109
109
|
} | null | undefined;
|
|
110
110
|
schedule_externally_modified?: {
|
|
111
111
|
message: string;
|
|
112
|
-
warning_code: "schedule_externally_modified";
|
|
113
112
|
created_at: string;
|
|
113
|
+
warning_code: "schedule_externally_modified";
|
|
114
114
|
} | null | undefined;
|
|
115
115
|
schedule_modified?: {
|
|
116
116
|
message: string;
|
|
117
|
-
warning_code: "schedule_modified";
|
|
118
117
|
created_at: string;
|
|
118
|
+
warning_code: "schedule_modified";
|
|
119
119
|
} | null | undefined;
|
|
120
120
|
being_deleted?: {
|
|
121
121
|
message: string;
|
|
122
|
-
warning_code: "being_deleted";
|
|
123
122
|
created_at: string;
|
|
123
|
+
warning_code: "being_deleted";
|
|
124
124
|
} | null | undefined;
|
|
125
125
|
unknown_issue_with_acs_credential?: {
|
|
126
126
|
message: string;
|
|
127
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
128
127
|
created_at: string;
|
|
128
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
129
129
|
} | null | undefined;
|
|
130
130
|
needs_to_be_reissued?: {
|
|
131
131
|
message: string;
|
|
132
|
-
warning_code: "needs_to_be_reissued";
|
|
133
132
|
created_at: string;
|
|
133
|
+
warning_code: "needs_to_be_reissued";
|
|
134
134
|
} | null | undefined;
|
|
135
135
|
}, {
|
|
136
136
|
waiting_to_be_issued?: {
|
|
137
137
|
message: string;
|
|
138
|
-
warning_code: "waiting_to_be_issued";
|
|
139
138
|
created_at: string;
|
|
139
|
+
warning_code: "waiting_to_be_issued";
|
|
140
140
|
} | null | undefined;
|
|
141
141
|
schedule_externally_modified?: {
|
|
142
142
|
message: string;
|
|
143
|
-
warning_code: "schedule_externally_modified";
|
|
144
143
|
created_at: string;
|
|
144
|
+
warning_code: "schedule_externally_modified";
|
|
145
145
|
} | null | undefined;
|
|
146
146
|
schedule_modified?: {
|
|
147
147
|
message: string;
|
|
148
|
-
warning_code: "schedule_modified";
|
|
149
148
|
created_at: string;
|
|
149
|
+
warning_code: "schedule_modified";
|
|
150
150
|
} | null | undefined;
|
|
151
151
|
being_deleted?: {
|
|
152
152
|
message: string;
|
|
153
|
-
warning_code: "being_deleted";
|
|
154
153
|
created_at: string;
|
|
154
|
+
warning_code: "being_deleted";
|
|
155
155
|
} | null | undefined;
|
|
156
156
|
unknown_issue_with_acs_credential?: {
|
|
157
157
|
message: string;
|
|
158
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
159
158
|
created_at: string;
|
|
159
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
160
160
|
} | null | undefined;
|
|
161
161
|
needs_to_be_reissued?: {
|
|
162
162
|
message: string;
|
|
163
|
-
warning_code: "needs_to_be_reissued";
|
|
164
163
|
created_at: string;
|
|
164
|
+
warning_code: "needs_to_be_reissued";
|
|
165
165
|
} | null | undefined;
|
|
166
166
|
}>;
|
|
167
167
|
export type AcsCredentialWarningMap = z.infer<typeof acs_credential_warning_map>;
|
|
@@ -201,12 +201,12 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
201
201
|
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
202
202
|
}>, "strip", z.ZodTypeAny, {
|
|
203
203
|
message: string;
|
|
204
|
-
warning_code: "waiting_to_be_issued";
|
|
205
204
|
created_at: string;
|
|
205
|
+
warning_code: "waiting_to_be_issued";
|
|
206
206
|
}, {
|
|
207
207
|
message: string;
|
|
208
|
-
warning_code: "waiting_to_be_issued";
|
|
209
208
|
created_at: string;
|
|
209
|
+
warning_code: "waiting_to_be_issued";
|
|
210
210
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
211
211
|
created_at: z.ZodString;
|
|
212
212
|
message: z.ZodString;
|
|
@@ -214,12 +214,12 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
214
214
|
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
215
215
|
}>, "strip", z.ZodTypeAny, {
|
|
216
216
|
message: string;
|
|
217
|
-
warning_code: "schedule_externally_modified";
|
|
218
217
|
created_at: string;
|
|
218
|
+
warning_code: "schedule_externally_modified";
|
|
219
219
|
}, {
|
|
220
220
|
message: string;
|
|
221
|
-
warning_code: "schedule_externally_modified";
|
|
222
221
|
created_at: string;
|
|
222
|
+
warning_code: "schedule_externally_modified";
|
|
223
223
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
224
224
|
created_at: z.ZodString;
|
|
225
225
|
message: z.ZodString;
|
|
@@ -227,12 +227,12 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
227
227
|
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
228
228
|
}>, "strip", z.ZodTypeAny, {
|
|
229
229
|
message: string;
|
|
230
|
-
warning_code: "schedule_modified";
|
|
231
230
|
created_at: string;
|
|
231
|
+
warning_code: "schedule_modified";
|
|
232
232
|
}, {
|
|
233
233
|
message: string;
|
|
234
|
-
warning_code: "schedule_modified";
|
|
235
234
|
created_at: string;
|
|
235
|
+
warning_code: "schedule_modified";
|
|
236
236
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
237
237
|
created_at: z.ZodString;
|
|
238
238
|
message: z.ZodString;
|
|
@@ -240,12 +240,12 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
240
240
|
warning_code: z.ZodLiteral<"being_deleted">;
|
|
241
241
|
}>, "strip", z.ZodTypeAny, {
|
|
242
242
|
message: string;
|
|
243
|
-
warning_code: "being_deleted";
|
|
244
243
|
created_at: string;
|
|
244
|
+
warning_code: "being_deleted";
|
|
245
245
|
}, {
|
|
246
246
|
message: string;
|
|
247
|
-
warning_code: "being_deleted";
|
|
248
247
|
created_at: string;
|
|
248
|
+
warning_code: "being_deleted";
|
|
249
249
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
250
250
|
created_at: z.ZodString;
|
|
251
251
|
message: z.ZodString;
|
|
@@ -253,12 +253,12 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
253
253
|
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
254
254
|
}>, "strip", z.ZodTypeAny, {
|
|
255
255
|
message: string;
|
|
256
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
257
256
|
created_at: string;
|
|
257
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
258
258
|
}, {
|
|
259
259
|
message: string;
|
|
260
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
261
260
|
created_at: string;
|
|
261
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
262
262
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
263
263
|
created_at: z.ZodString;
|
|
264
264
|
message: z.ZodString;
|
|
@@ -266,12 +266,12 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
266
266
|
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
267
267
|
}>, "strip", z.ZodTypeAny, {
|
|
268
268
|
message: string;
|
|
269
|
-
warning_code: "needs_to_be_reissued";
|
|
270
269
|
created_at: string;
|
|
270
|
+
warning_code: "needs_to_be_reissued";
|
|
271
271
|
}, {
|
|
272
272
|
message: string;
|
|
273
|
-
warning_code: "needs_to_be_reissued";
|
|
274
273
|
created_at: string;
|
|
274
|
+
warning_code: "needs_to_be_reissued";
|
|
275
275
|
}>]>, "many">;
|
|
276
276
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
277
277
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -333,28 +333,28 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
333
333
|
}[];
|
|
334
334
|
warnings: ({
|
|
335
335
|
message: string;
|
|
336
|
-
warning_code: "waiting_to_be_issued";
|
|
337
336
|
created_at: string;
|
|
337
|
+
warning_code: "waiting_to_be_issued";
|
|
338
338
|
} | {
|
|
339
339
|
message: string;
|
|
340
|
-
warning_code: "schedule_externally_modified";
|
|
341
340
|
created_at: string;
|
|
341
|
+
warning_code: "schedule_externally_modified";
|
|
342
342
|
} | {
|
|
343
343
|
message: string;
|
|
344
|
-
warning_code: "schedule_modified";
|
|
345
344
|
created_at: string;
|
|
345
|
+
warning_code: "schedule_modified";
|
|
346
346
|
} | {
|
|
347
347
|
message: string;
|
|
348
|
-
warning_code: "being_deleted";
|
|
349
348
|
created_at: string;
|
|
349
|
+
warning_code: "being_deleted";
|
|
350
350
|
} | {
|
|
351
351
|
message: string;
|
|
352
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
353
352
|
created_at: string;
|
|
353
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
354
354
|
} | {
|
|
355
355
|
message: string;
|
|
356
|
-
warning_code: "needs_to_be_reissued";
|
|
357
356
|
created_at: string;
|
|
357
|
+
warning_code: "needs_to_be_reissued";
|
|
358
358
|
})[];
|
|
359
359
|
display_name: string;
|
|
360
360
|
workspace_id: string;
|
|
@@ -402,28 +402,28 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
402
402
|
}[];
|
|
403
403
|
warnings: ({
|
|
404
404
|
message: string;
|
|
405
|
-
warning_code: "waiting_to_be_issued";
|
|
406
405
|
created_at: string;
|
|
406
|
+
warning_code: "waiting_to_be_issued";
|
|
407
407
|
} | {
|
|
408
408
|
message: string;
|
|
409
|
-
warning_code: "schedule_externally_modified";
|
|
410
409
|
created_at: string;
|
|
410
|
+
warning_code: "schedule_externally_modified";
|
|
411
411
|
} | {
|
|
412
412
|
message: string;
|
|
413
|
-
warning_code: "schedule_modified";
|
|
414
413
|
created_at: string;
|
|
414
|
+
warning_code: "schedule_modified";
|
|
415
415
|
} | {
|
|
416
416
|
message: string;
|
|
417
|
-
warning_code: "being_deleted";
|
|
418
417
|
created_at: string;
|
|
418
|
+
warning_code: "being_deleted";
|
|
419
419
|
} | {
|
|
420
420
|
message: string;
|
|
421
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
422
421
|
created_at: string;
|
|
422
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
423
423
|
} | {
|
|
424
424
|
message: string;
|
|
425
|
-
warning_code: "needs_to_be_reissued";
|
|
426
425
|
created_at: string;
|
|
426
|
+
warning_code: "needs_to_be_reissued";
|
|
427
427
|
})[];
|
|
428
428
|
display_name: string;
|
|
429
429
|
workspace_id: string;
|
|
@@ -500,12 +500,12 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
500
500
|
warning_code: z.ZodLiteral<"waiting_to_be_issued">;
|
|
501
501
|
}>, "strip", z.ZodTypeAny, {
|
|
502
502
|
message: string;
|
|
503
|
-
warning_code: "waiting_to_be_issued";
|
|
504
503
|
created_at: string;
|
|
504
|
+
warning_code: "waiting_to_be_issued";
|
|
505
505
|
}, {
|
|
506
506
|
message: string;
|
|
507
|
-
warning_code: "waiting_to_be_issued";
|
|
508
507
|
created_at: string;
|
|
508
|
+
warning_code: "waiting_to_be_issued";
|
|
509
509
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
510
510
|
created_at: z.ZodString;
|
|
511
511
|
message: z.ZodString;
|
|
@@ -513,12 +513,12 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
513
513
|
warning_code: z.ZodLiteral<"schedule_externally_modified">;
|
|
514
514
|
}>, "strip", z.ZodTypeAny, {
|
|
515
515
|
message: string;
|
|
516
|
-
warning_code: "schedule_externally_modified";
|
|
517
516
|
created_at: string;
|
|
517
|
+
warning_code: "schedule_externally_modified";
|
|
518
518
|
}, {
|
|
519
519
|
message: string;
|
|
520
|
-
warning_code: "schedule_externally_modified";
|
|
521
520
|
created_at: string;
|
|
521
|
+
warning_code: "schedule_externally_modified";
|
|
522
522
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
523
523
|
created_at: z.ZodString;
|
|
524
524
|
message: z.ZodString;
|
|
@@ -526,12 +526,12 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
526
526
|
warning_code: z.ZodLiteral<"schedule_modified">;
|
|
527
527
|
}>, "strip", z.ZodTypeAny, {
|
|
528
528
|
message: string;
|
|
529
|
-
warning_code: "schedule_modified";
|
|
530
529
|
created_at: string;
|
|
530
|
+
warning_code: "schedule_modified";
|
|
531
531
|
}, {
|
|
532
532
|
message: string;
|
|
533
|
-
warning_code: "schedule_modified";
|
|
534
533
|
created_at: string;
|
|
534
|
+
warning_code: "schedule_modified";
|
|
535
535
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
536
536
|
created_at: z.ZodString;
|
|
537
537
|
message: z.ZodString;
|
|
@@ -539,12 +539,12 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
539
539
|
warning_code: z.ZodLiteral<"being_deleted">;
|
|
540
540
|
}>, "strip", z.ZodTypeAny, {
|
|
541
541
|
message: string;
|
|
542
|
-
warning_code: "being_deleted";
|
|
543
542
|
created_at: string;
|
|
543
|
+
warning_code: "being_deleted";
|
|
544
544
|
}, {
|
|
545
545
|
message: string;
|
|
546
|
-
warning_code: "being_deleted";
|
|
547
546
|
created_at: string;
|
|
547
|
+
warning_code: "being_deleted";
|
|
548
548
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
549
549
|
created_at: z.ZodString;
|
|
550
550
|
message: z.ZodString;
|
|
@@ -552,12 +552,12 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
552
552
|
warning_code: z.ZodLiteral<"unknown_issue_with_acs_credential">;
|
|
553
553
|
}>, "strip", z.ZodTypeAny, {
|
|
554
554
|
message: string;
|
|
555
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
556
555
|
created_at: string;
|
|
556
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
557
557
|
}, {
|
|
558
558
|
message: string;
|
|
559
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
560
559
|
created_at: string;
|
|
560
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
561
561
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
562
562
|
created_at: z.ZodString;
|
|
563
563
|
message: z.ZodString;
|
|
@@ -565,12 +565,12 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
565
565
|
warning_code: z.ZodLiteral<"needs_to_be_reissued">;
|
|
566
566
|
}>, "strip", z.ZodTypeAny, {
|
|
567
567
|
message: string;
|
|
568
|
-
warning_code: "needs_to_be_reissued";
|
|
569
568
|
created_at: string;
|
|
569
|
+
warning_code: "needs_to_be_reissued";
|
|
570
570
|
}, {
|
|
571
571
|
message: string;
|
|
572
|
-
warning_code: "needs_to_be_reissued";
|
|
573
572
|
created_at: string;
|
|
573
|
+
warning_code: "needs_to_be_reissued";
|
|
574
574
|
}>]>, "many">;
|
|
575
575
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
576
576
|
is_latest_desired_state_synced_with_provider: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -632,28 +632,28 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
632
632
|
}[];
|
|
633
633
|
warnings: ({
|
|
634
634
|
message: string;
|
|
635
|
-
warning_code: "waiting_to_be_issued";
|
|
636
635
|
created_at: string;
|
|
636
|
+
warning_code: "waiting_to_be_issued";
|
|
637
637
|
} | {
|
|
638
638
|
message: string;
|
|
639
|
-
warning_code: "schedule_externally_modified";
|
|
640
639
|
created_at: string;
|
|
640
|
+
warning_code: "schedule_externally_modified";
|
|
641
641
|
} | {
|
|
642
642
|
message: string;
|
|
643
|
-
warning_code: "schedule_modified";
|
|
644
643
|
created_at: string;
|
|
644
|
+
warning_code: "schedule_modified";
|
|
645
645
|
} | {
|
|
646
646
|
message: string;
|
|
647
|
-
warning_code: "being_deleted";
|
|
648
647
|
created_at: string;
|
|
648
|
+
warning_code: "being_deleted";
|
|
649
649
|
} | {
|
|
650
650
|
message: string;
|
|
651
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
652
651
|
created_at: string;
|
|
652
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
653
653
|
} | {
|
|
654
654
|
message: string;
|
|
655
|
-
warning_code: "needs_to_be_reissued";
|
|
656
655
|
created_at: string;
|
|
656
|
+
warning_code: "needs_to_be_reissued";
|
|
657
657
|
})[];
|
|
658
658
|
display_name: string;
|
|
659
659
|
workspace_id: string;
|
|
@@ -701,28 +701,28 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
701
701
|
}[];
|
|
702
702
|
warnings: ({
|
|
703
703
|
message: string;
|
|
704
|
-
warning_code: "waiting_to_be_issued";
|
|
705
704
|
created_at: string;
|
|
705
|
+
warning_code: "waiting_to_be_issued";
|
|
706
706
|
} | {
|
|
707
707
|
message: string;
|
|
708
|
-
warning_code: "schedule_externally_modified";
|
|
709
708
|
created_at: string;
|
|
709
|
+
warning_code: "schedule_externally_modified";
|
|
710
710
|
} | {
|
|
711
711
|
message: string;
|
|
712
|
-
warning_code: "schedule_modified";
|
|
713
712
|
created_at: string;
|
|
713
|
+
warning_code: "schedule_modified";
|
|
714
714
|
} | {
|
|
715
715
|
message: string;
|
|
716
|
-
warning_code: "being_deleted";
|
|
717
716
|
created_at: string;
|
|
717
|
+
warning_code: "being_deleted";
|
|
718
718
|
} | {
|
|
719
719
|
message: string;
|
|
720
|
-
warning_code: "unknown_issue_with_acs_credential";
|
|
721
720
|
created_at: string;
|
|
721
|
+
warning_code: "unknown_issue_with_acs_credential";
|
|
722
722
|
} | {
|
|
723
723
|
message: string;
|
|
724
|
-
warning_code: "needs_to_be_reissued";
|
|
725
724
|
created_at: string;
|
|
725
|
+
warning_code: "needs_to_be_reissued";
|
|
726
726
|
})[];
|
|
727
727
|
display_name: string;
|
|
728
728
|
workspace_id: string;
|
|
@@ -7,24 +7,24 @@ declare const acs_encoder_error_map: z.ZodObject<{
|
|
|
7
7
|
error_code: z.ZodLiteral<"acs_encoder_removed">;
|
|
8
8
|
}>, "strip", z.ZodTypeAny, {
|
|
9
9
|
message: string;
|
|
10
|
-
error_code: "acs_encoder_removed";
|
|
11
10
|
created_at: string;
|
|
11
|
+
error_code: "acs_encoder_removed";
|
|
12
12
|
}, {
|
|
13
13
|
message: string;
|
|
14
|
-
error_code: "acs_encoder_removed";
|
|
15
14
|
created_at: string;
|
|
15
|
+
error_code: "acs_encoder_removed";
|
|
16
16
|
}>>>;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
18
|
acs_encoder_removed?: {
|
|
19
19
|
message: string;
|
|
20
|
-
error_code: "acs_encoder_removed";
|
|
21
20
|
created_at: string;
|
|
21
|
+
error_code: "acs_encoder_removed";
|
|
22
22
|
} | null | undefined;
|
|
23
23
|
}, {
|
|
24
24
|
acs_encoder_removed?: {
|
|
25
25
|
message: string;
|
|
26
|
-
error_code: "acs_encoder_removed";
|
|
27
26
|
created_at: string;
|
|
27
|
+
error_code: "acs_encoder_removed";
|
|
28
28
|
} | null | undefined;
|
|
29
29
|
}>;
|
|
30
30
|
export type AcsEncoderErrorMap = z.infer<typeof acs_encoder_error_map>;
|
|
@@ -39,12 +39,12 @@ export declare const acs_encoder: z.ZodObject<{
|
|
|
39
39
|
error_code: z.ZodLiteral<"acs_encoder_removed">;
|
|
40
40
|
}>, "strip", z.ZodTypeAny, {
|
|
41
41
|
message: string;
|
|
42
|
-
error_code: "acs_encoder_removed";
|
|
43
42
|
created_at: string;
|
|
43
|
+
error_code: "acs_encoder_removed";
|
|
44
44
|
}, {
|
|
45
45
|
message: string;
|
|
46
|
-
error_code: "acs_encoder_removed";
|
|
47
46
|
created_at: string;
|
|
47
|
+
error_code: "acs_encoder_removed";
|
|
48
48
|
}>, "many">;
|
|
49
49
|
created_at: z.ZodString;
|
|
50
50
|
display_name: z.ZodString;
|
|
@@ -52,8 +52,8 @@ export declare const acs_encoder: z.ZodObject<{
|
|
|
52
52
|
created_at: string;
|
|
53
53
|
errors: {
|
|
54
54
|
message: string;
|
|
55
|
-
error_code: "acs_encoder_removed";
|
|
56
55
|
created_at: string;
|
|
56
|
+
error_code: "acs_encoder_removed";
|
|
57
57
|
}[];
|
|
58
58
|
display_name: string;
|
|
59
59
|
workspace_id: string;
|
|
@@ -63,8 +63,8 @@ export declare const acs_encoder: z.ZodObject<{
|
|
|
63
63
|
created_at: string;
|
|
64
64
|
errors: {
|
|
65
65
|
message: string;
|
|
66
|
-
error_code: "acs_encoder_removed";
|
|
67
66
|
created_at: string;
|
|
67
|
+
error_code: "acs_encoder_removed";
|
|
68
68
|
}[];
|
|
69
69
|
display_name: string;
|
|
70
70
|
workspace_id: string;
|