@seamapi/types 1.377.0 → 1.378.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 +92 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +224 -118
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +28 -28
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +195 -10
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +16 -3
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/bridges/bridge-client-session.d.ts +80 -80
- package/lib/seam/connect/models/bridges/bridge-client-session.js +5 -0
- package/lib/seam/connect/models/bridges/bridge-client-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +94 -8
- package/lib/seam/connect/openapi.js +78 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -57
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +17 -3
- package/src/lib/seam/connect/models/bridges/bridge-client-session.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +79 -16
- package/src/lib/seam/connect/route-types.ts +77 -57
|
@@ -523,45 +523,45 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
523
523
|
}, {
|
|
524
524
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
525
525
|
from: z.ZodObject<{
|
|
526
|
-
starts_at: z.ZodString
|
|
526
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
527
527
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
528
528
|
}, "strip", z.ZodTypeAny, {
|
|
529
|
-
starts_at: string;
|
|
529
|
+
starts_at: string | null;
|
|
530
530
|
ends_at: string | null;
|
|
531
531
|
}, {
|
|
532
|
-
starts_at: string;
|
|
532
|
+
starts_at: string | null;
|
|
533
533
|
ends_at: string | null;
|
|
534
534
|
}>;
|
|
535
535
|
to: z.ZodObject<{
|
|
536
|
-
starts_at: z.ZodString
|
|
536
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
537
537
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
538
538
|
}, "strip", z.ZodTypeAny, {
|
|
539
|
-
starts_at: string;
|
|
539
|
+
starts_at: string | null;
|
|
540
540
|
ends_at: string | null;
|
|
541
541
|
}, {
|
|
542
|
-
starts_at: string;
|
|
542
|
+
starts_at: string | null;
|
|
543
543
|
ends_at: string | null;
|
|
544
544
|
}>;
|
|
545
545
|
}>, "strip", z.ZodTypeAny, {
|
|
546
546
|
created_at: string;
|
|
547
547
|
mutation_code: "updating_access_schedule";
|
|
548
548
|
from: {
|
|
549
|
-
starts_at: string;
|
|
549
|
+
starts_at: string | null;
|
|
550
550
|
ends_at: string | null;
|
|
551
551
|
};
|
|
552
552
|
to: {
|
|
553
|
-
starts_at: string;
|
|
553
|
+
starts_at: string | null;
|
|
554
554
|
ends_at: string | null;
|
|
555
555
|
};
|
|
556
556
|
}, {
|
|
557
557
|
created_at: string;
|
|
558
558
|
mutation_code: "updating_access_schedule";
|
|
559
559
|
from: {
|
|
560
|
-
starts_at: string;
|
|
560
|
+
starts_at: string | null;
|
|
561
561
|
ends_at: string | null;
|
|
562
562
|
};
|
|
563
563
|
to: {
|
|
564
|
-
starts_at: string;
|
|
564
|
+
starts_at: string | null;
|
|
565
565
|
ends_at: string | null;
|
|
566
566
|
};
|
|
567
567
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -726,11 +726,11 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
726
726
|
created_at: string;
|
|
727
727
|
mutation_code: "updating_access_schedule";
|
|
728
728
|
from: {
|
|
729
|
-
starts_at: string;
|
|
729
|
+
starts_at: string | null;
|
|
730
730
|
ends_at: string | null;
|
|
731
731
|
};
|
|
732
732
|
to: {
|
|
733
|
-
starts_at: string;
|
|
733
|
+
starts_at: string | null;
|
|
734
734
|
ends_at: string | null;
|
|
735
735
|
};
|
|
736
736
|
} | {
|
|
@@ -834,11 +834,11 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
834
834
|
created_at: string;
|
|
835
835
|
mutation_code: "updating_access_schedule";
|
|
836
836
|
from: {
|
|
837
|
-
starts_at: string;
|
|
837
|
+
starts_at: string | null;
|
|
838
838
|
ends_at: string | null;
|
|
839
839
|
};
|
|
840
840
|
to: {
|
|
841
|
-
starts_at: string;
|
|
841
|
+
starts_at: string | null;
|
|
842
842
|
ends_at: string | null;
|
|
843
843
|
};
|
|
844
844
|
} | {
|
|
@@ -1074,45 +1074,45 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1074
1074
|
}, {
|
|
1075
1075
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
1076
1076
|
from: z.ZodObject<{
|
|
1077
|
-
starts_at: z.ZodString
|
|
1077
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
1078
1078
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
1079
1079
|
}, "strip", z.ZodTypeAny, {
|
|
1080
|
-
starts_at: string;
|
|
1080
|
+
starts_at: string | null;
|
|
1081
1081
|
ends_at: string | null;
|
|
1082
1082
|
}, {
|
|
1083
|
-
starts_at: string;
|
|
1083
|
+
starts_at: string | null;
|
|
1084
1084
|
ends_at: string | null;
|
|
1085
1085
|
}>;
|
|
1086
1086
|
to: z.ZodObject<{
|
|
1087
|
-
starts_at: z.ZodString
|
|
1087
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
1088
1088
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
1089
1089
|
}, "strip", z.ZodTypeAny, {
|
|
1090
|
-
starts_at: string;
|
|
1090
|
+
starts_at: string | null;
|
|
1091
1091
|
ends_at: string | null;
|
|
1092
1092
|
}, {
|
|
1093
|
-
starts_at: string;
|
|
1093
|
+
starts_at: string | null;
|
|
1094
1094
|
ends_at: string | null;
|
|
1095
1095
|
}>;
|
|
1096
1096
|
}>, "strip", z.ZodTypeAny, {
|
|
1097
1097
|
created_at: string;
|
|
1098
1098
|
mutation_code: "updating_access_schedule";
|
|
1099
1099
|
from: {
|
|
1100
|
-
starts_at: string;
|
|
1100
|
+
starts_at: string | null;
|
|
1101
1101
|
ends_at: string | null;
|
|
1102
1102
|
};
|
|
1103
1103
|
to: {
|
|
1104
|
-
starts_at: string;
|
|
1104
|
+
starts_at: string | null;
|
|
1105
1105
|
ends_at: string | null;
|
|
1106
1106
|
};
|
|
1107
1107
|
}, {
|
|
1108
1108
|
created_at: string;
|
|
1109
1109
|
mutation_code: "updating_access_schedule";
|
|
1110
1110
|
from: {
|
|
1111
|
-
starts_at: string;
|
|
1111
|
+
starts_at: string | null;
|
|
1112
1112
|
ends_at: string | null;
|
|
1113
1113
|
};
|
|
1114
1114
|
to: {
|
|
1115
|
-
starts_at: string;
|
|
1115
|
+
starts_at: string | null;
|
|
1116
1116
|
ends_at: string | null;
|
|
1117
1117
|
};
|
|
1118
1118
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1277,11 +1277,11 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1277
1277
|
created_at: string;
|
|
1278
1278
|
mutation_code: "updating_access_schedule";
|
|
1279
1279
|
from: {
|
|
1280
|
-
starts_at: string;
|
|
1280
|
+
starts_at: string | null;
|
|
1281
1281
|
ends_at: string | null;
|
|
1282
1282
|
};
|
|
1283
1283
|
to: {
|
|
1284
|
-
starts_at: string;
|
|
1284
|
+
starts_at: string | null;
|
|
1285
1285
|
ends_at: string | null;
|
|
1286
1286
|
};
|
|
1287
1287
|
} | {
|
|
@@ -1385,11 +1385,11 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
1385
1385
|
created_at: string;
|
|
1386
1386
|
mutation_code: "updating_access_schedule";
|
|
1387
1387
|
from: {
|
|
1388
|
-
starts_at: string;
|
|
1388
|
+
starts_at: string | null;
|
|
1389
1389
|
ends_at: string | null;
|
|
1390
1390
|
};
|
|
1391
1391
|
to: {
|
|
1392
|
-
starts_at: string;
|
|
1392
|
+
starts_at: string | null;
|
|
1393
1393
|
ends_at: string | null;
|
|
1394
1394
|
};
|
|
1395
1395
|
} | {
|
|
@@ -137,45 +137,45 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
137
137
|
}, {
|
|
138
138
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
139
139
|
from: z.ZodObject<{
|
|
140
|
-
starts_at: z.ZodString
|
|
140
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
141
141
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
starts_at: string;
|
|
143
|
+
starts_at: string | null;
|
|
144
144
|
ends_at: string | null;
|
|
145
145
|
}, {
|
|
146
|
-
starts_at: string;
|
|
146
|
+
starts_at: string | null;
|
|
147
147
|
ends_at: string | null;
|
|
148
148
|
}>;
|
|
149
149
|
to: z.ZodObject<{
|
|
150
|
-
starts_at: z.ZodString
|
|
150
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
151
151
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
152
152
|
}, "strip", z.ZodTypeAny, {
|
|
153
|
-
starts_at: string;
|
|
153
|
+
starts_at: string | null;
|
|
154
154
|
ends_at: string | null;
|
|
155
155
|
}, {
|
|
156
|
-
starts_at: string;
|
|
156
|
+
starts_at: string | null;
|
|
157
157
|
ends_at: string | null;
|
|
158
158
|
}>;
|
|
159
159
|
}>, "strip", z.ZodTypeAny, {
|
|
160
160
|
created_at: string;
|
|
161
161
|
mutation_code: "updating_access_schedule";
|
|
162
162
|
from: {
|
|
163
|
-
starts_at: string;
|
|
163
|
+
starts_at: string | null;
|
|
164
164
|
ends_at: string | null;
|
|
165
165
|
};
|
|
166
166
|
to: {
|
|
167
|
-
starts_at: string;
|
|
167
|
+
starts_at: string | null;
|
|
168
168
|
ends_at: string | null;
|
|
169
169
|
};
|
|
170
170
|
}, {
|
|
171
171
|
created_at: string;
|
|
172
172
|
mutation_code: "updating_access_schedule";
|
|
173
173
|
from: {
|
|
174
|
-
starts_at: string;
|
|
174
|
+
starts_at: string | null;
|
|
175
175
|
ends_at: string | null;
|
|
176
176
|
};
|
|
177
177
|
to: {
|
|
178
|
-
starts_at: string;
|
|
178
|
+
starts_at: string | null;
|
|
179
179
|
ends_at: string | null;
|
|
180
180
|
};
|
|
181
181
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -275,6 +275,127 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
275
275
|
created_at: string;
|
|
276
276
|
mutation_code: "deleting";
|
|
277
277
|
}>>>;
|
|
278
|
+
updating_access_schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
279
|
+
created_at: z.ZodString;
|
|
280
|
+
}, {
|
|
281
|
+
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
282
|
+
from: z.ZodObject<{
|
|
283
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
284
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
285
|
+
}, "strip", z.ZodTypeAny, {
|
|
286
|
+
starts_at: string | null;
|
|
287
|
+
ends_at: string | null;
|
|
288
|
+
}, {
|
|
289
|
+
starts_at: string | null;
|
|
290
|
+
ends_at: string | null;
|
|
291
|
+
}>;
|
|
292
|
+
to: z.ZodObject<{
|
|
293
|
+
starts_at: z.ZodNullable<z.ZodString>;
|
|
294
|
+
ends_at: z.ZodNullable<z.ZodString>;
|
|
295
|
+
}, "strip", z.ZodTypeAny, {
|
|
296
|
+
starts_at: string | null;
|
|
297
|
+
ends_at: string | null;
|
|
298
|
+
}, {
|
|
299
|
+
starts_at: string | null;
|
|
300
|
+
ends_at: string | null;
|
|
301
|
+
}>;
|
|
302
|
+
}>, "strip", z.ZodTypeAny, {
|
|
303
|
+
created_at: string;
|
|
304
|
+
mutation_code: "updating_access_schedule";
|
|
305
|
+
from: {
|
|
306
|
+
starts_at: string | null;
|
|
307
|
+
ends_at: string | null;
|
|
308
|
+
};
|
|
309
|
+
to: {
|
|
310
|
+
starts_at: string | null;
|
|
311
|
+
ends_at: string | null;
|
|
312
|
+
};
|
|
313
|
+
}, {
|
|
314
|
+
created_at: string;
|
|
315
|
+
mutation_code: "updating_access_schedule";
|
|
316
|
+
from: {
|
|
317
|
+
starts_at: string | null;
|
|
318
|
+
ends_at: string | null;
|
|
319
|
+
};
|
|
320
|
+
to: {
|
|
321
|
+
starts_at: string | null;
|
|
322
|
+
ends_at: string | null;
|
|
323
|
+
};
|
|
324
|
+
}>>>;
|
|
325
|
+
updating_group_membership: z.ZodNullable<z.ZodOptional<z.ZodMap<z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
|
|
326
|
+
created_at: z.ZodString;
|
|
327
|
+
}, {
|
|
328
|
+
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
329
|
+
from: z.ZodObject<{
|
|
330
|
+
acs_access_group_id: z.ZodNullable<z.ZodString>;
|
|
331
|
+
}, "strip", z.ZodTypeAny, {
|
|
332
|
+
acs_access_group_id: string | null;
|
|
333
|
+
}, {
|
|
334
|
+
acs_access_group_id: string | null;
|
|
335
|
+
}>;
|
|
336
|
+
to: z.ZodObject<{
|
|
337
|
+
acs_access_group_id: z.ZodNullable<z.ZodString>;
|
|
338
|
+
}, "strip", z.ZodTypeAny, {
|
|
339
|
+
acs_access_group_id: string | null;
|
|
340
|
+
}, {
|
|
341
|
+
acs_access_group_id: string | null;
|
|
342
|
+
}>;
|
|
343
|
+
}>, "strip", z.ZodTypeAny, {
|
|
344
|
+
created_at: string;
|
|
345
|
+
mutation_code: "updating_group_membership";
|
|
346
|
+
from: {
|
|
347
|
+
acs_access_group_id: string | null;
|
|
348
|
+
};
|
|
349
|
+
to: {
|
|
350
|
+
acs_access_group_id: string | null;
|
|
351
|
+
};
|
|
352
|
+
}, {
|
|
353
|
+
created_at: string;
|
|
354
|
+
mutation_code: "updating_group_membership";
|
|
355
|
+
from: {
|
|
356
|
+
acs_access_group_id: string | null;
|
|
357
|
+
};
|
|
358
|
+
to: {
|
|
359
|
+
acs_access_group_id: string | null;
|
|
360
|
+
};
|
|
361
|
+
}>>>>;
|
|
362
|
+
updating_suspension_state: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
363
|
+
created_at: z.ZodString;
|
|
364
|
+
}, {
|
|
365
|
+
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
366
|
+
from: z.ZodObject<{
|
|
367
|
+
is_suspended: z.ZodBoolean;
|
|
368
|
+
}, "strip", z.ZodTypeAny, {
|
|
369
|
+
is_suspended: boolean;
|
|
370
|
+
}, {
|
|
371
|
+
is_suspended: boolean;
|
|
372
|
+
}>;
|
|
373
|
+
to: z.ZodObject<{
|
|
374
|
+
is_suspended: z.ZodBoolean;
|
|
375
|
+
}, "strip", z.ZodTypeAny, {
|
|
376
|
+
is_suspended: boolean;
|
|
377
|
+
}, {
|
|
378
|
+
is_suspended: boolean;
|
|
379
|
+
}>;
|
|
380
|
+
}>, "strip", z.ZodTypeAny, {
|
|
381
|
+
created_at: string;
|
|
382
|
+
mutation_code: "updating_suspension_state";
|
|
383
|
+
from: {
|
|
384
|
+
is_suspended: boolean;
|
|
385
|
+
};
|
|
386
|
+
to: {
|
|
387
|
+
is_suspended: boolean;
|
|
388
|
+
};
|
|
389
|
+
}, {
|
|
390
|
+
created_at: string;
|
|
391
|
+
mutation_code: "updating_suspension_state";
|
|
392
|
+
from: {
|
|
393
|
+
is_suspended: boolean;
|
|
394
|
+
};
|
|
395
|
+
to: {
|
|
396
|
+
is_suspended: boolean;
|
|
397
|
+
};
|
|
398
|
+
}>>>;
|
|
278
399
|
'updating_user_information.full_name': z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
279
400
|
created_at: z.ZodString;
|
|
280
401
|
}, {
|
|
@@ -395,6 +516,38 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
395
516
|
created_at: string;
|
|
396
517
|
mutation_code: "deleting";
|
|
397
518
|
} | null | undefined;
|
|
519
|
+
updating_access_schedule?: {
|
|
520
|
+
created_at: string;
|
|
521
|
+
mutation_code: "updating_access_schedule";
|
|
522
|
+
from: {
|
|
523
|
+
starts_at: string | null;
|
|
524
|
+
ends_at: string | null;
|
|
525
|
+
};
|
|
526
|
+
to: {
|
|
527
|
+
starts_at: string | null;
|
|
528
|
+
ends_at: string | null;
|
|
529
|
+
};
|
|
530
|
+
} | null | undefined;
|
|
531
|
+
updating_suspension_state?: {
|
|
532
|
+
created_at: string;
|
|
533
|
+
mutation_code: "updating_suspension_state";
|
|
534
|
+
from: {
|
|
535
|
+
is_suspended: boolean;
|
|
536
|
+
};
|
|
537
|
+
to: {
|
|
538
|
+
is_suspended: boolean;
|
|
539
|
+
};
|
|
540
|
+
} | null | undefined;
|
|
541
|
+
updating_group_membership?: Map<string, {
|
|
542
|
+
created_at: string;
|
|
543
|
+
mutation_code: "updating_group_membership";
|
|
544
|
+
from: {
|
|
545
|
+
acs_access_group_id: string | null;
|
|
546
|
+
};
|
|
547
|
+
to: {
|
|
548
|
+
acs_access_group_id: string | null;
|
|
549
|
+
};
|
|
550
|
+
}> | null | undefined;
|
|
398
551
|
'updating_user_information.full_name'?: {
|
|
399
552
|
created_at: string;
|
|
400
553
|
mutation_code: "updating_user_information";
|
|
@@ -434,6 +587,38 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
434
587
|
created_at: string;
|
|
435
588
|
mutation_code: "deleting";
|
|
436
589
|
} | null | undefined;
|
|
590
|
+
updating_access_schedule?: {
|
|
591
|
+
created_at: string;
|
|
592
|
+
mutation_code: "updating_access_schedule";
|
|
593
|
+
from: {
|
|
594
|
+
starts_at: string | null;
|
|
595
|
+
ends_at: string | null;
|
|
596
|
+
};
|
|
597
|
+
to: {
|
|
598
|
+
starts_at: string | null;
|
|
599
|
+
ends_at: string | null;
|
|
600
|
+
};
|
|
601
|
+
} | null | undefined;
|
|
602
|
+
updating_suspension_state?: {
|
|
603
|
+
created_at: string;
|
|
604
|
+
mutation_code: "updating_suspension_state";
|
|
605
|
+
from: {
|
|
606
|
+
is_suspended: boolean;
|
|
607
|
+
};
|
|
608
|
+
to: {
|
|
609
|
+
is_suspended: boolean;
|
|
610
|
+
};
|
|
611
|
+
} | null | undefined;
|
|
612
|
+
updating_group_membership?: Map<string, {
|
|
613
|
+
created_at: string;
|
|
614
|
+
mutation_code: "updating_group_membership";
|
|
615
|
+
from: {
|
|
616
|
+
acs_access_group_id: string | null;
|
|
617
|
+
};
|
|
618
|
+
to: {
|
|
619
|
+
acs_access_group_id: string | null;
|
|
620
|
+
};
|
|
621
|
+
}> | null | undefined;
|
|
437
622
|
'updating_user_information.full_name'?: {
|
|
438
623
|
created_at: string;
|
|
439
624
|
mutation_code: "updating_user_information";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { phone_number } from '../../phone-number.js';
|
|
3
|
-
import { schedule } from '../../schedule.js';
|
|
4
3
|
const common_pending_mutation = z.object({
|
|
5
4
|
created_at: z.string().datetime(),
|
|
6
5
|
});
|
|
@@ -20,10 +19,14 @@ export const updating_user_information_mutation = common_pending_mutation.extend
|
|
|
20
19
|
from: acs_user_info.partial(),
|
|
21
20
|
to: acs_user_info.partial(),
|
|
22
21
|
});
|
|
22
|
+
const access_schedule = z.object({
|
|
23
|
+
starts_at: z.string().datetime().nullable(),
|
|
24
|
+
ends_at: z.string().datetime().nullable(),
|
|
25
|
+
});
|
|
23
26
|
const updating_access_schedule_mutation = common_pending_mutation.extend({
|
|
24
27
|
mutation_code: z.literal('updating_access_schedule'),
|
|
25
|
-
from:
|
|
26
|
-
to:
|
|
28
|
+
from: access_schedule,
|
|
29
|
+
to: access_schedule,
|
|
27
30
|
});
|
|
28
31
|
const updating_suspension_state_mutation = common_pending_mutation.extend({
|
|
29
32
|
mutation_code: z.literal('updating_suspension_state'),
|
|
@@ -50,6 +53,16 @@ export const acs_user_pending_mutations = z.discriminatedUnion('mutation_code',
|
|
|
50
53
|
export const acs_user_pending_mutations_map = z.object({
|
|
51
54
|
creating: creating.optional().nullable(),
|
|
52
55
|
deleting: deleting.optional().nullable(),
|
|
56
|
+
updating_access_schedule: updating_access_schedule_mutation
|
|
57
|
+
.optional()
|
|
58
|
+
.nullable(),
|
|
59
|
+
updating_group_membership: z
|
|
60
|
+
.map(z.string().uuid(), updating_group_membership_mutation)
|
|
61
|
+
.optional()
|
|
62
|
+
.nullable(),
|
|
63
|
+
updating_suspension_state: updating_suspension_state_mutation
|
|
64
|
+
.optional()
|
|
65
|
+
.nullable(),
|
|
53
66
|
'updating_user_information.full_name': common_pending_mutation
|
|
54
67
|
.extend({
|
|
55
68
|
mutation_code: z.literal('updating_user_information'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pending-mutations.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"pending-mutations.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts"],"names":[],"mappings":"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"}
|