@seamapi/types 1.378.0 → 1.379.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 +74 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -0
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +60 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +61 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +1 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +30 -0
- package/lib/seam/connect/openapi.js +72 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +42 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +72 -12
- package/src/lib/seam/connect/route-types.ts +42 -0
|
@@ -444,26 +444,33 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
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
|
+
message: z.ZodString;
|
|
447
448
|
}, {
|
|
448
449
|
mutation_code: z.ZodLiteral<"creating">;
|
|
449
450
|
}>, "strip", z.ZodTypeAny, {
|
|
451
|
+
message: string;
|
|
450
452
|
created_at: string;
|
|
451
453
|
mutation_code: "creating";
|
|
452
454
|
}, {
|
|
455
|
+
message: string;
|
|
453
456
|
created_at: string;
|
|
454
457
|
mutation_code: "creating";
|
|
455
458
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
456
459
|
created_at: z.ZodString;
|
|
460
|
+
message: z.ZodString;
|
|
457
461
|
}, {
|
|
458
462
|
mutation_code: z.ZodLiteral<"deleting">;
|
|
459
463
|
}>, "strip", z.ZodTypeAny, {
|
|
464
|
+
message: string;
|
|
460
465
|
created_at: string;
|
|
461
466
|
mutation_code: "deleting";
|
|
462
467
|
}, {
|
|
468
|
+
message: string;
|
|
463
469
|
created_at: string;
|
|
464
470
|
mutation_code: "deleting";
|
|
465
471
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
466
472
|
created_at: z.ZodString;
|
|
473
|
+
message: z.ZodString;
|
|
467
474
|
}, {
|
|
468
475
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
469
476
|
from: z.ZodObject<{
|
|
@@ -493,6 +500,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
493
500
|
phone_number?: string | null | undefined;
|
|
494
501
|
}>;
|
|
495
502
|
}>, "strip", z.ZodTypeAny, {
|
|
503
|
+
message: string;
|
|
496
504
|
created_at: string;
|
|
497
505
|
mutation_code: "updating_user_information";
|
|
498
506
|
from: {
|
|
@@ -506,6 +514,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
506
514
|
phone_number?: string | null | undefined;
|
|
507
515
|
};
|
|
508
516
|
}, {
|
|
517
|
+
message: string;
|
|
509
518
|
created_at: string;
|
|
510
519
|
mutation_code: "updating_user_information";
|
|
511
520
|
from: {
|
|
@@ -520,6 +529,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
520
529
|
};
|
|
521
530
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
522
531
|
created_at: z.ZodString;
|
|
532
|
+
message: z.ZodString;
|
|
523
533
|
}, {
|
|
524
534
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
525
535
|
from: z.ZodObject<{
|
|
@@ -543,6 +553,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
543
553
|
ends_at: string | null;
|
|
544
554
|
}>;
|
|
545
555
|
}>, "strip", z.ZodTypeAny, {
|
|
556
|
+
message: string;
|
|
546
557
|
created_at: string;
|
|
547
558
|
mutation_code: "updating_access_schedule";
|
|
548
559
|
from: {
|
|
@@ -554,6 +565,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
554
565
|
ends_at: string | null;
|
|
555
566
|
};
|
|
556
567
|
}, {
|
|
568
|
+
message: string;
|
|
557
569
|
created_at: string;
|
|
558
570
|
mutation_code: "updating_access_schedule";
|
|
559
571
|
from: {
|
|
@@ -566,6 +578,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
566
578
|
};
|
|
567
579
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
568
580
|
created_at: z.ZodString;
|
|
581
|
+
message: z.ZodString;
|
|
569
582
|
}, {
|
|
570
583
|
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
571
584
|
from: z.ZodObject<{
|
|
@@ -583,6 +596,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
583
596
|
is_suspended: boolean;
|
|
584
597
|
}>;
|
|
585
598
|
}>, "strip", z.ZodTypeAny, {
|
|
599
|
+
message: string;
|
|
586
600
|
created_at: string;
|
|
587
601
|
mutation_code: "updating_suspension_state";
|
|
588
602
|
from: {
|
|
@@ -592,6 +606,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
592
606
|
is_suspended: boolean;
|
|
593
607
|
};
|
|
594
608
|
}, {
|
|
609
|
+
message: string;
|
|
595
610
|
created_at: string;
|
|
596
611
|
mutation_code: "updating_suspension_state";
|
|
597
612
|
from: {
|
|
@@ -602,6 +617,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
602
617
|
};
|
|
603
618
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
604
619
|
created_at: z.ZodString;
|
|
620
|
+
message: z.ZodString;
|
|
605
621
|
}, {
|
|
606
622
|
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
607
623
|
from: z.ZodObject<{
|
|
@@ -619,6 +635,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
619
635
|
acs_access_group_id: string | null;
|
|
620
636
|
}>;
|
|
621
637
|
}>, "strip", z.ZodTypeAny, {
|
|
638
|
+
message: string;
|
|
622
639
|
created_at: string;
|
|
623
640
|
mutation_code: "updating_group_membership";
|
|
624
641
|
from: {
|
|
@@ -628,6 +645,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
628
645
|
acs_access_group_id: string | null;
|
|
629
646
|
};
|
|
630
647
|
}, {
|
|
648
|
+
message: string;
|
|
631
649
|
created_at: string;
|
|
632
650
|
mutation_code: "updating_group_membership";
|
|
633
651
|
from: {
|
|
@@ -704,12 +722,15 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
704
722
|
user_identity_email_address?: string | null | undefined;
|
|
705
723
|
user_identity_phone_number?: string | null | undefined;
|
|
706
724
|
pending_mutations?: ({
|
|
725
|
+
message: string;
|
|
707
726
|
created_at: string;
|
|
708
727
|
mutation_code: "creating";
|
|
709
728
|
} | {
|
|
729
|
+
message: string;
|
|
710
730
|
created_at: string;
|
|
711
731
|
mutation_code: "deleting";
|
|
712
732
|
} | {
|
|
733
|
+
message: string;
|
|
713
734
|
created_at: string;
|
|
714
735
|
mutation_code: "updating_user_information";
|
|
715
736
|
from: {
|
|
@@ -723,6 +744,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
723
744
|
phone_number?: string | null | undefined;
|
|
724
745
|
};
|
|
725
746
|
} | {
|
|
747
|
+
message: string;
|
|
726
748
|
created_at: string;
|
|
727
749
|
mutation_code: "updating_access_schedule";
|
|
728
750
|
from: {
|
|
@@ -734,6 +756,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
734
756
|
ends_at: string | null;
|
|
735
757
|
};
|
|
736
758
|
} | {
|
|
759
|
+
message: string;
|
|
737
760
|
created_at: string;
|
|
738
761
|
mutation_code: "updating_suspension_state";
|
|
739
762
|
from: {
|
|
@@ -743,6 +766,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
743
766
|
is_suspended: boolean;
|
|
744
767
|
};
|
|
745
768
|
} | {
|
|
769
|
+
message: string;
|
|
746
770
|
created_at: string;
|
|
747
771
|
mutation_code: "updating_group_membership";
|
|
748
772
|
from: {
|
|
@@ -812,12 +836,15 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
812
836
|
user_identity_email_address?: string | null | undefined;
|
|
813
837
|
user_identity_phone_number?: string | null | undefined;
|
|
814
838
|
pending_mutations?: ({
|
|
839
|
+
message: string;
|
|
815
840
|
created_at: string;
|
|
816
841
|
mutation_code: "creating";
|
|
817
842
|
} | {
|
|
843
|
+
message: string;
|
|
818
844
|
created_at: string;
|
|
819
845
|
mutation_code: "deleting";
|
|
820
846
|
} | {
|
|
847
|
+
message: string;
|
|
821
848
|
created_at: string;
|
|
822
849
|
mutation_code: "updating_user_information";
|
|
823
850
|
from: {
|
|
@@ -831,6 +858,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
831
858
|
phone_number?: string | null | undefined;
|
|
832
859
|
};
|
|
833
860
|
} | {
|
|
861
|
+
message: string;
|
|
834
862
|
created_at: string;
|
|
835
863
|
mutation_code: "updating_access_schedule";
|
|
836
864
|
from: {
|
|
@@ -842,6 +870,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
842
870
|
ends_at: string | null;
|
|
843
871
|
};
|
|
844
872
|
} | {
|
|
873
|
+
message: string;
|
|
845
874
|
created_at: string;
|
|
846
875
|
mutation_code: "updating_suspension_state";
|
|
847
876
|
from: {
|
|
@@ -851,6 +880,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
851
880
|
is_suspended: boolean;
|
|
852
881
|
};
|
|
853
882
|
} | {
|
|
883
|
+
message: string;
|
|
854
884
|
created_at: string;
|
|
855
885
|
mutation_code: "updating_group_membership";
|
|
856
886
|
from: {
|
|
@@ -995,26 +1025,33 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
995
1025
|
}>]>, "many">;
|
|
996
1026
|
pending_mutations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
997
1027
|
created_at: z.ZodString;
|
|
1028
|
+
message: z.ZodString;
|
|
998
1029
|
}, {
|
|
999
1030
|
mutation_code: z.ZodLiteral<"creating">;
|
|
1000
1031
|
}>, "strip", z.ZodTypeAny, {
|
|
1032
|
+
message: string;
|
|
1001
1033
|
created_at: string;
|
|
1002
1034
|
mutation_code: "creating";
|
|
1003
1035
|
}, {
|
|
1036
|
+
message: string;
|
|
1004
1037
|
created_at: string;
|
|
1005
1038
|
mutation_code: "creating";
|
|
1006
1039
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1007
1040
|
created_at: z.ZodString;
|
|
1041
|
+
message: z.ZodString;
|
|
1008
1042
|
}, {
|
|
1009
1043
|
mutation_code: z.ZodLiteral<"deleting">;
|
|
1010
1044
|
}>, "strip", z.ZodTypeAny, {
|
|
1045
|
+
message: string;
|
|
1011
1046
|
created_at: string;
|
|
1012
1047
|
mutation_code: "deleting";
|
|
1013
1048
|
}, {
|
|
1049
|
+
message: string;
|
|
1014
1050
|
created_at: string;
|
|
1015
1051
|
mutation_code: "deleting";
|
|
1016
1052
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1017
1053
|
created_at: z.ZodString;
|
|
1054
|
+
message: z.ZodString;
|
|
1018
1055
|
}, {
|
|
1019
1056
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
1020
1057
|
from: z.ZodObject<{
|
|
@@ -1044,6 +1081,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1044
1081
|
phone_number?: string | null | undefined;
|
|
1045
1082
|
}>;
|
|
1046
1083
|
}>, "strip", z.ZodTypeAny, {
|
|
1084
|
+
message: string;
|
|
1047
1085
|
created_at: string;
|
|
1048
1086
|
mutation_code: "updating_user_information";
|
|
1049
1087
|
from: {
|
|
@@ -1057,6 +1095,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1057
1095
|
phone_number?: string | null | undefined;
|
|
1058
1096
|
};
|
|
1059
1097
|
}, {
|
|
1098
|
+
message: string;
|
|
1060
1099
|
created_at: string;
|
|
1061
1100
|
mutation_code: "updating_user_information";
|
|
1062
1101
|
from: {
|
|
@@ -1071,6 +1110,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1071
1110
|
};
|
|
1072
1111
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1073
1112
|
created_at: z.ZodString;
|
|
1113
|
+
message: z.ZodString;
|
|
1074
1114
|
}, {
|
|
1075
1115
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
1076
1116
|
from: z.ZodObject<{
|
|
@@ -1094,6 +1134,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1094
1134
|
ends_at: string | null;
|
|
1095
1135
|
}>;
|
|
1096
1136
|
}>, "strip", z.ZodTypeAny, {
|
|
1137
|
+
message: string;
|
|
1097
1138
|
created_at: string;
|
|
1098
1139
|
mutation_code: "updating_access_schedule";
|
|
1099
1140
|
from: {
|
|
@@ -1105,6 +1146,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1105
1146
|
ends_at: string | null;
|
|
1106
1147
|
};
|
|
1107
1148
|
}, {
|
|
1149
|
+
message: string;
|
|
1108
1150
|
created_at: string;
|
|
1109
1151
|
mutation_code: "updating_access_schedule";
|
|
1110
1152
|
from: {
|
|
@@ -1117,6 +1159,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1117
1159
|
};
|
|
1118
1160
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1119
1161
|
created_at: z.ZodString;
|
|
1162
|
+
message: z.ZodString;
|
|
1120
1163
|
}, {
|
|
1121
1164
|
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
1122
1165
|
from: z.ZodObject<{
|
|
@@ -1134,6 +1177,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1134
1177
|
is_suspended: boolean;
|
|
1135
1178
|
}>;
|
|
1136
1179
|
}>, "strip", z.ZodTypeAny, {
|
|
1180
|
+
message: string;
|
|
1137
1181
|
created_at: string;
|
|
1138
1182
|
mutation_code: "updating_suspension_state";
|
|
1139
1183
|
from: {
|
|
@@ -1143,6 +1187,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1143
1187
|
is_suspended: boolean;
|
|
1144
1188
|
};
|
|
1145
1189
|
}, {
|
|
1190
|
+
message: string;
|
|
1146
1191
|
created_at: string;
|
|
1147
1192
|
mutation_code: "updating_suspension_state";
|
|
1148
1193
|
from: {
|
|
@@ -1153,6 +1198,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1153
1198
|
};
|
|
1154
1199
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1155
1200
|
created_at: z.ZodString;
|
|
1201
|
+
message: z.ZodString;
|
|
1156
1202
|
}, {
|
|
1157
1203
|
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
1158
1204
|
from: z.ZodObject<{
|
|
@@ -1170,6 +1216,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1170
1216
|
acs_access_group_id: string | null;
|
|
1171
1217
|
}>;
|
|
1172
1218
|
}>, "strip", z.ZodTypeAny, {
|
|
1219
|
+
message: string;
|
|
1173
1220
|
created_at: string;
|
|
1174
1221
|
mutation_code: "updating_group_membership";
|
|
1175
1222
|
from: {
|
|
@@ -1179,6 +1226,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1179
1226
|
acs_access_group_id: string | null;
|
|
1180
1227
|
};
|
|
1181
1228
|
}, {
|
|
1229
|
+
message: string;
|
|
1182
1230
|
created_at: string;
|
|
1183
1231
|
mutation_code: "updating_group_membership";
|
|
1184
1232
|
from: {
|
|
@@ -1255,12 +1303,15 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1255
1303
|
user_identity_email_address?: string | null | undefined;
|
|
1256
1304
|
user_identity_phone_number?: string | null | undefined;
|
|
1257
1305
|
pending_mutations?: ({
|
|
1306
|
+
message: string;
|
|
1258
1307
|
created_at: string;
|
|
1259
1308
|
mutation_code: "creating";
|
|
1260
1309
|
} | {
|
|
1310
|
+
message: string;
|
|
1261
1311
|
created_at: string;
|
|
1262
1312
|
mutation_code: "deleting";
|
|
1263
1313
|
} | {
|
|
1314
|
+
message: string;
|
|
1264
1315
|
created_at: string;
|
|
1265
1316
|
mutation_code: "updating_user_information";
|
|
1266
1317
|
from: {
|
|
@@ -1274,6 +1325,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1274
1325
|
phone_number?: string | null | undefined;
|
|
1275
1326
|
};
|
|
1276
1327
|
} | {
|
|
1328
|
+
message: string;
|
|
1277
1329
|
created_at: string;
|
|
1278
1330
|
mutation_code: "updating_access_schedule";
|
|
1279
1331
|
from: {
|
|
@@ -1285,6 +1337,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1285
1337
|
ends_at: string | null;
|
|
1286
1338
|
};
|
|
1287
1339
|
} | {
|
|
1340
|
+
message: string;
|
|
1288
1341
|
created_at: string;
|
|
1289
1342
|
mutation_code: "updating_suspension_state";
|
|
1290
1343
|
from: {
|
|
@@ -1294,6 +1347,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1294
1347
|
is_suspended: boolean;
|
|
1295
1348
|
};
|
|
1296
1349
|
} | {
|
|
1350
|
+
message: string;
|
|
1297
1351
|
created_at: string;
|
|
1298
1352
|
mutation_code: "updating_group_membership";
|
|
1299
1353
|
from: {
|
|
@@ -1363,12 +1417,15 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1363
1417
|
user_identity_email_address?: string | null | undefined;
|
|
1364
1418
|
user_identity_phone_number?: string | null | undefined;
|
|
1365
1419
|
pending_mutations?: ({
|
|
1420
|
+
message: string;
|
|
1366
1421
|
created_at: string;
|
|
1367
1422
|
mutation_code: "creating";
|
|
1368
1423
|
} | {
|
|
1424
|
+
message: string;
|
|
1369
1425
|
created_at: string;
|
|
1370
1426
|
mutation_code: "deleting";
|
|
1371
1427
|
} | {
|
|
1428
|
+
message: string;
|
|
1372
1429
|
created_at: string;
|
|
1373
1430
|
mutation_code: "updating_user_information";
|
|
1374
1431
|
from: {
|
|
@@ -1382,6 +1439,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1382
1439
|
phone_number?: string | null | undefined;
|
|
1383
1440
|
};
|
|
1384
1441
|
} | {
|
|
1442
|
+
message: string;
|
|
1385
1443
|
created_at: string;
|
|
1386
1444
|
mutation_code: "updating_access_schedule";
|
|
1387
1445
|
from: {
|
|
@@ -1393,6 +1451,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1393
1451
|
ends_at: string | null;
|
|
1394
1452
|
};
|
|
1395
1453
|
} | {
|
|
1454
|
+
message: string;
|
|
1396
1455
|
created_at: string;
|
|
1397
1456
|
mutation_code: "updating_suspension_state";
|
|
1398
1457
|
from: {
|
|
@@ -1402,6 +1461,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1402
1461
|
is_suspended: boolean;
|
|
1403
1462
|
};
|
|
1404
1463
|
} | {
|
|
1464
|
+
message: string;
|
|
1405
1465
|
created_at: string;
|
|
1406
1466
|
mutation_code: "updating_group_membership";
|
|
1407
1467
|
from: {
|