@opencrvs/toolkit 1.8.1-rc.baeb06c → 1.8.1-rc.bbdfdc1
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/build.sh +5 -0
- package/dist/commons/api/router.d.ts +433 -392
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +2004 -366
- package/dist/commons/events/ActionDocument.d.ts +1319 -747
- package/dist/commons/events/ActionInput.d.ts +662 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +83 -65
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/Draft.d.ts +48 -48
- package/dist/commons/events/EventConfig.d.ts +695 -168
- package/dist/commons/events/EventDocument.d.ts +477 -432
- package/dist/commons/events/EventIndex.d.ts +184 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +254 -43
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +1032 -246
- package/dist/commons/events/PageConfig.d.ts +264 -46
- package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
- package/dist/commons/events/defineConfig.d.ts +129 -30
- package/dist/commons/events/event.d.ts +68 -6
- package/dist/commons/events/field.d.ts +14 -0
- package/dist/commons/events/test.utils.d.ts +17 -13
- package/dist/commons/events/utils.d.ts +236 -60
- package/dist/commons/notification/UserNotifications.d.ts +547 -0
- package/dist/commons/notification/index.d.ts +2 -0
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +265 -95
- package/dist/notification/index.d.ts +2 -0
- package/dist/notification/index.d.ts.map +1 -0
- package/dist/notification/index.js +5362 -0
- package/package.json +3 -2
- package/tsconfig.json +3 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
@@ -125,16 +125,16 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
125
125
|
addressLine3?: string | null | undefined;
|
126
126
|
postcodeOrZip?: string | null | undefined;
|
127
127
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
128
|
-
firstname: z.
|
129
|
-
surname: z.
|
128
|
+
firstname: z.ZodString;
|
129
|
+
surname: z.ZodString;
|
130
130
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
131
131
|
}, "strip", z.ZodTypeAny, {
|
132
|
-
firstname
|
133
|
-
surname
|
132
|
+
firstname: string;
|
133
|
+
surname: string;
|
134
134
|
middlename?: string | null | undefined;
|
135
135
|
}, {
|
136
|
-
firstname
|
137
|
-
surname
|
136
|
+
firstname: string;
|
137
|
+
surname: string;
|
138
138
|
middlename?: string | null | undefined;
|
139
139
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
140
140
|
export type ActionUpdate = z.infer<typeof ActionUpdate>;
|
@@ -276,26 +276,511 @@ export declare const EventState: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStrin
|
|
276
276
|
surname: string;
|
277
277
|
middlename?: string | undefined;
|
278
278
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
279
|
-
firstname: z.
|
280
|
-
surname: z.
|
279
|
+
firstname: z.ZodString;
|
280
|
+
surname: z.ZodString;
|
281
281
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
283
|
-
firstname
|
284
|
-
surname
|
283
|
+
firstname: string;
|
284
|
+
surname: string;
|
285
285
|
middlename?: string | null | undefined;
|
286
286
|
}, {
|
287
|
-
firstname
|
288
|
-
surname
|
289
|
-
middlename?: string | null | undefined;
|
290
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
291
|
-
export type EventState = z.infer<typeof EventState>;
|
292
|
-
export declare const ActionStatus: {
|
293
|
-
readonly Requested: "Requested";
|
294
|
-
readonly Accepted: "Accepted";
|
295
|
-
readonly Rejected: "Rejected";
|
296
|
-
};
|
297
|
-
export type ActionStatus = keyof typeof ActionStatus;
|
298
|
-
export declare const ActionBase: z.ZodObject<{
|
287
|
+
firstname: string;
|
288
|
+
surname: string;
|
289
|
+
middlename?: string | null | undefined;
|
290
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
291
|
+
export type EventState = z.infer<typeof EventState>;
|
292
|
+
export declare const ActionStatus: {
|
293
|
+
readonly Requested: "Requested";
|
294
|
+
readonly Accepted: "Accepted";
|
295
|
+
readonly Rejected: "Rejected";
|
296
|
+
};
|
297
|
+
export type ActionStatus = keyof typeof ActionStatus;
|
298
|
+
export declare const ActionBase: z.ZodObject<{
|
299
|
+
id: z.ZodBranded<z.ZodString, "UUID">;
|
300
|
+
transactionId: z.ZodString;
|
301
|
+
createdByUserType: z.ZodEnum<["user", "system"]>;
|
302
|
+
createdAt: z.ZodString;
|
303
|
+
createdBy: z.ZodString;
|
304
|
+
createdByRole: z.ZodString;
|
305
|
+
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
306
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
|
307
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
308
|
+
start: z.ZodString;
|
309
|
+
end: z.ZodString;
|
310
|
+
}, "strip", z.ZodTypeAny, {
|
311
|
+
start: string;
|
312
|
+
end: string;
|
313
|
+
}, {
|
314
|
+
start: string;
|
315
|
+
end: string;
|
316
|
+
}>, z.ZodString]>, z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
317
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
318
|
+
originalFilename: z.ZodString;
|
319
|
+
type: z.ZodString;
|
320
|
+
}, "strip", z.ZodTypeAny, {
|
321
|
+
type: string;
|
322
|
+
path: string;
|
323
|
+
originalFilename: string;
|
324
|
+
}, {
|
325
|
+
type: string;
|
326
|
+
path: string;
|
327
|
+
originalFilename: string;
|
328
|
+
}>, z.ZodArray<z.ZodObject<{
|
329
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
330
|
+
originalFilename: z.ZodString;
|
331
|
+
type: z.ZodString;
|
332
|
+
option: z.ZodString;
|
333
|
+
}, "strip", z.ZodTypeAny, {
|
334
|
+
type: string;
|
335
|
+
option: string;
|
336
|
+
path: string;
|
337
|
+
originalFilename: string;
|
338
|
+
}, {
|
339
|
+
type: string;
|
340
|
+
option: string;
|
341
|
+
path: string;
|
342
|
+
originalFilename: string;
|
343
|
+
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
344
|
+
country: z.ZodString;
|
345
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
346
|
+
province: z.ZodString;
|
347
|
+
district: z.ZodString;
|
348
|
+
}, {
|
349
|
+
urbanOrRural: z.ZodLiteral<"URBAN">;
|
350
|
+
town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
351
|
+
residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
352
|
+
street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
353
|
+
number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
354
|
+
zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
355
|
+
}>, "strip", z.ZodTypeAny, {
|
356
|
+
country: string;
|
357
|
+
district: string;
|
358
|
+
addressType: "DOMESTIC";
|
359
|
+
province: string;
|
360
|
+
urbanOrRural: "URBAN";
|
361
|
+
number?: string | null | undefined;
|
362
|
+
town?: string | null | undefined;
|
363
|
+
residentialArea?: string | null | undefined;
|
364
|
+
street?: string | null | undefined;
|
365
|
+
zipCode?: string | null | undefined;
|
366
|
+
}, {
|
367
|
+
country: string;
|
368
|
+
district: string;
|
369
|
+
addressType: "DOMESTIC";
|
370
|
+
province: string;
|
371
|
+
urbanOrRural: "URBAN";
|
372
|
+
number?: string | null | undefined;
|
373
|
+
town?: string | null | undefined;
|
374
|
+
residentialArea?: string | null | undefined;
|
375
|
+
street?: string | null | undefined;
|
376
|
+
zipCode?: string | null | undefined;
|
377
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
378
|
+
country: z.ZodString;
|
379
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
380
|
+
province: z.ZodString;
|
381
|
+
district: z.ZodString;
|
382
|
+
}, {
|
383
|
+
urbanOrRural: z.ZodLiteral<"RURAL">;
|
384
|
+
village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
385
|
+
}>, "strip", z.ZodTypeAny, {
|
386
|
+
country: string;
|
387
|
+
district: string;
|
388
|
+
addressType: "DOMESTIC";
|
389
|
+
province: string;
|
390
|
+
urbanOrRural: "RURAL";
|
391
|
+
village?: string | null | undefined;
|
392
|
+
}, {
|
393
|
+
country: string;
|
394
|
+
district: string;
|
395
|
+
addressType: "DOMESTIC";
|
396
|
+
province: string;
|
397
|
+
urbanOrRural: "RURAL";
|
398
|
+
village?: string | null | undefined;
|
399
|
+
}>, z.ZodUndefined, z.ZodObject<{
|
400
|
+
country: z.ZodString;
|
401
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
402
|
+
state: z.ZodString;
|
403
|
+
district2: z.ZodString;
|
404
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
405
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
406
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
407
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
408
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
409
|
+
}, "strip", z.ZodTypeAny, {
|
410
|
+
country: string;
|
411
|
+
state: string;
|
412
|
+
addressType: "INTERNATIONAL";
|
413
|
+
district2: string;
|
414
|
+
cityOrTown?: string | null | undefined;
|
415
|
+
addressLine1?: string | null | undefined;
|
416
|
+
addressLine2?: string | null | undefined;
|
417
|
+
addressLine3?: string | null | undefined;
|
418
|
+
postcodeOrZip?: string | null | undefined;
|
419
|
+
}, {
|
420
|
+
country: string;
|
421
|
+
state: string;
|
422
|
+
addressType: "INTERNATIONAL";
|
423
|
+
district2: string;
|
424
|
+
cityOrTown?: string | null | undefined;
|
425
|
+
addressLine1?: string | null | undefined;
|
426
|
+
addressLine2?: string | null | undefined;
|
427
|
+
addressLine3?: string | null | undefined;
|
428
|
+
postcodeOrZip?: string | null | undefined;
|
429
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
430
|
+
firstname: z.ZodString;
|
431
|
+
surname: z.ZodString;
|
432
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
433
|
+
}, "strip", z.ZodTypeAny, {
|
434
|
+
firstname: string;
|
435
|
+
surname: string;
|
436
|
+
middlename?: string | null | undefined;
|
437
|
+
}, {
|
438
|
+
firstname: string;
|
439
|
+
surname: string;
|
440
|
+
middlename?: string | null | undefined;
|
441
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
442
|
+
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
443
|
+
start: z.ZodString;
|
444
|
+
end: z.ZodString;
|
445
|
+
}, "strip", z.ZodTypeAny, {
|
446
|
+
start: string;
|
447
|
+
end: string;
|
448
|
+
}, {
|
449
|
+
start: string;
|
450
|
+
end: string;
|
451
|
+
}>, z.ZodString]>, z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
452
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
453
|
+
originalFilename: z.ZodString;
|
454
|
+
type: z.ZodString;
|
455
|
+
}, "strip", z.ZodTypeAny, {
|
456
|
+
type: string;
|
457
|
+
path: string;
|
458
|
+
originalFilename: string;
|
459
|
+
}, {
|
460
|
+
type: string;
|
461
|
+
path: string;
|
462
|
+
originalFilename: string;
|
463
|
+
}>, z.ZodArray<z.ZodObject<{
|
464
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
465
|
+
originalFilename: z.ZodString;
|
466
|
+
type: z.ZodString;
|
467
|
+
option: z.ZodString;
|
468
|
+
}, "strip", z.ZodTypeAny, {
|
469
|
+
type: string;
|
470
|
+
option: string;
|
471
|
+
path: string;
|
472
|
+
originalFilename: string;
|
473
|
+
}, {
|
474
|
+
type: string;
|
475
|
+
option: string;
|
476
|
+
path: string;
|
477
|
+
originalFilename: string;
|
478
|
+
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
479
|
+
country: z.ZodString;
|
480
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
481
|
+
province: z.ZodString;
|
482
|
+
district: z.ZodString;
|
483
|
+
}, {
|
484
|
+
urbanOrRural: z.ZodLiteral<"URBAN">;
|
485
|
+
town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
486
|
+
residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
487
|
+
street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
488
|
+
number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
489
|
+
zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
490
|
+
}>, "strip", z.ZodTypeAny, {
|
491
|
+
country: string;
|
492
|
+
district: string;
|
493
|
+
addressType: "DOMESTIC";
|
494
|
+
province: string;
|
495
|
+
urbanOrRural: "URBAN";
|
496
|
+
number?: string | null | undefined;
|
497
|
+
town?: string | null | undefined;
|
498
|
+
residentialArea?: string | null | undefined;
|
499
|
+
street?: string | null | undefined;
|
500
|
+
zipCode?: string | null | undefined;
|
501
|
+
}, {
|
502
|
+
country: string;
|
503
|
+
district: string;
|
504
|
+
addressType: "DOMESTIC";
|
505
|
+
province: string;
|
506
|
+
urbanOrRural: "URBAN";
|
507
|
+
number?: string | null | undefined;
|
508
|
+
town?: string | null | undefined;
|
509
|
+
residentialArea?: string | null | undefined;
|
510
|
+
street?: string | null | undefined;
|
511
|
+
zipCode?: string | null | undefined;
|
512
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
513
|
+
country: z.ZodString;
|
514
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
515
|
+
province: z.ZodString;
|
516
|
+
district: z.ZodString;
|
517
|
+
}, {
|
518
|
+
urbanOrRural: z.ZodLiteral<"RURAL">;
|
519
|
+
village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
520
|
+
}>, "strip", z.ZodTypeAny, {
|
521
|
+
country: string;
|
522
|
+
district: string;
|
523
|
+
addressType: "DOMESTIC";
|
524
|
+
province: string;
|
525
|
+
urbanOrRural: "RURAL";
|
526
|
+
village?: string | null | undefined;
|
527
|
+
}, {
|
528
|
+
country: string;
|
529
|
+
district: string;
|
530
|
+
addressType: "DOMESTIC";
|
531
|
+
province: string;
|
532
|
+
urbanOrRural: "RURAL";
|
533
|
+
village?: string | null | undefined;
|
534
|
+
}>, z.ZodUndefined, z.ZodObject<{
|
535
|
+
country: z.ZodString;
|
536
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
537
|
+
state: z.ZodString;
|
538
|
+
district2: z.ZodString;
|
539
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
540
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
541
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
542
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
543
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
544
|
+
}, "strip", z.ZodTypeAny, {
|
545
|
+
country: string;
|
546
|
+
state: string;
|
547
|
+
addressType: "INTERNATIONAL";
|
548
|
+
district2: string;
|
549
|
+
cityOrTown?: string | null | undefined;
|
550
|
+
addressLine1?: string | null | undefined;
|
551
|
+
addressLine2?: string | null | undefined;
|
552
|
+
addressLine3?: string | null | undefined;
|
553
|
+
postcodeOrZip?: string | null | undefined;
|
554
|
+
}, {
|
555
|
+
country: string;
|
556
|
+
state: string;
|
557
|
+
addressType: "INTERNATIONAL";
|
558
|
+
district2: string;
|
559
|
+
cityOrTown?: string | null | undefined;
|
560
|
+
addressLine1?: string | null | undefined;
|
561
|
+
addressLine2?: string | null | undefined;
|
562
|
+
addressLine3?: string | null | undefined;
|
563
|
+
postcodeOrZip?: string | null | undefined;
|
564
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
565
|
+
firstname: z.ZodString;
|
566
|
+
surname: z.ZodString;
|
567
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
568
|
+
}, "strip", z.ZodTypeAny, {
|
569
|
+
firstname: string;
|
570
|
+
surname: string;
|
571
|
+
middlename?: string | null | undefined;
|
572
|
+
}, {
|
573
|
+
firstname: string;
|
574
|
+
surname: string;
|
575
|
+
middlename?: string | null | undefined;
|
576
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
577
|
+
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
578
|
+
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
579
|
+
}, "strip", z.ZodTypeAny, {
|
580
|
+
id: string & z.BRAND<"UUID">;
|
581
|
+
status: "Rejected" | "Requested" | "Accepted";
|
582
|
+
transactionId: string;
|
583
|
+
createdByUserType: "system" | "user";
|
584
|
+
createdAt: string;
|
585
|
+
createdBy: string;
|
586
|
+
createdByRole: string;
|
587
|
+
declaration: Record<string, string | number | boolean | {
|
588
|
+
type: string;
|
589
|
+
path: string;
|
590
|
+
originalFilename: string;
|
591
|
+
} | {
|
592
|
+
country: string;
|
593
|
+
district: string;
|
594
|
+
addressType: "DOMESTIC";
|
595
|
+
province: string;
|
596
|
+
urbanOrRural: "URBAN";
|
597
|
+
number?: string | null | undefined;
|
598
|
+
town?: string | null | undefined;
|
599
|
+
residentialArea?: string | null | undefined;
|
600
|
+
street?: string | null | undefined;
|
601
|
+
zipCode?: string | null | undefined;
|
602
|
+
} | {
|
603
|
+
firstname: string;
|
604
|
+
surname: string;
|
605
|
+
middlename?: string | null | undefined;
|
606
|
+
} | {
|
607
|
+
country: string;
|
608
|
+
district: string;
|
609
|
+
addressType: "DOMESTIC";
|
610
|
+
province: string;
|
611
|
+
urbanOrRural: "RURAL";
|
612
|
+
village?: string | null | undefined;
|
613
|
+
} | {
|
614
|
+
country: string;
|
615
|
+
state: string;
|
616
|
+
addressType: "INTERNATIONAL";
|
617
|
+
district2: string;
|
618
|
+
cityOrTown?: string | null | undefined;
|
619
|
+
addressLine1?: string | null | undefined;
|
620
|
+
addressLine2?: string | null | undefined;
|
621
|
+
addressLine3?: string | null | undefined;
|
622
|
+
postcodeOrZip?: string | null | undefined;
|
623
|
+
} | {
|
624
|
+
type: string;
|
625
|
+
option: string;
|
626
|
+
path: string;
|
627
|
+
originalFilename: string;
|
628
|
+
}[] | {
|
629
|
+
start: string;
|
630
|
+
end: string;
|
631
|
+
} | null | undefined>;
|
632
|
+
createdBySignature?: string | null | undefined;
|
633
|
+
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
634
|
+
annotation?: Record<string, string | number | boolean | {
|
635
|
+
type: string;
|
636
|
+
path: string;
|
637
|
+
originalFilename: string;
|
638
|
+
} | {
|
639
|
+
country: string;
|
640
|
+
district: string;
|
641
|
+
addressType: "DOMESTIC";
|
642
|
+
province: string;
|
643
|
+
urbanOrRural: "URBAN";
|
644
|
+
number?: string | null | undefined;
|
645
|
+
town?: string | null | undefined;
|
646
|
+
residentialArea?: string | null | undefined;
|
647
|
+
street?: string | null | undefined;
|
648
|
+
zipCode?: string | null | undefined;
|
649
|
+
} | {
|
650
|
+
firstname: string;
|
651
|
+
surname: string;
|
652
|
+
middlename?: string | null | undefined;
|
653
|
+
} | {
|
654
|
+
country: string;
|
655
|
+
district: string;
|
656
|
+
addressType: "DOMESTIC";
|
657
|
+
province: string;
|
658
|
+
urbanOrRural: "RURAL";
|
659
|
+
village?: string | null | undefined;
|
660
|
+
} | {
|
661
|
+
country: string;
|
662
|
+
state: string;
|
663
|
+
addressType: "INTERNATIONAL";
|
664
|
+
district2: string;
|
665
|
+
cityOrTown?: string | null | undefined;
|
666
|
+
addressLine1?: string | null | undefined;
|
667
|
+
addressLine2?: string | null | undefined;
|
668
|
+
addressLine3?: string | null | undefined;
|
669
|
+
postcodeOrZip?: string | null | undefined;
|
670
|
+
} | {
|
671
|
+
type: string;
|
672
|
+
option: string;
|
673
|
+
path: string;
|
674
|
+
originalFilename: string;
|
675
|
+
}[] | {
|
676
|
+
start: string;
|
677
|
+
end: string;
|
678
|
+
} | null | undefined> | null | undefined;
|
679
|
+
originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
|
680
|
+
}, {
|
681
|
+
id: string;
|
682
|
+
status: "Rejected" | "Requested" | "Accepted";
|
683
|
+
transactionId: string;
|
684
|
+
createdByUserType: "system" | "user";
|
685
|
+
createdAt: string;
|
686
|
+
createdBy: string;
|
687
|
+
createdByRole: string;
|
688
|
+
declaration: Record<string, string | number | boolean | {
|
689
|
+
type: string;
|
690
|
+
path: string;
|
691
|
+
originalFilename: string;
|
692
|
+
} | {
|
693
|
+
country: string;
|
694
|
+
district: string;
|
695
|
+
addressType: "DOMESTIC";
|
696
|
+
province: string;
|
697
|
+
urbanOrRural: "URBAN";
|
698
|
+
number?: string | null | undefined;
|
699
|
+
town?: string | null | undefined;
|
700
|
+
residentialArea?: string | null | undefined;
|
701
|
+
street?: string | null | undefined;
|
702
|
+
zipCode?: string | null | undefined;
|
703
|
+
} | {
|
704
|
+
firstname: string;
|
705
|
+
surname: string;
|
706
|
+
middlename?: string | null | undefined;
|
707
|
+
} | {
|
708
|
+
country: string;
|
709
|
+
district: string;
|
710
|
+
addressType: "DOMESTIC";
|
711
|
+
province: string;
|
712
|
+
urbanOrRural: "RURAL";
|
713
|
+
village?: string | null | undefined;
|
714
|
+
} | {
|
715
|
+
country: string;
|
716
|
+
state: string;
|
717
|
+
addressType: "INTERNATIONAL";
|
718
|
+
district2: string;
|
719
|
+
cityOrTown?: string | null | undefined;
|
720
|
+
addressLine1?: string | null | undefined;
|
721
|
+
addressLine2?: string | null | undefined;
|
722
|
+
addressLine3?: string | null | undefined;
|
723
|
+
postcodeOrZip?: string | null | undefined;
|
724
|
+
} | {
|
725
|
+
type: string;
|
726
|
+
option: string;
|
727
|
+
path: string;
|
728
|
+
originalFilename: string;
|
729
|
+
}[] | {
|
730
|
+
start: string;
|
731
|
+
end: string;
|
732
|
+
} | null | undefined>;
|
733
|
+
createdBySignature?: string | null | undefined;
|
734
|
+
createdAtLocation?: string | null | undefined;
|
735
|
+
annotation?: Record<string, string | number | boolean | {
|
736
|
+
type: string;
|
737
|
+
path: string;
|
738
|
+
originalFilename: string;
|
739
|
+
} | {
|
740
|
+
country: string;
|
741
|
+
district: string;
|
742
|
+
addressType: "DOMESTIC";
|
743
|
+
province: string;
|
744
|
+
urbanOrRural: "URBAN";
|
745
|
+
number?: string | null | undefined;
|
746
|
+
town?: string | null | undefined;
|
747
|
+
residentialArea?: string | null | undefined;
|
748
|
+
street?: string | null | undefined;
|
749
|
+
zipCode?: string | null | undefined;
|
750
|
+
} | {
|
751
|
+
firstname: string;
|
752
|
+
surname: string;
|
753
|
+
middlename?: string | null | undefined;
|
754
|
+
} | {
|
755
|
+
country: string;
|
756
|
+
district: string;
|
757
|
+
addressType: "DOMESTIC";
|
758
|
+
province: string;
|
759
|
+
urbanOrRural: "RURAL";
|
760
|
+
village?: string | null | undefined;
|
761
|
+
} | {
|
762
|
+
country: string;
|
763
|
+
state: string;
|
764
|
+
addressType: "INTERNATIONAL";
|
765
|
+
district2: string;
|
766
|
+
cityOrTown?: string | null | undefined;
|
767
|
+
addressLine1?: string | null | undefined;
|
768
|
+
addressLine2?: string | null | undefined;
|
769
|
+
addressLine3?: string | null | undefined;
|
770
|
+
postcodeOrZip?: string | null | undefined;
|
771
|
+
} | {
|
772
|
+
type: string;
|
773
|
+
option: string;
|
774
|
+
path: string;
|
775
|
+
originalFilename: string;
|
776
|
+
}[] | {
|
777
|
+
start: string;
|
778
|
+
end: string;
|
779
|
+
} | null | undefined> | null | undefined;
|
780
|
+
originalActionId?: string | null | undefined;
|
781
|
+
}>;
|
782
|
+
export type ActionBase = z.infer<typeof ActionBase>;
|
783
|
+
export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
299
784
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
300
785
|
transactionId: z.ZodString;
|
301
786
|
createdByUserType: z.ZodEnum<["user", "system"]>;
|
@@ -427,16 +912,16 @@ export declare const ActionBase: z.ZodObject<{
|
|
427
912
|
addressLine3?: string | null | undefined;
|
428
913
|
postcodeOrZip?: string | null | undefined;
|
429
914
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
430
|
-
firstname: z.
|
431
|
-
surname: z.
|
915
|
+
firstname: z.ZodString;
|
916
|
+
surname: z.ZodString;
|
432
917
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
433
918
|
}, "strip", z.ZodTypeAny, {
|
434
|
-
firstname
|
435
|
-
surname
|
919
|
+
firstname: string;
|
920
|
+
surname: string;
|
436
921
|
middlename?: string | null | undefined;
|
437
922
|
}, {
|
438
|
-
firstname
|
439
|
-
surname
|
923
|
+
firstname: string;
|
924
|
+
surname: string;
|
440
925
|
middlename?: string | null | undefined;
|
441
926
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
442
927
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -562,21 +1047,25 @@ export declare const ActionBase: z.ZodObject<{
|
|
562
1047
|
addressLine3?: string | null | undefined;
|
563
1048
|
postcodeOrZip?: string | null | undefined;
|
564
1049
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
565
|
-
firstname: z.
|
566
|
-
surname: z.
|
1050
|
+
firstname: z.ZodString;
|
1051
|
+
surname: z.ZodString;
|
567
1052
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
568
1053
|
}, "strip", z.ZodTypeAny, {
|
569
|
-
firstname
|
570
|
-
surname
|
1054
|
+
firstname: string;
|
1055
|
+
surname: string;
|
571
1056
|
middlename?: string | null | undefined;
|
572
1057
|
}, {
|
573
|
-
firstname
|
574
|
-
surname
|
1058
|
+
firstname: string;
|
1059
|
+
surname: string;
|
575
1060
|
middlename?: string | null | undefined;
|
576
1061
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
577
1062
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
578
1063
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
579
|
-
},
|
1064
|
+
}, {
|
1065
|
+
type: z.ZodLiteral<"REGISTER">;
|
1066
|
+
registrationNumber: z.ZodOptional<z.ZodString>;
|
1067
|
+
}>, "strip", z.ZodTypeAny, {
|
1068
|
+
type: "REGISTER";
|
580
1069
|
id: string & z.BRAND<"UUID">;
|
581
1070
|
status: "Rejected" | "Requested" | "Accepted";
|
582
1071
|
transactionId: string;
|
@@ -600,8 +1089,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
600
1089
|
street?: string | null | undefined;
|
601
1090
|
zipCode?: string | null | undefined;
|
602
1091
|
} | {
|
603
|
-
firstname
|
604
|
-
surname
|
1092
|
+
firstname: string;
|
1093
|
+
surname: string;
|
605
1094
|
middlename?: string | null | undefined;
|
606
1095
|
} | {
|
607
1096
|
country: string;
|
@@ -647,8 +1136,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
647
1136
|
street?: string | null | undefined;
|
648
1137
|
zipCode?: string | null | undefined;
|
649
1138
|
} | {
|
650
|
-
firstname
|
651
|
-
surname
|
1139
|
+
firstname: string;
|
1140
|
+
surname: string;
|
652
1141
|
middlename?: string | null | undefined;
|
653
1142
|
} | {
|
654
1143
|
country: string;
|
@@ -677,7 +1166,9 @@ export declare const ActionBase: z.ZodObject<{
|
|
677
1166
|
end: string;
|
678
1167
|
} | null | undefined> | null | undefined;
|
679
1168
|
originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
|
1169
|
+
registrationNumber?: string | undefined;
|
680
1170
|
}, {
|
1171
|
+
type: "REGISTER";
|
681
1172
|
id: string;
|
682
1173
|
status: "Rejected" | "Requested" | "Accepted";
|
683
1174
|
transactionId: string;
|
@@ -701,8 +1192,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
701
1192
|
street?: string | null | undefined;
|
702
1193
|
zipCode?: string | null | undefined;
|
703
1194
|
} | {
|
704
|
-
firstname
|
705
|
-
surname
|
1195
|
+
firstname: string;
|
1196
|
+
surname: string;
|
706
1197
|
middlename?: string | null | undefined;
|
707
1198
|
} | {
|
708
1199
|
country: string;
|
@@ -748,8 +1239,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
748
1239
|
street?: string | null | undefined;
|
749
1240
|
zipCode?: string | null | undefined;
|
750
1241
|
} | {
|
751
|
-
firstname
|
752
|
-
surname
|
1242
|
+
firstname: string;
|
1243
|
+
surname: string;
|
753
1244
|
middlename?: string | null | undefined;
|
754
1245
|
} | {
|
755
1246
|
country: string;
|
@@ -778,9 +1269,20 @@ export declare const ActionBase: z.ZodObject<{
|
|
778
1269
|
end: string;
|
779
1270
|
} | null | undefined> | null | undefined;
|
780
1271
|
originalActionId?: string | null | undefined;
|
1272
|
+
registrationNumber?: string | undefined;
|
781
1273
|
}>;
|
782
|
-
export type
|
783
|
-
export declare const
|
1274
|
+
export type RegisterAction = z.infer<typeof RegisterAction>;
|
1275
|
+
export declare const RejectionReason: z.ZodObject<{
|
1276
|
+
message: z.ZodString;
|
1277
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
1278
|
+
}, "strip", z.ZodTypeAny, {
|
1279
|
+
message: string;
|
1280
|
+
isDuplicate?: boolean | undefined;
|
1281
|
+
}, {
|
1282
|
+
message: string;
|
1283
|
+
isDuplicate?: boolean | undefined;
|
1284
|
+
}>;
|
1285
|
+
declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
784
1286
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
785
1287
|
transactionId: z.ZodString;
|
786
1288
|
createdByUserType: z.ZodEnum<["user", "system"]>;
|
@@ -912,16 +1414,16 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
912
1414
|
addressLine3?: string | null | undefined;
|
913
1415
|
postcodeOrZip?: string | null | undefined;
|
914
1416
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
915
|
-
firstname: z.
|
916
|
-
surname: z.
|
1417
|
+
firstname: z.ZodString;
|
1418
|
+
surname: z.ZodString;
|
917
1419
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
918
1420
|
}, "strip", z.ZodTypeAny, {
|
919
|
-
firstname
|
920
|
-
surname
|
1421
|
+
firstname: string;
|
1422
|
+
surname: string;
|
921
1423
|
middlename?: string | null | undefined;
|
922
1424
|
}, {
|
923
|
-
firstname
|
924
|
-
surname
|
1425
|
+
firstname: string;
|
1426
|
+
surname: string;
|
925
1427
|
middlename?: string | null | undefined;
|
926
1428
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
927
1429
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1047,25 +1549,24 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1047
1549
|
addressLine3?: string | null | undefined;
|
1048
1550
|
postcodeOrZip?: string | null | undefined;
|
1049
1551
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1050
|
-
firstname: z.
|
1051
|
-
surname: z.
|
1552
|
+
firstname: z.ZodString;
|
1553
|
+
surname: z.ZodString;
|
1052
1554
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1053
1555
|
}, "strip", z.ZodTypeAny, {
|
1054
|
-
firstname
|
1055
|
-
surname
|
1556
|
+
firstname: string;
|
1557
|
+
surname: string;
|
1056
1558
|
middlename?: string | null | undefined;
|
1057
1559
|
}, {
|
1058
|
-
firstname
|
1059
|
-
surname
|
1560
|
+
firstname: string;
|
1561
|
+
surname: string;
|
1060
1562
|
middlename?: string | null | undefined;
|
1061
1563
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1062
1564
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1063
1565
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
1064
1566
|
}, {
|
1065
|
-
type: z.ZodLiteral<"
|
1066
|
-
registrationNumber: z.ZodOptional<z.ZodString>;
|
1567
|
+
type: z.ZodLiteral<"CREATE">;
|
1067
1568
|
}>, "strip", z.ZodTypeAny, {
|
1068
|
-
type: "
|
1569
|
+
type: "CREATE";
|
1069
1570
|
id: string & z.BRAND<"UUID">;
|
1070
1571
|
status: "Rejected" | "Requested" | "Accepted";
|
1071
1572
|
transactionId: string;
|
@@ -1089,8 +1590,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1089
1590
|
street?: string | null | undefined;
|
1090
1591
|
zipCode?: string | null | undefined;
|
1091
1592
|
} | {
|
1092
|
-
firstname
|
1093
|
-
surname
|
1593
|
+
firstname: string;
|
1594
|
+
surname: string;
|
1094
1595
|
middlename?: string | null | undefined;
|
1095
1596
|
} | {
|
1096
1597
|
country: string;
|
@@ -1136,8 +1637,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1136
1637
|
street?: string | null | undefined;
|
1137
1638
|
zipCode?: string | null | undefined;
|
1138
1639
|
} | {
|
1139
|
-
firstname
|
1140
|
-
surname
|
1640
|
+
firstname: string;
|
1641
|
+
surname: string;
|
1141
1642
|
middlename?: string | null | undefined;
|
1142
1643
|
} | {
|
1143
1644
|
country: string;
|
@@ -1166,9 +1667,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1166
1667
|
end: string;
|
1167
1668
|
} | null | undefined> | null | undefined;
|
1168
1669
|
originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
|
1169
|
-
registrationNumber?: string | undefined;
|
1170
1670
|
}, {
|
1171
|
-
type: "
|
1671
|
+
type: "CREATE";
|
1172
1672
|
id: string;
|
1173
1673
|
status: "Rejected" | "Requested" | "Accepted";
|
1174
1674
|
transactionId: string;
|
@@ -1192,8 +1692,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1192
1692
|
street?: string | null | undefined;
|
1193
1693
|
zipCode?: string | null | undefined;
|
1194
1694
|
} | {
|
1195
|
-
firstname
|
1196
|
-
surname
|
1695
|
+
firstname: string;
|
1696
|
+
surname: string;
|
1197
1697
|
middlename?: string | null | undefined;
|
1198
1698
|
} | {
|
1199
1699
|
country: string;
|
@@ -1239,8 +1739,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1239
1739
|
street?: string | null | undefined;
|
1240
1740
|
zipCode?: string | null | undefined;
|
1241
1741
|
} | {
|
1242
|
-
firstname
|
1243
|
-
surname
|
1742
|
+
firstname: string;
|
1743
|
+
surname: string;
|
1244
1744
|
middlename?: string | null | undefined;
|
1245
1745
|
} | {
|
1246
1746
|
country: string;
|
@@ -1269,20 +1769,16 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1269
1769
|
end: string;
|
1270
1770
|
} | null | undefined> | null | undefined;
|
1271
1771
|
originalActionId?: string | null | undefined;
|
1272
|
-
registrationNumber?: string | undefined;
|
1273
1772
|
}>;
|
1274
|
-
export
|
1275
|
-
|
1276
|
-
message: z.ZodString;
|
1277
|
-
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
1773
|
+
export declare const PrintContent: z.ZodObject<{
|
1774
|
+
templateId: z.ZodOptional<z.ZodString>;
|
1278
1775
|
}, "strip", z.ZodTypeAny, {
|
1279
|
-
|
1280
|
-
isDuplicate?: boolean | undefined;
|
1776
|
+
templateId?: string | undefined;
|
1281
1777
|
}, {
|
1282
|
-
|
1283
|
-
isDuplicate?: boolean | undefined;
|
1778
|
+
templateId?: string | undefined;
|
1284
1779
|
}>;
|
1285
|
-
|
1780
|
+
export type PrintContent = z.infer<typeof PrintContent>;
|
1781
|
+
declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
1286
1782
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
1287
1783
|
transactionId: z.ZodString;
|
1288
1784
|
createdByUserType: z.ZodEnum<["user", "system"]>;
|
@@ -1414,16 +1910,16 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1414
1910
|
addressLine3?: string | null | undefined;
|
1415
1911
|
postcodeOrZip?: string | null | undefined;
|
1416
1912
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1417
|
-
firstname: z.
|
1418
|
-
surname: z.
|
1913
|
+
firstname: z.ZodString;
|
1914
|
+
surname: z.ZodString;
|
1419
1915
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1420
1916
|
}, "strip", z.ZodTypeAny, {
|
1421
|
-
firstname
|
1422
|
-
surname
|
1917
|
+
firstname: string;
|
1918
|
+
surname: string;
|
1423
1919
|
middlename?: string | null | undefined;
|
1424
1920
|
}, {
|
1425
|
-
firstname
|
1426
|
-
surname
|
1921
|
+
firstname: string;
|
1922
|
+
surname: string;
|
1427
1923
|
middlename?: string | null | undefined;
|
1428
1924
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1429
1925
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1549,24 +2045,31 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1549
2045
|
addressLine3?: string | null | undefined;
|
1550
2046
|
postcodeOrZip?: string | null | undefined;
|
1551
2047
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1552
|
-
firstname: z.
|
1553
|
-
surname: z.
|
2048
|
+
firstname: z.ZodString;
|
2049
|
+
surname: z.ZodString;
|
1554
2050
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1555
2051
|
}, "strip", z.ZodTypeAny, {
|
1556
|
-
firstname
|
1557
|
-
surname
|
2052
|
+
firstname: string;
|
2053
|
+
surname: string;
|
1558
2054
|
middlename?: string | null | undefined;
|
1559
2055
|
}, {
|
1560
|
-
firstname
|
1561
|
-
surname
|
2056
|
+
firstname: string;
|
2057
|
+
surname: string;
|
1562
2058
|
middlename?: string | null | undefined;
|
1563
2059
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1564
2060
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1565
2061
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
1566
2062
|
}, {
|
1567
|
-
type: z.ZodLiteral<"
|
2063
|
+
type: z.ZodLiteral<"PRINT_CERTIFICATE">;
|
2064
|
+
content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
2065
|
+
templateId: z.ZodOptional<z.ZodString>;
|
2066
|
+
}, "strip", z.ZodTypeAny, {
|
2067
|
+
templateId?: string | undefined;
|
2068
|
+
}, {
|
2069
|
+
templateId?: string | undefined;
|
2070
|
+
}>>>;
|
1568
2071
|
}>, "strip", z.ZodTypeAny, {
|
1569
|
-
type: "
|
2072
|
+
type: "PRINT_CERTIFICATE";
|
1570
2073
|
id: string & z.BRAND<"UUID">;
|
1571
2074
|
status: "Rejected" | "Requested" | "Accepted";
|
1572
2075
|
transactionId: string;
|
@@ -1590,8 +2093,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1590
2093
|
street?: string | null | undefined;
|
1591
2094
|
zipCode?: string | null | undefined;
|
1592
2095
|
} | {
|
1593
|
-
firstname
|
1594
|
-
surname
|
2096
|
+
firstname: string;
|
2097
|
+
surname: string;
|
1595
2098
|
middlename?: string | null | undefined;
|
1596
2099
|
} | {
|
1597
2100
|
country: string;
|
@@ -1619,6 +2122,9 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1619
2122
|
start: string;
|
1620
2123
|
end: string;
|
1621
2124
|
} | null | undefined>;
|
2125
|
+
content?: {
|
2126
|
+
templateId?: string | undefined;
|
2127
|
+
} | null | undefined;
|
1622
2128
|
createdBySignature?: string | null | undefined;
|
1623
2129
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
1624
2130
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1637,8 +2143,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1637
2143
|
street?: string | null | undefined;
|
1638
2144
|
zipCode?: string | null | undefined;
|
1639
2145
|
} | {
|
1640
|
-
firstname
|
1641
|
-
surname
|
2146
|
+
firstname: string;
|
2147
|
+
surname: string;
|
1642
2148
|
middlename?: string | null | undefined;
|
1643
2149
|
} | {
|
1644
2150
|
country: string;
|
@@ -1668,7 +2174,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1668
2174
|
} | null | undefined> | null | undefined;
|
1669
2175
|
originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
|
1670
2176
|
}, {
|
1671
|
-
type: "
|
2177
|
+
type: "PRINT_CERTIFICATE";
|
1672
2178
|
id: string;
|
1673
2179
|
status: "Rejected" | "Requested" | "Accepted";
|
1674
2180
|
transactionId: string;
|
@@ -1692,8 +2198,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1692
2198
|
street?: string | null | undefined;
|
1693
2199
|
zipCode?: string | null | undefined;
|
1694
2200
|
} | {
|
1695
|
-
firstname
|
1696
|
-
surname
|
2201
|
+
firstname: string;
|
2202
|
+
surname: string;
|
1697
2203
|
middlename?: string | null | undefined;
|
1698
2204
|
} | {
|
1699
2205
|
country: string;
|
@@ -1721,6 +2227,9 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1721
2227
|
start: string;
|
1722
2228
|
end: string;
|
1723
2229
|
} | null | undefined>;
|
2230
|
+
content?: {
|
2231
|
+
templateId?: string | undefined;
|
2232
|
+
} | null | undefined;
|
1724
2233
|
createdBySignature?: string | null | undefined;
|
1725
2234
|
createdAtLocation?: string | null | undefined;
|
1726
2235
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1739,8 +2248,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1739
2248
|
street?: string | null | undefined;
|
1740
2249
|
zipCode?: string | null | undefined;
|
1741
2250
|
} | {
|
1742
|
-
firstname
|
1743
|
-
surname
|
2251
|
+
firstname: string;
|
2252
|
+
surname: string;
|
1744
2253
|
middlename?: string | null | undefined;
|
1745
2254
|
} | {
|
1746
2255
|
country: string;
|
@@ -1770,6 +2279,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1770
2279
|
} | null | undefined> | null | undefined;
|
1771
2280
|
originalActionId?: string | null | undefined;
|
1772
2281
|
}>;
|
2282
|
+
export type PrintCertificateAction = z.infer<typeof PrintCertificateAction>;
|
1773
2283
|
declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
1774
2284
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
1775
2285
|
transactionId: z.ZodString;
|
@@ -1902,16 +2412,16 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1902
2412
|
addressLine3?: string | null | undefined;
|
1903
2413
|
postcodeOrZip?: string | null | undefined;
|
1904
2414
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1905
|
-
firstname: z.
|
1906
|
-
surname: z.
|
2415
|
+
firstname: z.ZodString;
|
2416
|
+
surname: z.ZodString;
|
1907
2417
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1908
2418
|
}, "strip", z.ZodTypeAny, {
|
1909
|
-
firstname
|
1910
|
-
surname
|
2419
|
+
firstname: string;
|
2420
|
+
surname: string;
|
1911
2421
|
middlename?: string | null | undefined;
|
1912
2422
|
}, {
|
1913
|
-
firstname
|
1914
|
-
surname
|
2423
|
+
firstname: string;
|
2424
|
+
surname: string;
|
1915
2425
|
middlename?: string | null | undefined;
|
1916
2426
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1917
2427
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2037,16 +2547,16 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2037
2547
|
addressLine3?: string | null | undefined;
|
2038
2548
|
postcodeOrZip?: string | null | undefined;
|
2039
2549
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2040
|
-
firstname: z.
|
2041
|
-
surname: z.
|
2550
|
+
firstname: z.ZodString;
|
2551
|
+
surname: z.ZodString;
|
2042
2552
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2043
2553
|
}, "strip", z.ZodTypeAny, {
|
2044
|
-
firstname
|
2045
|
-
surname
|
2554
|
+
firstname: string;
|
2555
|
+
surname: string;
|
2046
2556
|
middlename?: string | null | undefined;
|
2047
2557
|
}, {
|
2048
|
-
firstname
|
2049
|
-
surname
|
2558
|
+
firstname: string;
|
2559
|
+
surname: string;
|
2050
2560
|
middlename?: string | null | undefined;
|
2051
2561
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2052
2562
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2078,8 +2588,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2078
2588
|
street?: string | null | undefined;
|
2079
2589
|
zipCode?: string | null | undefined;
|
2080
2590
|
} | {
|
2081
|
-
firstname
|
2082
|
-
surname
|
2591
|
+
firstname: string;
|
2592
|
+
surname: string;
|
2083
2593
|
middlename?: string | null | undefined;
|
2084
2594
|
} | {
|
2085
2595
|
country: string;
|
@@ -2125,8 +2635,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2125
2635
|
street?: string | null | undefined;
|
2126
2636
|
zipCode?: string | null | undefined;
|
2127
2637
|
} | {
|
2128
|
-
firstname
|
2129
|
-
surname
|
2638
|
+
firstname: string;
|
2639
|
+
surname: string;
|
2130
2640
|
middlename?: string | null | undefined;
|
2131
2641
|
} | {
|
2132
2642
|
country: string;
|
@@ -2180,8 +2690,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2180
2690
|
street?: string | null | undefined;
|
2181
2691
|
zipCode?: string | null | undefined;
|
2182
2692
|
} | {
|
2183
|
-
firstname
|
2184
|
-
surname
|
2693
|
+
firstname: string;
|
2694
|
+
surname: string;
|
2185
2695
|
middlename?: string | null | undefined;
|
2186
2696
|
} | {
|
2187
2697
|
country: string;
|
@@ -2227,8 +2737,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2227
2737
|
street?: string | null | undefined;
|
2228
2738
|
zipCode?: string | null | undefined;
|
2229
2739
|
} | {
|
2230
|
-
firstname
|
2231
|
-
surname
|
2740
|
+
firstname: string;
|
2741
|
+
surname: string;
|
2232
2742
|
middlename?: string | null | undefined;
|
2233
2743
|
} | {
|
2234
2744
|
country: string;
|
@@ -2391,16 +2901,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2391
2901
|
addressLine3?: string | null | undefined;
|
2392
2902
|
postcodeOrZip?: string | null | undefined;
|
2393
2903
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2394
|
-
firstname: z.
|
2395
|
-
surname: z.
|
2904
|
+
firstname: z.ZodString;
|
2905
|
+
surname: z.ZodString;
|
2396
2906
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2397
2907
|
}, "strip", z.ZodTypeAny, {
|
2398
|
-
firstname
|
2399
|
-
surname
|
2908
|
+
firstname: string;
|
2909
|
+
surname: string;
|
2400
2910
|
middlename?: string | null | undefined;
|
2401
2911
|
}, {
|
2402
|
-
firstname
|
2403
|
-
surname
|
2912
|
+
firstname: string;
|
2913
|
+
surname: string;
|
2404
2914
|
middlename?: string | null | undefined;
|
2405
2915
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2406
2916
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2526,16 +3036,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2526
3036
|
addressLine3?: string | null | undefined;
|
2527
3037
|
postcodeOrZip?: string | null | undefined;
|
2528
3038
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2529
|
-
firstname: z.
|
2530
|
-
surname: z.
|
3039
|
+
firstname: z.ZodString;
|
3040
|
+
surname: z.ZodString;
|
2531
3041
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2532
3042
|
}, "strip", z.ZodTypeAny, {
|
2533
|
-
firstname
|
2534
|
-
surname
|
3043
|
+
firstname: string;
|
3044
|
+
surname: string;
|
2535
3045
|
middlename?: string | null | undefined;
|
2536
3046
|
}, {
|
2537
|
-
firstname
|
2538
|
-
surname
|
3047
|
+
firstname: string;
|
3048
|
+
surname: string;
|
2539
3049
|
middlename?: string | null | undefined;
|
2540
3050
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2541
3051
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2567,8 +3077,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2567
3077
|
street?: string | null | undefined;
|
2568
3078
|
zipCode?: string | null | undefined;
|
2569
3079
|
} | {
|
2570
|
-
firstname
|
2571
|
-
surname
|
3080
|
+
firstname: string;
|
3081
|
+
surname: string;
|
2572
3082
|
middlename?: string | null | undefined;
|
2573
3083
|
} | {
|
2574
3084
|
country: string;
|
@@ -2614,8 +3124,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2614
3124
|
street?: string | null | undefined;
|
2615
3125
|
zipCode?: string | null | undefined;
|
2616
3126
|
} | {
|
2617
|
-
firstname
|
2618
|
-
surname
|
3127
|
+
firstname: string;
|
3128
|
+
surname: string;
|
2619
3129
|
middlename?: string | null | undefined;
|
2620
3130
|
} | {
|
2621
3131
|
country: string;
|
@@ -2669,8 +3179,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2669
3179
|
street?: string | null | undefined;
|
2670
3180
|
zipCode?: string | null | undefined;
|
2671
3181
|
} | {
|
2672
|
-
firstname
|
2673
|
-
surname
|
3182
|
+
firstname: string;
|
3183
|
+
surname: string;
|
2674
3184
|
middlename?: string | null | undefined;
|
2675
3185
|
} | {
|
2676
3186
|
country: string;
|
@@ -2716,8 +3226,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2716
3226
|
street?: string | null | undefined;
|
2717
3227
|
zipCode?: string | null | undefined;
|
2718
3228
|
} | {
|
2719
|
-
firstname
|
2720
|
-
surname
|
3229
|
+
firstname: string;
|
3230
|
+
surname: string;
|
2721
3231
|
middlename?: string | null | undefined;
|
2722
3232
|
} | {
|
2723
3233
|
country: string;
|
@@ -2878,16 +3388,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2878
3388
|
addressLine3?: string | null | undefined;
|
2879
3389
|
postcodeOrZip?: string | null | undefined;
|
2880
3390
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2881
|
-
firstname: z.
|
2882
|
-
surname: z.
|
3391
|
+
firstname: z.ZodString;
|
3392
|
+
surname: z.ZodString;
|
2883
3393
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2884
3394
|
}, "strip", z.ZodTypeAny, {
|
2885
|
-
firstname
|
2886
|
-
surname
|
3395
|
+
firstname: string;
|
3396
|
+
surname: string;
|
2887
3397
|
middlename?: string | null | undefined;
|
2888
3398
|
}, {
|
2889
|
-
firstname
|
2890
|
-
surname
|
3399
|
+
firstname: string;
|
3400
|
+
surname: string;
|
2891
3401
|
middlename?: string | null | undefined;
|
2892
3402
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2893
3403
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3013,16 +3523,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3013
3523
|
addressLine3?: string | null | undefined;
|
3014
3524
|
postcodeOrZip?: string | null | undefined;
|
3015
3525
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3016
|
-
firstname: z.
|
3017
|
-
surname: z.
|
3526
|
+
firstname: z.ZodString;
|
3527
|
+
surname: z.ZodString;
|
3018
3528
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3019
3529
|
}, "strip", z.ZodTypeAny, {
|
3020
|
-
firstname
|
3021
|
-
surname
|
3530
|
+
firstname: string;
|
3531
|
+
surname: string;
|
3022
3532
|
middlename?: string | null | undefined;
|
3023
3533
|
}, {
|
3024
|
-
firstname
|
3025
|
-
surname
|
3534
|
+
firstname: string;
|
3535
|
+
surname: string;
|
3026
3536
|
middlename?: string | null | undefined;
|
3027
3537
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3028
3538
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3054,8 +3564,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3054
3564
|
street?: string | null | undefined;
|
3055
3565
|
zipCode?: string | null | undefined;
|
3056
3566
|
} | {
|
3057
|
-
firstname
|
3058
|
-
surname
|
3567
|
+
firstname: string;
|
3568
|
+
surname: string;
|
3059
3569
|
middlename?: string | null | undefined;
|
3060
3570
|
} | {
|
3061
3571
|
country: string;
|
@@ -3101,8 +3611,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3101
3611
|
street?: string | null | undefined;
|
3102
3612
|
zipCode?: string | null | undefined;
|
3103
3613
|
} | {
|
3104
|
-
firstname
|
3105
|
-
surname
|
3614
|
+
firstname: string;
|
3615
|
+
surname: string;
|
3106
3616
|
middlename?: string | null | undefined;
|
3107
3617
|
} | {
|
3108
3618
|
country: string;
|
@@ -3156,8 +3666,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3156
3666
|
street?: string | null | undefined;
|
3157
3667
|
zipCode?: string | null | undefined;
|
3158
3668
|
} | {
|
3159
|
-
firstname
|
3160
|
-
surname
|
3669
|
+
firstname: string;
|
3670
|
+
surname: string;
|
3161
3671
|
middlename?: string | null | undefined;
|
3162
3672
|
} | {
|
3163
3673
|
country: string;
|
@@ -3203,8 +3713,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3203
3713
|
street?: string | null | undefined;
|
3204
3714
|
zipCode?: string | null | undefined;
|
3205
3715
|
} | {
|
3206
|
-
firstname
|
3207
|
-
surname
|
3716
|
+
firstname: string;
|
3717
|
+
surname: string;
|
3208
3718
|
middlename?: string | null | undefined;
|
3209
3719
|
} | {
|
3210
3720
|
country: string;
|
@@ -3365,16 +3875,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3365
3875
|
addressLine3?: string | null | undefined;
|
3366
3876
|
postcodeOrZip?: string | null | undefined;
|
3367
3877
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3368
|
-
firstname: z.
|
3369
|
-
surname: z.
|
3878
|
+
firstname: z.ZodString;
|
3879
|
+
surname: z.ZodString;
|
3370
3880
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3371
3881
|
}, "strip", z.ZodTypeAny, {
|
3372
|
-
firstname
|
3373
|
-
surname
|
3882
|
+
firstname: string;
|
3883
|
+
surname: string;
|
3374
3884
|
middlename?: string | null | undefined;
|
3375
3885
|
}, {
|
3376
|
-
firstname
|
3377
|
-
surname
|
3886
|
+
firstname: string;
|
3887
|
+
surname: string;
|
3378
3888
|
middlename?: string | null | undefined;
|
3379
3889
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3380
3890
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3500,16 +4010,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3500
4010
|
addressLine3?: string | null | undefined;
|
3501
4011
|
postcodeOrZip?: string | null | undefined;
|
3502
4012
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3503
|
-
firstname: z.
|
3504
|
-
surname: z.
|
4013
|
+
firstname: z.ZodString;
|
4014
|
+
surname: z.ZodString;
|
3505
4015
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3506
4016
|
}, "strip", z.ZodTypeAny, {
|
3507
|
-
firstname
|
3508
|
-
surname
|
4017
|
+
firstname: string;
|
4018
|
+
surname: string;
|
3509
4019
|
middlename?: string | null | undefined;
|
3510
4020
|
}, {
|
3511
|
-
firstname
|
3512
|
-
surname
|
4021
|
+
firstname: string;
|
4022
|
+
surname: string;
|
3513
4023
|
middlename?: string | null | undefined;
|
3514
4024
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3515
4025
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3555,8 +4065,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3555
4065
|
street?: string | null | undefined;
|
3556
4066
|
zipCode?: string | null | undefined;
|
3557
4067
|
} | {
|
3558
|
-
firstname
|
3559
|
-
surname
|
4068
|
+
firstname: string;
|
4069
|
+
surname: string;
|
3560
4070
|
middlename?: string | null | undefined;
|
3561
4071
|
} | {
|
3562
4072
|
country: string;
|
@@ -3602,8 +4112,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3602
4112
|
street?: string | null | undefined;
|
3603
4113
|
zipCode?: string | null | undefined;
|
3604
4114
|
} | {
|
3605
|
-
firstname
|
3606
|
-
surname
|
4115
|
+
firstname: string;
|
4116
|
+
surname: string;
|
3607
4117
|
middlename?: string | null | undefined;
|
3608
4118
|
} | {
|
3609
4119
|
country: string;
|
@@ -3661,8 +4171,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3661
4171
|
street?: string | null | undefined;
|
3662
4172
|
zipCode?: string | null | undefined;
|
3663
4173
|
} | {
|
3664
|
-
firstname
|
3665
|
-
surname
|
4174
|
+
firstname: string;
|
4175
|
+
surname: string;
|
3666
4176
|
middlename?: string | null | undefined;
|
3667
4177
|
} | {
|
3668
4178
|
country: string;
|
@@ -3708,8 +4218,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3708
4218
|
street?: string | null | undefined;
|
3709
4219
|
zipCode?: string | null | undefined;
|
3710
4220
|
} | {
|
3711
|
-
firstname
|
3712
|
-
surname
|
4221
|
+
firstname: string;
|
4222
|
+
surname: string;
|
3713
4223
|
middlename?: string | null | undefined;
|
3714
4224
|
} | {
|
3715
4225
|
country: string;
|
@@ -3870,16 +4380,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3870
4380
|
addressLine3?: string | null | undefined;
|
3871
4381
|
postcodeOrZip?: string | null | undefined;
|
3872
4382
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3873
|
-
firstname: z.
|
3874
|
-
surname: z.
|
4383
|
+
firstname: z.ZodString;
|
4384
|
+
surname: z.ZodString;
|
3875
4385
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3876
4386
|
}, "strip", z.ZodTypeAny, {
|
3877
|
-
firstname
|
3878
|
-
surname
|
4387
|
+
firstname: string;
|
4388
|
+
surname: string;
|
3879
4389
|
middlename?: string | null | undefined;
|
3880
4390
|
}, {
|
3881
|
-
firstname
|
3882
|
-
surname
|
4391
|
+
firstname: string;
|
4392
|
+
surname: string;
|
3883
4393
|
middlename?: string | null | undefined;
|
3884
4394
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3885
4395
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4005,16 +4515,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4005
4515
|
addressLine3?: string | null | undefined;
|
4006
4516
|
postcodeOrZip?: string | null | undefined;
|
4007
4517
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4008
|
-
firstname: z.
|
4009
|
-
surname: z.
|
4518
|
+
firstname: z.ZodString;
|
4519
|
+
surname: z.ZodString;
|
4010
4520
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4011
4521
|
}, "strip", z.ZodTypeAny, {
|
4012
|
-
firstname
|
4013
|
-
surname
|
4522
|
+
firstname: string;
|
4523
|
+
surname: string;
|
4014
4524
|
middlename?: string | null | undefined;
|
4015
4525
|
}, {
|
4016
|
-
firstname
|
4017
|
-
surname
|
4526
|
+
firstname: string;
|
4527
|
+
surname: string;
|
4018
4528
|
middlename?: string | null | undefined;
|
4019
4529
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4020
4530
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4046,8 +4556,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4046
4556
|
street?: string | null | undefined;
|
4047
4557
|
zipCode?: string | null | undefined;
|
4048
4558
|
} | {
|
4049
|
-
firstname
|
4050
|
-
surname
|
4559
|
+
firstname: string;
|
4560
|
+
surname: string;
|
4051
4561
|
middlename?: string | null | undefined;
|
4052
4562
|
} | {
|
4053
4563
|
country: string;
|
@@ -4093,8 +4603,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4093
4603
|
street?: string | null | undefined;
|
4094
4604
|
zipCode?: string | null | undefined;
|
4095
4605
|
} | {
|
4096
|
-
firstname
|
4097
|
-
surname
|
4606
|
+
firstname: string;
|
4607
|
+
surname: string;
|
4098
4608
|
middlename?: string | null | undefined;
|
4099
4609
|
} | {
|
4100
4610
|
country: string;
|
@@ -4148,8 +4658,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4148
4658
|
street?: string | null | undefined;
|
4149
4659
|
zipCode?: string | null | undefined;
|
4150
4660
|
} | {
|
4151
|
-
firstname
|
4152
|
-
surname
|
4661
|
+
firstname: string;
|
4662
|
+
surname: string;
|
4153
4663
|
middlename?: string | null | undefined;
|
4154
4664
|
} | {
|
4155
4665
|
country: string;
|
@@ -4195,8 +4705,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4195
4705
|
street?: string | null | undefined;
|
4196
4706
|
zipCode?: string | null | undefined;
|
4197
4707
|
} | {
|
4198
|
-
firstname
|
4199
|
-
surname
|
4708
|
+
firstname: string;
|
4709
|
+
surname: string;
|
4200
4710
|
middlename?: string | null | undefined;
|
4201
4711
|
} | {
|
4202
4712
|
country: string;
|
@@ -4357,16 +4867,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4357
4867
|
addressLine3?: string | null | undefined;
|
4358
4868
|
postcodeOrZip?: string | null | undefined;
|
4359
4869
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4360
|
-
firstname: z.
|
4361
|
-
surname: z.
|
4870
|
+
firstname: z.ZodString;
|
4871
|
+
surname: z.ZodString;
|
4362
4872
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4363
4873
|
}, "strip", z.ZodTypeAny, {
|
4364
|
-
firstname
|
4365
|
-
surname
|
4874
|
+
firstname: string;
|
4875
|
+
surname: string;
|
4366
4876
|
middlename?: string | null | undefined;
|
4367
4877
|
}, {
|
4368
|
-
firstname
|
4369
|
-
surname
|
4878
|
+
firstname: string;
|
4879
|
+
surname: string;
|
4370
4880
|
middlename?: string | null | undefined;
|
4371
4881
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4372
4882
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4492,16 +5002,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4492
5002
|
addressLine3?: string | null | undefined;
|
4493
5003
|
postcodeOrZip?: string | null | undefined;
|
4494
5004
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4495
|
-
firstname: z.
|
4496
|
-
surname: z.
|
5005
|
+
firstname: z.ZodString;
|
5006
|
+
surname: z.ZodString;
|
4497
5007
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4498
5008
|
}, "strip", z.ZodTypeAny, {
|
4499
|
-
firstname
|
4500
|
-
surname
|
5009
|
+
firstname: string;
|
5010
|
+
surname: string;
|
4501
5011
|
middlename?: string | null | undefined;
|
4502
5012
|
}, {
|
4503
|
-
firstname
|
4504
|
-
surname
|
5013
|
+
firstname: string;
|
5014
|
+
surname: string;
|
4505
5015
|
middlename?: string | null | undefined;
|
4506
5016
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4507
5017
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4547,8 +5057,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4547
5057
|
street?: string | null | undefined;
|
4548
5058
|
zipCode?: string | null | undefined;
|
4549
5059
|
} | {
|
4550
|
-
firstname
|
4551
|
-
surname
|
5060
|
+
firstname: string;
|
5061
|
+
surname: string;
|
4552
5062
|
middlename?: string | null | undefined;
|
4553
5063
|
} | {
|
4554
5064
|
country: string;
|
@@ -4594,8 +5104,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4594
5104
|
street?: string | null | undefined;
|
4595
5105
|
zipCode?: string | null | undefined;
|
4596
5106
|
} | {
|
4597
|
-
firstname
|
4598
|
-
surname
|
5107
|
+
firstname: string;
|
5108
|
+
surname: string;
|
4599
5109
|
middlename?: string | null | undefined;
|
4600
5110
|
} | {
|
4601
5111
|
country: string;
|
@@ -4653,8 +5163,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4653
5163
|
street?: string | null | undefined;
|
4654
5164
|
zipCode?: string | null | undefined;
|
4655
5165
|
} | {
|
4656
|
-
firstname
|
4657
|
-
surname
|
5166
|
+
firstname: string;
|
5167
|
+
surname: string;
|
4658
5168
|
middlename?: string | null | undefined;
|
4659
5169
|
} | {
|
4660
5170
|
country: string;
|
@@ -4700,8 +5210,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4700
5210
|
street?: string | null | undefined;
|
4701
5211
|
zipCode?: string | null | undefined;
|
4702
5212
|
} | {
|
4703
|
-
firstname
|
4704
|
-
surname
|
5213
|
+
firstname: string;
|
5214
|
+
surname: string;
|
4705
5215
|
middlename?: string | null | undefined;
|
4706
5216
|
} | {
|
4707
5217
|
country: string;
|
@@ -4862,16 +5372,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4862
5372
|
addressLine3?: string | null | undefined;
|
4863
5373
|
postcodeOrZip?: string | null | undefined;
|
4864
5374
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4865
|
-
firstname: z.
|
4866
|
-
surname: z.
|
5375
|
+
firstname: z.ZodString;
|
5376
|
+
surname: z.ZodString;
|
4867
5377
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4868
5378
|
}, "strip", z.ZodTypeAny, {
|
4869
|
-
firstname
|
4870
|
-
surname
|
5379
|
+
firstname: string;
|
5380
|
+
surname: string;
|
4871
5381
|
middlename?: string | null | undefined;
|
4872
5382
|
}, {
|
4873
|
-
firstname
|
4874
|
-
surname
|
5383
|
+
firstname: string;
|
5384
|
+
surname: string;
|
4875
5385
|
middlename?: string | null | undefined;
|
4876
5386
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4877
5387
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4997,16 +5507,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4997
5507
|
addressLine3?: string | null | undefined;
|
4998
5508
|
postcodeOrZip?: string | null | undefined;
|
4999
5509
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5000
|
-
firstname: z.
|
5001
|
-
surname: z.
|
5510
|
+
firstname: z.ZodString;
|
5511
|
+
surname: z.ZodString;
|
5002
5512
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5003
5513
|
}, "strip", z.ZodTypeAny, {
|
5004
|
-
firstname
|
5005
|
-
surname
|
5514
|
+
firstname: string;
|
5515
|
+
surname: string;
|
5006
5516
|
middlename?: string | null | undefined;
|
5007
5517
|
}, {
|
5008
|
-
firstname
|
5009
|
-
surname
|
5518
|
+
firstname: string;
|
5519
|
+
surname: string;
|
5010
5520
|
middlename?: string | null | undefined;
|
5011
5521
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5012
5522
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5038,8 +5548,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5038
5548
|
street?: string | null | undefined;
|
5039
5549
|
zipCode?: string | null | undefined;
|
5040
5550
|
} | {
|
5041
|
-
firstname
|
5042
|
-
surname
|
5551
|
+
firstname: string;
|
5552
|
+
surname: string;
|
5043
5553
|
middlename?: string | null | undefined;
|
5044
5554
|
} | {
|
5045
5555
|
country: string;
|
@@ -5085,8 +5595,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5085
5595
|
street?: string | null | undefined;
|
5086
5596
|
zipCode?: string | null | undefined;
|
5087
5597
|
} | {
|
5088
|
-
firstname
|
5089
|
-
surname
|
5598
|
+
firstname: string;
|
5599
|
+
surname: string;
|
5090
5600
|
middlename?: string | null | undefined;
|
5091
5601
|
} | {
|
5092
5602
|
country: string;
|
@@ -5140,8 +5650,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5140
5650
|
street?: string | null | undefined;
|
5141
5651
|
zipCode?: string | null | undefined;
|
5142
5652
|
} | {
|
5143
|
-
firstname
|
5144
|
-
surname
|
5653
|
+
firstname: string;
|
5654
|
+
surname: string;
|
5145
5655
|
middlename?: string | null | undefined;
|
5146
5656
|
} | {
|
5147
5657
|
country: string;
|
@@ -5187,8 +5697,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5187
5697
|
street?: string | null | undefined;
|
5188
5698
|
zipCode?: string | null | undefined;
|
5189
5699
|
} | {
|
5190
|
-
firstname
|
5191
|
-
surname
|
5700
|
+
firstname: string;
|
5701
|
+
surname: string;
|
5192
5702
|
middlename?: string | null | undefined;
|
5193
5703
|
} | {
|
5194
5704
|
country: string;
|
@@ -5349,16 +5859,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5349
5859
|
addressLine3?: string | null | undefined;
|
5350
5860
|
postcodeOrZip?: string | null | undefined;
|
5351
5861
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5352
|
-
firstname: z.
|
5353
|
-
surname: z.
|
5862
|
+
firstname: z.ZodString;
|
5863
|
+
surname: z.ZodString;
|
5354
5864
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5355
5865
|
}, "strip", z.ZodTypeAny, {
|
5356
|
-
firstname
|
5357
|
-
surname
|
5866
|
+
firstname: string;
|
5867
|
+
surname: string;
|
5358
5868
|
middlename?: string | null | undefined;
|
5359
5869
|
}, {
|
5360
|
-
firstname
|
5361
|
-
surname
|
5870
|
+
firstname: string;
|
5871
|
+
surname: string;
|
5362
5872
|
middlename?: string | null | undefined;
|
5363
5873
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5364
5874
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5484,16 +5994,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5484
5994
|
addressLine3?: string | null | undefined;
|
5485
5995
|
postcodeOrZip?: string | null | undefined;
|
5486
5996
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5487
|
-
firstname: z.
|
5488
|
-
surname: z.
|
5997
|
+
firstname: z.ZodString;
|
5998
|
+
surname: z.ZodString;
|
5489
5999
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5490
6000
|
}, "strip", z.ZodTypeAny, {
|
5491
|
-
firstname
|
5492
|
-
surname
|
6001
|
+
firstname: string;
|
6002
|
+
surname: string;
|
5493
6003
|
middlename?: string | null | undefined;
|
5494
6004
|
}, {
|
5495
|
-
firstname
|
5496
|
-
surname
|
6005
|
+
firstname: string;
|
6006
|
+
surname: string;
|
5497
6007
|
middlename?: string | null | undefined;
|
5498
6008
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5499
6009
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5526,8 +6036,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5526
6036
|
street?: string | null | undefined;
|
5527
6037
|
zipCode?: string | null | undefined;
|
5528
6038
|
} | {
|
5529
|
-
firstname
|
5530
|
-
surname
|
6039
|
+
firstname: string;
|
6040
|
+
surname: string;
|
5531
6041
|
middlename?: string | null | undefined;
|
5532
6042
|
} | {
|
5533
6043
|
country: string;
|
@@ -5573,8 +6083,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5573
6083
|
street?: string | null | undefined;
|
5574
6084
|
zipCode?: string | null | undefined;
|
5575
6085
|
} | {
|
5576
|
-
firstname
|
5577
|
-
surname
|
6086
|
+
firstname: string;
|
6087
|
+
surname: string;
|
5578
6088
|
middlename?: string | null | undefined;
|
5579
6089
|
} | {
|
5580
6090
|
country: string;
|
@@ -5629,8 +6139,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5629
6139
|
street?: string | null | undefined;
|
5630
6140
|
zipCode?: string | null | undefined;
|
5631
6141
|
} | {
|
5632
|
-
firstname
|
5633
|
-
surname
|
6142
|
+
firstname: string;
|
6143
|
+
surname: string;
|
5634
6144
|
middlename?: string | null | undefined;
|
5635
6145
|
} | {
|
5636
6146
|
country: string;
|
@@ -5676,8 +6186,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5676
6186
|
street?: string | null | undefined;
|
5677
6187
|
zipCode?: string | null | undefined;
|
5678
6188
|
} | {
|
5679
|
-
firstname
|
5680
|
-
surname
|
6189
|
+
firstname: string;
|
6190
|
+
surname: string;
|
5681
6191
|
middlename?: string | null | undefined;
|
5682
6192
|
} | {
|
5683
6193
|
country: string;
|
@@ -5839,16 +6349,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5839
6349
|
addressLine3?: string | null | undefined;
|
5840
6350
|
postcodeOrZip?: string | null | undefined;
|
5841
6351
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5842
|
-
firstname: z.
|
5843
|
-
surname: z.
|
6352
|
+
firstname: z.ZodString;
|
6353
|
+
surname: z.ZodString;
|
5844
6354
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5845
6355
|
}, "strip", z.ZodTypeAny, {
|
5846
|
-
firstname
|
5847
|
-
surname
|
6356
|
+
firstname: string;
|
6357
|
+
surname: string;
|
5848
6358
|
middlename?: string | null | undefined;
|
5849
6359
|
}, {
|
5850
|
-
firstname
|
5851
|
-
surname
|
6360
|
+
firstname: string;
|
6361
|
+
surname: string;
|
5852
6362
|
middlename?: string | null | undefined;
|
5853
6363
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5854
6364
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5974,16 +6484,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5974
6484
|
addressLine3?: string | null | undefined;
|
5975
6485
|
postcodeOrZip?: string | null | undefined;
|
5976
6486
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5977
|
-
firstname: z.
|
5978
|
-
surname: z.
|
6487
|
+
firstname: z.ZodString;
|
6488
|
+
surname: z.ZodString;
|
5979
6489
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5980
6490
|
}, "strip", z.ZodTypeAny, {
|
5981
|
-
firstname
|
5982
|
-
surname
|
6491
|
+
firstname: string;
|
6492
|
+
surname: string;
|
5983
6493
|
middlename?: string | null | undefined;
|
5984
6494
|
}, {
|
5985
|
-
firstname
|
5986
|
-
surname
|
6495
|
+
firstname: string;
|
6496
|
+
surname: string;
|
5987
6497
|
middlename?: string | null | undefined;
|
5988
6498
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5989
6499
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6015,8 +6525,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6015
6525
|
street?: string | null | undefined;
|
6016
6526
|
zipCode?: string | null | undefined;
|
6017
6527
|
} | {
|
6018
|
-
firstname
|
6019
|
-
surname
|
6528
|
+
firstname: string;
|
6529
|
+
surname: string;
|
6020
6530
|
middlename?: string | null | undefined;
|
6021
6531
|
} | {
|
6022
6532
|
country: string;
|
@@ -6062,8 +6572,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6062
6572
|
street?: string | null | undefined;
|
6063
6573
|
zipCode?: string | null | undefined;
|
6064
6574
|
} | {
|
6065
|
-
firstname
|
6066
|
-
surname
|
6575
|
+
firstname: string;
|
6576
|
+
surname: string;
|
6067
6577
|
middlename?: string | null | undefined;
|
6068
6578
|
} | {
|
6069
6579
|
country: string;
|
@@ -6117,8 +6627,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6117
6627
|
street?: string | null | undefined;
|
6118
6628
|
zipCode?: string | null | undefined;
|
6119
6629
|
} | {
|
6120
|
-
firstname
|
6121
|
-
surname
|
6630
|
+
firstname: string;
|
6631
|
+
surname: string;
|
6122
6632
|
middlename?: string | null | undefined;
|
6123
6633
|
} | {
|
6124
6634
|
country: string;
|
@@ -6164,8 +6674,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6164
6674
|
street?: string | null | undefined;
|
6165
6675
|
zipCode?: string | null | undefined;
|
6166
6676
|
} | {
|
6167
|
-
firstname
|
6168
|
-
surname
|
6677
|
+
firstname: string;
|
6678
|
+
surname: string;
|
6169
6679
|
middlename?: string | null | undefined;
|
6170
6680
|
} | {
|
6171
6681
|
country: string;
|
@@ -6326,16 +6836,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6326
6836
|
addressLine3?: string | null | undefined;
|
6327
6837
|
postcodeOrZip?: string | null | undefined;
|
6328
6838
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6329
|
-
firstname: z.
|
6330
|
-
surname: z.
|
6839
|
+
firstname: z.ZodString;
|
6840
|
+
surname: z.ZodString;
|
6331
6841
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6332
6842
|
}, "strip", z.ZodTypeAny, {
|
6333
|
-
firstname
|
6334
|
-
surname
|
6843
|
+
firstname: string;
|
6844
|
+
surname: string;
|
6335
6845
|
middlename?: string | null | undefined;
|
6336
6846
|
}, {
|
6337
|
-
firstname
|
6338
|
-
surname
|
6847
|
+
firstname: string;
|
6848
|
+
surname: string;
|
6339
6849
|
middlename?: string | null | undefined;
|
6340
6850
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6341
6851
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6461,16 +6971,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6461
6971
|
addressLine3?: string | null | undefined;
|
6462
6972
|
postcodeOrZip?: string | null | undefined;
|
6463
6973
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6464
|
-
firstname: z.
|
6465
|
-
surname: z.
|
6974
|
+
firstname: z.ZodString;
|
6975
|
+
surname: z.ZodString;
|
6466
6976
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6467
6977
|
}, "strip", z.ZodTypeAny, {
|
6468
|
-
firstname
|
6469
|
-
surname
|
6978
|
+
firstname: string;
|
6979
|
+
surname: string;
|
6470
6980
|
middlename?: string | null | undefined;
|
6471
6981
|
}, {
|
6472
|
-
firstname
|
6473
|
-
surname
|
6982
|
+
firstname: string;
|
6983
|
+
surname: string;
|
6474
6984
|
middlename?: string | null | undefined;
|
6475
6985
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6476
6986
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6503,8 +7013,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6503
7013
|
street?: string | null | undefined;
|
6504
7014
|
zipCode?: string | null | undefined;
|
6505
7015
|
} | {
|
6506
|
-
firstname
|
6507
|
-
surname
|
7016
|
+
firstname: string;
|
7017
|
+
surname: string;
|
6508
7018
|
middlename?: string | null | undefined;
|
6509
7019
|
} | {
|
6510
7020
|
country: string;
|
@@ -6551,8 +7061,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6551
7061
|
street?: string | null | undefined;
|
6552
7062
|
zipCode?: string | null | undefined;
|
6553
7063
|
} | {
|
6554
|
-
firstname
|
6555
|
-
surname
|
7064
|
+
firstname: string;
|
7065
|
+
surname: string;
|
6556
7066
|
middlename?: string | null | undefined;
|
6557
7067
|
} | {
|
6558
7068
|
country: string;
|
@@ -6606,8 +7116,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6606
7116
|
street?: string | null | undefined;
|
6607
7117
|
zipCode?: string | null | undefined;
|
6608
7118
|
} | {
|
6609
|
-
firstname
|
6610
|
-
surname
|
7119
|
+
firstname: string;
|
7120
|
+
surname: string;
|
6611
7121
|
middlename?: string | null | undefined;
|
6612
7122
|
} | {
|
6613
7123
|
country: string;
|
@@ -6654,8 +7164,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6654
7164
|
street?: string | null | undefined;
|
6655
7165
|
zipCode?: string | null | undefined;
|
6656
7166
|
} | {
|
6657
|
-
firstname
|
6658
|
-
surname
|
7167
|
+
firstname: string;
|
7168
|
+
surname: string;
|
6659
7169
|
middlename?: string | null | undefined;
|
6660
7170
|
} | {
|
6661
7171
|
country: string;
|
@@ -6816,16 +7326,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6816
7326
|
addressLine3?: string | null | undefined;
|
6817
7327
|
postcodeOrZip?: string | null | undefined;
|
6818
7328
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6819
|
-
firstname: z.
|
6820
|
-
surname: z.
|
7329
|
+
firstname: z.ZodString;
|
7330
|
+
surname: z.ZodString;
|
6821
7331
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6822
7332
|
}, "strip", z.ZodTypeAny, {
|
6823
|
-
firstname
|
6824
|
-
surname
|
7333
|
+
firstname: string;
|
7334
|
+
surname: string;
|
6825
7335
|
middlename?: string | null | undefined;
|
6826
7336
|
}, {
|
6827
|
-
firstname
|
6828
|
-
surname
|
7337
|
+
firstname: string;
|
7338
|
+
surname: string;
|
6829
7339
|
middlename?: string | null | undefined;
|
6830
7340
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6831
7341
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6951,16 +7461,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6951
7461
|
addressLine3?: string | null | undefined;
|
6952
7462
|
postcodeOrZip?: string | null | undefined;
|
6953
7463
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6954
|
-
firstname: z.
|
6955
|
-
surname: z.
|
7464
|
+
firstname: z.ZodString;
|
7465
|
+
surname: z.ZodString;
|
6956
7466
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6957
7467
|
}, "strip", z.ZodTypeAny, {
|
6958
|
-
firstname
|
6959
|
-
surname
|
7468
|
+
firstname: string;
|
7469
|
+
surname: string;
|
6960
7470
|
middlename?: string | null | undefined;
|
6961
7471
|
}, {
|
6962
|
-
firstname
|
6963
|
-
surname
|
7472
|
+
firstname: string;
|
7473
|
+
surname: string;
|
6964
7474
|
middlename?: string | null | undefined;
|
6965
7475
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6966
7476
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6992,8 +7502,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6992
7502
|
street?: string | null | undefined;
|
6993
7503
|
zipCode?: string | null | undefined;
|
6994
7504
|
} | {
|
6995
|
-
firstname
|
6996
|
-
surname
|
7505
|
+
firstname: string;
|
7506
|
+
surname: string;
|
6997
7507
|
middlename?: string | null | undefined;
|
6998
7508
|
} | {
|
6999
7509
|
country: string;
|
@@ -7039,8 +7549,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7039
7549
|
street?: string | null | undefined;
|
7040
7550
|
zipCode?: string | null | undefined;
|
7041
7551
|
} | {
|
7042
|
-
firstname
|
7043
|
-
surname
|
7552
|
+
firstname: string;
|
7553
|
+
surname: string;
|
7044
7554
|
middlename?: string | null | undefined;
|
7045
7555
|
} | {
|
7046
7556
|
country: string;
|
@@ -7094,8 +7604,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7094
7604
|
street?: string | null | undefined;
|
7095
7605
|
zipCode?: string | null | undefined;
|
7096
7606
|
} | {
|
7097
|
-
firstname
|
7098
|
-
surname
|
7607
|
+
firstname: string;
|
7608
|
+
surname: string;
|
7099
7609
|
middlename?: string | null | undefined;
|
7100
7610
|
} | {
|
7101
7611
|
country: string;
|
@@ -7141,8 +7651,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7141
7651
|
street?: string | null | undefined;
|
7142
7652
|
zipCode?: string | null | undefined;
|
7143
7653
|
} | {
|
7144
|
-
firstname
|
7145
|
-
surname
|
7654
|
+
firstname: string;
|
7655
|
+
surname: string;
|
7146
7656
|
middlename?: string | null | undefined;
|
7147
7657
|
} | {
|
7148
7658
|
country: string;
|
@@ -7303,16 +7813,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7303
7813
|
addressLine3?: string | null | undefined;
|
7304
7814
|
postcodeOrZip?: string | null | undefined;
|
7305
7815
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7306
|
-
firstname: z.
|
7307
|
-
surname: z.
|
7816
|
+
firstname: z.ZodString;
|
7817
|
+
surname: z.ZodString;
|
7308
7818
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7309
7819
|
}, "strip", z.ZodTypeAny, {
|
7310
|
-
firstname
|
7311
|
-
surname
|
7820
|
+
firstname: string;
|
7821
|
+
surname: string;
|
7312
7822
|
middlename?: string | null | undefined;
|
7313
7823
|
}, {
|
7314
|
-
firstname
|
7315
|
-
surname
|
7824
|
+
firstname: string;
|
7825
|
+
surname: string;
|
7316
7826
|
middlename?: string | null | undefined;
|
7317
7827
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7318
7828
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7438,16 +7948,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7438
7948
|
addressLine3?: string | null | undefined;
|
7439
7949
|
postcodeOrZip?: string | null | undefined;
|
7440
7950
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7441
|
-
firstname: z.
|
7442
|
-
surname: z.
|
7951
|
+
firstname: z.ZodString;
|
7952
|
+
surname: z.ZodString;
|
7443
7953
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7444
7954
|
}, "strip", z.ZodTypeAny, {
|
7445
|
-
firstname
|
7446
|
-
surname
|
7955
|
+
firstname: string;
|
7956
|
+
surname: string;
|
7447
7957
|
middlename?: string | null | undefined;
|
7448
7958
|
}, {
|
7449
|
-
firstname
|
7450
|
-
surname
|
7959
|
+
firstname: string;
|
7960
|
+
surname: string;
|
7451
7961
|
middlename?: string | null | undefined;
|
7452
7962
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7453
7963
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7480,8 +7990,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7480
7990
|
street?: string | null | undefined;
|
7481
7991
|
zipCode?: string | null | undefined;
|
7482
7992
|
} | {
|
7483
|
-
firstname
|
7484
|
-
surname
|
7993
|
+
firstname: string;
|
7994
|
+
surname: string;
|
7485
7995
|
middlename?: string | null | undefined;
|
7486
7996
|
} | {
|
7487
7997
|
country: string;
|
@@ -7528,8 +8038,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7528
8038
|
street?: string | null | undefined;
|
7529
8039
|
zipCode?: string | null | undefined;
|
7530
8040
|
} | {
|
7531
|
-
firstname
|
7532
|
-
surname
|
8041
|
+
firstname: string;
|
8042
|
+
surname: string;
|
7533
8043
|
middlename?: string | null | undefined;
|
7534
8044
|
} | {
|
7535
8045
|
country: string;
|
@@ -7583,8 +8093,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7583
8093
|
street?: string | null | undefined;
|
7584
8094
|
zipCode?: string | null | undefined;
|
7585
8095
|
} | {
|
7586
|
-
firstname
|
7587
|
-
surname
|
8096
|
+
firstname: string;
|
8097
|
+
surname: string;
|
7588
8098
|
middlename?: string | null | undefined;
|
7589
8099
|
} | {
|
7590
8100
|
country: string;
|
@@ -7631,8 +8141,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7631
8141
|
street?: string | null | undefined;
|
7632
8142
|
zipCode?: string | null | undefined;
|
7633
8143
|
} | {
|
7634
|
-
firstname
|
7635
|
-
surname
|
8144
|
+
firstname: string;
|
8145
|
+
surname: string;
|
7636
8146
|
middlename?: string | null | undefined;
|
7637
8147
|
} | {
|
7638
8148
|
country: string;
|
@@ -7793,16 +8303,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7793
8303
|
addressLine3?: string | null | undefined;
|
7794
8304
|
postcodeOrZip?: string | null | undefined;
|
7795
8305
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7796
|
-
firstname: z.
|
7797
|
-
surname: z.
|
8306
|
+
firstname: z.ZodString;
|
8307
|
+
surname: z.ZodString;
|
7798
8308
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7799
8309
|
}, "strip", z.ZodTypeAny, {
|
7800
|
-
firstname
|
7801
|
-
surname
|
8310
|
+
firstname: string;
|
8311
|
+
surname: string;
|
7802
8312
|
middlename?: string | null | undefined;
|
7803
8313
|
}, {
|
7804
|
-
firstname
|
7805
|
-
surname
|
8314
|
+
firstname: string;
|
8315
|
+
surname: string;
|
7806
8316
|
middlename?: string | null | undefined;
|
7807
8317
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7808
8318
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7928,16 +8438,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7928
8438
|
addressLine3?: string | null | undefined;
|
7929
8439
|
postcodeOrZip?: string | null | undefined;
|
7930
8440
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7931
|
-
firstname: z.
|
7932
|
-
surname: z.
|
8441
|
+
firstname: z.ZodString;
|
8442
|
+
surname: z.ZodString;
|
7933
8443
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7934
8444
|
}, "strip", z.ZodTypeAny, {
|
7935
|
-
firstname
|
7936
|
-
surname
|
8445
|
+
firstname: string;
|
8446
|
+
surname: string;
|
7937
8447
|
middlename?: string | null | undefined;
|
7938
8448
|
}, {
|
7939
|
-
firstname
|
7940
|
-
surname
|
8449
|
+
firstname: string;
|
8450
|
+
surname: string;
|
7941
8451
|
middlename?: string | null | undefined;
|
7942
8452
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7943
8453
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7945,10 +8455,24 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7945
8455
|
}, {
|
7946
8456
|
type: z.ZodLiteral<"REJECT_CORRECTION">;
|
7947
8457
|
requestId: z.ZodString;
|
8458
|
+
reason: z.ZodObject<{
|
8459
|
+
message: z.ZodString;
|
8460
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
8461
|
+
}, "strip", z.ZodTypeAny, {
|
8462
|
+
message: string;
|
8463
|
+
isDuplicate?: boolean | undefined;
|
8464
|
+
}, {
|
8465
|
+
message: string;
|
8466
|
+
isDuplicate?: boolean | undefined;
|
8467
|
+
}>;
|
7948
8468
|
}>, "strip", z.ZodTypeAny, {
|
7949
8469
|
type: "REJECT_CORRECTION";
|
7950
8470
|
id: string & z.BRAND<"UUID">;
|
7951
8471
|
status: "Rejected" | "Requested" | "Accepted";
|
8472
|
+
reason: {
|
8473
|
+
message: string;
|
8474
|
+
isDuplicate?: boolean | undefined;
|
8475
|
+
};
|
7952
8476
|
transactionId: string;
|
7953
8477
|
createdByUserType: "system" | "user";
|
7954
8478
|
createdAt: string;
|
@@ -7970,8 +8494,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7970
8494
|
street?: string | null | undefined;
|
7971
8495
|
zipCode?: string | null | undefined;
|
7972
8496
|
} | {
|
7973
|
-
firstname
|
7974
|
-
surname
|
8497
|
+
firstname: string;
|
8498
|
+
surname: string;
|
7975
8499
|
middlename?: string | null | undefined;
|
7976
8500
|
} | {
|
7977
8501
|
country: string;
|
@@ -8018,8 +8542,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8018
8542
|
street?: string | null | undefined;
|
8019
8543
|
zipCode?: string | null | undefined;
|
8020
8544
|
} | {
|
8021
|
-
firstname
|
8022
|
-
surname
|
8545
|
+
firstname: string;
|
8546
|
+
surname: string;
|
8023
8547
|
middlename?: string | null | undefined;
|
8024
8548
|
} | {
|
8025
8549
|
country: string;
|
@@ -8052,6 +8576,10 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8052
8576
|
type: "REJECT_CORRECTION";
|
8053
8577
|
id: string;
|
8054
8578
|
status: "Rejected" | "Requested" | "Accepted";
|
8579
|
+
reason: {
|
8580
|
+
message: string;
|
8581
|
+
isDuplicate?: boolean | undefined;
|
8582
|
+
};
|
8055
8583
|
transactionId: string;
|
8056
8584
|
createdByUserType: "system" | "user";
|
8057
8585
|
createdAt: string;
|
@@ -8073,8 +8601,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8073
8601
|
street?: string | null | undefined;
|
8074
8602
|
zipCode?: string | null | undefined;
|
8075
8603
|
} | {
|
8076
|
-
firstname
|
8077
|
-
surname
|
8604
|
+
firstname: string;
|
8605
|
+
surname: string;
|
8078
8606
|
middlename?: string | null | undefined;
|
8079
8607
|
} | {
|
8080
8608
|
country: string;
|
@@ -8121,8 +8649,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8121
8649
|
street?: string | null | undefined;
|
8122
8650
|
zipCode?: string | null | undefined;
|
8123
8651
|
} | {
|
8124
|
-
firstname
|
8125
|
-
surname
|
8652
|
+
firstname: string;
|
8653
|
+
surname: string;
|
8126
8654
|
middlename?: string | null | undefined;
|
8127
8655
|
} | {
|
8128
8656
|
country: string;
|
@@ -8283,16 +8811,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8283
8811
|
addressLine3?: string | null | undefined;
|
8284
8812
|
postcodeOrZip?: string | null | undefined;
|
8285
8813
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8286
|
-
firstname: z.
|
8287
|
-
surname: z.
|
8814
|
+
firstname: z.ZodString;
|
8815
|
+
surname: z.ZodString;
|
8288
8816
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8289
8817
|
}, "strip", z.ZodTypeAny, {
|
8290
|
-
firstname
|
8291
|
-
surname
|
8818
|
+
firstname: string;
|
8819
|
+
surname: string;
|
8292
8820
|
middlename?: string | null | undefined;
|
8293
8821
|
}, {
|
8294
|
-
firstname
|
8295
|
-
surname
|
8822
|
+
firstname: string;
|
8823
|
+
surname: string;
|
8296
8824
|
middlename?: string | null | undefined;
|
8297
8825
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8298
8826
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -8418,16 +8946,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8418
8946
|
addressLine3?: string | null | undefined;
|
8419
8947
|
postcodeOrZip?: string | null | undefined;
|
8420
8948
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8421
|
-
firstname: z.
|
8422
|
-
surname: z.
|
8949
|
+
firstname: z.ZodString;
|
8950
|
+
surname: z.ZodString;
|
8423
8951
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8424
8952
|
}, "strip", z.ZodTypeAny, {
|
8425
|
-
firstname
|
8426
|
-
surname
|
8953
|
+
firstname: string;
|
8954
|
+
surname: string;
|
8427
8955
|
middlename?: string | null | undefined;
|
8428
8956
|
}, {
|
8429
|
-
firstname
|
8430
|
-
surname
|
8957
|
+
firstname: string;
|
8958
|
+
surname: string;
|
8431
8959
|
middlename?: string | null | undefined;
|
8432
8960
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8433
8961
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -8459,8 +8987,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8459
8987
|
street?: string | null | undefined;
|
8460
8988
|
zipCode?: string | null | undefined;
|
8461
8989
|
} | {
|
8462
|
-
firstname
|
8463
|
-
surname
|
8990
|
+
firstname: string;
|
8991
|
+
surname: string;
|
8464
8992
|
middlename?: string | null | undefined;
|
8465
8993
|
} | {
|
8466
8994
|
country: string;
|
@@ -8506,8 +9034,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8506
9034
|
street?: string | null | undefined;
|
8507
9035
|
zipCode?: string | null | undefined;
|
8508
9036
|
} | {
|
8509
|
-
firstname
|
8510
|
-
surname
|
9037
|
+
firstname: string;
|
9038
|
+
surname: string;
|
8511
9039
|
middlename?: string | null | undefined;
|
8512
9040
|
} | {
|
8513
9041
|
country: string;
|
@@ -8561,8 +9089,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8561
9089
|
street?: string | null | undefined;
|
8562
9090
|
zipCode?: string | null | undefined;
|
8563
9091
|
} | {
|
8564
|
-
firstname
|
8565
|
-
surname
|
9092
|
+
firstname: string;
|
9093
|
+
surname: string;
|
8566
9094
|
middlename?: string | null | undefined;
|
8567
9095
|
} | {
|
8568
9096
|
country: string;
|
@@ -8608,8 +9136,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8608
9136
|
street?: string | null | undefined;
|
8609
9137
|
zipCode?: string | null | undefined;
|
8610
9138
|
} | {
|
8611
|
-
firstname
|
8612
|
-
surname
|
9139
|
+
firstname: string;
|
9140
|
+
surname: string;
|
8613
9141
|
middlename?: string | null | undefined;
|
8614
9142
|
} | {
|
8615
9143
|
country: string;
|
@@ -8770,16 +9298,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8770
9298
|
addressLine3?: string | null | undefined;
|
8771
9299
|
postcodeOrZip?: string | null | undefined;
|
8772
9300
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8773
|
-
firstname: z.
|
8774
|
-
surname: z.
|
9301
|
+
firstname: z.ZodString;
|
9302
|
+
surname: z.ZodString;
|
8775
9303
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8776
9304
|
}, "strip", z.ZodTypeAny, {
|
8777
|
-
firstname
|
8778
|
-
surname
|
9305
|
+
firstname: string;
|
9306
|
+
surname: string;
|
8779
9307
|
middlename?: string | null | undefined;
|
8780
9308
|
}, {
|
8781
|
-
firstname
|
8782
|
-
surname
|
9309
|
+
firstname: string;
|
9310
|
+
surname: string;
|
8783
9311
|
middlename?: string | null | undefined;
|
8784
9312
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8785
9313
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -8905,22 +9433,29 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8905
9433
|
addressLine3?: string | null | undefined;
|
8906
9434
|
postcodeOrZip?: string | null | undefined;
|
8907
9435
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8908
|
-
firstname: z.
|
8909
|
-
surname: z.
|
9436
|
+
firstname: z.ZodString;
|
9437
|
+
surname: z.ZodString;
|
8910
9438
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8911
9439
|
}, "strip", z.ZodTypeAny, {
|
8912
|
-
firstname
|
8913
|
-
surname
|
9440
|
+
firstname: string;
|
9441
|
+
surname: string;
|
8914
9442
|
middlename?: string | null | undefined;
|
8915
9443
|
}, {
|
8916
|
-
firstname
|
8917
|
-
surname
|
9444
|
+
firstname: string;
|
9445
|
+
surname: string;
|
8918
9446
|
middlename?: string | null | undefined;
|
8919
9447
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8920
9448
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
8921
9449
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
8922
9450
|
}, {
|
8923
9451
|
type: z.ZodLiteral<"PRINT_CERTIFICATE">;
|
9452
|
+
content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
9453
|
+
templateId: z.ZodOptional<z.ZodString>;
|
9454
|
+
}, "strip", z.ZodTypeAny, {
|
9455
|
+
templateId?: string | undefined;
|
9456
|
+
}, {
|
9457
|
+
templateId?: string | undefined;
|
9458
|
+
}>>>;
|
8924
9459
|
}>, "strip", z.ZodTypeAny, {
|
8925
9460
|
type: "PRINT_CERTIFICATE";
|
8926
9461
|
id: string & z.BRAND<"UUID">;
|
@@ -8946,8 +9481,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8946
9481
|
street?: string | null | undefined;
|
8947
9482
|
zipCode?: string | null | undefined;
|
8948
9483
|
} | {
|
8949
|
-
firstname
|
8950
|
-
surname
|
9484
|
+
firstname: string;
|
9485
|
+
surname: string;
|
8951
9486
|
middlename?: string | null | undefined;
|
8952
9487
|
} | {
|
8953
9488
|
country: string;
|
@@ -8975,6 +9510,9 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8975
9510
|
start: string;
|
8976
9511
|
end: string;
|
8977
9512
|
} | null | undefined>;
|
9513
|
+
content?: {
|
9514
|
+
templateId?: string | undefined;
|
9515
|
+
} | null | undefined;
|
8978
9516
|
createdBySignature?: string | null | undefined;
|
8979
9517
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
8980
9518
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8993,8 +9531,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8993
9531
|
street?: string | null | undefined;
|
8994
9532
|
zipCode?: string | null | undefined;
|
8995
9533
|
} | {
|
8996
|
-
firstname
|
8997
|
-
surname
|
9534
|
+
firstname: string;
|
9535
|
+
surname: string;
|
8998
9536
|
middlename?: string | null | undefined;
|
8999
9537
|
} | {
|
9000
9538
|
country: string;
|
@@ -9048,8 +9586,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9048
9586
|
street?: string | null | undefined;
|
9049
9587
|
zipCode?: string | null | undefined;
|
9050
9588
|
} | {
|
9051
|
-
firstname
|
9052
|
-
surname
|
9589
|
+
firstname: string;
|
9590
|
+
surname: string;
|
9053
9591
|
middlename?: string | null | undefined;
|
9054
9592
|
} | {
|
9055
9593
|
country: string;
|
@@ -9077,6 +9615,9 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9077
9615
|
start: string;
|
9078
9616
|
end: string;
|
9079
9617
|
} | null | undefined>;
|
9618
|
+
content?: {
|
9619
|
+
templateId?: string | undefined;
|
9620
|
+
} | null | undefined;
|
9080
9621
|
createdBySignature?: string | null | undefined;
|
9081
9622
|
createdAtLocation?: string | null | undefined;
|
9082
9623
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9095,8 +9636,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9095
9636
|
street?: string | null | undefined;
|
9096
9637
|
zipCode?: string | null | undefined;
|
9097
9638
|
} | {
|
9098
|
-
firstname
|
9099
|
-
surname
|
9639
|
+
firstname: string;
|
9640
|
+
surname: string;
|
9100
9641
|
middlename?: string | null | undefined;
|
9101
9642
|
} | {
|
9102
9643
|
country: string;
|
@@ -9257,16 +9798,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9257
9798
|
addressLine3?: string | null | undefined;
|
9258
9799
|
postcodeOrZip?: string | null | undefined;
|
9259
9800
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9260
|
-
firstname: z.
|
9261
|
-
surname: z.
|
9801
|
+
firstname: z.ZodString;
|
9802
|
+
surname: z.ZodString;
|
9262
9803
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9263
9804
|
}, "strip", z.ZodTypeAny, {
|
9264
|
-
firstname
|
9265
|
-
surname
|
9805
|
+
firstname: string;
|
9806
|
+
surname: string;
|
9266
9807
|
middlename?: string | null | undefined;
|
9267
9808
|
}, {
|
9268
|
-
firstname
|
9269
|
-
surname
|
9809
|
+
firstname: string;
|
9810
|
+
surname: string;
|
9270
9811
|
middlename?: string | null | undefined;
|
9271
9812
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9272
9813
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -9392,16 +9933,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9392
9933
|
addressLine3?: string | null | undefined;
|
9393
9934
|
postcodeOrZip?: string | null | undefined;
|
9394
9935
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9395
|
-
firstname: z.
|
9396
|
-
surname: z.
|
9936
|
+
firstname: z.ZodString;
|
9937
|
+
surname: z.ZodString;
|
9397
9938
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9398
9939
|
}, "strip", z.ZodTypeAny, {
|
9399
|
-
firstname
|
9400
|
-
surname
|
9940
|
+
firstname: string;
|
9941
|
+
surname: string;
|
9401
9942
|
middlename?: string | null | undefined;
|
9402
9943
|
}, {
|
9403
|
-
firstname
|
9404
|
-
surname
|
9944
|
+
firstname: string;
|
9945
|
+
surname: string;
|
9405
9946
|
middlename?: string | null | undefined;
|
9406
9947
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9407
9948
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -9433,8 +9974,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9433
9974
|
street?: string | null | undefined;
|
9434
9975
|
zipCode?: string | null | undefined;
|
9435
9976
|
} | {
|
9436
|
-
firstname
|
9437
|
-
surname
|
9977
|
+
firstname: string;
|
9978
|
+
surname: string;
|
9438
9979
|
middlename?: string | null | undefined;
|
9439
9980
|
} | {
|
9440
9981
|
country: string;
|
@@ -9480,8 +10021,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9480
10021
|
street?: string | null | undefined;
|
9481
10022
|
zipCode?: string | null | undefined;
|
9482
10023
|
} | {
|
9483
|
-
firstname
|
9484
|
-
surname
|
10024
|
+
firstname: string;
|
10025
|
+
surname: string;
|
9485
10026
|
middlename?: string | null | undefined;
|
9486
10027
|
} | {
|
9487
10028
|
country: string;
|
@@ -9535,8 +10076,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9535
10076
|
street?: string | null | undefined;
|
9536
10077
|
zipCode?: string | null | undefined;
|
9537
10078
|
} | {
|
9538
|
-
firstname
|
9539
|
-
surname
|
10079
|
+
firstname: string;
|
10080
|
+
surname: string;
|
9540
10081
|
middlename?: string | null | undefined;
|
9541
10082
|
} | {
|
9542
10083
|
country: string;
|
@@ -9582,8 +10123,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9582
10123
|
street?: string | null | undefined;
|
9583
10124
|
zipCode?: string | null | undefined;
|
9584
10125
|
} | {
|
9585
|
-
firstname
|
9586
|
-
surname
|
10126
|
+
firstname: string;
|
10127
|
+
surname: string;
|
9587
10128
|
middlename?: string | null | undefined;
|
9588
10129
|
} | {
|
9589
10130
|
country: string;
|
@@ -9746,16 +10287,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
9746
10287
|
addressLine3?: string | null | undefined;
|
9747
10288
|
postcodeOrZip?: string | null | undefined;
|
9748
10289
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9749
|
-
firstname: z.
|
9750
|
-
surname: z.
|
10290
|
+
firstname: z.ZodString;
|
10291
|
+
surname: z.ZodString;
|
9751
10292
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9752
10293
|
}, "strip", z.ZodTypeAny, {
|
9753
|
-
firstname
|
9754
|
-
surname
|
10294
|
+
firstname: string;
|
10295
|
+
surname: string;
|
9755
10296
|
middlename?: string | null | undefined;
|
9756
10297
|
}, {
|
9757
|
-
firstname
|
9758
|
-
surname
|
10298
|
+
firstname: string;
|
10299
|
+
surname: string;
|
9759
10300
|
middlename?: string | null | undefined;
|
9760
10301
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9761
10302
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -9881,16 +10422,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
9881
10422
|
addressLine3?: string | null | undefined;
|
9882
10423
|
postcodeOrZip?: string | null | undefined;
|
9883
10424
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9884
|
-
firstname: z.
|
9885
|
-
surname: z.
|
10425
|
+
firstname: z.ZodString;
|
10426
|
+
surname: z.ZodString;
|
9886
10427
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9887
10428
|
}, "strip", z.ZodTypeAny, {
|
9888
|
-
firstname
|
9889
|
-
surname
|
10429
|
+
firstname: string;
|
10430
|
+
surname: string;
|
9890
10431
|
middlename?: string | null | undefined;
|
9891
10432
|
}, {
|
9892
|
-
firstname
|
9893
|
-
surname
|
10433
|
+
firstname: string;
|
10434
|
+
surname: string;
|
9894
10435
|
middlename?: string | null | undefined;
|
9895
10436
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9896
10437
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -10056,16 +10597,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10056
10597
|
addressLine3?: string | null | undefined;
|
10057
10598
|
postcodeOrZip?: string | null | undefined;
|
10058
10599
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10059
|
-
firstname: z.
|
10060
|
-
surname: z.
|
10600
|
+
firstname: z.ZodString;
|
10601
|
+
surname: z.ZodString;
|
10061
10602
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10062
10603
|
}, "strip", z.ZodTypeAny, {
|
10063
|
-
firstname
|
10064
|
-
surname
|
10604
|
+
firstname: string;
|
10605
|
+
surname: string;
|
10065
10606
|
middlename?: string | null | undefined;
|
10066
10607
|
}, {
|
10067
|
-
firstname
|
10068
|
-
surname
|
10608
|
+
firstname: string;
|
10609
|
+
surname: string;
|
10069
10610
|
middlename?: string | null | undefined;
|
10070
10611
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10071
10612
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -10191,16 +10732,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10191
10732
|
addressLine3?: string | null | undefined;
|
10192
10733
|
postcodeOrZip?: string | null | undefined;
|
10193
10734
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10194
|
-
firstname: z.
|
10195
|
-
surname: z.
|
10735
|
+
firstname: z.ZodString;
|
10736
|
+
surname: z.ZodString;
|
10196
10737
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10197
10738
|
}, "strip", z.ZodTypeAny, {
|
10198
|
-
firstname
|
10199
|
-
surname
|
10739
|
+
firstname: string;
|
10740
|
+
surname: string;
|
10200
10741
|
middlename?: string | null | undefined;
|
10201
10742
|
}, {
|
10202
|
-
firstname
|
10203
|
-
surname
|
10743
|
+
firstname: string;
|
10744
|
+
surname: string;
|
10204
10745
|
middlename?: string | null | undefined;
|
10205
10746
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10206
10747
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -10232,8 +10773,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10232
10773
|
street?: string | null | undefined;
|
10233
10774
|
zipCode?: string | null | undefined;
|
10234
10775
|
} | {
|
10235
|
-
firstname
|
10236
|
-
surname
|
10776
|
+
firstname: string;
|
10777
|
+
surname: string;
|
10237
10778
|
middlename?: string | null | undefined;
|
10238
10779
|
} | {
|
10239
10780
|
country: string;
|
@@ -10279,8 +10820,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10279
10820
|
street?: string | null | undefined;
|
10280
10821
|
zipCode?: string | null | undefined;
|
10281
10822
|
} | {
|
10282
|
-
firstname
|
10283
|
-
surname
|
10823
|
+
firstname: string;
|
10824
|
+
surname: string;
|
10284
10825
|
middlename?: string | null | undefined;
|
10285
10826
|
} | {
|
10286
10827
|
country: string;
|
@@ -10334,8 +10875,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10334
10875
|
street?: string | null | undefined;
|
10335
10876
|
zipCode?: string | null | undefined;
|
10336
10877
|
} | {
|
10337
|
-
firstname
|
10338
|
-
surname
|
10878
|
+
firstname: string;
|
10879
|
+
surname: string;
|
10339
10880
|
middlename?: string | null | undefined;
|
10340
10881
|
} | {
|
10341
10882
|
country: string;
|
@@ -10381,8 +10922,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10381
10922
|
street?: string | null | undefined;
|
10382
10923
|
zipCode?: string | null | undefined;
|
10383
10924
|
} | {
|
10384
|
-
firstname
|
10385
|
-
surname
|
10925
|
+
firstname: string;
|
10926
|
+
surname: string;
|
10386
10927
|
middlename?: string | null | undefined;
|
10387
10928
|
} | {
|
10388
10929
|
country: string;
|
@@ -10543,16 +11084,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10543
11084
|
addressLine3?: string | null | undefined;
|
10544
11085
|
postcodeOrZip?: string | null | undefined;
|
10545
11086
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10546
|
-
firstname: z.
|
10547
|
-
surname: z.
|
11087
|
+
firstname: z.ZodString;
|
11088
|
+
surname: z.ZodString;
|
10548
11089
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10549
11090
|
}, "strip", z.ZodTypeAny, {
|
10550
|
-
firstname
|
10551
|
-
surname
|
11091
|
+
firstname: string;
|
11092
|
+
surname: string;
|
10552
11093
|
middlename?: string | null | undefined;
|
10553
11094
|
}, {
|
10554
|
-
firstname
|
10555
|
-
surname
|
11095
|
+
firstname: string;
|
11096
|
+
surname: string;
|
10556
11097
|
middlename?: string | null | undefined;
|
10557
11098
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10558
11099
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -10678,16 +11219,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10678
11219
|
addressLine3?: string | null | undefined;
|
10679
11220
|
postcodeOrZip?: string | null | undefined;
|
10680
11221
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10681
|
-
firstname: z.
|
10682
|
-
surname: z.
|
11222
|
+
firstname: z.ZodString;
|
11223
|
+
surname: z.ZodString;
|
10683
11224
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10684
11225
|
}, "strip", z.ZodTypeAny, {
|
10685
|
-
firstname
|
10686
|
-
surname
|
11226
|
+
firstname: string;
|
11227
|
+
surname: string;
|
10687
11228
|
middlename?: string | null | undefined;
|
10688
11229
|
}, {
|
10689
|
-
firstname
|
10690
|
-
surname
|
11230
|
+
firstname: string;
|
11231
|
+
surname: string;
|
10691
11232
|
middlename?: string | null | undefined;
|
10692
11233
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10693
11234
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -10719,8 +11260,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10719
11260
|
street?: string | null | undefined;
|
10720
11261
|
zipCode?: string | null | undefined;
|
10721
11262
|
} | {
|
10722
|
-
firstname
|
10723
|
-
surname
|
11263
|
+
firstname: string;
|
11264
|
+
surname: string;
|
10724
11265
|
middlename?: string | null | undefined;
|
10725
11266
|
} | {
|
10726
11267
|
country: string;
|
@@ -10766,8 +11307,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10766
11307
|
street?: string | null | undefined;
|
10767
11308
|
zipCode?: string | null | undefined;
|
10768
11309
|
} | {
|
10769
|
-
firstname
|
10770
|
-
surname
|
11310
|
+
firstname: string;
|
11311
|
+
surname: string;
|
10771
11312
|
middlename?: string | null | undefined;
|
10772
11313
|
} | {
|
10773
11314
|
country: string;
|
@@ -10821,8 +11362,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10821
11362
|
street?: string | null | undefined;
|
10822
11363
|
zipCode?: string | null | undefined;
|
10823
11364
|
} | {
|
10824
|
-
firstname
|
10825
|
-
surname
|
11365
|
+
firstname: string;
|
11366
|
+
surname: string;
|
10826
11367
|
middlename?: string | null | undefined;
|
10827
11368
|
} | {
|
10828
11369
|
country: string;
|
@@ -10868,8 +11409,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10868
11409
|
street?: string | null | undefined;
|
10869
11410
|
zipCode?: string | null | undefined;
|
10870
11411
|
} | {
|
10871
|
-
firstname
|
10872
|
-
surname
|
11412
|
+
firstname: string;
|
11413
|
+
surname: string;
|
10873
11414
|
middlename?: string | null | undefined;
|
10874
11415
|
} | {
|
10875
11416
|
country: string;
|
@@ -11030,16 +11571,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11030
11571
|
addressLine3?: string | null | undefined;
|
11031
11572
|
postcodeOrZip?: string | null | undefined;
|
11032
11573
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11033
|
-
firstname: z.
|
11034
|
-
surname: z.
|
11574
|
+
firstname: z.ZodString;
|
11575
|
+
surname: z.ZodString;
|
11035
11576
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11036
11577
|
}, "strip", z.ZodTypeAny, {
|
11037
|
-
firstname
|
11038
|
-
surname
|
11578
|
+
firstname: string;
|
11579
|
+
surname: string;
|
11039
11580
|
middlename?: string | null | undefined;
|
11040
11581
|
}, {
|
11041
|
-
firstname
|
11042
|
-
surname
|
11582
|
+
firstname: string;
|
11583
|
+
surname: string;
|
11043
11584
|
middlename?: string | null | undefined;
|
11044
11585
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11045
11586
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -11165,16 +11706,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11165
11706
|
addressLine3?: string | null | undefined;
|
11166
11707
|
postcodeOrZip?: string | null | undefined;
|
11167
11708
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11168
|
-
firstname: z.
|
11169
|
-
surname: z.
|
11709
|
+
firstname: z.ZodString;
|
11710
|
+
surname: z.ZodString;
|
11170
11711
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11171
11712
|
}, "strip", z.ZodTypeAny, {
|
11172
|
-
firstname
|
11173
|
-
surname
|
11713
|
+
firstname: string;
|
11714
|
+
surname: string;
|
11174
11715
|
middlename?: string | null | undefined;
|
11175
11716
|
}, {
|
11176
|
-
firstname
|
11177
|
-
surname
|
11717
|
+
firstname: string;
|
11718
|
+
surname: string;
|
11178
11719
|
middlename?: string | null | undefined;
|
11179
11720
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11180
11721
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -11220,8 +11761,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11220
11761
|
street?: string | null | undefined;
|
11221
11762
|
zipCode?: string | null | undefined;
|
11222
11763
|
} | {
|
11223
|
-
firstname
|
11224
|
-
surname
|
11764
|
+
firstname: string;
|
11765
|
+
surname: string;
|
11225
11766
|
middlename?: string | null | undefined;
|
11226
11767
|
} | {
|
11227
11768
|
country: string;
|
@@ -11267,8 +11808,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11267
11808
|
street?: string | null | undefined;
|
11268
11809
|
zipCode?: string | null | undefined;
|
11269
11810
|
} | {
|
11270
|
-
firstname
|
11271
|
-
surname
|
11811
|
+
firstname: string;
|
11812
|
+
surname: string;
|
11272
11813
|
middlename?: string | null | undefined;
|
11273
11814
|
} | {
|
11274
11815
|
country: string;
|
@@ -11326,8 +11867,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11326
11867
|
street?: string | null | undefined;
|
11327
11868
|
zipCode?: string | null | undefined;
|
11328
11869
|
} | {
|
11329
|
-
firstname
|
11330
|
-
surname
|
11870
|
+
firstname: string;
|
11871
|
+
surname: string;
|
11331
11872
|
middlename?: string | null | undefined;
|
11332
11873
|
} | {
|
11333
11874
|
country: string;
|
@@ -11373,8 +11914,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11373
11914
|
street?: string | null | undefined;
|
11374
11915
|
zipCode?: string | null | undefined;
|
11375
11916
|
} | {
|
11376
|
-
firstname
|
11377
|
-
surname
|
11917
|
+
firstname: string;
|
11918
|
+
surname: string;
|
11378
11919
|
middlename?: string | null | undefined;
|
11379
11920
|
} | {
|
11380
11921
|
country: string;
|
@@ -11535,16 +12076,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11535
12076
|
addressLine3?: string | null | undefined;
|
11536
12077
|
postcodeOrZip?: string | null | undefined;
|
11537
12078
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11538
|
-
firstname: z.
|
11539
|
-
surname: z.
|
12079
|
+
firstname: z.ZodString;
|
12080
|
+
surname: z.ZodString;
|
11540
12081
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11541
12082
|
}, "strip", z.ZodTypeAny, {
|
11542
|
-
firstname
|
11543
|
-
surname
|
12083
|
+
firstname: string;
|
12084
|
+
surname: string;
|
11544
12085
|
middlename?: string | null | undefined;
|
11545
12086
|
}, {
|
11546
|
-
firstname
|
11547
|
-
surname
|
12087
|
+
firstname: string;
|
12088
|
+
surname: string;
|
11548
12089
|
middlename?: string | null | undefined;
|
11549
12090
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11550
12091
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -11670,16 +12211,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11670
12211
|
addressLine3?: string | null | undefined;
|
11671
12212
|
postcodeOrZip?: string | null | undefined;
|
11672
12213
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11673
|
-
firstname: z.
|
11674
|
-
surname: z.
|
12214
|
+
firstname: z.ZodString;
|
12215
|
+
surname: z.ZodString;
|
11675
12216
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11676
12217
|
}, "strip", z.ZodTypeAny, {
|
11677
|
-
firstname
|
11678
|
-
surname
|
12218
|
+
firstname: string;
|
12219
|
+
surname: string;
|
11679
12220
|
middlename?: string | null | undefined;
|
11680
12221
|
}, {
|
11681
|
-
firstname
|
11682
|
-
surname
|
12222
|
+
firstname: string;
|
12223
|
+
surname: string;
|
11683
12224
|
middlename?: string | null | undefined;
|
11684
12225
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11685
12226
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -11711,8 +12252,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11711
12252
|
street?: string | null | undefined;
|
11712
12253
|
zipCode?: string | null | undefined;
|
11713
12254
|
} | {
|
11714
|
-
firstname
|
11715
|
-
surname
|
12255
|
+
firstname: string;
|
12256
|
+
surname: string;
|
11716
12257
|
middlename?: string | null | undefined;
|
11717
12258
|
} | {
|
11718
12259
|
country: string;
|
@@ -11758,8 +12299,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11758
12299
|
street?: string | null | undefined;
|
11759
12300
|
zipCode?: string | null | undefined;
|
11760
12301
|
} | {
|
11761
|
-
firstname
|
11762
|
-
surname
|
12302
|
+
firstname: string;
|
12303
|
+
surname: string;
|
11763
12304
|
middlename?: string | null | undefined;
|
11764
12305
|
} | {
|
11765
12306
|
country: string;
|
@@ -11813,8 +12354,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11813
12354
|
street?: string | null | undefined;
|
11814
12355
|
zipCode?: string | null | undefined;
|
11815
12356
|
} | {
|
11816
|
-
firstname
|
11817
|
-
surname
|
12357
|
+
firstname: string;
|
12358
|
+
surname: string;
|
11818
12359
|
middlename?: string | null | undefined;
|
11819
12360
|
} | {
|
11820
12361
|
country: string;
|
@@ -11860,8 +12401,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11860
12401
|
street?: string | null | undefined;
|
11861
12402
|
zipCode?: string | null | undefined;
|
11862
12403
|
} | {
|
11863
|
-
firstname
|
11864
|
-
surname
|
12404
|
+
firstname: string;
|
12405
|
+
surname: string;
|
11865
12406
|
middlename?: string | null | undefined;
|
11866
12407
|
} | {
|
11867
12408
|
country: string;
|
@@ -12022,16 +12563,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12022
12563
|
addressLine3?: string | null | undefined;
|
12023
12564
|
postcodeOrZip?: string | null | undefined;
|
12024
12565
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12025
|
-
firstname: z.
|
12026
|
-
surname: z.
|
12566
|
+
firstname: z.ZodString;
|
12567
|
+
surname: z.ZodString;
|
12027
12568
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12028
12569
|
}, "strip", z.ZodTypeAny, {
|
12029
|
-
firstname
|
12030
|
-
surname
|
12570
|
+
firstname: string;
|
12571
|
+
surname: string;
|
12031
12572
|
middlename?: string | null | undefined;
|
12032
12573
|
}, {
|
12033
|
-
firstname
|
12034
|
-
surname
|
12574
|
+
firstname: string;
|
12575
|
+
surname: string;
|
12035
12576
|
middlename?: string | null | undefined;
|
12036
12577
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12037
12578
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -12157,16 +12698,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12157
12698
|
addressLine3?: string | null | undefined;
|
12158
12699
|
postcodeOrZip?: string | null | undefined;
|
12159
12700
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12160
|
-
firstname: z.
|
12161
|
-
surname: z.
|
12701
|
+
firstname: z.ZodString;
|
12702
|
+
surname: z.ZodString;
|
12162
12703
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12163
12704
|
}, "strip", z.ZodTypeAny, {
|
12164
|
-
firstname
|
12165
|
-
surname
|
12705
|
+
firstname: string;
|
12706
|
+
surname: string;
|
12166
12707
|
middlename?: string | null | undefined;
|
12167
12708
|
}, {
|
12168
|
-
firstname
|
12169
|
-
surname
|
12709
|
+
firstname: string;
|
12710
|
+
surname: string;
|
12170
12711
|
middlename?: string | null | undefined;
|
12171
12712
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12172
12713
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -12212,8 +12753,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12212
12753
|
street?: string | null | undefined;
|
12213
12754
|
zipCode?: string | null | undefined;
|
12214
12755
|
} | {
|
12215
|
-
firstname
|
12216
|
-
surname
|
12756
|
+
firstname: string;
|
12757
|
+
surname: string;
|
12217
12758
|
middlename?: string | null | undefined;
|
12218
12759
|
} | {
|
12219
12760
|
country: string;
|
@@ -12259,8 +12800,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12259
12800
|
street?: string | null | undefined;
|
12260
12801
|
zipCode?: string | null | undefined;
|
12261
12802
|
} | {
|
12262
|
-
firstname
|
12263
|
-
surname
|
12803
|
+
firstname: string;
|
12804
|
+
surname: string;
|
12264
12805
|
middlename?: string | null | undefined;
|
12265
12806
|
} | {
|
12266
12807
|
country: string;
|
@@ -12318,8 +12859,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12318
12859
|
street?: string | null | undefined;
|
12319
12860
|
zipCode?: string | null | undefined;
|
12320
12861
|
} | {
|
12321
|
-
firstname
|
12322
|
-
surname
|
12862
|
+
firstname: string;
|
12863
|
+
surname: string;
|
12323
12864
|
middlename?: string | null | undefined;
|
12324
12865
|
} | {
|
12325
12866
|
country: string;
|
@@ -12365,8 +12906,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12365
12906
|
street?: string | null | undefined;
|
12366
12907
|
zipCode?: string | null | undefined;
|
12367
12908
|
} | {
|
12368
|
-
firstname
|
12369
|
-
surname
|
12909
|
+
firstname: string;
|
12910
|
+
surname: string;
|
12370
12911
|
middlename?: string | null | undefined;
|
12371
12912
|
} | {
|
12372
12913
|
country: string;
|
@@ -12527,16 +13068,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12527
13068
|
addressLine3?: string | null | undefined;
|
12528
13069
|
postcodeOrZip?: string | null | undefined;
|
12529
13070
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12530
|
-
firstname: z.
|
12531
|
-
surname: z.
|
13071
|
+
firstname: z.ZodString;
|
13072
|
+
surname: z.ZodString;
|
12532
13073
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12533
13074
|
}, "strip", z.ZodTypeAny, {
|
12534
|
-
firstname
|
12535
|
-
surname
|
13075
|
+
firstname: string;
|
13076
|
+
surname: string;
|
12536
13077
|
middlename?: string | null | undefined;
|
12537
13078
|
}, {
|
12538
|
-
firstname
|
12539
|
-
surname
|
13079
|
+
firstname: string;
|
13080
|
+
surname: string;
|
12540
13081
|
middlename?: string | null | undefined;
|
12541
13082
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12542
13083
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -12662,16 +13203,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12662
13203
|
addressLine3?: string | null | undefined;
|
12663
13204
|
postcodeOrZip?: string | null | undefined;
|
12664
13205
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12665
|
-
firstname: z.
|
12666
|
-
surname: z.
|
13206
|
+
firstname: z.ZodString;
|
13207
|
+
surname: z.ZodString;
|
12667
13208
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12668
13209
|
}, "strip", z.ZodTypeAny, {
|
12669
|
-
firstname
|
12670
|
-
surname
|
13210
|
+
firstname: string;
|
13211
|
+
surname: string;
|
12671
13212
|
middlename?: string | null | undefined;
|
12672
13213
|
}, {
|
12673
|
-
firstname
|
12674
|
-
surname
|
13214
|
+
firstname: string;
|
13215
|
+
surname: string;
|
12675
13216
|
middlename?: string | null | undefined;
|
12676
13217
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12677
13218
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -12703,8 +13244,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12703
13244
|
street?: string | null | undefined;
|
12704
13245
|
zipCode?: string | null | undefined;
|
12705
13246
|
} | {
|
12706
|
-
firstname
|
12707
|
-
surname
|
13247
|
+
firstname: string;
|
13248
|
+
surname: string;
|
12708
13249
|
middlename?: string | null | undefined;
|
12709
13250
|
} | {
|
12710
13251
|
country: string;
|
@@ -12750,8 +13291,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12750
13291
|
street?: string | null | undefined;
|
12751
13292
|
zipCode?: string | null | undefined;
|
12752
13293
|
} | {
|
12753
|
-
firstname
|
12754
|
-
surname
|
13294
|
+
firstname: string;
|
13295
|
+
surname: string;
|
12755
13296
|
middlename?: string | null | undefined;
|
12756
13297
|
} | {
|
12757
13298
|
country: string;
|
@@ -12805,8 +13346,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12805
13346
|
street?: string | null | undefined;
|
12806
13347
|
zipCode?: string | null | undefined;
|
12807
13348
|
} | {
|
12808
|
-
firstname
|
12809
|
-
surname
|
13349
|
+
firstname: string;
|
13350
|
+
surname: string;
|
12810
13351
|
middlename?: string | null | undefined;
|
12811
13352
|
} | {
|
12812
13353
|
country: string;
|
@@ -12852,8 +13393,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12852
13393
|
street?: string | null | undefined;
|
12853
13394
|
zipCode?: string | null | undefined;
|
12854
13395
|
} | {
|
12855
|
-
firstname
|
12856
|
-
surname
|
13396
|
+
firstname: string;
|
13397
|
+
surname: string;
|
12857
13398
|
middlename?: string | null | undefined;
|
12858
13399
|
} | {
|
12859
13400
|
country: string;
|
@@ -13014,16 +13555,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13014
13555
|
addressLine3?: string | null | undefined;
|
13015
13556
|
postcodeOrZip?: string | null | undefined;
|
13016
13557
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13017
|
-
firstname: z.
|
13018
|
-
surname: z.
|
13558
|
+
firstname: z.ZodString;
|
13559
|
+
surname: z.ZodString;
|
13019
13560
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13020
13561
|
}, "strip", z.ZodTypeAny, {
|
13021
|
-
firstname
|
13022
|
-
surname
|
13562
|
+
firstname: string;
|
13563
|
+
surname: string;
|
13023
13564
|
middlename?: string | null | undefined;
|
13024
13565
|
}, {
|
13025
|
-
firstname
|
13026
|
-
surname
|
13566
|
+
firstname: string;
|
13567
|
+
surname: string;
|
13027
13568
|
middlename?: string | null | undefined;
|
13028
13569
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13029
13570
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -13149,16 +13690,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13149
13690
|
addressLine3?: string | null | undefined;
|
13150
13691
|
postcodeOrZip?: string | null | undefined;
|
13151
13692
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13152
|
-
firstname: z.
|
13153
|
-
surname: z.
|
13693
|
+
firstname: z.ZodString;
|
13694
|
+
surname: z.ZodString;
|
13154
13695
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13155
13696
|
}, "strip", z.ZodTypeAny, {
|
13156
|
-
firstname
|
13157
|
-
surname
|
13697
|
+
firstname: string;
|
13698
|
+
surname: string;
|
13158
13699
|
middlename?: string | null | undefined;
|
13159
13700
|
}, {
|
13160
|
-
firstname
|
13161
|
-
surname
|
13701
|
+
firstname: string;
|
13702
|
+
surname: string;
|
13162
13703
|
middlename?: string | null | undefined;
|
13163
13704
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13164
13705
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -13191,8 +13732,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13191
13732
|
street?: string | null | undefined;
|
13192
13733
|
zipCode?: string | null | undefined;
|
13193
13734
|
} | {
|
13194
|
-
firstname
|
13195
|
-
surname
|
13735
|
+
firstname: string;
|
13736
|
+
surname: string;
|
13196
13737
|
middlename?: string | null | undefined;
|
13197
13738
|
} | {
|
13198
13739
|
country: string;
|
@@ -13238,8 +13779,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13238
13779
|
street?: string | null | undefined;
|
13239
13780
|
zipCode?: string | null | undefined;
|
13240
13781
|
} | {
|
13241
|
-
firstname
|
13242
|
-
surname
|
13782
|
+
firstname: string;
|
13783
|
+
surname: string;
|
13243
13784
|
middlename?: string | null | undefined;
|
13244
13785
|
} | {
|
13245
13786
|
country: string;
|
@@ -13294,8 +13835,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13294
13835
|
street?: string | null | undefined;
|
13295
13836
|
zipCode?: string | null | undefined;
|
13296
13837
|
} | {
|
13297
|
-
firstname
|
13298
|
-
surname
|
13838
|
+
firstname: string;
|
13839
|
+
surname: string;
|
13299
13840
|
middlename?: string | null | undefined;
|
13300
13841
|
} | {
|
13301
13842
|
country: string;
|
@@ -13341,8 +13882,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13341
13882
|
street?: string | null | undefined;
|
13342
13883
|
zipCode?: string | null | undefined;
|
13343
13884
|
} | {
|
13344
|
-
firstname
|
13345
|
-
surname
|
13885
|
+
firstname: string;
|
13886
|
+
surname: string;
|
13346
13887
|
middlename?: string | null | undefined;
|
13347
13888
|
} | {
|
13348
13889
|
country: string;
|
@@ -13504,16 +14045,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13504
14045
|
addressLine3?: string | null | undefined;
|
13505
14046
|
postcodeOrZip?: string | null | undefined;
|
13506
14047
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13507
|
-
firstname: z.
|
13508
|
-
surname: z.
|
14048
|
+
firstname: z.ZodString;
|
14049
|
+
surname: z.ZodString;
|
13509
14050
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13510
14051
|
}, "strip", z.ZodTypeAny, {
|
13511
|
-
firstname
|
13512
|
-
surname
|
14052
|
+
firstname: string;
|
14053
|
+
surname: string;
|
13513
14054
|
middlename?: string | null | undefined;
|
13514
14055
|
}, {
|
13515
|
-
firstname
|
13516
|
-
surname
|
14056
|
+
firstname: string;
|
14057
|
+
surname: string;
|
13517
14058
|
middlename?: string | null | undefined;
|
13518
14059
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13519
14060
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -13639,16 +14180,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13639
14180
|
addressLine3?: string | null | undefined;
|
13640
14181
|
postcodeOrZip?: string | null | undefined;
|
13641
14182
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13642
|
-
firstname: z.
|
13643
|
-
surname: z.
|
14183
|
+
firstname: z.ZodString;
|
14184
|
+
surname: z.ZodString;
|
13644
14185
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13645
14186
|
}, "strip", z.ZodTypeAny, {
|
13646
|
-
firstname
|
13647
|
-
surname
|
14187
|
+
firstname: string;
|
14188
|
+
surname: string;
|
13648
14189
|
middlename?: string | null | undefined;
|
13649
14190
|
}, {
|
13650
|
-
firstname
|
13651
|
-
surname
|
14191
|
+
firstname: string;
|
14192
|
+
surname: string;
|
13652
14193
|
middlename?: string | null | undefined;
|
13653
14194
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13654
14195
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -13680,8 +14221,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13680
14221
|
street?: string | null | undefined;
|
13681
14222
|
zipCode?: string | null | undefined;
|
13682
14223
|
} | {
|
13683
|
-
firstname
|
13684
|
-
surname
|
14224
|
+
firstname: string;
|
14225
|
+
surname: string;
|
13685
14226
|
middlename?: string | null | undefined;
|
13686
14227
|
} | {
|
13687
14228
|
country: string;
|
@@ -13727,8 +14268,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13727
14268
|
street?: string | null | undefined;
|
13728
14269
|
zipCode?: string | null | undefined;
|
13729
14270
|
} | {
|
13730
|
-
firstname
|
13731
|
-
surname
|
14271
|
+
firstname: string;
|
14272
|
+
surname: string;
|
13732
14273
|
middlename?: string | null | undefined;
|
13733
14274
|
} | {
|
13734
14275
|
country: string;
|
@@ -13782,8 +14323,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13782
14323
|
street?: string | null | undefined;
|
13783
14324
|
zipCode?: string | null | undefined;
|
13784
14325
|
} | {
|
13785
|
-
firstname
|
13786
|
-
surname
|
14326
|
+
firstname: string;
|
14327
|
+
surname: string;
|
13787
14328
|
middlename?: string | null | undefined;
|
13788
14329
|
} | {
|
13789
14330
|
country: string;
|
@@ -13829,8 +14370,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13829
14370
|
street?: string | null | undefined;
|
13830
14371
|
zipCode?: string | null | undefined;
|
13831
14372
|
} | {
|
13832
|
-
firstname
|
13833
|
-
surname
|
14373
|
+
firstname: string;
|
14374
|
+
surname: string;
|
13834
14375
|
middlename?: string | null | undefined;
|
13835
14376
|
} | {
|
13836
14377
|
country: string;
|
@@ -13991,16 +14532,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13991
14532
|
addressLine3?: string | null | undefined;
|
13992
14533
|
postcodeOrZip?: string | null | undefined;
|
13993
14534
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13994
|
-
firstname: z.
|
13995
|
-
surname: z.
|
14535
|
+
firstname: z.ZodString;
|
14536
|
+
surname: z.ZodString;
|
13996
14537
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13997
14538
|
}, "strip", z.ZodTypeAny, {
|
13998
|
-
firstname
|
13999
|
-
surname
|
14539
|
+
firstname: string;
|
14540
|
+
surname: string;
|
14000
14541
|
middlename?: string | null | undefined;
|
14001
14542
|
}, {
|
14002
|
-
firstname
|
14003
|
-
surname
|
14543
|
+
firstname: string;
|
14544
|
+
surname: string;
|
14004
14545
|
middlename?: string | null | undefined;
|
14005
14546
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14006
14547
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -14126,16 +14667,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14126
14667
|
addressLine3?: string | null | undefined;
|
14127
14668
|
postcodeOrZip?: string | null | undefined;
|
14128
14669
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14129
|
-
firstname: z.
|
14130
|
-
surname: z.
|
14670
|
+
firstname: z.ZodString;
|
14671
|
+
surname: z.ZodString;
|
14131
14672
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14132
14673
|
}, "strip", z.ZodTypeAny, {
|
14133
|
-
firstname
|
14134
|
-
surname
|
14674
|
+
firstname: string;
|
14675
|
+
surname: string;
|
14135
14676
|
middlename?: string | null | undefined;
|
14136
14677
|
}, {
|
14137
|
-
firstname
|
14138
|
-
surname
|
14678
|
+
firstname: string;
|
14679
|
+
surname: string;
|
14139
14680
|
middlename?: string | null | undefined;
|
14140
14681
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14141
14682
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -14168,8 +14709,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14168
14709
|
street?: string | null | undefined;
|
14169
14710
|
zipCode?: string | null | undefined;
|
14170
14711
|
} | {
|
14171
|
-
firstname
|
14172
|
-
surname
|
14712
|
+
firstname: string;
|
14713
|
+
surname: string;
|
14173
14714
|
middlename?: string | null | undefined;
|
14174
14715
|
} | {
|
14175
14716
|
country: string;
|
@@ -14216,8 +14757,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14216
14757
|
street?: string | null | undefined;
|
14217
14758
|
zipCode?: string | null | undefined;
|
14218
14759
|
} | {
|
14219
|
-
firstname
|
14220
|
-
surname
|
14760
|
+
firstname: string;
|
14761
|
+
surname: string;
|
14221
14762
|
middlename?: string | null | undefined;
|
14222
14763
|
} | {
|
14223
14764
|
country: string;
|
@@ -14271,8 +14812,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14271
14812
|
street?: string | null | undefined;
|
14272
14813
|
zipCode?: string | null | undefined;
|
14273
14814
|
} | {
|
14274
|
-
firstname
|
14275
|
-
surname
|
14815
|
+
firstname: string;
|
14816
|
+
surname: string;
|
14276
14817
|
middlename?: string | null | undefined;
|
14277
14818
|
} | {
|
14278
14819
|
country: string;
|
@@ -14319,8 +14860,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14319
14860
|
street?: string | null | undefined;
|
14320
14861
|
zipCode?: string | null | undefined;
|
14321
14862
|
} | {
|
14322
|
-
firstname
|
14323
|
-
surname
|
14863
|
+
firstname: string;
|
14864
|
+
surname: string;
|
14324
14865
|
middlename?: string | null | undefined;
|
14325
14866
|
} | {
|
14326
14867
|
country: string;
|
@@ -14481,16 +15022,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14481
15022
|
addressLine3?: string | null | undefined;
|
14482
15023
|
postcodeOrZip?: string | null | undefined;
|
14483
15024
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14484
|
-
firstname: z.
|
14485
|
-
surname: z.
|
15025
|
+
firstname: z.ZodString;
|
15026
|
+
surname: z.ZodString;
|
14486
15027
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14487
15028
|
}, "strip", z.ZodTypeAny, {
|
14488
|
-
firstname
|
14489
|
-
surname
|
15029
|
+
firstname: string;
|
15030
|
+
surname: string;
|
14490
15031
|
middlename?: string | null | undefined;
|
14491
15032
|
}, {
|
14492
|
-
firstname
|
14493
|
-
surname
|
15033
|
+
firstname: string;
|
15034
|
+
surname: string;
|
14494
15035
|
middlename?: string | null | undefined;
|
14495
15036
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14496
15037
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -14616,16 +15157,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14616
15157
|
addressLine3?: string | null | undefined;
|
14617
15158
|
postcodeOrZip?: string | null | undefined;
|
14618
15159
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14619
|
-
firstname: z.
|
14620
|
-
surname: z.
|
15160
|
+
firstname: z.ZodString;
|
15161
|
+
surname: z.ZodString;
|
14621
15162
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14622
15163
|
}, "strip", z.ZodTypeAny, {
|
14623
|
-
firstname
|
14624
|
-
surname
|
15164
|
+
firstname: string;
|
15165
|
+
surname: string;
|
14625
15166
|
middlename?: string | null | undefined;
|
14626
15167
|
}, {
|
14627
|
-
firstname
|
14628
|
-
surname
|
15168
|
+
firstname: string;
|
15169
|
+
surname: string;
|
14629
15170
|
middlename?: string | null | undefined;
|
14630
15171
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14631
15172
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -14657,8 +15198,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14657
15198
|
street?: string | null | undefined;
|
14658
15199
|
zipCode?: string | null | undefined;
|
14659
15200
|
} | {
|
14660
|
-
firstname
|
14661
|
-
surname
|
15201
|
+
firstname: string;
|
15202
|
+
surname: string;
|
14662
15203
|
middlename?: string | null | undefined;
|
14663
15204
|
} | {
|
14664
15205
|
country: string;
|
@@ -14704,8 +15245,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14704
15245
|
street?: string | null | undefined;
|
14705
15246
|
zipCode?: string | null | undefined;
|
14706
15247
|
} | {
|
14707
|
-
firstname
|
14708
|
-
surname
|
15248
|
+
firstname: string;
|
15249
|
+
surname: string;
|
14709
15250
|
middlename?: string | null | undefined;
|
14710
15251
|
} | {
|
14711
15252
|
country: string;
|
@@ -14759,8 +15300,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14759
15300
|
street?: string | null | undefined;
|
14760
15301
|
zipCode?: string | null | undefined;
|
14761
15302
|
} | {
|
14762
|
-
firstname
|
14763
|
-
surname
|
15303
|
+
firstname: string;
|
15304
|
+
surname: string;
|
14764
15305
|
middlename?: string | null | undefined;
|
14765
15306
|
} | {
|
14766
15307
|
country: string;
|
@@ -14806,8 +15347,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14806
15347
|
street?: string | null | undefined;
|
14807
15348
|
zipCode?: string | null | undefined;
|
14808
15349
|
} | {
|
14809
|
-
firstname
|
14810
|
-
surname
|
15350
|
+
firstname: string;
|
15351
|
+
surname: string;
|
14811
15352
|
middlename?: string | null | undefined;
|
14812
15353
|
} | {
|
14813
15354
|
country: string;
|
@@ -14968,16 +15509,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14968
15509
|
addressLine3?: string | null | undefined;
|
14969
15510
|
postcodeOrZip?: string | null | undefined;
|
14970
15511
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14971
|
-
firstname: z.
|
14972
|
-
surname: z.
|
15512
|
+
firstname: z.ZodString;
|
15513
|
+
surname: z.ZodString;
|
14973
15514
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14974
15515
|
}, "strip", z.ZodTypeAny, {
|
14975
|
-
firstname
|
14976
|
-
surname
|
15516
|
+
firstname: string;
|
15517
|
+
surname: string;
|
14977
15518
|
middlename?: string | null | undefined;
|
14978
15519
|
}, {
|
14979
|
-
firstname
|
14980
|
-
surname
|
15520
|
+
firstname: string;
|
15521
|
+
surname: string;
|
14981
15522
|
middlename?: string | null | undefined;
|
14982
15523
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14983
15524
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -15103,16 +15644,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15103
15644
|
addressLine3?: string | null | undefined;
|
15104
15645
|
postcodeOrZip?: string | null | undefined;
|
15105
15646
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15106
|
-
firstname: z.
|
15107
|
-
surname: z.
|
15647
|
+
firstname: z.ZodString;
|
15648
|
+
surname: z.ZodString;
|
15108
15649
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15109
15650
|
}, "strip", z.ZodTypeAny, {
|
15110
|
-
firstname
|
15111
|
-
surname
|
15651
|
+
firstname: string;
|
15652
|
+
surname: string;
|
15112
15653
|
middlename?: string | null | undefined;
|
15113
15654
|
}, {
|
15114
|
-
firstname
|
15115
|
-
surname
|
15655
|
+
firstname: string;
|
15656
|
+
surname: string;
|
15116
15657
|
middlename?: string | null | undefined;
|
15117
15658
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15118
15659
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -15145,8 +15686,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15145
15686
|
street?: string | null | undefined;
|
15146
15687
|
zipCode?: string | null | undefined;
|
15147
15688
|
} | {
|
15148
|
-
firstname
|
15149
|
-
surname
|
15689
|
+
firstname: string;
|
15690
|
+
surname: string;
|
15150
15691
|
middlename?: string | null | undefined;
|
15151
15692
|
} | {
|
15152
15693
|
country: string;
|
@@ -15193,8 +15734,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15193
15734
|
street?: string | null | undefined;
|
15194
15735
|
zipCode?: string | null | undefined;
|
15195
15736
|
} | {
|
15196
|
-
firstname
|
15197
|
-
surname
|
15737
|
+
firstname: string;
|
15738
|
+
surname: string;
|
15198
15739
|
middlename?: string | null | undefined;
|
15199
15740
|
} | {
|
15200
15741
|
country: string;
|
@@ -15248,8 +15789,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15248
15789
|
street?: string | null | undefined;
|
15249
15790
|
zipCode?: string | null | undefined;
|
15250
15791
|
} | {
|
15251
|
-
firstname
|
15252
|
-
surname
|
15792
|
+
firstname: string;
|
15793
|
+
surname: string;
|
15253
15794
|
middlename?: string | null | undefined;
|
15254
15795
|
} | {
|
15255
15796
|
country: string;
|
@@ -15296,8 +15837,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15296
15837
|
street?: string | null | undefined;
|
15297
15838
|
zipCode?: string | null | undefined;
|
15298
15839
|
} | {
|
15299
|
-
firstname
|
15300
|
-
surname
|
15840
|
+
firstname: string;
|
15841
|
+
surname: string;
|
15301
15842
|
middlename?: string | null | undefined;
|
15302
15843
|
} | {
|
15303
15844
|
country: string;
|
@@ -15458,16 +15999,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15458
15999
|
addressLine3?: string | null | undefined;
|
15459
16000
|
postcodeOrZip?: string | null | undefined;
|
15460
16001
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15461
|
-
firstname: z.
|
15462
|
-
surname: z.
|
16002
|
+
firstname: z.ZodString;
|
16003
|
+
surname: z.ZodString;
|
15463
16004
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15464
16005
|
}, "strip", z.ZodTypeAny, {
|
15465
|
-
firstname
|
15466
|
-
surname
|
16006
|
+
firstname: string;
|
16007
|
+
surname: string;
|
15467
16008
|
middlename?: string | null | undefined;
|
15468
16009
|
}, {
|
15469
|
-
firstname
|
15470
|
-
surname
|
16010
|
+
firstname: string;
|
16011
|
+
surname: string;
|
15471
16012
|
middlename?: string | null | undefined;
|
15472
16013
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15473
16014
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -15593,16 +16134,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15593
16134
|
addressLine3?: string | null | undefined;
|
15594
16135
|
postcodeOrZip?: string | null | undefined;
|
15595
16136
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15596
|
-
firstname: z.
|
15597
|
-
surname: z.
|
16137
|
+
firstname: z.ZodString;
|
16138
|
+
surname: z.ZodString;
|
15598
16139
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15599
16140
|
}, "strip", z.ZodTypeAny, {
|
15600
|
-
firstname
|
15601
|
-
surname
|
16141
|
+
firstname: string;
|
16142
|
+
surname: string;
|
15602
16143
|
middlename?: string | null | undefined;
|
15603
16144
|
}, {
|
15604
|
-
firstname
|
15605
|
-
surname
|
16145
|
+
firstname: string;
|
16146
|
+
surname: string;
|
15606
16147
|
middlename?: string | null | undefined;
|
15607
16148
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15608
16149
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -15610,10 +16151,24 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15610
16151
|
}, {
|
15611
16152
|
type: z.ZodLiteral<"REJECT_CORRECTION">;
|
15612
16153
|
requestId: z.ZodString;
|
16154
|
+
reason: z.ZodObject<{
|
16155
|
+
message: z.ZodString;
|
16156
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
16157
|
+
}, "strip", z.ZodTypeAny, {
|
16158
|
+
message: string;
|
16159
|
+
isDuplicate?: boolean | undefined;
|
16160
|
+
}, {
|
16161
|
+
message: string;
|
16162
|
+
isDuplicate?: boolean | undefined;
|
16163
|
+
}>;
|
15613
16164
|
}>, "strip", z.ZodTypeAny, {
|
15614
16165
|
type: "REJECT_CORRECTION";
|
15615
16166
|
id: string & z.BRAND<"UUID">;
|
15616
16167
|
status: "Rejected" | "Requested" | "Accepted";
|
16168
|
+
reason: {
|
16169
|
+
message: string;
|
16170
|
+
isDuplicate?: boolean | undefined;
|
16171
|
+
};
|
15617
16172
|
transactionId: string;
|
15618
16173
|
createdByUserType: "system" | "user";
|
15619
16174
|
createdAt: string;
|
@@ -15635,8 +16190,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15635
16190
|
street?: string | null | undefined;
|
15636
16191
|
zipCode?: string | null | undefined;
|
15637
16192
|
} | {
|
15638
|
-
firstname
|
15639
|
-
surname
|
16193
|
+
firstname: string;
|
16194
|
+
surname: string;
|
15640
16195
|
middlename?: string | null | undefined;
|
15641
16196
|
} | {
|
15642
16197
|
country: string;
|
@@ -15683,8 +16238,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15683
16238
|
street?: string | null | undefined;
|
15684
16239
|
zipCode?: string | null | undefined;
|
15685
16240
|
} | {
|
15686
|
-
firstname
|
15687
|
-
surname
|
16241
|
+
firstname: string;
|
16242
|
+
surname: string;
|
15688
16243
|
middlename?: string | null | undefined;
|
15689
16244
|
} | {
|
15690
16245
|
country: string;
|
@@ -15717,6 +16272,10 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15717
16272
|
type: "REJECT_CORRECTION";
|
15718
16273
|
id: string;
|
15719
16274
|
status: "Rejected" | "Requested" | "Accepted";
|
16275
|
+
reason: {
|
16276
|
+
message: string;
|
16277
|
+
isDuplicate?: boolean | undefined;
|
16278
|
+
};
|
15720
16279
|
transactionId: string;
|
15721
16280
|
createdByUserType: "system" | "user";
|
15722
16281
|
createdAt: string;
|
@@ -15738,8 +16297,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15738
16297
|
street?: string | null | undefined;
|
15739
16298
|
zipCode?: string | null | undefined;
|
15740
16299
|
} | {
|
15741
|
-
firstname
|
15742
|
-
surname
|
16300
|
+
firstname: string;
|
16301
|
+
surname: string;
|
15743
16302
|
middlename?: string | null | undefined;
|
15744
16303
|
} | {
|
15745
16304
|
country: string;
|
@@ -15786,8 +16345,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15786
16345
|
street?: string | null | undefined;
|
15787
16346
|
zipCode?: string | null | undefined;
|
15788
16347
|
} | {
|
15789
|
-
firstname
|
15790
|
-
surname
|
16348
|
+
firstname: string;
|
16349
|
+
surname: string;
|
15791
16350
|
middlename?: string | null | undefined;
|
15792
16351
|
} | {
|
15793
16352
|
country: string;
|
@@ -15948,16 +16507,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15948
16507
|
addressLine3?: string | null | undefined;
|
15949
16508
|
postcodeOrZip?: string | null | undefined;
|
15950
16509
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15951
|
-
firstname: z.
|
15952
|
-
surname: z.
|
16510
|
+
firstname: z.ZodString;
|
16511
|
+
surname: z.ZodString;
|
15953
16512
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15954
16513
|
}, "strip", z.ZodTypeAny, {
|
15955
|
-
firstname
|
15956
|
-
surname
|
16514
|
+
firstname: string;
|
16515
|
+
surname: string;
|
15957
16516
|
middlename?: string | null | undefined;
|
15958
16517
|
}, {
|
15959
|
-
firstname
|
15960
|
-
surname
|
16518
|
+
firstname: string;
|
16519
|
+
surname: string;
|
15961
16520
|
middlename?: string | null | undefined;
|
15962
16521
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15963
16522
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -16083,16 +16642,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16083
16642
|
addressLine3?: string | null | undefined;
|
16084
16643
|
postcodeOrZip?: string | null | undefined;
|
16085
16644
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16086
|
-
firstname: z.
|
16087
|
-
surname: z.
|
16645
|
+
firstname: z.ZodString;
|
16646
|
+
surname: z.ZodString;
|
16088
16647
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16089
16648
|
}, "strip", z.ZodTypeAny, {
|
16090
|
-
firstname
|
16091
|
-
surname
|
16649
|
+
firstname: string;
|
16650
|
+
surname: string;
|
16092
16651
|
middlename?: string | null | undefined;
|
16093
16652
|
}, {
|
16094
|
-
firstname
|
16095
|
-
surname
|
16653
|
+
firstname: string;
|
16654
|
+
surname: string;
|
16096
16655
|
middlename?: string | null | undefined;
|
16097
16656
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16098
16657
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -16124,8 +16683,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16124
16683
|
street?: string | null | undefined;
|
16125
16684
|
zipCode?: string | null | undefined;
|
16126
16685
|
} | {
|
16127
|
-
firstname
|
16128
|
-
surname
|
16686
|
+
firstname: string;
|
16687
|
+
surname: string;
|
16129
16688
|
middlename?: string | null | undefined;
|
16130
16689
|
} | {
|
16131
16690
|
country: string;
|
@@ -16171,8 +16730,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16171
16730
|
street?: string | null | undefined;
|
16172
16731
|
zipCode?: string | null | undefined;
|
16173
16732
|
} | {
|
16174
|
-
firstname
|
16175
|
-
surname
|
16733
|
+
firstname: string;
|
16734
|
+
surname: string;
|
16176
16735
|
middlename?: string | null | undefined;
|
16177
16736
|
} | {
|
16178
16737
|
country: string;
|
@@ -16226,8 +16785,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16226
16785
|
street?: string | null | undefined;
|
16227
16786
|
zipCode?: string | null | undefined;
|
16228
16787
|
} | {
|
16229
|
-
firstname
|
16230
|
-
surname
|
16788
|
+
firstname: string;
|
16789
|
+
surname: string;
|
16231
16790
|
middlename?: string | null | undefined;
|
16232
16791
|
} | {
|
16233
16792
|
country: string;
|
@@ -16273,8 +16832,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16273
16832
|
street?: string | null | undefined;
|
16274
16833
|
zipCode?: string | null | undefined;
|
16275
16834
|
} | {
|
16276
|
-
firstname
|
16277
|
-
surname
|
16835
|
+
firstname: string;
|
16836
|
+
surname: string;
|
16278
16837
|
middlename?: string | null | undefined;
|
16279
16838
|
} | {
|
16280
16839
|
country: string;
|
@@ -16435,16 +16994,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16435
16994
|
addressLine3?: string | null | undefined;
|
16436
16995
|
postcodeOrZip?: string | null | undefined;
|
16437
16996
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16438
|
-
firstname: z.
|
16439
|
-
surname: z.
|
16997
|
+
firstname: z.ZodString;
|
16998
|
+
surname: z.ZodString;
|
16440
16999
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16441
17000
|
}, "strip", z.ZodTypeAny, {
|
16442
|
-
firstname
|
16443
|
-
surname
|
17001
|
+
firstname: string;
|
17002
|
+
surname: string;
|
16444
17003
|
middlename?: string | null | undefined;
|
16445
17004
|
}, {
|
16446
|
-
firstname
|
16447
|
-
surname
|
17005
|
+
firstname: string;
|
17006
|
+
surname: string;
|
16448
17007
|
middlename?: string | null | undefined;
|
16449
17008
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
16450
17009
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -16570,22 +17129,29 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16570
17129
|
addressLine3?: string | null | undefined;
|
16571
17130
|
postcodeOrZip?: string | null | undefined;
|
16572
17131
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16573
|
-
firstname: z.
|
16574
|
-
surname: z.
|
17132
|
+
firstname: z.ZodString;
|
17133
|
+
surname: z.ZodString;
|
16575
17134
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16576
17135
|
}, "strip", z.ZodTypeAny, {
|
16577
|
-
firstname
|
16578
|
-
surname
|
17136
|
+
firstname: string;
|
17137
|
+
surname: string;
|
16579
17138
|
middlename?: string | null | undefined;
|
16580
17139
|
}, {
|
16581
|
-
firstname
|
16582
|
-
surname
|
17140
|
+
firstname: string;
|
17141
|
+
surname: string;
|
16583
17142
|
middlename?: string | null | undefined;
|
16584
17143
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16585
17144
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
16586
17145
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
16587
17146
|
}, {
|
16588
17147
|
type: z.ZodLiteral<"PRINT_CERTIFICATE">;
|
17148
|
+
content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
17149
|
+
templateId: z.ZodOptional<z.ZodString>;
|
17150
|
+
}, "strip", z.ZodTypeAny, {
|
17151
|
+
templateId?: string | undefined;
|
17152
|
+
}, {
|
17153
|
+
templateId?: string | undefined;
|
17154
|
+
}>>>;
|
16589
17155
|
}>, "strip", z.ZodTypeAny, {
|
16590
17156
|
type: "PRINT_CERTIFICATE";
|
16591
17157
|
id: string & z.BRAND<"UUID">;
|
@@ -16611,8 +17177,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16611
17177
|
street?: string | null | undefined;
|
16612
17178
|
zipCode?: string | null | undefined;
|
16613
17179
|
} | {
|
16614
|
-
firstname
|
16615
|
-
surname
|
17180
|
+
firstname: string;
|
17181
|
+
surname: string;
|
16616
17182
|
middlename?: string | null | undefined;
|
16617
17183
|
} | {
|
16618
17184
|
country: string;
|
@@ -16640,6 +17206,9 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16640
17206
|
start: string;
|
16641
17207
|
end: string;
|
16642
17208
|
} | null | undefined>;
|
17209
|
+
content?: {
|
17210
|
+
templateId?: string | undefined;
|
17211
|
+
} | null | undefined;
|
16643
17212
|
createdBySignature?: string | null | undefined;
|
16644
17213
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
16645
17214
|
annotation?: Record<string, string | number | boolean | {
|
@@ -16658,8 +17227,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16658
17227
|
street?: string | null | undefined;
|
16659
17228
|
zipCode?: string | null | undefined;
|
16660
17229
|
} | {
|
16661
|
-
firstname
|
16662
|
-
surname
|
17230
|
+
firstname: string;
|
17231
|
+
surname: string;
|
16663
17232
|
middlename?: string | null | undefined;
|
16664
17233
|
} | {
|
16665
17234
|
country: string;
|
@@ -16713,8 +17282,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16713
17282
|
street?: string | null | undefined;
|
16714
17283
|
zipCode?: string | null | undefined;
|
16715
17284
|
} | {
|
16716
|
-
firstname
|
16717
|
-
surname
|
17285
|
+
firstname: string;
|
17286
|
+
surname: string;
|
16718
17287
|
middlename?: string | null | undefined;
|
16719
17288
|
} | {
|
16720
17289
|
country: string;
|
@@ -16742,6 +17311,9 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16742
17311
|
start: string;
|
16743
17312
|
end: string;
|
16744
17313
|
} | null | undefined>;
|
17314
|
+
content?: {
|
17315
|
+
templateId?: string | undefined;
|
17316
|
+
} | null | undefined;
|
16745
17317
|
createdBySignature?: string | null | undefined;
|
16746
17318
|
createdAtLocation?: string | null | undefined;
|
16747
17319
|
annotation?: Record<string, string | number | boolean | {
|
@@ -16760,8 +17332,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16760
17332
|
street?: string | null | undefined;
|
16761
17333
|
zipCode?: string | null | undefined;
|
16762
17334
|
} | {
|
16763
|
-
firstname
|
16764
|
-
surname
|
17335
|
+
firstname: string;
|
17336
|
+
surname: string;
|
16765
17337
|
middlename?: string | null | undefined;
|
16766
17338
|
} | {
|
16767
17339
|
country: string;
|
@@ -16922,16 +17494,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16922
17494
|
addressLine3?: string | null | undefined;
|
16923
17495
|
postcodeOrZip?: string | null | undefined;
|
16924
17496
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16925
|
-
firstname: z.
|
16926
|
-
surname: z.
|
17497
|
+
firstname: z.ZodString;
|
17498
|
+
surname: z.ZodString;
|
16927
17499
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16928
17500
|
}, "strip", z.ZodTypeAny, {
|
16929
|
-
firstname
|
16930
|
-
surname
|
17501
|
+
firstname: string;
|
17502
|
+
surname: string;
|
16931
17503
|
middlename?: string | null | undefined;
|
16932
17504
|
}, {
|
16933
|
-
firstname
|
16934
|
-
surname
|
17505
|
+
firstname: string;
|
17506
|
+
surname: string;
|
16935
17507
|
middlename?: string | null | undefined;
|
16936
17508
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
16937
17509
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -17057,16 +17629,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17057
17629
|
addressLine3?: string | null | undefined;
|
17058
17630
|
postcodeOrZip?: string | null | undefined;
|
17059
17631
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17060
|
-
firstname: z.
|
17061
|
-
surname: z.
|
17632
|
+
firstname: z.ZodString;
|
17633
|
+
surname: z.ZodString;
|
17062
17634
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
17063
17635
|
}, "strip", z.ZodTypeAny, {
|
17064
|
-
firstname
|
17065
|
-
surname
|
17636
|
+
firstname: string;
|
17637
|
+
surname: string;
|
17066
17638
|
middlename?: string | null | undefined;
|
17067
17639
|
}, {
|
17068
|
-
firstname
|
17069
|
-
surname
|
17640
|
+
firstname: string;
|
17641
|
+
surname: string;
|
17070
17642
|
middlename?: string | null | undefined;
|
17071
17643
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
17072
17644
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -17098,8 +17670,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17098
17670
|
street?: string | null | undefined;
|
17099
17671
|
zipCode?: string | null | undefined;
|
17100
17672
|
} | {
|
17101
|
-
firstname
|
17102
|
-
surname
|
17673
|
+
firstname: string;
|
17674
|
+
surname: string;
|
17103
17675
|
middlename?: string | null | undefined;
|
17104
17676
|
} | {
|
17105
17677
|
country: string;
|
@@ -17145,8 +17717,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17145
17717
|
street?: string | null | undefined;
|
17146
17718
|
zipCode?: string | null | undefined;
|
17147
17719
|
} | {
|
17148
|
-
firstname
|
17149
|
-
surname
|
17720
|
+
firstname: string;
|
17721
|
+
surname: string;
|
17150
17722
|
middlename?: string | null | undefined;
|
17151
17723
|
} | {
|
17152
17724
|
country: string;
|
@@ -17200,8 +17772,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17200
17772
|
street?: string | null | undefined;
|
17201
17773
|
zipCode?: string | null | undefined;
|
17202
17774
|
} | {
|
17203
|
-
firstname
|
17204
|
-
surname
|
17775
|
+
firstname: string;
|
17776
|
+
surname: string;
|
17205
17777
|
middlename?: string | null | undefined;
|
17206
17778
|
} | {
|
17207
17779
|
country: string;
|
@@ -17247,8 +17819,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17247
17819
|
street?: string | null | undefined;
|
17248
17820
|
zipCode?: string | null | undefined;
|
17249
17821
|
} | {
|
17250
|
-
firstname
|
17251
|
-
surname
|
17822
|
+
firstname: string;
|
17823
|
+
surname: string;
|
17252
17824
|
middlename?: string | null | undefined;
|
17253
17825
|
} | {
|
17254
17826
|
country: string;
|
@@ -17409,16 +17981,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17409
17981
|
addressLine3?: string | null | undefined;
|
17410
17982
|
postcodeOrZip?: string | null | undefined;
|
17411
17983
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17412
|
-
firstname: z.
|
17413
|
-
surname: z.
|
17984
|
+
firstname: z.ZodString;
|
17985
|
+
surname: z.ZodString;
|
17414
17986
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
17415
17987
|
}, "strip", z.ZodTypeAny, {
|
17416
|
-
firstname
|
17417
|
-
surname
|
17988
|
+
firstname: string;
|
17989
|
+
surname: string;
|
17418
17990
|
middlename?: string | null | undefined;
|
17419
17991
|
}, {
|
17420
|
-
firstname
|
17421
|
-
surname
|
17992
|
+
firstname: string;
|
17993
|
+
surname: string;
|
17422
17994
|
middlename?: string | null | undefined;
|
17423
17995
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
17424
17996
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -17544,16 +18116,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17544
18116
|
addressLine3?: string | null | undefined;
|
17545
18117
|
postcodeOrZip?: string | null | undefined;
|
17546
18118
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17547
|
-
firstname: z.
|
17548
|
-
surname: z.
|
18119
|
+
firstname: z.ZodString;
|
18120
|
+
surname: z.ZodString;
|
17549
18121
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
17550
18122
|
}, "strip", z.ZodTypeAny, {
|
17551
|
-
firstname
|
17552
|
-
surname
|
18123
|
+
firstname: string;
|
18124
|
+
surname: string;
|
17553
18125
|
middlename?: string | null | undefined;
|
17554
18126
|
}, {
|
17555
|
-
firstname
|
17556
|
-
surname
|
18127
|
+
firstname: string;
|
18128
|
+
surname: string;
|
17557
18129
|
middlename?: string | null | undefined;
|
17558
18130
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
17559
18131
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|