@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
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const updating_user_information_mutation: z.ZodObject<z.objectUtil.extendShape<{
|
|
3
3
|
created_at: z.ZodString;
|
|
4
|
+
message: z.ZodString;
|
|
4
5
|
}, {
|
|
5
6
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
6
7
|
from: z.ZodObject<{
|
|
@@ -30,6 +31,7 @@ export declare const updating_user_information_mutation: z.ZodObject<z.objectUti
|
|
|
30
31
|
phone_number?: string | null | undefined;
|
|
31
32
|
}>;
|
|
32
33
|
}>, "strip", z.ZodTypeAny, {
|
|
34
|
+
message: string;
|
|
33
35
|
created_at: string;
|
|
34
36
|
mutation_code: "updating_user_information";
|
|
35
37
|
from: {
|
|
@@ -43,6 +45,7 @@ export declare const updating_user_information_mutation: z.ZodObject<z.objectUti
|
|
|
43
45
|
phone_number?: string | null | undefined;
|
|
44
46
|
};
|
|
45
47
|
}, {
|
|
48
|
+
message: string;
|
|
46
49
|
created_at: string;
|
|
47
50
|
mutation_code: "updating_user_information";
|
|
48
51
|
from: {
|
|
@@ -58,26 +61,33 @@ export declare const updating_user_information_mutation: z.ZodObject<z.objectUti
|
|
|
58
61
|
}>;
|
|
59
62
|
export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutation_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
60
63
|
created_at: z.ZodString;
|
|
64
|
+
message: z.ZodString;
|
|
61
65
|
}, {
|
|
62
66
|
mutation_code: z.ZodLiteral<"creating">;
|
|
63
67
|
}>, "strip", z.ZodTypeAny, {
|
|
68
|
+
message: string;
|
|
64
69
|
created_at: string;
|
|
65
70
|
mutation_code: "creating";
|
|
66
71
|
}, {
|
|
72
|
+
message: string;
|
|
67
73
|
created_at: string;
|
|
68
74
|
mutation_code: "creating";
|
|
69
75
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
70
76
|
created_at: z.ZodString;
|
|
77
|
+
message: z.ZodString;
|
|
71
78
|
}, {
|
|
72
79
|
mutation_code: z.ZodLiteral<"deleting">;
|
|
73
80
|
}>, "strip", z.ZodTypeAny, {
|
|
81
|
+
message: string;
|
|
74
82
|
created_at: string;
|
|
75
83
|
mutation_code: "deleting";
|
|
76
84
|
}, {
|
|
85
|
+
message: string;
|
|
77
86
|
created_at: string;
|
|
78
87
|
mutation_code: "deleting";
|
|
79
88
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
80
89
|
created_at: z.ZodString;
|
|
90
|
+
message: z.ZodString;
|
|
81
91
|
}, {
|
|
82
92
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
83
93
|
from: z.ZodObject<{
|
|
@@ -107,6 +117,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
107
117
|
phone_number?: string | null | undefined;
|
|
108
118
|
}>;
|
|
109
119
|
}>, "strip", z.ZodTypeAny, {
|
|
120
|
+
message: string;
|
|
110
121
|
created_at: string;
|
|
111
122
|
mutation_code: "updating_user_information";
|
|
112
123
|
from: {
|
|
@@ -120,6 +131,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
120
131
|
phone_number?: string | null | undefined;
|
|
121
132
|
};
|
|
122
133
|
}, {
|
|
134
|
+
message: string;
|
|
123
135
|
created_at: string;
|
|
124
136
|
mutation_code: "updating_user_information";
|
|
125
137
|
from: {
|
|
@@ -134,6 +146,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
134
146
|
};
|
|
135
147
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
136
148
|
created_at: z.ZodString;
|
|
149
|
+
message: z.ZodString;
|
|
137
150
|
}, {
|
|
138
151
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
139
152
|
from: z.ZodObject<{
|
|
@@ -157,6 +170,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
157
170
|
ends_at: string | null;
|
|
158
171
|
}>;
|
|
159
172
|
}>, "strip", z.ZodTypeAny, {
|
|
173
|
+
message: string;
|
|
160
174
|
created_at: string;
|
|
161
175
|
mutation_code: "updating_access_schedule";
|
|
162
176
|
from: {
|
|
@@ -168,6 +182,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
168
182
|
ends_at: string | null;
|
|
169
183
|
};
|
|
170
184
|
}, {
|
|
185
|
+
message: string;
|
|
171
186
|
created_at: string;
|
|
172
187
|
mutation_code: "updating_access_schedule";
|
|
173
188
|
from: {
|
|
@@ -180,6 +195,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
180
195
|
};
|
|
181
196
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
182
197
|
created_at: z.ZodString;
|
|
198
|
+
message: z.ZodString;
|
|
183
199
|
}, {
|
|
184
200
|
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
185
201
|
from: z.ZodObject<{
|
|
@@ -197,6 +213,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
197
213
|
is_suspended: boolean;
|
|
198
214
|
}>;
|
|
199
215
|
}>, "strip", z.ZodTypeAny, {
|
|
216
|
+
message: string;
|
|
200
217
|
created_at: string;
|
|
201
218
|
mutation_code: "updating_suspension_state";
|
|
202
219
|
from: {
|
|
@@ -206,6 +223,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
206
223
|
is_suspended: boolean;
|
|
207
224
|
};
|
|
208
225
|
}, {
|
|
226
|
+
message: string;
|
|
209
227
|
created_at: string;
|
|
210
228
|
mutation_code: "updating_suspension_state";
|
|
211
229
|
from: {
|
|
@@ -216,6 +234,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
216
234
|
};
|
|
217
235
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
218
236
|
created_at: z.ZodString;
|
|
237
|
+
message: z.ZodString;
|
|
219
238
|
}, {
|
|
220
239
|
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
221
240
|
from: z.ZodObject<{
|
|
@@ -233,6 +252,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
233
252
|
acs_access_group_id: string | null;
|
|
234
253
|
}>;
|
|
235
254
|
}>, "strip", z.ZodTypeAny, {
|
|
255
|
+
message: string;
|
|
236
256
|
created_at: string;
|
|
237
257
|
mutation_code: "updating_group_membership";
|
|
238
258
|
from: {
|
|
@@ -242,6 +262,7 @@ export declare const acs_user_pending_mutations: z.ZodDiscriminatedUnion<"mutati
|
|
|
242
262
|
acs_access_group_id: string | null;
|
|
243
263
|
};
|
|
244
264
|
}, {
|
|
265
|
+
message: string;
|
|
245
266
|
created_at: string;
|
|
246
267
|
mutation_code: "updating_group_membership";
|
|
247
268
|
from: {
|
|
@@ -255,28 +276,35 @@ export type AcsUserPendingMutation = z.infer<typeof acs_user_pending_mutations>;
|
|
|
255
276
|
export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
256
277
|
creating: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
257
278
|
created_at: z.ZodString;
|
|
279
|
+
message: z.ZodString;
|
|
258
280
|
}, {
|
|
259
281
|
mutation_code: z.ZodLiteral<"creating">;
|
|
260
282
|
}>, "strip", z.ZodTypeAny, {
|
|
283
|
+
message: string;
|
|
261
284
|
created_at: string;
|
|
262
285
|
mutation_code: "creating";
|
|
263
286
|
}, {
|
|
287
|
+
message: string;
|
|
264
288
|
created_at: string;
|
|
265
289
|
mutation_code: "creating";
|
|
266
290
|
}>>>;
|
|
267
291
|
deleting: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
268
292
|
created_at: z.ZodString;
|
|
293
|
+
message: z.ZodString;
|
|
269
294
|
}, {
|
|
270
295
|
mutation_code: z.ZodLiteral<"deleting">;
|
|
271
296
|
}>, "strip", z.ZodTypeAny, {
|
|
297
|
+
message: string;
|
|
272
298
|
created_at: string;
|
|
273
299
|
mutation_code: "deleting";
|
|
274
300
|
}, {
|
|
301
|
+
message: string;
|
|
275
302
|
created_at: string;
|
|
276
303
|
mutation_code: "deleting";
|
|
277
304
|
}>>>;
|
|
278
305
|
updating_access_schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
279
306
|
created_at: z.ZodString;
|
|
307
|
+
message: z.ZodString;
|
|
280
308
|
}, {
|
|
281
309
|
mutation_code: z.ZodLiteral<"updating_access_schedule">;
|
|
282
310
|
from: z.ZodObject<{
|
|
@@ -300,6 +328,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
300
328
|
ends_at: string | null;
|
|
301
329
|
}>;
|
|
302
330
|
}>, "strip", z.ZodTypeAny, {
|
|
331
|
+
message: string;
|
|
303
332
|
created_at: string;
|
|
304
333
|
mutation_code: "updating_access_schedule";
|
|
305
334
|
from: {
|
|
@@ -311,6 +340,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
311
340
|
ends_at: string | null;
|
|
312
341
|
};
|
|
313
342
|
}, {
|
|
343
|
+
message: string;
|
|
314
344
|
created_at: string;
|
|
315
345
|
mutation_code: "updating_access_schedule";
|
|
316
346
|
from: {
|
|
@@ -324,6 +354,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
324
354
|
}>>>;
|
|
325
355
|
updating_group_membership: z.ZodNullable<z.ZodOptional<z.ZodMap<z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
|
|
326
356
|
created_at: z.ZodString;
|
|
357
|
+
message: z.ZodString;
|
|
327
358
|
}, {
|
|
328
359
|
mutation_code: z.ZodLiteral<"updating_group_membership">;
|
|
329
360
|
from: z.ZodObject<{
|
|
@@ -341,6 +372,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
341
372
|
acs_access_group_id: string | null;
|
|
342
373
|
}>;
|
|
343
374
|
}>, "strip", z.ZodTypeAny, {
|
|
375
|
+
message: string;
|
|
344
376
|
created_at: string;
|
|
345
377
|
mutation_code: "updating_group_membership";
|
|
346
378
|
from: {
|
|
@@ -350,6 +382,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
350
382
|
acs_access_group_id: string | null;
|
|
351
383
|
};
|
|
352
384
|
}, {
|
|
385
|
+
message: string;
|
|
353
386
|
created_at: string;
|
|
354
387
|
mutation_code: "updating_group_membership";
|
|
355
388
|
from: {
|
|
@@ -361,6 +394,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
361
394
|
}>>>>;
|
|
362
395
|
updating_suspension_state: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
363
396
|
created_at: z.ZodString;
|
|
397
|
+
message: z.ZodString;
|
|
364
398
|
}, {
|
|
365
399
|
mutation_code: z.ZodLiteral<"updating_suspension_state">;
|
|
366
400
|
from: z.ZodObject<{
|
|
@@ -378,6 +412,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
378
412
|
is_suspended: boolean;
|
|
379
413
|
}>;
|
|
380
414
|
}>, "strip", z.ZodTypeAny, {
|
|
415
|
+
message: string;
|
|
381
416
|
created_at: string;
|
|
382
417
|
mutation_code: "updating_suspension_state";
|
|
383
418
|
from: {
|
|
@@ -387,6 +422,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
387
422
|
is_suspended: boolean;
|
|
388
423
|
};
|
|
389
424
|
}, {
|
|
425
|
+
message: string;
|
|
390
426
|
created_at: string;
|
|
391
427
|
mutation_code: "updating_suspension_state";
|
|
392
428
|
from: {
|
|
@@ -398,6 +434,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
398
434
|
}>>>;
|
|
399
435
|
'updating_user_information.full_name': z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
400
436
|
created_at: z.ZodString;
|
|
437
|
+
message: z.ZodString;
|
|
401
438
|
}, {
|
|
402
439
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
403
440
|
from: z.ZodObject<{
|
|
@@ -415,6 +452,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
415
452
|
full_name: string | null;
|
|
416
453
|
}>;
|
|
417
454
|
}>, "strip", z.ZodTypeAny, {
|
|
455
|
+
message: string;
|
|
418
456
|
created_at: string;
|
|
419
457
|
mutation_code: "updating_user_information";
|
|
420
458
|
from: {
|
|
@@ -424,6 +462,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
424
462
|
full_name: string | null;
|
|
425
463
|
};
|
|
426
464
|
}, {
|
|
465
|
+
message: string;
|
|
427
466
|
created_at: string;
|
|
428
467
|
mutation_code: "updating_user_information";
|
|
429
468
|
from: {
|
|
@@ -435,6 +474,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
435
474
|
}>>>;
|
|
436
475
|
'updating_user_information.email_address': z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
437
476
|
created_at: z.ZodString;
|
|
477
|
+
message: z.ZodString;
|
|
438
478
|
}, {
|
|
439
479
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
440
480
|
from: z.ZodObject<{
|
|
@@ -452,6 +492,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
452
492
|
email_address: string | null;
|
|
453
493
|
}>;
|
|
454
494
|
}>, "strip", z.ZodTypeAny, {
|
|
495
|
+
message: string;
|
|
455
496
|
created_at: string;
|
|
456
497
|
mutation_code: "updating_user_information";
|
|
457
498
|
from: {
|
|
@@ -461,6 +502,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
461
502
|
email_address: string | null;
|
|
462
503
|
};
|
|
463
504
|
}, {
|
|
505
|
+
message: string;
|
|
464
506
|
created_at: string;
|
|
465
507
|
mutation_code: "updating_user_information";
|
|
466
508
|
from: {
|
|
@@ -472,6 +514,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
472
514
|
}>>>;
|
|
473
515
|
'updating_user_information.phone_number': z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
474
516
|
created_at: z.ZodString;
|
|
517
|
+
message: z.ZodString;
|
|
475
518
|
}, {
|
|
476
519
|
mutation_code: z.ZodLiteral<"updating_user_information">;
|
|
477
520
|
from: z.ZodObject<{
|
|
@@ -489,6 +532,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
489
532
|
phone_number: string | null;
|
|
490
533
|
}>;
|
|
491
534
|
}>, "strip", z.ZodTypeAny, {
|
|
535
|
+
message: string;
|
|
492
536
|
created_at: string;
|
|
493
537
|
mutation_code: "updating_user_information";
|
|
494
538
|
from: {
|
|
@@ -498,6 +542,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
498
542
|
phone_number: string | null;
|
|
499
543
|
};
|
|
500
544
|
}, {
|
|
545
|
+
message: string;
|
|
501
546
|
created_at: string;
|
|
502
547
|
mutation_code: "updating_user_information";
|
|
503
548
|
from: {
|
|
@@ -509,14 +554,17 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
509
554
|
}>>>;
|
|
510
555
|
}, "strip", z.ZodTypeAny, {
|
|
511
556
|
creating?: {
|
|
557
|
+
message: string;
|
|
512
558
|
created_at: string;
|
|
513
559
|
mutation_code: "creating";
|
|
514
560
|
} | null | undefined;
|
|
515
561
|
deleting?: {
|
|
562
|
+
message: string;
|
|
516
563
|
created_at: string;
|
|
517
564
|
mutation_code: "deleting";
|
|
518
565
|
} | null | undefined;
|
|
519
566
|
updating_access_schedule?: {
|
|
567
|
+
message: string;
|
|
520
568
|
created_at: string;
|
|
521
569
|
mutation_code: "updating_access_schedule";
|
|
522
570
|
from: {
|
|
@@ -529,6 +577,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
529
577
|
};
|
|
530
578
|
} | null | undefined;
|
|
531
579
|
updating_suspension_state?: {
|
|
580
|
+
message: string;
|
|
532
581
|
created_at: string;
|
|
533
582
|
mutation_code: "updating_suspension_state";
|
|
534
583
|
from: {
|
|
@@ -539,6 +588,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
539
588
|
};
|
|
540
589
|
} | null | undefined;
|
|
541
590
|
updating_group_membership?: Map<string, {
|
|
591
|
+
message: string;
|
|
542
592
|
created_at: string;
|
|
543
593
|
mutation_code: "updating_group_membership";
|
|
544
594
|
from: {
|
|
@@ -549,6 +599,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
549
599
|
};
|
|
550
600
|
}> | null | undefined;
|
|
551
601
|
'updating_user_information.full_name'?: {
|
|
602
|
+
message: string;
|
|
552
603
|
created_at: string;
|
|
553
604
|
mutation_code: "updating_user_information";
|
|
554
605
|
from: {
|
|
@@ -559,6 +610,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
559
610
|
};
|
|
560
611
|
} | null | undefined;
|
|
561
612
|
'updating_user_information.email_address'?: {
|
|
613
|
+
message: string;
|
|
562
614
|
created_at: string;
|
|
563
615
|
mutation_code: "updating_user_information";
|
|
564
616
|
from: {
|
|
@@ -569,6 +621,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
569
621
|
};
|
|
570
622
|
} | null | undefined;
|
|
571
623
|
'updating_user_information.phone_number'?: {
|
|
624
|
+
message: string;
|
|
572
625
|
created_at: string;
|
|
573
626
|
mutation_code: "updating_user_information";
|
|
574
627
|
from: {
|
|
@@ -580,14 +633,17 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
580
633
|
} | null | undefined;
|
|
581
634
|
}, {
|
|
582
635
|
creating?: {
|
|
636
|
+
message: string;
|
|
583
637
|
created_at: string;
|
|
584
638
|
mutation_code: "creating";
|
|
585
639
|
} | null | undefined;
|
|
586
640
|
deleting?: {
|
|
641
|
+
message: string;
|
|
587
642
|
created_at: string;
|
|
588
643
|
mutation_code: "deleting";
|
|
589
644
|
} | null | undefined;
|
|
590
645
|
updating_access_schedule?: {
|
|
646
|
+
message: string;
|
|
591
647
|
created_at: string;
|
|
592
648
|
mutation_code: "updating_access_schedule";
|
|
593
649
|
from: {
|
|
@@ -600,6 +656,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
600
656
|
};
|
|
601
657
|
} | null | undefined;
|
|
602
658
|
updating_suspension_state?: {
|
|
659
|
+
message: string;
|
|
603
660
|
created_at: string;
|
|
604
661
|
mutation_code: "updating_suspension_state";
|
|
605
662
|
from: {
|
|
@@ -610,6 +667,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
610
667
|
};
|
|
611
668
|
} | null | undefined;
|
|
612
669
|
updating_group_membership?: Map<string, {
|
|
670
|
+
message: string;
|
|
613
671
|
created_at: string;
|
|
614
672
|
mutation_code: "updating_group_membership";
|
|
615
673
|
from: {
|
|
@@ -620,6 +678,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
620
678
|
};
|
|
621
679
|
}> | null | undefined;
|
|
622
680
|
'updating_user_information.full_name'?: {
|
|
681
|
+
message: string;
|
|
623
682
|
created_at: string;
|
|
624
683
|
mutation_code: "updating_user_information";
|
|
625
684
|
from: {
|
|
@@ -630,6 +689,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
630
689
|
};
|
|
631
690
|
} | null | undefined;
|
|
632
691
|
'updating_user_information.email_address'?: {
|
|
692
|
+
message: string;
|
|
633
693
|
created_at: string;
|
|
634
694
|
mutation_code: "updating_user_information";
|
|
635
695
|
from: {
|
|
@@ -640,6 +700,7 @@ export declare const acs_user_pending_mutations_map: z.ZodObject<{
|
|
|
640
700
|
};
|
|
641
701
|
} | null | undefined;
|
|
642
702
|
'updating_user_information.phone_number'?: {
|
|
703
|
+
message: string;
|
|
643
704
|
created_at: string;
|
|
644
705
|
mutation_code: "updating_user_information";
|
|
645
706
|
from: {
|
|
@@ -2,6 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
import { phone_number } from '../../phone-number.js';
|
|
3
3
|
const common_pending_mutation = z.object({
|
|
4
4
|
created_at: z.string().datetime(),
|
|
5
|
+
message: z.string(),
|
|
5
6
|
});
|
|
6
7
|
const creating = common_pending_mutation.extend({
|
|
7
8
|
mutation_code: z.literal('creating'),
|
|
@@ -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;AAEpD,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;
|
|
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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"}
|
|
@@ -1240,6 +1240,9 @@ declare const _default: {
|
|
|
1240
1240
|
format: string;
|
|
1241
1241
|
type: string;
|
|
1242
1242
|
};
|
|
1243
|
+
message: {
|
|
1244
|
+
type: string;
|
|
1245
|
+
};
|
|
1243
1246
|
mutation_code: {
|
|
1244
1247
|
enum: string[];
|
|
1245
1248
|
type: string;
|
|
@@ -1278,6 +1281,9 @@ declare const _default: {
|
|
|
1278
1281
|
type: string;
|
|
1279
1282
|
required?: never;
|
|
1280
1283
|
};
|
|
1284
|
+
message: {
|
|
1285
|
+
type: string;
|
|
1286
|
+
};
|
|
1281
1287
|
mutation_code: {
|
|
1282
1288
|
enum: string[];
|
|
1283
1289
|
type: string;
|
|
@@ -1335,6 +1341,9 @@ declare const _default: {
|
|
|
1335
1341
|
required: string[];
|
|
1336
1342
|
type: string;
|
|
1337
1343
|
};
|
|
1344
|
+
message: {
|
|
1345
|
+
type: string;
|
|
1346
|
+
};
|
|
1338
1347
|
mutation_code: {
|
|
1339
1348
|
enum: string[];
|
|
1340
1349
|
type: string;
|
|
@@ -1384,6 +1393,9 @@ declare const _default: {
|
|
|
1384
1393
|
required: string[];
|
|
1385
1394
|
type: string;
|
|
1386
1395
|
};
|
|
1396
|
+
message: {
|
|
1397
|
+
type: string;
|
|
1398
|
+
};
|
|
1387
1399
|
mutation_code: {
|
|
1388
1400
|
enum: string[];
|
|
1389
1401
|
type: string;
|
|
@@ -1429,6 +1441,9 @@ declare const _default: {
|
|
|
1429
1441
|
required: string[];
|
|
1430
1442
|
type: string;
|
|
1431
1443
|
};
|
|
1444
|
+
message: {
|
|
1445
|
+
type: string;
|
|
1446
|
+
};
|
|
1432
1447
|
mutation_code: {
|
|
1433
1448
|
enum: string[];
|
|
1434
1449
|
type: string;
|
|
@@ -8536,6 +8551,9 @@ declare const _default: {
|
|
|
8536
8551
|
format: string;
|
|
8537
8552
|
type: string;
|
|
8538
8553
|
};
|
|
8554
|
+
message: {
|
|
8555
|
+
type: string;
|
|
8556
|
+
};
|
|
8539
8557
|
mutation_code: {
|
|
8540
8558
|
enum: string[];
|
|
8541
8559
|
type: string;
|
|
@@ -8574,6 +8592,9 @@ declare const _default: {
|
|
|
8574
8592
|
type: string;
|
|
8575
8593
|
required?: never;
|
|
8576
8594
|
};
|
|
8595
|
+
message: {
|
|
8596
|
+
type: string;
|
|
8597
|
+
};
|
|
8577
8598
|
mutation_code: {
|
|
8578
8599
|
enum: string[];
|
|
8579
8600
|
type: string;
|
|
@@ -8631,6 +8652,9 @@ declare const _default: {
|
|
|
8631
8652
|
required: string[];
|
|
8632
8653
|
type: string;
|
|
8633
8654
|
};
|
|
8655
|
+
message: {
|
|
8656
|
+
type: string;
|
|
8657
|
+
};
|
|
8634
8658
|
mutation_code: {
|
|
8635
8659
|
enum: string[];
|
|
8636
8660
|
type: string;
|
|
@@ -8680,6 +8704,9 @@ declare const _default: {
|
|
|
8680
8704
|
required: string[];
|
|
8681
8705
|
type: string;
|
|
8682
8706
|
};
|
|
8707
|
+
message: {
|
|
8708
|
+
type: string;
|
|
8709
|
+
};
|
|
8683
8710
|
mutation_code: {
|
|
8684
8711
|
enum: string[];
|
|
8685
8712
|
type: string;
|
|
@@ -8725,6 +8752,9 @@ declare const _default: {
|
|
|
8725
8752
|
required: string[];
|
|
8726
8753
|
type: string;
|
|
8727
8754
|
};
|
|
8755
|
+
message: {
|
|
8756
|
+
type: string;
|
|
8757
|
+
};
|
|
8728
8758
|
mutation_code: {
|
|
8729
8759
|
enum: string[];
|
|
8730
8760
|
type: string;
|