@seamapi/types 1.243.0 → 1.244.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 +79 -241
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +116 -417
- package/lib/seam/connect/models/acs/acs-user.d.ts +45 -100
- package/lib/seam/connect/models/acs/acs-user.js +4 -8
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +65 -282
- package/lib/seam/connect/openapi.js +75 -233
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -63
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +4 -8
- package/src/lib/seam/connect/openapi.ts +75 -242
- package/src/lib/seam/connect/route-types.ts +21 -70
|
@@ -34,42 +34,42 @@ export declare const acs_users_error_map: z.ZodObject<{
|
|
|
34
34
|
created_at: z.ZodString;
|
|
35
35
|
message: z.ZodString;
|
|
36
36
|
}, {
|
|
37
|
-
|
|
37
|
+
error_code: z.ZodLiteral<"failed_to_create_on_acs_system">;
|
|
38
38
|
}>, "strip", z.ZodTypeAny, {
|
|
39
39
|
message: string;
|
|
40
|
-
|
|
40
|
+
error_code: "failed_to_create_on_acs_system";
|
|
41
41
|
created_at: string;
|
|
42
42
|
}, {
|
|
43
43
|
message: string;
|
|
44
|
-
|
|
44
|
+
error_code: "failed_to_create_on_acs_system";
|
|
45
45
|
created_at: string;
|
|
46
46
|
}>>>;
|
|
47
47
|
failed_to_update_on_acs_system: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
48
48
|
created_at: z.ZodString;
|
|
49
49
|
message: z.ZodString;
|
|
50
50
|
}, {
|
|
51
|
-
|
|
51
|
+
error_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
52
52
|
}>, "strip", z.ZodTypeAny, {
|
|
53
53
|
message: string;
|
|
54
|
-
|
|
54
|
+
error_code: "failed_to_update_on_acs_system";
|
|
55
55
|
created_at: string;
|
|
56
56
|
}, {
|
|
57
57
|
message: string;
|
|
58
|
-
|
|
58
|
+
error_code: "failed_to_update_on_acs_system";
|
|
59
59
|
created_at: string;
|
|
60
60
|
}>>>;
|
|
61
61
|
failed_to_delete_on_acs_system: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
62
62
|
created_at: z.ZodString;
|
|
63
63
|
message: z.ZodString;
|
|
64
64
|
}, {
|
|
65
|
-
|
|
65
|
+
error_code: z.ZodLiteral<"failed_to_delete_on_acs_system">;
|
|
66
66
|
}>, "strip", z.ZodTypeAny, {
|
|
67
67
|
message: string;
|
|
68
|
-
|
|
68
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
69
69
|
created_at: string;
|
|
70
70
|
}, {
|
|
71
71
|
message: string;
|
|
72
|
-
|
|
72
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
73
73
|
created_at: string;
|
|
74
74
|
}>>>;
|
|
75
75
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -85,17 +85,17 @@ export declare const acs_users_error_map: z.ZodObject<{
|
|
|
85
85
|
} | null | undefined;
|
|
86
86
|
failed_to_create_on_acs_system?: {
|
|
87
87
|
message: string;
|
|
88
|
-
|
|
88
|
+
error_code: "failed_to_create_on_acs_system";
|
|
89
89
|
created_at: string;
|
|
90
90
|
} | null | undefined;
|
|
91
91
|
failed_to_update_on_acs_system?: {
|
|
92
92
|
message: string;
|
|
93
|
-
|
|
93
|
+
error_code: "failed_to_update_on_acs_system";
|
|
94
94
|
created_at: string;
|
|
95
95
|
} | null | undefined;
|
|
96
96
|
failed_to_delete_on_acs_system?: {
|
|
97
97
|
message: string;
|
|
98
|
-
|
|
98
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
99
99
|
created_at: string;
|
|
100
100
|
} | null | undefined;
|
|
101
101
|
}, {
|
|
@@ -111,17 +111,17 @@ export declare const acs_users_error_map: z.ZodObject<{
|
|
|
111
111
|
} | null | undefined;
|
|
112
112
|
failed_to_create_on_acs_system?: {
|
|
113
113
|
message: string;
|
|
114
|
-
|
|
114
|
+
error_code: "failed_to_create_on_acs_system";
|
|
115
115
|
created_at: string;
|
|
116
116
|
} | null | undefined;
|
|
117
117
|
failed_to_update_on_acs_system?: {
|
|
118
118
|
message: string;
|
|
119
|
-
|
|
119
|
+
error_code: "failed_to_update_on_acs_system";
|
|
120
120
|
created_at: string;
|
|
121
121
|
} | null | undefined;
|
|
122
122
|
failed_to_delete_on_acs_system?: {
|
|
123
123
|
message: string;
|
|
124
|
-
|
|
124
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
125
125
|
created_at: string;
|
|
126
126
|
} | null | undefined;
|
|
127
127
|
}>;
|
|
@@ -194,19 +194,6 @@ export declare const acs_users_warnings: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
194
194
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
195
195
|
created_at: z.ZodString;
|
|
196
196
|
message: z.ZodString;
|
|
197
|
-
}, {
|
|
198
|
-
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
199
|
-
}>, "strip", z.ZodTypeAny, {
|
|
200
|
-
message: string;
|
|
201
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
202
|
-
created_at: string;
|
|
203
|
-
}, {
|
|
204
|
-
message: string;
|
|
205
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
206
|
-
created_at: string;
|
|
207
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
208
|
-
created_at: z.ZodString;
|
|
209
|
-
message: z.ZodString;
|
|
210
197
|
}, {
|
|
211
198
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
212
199
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -261,19 +248,6 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
261
248
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
262
249
|
created_at: z.ZodString;
|
|
263
250
|
message: z.ZodString;
|
|
264
|
-
}, {
|
|
265
|
-
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
266
|
-
}>, "strip", z.ZodTypeAny, {
|
|
267
|
-
message: string;
|
|
268
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
269
|
-
created_at: string;
|
|
270
|
-
}, {
|
|
271
|
-
message: string;
|
|
272
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
273
|
-
created_at: string;
|
|
274
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
275
|
-
created_at: z.ZodString;
|
|
276
|
-
message: z.ZodString;
|
|
277
251
|
}, {
|
|
278
252
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
279
253
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -315,40 +289,40 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
315
289
|
created_at: z.ZodString;
|
|
316
290
|
message: z.ZodString;
|
|
317
291
|
}, {
|
|
318
|
-
|
|
292
|
+
error_code: z.ZodLiteral<"failed_to_create_on_acs_system">;
|
|
319
293
|
}>, "strip", z.ZodTypeAny, {
|
|
320
294
|
message: string;
|
|
321
|
-
|
|
295
|
+
error_code: "failed_to_create_on_acs_system";
|
|
322
296
|
created_at: string;
|
|
323
297
|
}, {
|
|
324
298
|
message: string;
|
|
325
|
-
|
|
299
|
+
error_code: "failed_to_create_on_acs_system";
|
|
326
300
|
created_at: string;
|
|
327
301
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
328
302
|
created_at: z.ZodString;
|
|
329
303
|
message: z.ZodString;
|
|
330
304
|
}, {
|
|
331
|
-
|
|
305
|
+
error_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
332
306
|
}>, "strip", z.ZodTypeAny, {
|
|
333
307
|
message: string;
|
|
334
|
-
|
|
308
|
+
error_code: "failed_to_update_on_acs_system";
|
|
335
309
|
created_at: string;
|
|
336
310
|
}, {
|
|
337
311
|
message: string;
|
|
338
|
-
|
|
312
|
+
error_code: "failed_to_update_on_acs_system";
|
|
339
313
|
created_at: string;
|
|
340
314
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
341
315
|
created_at: z.ZodString;
|
|
342
316
|
message: z.ZodString;
|
|
343
317
|
}, {
|
|
344
|
-
|
|
318
|
+
error_code: z.ZodLiteral<"failed_to_delete_on_acs_system">;
|
|
345
319
|
}>, "strip", z.ZodTypeAny, {
|
|
346
320
|
message: string;
|
|
347
|
-
|
|
321
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
348
322
|
created_at: string;
|
|
349
323
|
}, {
|
|
350
324
|
message: string;
|
|
351
|
-
|
|
325
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
352
326
|
created_at: string;
|
|
353
327
|
}>]>, "many">;
|
|
354
328
|
}, {
|
|
@@ -370,22 +344,18 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
370
344
|
created_at: string;
|
|
371
345
|
} | {
|
|
372
346
|
message: string;
|
|
373
|
-
|
|
347
|
+
error_code: "failed_to_create_on_acs_system";
|
|
374
348
|
created_at: string;
|
|
375
349
|
} | {
|
|
376
350
|
message: string;
|
|
377
|
-
|
|
351
|
+
error_code: "failed_to_update_on_acs_system";
|
|
378
352
|
created_at: string;
|
|
379
353
|
} | {
|
|
380
354
|
message: string;
|
|
381
|
-
|
|
355
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
382
356
|
created_at: string;
|
|
383
357
|
})[];
|
|
384
358
|
warnings: ({
|
|
385
|
-
message: string;
|
|
386
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
387
|
-
created_at: string;
|
|
388
|
-
} | {
|
|
389
359
|
message: string;
|
|
390
360
|
warning_code: "being_deleted";
|
|
391
361
|
created_at: string;
|
|
@@ -429,22 +399,18 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
429
399
|
created_at: string;
|
|
430
400
|
} | {
|
|
431
401
|
message: string;
|
|
432
|
-
|
|
402
|
+
error_code: "failed_to_create_on_acs_system";
|
|
433
403
|
created_at: string;
|
|
434
404
|
} | {
|
|
435
405
|
message: string;
|
|
436
|
-
|
|
406
|
+
error_code: "failed_to_update_on_acs_system";
|
|
437
407
|
created_at: string;
|
|
438
408
|
} | {
|
|
439
409
|
message: string;
|
|
440
|
-
|
|
410
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
441
411
|
created_at: string;
|
|
442
412
|
})[];
|
|
443
413
|
warnings: ({
|
|
444
|
-
message: string;
|
|
445
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
446
|
-
created_at: string;
|
|
447
|
-
} | {
|
|
448
414
|
message: string;
|
|
449
415
|
warning_code: "being_deleted";
|
|
450
416
|
created_at: string;
|
|
@@ -519,19 +485,6 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
519
485
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
520
486
|
created_at: z.ZodString;
|
|
521
487
|
message: z.ZodString;
|
|
522
|
-
}, {
|
|
523
|
-
warning_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
524
|
-
}>, "strip", z.ZodTypeAny, {
|
|
525
|
-
message: string;
|
|
526
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
527
|
-
created_at: string;
|
|
528
|
-
}, {
|
|
529
|
-
message: string;
|
|
530
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
531
|
-
created_at: string;
|
|
532
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
533
|
-
created_at: z.ZodString;
|
|
534
|
-
message: z.ZodString;
|
|
535
488
|
}, {
|
|
536
489
|
warning_code: z.ZodLiteral<"salto_ks_user_not_subscribed">;
|
|
537
490
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -573,40 +526,40 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
573
526
|
created_at: z.ZodString;
|
|
574
527
|
message: z.ZodString;
|
|
575
528
|
}, {
|
|
576
|
-
|
|
529
|
+
error_code: z.ZodLiteral<"failed_to_create_on_acs_system">;
|
|
577
530
|
}>, "strip", z.ZodTypeAny, {
|
|
578
531
|
message: string;
|
|
579
|
-
|
|
532
|
+
error_code: "failed_to_create_on_acs_system";
|
|
580
533
|
created_at: string;
|
|
581
534
|
}, {
|
|
582
535
|
message: string;
|
|
583
|
-
|
|
536
|
+
error_code: "failed_to_create_on_acs_system";
|
|
584
537
|
created_at: string;
|
|
585
538
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
586
539
|
created_at: z.ZodString;
|
|
587
540
|
message: z.ZodString;
|
|
588
541
|
}, {
|
|
589
|
-
|
|
542
|
+
error_code: z.ZodLiteral<"failed_to_update_on_acs_system">;
|
|
590
543
|
}>, "strip", z.ZodTypeAny, {
|
|
591
544
|
message: string;
|
|
592
|
-
|
|
545
|
+
error_code: "failed_to_update_on_acs_system";
|
|
593
546
|
created_at: string;
|
|
594
547
|
}, {
|
|
595
548
|
message: string;
|
|
596
|
-
|
|
549
|
+
error_code: "failed_to_update_on_acs_system";
|
|
597
550
|
created_at: string;
|
|
598
551
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
599
552
|
created_at: z.ZodString;
|
|
600
553
|
message: z.ZodString;
|
|
601
554
|
}, {
|
|
602
|
-
|
|
555
|
+
error_code: z.ZodLiteral<"failed_to_delete_on_acs_system">;
|
|
603
556
|
}>, "strip", z.ZodTypeAny, {
|
|
604
557
|
message: string;
|
|
605
|
-
|
|
558
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
606
559
|
created_at: string;
|
|
607
560
|
}, {
|
|
608
561
|
message: string;
|
|
609
|
-
|
|
562
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
610
563
|
created_at: string;
|
|
611
564
|
}>]>, "many">;
|
|
612
565
|
}, {
|
|
@@ -628,22 +581,18 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
628
581
|
created_at: string;
|
|
629
582
|
} | {
|
|
630
583
|
message: string;
|
|
631
|
-
|
|
584
|
+
error_code: "failed_to_create_on_acs_system";
|
|
632
585
|
created_at: string;
|
|
633
586
|
} | {
|
|
634
587
|
message: string;
|
|
635
|
-
|
|
588
|
+
error_code: "failed_to_update_on_acs_system";
|
|
636
589
|
created_at: string;
|
|
637
590
|
} | {
|
|
638
591
|
message: string;
|
|
639
|
-
|
|
592
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
640
593
|
created_at: string;
|
|
641
594
|
})[];
|
|
642
595
|
warnings: ({
|
|
643
|
-
message: string;
|
|
644
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
645
|
-
created_at: string;
|
|
646
|
-
} | {
|
|
647
596
|
message: string;
|
|
648
597
|
warning_code: "being_deleted";
|
|
649
598
|
created_at: string;
|
|
@@ -687,22 +636,18 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
687
636
|
created_at: string;
|
|
688
637
|
} | {
|
|
689
638
|
message: string;
|
|
690
|
-
|
|
639
|
+
error_code: "failed_to_create_on_acs_system";
|
|
691
640
|
created_at: string;
|
|
692
641
|
} | {
|
|
693
642
|
message: string;
|
|
694
|
-
|
|
643
|
+
error_code: "failed_to_update_on_acs_system";
|
|
695
644
|
created_at: string;
|
|
696
645
|
} | {
|
|
697
646
|
message: string;
|
|
698
|
-
|
|
647
|
+
error_code: "failed_to_delete_on_acs_system";
|
|
699
648
|
created_at: string;
|
|
700
649
|
})[];
|
|
701
650
|
warnings: ({
|
|
702
|
-
message: string;
|
|
703
|
-
warning_code: "failed_to_update_on_acs_system";
|
|
704
|
-
created_at: string;
|
|
705
|
-
} | {
|
|
706
651
|
message: string;
|
|
707
652
|
warning_code: "being_deleted";
|
|
708
653
|
created_at: string;
|
|
@@ -29,17 +29,17 @@ const acs_users_salto_ks_subscription_limit_exceeded = common_acs_user_error
|
|
|
29
29
|
.describe(`Indicates that the user could not be subscribed on Salto KS because the subscription limit has been exceeded.`);
|
|
30
30
|
const acs_users_failed_to_create_on_acs_system = common_acs_user_error
|
|
31
31
|
.extend({
|
|
32
|
-
|
|
32
|
+
error_code: z.literal('failed_to_create_on_acs_system'),
|
|
33
33
|
})
|
|
34
34
|
.describe(`Indicates that the user was not created on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.`);
|
|
35
35
|
const acs_users_failed_to_update_on_acs_system = common_acs_user_error
|
|
36
36
|
.extend({
|
|
37
|
-
|
|
37
|
+
error_code: z.literal('failed_to_update_on_acs_system'),
|
|
38
38
|
})
|
|
39
39
|
.describe(`Indicates that the user was not updated on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.`);
|
|
40
40
|
const acs_users_failed_to_delete_on_acs_system = common_acs_user_error
|
|
41
41
|
.extend({
|
|
42
|
-
|
|
42
|
+
error_code: z.literal('failed_to_delete_on_acs_system'),
|
|
43
43
|
})
|
|
44
44
|
.describe(`Indicates that the user was not deleted on the ACS system. This is likely due to an internal unexpected error. Please contact Seam's support if you encounter this.`);
|
|
45
45
|
const acs_user_errors = z
|
|
@@ -85,11 +85,7 @@ export const acs_users_warning_map = z.object({
|
|
|
85
85
|
.nullable(),
|
|
86
86
|
});
|
|
87
87
|
export const acs_users_warnings = z
|
|
88
|
-
.union([
|
|
89
|
-
acs_users_being_deleted,
|
|
90
|
-
acs_users_failed_to_update_on_acs_system,
|
|
91
|
-
acs_users_salto_ks_user_not_subscribed,
|
|
92
|
-
])
|
|
88
|
+
.union([acs_users_being_deleted, acs_users_salto_ks_user_not_subscribed])
|
|
93
89
|
.describe('Warning associated with the `acs_user`.');
|
|
94
90
|
const user_fields = z.object({
|
|
95
91
|
full_name: z.string().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;IACjB,YAAY;CACb,CAAC,CAAA;AAIF,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,4BAA4B,GAAG,qBAAqB;KACvD,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAAC;CAC5C,CAAC;KACD,QAAQ,CACP,8EAA8E,CAC/E,CAAA;AAEH,MAAM,8CAA8C,GAAG,qBAAqB;KACzE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sCAAsC,CAAC;CAC9D,CAAC;KACD,QAAQ,CACP,+GAA+G,CAChH,CAAA;AAEH,MAAM,wCAAwC,GAAG,qBAAqB;KACnE,MAAM,CAAC;IACN,
|
|
1
|
+
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"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"}
|