@seamapi/types 1.241.0 → 1.242.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 +204 -95
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +250 -120
- package/lib/seam/connect/models/acs/acs-user.d.ts +169 -140
- package/lib/seam/connect/models/acs/acs-user.js +32 -30
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +36 -18
- package/lib/seam/connect/openapi.js +173 -69
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +112 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +41 -35
- package/src/lib/seam/connect/openapi.ts +200 -69
- package/src/lib/seam/connect/route-types.ts +119 -42
|
@@ -2,18 +2,18 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const acs_user_external_type: z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user"]>;
|
|
3
3
|
export type AcsUserExternalType = z.infer<typeof acs_user_external_type>;
|
|
4
4
|
export declare const acs_users_error_map: z.ZodObject<{
|
|
5
|
-
|
|
5
|
+
deleted_externally: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
6
6
|
created_at: z.ZodString;
|
|
7
7
|
message: z.ZodString;
|
|
8
8
|
}, {
|
|
9
|
-
error_code: z.ZodLiteral<"
|
|
9
|
+
error_code: z.ZodLiteral<"deleted_externally">;
|
|
10
10
|
}>, "strip", z.ZodTypeAny, {
|
|
11
11
|
message: string;
|
|
12
|
-
error_code: "
|
|
12
|
+
error_code: "deleted_externally";
|
|
13
13
|
created_at: string;
|
|
14
14
|
}, {
|
|
15
15
|
message: string;
|
|
16
|
-
error_code: "
|
|
16
|
+
error_code: "deleted_externally";
|
|
17
17
|
created_at: string;
|
|
18
18
|
}>>>;
|
|
19
19
|
salto_ks_subscription_limit_exceeded: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -30,29 +30,52 @@ export declare const acs_users_error_map: z.ZodObject<{
|
|
|
30
30
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
31
31
|
created_at: string;
|
|
32
32
|
}>>>;
|
|
33
|
-
|
|
33
|
+
failed_to_create_on_acs_system: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
34
34
|
created_at: z.ZodString;
|
|
35
35
|
message: z.ZodString;
|
|
36
36
|
}, {
|
|
37
|
-
|
|
37
|
+
warning_code: z.ZodLiteral<"failed_to_create_on_acs_system">;
|
|
38
38
|
}>, "strip", z.ZodTypeAny, {
|
|
39
39
|
message: string;
|
|
40
|
-
|
|
40
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
41
41
|
created_at: string;
|
|
42
42
|
}, {
|
|
43
43
|
message: string;
|
|
44
|
-
|
|
44
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
45
45
|
created_at: string;
|
|
46
46
|
}>>>;
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
failed_to_update_on_acs_system: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
48
|
+
created_at: z.ZodString;
|
|
49
|
+
message: z.ZodString;
|
|
50
|
+
}, {
|
|
51
|
+
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
52
|
+
}>, "strip", z.ZodTypeAny, {
|
|
49
53
|
message: string;
|
|
50
|
-
|
|
54
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
51
55
|
created_at: string;
|
|
52
|
-
}
|
|
53
|
-
|
|
56
|
+
}, {
|
|
57
|
+
message: string;
|
|
58
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
59
|
+
created_at: string;
|
|
60
|
+
}>>>;
|
|
61
|
+
failed_to_delete_on_acs_system: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
62
|
+
created_at: z.ZodString;
|
|
63
|
+
message: z.ZodString;
|
|
64
|
+
}, {
|
|
65
|
+
warning_code: z.ZodLiteral<"failed_to_delete_on_acs_system">;
|
|
66
|
+
}>, "strip", z.ZodTypeAny, {
|
|
67
|
+
message: string;
|
|
68
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
69
|
+
created_at: string;
|
|
70
|
+
}, {
|
|
71
|
+
message: string;
|
|
72
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
73
|
+
created_at: string;
|
|
74
|
+
}>>>;
|
|
75
|
+
}, "strip", z.ZodTypeAny, {
|
|
76
|
+
deleted_externally?: {
|
|
54
77
|
message: string;
|
|
55
|
-
error_code: "
|
|
78
|
+
error_code: "deleted_externally";
|
|
56
79
|
created_at: string;
|
|
57
80
|
} | null | undefined;
|
|
58
81
|
salto_ks_subscription_limit_exceeded?: {
|
|
@@ -60,15 +83,25 @@ export declare const acs_users_error_map: z.ZodObject<{
|
|
|
60
83
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
61
84
|
created_at: string;
|
|
62
85
|
} | null | undefined;
|
|
63
|
-
|
|
64
|
-
salto_site_user_limit_reached?: {
|
|
86
|
+
failed_to_create_on_acs_system?: {
|
|
65
87
|
message: string;
|
|
66
|
-
|
|
88
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
67
89
|
created_at: string;
|
|
68
90
|
} | null | undefined;
|
|
69
|
-
|
|
91
|
+
failed_to_update_on_acs_system?: {
|
|
70
92
|
message: string;
|
|
71
|
-
|
|
93
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
94
|
+
created_at: string;
|
|
95
|
+
} | null | undefined;
|
|
96
|
+
failed_to_delete_on_acs_system?: {
|
|
97
|
+
message: string;
|
|
98
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
99
|
+
created_at: string;
|
|
100
|
+
} | null | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
deleted_externally?: {
|
|
103
|
+
message: string;
|
|
104
|
+
error_code: "deleted_externally";
|
|
72
105
|
created_at: string;
|
|
73
106
|
} | null | undefined;
|
|
74
107
|
salto_ks_subscription_limit_exceeded?: {
|
|
@@ -76,6 +109,21 @@ export declare const acs_users_error_map: z.ZodObject<{
|
|
|
76
109
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
77
110
|
created_at: string;
|
|
78
111
|
} | null | undefined;
|
|
112
|
+
failed_to_create_on_acs_system?: {
|
|
113
|
+
message: string;
|
|
114
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
115
|
+
created_at: string;
|
|
116
|
+
} | null | undefined;
|
|
117
|
+
failed_to_update_on_acs_system?: {
|
|
118
|
+
message: string;
|
|
119
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
120
|
+
created_at: string;
|
|
121
|
+
} | null | undefined;
|
|
122
|
+
failed_to_delete_on_acs_system?: {
|
|
123
|
+
message: string;
|
|
124
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
125
|
+
created_at: string;
|
|
126
|
+
} | null | undefined;
|
|
79
127
|
}>;
|
|
80
128
|
export type AcsUsersErrorMap = z.infer<typeof acs_users_error_map>;
|
|
81
129
|
export declare const acs_users_warning_map: z.ZodObject<{
|
|
@@ -93,20 +141,6 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
93
141
|
warning_code: "being_deleted";
|
|
94
142
|
created_at: string;
|
|
95
143
|
}>>>;
|
|
96
|
-
failed_to_update_on_acs_system: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
97
|
-
created_at: z.ZodString;
|
|
98
|
-
message: z.ZodString;
|
|
99
|
-
}, {
|
|
100
|
-
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
101
|
-
}>, "strip", z.ZodTypeAny, {
|
|
102
|
-
message: string;
|
|
103
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
104
|
-
created_at: string;
|
|
105
|
-
}, {
|
|
106
|
-
message: string;
|
|
107
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
108
|
-
created_at: string;
|
|
109
|
-
}>>>;
|
|
110
144
|
salto_ks_user_not_subscribed: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
111
145
|
created_at: z.ZodString;
|
|
112
146
|
message: z.ZodString;
|
|
@@ -121,20 +155,6 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
121
155
|
warning_code: "salto_ks_user_not_subscribed";
|
|
122
156
|
created_at: string;
|
|
123
157
|
}>>>;
|
|
124
|
-
salto_site_user_suspended: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
125
|
-
created_at: z.ZodString;
|
|
126
|
-
message: z.ZodString;
|
|
127
|
-
}, {
|
|
128
|
-
warning_code: z.ZodLiteral<"salto_site_user_suspended">;
|
|
129
|
-
}>, "strip", z.ZodTypeAny, {
|
|
130
|
-
message: string;
|
|
131
|
-
warning_code: "salto_site_user_suspended";
|
|
132
|
-
created_at: string;
|
|
133
|
-
}, {
|
|
134
|
-
message: string;
|
|
135
|
-
warning_code: "salto_site_user_suspended";
|
|
136
|
-
created_at: string;
|
|
137
|
-
}>>>;
|
|
138
158
|
}, "strip", z.ZodTypeAny, {
|
|
139
159
|
being_deleted?: {
|
|
140
160
|
message: string;
|
|
@@ -146,16 +166,6 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
146
166
|
warning_code: "salto_ks_user_not_subscribed";
|
|
147
167
|
created_at: string;
|
|
148
168
|
} | null | undefined;
|
|
149
|
-
failed_to_update_on_acs_system?: {
|
|
150
|
-
message: string;
|
|
151
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
152
|
-
created_at: string;
|
|
153
|
-
} | null | undefined;
|
|
154
|
-
salto_site_user_suspended?: {
|
|
155
|
-
message: string;
|
|
156
|
-
warning_code: "salto_site_user_suspended";
|
|
157
|
-
created_at: string;
|
|
158
|
-
} | null | undefined;
|
|
159
169
|
}, {
|
|
160
170
|
being_deleted?: {
|
|
161
171
|
message: string;
|
|
@@ -167,16 +177,6 @@ export declare const acs_users_warning_map: z.ZodObject<{
|
|
|
167
177
|
warning_code: "salto_ks_user_not_subscribed";
|
|
168
178
|
created_at: string;
|
|
169
179
|
} | null | undefined;
|
|
170
|
-
failed_to_update_on_acs_system?: {
|
|
171
|
-
message: string;
|
|
172
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
173
|
-
created_at: string;
|
|
174
|
-
} | null | undefined;
|
|
175
|
-
salto_site_user_suspended?: {
|
|
176
|
-
message: string;
|
|
177
|
-
warning_code: "salto_site_user_suspended";
|
|
178
|
-
created_at: string;
|
|
179
|
-
} | null | undefined;
|
|
180
180
|
}>;
|
|
181
181
|
export declare const acs_users_warnings: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
182
182
|
created_at: z.ZodString;
|
|
@@ -217,19 +217,6 @@ export declare const acs_users_warnings: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
217
217
|
message: string;
|
|
218
218
|
warning_code: "salto_ks_user_not_subscribed";
|
|
219
219
|
created_at: string;
|
|
220
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
221
|
-
created_at: z.ZodString;
|
|
222
|
-
message: z.ZodString;
|
|
223
|
-
}, {
|
|
224
|
-
warning_code: z.ZodLiteral<"salto_site_user_suspended">;
|
|
225
|
-
}>, "strip", z.ZodTypeAny, {
|
|
226
|
-
message: string;
|
|
227
|
-
warning_code: "salto_site_user_suspended";
|
|
228
|
-
created_at: string;
|
|
229
|
-
}, {
|
|
230
|
-
message: string;
|
|
231
|
-
warning_code: "salto_site_user_suspended";
|
|
232
|
-
created_at: string;
|
|
233
220
|
}>]>;
|
|
234
221
|
export type AcsUsersWarningMap = z.infer<typeof acs_users_warning_map>;
|
|
235
222
|
export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -297,58 +284,71 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
297
284
|
message: string;
|
|
298
285
|
warning_code: "salto_ks_user_not_subscribed";
|
|
299
286
|
created_at: string;
|
|
287
|
+
}>]>, "many">;
|
|
288
|
+
errors: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
289
|
+
created_at: z.ZodString;
|
|
290
|
+
message: z.ZodString;
|
|
291
|
+
}, {
|
|
292
|
+
error_code: z.ZodLiteral<"deleted_externally">;
|
|
293
|
+
}>, "strip", z.ZodTypeAny, {
|
|
294
|
+
message: string;
|
|
295
|
+
error_code: "deleted_externally";
|
|
296
|
+
created_at: string;
|
|
297
|
+
}, {
|
|
298
|
+
message: string;
|
|
299
|
+
error_code: "deleted_externally";
|
|
300
|
+
created_at: string;
|
|
300
301
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
301
302
|
created_at: z.ZodString;
|
|
302
303
|
message: z.ZodString;
|
|
303
304
|
}, {
|
|
304
|
-
|
|
305
|
+
error_code: z.ZodLiteral<"salto_ks_subscription_limit_exceeded">;
|
|
305
306
|
}>, "strip", z.ZodTypeAny, {
|
|
306
307
|
message: string;
|
|
307
|
-
|
|
308
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
308
309
|
created_at: string;
|
|
309
310
|
}, {
|
|
310
311
|
message: string;
|
|
311
|
-
|
|
312
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
312
313
|
created_at: string;
|
|
313
|
-
}
|
|
314
|
-
errors: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
314
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
315
315
|
created_at: z.ZodString;
|
|
316
316
|
message: z.ZodString;
|
|
317
317
|
}, {
|
|
318
|
-
|
|
318
|
+
warning_code: z.ZodLiteral<"failed_to_create_on_acs_system">;
|
|
319
319
|
}>, "strip", z.ZodTypeAny, {
|
|
320
320
|
message: string;
|
|
321
|
-
|
|
321
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
322
322
|
created_at: string;
|
|
323
323
|
}, {
|
|
324
324
|
message: string;
|
|
325
|
-
|
|
325
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
326
326
|
created_at: string;
|
|
327
327
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
328
328
|
created_at: z.ZodString;
|
|
329
329
|
message: z.ZodString;
|
|
330
330
|
}, {
|
|
331
|
-
|
|
331
|
+
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
332
332
|
}>, "strip", z.ZodTypeAny, {
|
|
333
333
|
message: string;
|
|
334
|
-
|
|
334
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
335
335
|
created_at: string;
|
|
336
336
|
}, {
|
|
337
337
|
message: string;
|
|
338
|
-
|
|
338
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
339
339
|
created_at: string;
|
|
340
340
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
341
341
|
created_at: z.ZodString;
|
|
342
342
|
message: z.ZodString;
|
|
343
343
|
}, {
|
|
344
|
-
|
|
344
|
+
warning_code: z.ZodLiteral<"failed_to_delete_on_acs_system">;
|
|
345
345
|
}>, "strip", z.ZodTypeAny, {
|
|
346
346
|
message: string;
|
|
347
|
-
|
|
347
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
348
348
|
created_at: string;
|
|
349
349
|
}, {
|
|
350
350
|
message: string;
|
|
351
|
-
|
|
351
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
352
352
|
created_at: string;
|
|
353
353
|
}>]>, "many">;
|
|
354
354
|
}, {
|
|
@@ -362,7 +362,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
362
362
|
created_at: string;
|
|
363
363
|
errors: ({
|
|
364
364
|
message: string;
|
|
365
|
-
error_code: "
|
|
365
|
+
error_code: "deleted_externally";
|
|
366
366
|
created_at: string;
|
|
367
367
|
} | {
|
|
368
368
|
message: string;
|
|
@@ -370,24 +370,28 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
370
370
|
created_at: string;
|
|
371
371
|
} | {
|
|
372
372
|
message: string;
|
|
373
|
-
|
|
373
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
374
374
|
created_at: string;
|
|
375
|
-
}
|
|
376
|
-
warnings: ({
|
|
375
|
+
} | {
|
|
377
376
|
message: string;
|
|
378
|
-
warning_code: "
|
|
377
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
379
378
|
created_at: string;
|
|
380
379
|
} | {
|
|
381
380
|
message: string;
|
|
382
|
-
warning_code: "
|
|
381
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
383
382
|
created_at: string;
|
|
384
|
-
}
|
|
383
|
+
})[];
|
|
384
|
+
warnings: ({
|
|
385
385
|
message: string;
|
|
386
386
|
warning_code: "failed_to_update_on_acs_system";
|
|
387
387
|
created_at: string;
|
|
388
388
|
} | {
|
|
389
389
|
message: string;
|
|
390
|
-
warning_code: "
|
|
390
|
+
warning_code: "being_deleted";
|
|
391
|
+
created_at: string;
|
|
392
|
+
} | {
|
|
393
|
+
message: string;
|
|
394
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
391
395
|
created_at: string;
|
|
392
396
|
})[];
|
|
393
397
|
display_name: string;
|
|
@@ -417,7 +421,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
417
421
|
created_at: string;
|
|
418
422
|
errors: ({
|
|
419
423
|
message: string;
|
|
420
|
-
error_code: "
|
|
424
|
+
error_code: "deleted_externally";
|
|
421
425
|
created_at: string;
|
|
422
426
|
} | {
|
|
423
427
|
message: string;
|
|
@@ -425,24 +429,28 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
425
429
|
created_at: string;
|
|
426
430
|
} | {
|
|
427
431
|
message: string;
|
|
428
|
-
|
|
432
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
429
433
|
created_at: string;
|
|
430
|
-
}
|
|
431
|
-
warnings: ({
|
|
434
|
+
} | {
|
|
432
435
|
message: string;
|
|
433
|
-
warning_code: "
|
|
436
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
434
437
|
created_at: string;
|
|
435
438
|
} | {
|
|
436
439
|
message: string;
|
|
437
|
-
warning_code: "
|
|
440
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
438
441
|
created_at: string;
|
|
439
|
-
}
|
|
442
|
+
})[];
|
|
443
|
+
warnings: ({
|
|
440
444
|
message: string;
|
|
441
445
|
warning_code: "failed_to_update_on_acs_system";
|
|
442
446
|
created_at: string;
|
|
443
447
|
} | {
|
|
444
448
|
message: string;
|
|
445
|
-
warning_code: "
|
|
449
|
+
warning_code: "being_deleted";
|
|
450
|
+
created_at: string;
|
|
451
|
+
} | {
|
|
452
|
+
message: string;
|
|
453
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
446
454
|
created_at: string;
|
|
447
455
|
})[];
|
|
448
456
|
display_name: string;
|
|
@@ -534,58 +542,71 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
534
542
|
message: string;
|
|
535
543
|
warning_code: "salto_ks_user_not_subscribed";
|
|
536
544
|
created_at: string;
|
|
545
|
+
}>]>, "many">;
|
|
546
|
+
errors: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
547
|
+
created_at: z.ZodString;
|
|
548
|
+
message: z.ZodString;
|
|
549
|
+
}, {
|
|
550
|
+
error_code: z.ZodLiteral<"deleted_externally">;
|
|
551
|
+
}>, "strip", z.ZodTypeAny, {
|
|
552
|
+
message: string;
|
|
553
|
+
error_code: "deleted_externally";
|
|
554
|
+
created_at: string;
|
|
555
|
+
}, {
|
|
556
|
+
message: string;
|
|
557
|
+
error_code: "deleted_externally";
|
|
558
|
+
created_at: string;
|
|
537
559
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
538
560
|
created_at: z.ZodString;
|
|
539
561
|
message: z.ZodString;
|
|
540
562
|
}, {
|
|
541
|
-
|
|
563
|
+
error_code: z.ZodLiteral<"salto_ks_subscription_limit_exceeded">;
|
|
542
564
|
}>, "strip", z.ZodTypeAny, {
|
|
543
565
|
message: string;
|
|
544
|
-
|
|
566
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
545
567
|
created_at: string;
|
|
546
568
|
}, {
|
|
547
569
|
message: string;
|
|
548
|
-
|
|
570
|
+
error_code: "salto_ks_subscription_limit_exceeded";
|
|
549
571
|
created_at: string;
|
|
550
|
-
}
|
|
551
|
-
errors: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
572
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
552
573
|
created_at: z.ZodString;
|
|
553
574
|
message: z.ZodString;
|
|
554
575
|
}, {
|
|
555
|
-
|
|
576
|
+
warning_code: z.ZodLiteral<"failed_to_create_on_acs_system">;
|
|
556
577
|
}>, "strip", z.ZodTypeAny, {
|
|
557
578
|
message: string;
|
|
558
|
-
|
|
579
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
559
580
|
created_at: string;
|
|
560
581
|
}, {
|
|
561
582
|
message: string;
|
|
562
|
-
|
|
583
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
563
584
|
created_at: string;
|
|
564
585
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
565
586
|
created_at: z.ZodString;
|
|
566
587
|
message: z.ZodString;
|
|
567
588
|
}, {
|
|
568
|
-
|
|
589
|
+
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
569
590
|
}>, "strip", z.ZodTypeAny, {
|
|
570
591
|
message: string;
|
|
571
|
-
|
|
592
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
572
593
|
created_at: string;
|
|
573
594
|
}, {
|
|
574
595
|
message: string;
|
|
575
|
-
|
|
596
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
576
597
|
created_at: string;
|
|
577
598
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
578
599
|
created_at: z.ZodString;
|
|
579
600
|
message: z.ZodString;
|
|
580
601
|
}, {
|
|
581
|
-
|
|
602
|
+
warning_code: z.ZodLiteral<"failed_to_delete_on_acs_system">;
|
|
582
603
|
}>, "strip", z.ZodTypeAny, {
|
|
583
604
|
message: string;
|
|
584
|
-
|
|
605
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
585
606
|
created_at: string;
|
|
586
607
|
}, {
|
|
587
608
|
message: string;
|
|
588
|
-
|
|
609
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
589
610
|
created_at: string;
|
|
590
611
|
}>]>, "many">;
|
|
591
612
|
}, {
|
|
@@ -599,7 +620,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
599
620
|
created_at: string;
|
|
600
621
|
errors: ({
|
|
601
622
|
message: string;
|
|
602
|
-
error_code: "
|
|
623
|
+
error_code: "deleted_externally";
|
|
603
624
|
created_at: string;
|
|
604
625
|
} | {
|
|
605
626
|
message: string;
|
|
@@ -607,24 +628,28 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
607
628
|
created_at: string;
|
|
608
629
|
} | {
|
|
609
630
|
message: string;
|
|
610
|
-
|
|
631
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
611
632
|
created_at: string;
|
|
612
|
-
}
|
|
613
|
-
warnings: ({
|
|
633
|
+
} | {
|
|
614
634
|
message: string;
|
|
615
|
-
warning_code: "
|
|
635
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
616
636
|
created_at: string;
|
|
617
637
|
} | {
|
|
618
638
|
message: string;
|
|
619
|
-
warning_code: "
|
|
639
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
620
640
|
created_at: string;
|
|
621
|
-
}
|
|
641
|
+
})[];
|
|
642
|
+
warnings: ({
|
|
622
643
|
message: string;
|
|
623
644
|
warning_code: "failed_to_update_on_acs_system";
|
|
624
645
|
created_at: string;
|
|
625
646
|
} | {
|
|
626
647
|
message: string;
|
|
627
|
-
warning_code: "
|
|
648
|
+
warning_code: "being_deleted";
|
|
649
|
+
created_at: string;
|
|
650
|
+
} | {
|
|
651
|
+
message: string;
|
|
652
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
628
653
|
created_at: string;
|
|
629
654
|
})[];
|
|
630
655
|
display_name: string;
|
|
@@ -654,7 +679,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
654
679
|
created_at: string;
|
|
655
680
|
errors: ({
|
|
656
681
|
message: string;
|
|
657
|
-
error_code: "
|
|
682
|
+
error_code: "deleted_externally";
|
|
658
683
|
created_at: string;
|
|
659
684
|
} | {
|
|
660
685
|
message: string;
|
|
@@ -662,24 +687,28 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
662
687
|
created_at: string;
|
|
663
688
|
} | {
|
|
664
689
|
message: string;
|
|
665
|
-
|
|
690
|
+
warning_code: "failed_to_create_on_acs_system";
|
|
666
691
|
created_at: string;
|
|
667
|
-
}
|
|
668
|
-
warnings: ({
|
|
692
|
+
} | {
|
|
669
693
|
message: string;
|
|
670
|
-
warning_code: "
|
|
694
|
+
warning_code: "failed_to_update_on_acs_system";
|
|
671
695
|
created_at: string;
|
|
672
696
|
} | {
|
|
673
697
|
message: string;
|
|
674
|
-
warning_code: "
|
|
698
|
+
warning_code: "failed_to_delete_on_acs_system";
|
|
675
699
|
created_at: string;
|
|
676
|
-
}
|
|
700
|
+
})[];
|
|
701
|
+
warnings: ({
|
|
677
702
|
message: string;
|
|
678
703
|
warning_code: "failed_to_update_on_acs_system";
|
|
679
704
|
created_at: string;
|
|
680
705
|
} | {
|
|
681
706
|
message: string;
|
|
682
|
-
warning_code: "
|
|
707
|
+
warning_code: "being_deleted";
|
|
708
|
+
created_at: string;
|
|
709
|
+
} | {
|
|
710
|
+
message: string;
|
|
711
|
+
warning_code: "salto_ks_user_not_subscribed";
|
|
683
712
|
created_at: string;
|
|
684
713
|
})[];
|
|
685
714
|
display_name: string;
|