@seamapi/types 1.375.2 → 1.376.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 +127 -142
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +351 -298
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +182 -150
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +2 -3
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/index.d.ts +1 -1
- package/lib/seam/connect/models/acs/acs-users/index.js +1 -1
- package/lib/seam/connect/models/acs/acs-users/index.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/{pending-modifications.d.ts → pending-mutations.d.ts} +191 -106
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +90 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +56 -56
- package/lib/seam/connect/openapi.js +80 -98
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +119 -98
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +2 -3
- package/src/lib/seam/connect/models/acs/acs-users/index.ts +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +110 -0
- package/src/lib/seam/connect/openapi.ts +80 -98
- package/src/lib/seam/connect/route-types.ts +126 -98
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.js +0 -85
- package/lib/seam/connect/models/acs/acs-users/pending-modifications.js.map +0 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-modifications.ts +0 -109
|
@@ -287,27 +287,27 @@ export declare const acs_user_unapplied_modification_map: z.ZodObject<{
|
|
|
287
287
|
modification_code: "profile";
|
|
288
288
|
}>>>;
|
|
289
289
|
}, "strip", z.ZodTypeAny, {
|
|
290
|
-
profile?: {
|
|
291
|
-
message: string;
|
|
292
|
-
created_at: string;
|
|
293
|
-
modification_code: "profile";
|
|
294
|
-
} | null | undefined;
|
|
295
290
|
suspension_state?: {
|
|
296
291
|
message: string;
|
|
297
292
|
created_at: string;
|
|
298
293
|
modification_code: "suspension_state";
|
|
299
294
|
} | null | undefined;
|
|
300
|
-
}, {
|
|
301
295
|
profile?: {
|
|
302
296
|
message: string;
|
|
303
297
|
created_at: string;
|
|
304
298
|
modification_code: "profile";
|
|
305
299
|
} | null | undefined;
|
|
300
|
+
}, {
|
|
306
301
|
suspension_state?: {
|
|
307
302
|
message: string;
|
|
308
303
|
created_at: string;
|
|
309
304
|
modification_code: "suspension_state";
|
|
310
305
|
} | null | undefined;
|
|
306
|
+
profile?: {
|
|
307
|
+
message: string;
|
|
308
|
+
created_at: string;
|
|
309
|
+
modification_code: "profile";
|
|
310
|
+
} | null | undefined;
|
|
311
311
|
}>;
|
|
312
312
|
export type AcsUserUnappliedModificationMap = z.infer<typeof acs_user_unapplied_modification_map>;
|
|
313
313
|
export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -442,21 +442,31 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
442
442
|
created_at: string;
|
|
443
443
|
error_code: "failed_to_delete_on_acs_system";
|
|
444
444
|
}>]>, "many">;
|
|
445
|
-
|
|
445
|
+
pending_mutations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
446
446
|
created_at: z.ZodString;
|
|
447
447
|
}, {
|
|
448
|
-
|
|
448
|
+
mutation_code: z.ZodLiteral<"creating">;
|
|
449
449
|
}>, "strip", z.ZodTypeAny, {
|
|
450
450
|
created_at: string;
|
|
451
|
-
|
|
451
|
+
mutation_code: "creating";
|
|
452
452
|
}, {
|
|
453
453
|
created_at: string;
|
|
454
|
-
|
|
454
|
+
mutation_code: "creating";
|
|
455
455
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
456
456
|
created_at: z.ZodString;
|
|
457
457
|
}, {
|
|
458
|
-
|
|
459
|
-
|
|
458
|
+
mutation_code: z.ZodLiteral<"deleting">;
|
|
459
|
+
}>, "strip", z.ZodTypeAny, {
|
|
460
|
+
created_at: string;
|
|
461
|
+
mutation_code: "deleting";
|
|
462
|
+
}, {
|
|
463
|
+
created_at: string;
|
|
464
|
+
mutation_code: "deleting";
|
|
465
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
466
|
+
created_at: z.ZodString;
|
|
467
|
+
}, {
|
|
468
|
+
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
469
|
+
from: z.ZodObject<{
|
|
460
470
|
email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
461
471
|
full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
462
472
|
phone_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
@@ -469,7 +479,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
469
479
|
full_name?: string | null | undefined;
|
|
470
480
|
phone_number?: string | null | undefined;
|
|
471
481
|
}>;
|
|
472
|
-
|
|
482
|
+
to: z.ZodObject<{
|
|
473
483
|
email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
474
484
|
full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
475
485
|
phone_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
@@ -484,26 +494,26 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
484
494
|
}>;
|
|
485
495
|
}>, "strip", z.ZodTypeAny, {
|
|
486
496
|
created_at: string;
|
|
487
|
-
|
|
488
|
-
|
|
497
|
+
mutation_code: "updating_user_information";
|
|
498
|
+
from: {
|
|
489
499
|
email_address?: string | null | undefined;
|
|
490
500
|
full_name?: string | null | undefined;
|
|
491
501
|
phone_number?: string | null | undefined;
|
|
492
502
|
};
|
|
493
|
-
|
|
503
|
+
to: {
|
|
494
504
|
email_address?: string | null | undefined;
|
|
495
505
|
full_name?: string | null | undefined;
|
|
496
506
|
phone_number?: string | null | undefined;
|
|
497
507
|
};
|
|
498
508
|
}, {
|
|
499
509
|
created_at: string;
|
|
500
|
-
|
|
501
|
-
|
|
510
|
+
mutation_code: "updating_user_information";
|
|
511
|
+
from: {
|
|
502
512
|
email_address?: string | null | undefined;
|
|
503
513
|
full_name?: string | null | undefined;
|
|
504
514
|
phone_number?: string | null | undefined;
|
|
505
515
|
};
|
|
506
|
-
|
|
516
|
+
to: {
|
|
507
517
|
email_address?: string | null | undefined;
|
|
508
518
|
full_name?: string | null | undefined;
|
|
509
519
|
phone_number?: string | null | undefined;
|
|
@@ -511,8 +521,8 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
511
521
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
512
522
|
created_at: z.ZodString;
|
|
513
523
|
}, {
|
|
514
|
-
|
|
515
|
-
|
|
524
|
+
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
525
|
+
from: z.ZodObject<{
|
|
516
526
|
starts_at: z.ZodString;
|
|
517
527
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
518
528
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -522,7 +532,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
522
532
|
starts_at: string;
|
|
523
533
|
ends_at: string | null;
|
|
524
534
|
}>;
|
|
525
|
-
|
|
535
|
+
to: z.ZodObject<{
|
|
526
536
|
starts_at: z.ZodString;
|
|
527
537
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
528
538
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -534,38 +544,38 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
534
544
|
}>;
|
|
535
545
|
}>, "strip", z.ZodTypeAny, {
|
|
536
546
|
created_at: string;
|
|
537
|
-
|
|
538
|
-
|
|
547
|
+
mutation_code: "updating_access_schedule";
|
|
548
|
+
from: {
|
|
539
549
|
starts_at: string;
|
|
540
550
|
ends_at: string | null;
|
|
541
551
|
};
|
|
542
|
-
|
|
552
|
+
to: {
|
|
543
553
|
starts_at: string;
|
|
544
554
|
ends_at: string | null;
|
|
545
555
|
};
|
|
546
556
|
}, {
|
|
547
557
|
created_at: string;
|
|
548
|
-
|
|
549
|
-
|
|
558
|
+
mutation_code: "updating_access_schedule";
|
|
559
|
+
from: {
|
|
550
560
|
starts_at: string;
|
|
551
561
|
ends_at: string | null;
|
|
552
562
|
};
|
|
553
|
-
|
|
563
|
+
to: {
|
|
554
564
|
starts_at: string;
|
|
555
565
|
ends_at: string | null;
|
|
556
566
|
};
|
|
557
567
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
558
568
|
created_at: z.ZodString;
|
|
559
569
|
}, {
|
|
560
|
-
|
|
561
|
-
|
|
570
|
+
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
571
|
+
from: z.ZodObject<{
|
|
562
572
|
is_suspended: z.ZodBoolean;
|
|
563
573
|
}, "strip", z.ZodTypeAny, {
|
|
564
574
|
is_suspended: boolean;
|
|
565
575
|
}, {
|
|
566
576
|
is_suspended: boolean;
|
|
567
577
|
}>;
|
|
568
|
-
|
|
578
|
+
to: z.ZodObject<{
|
|
569
579
|
is_suspended: z.ZodBoolean;
|
|
570
580
|
}, "strip", z.ZodTypeAny, {
|
|
571
581
|
is_suspended: boolean;
|
|
@@ -574,34 +584,34 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
574
584
|
}>;
|
|
575
585
|
}>, "strip", z.ZodTypeAny, {
|
|
576
586
|
created_at: string;
|
|
577
|
-
|
|
578
|
-
|
|
587
|
+
mutation_code: "updating_suspension_state";
|
|
588
|
+
from: {
|
|
579
589
|
is_suspended: boolean;
|
|
580
590
|
};
|
|
581
|
-
|
|
591
|
+
to: {
|
|
582
592
|
is_suspended: boolean;
|
|
583
593
|
};
|
|
584
594
|
}, {
|
|
585
595
|
created_at: string;
|
|
586
|
-
|
|
587
|
-
|
|
596
|
+
mutation_code: "updating_suspension_state";
|
|
597
|
+
from: {
|
|
588
598
|
is_suspended: boolean;
|
|
589
599
|
};
|
|
590
|
-
|
|
600
|
+
to: {
|
|
591
601
|
is_suspended: boolean;
|
|
592
602
|
};
|
|
593
603
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
594
604
|
created_at: z.ZodString;
|
|
595
605
|
}, {
|
|
596
|
-
|
|
597
|
-
|
|
606
|
+
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
607
|
+
from: z.ZodObject<{
|
|
598
608
|
acs_access_group_id: z.ZodNullable<z.ZodString>;
|
|
599
609
|
}, "strip", z.ZodTypeAny, {
|
|
600
610
|
acs_access_group_id: string | null;
|
|
601
611
|
}, {
|
|
602
612
|
acs_access_group_id: string | null;
|
|
603
613
|
}>;
|
|
604
|
-
|
|
614
|
+
to: z.ZodObject<{
|
|
605
615
|
acs_access_group_id: z.ZodNullable<z.ZodString>;
|
|
606
616
|
}, "strip", z.ZodTypeAny, {
|
|
607
617
|
acs_access_group_id: string | null;
|
|
@@ -610,20 +620,20 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
610
620
|
}>;
|
|
611
621
|
}>, "strip", z.ZodTypeAny, {
|
|
612
622
|
created_at: string;
|
|
613
|
-
|
|
614
|
-
|
|
623
|
+
mutation_code: "updating_group_membership";
|
|
624
|
+
from: {
|
|
615
625
|
acs_access_group_id: string | null;
|
|
616
626
|
};
|
|
617
|
-
|
|
627
|
+
to: {
|
|
618
628
|
acs_access_group_id: string | null;
|
|
619
629
|
};
|
|
620
630
|
}, {
|
|
621
631
|
created_at: string;
|
|
622
|
-
|
|
623
|
-
|
|
632
|
+
mutation_code: "updating_group_membership";
|
|
633
|
+
from: {
|
|
624
634
|
acs_access_group_id: string | null;
|
|
625
635
|
};
|
|
626
|
-
|
|
636
|
+
to: {
|
|
627
637
|
acs_access_group_id: string | null;
|
|
628
638
|
};
|
|
629
639
|
}>]>, "many">>;
|
|
@@ -684,58 +694,61 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
684
694
|
email_address?: string | undefined;
|
|
685
695
|
full_name?: string | undefined;
|
|
686
696
|
phone_number?: string | undefined;
|
|
697
|
+
is_suspended?: boolean | undefined;
|
|
698
|
+
hid_acs_system_id?: string | undefined;
|
|
687
699
|
access_schedule?: {
|
|
688
700
|
starts_at: string;
|
|
689
701
|
ends_at: string | null;
|
|
690
702
|
} | undefined;
|
|
691
|
-
is_suspended?: boolean | undefined;
|
|
692
|
-
hid_acs_system_id?: string | undefined;
|
|
693
703
|
user_identity_full_name?: string | null | undefined;
|
|
694
704
|
user_identity_email_address?: string | null | undefined;
|
|
695
705
|
user_identity_phone_number?: string | null | undefined;
|
|
696
|
-
|
|
706
|
+
pending_mutations?: ({
|
|
697
707
|
created_at: string;
|
|
698
|
-
|
|
708
|
+
mutation_code: "creating";
|
|
699
709
|
} | {
|
|
700
710
|
created_at: string;
|
|
701
|
-
|
|
702
|
-
|
|
711
|
+
mutation_code: "deleting";
|
|
712
|
+
} | {
|
|
713
|
+
created_at: string;
|
|
714
|
+
mutation_code: "updating_user_information";
|
|
715
|
+
from: {
|
|
703
716
|
email_address?: string | null | undefined;
|
|
704
717
|
full_name?: string | null | undefined;
|
|
705
718
|
phone_number?: string | null | undefined;
|
|
706
719
|
};
|
|
707
|
-
|
|
720
|
+
to: {
|
|
708
721
|
email_address?: string | null | undefined;
|
|
709
722
|
full_name?: string | null | undefined;
|
|
710
723
|
phone_number?: string | null | undefined;
|
|
711
724
|
};
|
|
712
725
|
} | {
|
|
713
726
|
created_at: string;
|
|
714
|
-
|
|
715
|
-
|
|
727
|
+
mutation_code: "updating_access_schedule";
|
|
728
|
+
from: {
|
|
716
729
|
starts_at: string;
|
|
717
730
|
ends_at: string | null;
|
|
718
731
|
};
|
|
719
|
-
|
|
732
|
+
to: {
|
|
720
733
|
starts_at: string;
|
|
721
734
|
ends_at: string | null;
|
|
722
735
|
};
|
|
723
736
|
} | {
|
|
724
737
|
created_at: string;
|
|
725
|
-
|
|
726
|
-
|
|
738
|
+
mutation_code: "updating_suspension_state";
|
|
739
|
+
from: {
|
|
727
740
|
is_suspended: boolean;
|
|
728
741
|
};
|
|
729
|
-
|
|
742
|
+
to: {
|
|
730
743
|
is_suspended: boolean;
|
|
731
744
|
};
|
|
732
745
|
} | {
|
|
733
746
|
created_at: string;
|
|
734
|
-
|
|
735
|
-
|
|
747
|
+
mutation_code: "updating_group_membership";
|
|
748
|
+
from: {
|
|
736
749
|
acs_access_group_id: string | null;
|
|
737
750
|
};
|
|
738
|
-
|
|
751
|
+
to: {
|
|
739
752
|
acs_access_group_id: string | null;
|
|
740
753
|
};
|
|
741
754
|
})[] | undefined;
|
|
@@ -789,58 +802,61 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
789
802
|
email_address?: string | undefined;
|
|
790
803
|
full_name?: string | undefined;
|
|
791
804
|
phone_number?: string | undefined;
|
|
805
|
+
is_suspended?: boolean | undefined;
|
|
806
|
+
hid_acs_system_id?: string | undefined;
|
|
792
807
|
access_schedule?: {
|
|
793
808
|
starts_at: string;
|
|
794
809
|
ends_at: string | null;
|
|
795
810
|
} | undefined;
|
|
796
|
-
is_suspended?: boolean | undefined;
|
|
797
|
-
hid_acs_system_id?: string | undefined;
|
|
798
811
|
user_identity_full_name?: string | null | undefined;
|
|
799
812
|
user_identity_email_address?: string | null | undefined;
|
|
800
813
|
user_identity_phone_number?: string | null | undefined;
|
|
801
|
-
|
|
814
|
+
pending_mutations?: ({
|
|
802
815
|
created_at: string;
|
|
803
|
-
|
|
816
|
+
mutation_code: "creating";
|
|
804
817
|
} | {
|
|
805
818
|
created_at: string;
|
|
806
|
-
|
|
807
|
-
|
|
819
|
+
mutation_code: "deleting";
|
|
820
|
+
} | {
|
|
821
|
+
created_at: string;
|
|
822
|
+
mutation_code: "updating_user_information";
|
|
823
|
+
from: {
|
|
808
824
|
email_address?: string | null | undefined;
|
|
809
825
|
full_name?: string | null | undefined;
|
|
810
826
|
phone_number?: string | null | undefined;
|
|
811
827
|
};
|
|
812
|
-
|
|
828
|
+
to: {
|
|
813
829
|
email_address?: string | null | undefined;
|
|
814
830
|
full_name?: string | null | undefined;
|
|
815
831
|
phone_number?: string | null | undefined;
|
|
816
832
|
};
|
|
817
833
|
} | {
|
|
818
834
|
created_at: string;
|
|
819
|
-
|
|
820
|
-
|
|
835
|
+
mutation_code: "updating_access_schedule";
|
|
836
|
+
from: {
|
|
821
837
|
starts_at: string;
|
|
822
838
|
ends_at: string | null;
|
|
823
839
|
};
|
|
824
|
-
|
|
840
|
+
to: {
|
|
825
841
|
starts_at: string;
|
|
826
842
|
ends_at: string | null;
|
|
827
843
|
};
|
|
828
844
|
} | {
|
|
829
845
|
created_at: string;
|
|
830
|
-
|
|
831
|
-
|
|
846
|
+
mutation_code: "updating_suspension_state";
|
|
847
|
+
from: {
|
|
832
848
|
is_suspended: boolean;
|
|
833
849
|
};
|
|
834
|
-
|
|
850
|
+
to: {
|
|
835
851
|
is_suspended: boolean;
|
|
836
852
|
};
|
|
837
853
|
} | {
|
|
838
854
|
created_at: string;
|
|
839
|
-
|
|
840
|
-
|
|
855
|
+
mutation_code: "updating_group_membership";
|
|
856
|
+
from: {
|
|
841
857
|
acs_access_group_id: string | null;
|
|
842
858
|
};
|
|
843
|
-
|
|
859
|
+
to: {
|
|
844
860
|
acs_access_group_id: string | null;
|
|
845
861
|
};
|
|
846
862
|
})[] | undefined;
|
|
@@ -977,21 +993,31 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
977
993
|
created_at: string;
|
|
978
994
|
error_code: "failed_to_delete_on_acs_system";
|
|
979
995
|
}>]>, "many">;
|
|
980
|
-
|
|
996
|
+
pending_mutations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
981
997
|
created_at: z.ZodString;
|
|
982
998
|
}, {
|
|
983
|
-
|
|
999
|
+
mutation_code: z.ZodLiteral<"creating">;
|
|
984
1000
|
}>, "strip", z.ZodTypeAny, {
|
|
985
1001
|
created_at: string;
|
|
986
|
-
|
|
1002
|
+
mutation_code: "creating";
|
|
987
1003
|
}, {
|
|
988
1004
|
created_at: string;
|
|
989
|
-
|
|
1005
|
+
mutation_code: "creating";
|
|
990
1006
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
991
1007
|
created_at: z.ZodString;
|
|
992
1008
|
}, {
|
|
993
|
-
|
|
994
|
-
|
|
1009
|
+
mutation_code: z.ZodLiteral<"deleting">;
|
|
1010
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1011
|
+
created_at: string;
|
|
1012
|
+
mutation_code: "deleting";
|
|
1013
|
+
}, {
|
|
1014
|
+
created_at: string;
|
|
1015
|
+
mutation_code: "deleting";
|
|
1016
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1017
|
+
created_at: z.ZodString;
|
|
1018
|
+
}, {
|
|
1019
|
+
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
1020
|
+
from: z.ZodObject<{
|
|
995
1021
|
email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
996
1022
|
full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
997
1023
|
phone_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
@@ -1004,7 +1030,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1004
1030
|
full_name?: string | null | undefined;
|
|
1005
1031
|
phone_number?: string | null | undefined;
|
|
1006
1032
|
}>;
|
|
1007
|
-
|
|
1033
|
+
to: z.ZodObject<{
|
|
1008
1034
|
email_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1009
1035
|
full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1010
1036
|
phone_number: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
@@ -1019,26 +1045,26 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1019
1045
|
}>;
|
|
1020
1046
|
}>, "strip", z.ZodTypeAny, {
|
|
1021
1047
|
created_at: string;
|
|
1022
|
-
|
|
1023
|
-
|
|
1048
|
+
mutation_code: "updating_user_information";
|
|
1049
|
+
from: {
|
|
1024
1050
|
email_address?: string | null | undefined;
|
|
1025
1051
|
full_name?: string | null | undefined;
|
|
1026
1052
|
phone_number?: string | null | undefined;
|
|
1027
1053
|
};
|
|
1028
|
-
|
|
1054
|
+
to: {
|
|
1029
1055
|
email_address?: string | null | undefined;
|
|
1030
1056
|
full_name?: string | null | undefined;
|
|
1031
1057
|
phone_number?: string | null | undefined;
|
|
1032
1058
|
};
|
|
1033
1059
|
}, {
|
|
1034
1060
|
created_at: string;
|
|
1035
|
-
|
|
1036
|
-
|
|
1061
|
+
mutation_code: "updating_user_information";
|
|
1062
|
+
from: {
|
|
1037
1063
|
email_address?: string | null | undefined;
|
|
1038
1064
|
full_name?: string | null | undefined;
|
|
1039
1065
|
phone_number?: string | null | undefined;
|
|
1040
1066
|
};
|
|
1041
|
-
|
|
1067
|
+
to: {
|
|
1042
1068
|
email_address?: string | null | undefined;
|
|
1043
1069
|
full_name?: string | null | undefined;
|
|
1044
1070
|
phone_number?: string | null | undefined;
|
|
@@ -1046,8 +1072,8 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1046
1072
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1047
1073
|
created_at: z.ZodString;
|
|
1048
1074
|
}, {
|
|
1049
|
-
|
|
1050
|
-
|
|
1075
|
+
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
1076
|
+
from: z.ZodObject<{
|
|
1051
1077
|
starts_at: z.ZodString;
|
|
1052
1078
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
1053
1079
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1057,7 +1083,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1057
1083
|
starts_at: string;
|
|
1058
1084
|
ends_at: string | null;
|
|
1059
1085
|
}>;
|
|
1060
|
-
|
|
1086
|
+
to: z.ZodObject<{
|
|
1061
1087
|
starts_at: z.ZodString;
|
|
1062
1088
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
1063
1089
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1069,38 +1095,38 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1069
1095
|
}>;
|
|
1070
1096
|
}>, "strip", z.ZodTypeAny, {
|
|
1071
1097
|
created_at: string;
|
|
1072
|
-
|
|
1073
|
-
|
|
1098
|
+
mutation_code: "updating_access_schedule";
|
|
1099
|
+
from: {
|
|
1074
1100
|
starts_at: string;
|
|
1075
1101
|
ends_at: string | null;
|
|
1076
1102
|
};
|
|
1077
|
-
|
|
1103
|
+
to: {
|
|
1078
1104
|
starts_at: string;
|
|
1079
1105
|
ends_at: string | null;
|
|
1080
1106
|
};
|
|
1081
1107
|
}, {
|
|
1082
1108
|
created_at: string;
|
|
1083
|
-
|
|
1084
|
-
|
|
1109
|
+
mutation_code: "updating_access_schedule";
|
|
1110
|
+
from: {
|
|
1085
1111
|
starts_at: string;
|
|
1086
1112
|
ends_at: string | null;
|
|
1087
1113
|
};
|
|
1088
|
-
|
|
1114
|
+
to: {
|
|
1089
1115
|
starts_at: string;
|
|
1090
1116
|
ends_at: string | null;
|
|
1091
1117
|
};
|
|
1092
1118
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1093
1119
|
created_at: z.ZodString;
|
|
1094
1120
|
}, {
|
|
1095
|
-
|
|
1096
|
-
|
|
1121
|
+
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
1122
|
+
from: z.ZodObject<{
|
|
1097
1123
|
is_suspended: z.ZodBoolean;
|
|
1098
1124
|
}, "strip", z.ZodTypeAny, {
|
|
1099
1125
|
is_suspended: boolean;
|
|
1100
1126
|
}, {
|
|
1101
1127
|
is_suspended: boolean;
|
|
1102
1128
|
}>;
|
|
1103
|
-
|
|
1129
|
+
to: z.ZodObject<{
|
|
1104
1130
|
is_suspended: z.ZodBoolean;
|
|
1105
1131
|
}, "strip", z.ZodTypeAny, {
|
|
1106
1132
|
is_suspended: boolean;
|
|
@@ -1109,34 +1135,34 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1109
1135
|
}>;
|
|
1110
1136
|
}>, "strip", z.ZodTypeAny, {
|
|
1111
1137
|
created_at: string;
|
|
1112
|
-
|
|
1113
|
-
|
|
1138
|
+
mutation_code: "updating_suspension_state";
|
|
1139
|
+
from: {
|
|
1114
1140
|
is_suspended: boolean;
|
|
1115
1141
|
};
|
|
1116
|
-
|
|
1142
|
+
to: {
|
|
1117
1143
|
is_suspended: boolean;
|
|
1118
1144
|
};
|
|
1119
1145
|
}, {
|
|
1120
1146
|
created_at: string;
|
|
1121
|
-
|
|
1122
|
-
|
|
1147
|
+
mutation_code: "updating_suspension_state";
|
|
1148
|
+
from: {
|
|
1123
1149
|
is_suspended: boolean;
|
|
1124
1150
|
};
|
|
1125
|
-
|
|
1151
|
+
to: {
|
|
1126
1152
|
is_suspended: boolean;
|
|
1127
1153
|
};
|
|
1128
1154
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1129
1155
|
created_at: z.ZodString;
|
|
1130
1156
|
}, {
|
|
1131
|
-
|
|
1132
|
-
|
|
1157
|
+
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
1158
|
+
from: z.ZodObject<{
|
|
1133
1159
|
acs_access_group_id: z.ZodNullable<z.ZodString>;
|
|
1134
1160
|
}, "strip", z.ZodTypeAny, {
|
|
1135
1161
|
acs_access_group_id: string | null;
|
|
1136
1162
|
}, {
|
|
1137
1163
|
acs_access_group_id: string | null;
|
|
1138
1164
|
}>;
|
|
1139
|
-
|
|
1165
|
+
to: z.ZodObject<{
|
|
1140
1166
|
acs_access_group_id: z.ZodNullable<z.ZodString>;
|
|
1141
1167
|
}, "strip", z.ZodTypeAny, {
|
|
1142
1168
|
acs_access_group_id: string | null;
|
|
@@ -1145,20 +1171,20 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1145
1171
|
}>;
|
|
1146
1172
|
}>, "strip", z.ZodTypeAny, {
|
|
1147
1173
|
created_at: string;
|
|
1148
|
-
|
|
1149
|
-
|
|
1174
|
+
mutation_code: "updating_group_membership";
|
|
1175
|
+
from: {
|
|
1150
1176
|
acs_access_group_id: string | null;
|
|
1151
1177
|
};
|
|
1152
|
-
|
|
1178
|
+
to: {
|
|
1153
1179
|
acs_access_group_id: string | null;
|
|
1154
1180
|
};
|
|
1155
1181
|
}, {
|
|
1156
1182
|
created_at: string;
|
|
1157
|
-
|
|
1158
|
-
|
|
1183
|
+
mutation_code: "updating_group_membership";
|
|
1184
|
+
from: {
|
|
1159
1185
|
acs_access_group_id: string | null;
|
|
1160
1186
|
};
|
|
1161
|
-
|
|
1187
|
+
to: {
|
|
1162
1188
|
acs_access_group_id: string | null;
|
|
1163
1189
|
};
|
|
1164
1190
|
}>]>, "many">>;
|
|
@@ -1219,58 +1245,61 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1219
1245
|
email_address?: string | undefined;
|
|
1220
1246
|
full_name?: string | undefined;
|
|
1221
1247
|
phone_number?: string | undefined;
|
|
1248
|
+
is_suspended?: boolean | undefined;
|
|
1249
|
+
hid_acs_system_id?: string | undefined;
|
|
1222
1250
|
access_schedule?: {
|
|
1223
1251
|
starts_at: string;
|
|
1224
1252
|
ends_at: string | null;
|
|
1225
1253
|
} | undefined;
|
|
1226
|
-
is_suspended?: boolean | undefined;
|
|
1227
|
-
hid_acs_system_id?: string | undefined;
|
|
1228
1254
|
user_identity_full_name?: string | null | undefined;
|
|
1229
1255
|
user_identity_email_address?: string | null | undefined;
|
|
1230
1256
|
user_identity_phone_number?: string | null | undefined;
|
|
1231
|
-
|
|
1257
|
+
pending_mutations?: ({
|
|
1232
1258
|
created_at: string;
|
|
1233
|
-
|
|
1259
|
+
mutation_code: "creating";
|
|
1234
1260
|
} | {
|
|
1235
1261
|
created_at: string;
|
|
1236
|
-
|
|
1237
|
-
|
|
1262
|
+
mutation_code: "deleting";
|
|
1263
|
+
} | {
|
|
1264
|
+
created_at: string;
|
|
1265
|
+
mutation_code: "updating_user_information";
|
|
1266
|
+
from: {
|
|
1238
1267
|
email_address?: string | null | undefined;
|
|
1239
1268
|
full_name?: string | null | undefined;
|
|
1240
1269
|
phone_number?: string | null | undefined;
|
|
1241
1270
|
};
|
|
1242
|
-
|
|
1271
|
+
to: {
|
|
1243
1272
|
email_address?: string | null | undefined;
|
|
1244
1273
|
full_name?: string | null | undefined;
|
|
1245
1274
|
phone_number?: string | null | undefined;
|
|
1246
1275
|
};
|
|
1247
1276
|
} | {
|
|
1248
1277
|
created_at: string;
|
|
1249
|
-
|
|
1250
|
-
|
|
1278
|
+
mutation_code: "updating_access_schedule";
|
|
1279
|
+
from: {
|
|
1251
1280
|
starts_at: string;
|
|
1252
1281
|
ends_at: string | null;
|
|
1253
1282
|
};
|
|
1254
|
-
|
|
1283
|
+
to: {
|
|
1255
1284
|
starts_at: string;
|
|
1256
1285
|
ends_at: string | null;
|
|
1257
1286
|
};
|
|
1258
1287
|
} | {
|
|
1259
1288
|
created_at: string;
|
|
1260
|
-
|
|
1261
|
-
|
|
1289
|
+
mutation_code: "updating_suspension_state";
|
|
1290
|
+
from: {
|
|
1262
1291
|
is_suspended: boolean;
|
|
1263
1292
|
};
|
|
1264
|
-
|
|
1293
|
+
to: {
|
|
1265
1294
|
is_suspended: boolean;
|
|
1266
1295
|
};
|
|
1267
1296
|
} | {
|
|
1268
1297
|
created_at: string;
|
|
1269
|
-
|
|
1270
|
-
|
|
1298
|
+
mutation_code: "updating_group_membership";
|
|
1299
|
+
from: {
|
|
1271
1300
|
acs_access_group_id: string | null;
|
|
1272
1301
|
};
|
|
1273
|
-
|
|
1302
|
+
to: {
|
|
1274
1303
|
acs_access_group_id: string | null;
|
|
1275
1304
|
};
|
|
1276
1305
|
})[] | undefined;
|
|
@@ -1324,58 +1353,61 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1324
1353
|
email_address?: string | undefined;
|
|
1325
1354
|
full_name?: string | undefined;
|
|
1326
1355
|
phone_number?: string | undefined;
|
|
1356
|
+
is_suspended?: boolean | undefined;
|
|
1357
|
+
hid_acs_system_id?: string | undefined;
|
|
1327
1358
|
access_schedule?: {
|
|
1328
1359
|
starts_at: string;
|
|
1329
1360
|
ends_at: string | null;
|
|
1330
1361
|
} | undefined;
|
|
1331
|
-
is_suspended?: boolean | undefined;
|
|
1332
|
-
hid_acs_system_id?: string | undefined;
|
|
1333
1362
|
user_identity_full_name?: string | null | undefined;
|
|
1334
1363
|
user_identity_email_address?: string | null | undefined;
|
|
1335
1364
|
user_identity_phone_number?: string | null | undefined;
|
|
1336
|
-
|
|
1365
|
+
pending_mutations?: ({
|
|
1337
1366
|
created_at: string;
|
|
1338
|
-
|
|
1367
|
+
mutation_code: "creating";
|
|
1339
1368
|
} | {
|
|
1340
1369
|
created_at: string;
|
|
1341
|
-
|
|
1342
|
-
|
|
1370
|
+
mutation_code: "deleting";
|
|
1371
|
+
} | {
|
|
1372
|
+
created_at: string;
|
|
1373
|
+
mutation_code: "updating_user_information";
|
|
1374
|
+
from: {
|
|
1343
1375
|
email_address?: string | null | undefined;
|
|
1344
1376
|
full_name?: string | null | undefined;
|
|
1345
1377
|
phone_number?: string | null | undefined;
|
|
1346
1378
|
};
|
|
1347
|
-
|
|
1379
|
+
to: {
|
|
1348
1380
|
email_address?: string | null | undefined;
|
|
1349
1381
|
full_name?: string | null | undefined;
|
|
1350
1382
|
phone_number?: string | null | undefined;
|
|
1351
1383
|
};
|
|
1352
1384
|
} | {
|
|
1353
1385
|
created_at: string;
|
|
1354
|
-
|
|
1355
|
-
|
|
1386
|
+
mutation_code: "updating_access_schedule";
|
|
1387
|
+
from: {
|
|
1356
1388
|
starts_at: string;
|
|
1357
1389
|
ends_at: string | null;
|
|
1358
1390
|
};
|
|
1359
|
-
|
|
1391
|
+
to: {
|
|
1360
1392
|
starts_at: string;
|
|
1361
1393
|
ends_at: string | null;
|
|
1362
1394
|
};
|
|
1363
1395
|
} | {
|
|
1364
1396
|
created_at: string;
|
|
1365
|
-
|
|
1366
|
-
|
|
1397
|
+
mutation_code: "updating_suspension_state";
|
|
1398
|
+
from: {
|
|
1367
1399
|
is_suspended: boolean;
|
|
1368
1400
|
};
|
|
1369
|
-
|
|
1401
|
+
to: {
|
|
1370
1402
|
is_suspended: boolean;
|
|
1371
1403
|
};
|
|
1372
1404
|
} | {
|
|
1373
1405
|
created_at: string;
|
|
1374
|
-
|
|
1375
|
-
|
|
1406
|
+
mutation_code: "updating_group_membership";
|
|
1407
|
+
from: {
|
|
1376
1408
|
acs_access_group_id: string | null;
|
|
1377
1409
|
};
|
|
1378
|
-
|
|
1410
|
+
to: {
|
|
1379
1411
|
acs_access_group_id: string | null;
|
|
1380
1412
|
};
|
|
1381
1413
|
})[] | undefined;
|