@opencrvs/toolkit 1.8.0-rc.fe87a15 → 1.8.0-rc.fe8c092

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.
Files changed (38) hide show
  1. package/dist/commons/api/router.d.ts +6884 -614
  2. package/dist/commons/conditionals/conditionals.d.ts +4 -0
  3. package/dist/commons/conditionals/validate.d.ts +6 -0
  4. package/dist/commons/events/ActionConfig.d.ts +18678 -6326
  5. package/dist/commons/events/ActionDocument.d.ts +1923 -414
  6. package/dist/commons/events/ActionInput.d.ts +1504 -304
  7. package/dist/commons/events/ActionType.d.ts +6 -0
  8. package/dist/commons/events/AdvancedSearchConfig.d.ts +75 -3
  9. package/dist/commons/events/CompositeFieldValue.d.ts +28 -0
  10. package/dist/commons/events/Constants.d.ts +1 -0
  11. package/dist/commons/events/CountryConfigQueryInput.d.ts +254 -168
  12. package/dist/commons/events/CreatedAtLocation.d.ts +2 -1
  13. package/dist/commons/events/Draft.d.ts +134 -33
  14. package/dist/commons/events/EventConfig.d.ts +8242 -2365
  15. package/dist/commons/events/EventDocument.d.ts +1242 -298
  16. package/dist/commons/events/EventIndex.d.ts +798 -123
  17. package/dist/commons/events/EventMetadata.d.ts +62 -59
  18. package/dist/commons/events/FieldConfig.d.ts +1572 -746
  19. package/dist/commons/events/FieldType.d.ts +4 -1
  20. package/dist/commons/events/FieldTypeMapping.d.ts +89 -50
  21. package/dist/commons/events/FieldValue.d.ts +41 -5
  22. package/dist/commons/events/FormConfig.d.ts +7640 -2444
  23. package/dist/commons/events/PageConfig.d.ts +2816 -1540
  24. package/dist/commons/events/SummaryConfig.d.ts +0 -5
  25. package/dist/commons/events/WorkqueueColumnConfig.d.ts +11 -11
  26. package/dist/commons/events/WorkqueueConfig.d.ts +3277 -1512
  27. package/dist/commons/events/defineConfig.d.ts +959 -13
  28. package/dist/commons/events/field.d.ts +4 -0
  29. package/dist/commons/events/index.d.ts +1 -0
  30. package/dist/commons/events/scopes.d.ts +1 -2
  31. package/dist/commons/events/test.utils.d.ts +138 -40
  32. package/dist/commons/events/transactions.d.ts +1 -1
  33. package/dist/commons/events/utils.d.ts +9666 -16
  34. package/dist/conditionals/index.js +18 -1
  35. package/dist/events/index.js +1592 -1011
  36. package/dist/scopes/index.d.ts +4 -1
  37. package/dist/scopes/index.js +67 -17
  38. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  export declare const BaseActionInput: z.ZodObject<{
3
- eventId: z.ZodBranded<z.ZodString, "UUID">;
3
+ eventId: z.ZodString;
4
4
  transactionId: z.ZodString;
5
5
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
6
6
  filename: z.ZodString;
@@ -115,7 +115,19 @@ export declare const BaseActionInput: z.ZodObject<{
115
115
  addressLine2?: string | null | undefined;
116
116
  addressLine3?: string | null | undefined;
117
117
  postcodeOrZip?: string | null | undefined;
118
- }>]>>>;
118
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
119
+ firstname: z.ZodString;
120
+ surname: z.ZodString;
121
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
122
+ }, "strip", z.ZodTypeAny, {
123
+ firstname: string;
124
+ surname: string;
125
+ middlename?: string | null | undefined;
126
+ }, {
127
+ firstname: string;
128
+ surname: string;
129
+ middlename?: string | null | undefined;
130
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
119
131
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
120
132
  filename: z.ZodString;
121
133
  originalFilename: z.ZodString;
@@ -229,8 +241,20 @@ export declare const BaseActionInput: z.ZodObject<{
229
241
  addressLine2?: string | null | undefined;
230
242
  addressLine3?: string | null | undefined;
231
243
  postcodeOrZip?: string | null | undefined;
232
- }>]>>>;
233
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
244
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
245
+ firstname: z.ZodString;
246
+ surname: z.ZodString;
247
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
248
+ }, "strip", z.ZodTypeAny, {
249
+ firstname: string;
250
+ surname: string;
251
+ middlename?: string | null | undefined;
252
+ }, {
253
+ firstname: string;
254
+ surname: string;
255
+ middlename?: string | null | undefined;
256
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
257
+ originalActionId: z.ZodOptional<z.ZodString>;
234
258
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
235
259
  }, "strip", z.ZodTypeAny, {
236
260
  transactionId: string;
@@ -249,6 +273,10 @@ export declare const BaseActionInput: z.ZodObject<{
249
273
  residentialArea?: string | null | undefined;
250
274
  street?: string | null | undefined;
251
275
  zipCode?: string | null | undefined;
276
+ } | {
277
+ firstname: string;
278
+ surname: string;
279
+ middlename?: string | null | undefined;
252
280
  } | {
253
281
  country: string;
254
282
  district: string;
@@ -271,8 +299,8 @@ export declare const BaseActionInput: z.ZodObject<{
271
299
  option: string;
272
300
  filename: string;
273
301
  originalFilename: string;
274
- }[] | [string, string] | undefined>;
275
- eventId: string & z.BRAND<"UUID">;
302
+ }[] | [string, string] | null | undefined>;
303
+ eventId: string;
276
304
  annotation?: Record<string, string | number | boolean | {
277
305
  type: string;
278
306
  filename: string;
@@ -288,6 +316,10 @@ export declare const BaseActionInput: z.ZodObject<{
288
316
  residentialArea?: string | null | undefined;
289
317
  street?: string | null | undefined;
290
318
  zipCode?: string | null | undefined;
319
+ } | {
320
+ firstname: string;
321
+ surname: string;
322
+ middlename?: string | null | undefined;
291
323
  } | {
292
324
  country: string;
293
325
  district: string;
@@ -310,8 +342,8 @@ export declare const BaseActionInput: z.ZodObject<{
310
342
  option: string;
311
343
  filename: string;
312
344
  originalFilename: string;
313
- }[] | [string, string] | undefined> | undefined;
314
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
345
+ }[] | [string, string] | null | undefined> | undefined;
346
+ originalActionId?: string | undefined;
315
347
  keepAssignment?: boolean | undefined;
316
348
  }, {
317
349
  transactionId: string;
@@ -331,6 +363,10 @@ export declare const BaseActionInput: z.ZodObject<{
331
363
  residentialArea?: string | null | undefined;
332
364
  street?: string | null | undefined;
333
365
  zipCode?: string | null | undefined;
366
+ } | {
367
+ firstname: string;
368
+ surname: string;
369
+ middlename?: string | null | undefined;
334
370
  } | {
335
371
  country: string;
336
372
  district: string;
@@ -353,7 +389,7 @@ export declare const BaseActionInput: z.ZodObject<{
353
389
  option: string;
354
390
  filename: string;
355
391
  originalFilename: string;
356
- }[] | [string, string] | undefined> | undefined;
392
+ }[] | [string, string] | null | undefined> | undefined;
357
393
  annotation?: Record<string, string | number | boolean | {
358
394
  type: string;
359
395
  filename: string;
@@ -369,6 +405,10 @@ export declare const BaseActionInput: z.ZodObject<{
369
405
  residentialArea?: string | null | undefined;
370
406
  street?: string | null | undefined;
371
407
  zipCode?: string | null | undefined;
408
+ } | {
409
+ firstname: string;
410
+ surname: string;
411
+ middlename?: string | null | undefined;
372
412
  } | {
373
413
  country: string;
374
414
  district: string;
@@ -391,12 +431,12 @@ export declare const BaseActionInput: z.ZodObject<{
391
431
  option: string;
392
432
  filename: string;
393
433
  originalFilename: string;
394
- }[] | [string, string] | undefined> | undefined;
434
+ }[] | [string, string] | null | undefined> | undefined;
395
435
  originalActionId?: string | undefined;
396
436
  keepAssignment?: boolean | undefined;
397
437
  }>;
398
438
  export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
399
- eventId: z.ZodBranded<z.ZodString, "UUID">;
439
+ eventId: z.ZodString;
400
440
  transactionId: z.ZodString;
401
441
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
402
442
  filename: z.ZodString;
@@ -511,7 +551,19 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
511
551
  addressLine2?: string | null | undefined;
512
552
  addressLine3?: string | null | undefined;
513
553
  postcodeOrZip?: string | null | undefined;
514
- }>]>>>;
554
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
555
+ firstname: z.ZodString;
556
+ surname: z.ZodString;
557
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
558
+ }, "strip", z.ZodTypeAny, {
559
+ firstname: string;
560
+ surname: string;
561
+ middlename?: string | null | undefined;
562
+ }, {
563
+ firstname: string;
564
+ surname: string;
565
+ middlename?: string | null | undefined;
566
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
515
567
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
516
568
  filename: z.ZodString;
517
569
  originalFilename: z.ZodString;
@@ -625,8 +677,20 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
625
677
  addressLine2?: string | null | undefined;
626
678
  addressLine3?: string | null | undefined;
627
679
  postcodeOrZip?: string | null | undefined;
628
- }>]>>>;
629
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
680
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
681
+ firstname: z.ZodString;
682
+ surname: z.ZodString;
683
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
684
+ }, "strip", z.ZodTypeAny, {
685
+ firstname: string;
686
+ surname: string;
687
+ middlename?: string | null | undefined;
688
+ }, {
689
+ firstname: string;
690
+ surname: string;
691
+ middlename?: string | null | undefined;
692
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
693
+ originalActionId: z.ZodOptional<z.ZodString>;
630
694
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
631
695
  }, {
632
696
  type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
@@ -649,6 +713,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
649
713
  residentialArea?: string | null | undefined;
650
714
  street?: string | null | undefined;
651
715
  zipCode?: string | null | undefined;
716
+ } | {
717
+ firstname: string;
718
+ surname: string;
719
+ middlename?: string | null | undefined;
652
720
  } | {
653
721
  country: string;
654
722
  district: string;
@@ -671,8 +739,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
671
739
  option: string;
672
740
  filename: string;
673
741
  originalFilename: string;
674
- }[] | [string, string] | undefined>;
675
- eventId: string & z.BRAND<"UUID">;
742
+ }[] | [string, string] | null | undefined>;
743
+ eventId: string;
676
744
  annotation?: Record<string, string | number | boolean | {
677
745
  type: string;
678
746
  filename: string;
@@ -688,6 +756,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
688
756
  residentialArea?: string | null | undefined;
689
757
  street?: string | null | undefined;
690
758
  zipCode?: string | null | undefined;
759
+ } | {
760
+ firstname: string;
761
+ surname: string;
762
+ middlename?: string | null | undefined;
691
763
  } | {
692
764
  country: string;
693
765
  district: string;
@@ -710,8 +782,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
710
782
  option: string;
711
783
  filename: string;
712
784
  originalFilename: string;
713
- }[] | [string, string] | undefined> | undefined;
714
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
785
+ }[] | [string, string] | null | undefined> | undefined;
786
+ originalActionId?: string | undefined;
715
787
  registrationNumber?: string | undefined;
716
788
  keepAssignment?: boolean | undefined;
717
789
  }, {
@@ -733,6 +805,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
733
805
  residentialArea?: string | null | undefined;
734
806
  street?: string | null | undefined;
735
807
  zipCode?: string | null | undefined;
808
+ } | {
809
+ firstname: string;
810
+ surname: string;
811
+ middlename?: string | null | undefined;
736
812
  } | {
737
813
  country: string;
738
814
  district: string;
@@ -755,7 +831,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
755
831
  option: string;
756
832
  filename: string;
757
833
  originalFilename: string;
758
- }[] | [string, string] | undefined> | undefined;
834
+ }[] | [string, string] | null | undefined> | undefined;
759
835
  annotation?: Record<string, string | number | boolean | {
760
836
  type: string;
761
837
  filename: string;
@@ -771,6 +847,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
771
847
  residentialArea?: string | null | undefined;
772
848
  street?: string | null | undefined;
773
849
  zipCode?: string | null | undefined;
850
+ } | {
851
+ firstname: string;
852
+ surname: string;
853
+ middlename?: string | null | undefined;
774
854
  } | {
775
855
  country: string;
776
856
  district: string;
@@ -793,14 +873,14 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
793
873
  option: string;
794
874
  filename: string;
795
875
  originalFilename: string;
796
- }[] | [string, string] | undefined> | undefined;
876
+ }[] | [string, string] | null | undefined> | undefined;
797
877
  originalActionId?: string | undefined;
798
878
  registrationNumber?: string | undefined;
799
879
  keepAssignment?: boolean | undefined;
800
880
  }>;
801
881
  export type RegisterActionInput = z.infer<typeof RegisterActionInput>;
802
882
  export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
803
- eventId: z.ZodBranded<z.ZodString, "UUID">;
883
+ eventId: z.ZodString;
804
884
  transactionId: z.ZodString;
805
885
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
806
886
  filename: z.ZodString;
@@ -915,7 +995,19 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
915
995
  addressLine2?: string | null | undefined;
916
996
  addressLine3?: string | null | undefined;
917
997
  postcodeOrZip?: string | null | undefined;
918
- }>]>>>;
998
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
999
+ firstname: z.ZodString;
1000
+ surname: z.ZodString;
1001
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1002
+ }, "strip", z.ZodTypeAny, {
1003
+ firstname: string;
1004
+ surname: string;
1005
+ middlename?: string | null | undefined;
1006
+ }, {
1007
+ firstname: string;
1008
+ surname: string;
1009
+ middlename?: string | null | undefined;
1010
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
919
1011
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
920
1012
  filename: z.ZodString;
921
1013
  originalFilename: z.ZodString;
@@ -1029,8 +1121,20 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1029
1121
  addressLine2?: string | null | undefined;
1030
1122
  addressLine3?: string | null | undefined;
1031
1123
  postcodeOrZip?: string | null | undefined;
1032
- }>]>>>;
1033
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1124
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1125
+ firstname: z.ZodString;
1126
+ surname: z.ZodString;
1127
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1128
+ }, "strip", z.ZodTypeAny, {
1129
+ firstname: string;
1130
+ surname: string;
1131
+ middlename?: string | null | undefined;
1132
+ }, {
1133
+ firstname: string;
1134
+ surname: string;
1135
+ middlename?: string | null | undefined;
1136
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1137
+ originalActionId: z.ZodOptional<z.ZodString>;
1034
1138
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1035
1139
  }, {
1036
1140
  type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
@@ -1053,6 +1157,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1053
1157
  residentialArea?: string | null | undefined;
1054
1158
  street?: string | null | undefined;
1055
1159
  zipCode?: string | null | undefined;
1160
+ } | {
1161
+ firstname: string;
1162
+ surname: string;
1163
+ middlename?: string | null | undefined;
1056
1164
  } | {
1057
1165
  country: string;
1058
1166
  district: string;
@@ -1075,8 +1183,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1075
1183
  option: string;
1076
1184
  filename: string;
1077
1185
  originalFilename: string;
1078
- }[] | [string, string] | undefined>;
1079
- eventId: string & z.BRAND<"UUID">;
1186
+ }[] | [string, string] | null | undefined>;
1187
+ eventId: string;
1080
1188
  duplicates: string[];
1081
1189
  annotation?: Record<string, string | number | boolean | {
1082
1190
  type: string;
@@ -1093,6 +1201,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1093
1201
  residentialArea?: string | null | undefined;
1094
1202
  street?: string | null | undefined;
1095
1203
  zipCode?: string | null | undefined;
1204
+ } | {
1205
+ firstname: string;
1206
+ surname: string;
1207
+ middlename?: string | null | undefined;
1096
1208
  } | {
1097
1209
  country: string;
1098
1210
  district: string;
@@ -1115,8 +1227,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1115
1227
  option: string;
1116
1228
  filename: string;
1117
1229
  originalFilename: string;
1118
- }[] | [string, string] | undefined> | undefined;
1119
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
1230
+ }[] | [string, string] | null | undefined> | undefined;
1231
+ originalActionId?: string | undefined;
1120
1232
  keepAssignment?: boolean | undefined;
1121
1233
  }, {
1122
1234
  transactionId: string;
@@ -1138,6 +1250,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1138
1250
  residentialArea?: string | null | undefined;
1139
1251
  street?: string | null | undefined;
1140
1252
  zipCode?: string | null | undefined;
1253
+ } | {
1254
+ firstname: string;
1255
+ surname: string;
1256
+ middlename?: string | null | undefined;
1141
1257
  } | {
1142
1258
  country: string;
1143
1259
  district: string;
@@ -1160,7 +1276,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1160
1276
  option: string;
1161
1277
  filename: string;
1162
1278
  originalFilename: string;
1163
- }[] | [string, string] | undefined> | undefined;
1279
+ }[] | [string, string] | null | undefined> | undefined;
1164
1280
  annotation?: Record<string, string | number | boolean | {
1165
1281
  type: string;
1166
1282
  filename: string;
@@ -1176,6 +1292,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1176
1292
  residentialArea?: string | null | undefined;
1177
1293
  street?: string | null | undefined;
1178
1294
  zipCode?: string | null | undefined;
1295
+ } | {
1296
+ firstname: string;
1297
+ surname: string;
1298
+ middlename?: string | null | undefined;
1179
1299
  } | {
1180
1300
  country: string;
1181
1301
  district: string;
@@ -1198,13 +1318,13 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1198
1318
  option: string;
1199
1319
  filename: string;
1200
1320
  originalFilename: string;
1201
- }[] | [string, string] | undefined> | undefined;
1321
+ }[] | [string, string] | null | undefined> | undefined;
1202
1322
  originalActionId?: string | undefined;
1203
1323
  keepAssignment?: boolean | undefined;
1204
1324
  }>;
1205
1325
  export type ValidateActionInput = z.infer<typeof ValidateActionInput>;
1206
1326
  export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1207
- eventId: z.ZodBranded<z.ZodString, "UUID">;
1327
+ eventId: z.ZodString;
1208
1328
  transactionId: z.ZodString;
1209
1329
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1210
1330
  filename: z.ZodString;
@@ -1319,7 +1439,19 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1319
1439
  addressLine2?: string | null | undefined;
1320
1440
  addressLine3?: string | null | undefined;
1321
1441
  postcodeOrZip?: string | null | undefined;
1322
- }>]>>>;
1442
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1443
+ firstname: z.ZodString;
1444
+ surname: z.ZodString;
1445
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1446
+ }, "strip", z.ZodTypeAny, {
1447
+ firstname: string;
1448
+ surname: string;
1449
+ middlename?: string | null | undefined;
1450
+ }, {
1451
+ firstname: string;
1452
+ surname: string;
1453
+ middlename?: string | null | undefined;
1454
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1323
1455
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1324
1456
  filename: z.ZodString;
1325
1457
  originalFilename: z.ZodString;
@@ -1433,8 +1565,20 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1433
1565
  addressLine2?: string | null | undefined;
1434
1566
  addressLine3?: string | null | undefined;
1435
1567
  postcodeOrZip?: string | null | undefined;
1436
- }>]>>>;
1437
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1568
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1569
+ firstname: z.ZodString;
1570
+ surname: z.ZodString;
1571
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1572
+ }, "strip", z.ZodTypeAny, {
1573
+ firstname: string;
1574
+ surname: string;
1575
+ middlename?: string | null | undefined;
1576
+ }, {
1577
+ firstname: string;
1578
+ surname: string;
1579
+ middlename?: string | null | undefined;
1580
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1581
+ originalActionId: z.ZodOptional<z.ZodString>;
1438
1582
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1439
1583
  }, {
1440
1584
  type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
@@ -1456,6 +1600,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1456
1600
  residentialArea?: string | null | undefined;
1457
1601
  street?: string | null | undefined;
1458
1602
  zipCode?: string | null | undefined;
1603
+ } | {
1604
+ firstname: string;
1605
+ surname: string;
1606
+ middlename?: string | null | undefined;
1459
1607
  } | {
1460
1608
  country: string;
1461
1609
  district: string;
@@ -1478,8 +1626,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1478
1626
  option: string;
1479
1627
  filename: string;
1480
1628
  originalFilename: string;
1481
- }[] | [string, string] | undefined>;
1482
- eventId: string & z.BRAND<"UUID">;
1629
+ }[] | [string, string] | null | undefined>;
1630
+ eventId: string;
1483
1631
  annotation?: Record<string, string | number | boolean | {
1484
1632
  type: string;
1485
1633
  filename: string;
@@ -1495,6 +1643,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1495
1643
  residentialArea?: string | null | undefined;
1496
1644
  street?: string | null | undefined;
1497
1645
  zipCode?: string | null | undefined;
1646
+ } | {
1647
+ firstname: string;
1648
+ surname: string;
1649
+ middlename?: string | null | undefined;
1498
1650
  } | {
1499
1651
  country: string;
1500
1652
  district: string;
@@ -1517,8 +1669,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1517
1669
  option: string;
1518
1670
  filename: string;
1519
1671
  originalFilename: string;
1520
- }[] | [string, string] | undefined> | undefined;
1521
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
1672
+ }[] | [string, string] | null | undefined> | undefined;
1673
+ originalActionId?: string | undefined;
1522
1674
  keepAssignment?: boolean | undefined;
1523
1675
  }, {
1524
1676
  transactionId: string;
@@ -1539,6 +1691,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1539
1691
  residentialArea?: string | null | undefined;
1540
1692
  street?: string | null | undefined;
1541
1693
  zipCode?: string | null | undefined;
1694
+ } | {
1695
+ firstname: string;
1696
+ surname: string;
1697
+ middlename?: string | null | undefined;
1542
1698
  } | {
1543
1699
  country: string;
1544
1700
  district: string;
@@ -1561,7 +1717,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1561
1717
  option: string;
1562
1718
  filename: string;
1563
1719
  originalFilename: string;
1564
- }[] | [string, string] | undefined> | undefined;
1720
+ }[] | [string, string] | null | undefined> | undefined;
1565
1721
  annotation?: Record<string, string | number | boolean | {
1566
1722
  type: string;
1567
1723
  filename: string;
@@ -1577,6 +1733,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1577
1733
  residentialArea?: string | null | undefined;
1578
1734
  street?: string | null | undefined;
1579
1735
  zipCode?: string | null | undefined;
1736
+ } | {
1737
+ firstname: string;
1738
+ surname: string;
1739
+ middlename?: string | null | undefined;
1580
1740
  } | {
1581
1741
  country: string;
1582
1742
  district: string;
@@ -1599,13 +1759,13 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1599
1759
  option: string;
1600
1760
  filename: string;
1601
1761
  originalFilename: string;
1602
- }[] | [string, string] | undefined> | undefined;
1762
+ }[] | [string, string] | null | undefined> | undefined;
1603
1763
  originalActionId?: string | undefined;
1604
1764
  keepAssignment?: boolean | undefined;
1605
1765
  }>;
1606
1766
  export type NotifyActionInput = z.infer<typeof NotifyActionInput>;
1607
1767
  export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1608
- eventId: z.ZodBranded<z.ZodString, "UUID">;
1768
+ eventId: z.ZodString;
1609
1769
  transactionId: z.ZodString;
1610
1770
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1611
1771
  filename: z.ZodString;
@@ -1720,7 +1880,19 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1720
1880
  addressLine2?: string | null | undefined;
1721
1881
  addressLine3?: string | null | undefined;
1722
1882
  postcodeOrZip?: string | null | undefined;
1723
- }>]>>>;
1883
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1884
+ firstname: z.ZodString;
1885
+ surname: z.ZodString;
1886
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1887
+ }, "strip", z.ZodTypeAny, {
1888
+ firstname: string;
1889
+ surname: string;
1890
+ middlename?: string | null | undefined;
1891
+ }, {
1892
+ firstname: string;
1893
+ surname: string;
1894
+ middlename?: string | null | undefined;
1895
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1724
1896
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1725
1897
  filename: z.ZodString;
1726
1898
  originalFilename: z.ZodString;
@@ -1834,8 +2006,20 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1834
2006
  addressLine2?: string | null | undefined;
1835
2007
  addressLine3?: string | null | undefined;
1836
2008
  postcodeOrZip?: string | null | undefined;
1837
- }>]>>>;
1838
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2009
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2010
+ firstname: z.ZodString;
2011
+ surname: z.ZodString;
2012
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2013
+ }, "strip", z.ZodTypeAny, {
2014
+ firstname: string;
2015
+ surname: string;
2016
+ middlename?: string | null | undefined;
2017
+ }, {
2018
+ firstname: string;
2019
+ surname: string;
2020
+ middlename?: string | null | undefined;
2021
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2022
+ originalActionId: z.ZodOptional<z.ZodString>;
1839
2023
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1840
2024
  }, {
1841
2025
  type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
@@ -1857,6 +2041,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1857
2041
  residentialArea?: string | null | undefined;
1858
2042
  street?: string | null | undefined;
1859
2043
  zipCode?: string | null | undefined;
2044
+ } | {
2045
+ firstname: string;
2046
+ surname: string;
2047
+ middlename?: string | null | undefined;
1860
2048
  } | {
1861
2049
  country: string;
1862
2050
  district: string;
@@ -1879,8 +2067,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1879
2067
  option: string;
1880
2068
  filename: string;
1881
2069
  originalFilename: string;
1882
- }[] | [string, string] | undefined>;
1883
- eventId: string & z.BRAND<"UUID">;
2070
+ }[] | [string, string] | null | undefined>;
2071
+ eventId: string;
1884
2072
  annotation?: Record<string, string | number | boolean | {
1885
2073
  type: string;
1886
2074
  filename: string;
@@ -1896,6 +2084,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1896
2084
  residentialArea?: string | null | undefined;
1897
2085
  street?: string | null | undefined;
1898
2086
  zipCode?: string | null | undefined;
2087
+ } | {
2088
+ firstname: string;
2089
+ surname: string;
2090
+ middlename?: string | null | undefined;
1899
2091
  } | {
1900
2092
  country: string;
1901
2093
  district: string;
@@ -1918,8 +2110,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1918
2110
  option: string;
1919
2111
  filename: string;
1920
2112
  originalFilename: string;
1921
- }[] | [string, string] | undefined> | undefined;
1922
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2113
+ }[] | [string, string] | null | undefined> | undefined;
2114
+ originalActionId?: string | undefined;
1923
2115
  keepAssignment?: boolean | undefined;
1924
2116
  }, {
1925
2117
  transactionId: string;
@@ -1940,6 +2132,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1940
2132
  residentialArea?: string | null | undefined;
1941
2133
  street?: string | null | undefined;
1942
2134
  zipCode?: string | null | undefined;
2135
+ } | {
2136
+ firstname: string;
2137
+ surname: string;
2138
+ middlename?: string | null | undefined;
1943
2139
  } | {
1944
2140
  country: string;
1945
2141
  district: string;
@@ -1962,7 +2158,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1962
2158
  option: string;
1963
2159
  filename: string;
1964
2160
  originalFilename: string;
1965
- }[] | [string, string] | undefined> | undefined;
2161
+ }[] | [string, string] | null | undefined> | undefined;
1966
2162
  annotation?: Record<string, string | number | boolean | {
1967
2163
  type: string;
1968
2164
  filename: string;
@@ -1978,6 +2174,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1978
2174
  residentialArea?: string | null | undefined;
1979
2175
  street?: string | null | undefined;
1980
2176
  zipCode?: string | null | undefined;
2177
+ } | {
2178
+ firstname: string;
2179
+ surname: string;
2180
+ middlename?: string | null | undefined;
1981
2181
  } | {
1982
2182
  country: string;
1983
2183
  district: string;
@@ -2000,12 +2200,12 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2000
2200
  option: string;
2001
2201
  filename: string;
2002
2202
  originalFilename: string;
2003
- }[] | [string, string] | undefined> | undefined;
2203
+ }[] | [string, string] | null | undefined> | undefined;
2004
2204
  originalActionId?: string | undefined;
2005
2205
  keepAssignment?: boolean | undefined;
2006
2206
  }>;
2007
2207
  export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.extendShape<{
2008
- eventId: z.ZodBranded<z.ZodString, "UUID">;
2208
+ eventId: z.ZodString;
2009
2209
  transactionId: z.ZodString;
2010
2210
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2011
2211
  filename: z.ZodString;
@@ -2120,7 +2320,19 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2120
2320
  addressLine2?: string | null | undefined;
2121
2321
  addressLine3?: string | null | undefined;
2122
2322
  postcodeOrZip?: string | null | undefined;
2123
- }>]>>>;
2323
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2324
+ firstname: z.ZodString;
2325
+ surname: z.ZodString;
2326
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2327
+ }, "strip", z.ZodTypeAny, {
2328
+ firstname: string;
2329
+ surname: string;
2330
+ middlename?: string | null | undefined;
2331
+ }, {
2332
+ firstname: string;
2333
+ surname: string;
2334
+ middlename?: string | null | undefined;
2335
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2124
2336
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2125
2337
  filename: z.ZodString;
2126
2338
  originalFilename: z.ZodString;
@@ -2234,8 +2446,20 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2234
2446
  addressLine2?: string | null | undefined;
2235
2447
  addressLine3?: string | null | undefined;
2236
2448
  postcodeOrZip?: string | null | undefined;
2237
- }>]>>>;
2238
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2449
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2450
+ firstname: z.ZodString;
2451
+ surname: z.ZodString;
2452
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2453
+ }, "strip", z.ZodTypeAny, {
2454
+ firstname: string;
2455
+ surname: string;
2456
+ middlename?: string | null | undefined;
2457
+ }, {
2458
+ firstname: string;
2459
+ surname: string;
2460
+ middlename?: string | null | undefined;
2461
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2462
+ originalActionId: z.ZodOptional<z.ZodString>;
2239
2463
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2240
2464
  }, {
2241
2465
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
@@ -2257,6 +2481,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2257
2481
  residentialArea?: string | null | undefined;
2258
2482
  street?: string | null | undefined;
2259
2483
  zipCode?: string | null | undefined;
2484
+ } | {
2485
+ firstname: string;
2486
+ surname: string;
2487
+ middlename?: string | null | undefined;
2260
2488
  } | {
2261
2489
  country: string;
2262
2490
  district: string;
@@ -2279,8 +2507,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2279
2507
  option: string;
2280
2508
  filename: string;
2281
2509
  originalFilename: string;
2282
- }[] | [string, string] | undefined>;
2283
- eventId: string & z.BRAND<"UUID">;
2510
+ }[] | [string, string] | null | undefined>;
2511
+ eventId: string;
2284
2512
  annotation?: Record<string, string | number | boolean | {
2285
2513
  type: string;
2286
2514
  filename: string;
@@ -2296,6 +2524,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2296
2524
  residentialArea?: string | null | undefined;
2297
2525
  street?: string | null | undefined;
2298
2526
  zipCode?: string | null | undefined;
2527
+ } | {
2528
+ firstname: string;
2529
+ surname: string;
2530
+ middlename?: string | null | undefined;
2299
2531
  } | {
2300
2532
  country: string;
2301
2533
  district: string;
@@ -2318,8 +2550,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2318
2550
  option: string;
2319
2551
  filename: string;
2320
2552
  originalFilename: string;
2321
- }[] | [string, string] | undefined> | undefined;
2322
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2553
+ }[] | [string, string] | null | undefined> | undefined;
2554
+ originalActionId?: string | undefined;
2323
2555
  keepAssignment?: boolean | undefined;
2324
2556
  }, {
2325
2557
  transactionId: string;
@@ -2340,6 +2572,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2340
2572
  residentialArea?: string | null | undefined;
2341
2573
  street?: string | null | undefined;
2342
2574
  zipCode?: string | null | undefined;
2575
+ } | {
2576
+ firstname: string;
2577
+ surname: string;
2578
+ middlename?: string | null | undefined;
2343
2579
  } | {
2344
2580
  country: string;
2345
2581
  district: string;
@@ -2362,7 +2598,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2362
2598
  option: string;
2363
2599
  filename: string;
2364
2600
  originalFilename: string;
2365
- }[] | [string, string] | undefined> | undefined;
2601
+ }[] | [string, string] | null | undefined> | undefined;
2366
2602
  annotation?: Record<string, string | number | boolean | {
2367
2603
  type: string;
2368
2604
  filename: string;
@@ -2378,6 +2614,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2378
2614
  residentialArea?: string | null | undefined;
2379
2615
  street?: string | null | undefined;
2380
2616
  zipCode?: string | null | undefined;
2617
+ } | {
2618
+ firstname: string;
2619
+ surname: string;
2620
+ middlename?: string | null | undefined;
2381
2621
  } | {
2382
2622
  country: string;
2383
2623
  district: string;
@@ -2400,13 +2640,13 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2400
2640
  option: string;
2401
2641
  filename: string;
2402
2642
  originalFilename: string;
2403
- }[] | [string, string] | undefined> | undefined;
2643
+ }[] | [string, string] | null | undefined> | undefined;
2404
2644
  originalActionId?: string | undefined;
2405
2645
  keepAssignment?: boolean | undefined;
2406
2646
  }>;
2407
2647
  export type DeclareActionInput = z.infer<typeof DeclareActionInput>;
2408
2648
  export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.extendShape<{
2409
- eventId: z.ZodBranded<z.ZodString, "UUID">;
2649
+ eventId: z.ZodString;
2410
2650
  transactionId: z.ZodString;
2411
2651
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2412
2652
  filename: z.ZodString;
@@ -2521,7 +2761,19 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2521
2761
  addressLine2?: string | null | undefined;
2522
2762
  addressLine3?: string | null | undefined;
2523
2763
  postcodeOrZip?: string | null | undefined;
2524
- }>]>>>;
2764
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2765
+ firstname: z.ZodString;
2766
+ surname: z.ZodString;
2767
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2768
+ }, "strip", z.ZodTypeAny, {
2769
+ firstname: string;
2770
+ surname: string;
2771
+ middlename?: string | null | undefined;
2772
+ }, {
2773
+ firstname: string;
2774
+ surname: string;
2775
+ middlename?: string | null | undefined;
2776
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2525
2777
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2526
2778
  filename: z.ZodString;
2527
2779
  originalFilename: z.ZodString;
@@ -2635,8 +2887,20 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2635
2887
  addressLine2?: string | null | undefined;
2636
2888
  addressLine3?: string | null | undefined;
2637
2889
  postcodeOrZip?: string | null | undefined;
2638
- }>]>>>;
2639
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2890
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2891
+ firstname: z.ZodString;
2892
+ surname: z.ZodString;
2893
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2894
+ }, "strip", z.ZodTypeAny, {
2895
+ firstname: string;
2896
+ surname: string;
2897
+ middlename?: string | null | undefined;
2898
+ }, {
2899
+ firstname: string;
2900
+ surname: string;
2901
+ middlename?: string | null | undefined;
2902
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2903
+ originalActionId: z.ZodOptional<z.ZodString>;
2640
2904
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2641
2905
  }, {
2642
2906
  type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
@@ -2672,6 +2936,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2672
2936
  residentialArea?: string | null | undefined;
2673
2937
  street?: string | null | undefined;
2674
2938
  zipCode?: string | null | undefined;
2939
+ } | {
2940
+ firstname: string;
2941
+ surname: string;
2942
+ middlename?: string | null | undefined;
2675
2943
  } | {
2676
2944
  country: string;
2677
2945
  district: string;
@@ -2694,8 +2962,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2694
2962
  option: string;
2695
2963
  filename: string;
2696
2964
  originalFilename: string;
2697
- }[] | [string, string] | undefined>;
2698
- eventId: string & z.BRAND<"UUID">;
2965
+ }[] | [string, string] | null | undefined>;
2966
+ eventId: string;
2699
2967
  annotation?: Record<string, string | number | boolean | {
2700
2968
  type: string;
2701
2969
  filename: string;
@@ -2711,6 +2979,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2711
2979
  residentialArea?: string | null | undefined;
2712
2980
  street?: string | null | undefined;
2713
2981
  zipCode?: string | null | undefined;
2982
+ } | {
2983
+ firstname: string;
2984
+ surname: string;
2985
+ middlename?: string | null | undefined;
2714
2986
  } | {
2715
2987
  country: string;
2716
2988
  district: string;
@@ -2733,8 +3005,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2733
3005
  option: string;
2734
3006
  filename: string;
2735
3007
  originalFilename: string;
2736
- }[] | [string, string] | undefined> | undefined;
2737
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3008
+ }[] | [string, string] | null | undefined> | undefined;
3009
+ originalActionId?: string | undefined;
2738
3010
  keepAssignment?: boolean | undefined;
2739
3011
  }, {
2740
3012
  reason: {
@@ -2759,6 +3031,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2759
3031
  residentialArea?: string | null | undefined;
2760
3032
  street?: string | null | undefined;
2761
3033
  zipCode?: string | null | undefined;
3034
+ } | {
3035
+ firstname: string;
3036
+ surname: string;
3037
+ middlename?: string | null | undefined;
2762
3038
  } | {
2763
3039
  country: string;
2764
3040
  district: string;
@@ -2781,7 +3057,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2781
3057
  option: string;
2782
3058
  filename: string;
2783
3059
  originalFilename: string;
2784
- }[] | [string, string] | undefined> | undefined;
3060
+ }[] | [string, string] | null | undefined> | undefined;
2785
3061
  annotation?: Record<string, string | number | boolean | {
2786
3062
  type: string;
2787
3063
  filename: string;
@@ -2797,6 +3073,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2797
3073
  residentialArea?: string | null | undefined;
2798
3074
  street?: string | null | undefined;
2799
3075
  zipCode?: string | null | undefined;
3076
+ } | {
3077
+ firstname: string;
3078
+ surname: string;
3079
+ middlename?: string | null | undefined;
2800
3080
  } | {
2801
3081
  country: string;
2802
3082
  district: string;
@@ -2819,13 +3099,13 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2819
3099
  option: string;
2820
3100
  filename: string;
2821
3101
  originalFilename: string;
2822
- }[] | [string, string] | undefined> | undefined;
3102
+ }[] | [string, string] | null | undefined> | undefined;
2823
3103
  originalActionId?: string | undefined;
2824
3104
  keepAssignment?: boolean | undefined;
2825
3105
  }>;
2826
3106
  export type RejectDeclarationActionInput = z.infer<typeof RejectDeclarationActionInput>;
2827
3107
  export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.extendShape<{
2828
- eventId: z.ZodBranded<z.ZodString, "UUID">;
3108
+ eventId: z.ZodString;
2829
3109
  transactionId: z.ZodString;
2830
3110
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2831
3111
  filename: z.ZodString;
@@ -2940,7 +3220,19 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
2940
3220
  addressLine2?: string | null | undefined;
2941
3221
  addressLine3?: string | null | undefined;
2942
3222
  postcodeOrZip?: string | null | undefined;
2943
- }>]>>>;
3223
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3224
+ firstname: z.ZodString;
3225
+ surname: z.ZodString;
3226
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3227
+ }, "strip", z.ZodTypeAny, {
3228
+ firstname: string;
3229
+ surname: string;
3230
+ middlename?: string | null | undefined;
3231
+ }, {
3232
+ firstname: string;
3233
+ surname: string;
3234
+ middlename?: string | null | undefined;
3235
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2944
3236
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2945
3237
  filename: z.ZodString;
2946
3238
  originalFilename: z.ZodString;
@@ -3054,8 +3346,20 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3054
3346
  addressLine2?: string | null | undefined;
3055
3347
  addressLine3?: string | null | undefined;
3056
3348
  postcodeOrZip?: string | null | undefined;
3057
- }>]>>>;
3058
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
3349
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3350
+ firstname: z.ZodString;
3351
+ surname: z.ZodString;
3352
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3353
+ }, "strip", z.ZodTypeAny, {
3354
+ firstname: string;
3355
+ surname: string;
3356
+ middlename?: string | null | undefined;
3357
+ }, {
3358
+ firstname: string;
3359
+ surname: string;
3360
+ middlename?: string | null | undefined;
3361
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3362
+ originalActionId: z.ZodOptional<z.ZodString>;
3059
3363
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3060
3364
  }, {
3061
3365
  type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
@@ -3077,6 +3381,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3077
3381
  residentialArea?: string | null | undefined;
3078
3382
  street?: string | null | undefined;
3079
3383
  zipCode?: string | null | undefined;
3384
+ } | {
3385
+ firstname: string;
3386
+ surname: string;
3387
+ middlename?: string | null | undefined;
3080
3388
  } | {
3081
3389
  country: string;
3082
3390
  district: string;
@@ -3099,8 +3407,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3099
3407
  option: string;
3100
3408
  filename: string;
3101
3409
  originalFilename: string;
3102
- }[] | [string, string] | undefined>;
3103
- eventId: string & z.BRAND<"UUID">;
3410
+ }[] | [string, string] | null | undefined>;
3411
+ eventId: string;
3104
3412
  annotation?: Record<string, string | number | boolean | {
3105
3413
  type: string;
3106
3414
  filename: string;
@@ -3116,6 +3424,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3116
3424
  residentialArea?: string | null | undefined;
3117
3425
  street?: string | null | undefined;
3118
3426
  zipCode?: string | null | undefined;
3427
+ } | {
3428
+ firstname: string;
3429
+ surname: string;
3430
+ middlename?: string | null | undefined;
3119
3431
  } | {
3120
3432
  country: string;
3121
3433
  district: string;
@@ -3138,8 +3450,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3138
3450
  option: string;
3139
3451
  filename: string;
3140
3452
  originalFilename: string;
3141
- }[] | [string, string] | undefined> | undefined;
3142
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3453
+ }[] | [string, string] | null | undefined> | undefined;
3454
+ originalActionId?: string | undefined;
3143
3455
  keepAssignment?: boolean | undefined;
3144
3456
  }, {
3145
3457
  transactionId: string;
@@ -3160,6 +3472,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3160
3472
  residentialArea?: string | null | undefined;
3161
3473
  street?: string | null | undefined;
3162
3474
  zipCode?: string | null | undefined;
3475
+ } | {
3476
+ firstname: string;
3477
+ surname: string;
3478
+ middlename?: string | null | undefined;
3163
3479
  } | {
3164
3480
  country: string;
3165
3481
  district: string;
@@ -3182,7 +3498,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3182
3498
  option: string;
3183
3499
  filename: string;
3184
3500
  originalFilename: string;
3185
- }[] | [string, string] | undefined> | undefined;
3501
+ }[] | [string, string] | null | undefined> | undefined;
3186
3502
  annotation?: Record<string, string | number | boolean | {
3187
3503
  type: string;
3188
3504
  filename: string;
@@ -3198,6 +3514,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3198
3514
  residentialArea?: string | null | undefined;
3199
3515
  street?: string | null | undefined;
3200
3516
  zipCode?: string | null | undefined;
3517
+ } | {
3518
+ firstname: string;
3519
+ surname: string;
3520
+ middlename?: string | null | undefined;
3201
3521
  } | {
3202
3522
  country: string;
3203
3523
  district: string;
@@ -3220,13 +3540,13 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3220
3540
  option: string;
3221
3541
  filename: string;
3222
3542
  originalFilename: string;
3223
- }[] | [string, string] | undefined> | undefined;
3543
+ }[] | [string, string] | null | undefined> | undefined;
3224
3544
  originalActionId?: string | undefined;
3225
3545
  keepAssignment?: boolean | undefined;
3226
3546
  }>;
3227
3547
  export type MarkedAsDuplicateActionInput = z.infer<typeof MarkedAsDuplicateActionInput>;
3228
3548
  export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3229
- eventId: z.ZodBranded<z.ZodString, "UUID">;
3549
+ eventId: z.ZodString;
3230
3550
  transactionId: z.ZodString;
3231
3551
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3232
3552
  filename: z.ZodString;
@@ -3341,7 +3661,19 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3341
3661
  addressLine2?: string | null | undefined;
3342
3662
  addressLine3?: string | null | undefined;
3343
3663
  postcodeOrZip?: string | null | undefined;
3344
- }>]>>>;
3664
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3665
+ firstname: z.ZodString;
3666
+ surname: z.ZodString;
3667
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3668
+ }, "strip", z.ZodTypeAny, {
3669
+ firstname: string;
3670
+ surname: string;
3671
+ middlename?: string | null | undefined;
3672
+ }, {
3673
+ firstname: string;
3674
+ surname: string;
3675
+ middlename?: string | null | undefined;
3676
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3345
3677
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3346
3678
  filename: z.ZodString;
3347
3679
  originalFilename: z.ZodString;
@@ -3455,8 +3787,20 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3455
3787
  addressLine2?: string | null | undefined;
3456
3788
  addressLine3?: string | null | undefined;
3457
3789
  postcodeOrZip?: string | null | undefined;
3458
- }>]>>>;
3459
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
3790
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3791
+ firstname: z.ZodString;
3792
+ surname: z.ZodString;
3793
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3794
+ }, "strip", z.ZodTypeAny, {
3795
+ firstname: string;
3796
+ surname: string;
3797
+ middlename?: string | null | undefined;
3798
+ }, {
3799
+ firstname: string;
3800
+ surname: string;
3801
+ middlename?: string | null | undefined;
3802
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3803
+ originalActionId: z.ZodOptional<z.ZodString>;
3460
3804
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3461
3805
  }, {
3462
3806
  type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
@@ -3492,6 +3836,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3492
3836
  residentialArea?: string | null | undefined;
3493
3837
  street?: string | null | undefined;
3494
3838
  zipCode?: string | null | undefined;
3839
+ } | {
3840
+ firstname: string;
3841
+ surname: string;
3842
+ middlename?: string | null | undefined;
3495
3843
  } | {
3496
3844
  country: string;
3497
3845
  district: string;
@@ -3514,8 +3862,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3514
3862
  option: string;
3515
3863
  filename: string;
3516
3864
  originalFilename: string;
3517
- }[] | [string, string] | undefined>;
3518
- eventId: string & z.BRAND<"UUID">;
3865
+ }[] | [string, string] | null | undefined>;
3866
+ eventId: string;
3519
3867
  annotation?: Record<string, string | number | boolean | {
3520
3868
  type: string;
3521
3869
  filename: string;
@@ -3531,6 +3879,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3531
3879
  residentialArea?: string | null | undefined;
3532
3880
  street?: string | null | undefined;
3533
3881
  zipCode?: string | null | undefined;
3882
+ } | {
3883
+ firstname: string;
3884
+ surname: string;
3885
+ middlename?: string | null | undefined;
3534
3886
  } | {
3535
3887
  country: string;
3536
3888
  district: string;
@@ -3553,8 +3905,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3553
3905
  option: string;
3554
3906
  filename: string;
3555
3907
  originalFilename: string;
3556
- }[] | [string, string] | undefined> | undefined;
3557
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3908
+ }[] | [string, string] | null | undefined> | undefined;
3909
+ originalActionId?: string | undefined;
3558
3910
  keepAssignment?: boolean | undefined;
3559
3911
  }, {
3560
3912
  reason: {
@@ -3579,6 +3931,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3579
3931
  residentialArea?: string | null | undefined;
3580
3932
  street?: string | null | undefined;
3581
3933
  zipCode?: string | null | undefined;
3934
+ } | {
3935
+ firstname: string;
3936
+ surname: string;
3937
+ middlename?: string | null | undefined;
3582
3938
  } | {
3583
3939
  country: string;
3584
3940
  district: string;
@@ -3601,7 +3957,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3601
3957
  option: string;
3602
3958
  filename: string;
3603
3959
  originalFilename: string;
3604
- }[] | [string, string] | undefined> | undefined;
3960
+ }[] | [string, string] | null | undefined> | undefined;
3605
3961
  annotation?: Record<string, string | number | boolean | {
3606
3962
  type: string;
3607
3963
  filename: string;
@@ -3617,6 +3973,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3617
3973
  residentialArea?: string | null | undefined;
3618
3974
  street?: string | null | undefined;
3619
3975
  zipCode?: string | null | undefined;
3976
+ } | {
3977
+ firstname: string;
3978
+ surname: string;
3979
+ middlename?: string | null | undefined;
3620
3980
  } | {
3621
3981
  country: string;
3622
3982
  district: string;
@@ -3639,13 +3999,13 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3639
3999
  option: string;
3640
4000
  filename: string;
3641
4001
  originalFilename: string;
3642
- }[] | [string, string] | undefined> | undefined;
4002
+ }[] | [string, string] | null | undefined> | undefined;
3643
4003
  originalActionId?: string | undefined;
3644
4004
  keepAssignment?: boolean | undefined;
3645
4005
  }>;
3646
4006
  export type ArchiveActionInput = z.infer<typeof ArchiveActionInput>;
3647
4007
  export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3648
- eventId: z.ZodBranded<z.ZodString, "UUID">;
4008
+ eventId: z.ZodString;
3649
4009
  transactionId: z.ZodString;
3650
4010
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3651
4011
  filename: z.ZodString;
@@ -3760,7 +4120,19 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3760
4120
  addressLine2?: string | null | undefined;
3761
4121
  addressLine3?: string | null | undefined;
3762
4122
  postcodeOrZip?: string | null | undefined;
3763
- }>]>>>;
4123
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4124
+ firstname: z.ZodString;
4125
+ surname: z.ZodString;
4126
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4127
+ }, "strip", z.ZodTypeAny, {
4128
+ firstname: string;
4129
+ surname: string;
4130
+ middlename?: string | null | undefined;
4131
+ }, {
4132
+ firstname: string;
4133
+ surname: string;
4134
+ middlename?: string | null | undefined;
4135
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3764
4136
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3765
4137
  filename: z.ZodString;
3766
4138
  originalFilename: z.ZodString;
@@ -3874,8 +4246,20 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3874
4246
  addressLine2?: string | null | undefined;
3875
4247
  addressLine3?: string | null | undefined;
3876
4248
  postcodeOrZip?: string | null | undefined;
3877
- }>]>>>;
3878
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
4249
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4250
+ firstname: z.ZodString;
4251
+ surname: z.ZodString;
4252
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4253
+ }, "strip", z.ZodTypeAny, {
4254
+ firstname: string;
4255
+ surname: string;
4256
+ middlename?: string | null | undefined;
4257
+ }, {
4258
+ firstname: string;
4259
+ surname: string;
4260
+ middlename?: string | null | undefined;
4261
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4262
+ originalActionId: z.ZodOptional<z.ZodString>;
3879
4263
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3880
4264
  }, {
3881
4265
  type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
@@ -3898,6 +4282,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3898
4282
  residentialArea?: string | null | undefined;
3899
4283
  street?: string | null | undefined;
3900
4284
  zipCode?: string | null | undefined;
4285
+ } | {
4286
+ firstname: string;
4287
+ surname: string;
4288
+ middlename?: string | null | undefined;
3901
4289
  } | {
3902
4290
  country: string;
3903
4291
  district: string;
@@ -3920,9 +4308,9 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3920
4308
  option: string;
3921
4309
  filename: string;
3922
4310
  originalFilename: string;
3923
- }[] | [string, string] | undefined>;
4311
+ }[] | [string, string] | null | undefined>;
3924
4312
  assignedTo: string;
3925
- eventId: string & z.BRAND<"UUID">;
4313
+ eventId: string;
3926
4314
  annotation?: Record<string, string | number | boolean | {
3927
4315
  type: string;
3928
4316
  filename: string;
@@ -3938,6 +4326,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3938
4326
  residentialArea?: string | null | undefined;
3939
4327
  street?: string | null | undefined;
3940
4328
  zipCode?: string | null | undefined;
4329
+ } | {
4330
+ firstname: string;
4331
+ surname: string;
4332
+ middlename?: string | null | undefined;
3941
4333
  } | {
3942
4334
  country: string;
3943
4335
  district: string;
@@ -3960,8 +4352,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3960
4352
  option: string;
3961
4353
  filename: string;
3962
4354
  originalFilename: string;
3963
- }[] | [string, string] | undefined> | undefined;
3964
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
4355
+ }[] | [string, string] | null | undefined> | undefined;
4356
+ originalActionId?: string | undefined;
3965
4357
  keepAssignment?: boolean | undefined;
3966
4358
  }, {
3967
4359
  transactionId: string;
@@ -3983,6 +4375,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3983
4375
  residentialArea?: string | null | undefined;
3984
4376
  street?: string | null | undefined;
3985
4377
  zipCode?: string | null | undefined;
4378
+ } | {
4379
+ firstname: string;
4380
+ surname: string;
4381
+ middlename?: string | null | undefined;
3986
4382
  } | {
3987
4383
  country: string;
3988
4384
  district: string;
@@ -4005,7 +4401,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4005
4401
  option: string;
4006
4402
  filename: string;
4007
4403
  originalFilename: string;
4008
- }[] | [string, string] | undefined> | undefined;
4404
+ }[] | [string, string] | null | undefined> | undefined;
4009
4405
  annotation?: Record<string, string | number | boolean | {
4010
4406
  type: string;
4011
4407
  filename: string;
@@ -4021,6 +4417,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4021
4417
  residentialArea?: string | null | undefined;
4022
4418
  street?: string | null | undefined;
4023
4419
  zipCode?: string | null | undefined;
4420
+ } | {
4421
+ firstname: string;
4422
+ surname: string;
4423
+ middlename?: string | null | undefined;
4024
4424
  } | {
4025
4425
  country: string;
4026
4426
  district: string;
@@ -4043,13 +4443,13 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4043
4443
  option: string;
4044
4444
  filename: string;
4045
4445
  originalFilename: string;
4046
- }[] | [string, string] | undefined> | undefined;
4446
+ }[] | [string, string] | null | undefined> | undefined;
4047
4447
  originalActionId?: string | undefined;
4048
4448
  keepAssignment?: boolean | undefined;
4049
4449
  }>;
4050
4450
  export type AssignActionInput = z.infer<typeof AssignActionInput>;
4051
4451
  export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4052
- eventId: z.ZodBranded<z.ZodString, "UUID">;
4452
+ eventId: z.ZodString;
4053
4453
  transactionId: z.ZodString;
4054
4454
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4055
4455
  filename: z.ZodString;
@@ -4164,7 +4564,19 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4164
4564
  addressLine2?: string | null | undefined;
4165
4565
  addressLine3?: string | null | undefined;
4166
4566
  postcodeOrZip?: string | null | undefined;
4167
- }>]>>>;
4567
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4568
+ firstname: z.ZodString;
4569
+ surname: z.ZodString;
4570
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4571
+ }, "strip", z.ZodTypeAny, {
4572
+ firstname: string;
4573
+ surname: string;
4574
+ middlename?: string | null | undefined;
4575
+ }, {
4576
+ firstname: string;
4577
+ surname: string;
4578
+ middlename?: string | null | undefined;
4579
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4168
4580
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4169
4581
  filename: z.ZodString;
4170
4582
  originalFilename: z.ZodString;
@@ -4278,8 +4690,20 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4278
4690
  addressLine2?: string | null | undefined;
4279
4691
  addressLine3?: string | null | undefined;
4280
4692
  postcodeOrZip?: string | null | undefined;
4281
- }>]>>>;
4282
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
4693
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4694
+ firstname: z.ZodString;
4695
+ surname: z.ZodString;
4696
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4697
+ }, "strip", z.ZodTypeAny, {
4698
+ firstname: string;
4699
+ surname: string;
4700
+ middlename?: string | null | undefined;
4701
+ }, {
4702
+ firstname: string;
4703
+ surname: string;
4704
+ middlename?: string | null | undefined;
4705
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4706
+ originalActionId: z.ZodOptional<z.ZodString>;
4283
4707
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4284
4708
  }, {
4285
4709
  type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
@@ -4302,6 +4726,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4302
4726
  residentialArea?: string | null | undefined;
4303
4727
  street?: string | null | undefined;
4304
4728
  zipCode?: string | null | undefined;
4729
+ } | {
4730
+ firstname: string;
4731
+ surname: string;
4732
+ middlename?: string | null | undefined;
4305
4733
  } | {
4306
4734
  country: string;
4307
4735
  district: string;
@@ -4324,9 +4752,9 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4324
4752
  option: string;
4325
4753
  filename: string;
4326
4754
  originalFilename: string;
4327
- }[] | [string, string] | undefined>;
4755
+ }[] | [string, string] | null | undefined>;
4328
4756
  assignedTo: null;
4329
- eventId: string & z.BRAND<"UUID">;
4757
+ eventId: string;
4330
4758
  annotation?: Record<string, string | number | boolean | {
4331
4759
  type: string;
4332
4760
  filename: string;
@@ -4342,6 +4770,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4342
4770
  residentialArea?: string | null | undefined;
4343
4771
  street?: string | null | undefined;
4344
4772
  zipCode?: string | null | undefined;
4773
+ } | {
4774
+ firstname: string;
4775
+ surname: string;
4776
+ middlename?: string | null | undefined;
4345
4777
  } | {
4346
4778
  country: string;
4347
4779
  district: string;
@@ -4364,8 +4796,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4364
4796
  option: string;
4365
4797
  filename: string;
4366
4798
  originalFilename: string;
4367
- }[] | [string, string] | undefined> | undefined;
4368
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
4799
+ }[] | [string, string] | null | undefined> | undefined;
4800
+ originalActionId?: string | undefined;
4369
4801
  keepAssignment?: boolean | undefined;
4370
4802
  }, {
4371
4803
  transactionId: string;
@@ -4386,6 +4818,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4386
4818
  residentialArea?: string | null | undefined;
4387
4819
  street?: string | null | undefined;
4388
4820
  zipCode?: string | null | undefined;
4821
+ } | {
4822
+ firstname: string;
4823
+ surname: string;
4824
+ middlename?: string | null | undefined;
4389
4825
  } | {
4390
4826
  country: string;
4391
4827
  district: string;
@@ -4408,7 +4844,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4408
4844
  option: string;
4409
4845
  filename: string;
4410
4846
  originalFilename: string;
4411
- }[] | [string, string] | undefined> | undefined;
4847
+ }[] | [string, string] | null | undefined> | undefined;
4412
4848
  annotation?: Record<string, string | number | boolean | {
4413
4849
  type: string;
4414
4850
  filename: string;
@@ -4424,6 +4860,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4424
4860
  residentialArea?: string | null | undefined;
4425
4861
  street?: string | null | undefined;
4426
4862
  zipCode?: string | null | undefined;
4863
+ } | {
4864
+ firstname: string;
4865
+ surname: string;
4866
+ middlename?: string | null | undefined;
4427
4867
  } | {
4428
4868
  country: string;
4429
4869
  district: string;
@@ -4446,14 +4886,14 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4446
4886
  option: string;
4447
4887
  filename: string;
4448
4888
  originalFilename: string;
4449
- }[] | [string, string] | undefined> | undefined;
4889
+ }[] | [string, string] | null | undefined> | undefined;
4450
4890
  originalActionId?: string | undefined;
4451
4891
  assignedTo?: null | undefined;
4452
4892
  keepAssignment?: boolean | undefined;
4453
4893
  }>;
4454
4894
  export type UnassignActionInput = z.infer<typeof UnassignActionInput>;
4455
4895
  export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
4456
- eventId: z.ZodBranded<z.ZodString, "UUID">;
4896
+ eventId: z.ZodString;
4457
4897
  transactionId: z.ZodString;
4458
4898
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4459
4899
  filename: z.ZodString;
@@ -4568,7 +5008,19 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4568
5008
  addressLine2?: string | null | undefined;
4569
5009
  addressLine3?: string | null | undefined;
4570
5010
  postcodeOrZip?: string | null | undefined;
4571
- }>]>>>;
5011
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5012
+ firstname: z.ZodString;
5013
+ surname: z.ZodString;
5014
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5015
+ }, "strip", z.ZodTypeAny, {
5016
+ firstname: string;
5017
+ surname: string;
5018
+ middlename?: string | null | undefined;
5019
+ }, {
5020
+ firstname: string;
5021
+ surname: string;
5022
+ middlename?: string | null | undefined;
5023
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4572
5024
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4573
5025
  filename: z.ZodString;
4574
5026
  originalFilename: z.ZodString;
@@ -4682,8 +5134,20 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4682
5134
  addressLine2?: string | null | undefined;
4683
5135
  addressLine3?: string | null | undefined;
4684
5136
  postcodeOrZip?: string | null | undefined;
4685
- }>]>>>;
4686
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
5137
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5138
+ firstname: z.ZodString;
5139
+ surname: z.ZodString;
5140
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5141
+ }, "strip", z.ZodTypeAny, {
5142
+ firstname: string;
5143
+ surname: string;
5144
+ middlename?: string | null | undefined;
5145
+ }, {
5146
+ firstname: string;
5147
+ surname: string;
5148
+ middlename?: string | null | undefined;
5149
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5150
+ originalActionId: z.ZodOptional<z.ZodString>;
4687
5151
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4688
5152
  }, {
4689
5153
  type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
@@ -4705,6 +5169,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4705
5169
  residentialArea?: string | null | undefined;
4706
5170
  street?: string | null | undefined;
4707
5171
  zipCode?: string | null | undefined;
5172
+ } | {
5173
+ firstname: string;
5174
+ surname: string;
5175
+ middlename?: string | null | undefined;
4708
5176
  } | {
4709
5177
  country: string;
4710
5178
  district: string;
@@ -4727,8 +5195,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4727
5195
  option: string;
4728
5196
  filename: string;
4729
5197
  originalFilename: string;
4730
- }[] | [string, string] | undefined>;
4731
- eventId: string & z.BRAND<"UUID">;
5198
+ }[] | [string, string] | null | undefined>;
5199
+ eventId: string;
4732
5200
  annotation?: Record<string, string | number | boolean | {
4733
5201
  type: string;
4734
5202
  filename: string;
@@ -4744,6 +5212,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4744
5212
  residentialArea?: string | null | undefined;
4745
5213
  street?: string | null | undefined;
4746
5214
  zipCode?: string | null | undefined;
5215
+ } | {
5216
+ firstname: string;
5217
+ surname: string;
5218
+ middlename?: string | null | undefined;
4747
5219
  } | {
4748
5220
  country: string;
4749
5221
  district: string;
@@ -4766,8 +5238,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4766
5238
  option: string;
4767
5239
  filename: string;
4768
5240
  originalFilename: string;
4769
- }[] | [string, string] | undefined> | undefined;
4770
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
5241
+ }[] | [string, string] | null | undefined> | undefined;
5242
+ originalActionId?: string | undefined;
4771
5243
  keepAssignment?: boolean | undefined;
4772
5244
  }, {
4773
5245
  transactionId: string;
@@ -4788,6 +5260,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4788
5260
  residentialArea?: string | null | undefined;
4789
5261
  street?: string | null | undefined;
4790
5262
  zipCode?: string | null | undefined;
5263
+ } | {
5264
+ firstname: string;
5265
+ surname: string;
5266
+ middlename?: string | null | undefined;
4791
5267
  } | {
4792
5268
  country: string;
4793
5269
  district: string;
@@ -4810,7 +5286,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4810
5286
  option: string;
4811
5287
  filename: string;
4812
5288
  originalFilename: string;
4813
- }[] | [string, string] | undefined> | undefined;
5289
+ }[] | [string, string] | null | undefined> | undefined;
4814
5290
  annotation?: Record<string, string | number | boolean | {
4815
5291
  type: string;
4816
5292
  filename: string;
@@ -4826,6 +5302,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4826
5302
  residentialArea?: string | null | undefined;
4827
5303
  street?: string | null | undefined;
4828
5304
  zipCode?: string | null | undefined;
5305
+ } | {
5306
+ firstname: string;
5307
+ surname: string;
5308
+ middlename?: string | null | undefined;
4829
5309
  } | {
4830
5310
  country: string;
4831
5311
  district: string;
@@ -4848,13 +5328,13 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4848
5328
  option: string;
4849
5329
  filename: string;
4850
5330
  originalFilename: string;
4851
- }[] | [string, string] | undefined> | undefined;
5331
+ }[] | [string, string] | null | undefined> | undefined;
4852
5332
  originalActionId?: string | undefined;
4853
5333
  keepAssignment?: boolean | undefined;
4854
5334
  }>;
4855
5335
  export type RequestCorrectionActionInput = z.infer<typeof RequestCorrectionActionInput>;
4856
5336
  export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
4857
- eventId: z.ZodBranded<z.ZodString, "UUID">;
5337
+ eventId: z.ZodString;
4858
5338
  transactionId: z.ZodString;
4859
5339
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4860
5340
  filename: z.ZodString;
@@ -4969,7 +5449,19 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
4969
5449
  addressLine2?: string | null | undefined;
4970
5450
  addressLine3?: string | null | undefined;
4971
5451
  postcodeOrZip?: string | null | undefined;
4972
- }>]>>>;
5452
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5453
+ firstname: z.ZodString;
5454
+ surname: z.ZodString;
5455
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5456
+ }, "strip", z.ZodTypeAny, {
5457
+ firstname: string;
5458
+ surname: string;
5459
+ middlename?: string | null | undefined;
5460
+ }, {
5461
+ firstname: string;
5462
+ surname: string;
5463
+ middlename?: string | null | undefined;
5464
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4973
5465
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4974
5466
  filename: z.ZodString;
4975
5467
  originalFilename: z.ZodString;
@@ -5083,8 +5575,20 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5083
5575
  addressLine2?: string | null | undefined;
5084
5576
  addressLine3?: string | null | undefined;
5085
5577
  postcodeOrZip?: string | null | undefined;
5086
- }>]>>>;
5087
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
5578
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5579
+ firstname: z.ZodString;
5580
+ surname: z.ZodString;
5581
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5582
+ }, "strip", z.ZodTypeAny, {
5583
+ firstname: string;
5584
+ surname: string;
5585
+ middlename?: string | null | undefined;
5586
+ }, {
5587
+ firstname: string;
5588
+ surname: string;
5589
+ middlename?: string | null | undefined;
5590
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5591
+ originalActionId: z.ZodOptional<z.ZodString>;
5088
5592
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5089
5593
  }, {
5090
5594
  requestId: z.ZodString;
@@ -5107,6 +5611,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5107
5611
  residentialArea?: string | null | undefined;
5108
5612
  street?: string | null | undefined;
5109
5613
  zipCode?: string | null | undefined;
5614
+ } | {
5615
+ firstname: string;
5616
+ surname: string;
5617
+ middlename?: string | null | undefined;
5110
5618
  } | {
5111
5619
  country: string;
5112
5620
  district: string;
@@ -5129,9 +5637,9 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5129
5637
  option: string;
5130
5638
  filename: string;
5131
5639
  originalFilename: string;
5132
- }[] | [string, string] | undefined>;
5640
+ }[] | [string, string] | null | undefined>;
5133
5641
  requestId: string;
5134
- eventId: string & z.BRAND<"UUID">;
5642
+ eventId: string;
5135
5643
  annotation?: Record<string, string | number | boolean | {
5136
5644
  type: string;
5137
5645
  filename: string;
@@ -5147,6 +5655,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5147
5655
  residentialArea?: string | null | undefined;
5148
5656
  street?: string | null | undefined;
5149
5657
  zipCode?: string | null | undefined;
5658
+ } | {
5659
+ firstname: string;
5660
+ surname: string;
5661
+ middlename?: string | null | undefined;
5150
5662
  } | {
5151
5663
  country: string;
5152
5664
  district: string;
@@ -5169,8 +5681,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5169
5681
  option: string;
5170
5682
  filename: string;
5171
5683
  originalFilename: string;
5172
- }[] | [string, string] | undefined> | undefined;
5173
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
5684
+ }[] | [string, string] | null | undefined> | undefined;
5685
+ originalActionId?: string | undefined;
5174
5686
  keepAssignment?: boolean | undefined;
5175
5687
  }, {
5176
5688
  transactionId: string;
@@ -5192,6 +5704,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5192
5704
  residentialArea?: string | null | undefined;
5193
5705
  street?: string | null | undefined;
5194
5706
  zipCode?: string | null | undefined;
5707
+ } | {
5708
+ firstname: string;
5709
+ surname: string;
5710
+ middlename?: string | null | undefined;
5195
5711
  } | {
5196
5712
  country: string;
5197
5713
  district: string;
@@ -5214,7 +5730,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5214
5730
  option: string;
5215
5731
  filename: string;
5216
5732
  originalFilename: string;
5217
- }[] | [string, string] | undefined> | undefined;
5733
+ }[] | [string, string] | null | undefined> | undefined;
5218
5734
  annotation?: Record<string, string | number | boolean | {
5219
5735
  type: string;
5220
5736
  filename: string;
@@ -5230,6 +5746,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5230
5746
  residentialArea?: string | null | undefined;
5231
5747
  street?: string | null | undefined;
5232
5748
  zipCode?: string | null | undefined;
5749
+ } | {
5750
+ firstname: string;
5751
+ surname: string;
5752
+ middlename?: string | null | undefined;
5233
5753
  } | {
5234
5754
  country: string;
5235
5755
  district: string;
@@ -5252,13 +5772,13 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5252
5772
  option: string;
5253
5773
  filename: string;
5254
5774
  originalFilename: string;
5255
- }[] | [string, string] | undefined> | undefined;
5775
+ }[] | [string, string] | null | undefined> | undefined;
5256
5776
  originalActionId?: string | undefined;
5257
5777
  keepAssignment?: boolean | undefined;
5258
5778
  }>;
5259
5779
  export type RejectCorrectionActionInput = z.infer<typeof RejectCorrectionActionInput>;
5260
5780
  export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
5261
- eventId: z.ZodBranded<z.ZodString, "UUID">;
5781
+ eventId: z.ZodString;
5262
5782
  transactionId: z.ZodString;
5263
5783
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
5264
5784
  filename: z.ZodString;
@@ -5373,7 +5893,19 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5373
5893
  addressLine2?: string | null | undefined;
5374
5894
  addressLine3?: string | null | undefined;
5375
5895
  postcodeOrZip?: string | null | undefined;
5376
- }>]>>>;
5896
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5897
+ firstname: z.ZodString;
5898
+ surname: z.ZodString;
5899
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5900
+ }, "strip", z.ZodTypeAny, {
5901
+ firstname: string;
5902
+ surname: string;
5903
+ middlename?: string | null | undefined;
5904
+ }, {
5905
+ firstname: string;
5906
+ surname: string;
5907
+ middlename?: string | null | undefined;
5908
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5377
5909
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
5378
5910
  filename: z.ZodString;
5379
5911
  originalFilename: z.ZodString;
@@ -5487,8 +6019,20 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5487
6019
  addressLine2?: string | null | undefined;
5488
6020
  addressLine3?: string | null | undefined;
5489
6021
  postcodeOrZip?: string | null | undefined;
5490
- }>]>>>;
5491
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6022
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6023
+ firstname: z.ZodString;
6024
+ surname: z.ZodString;
6025
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6026
+ }, "strip", z.ZodTypeAny, {
6027
+ firstname: string;
6028
+ surname: string;
6029
+ middlename?: string | null | undefined;
6030
+ }, {
6031
+ firstname: string;
6032
+ surname: string;
6033
+ middlename?: string | null | undefined;
6034
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6035
+ originalActionId: z.ZodOptional<z.ZodString>;
5492
6036
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5493
6037
  }, {
5494
6038
  requestId: z.ZodString;
@@ -5511,6 +6055,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5511
6055
  residentialArea?: string | null | undefined;
5512
6056
  street?: string | null | undefined;
5513
6057
  zipCode?: string | null | undefined;
6058
+ } | {
6059
+ firstname: string;
6060
+ surname: string;
6061
+ middlename?: string | null | undefined;
5514
6062
  } | {
5515
6063
  country: string;
5516
6064
  district: string;
@@ -5533,9 +6081,9 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5533
6081
  option: string;
5534
6082
  filename: string;
5535
6083
  originalFilename: string;
5536
- }[] | [string, string] | undefined>;
6084
+ }[] | [string, string] | null | undefined>;
5537
6085
  requestId: string;
5538
- eventId: string & z.BRAND<"UUID">;
6086
+ eventId: string;
5539
6087
  annotation?: Record<string, string | number | boolean | {
5540
6088
  type: string;
5541
6089
  filename: string;
@@ -5551,6 +6099,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5551
6099
  residentialArea?: string | null | undefined;
5552
6100
  street?: string | null | undefined;
5553
6101
  zipCode?: string | null | undefined;
6102
+ } | {
6103
+ firstname: string;
6104
+ surname: string;
6105
+ middlename?: string | null | undefined;
5554
6106
  } | {
5555
6107
  country: string;
5556
6108
  district: string;
@@ -5573,8 +6125,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5573
6125
  option: string;
5574
6126
  filename: string;
5575
6127
  originalFilename: string;
5576
- }[] | [string, string] | undefined> | undefined;
5577
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6128
+ }[] | [string, string] | null | undefined> | undefined;
6129
+ originalActionId?: string | undefined;
5578
6130
  keepAssignment?: boolean | undefined;
5579
6131
  }, {
5580
6132
  transactionId: string;
@@ -5596,6 +6148,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5596
6148
  residentialArea?: string | null | undefined;
5597
6149
  street?: string | null | undefined;
5598
6150
  zipCode?: string | null | undefined;
6151
+ } | {
6152
+ firstname: string;
6153
+ surname: string;
6154
+ middlename?: string | null | undefined;
5599
6155
  } | {
5600
6156
  country: string;
5601
6157
  district: string;
@@ -5618,7 +6174,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5618
6174
  option: string;
5619
6175
  filename: string;
5620
6176
  originalFilename: string;
5621
- }[] | [string, string] | undefined> | undefined;
6177
+ }[] | [string, string] | null | undefined> | undefined;
5622
6178
  annotation?: Record<string, string | number | boolean | {
5623
6179
  type: string;
5624
6180
  filename: string;
@@ -5634,6 +6190,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5634
6190
  residentialArea?: string | null | undefined;
5635
6191
  street?: string | null | undefined;
5636
6192
  zipCode?: string | null | undefined;
6193
+ } | {
6194
+ firstname: string;
6195
+ surname: string;
6196
+ middlename?: string | null | undefined;
5637
6197
  } | {
5638
6198
  country: string;
5639
6199
  district: string;
@@ -5656,13 +6216,13 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5656
6216
  option: string;
5657
6217
  filename: string;
5658
6218
  originalFilename: string;
5659
- }[] | [string, string] | undefined> | undefined;
6219
+ }[] | [string, string] | null | undefined> | undefined;
5660
6220
  originalActionId?: string | undefined;
5661
6221
  keepAssignment?: boolean | undefined;
5662
6222
  }>;
5663
6223
  export type ApproveCorrectionActionInput = z.infer<typeof ApproveCorrectionActionInput>;
5664
6224
  export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5665
- eventId: z.ZodBranded<z.ZodString, "UUID">;
6225
+ eventId: z.ZodString;
5666
6226
  transactionId: z.ZodString;
5667
6227
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
5668
6228
  filename: z.ZodString;
@@ -5777,7 +6337,19 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5777
6337
  addressLine2?: string | null | undefined;
5778
6338
  addressLine3?: string | null | undefined;
5779
6339
  postcodeOrZip?: string | null | undefined;
5780
- }>]>>>;
6340
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6341
+ firstname: z.ZodString;
6342
+ surname: z.ZodString;
6343
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6344
+ }, "strip", z.ZodTypeAny, {
6345
+ firstname: string;
6346
+ surname: string;
6347
+ middlename?: string | null | undefined;
6348
+ }, {
6349
+ firstname: string;
6350
+ surname: string;
6351
+ middlename?: string | null | undefined;
6352
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5781
6353
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
5782
6354
  filename: z.ZodString;
5783
6355
  originalFilename: z.ZodString;
@@ -5891,8 +6463,20 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5891
6463
  addressLine2?: string | null | undefined;
5892
6464
  addressLine3?: string | null | undefined;
5893
6465
  postcodeOrZip?: string | null | undefined;
5894
- }>]>>>;
5895
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6466
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6467
+ firstname: z.ZodString;
6468
+ surname: z.ZodString;
6469
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6470
+ }, "strip", z.ZodTypeAny, {
6471
+ firstname: string;
6472
+ surname: string;
6473
+ middlename?: string | null | undefined;
6474
+ }, {
6475
+ firstname: string;
6476
+ surname: string;
6477
+ middlename?: string | null | undefined;
6478
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6479
+ originalActionId: z.ZodOptional<z.ZodString>;
5896
6480
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5897
6481
  }, {
5898
6482
  type: z.ZodDefault<z.ZodLiteral<"READ">>;
@@ -5914,6 +6498,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5914
6498
  residentialArea?: string | null | undefined;
5915
6499
  street?: string | null | undefined;
5916
6500
  zipCode?: string | null | undefined;
6501
+ } | {
6502
+ firstname: string;
6503
+ surname: string;
6504
+ middlename?: string | null | undefined;
5917
6505
  } | {
5918
6506
  country: string;
5919
6507
  district: string;
@@ -5936,8 +6524,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5936
6524
  option: string;
5937
6525
  filename: string;
5938
6526
  originalFilename: string;
5939
- }[] | [string, string] | undefined>;
5940
- eventId: string & z.BRAND<"UUID">;
6527
+ }[] | [string, string] | null | undefined>;
6528
+ eventId: string;
5941
6529
  annotation?: Record<string, string | number | boolean | {
5942
6530
  type: string;
5943
6531
  filename: string;
@@ -5953,6 +6541,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5953
6541
  residentialArea?: string | null | undefined;
5954
6542
  street?: string | null | undefined;
5955
6543
  zipCode?: string | null | undefined;
6544
+ } | {
6545
+ firstname: string;
6546
+ surname: string;
6547
+ middlename?: string | null | undefined;
5956
6548
  } | {
5957
6549
  country: string;
5958
6550
  district: string;
@@ -5975,8 +6567,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5975
6567
  option: string;
5976
6568
  filename: string;
5977
6569
  originalFilename: string;
5978
- }[] | [string, string] | undefined> | undefined;
5979
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6570
+ }[] | [string, string] | null | undefined> | undefined;
6571
+ originalActionId?: string | undefined;
5980
6572
  keepAssignment?: boolean | undefined;
5981
6573
  }, {
5982
6574
  transactionId: string;
@@ -5997,6 +6589,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5997
6589
  residentialArea?: string | null | undefined;
5998
6590
  street?: string | null | undefined;
5999
6591
  zipCode?: string | null | undefined;
6592
+ } | {
6593
+ firstname: string;
6594
+ surname: string;
6595
+ middlename?: string | null | undefined;
6000
6596
  } | {
6001
6597
  country: string;
6002
6598
  district: string;
@@ -6019,7 +6615,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6019
6615
  option: string;
6020
6616
  filename: string;
6021
6617
  originalFilename: string;
6022
- }[] | [string, string] | undefined> | undefined;
6618
+ }[] | [string, string] | null | undefined> | undefined;
6023
6619
  annotation?: Record<string, string | number | boolean | {
6024
6620
  type: string;
6025
6621
  filename: string;
@@ -6035,6 +6631,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6035
6631
  residentialArea?: string | null | undefined;
6036
6632
  street?: string | null | undefined;
6037
6633
  zipCode?: string | null | undefined;
6634
+ } | {
6635
+ firstname: string;
6636
+ surname: string;
6637
+ middlename?: string | null | undefined;
6038
6638
  } | {
6039
6639
  country: string;
6040
6640
  district: string;
@@ -6057,15 +6657,15 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6057
6657
  option: string;
6058
6658
  filename: string;
6059
6659
  originalFilename: string;
6060
- }[] | [string, string] | undefined> | undefined;
6660
+ }[] | [string, string] | null | undefined> | undefined;
6061
6661
  originalActionId?: string | undefined;
6062
6662
  keepAssignment?: boolean | undefined;
6063
6663
  }>;
6064
6664
  export type ReadActionInput = z.infer<typeof ReadActionInput>;
6065
6665
  export declare const DeleteActionInput: z.ZodObject<{
6066
- eventId: z.ZodBranded<z.ZodString, "UUID">;
6666
+ eventId: z.ZodString;
6067
6667
  }, "strip", z.ZodTypeAny, {
6068
- eventId: string & z.BRAND<"UUID">;
6668
+ eventId: string;
6069
6669
  }, {
6070
6670
  eventId: string;
6071
6671
  }>;
@@ -6079,7 +6679,7 @@ export type DeleteActionInput = z.infer<typeof DeleteActionInput>;
6079
6679
  * e.g. mutation.declare({createdAt: new Date()}) vs mutation.declare({createdAt: new Date(), type: 'DECLARE'})
6080
6680
  */
6081
6681
  export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
6082
- eventId: z.ZodBranded<z.ZodString, "UUID">;
6682
+ eventId: z.ZodString;
6083
6683
  transactionId: z.ZodString;
6084
6684
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
6085
6685
  filename: z.ZodString;
@@ -6194,7 +6794,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6194
6794
  addressLine2?: string | null | undefined;
6195
6795
  addressLine3?: string | null | undefined;
6196
6796
  postcodeOrZip?: string | null | undefined;
6197
- }>]>>>;
6797
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6798
+ firstname: z.ZodString;
6799
+ surname: z.ZodString;
6800
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6801
+ }, "strip", z.ZodTypeAny, {
6802
+ firstname: string;
6803
+ surname: string;
6804
+ middlename?: string | null | undefined;
6805
+ }, {
6806
+ firstname: string;
6807
+ surname: string;
6808
+ middlename?: string | null | undefined;
6809
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6198
6810
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
6199
6811
  filename: z.ZodString;
6200
6812
  originalFilename: z.ZodString;
@@ -6308,12 +6920,24 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6308
6920
  addressLine2?: string | null | undefined;
6309
6921
  addressLine3?: string | null | undefined;
6310
6922
  postcodeOrZip?: string | null | undefined;
6311
- }>]>>>;
6312
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6923
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6924
+ firstname: z.ZodString;
6925
+ surname: z.ZodString;
6926
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6927
+ }, "strip", z.ZodTypeAny, {
6928
+ firstname: string;
6929
+ surname: string;
6930
+ middlename?: string | null | undefined;
6931
+ }, {
6932
+ firstname: string;
6933
+ surname: string;
6934
+ middlename?: string | null | undefined;
6935
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6936
+ originalActionId: z.ZodOptional<z.ZodString>;
6313
6937
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6314
6938
  }, {
6315
6939
  type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
6316
- createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
6940
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6317
6941
  }>, "strip", z.ZodTypeAny, {
6318
6942
  type: "CREATE";
6319
6943
  transactionId: string;
@@ -6332,6 +6956,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6332
6956
  residentialArea?: string | null | undefined;
6333
6957
  street?: string | null | undefined;
6334
6958
  zipCode?: string | null | undefined;
6959
+ } | {
6960
+ firstname: string;
6961
+ surname: string;
6962
+ middlename?: string | null | undefined;
6335
6963
  } | {
6336
6964
  country: string;
6337
6965
  district: string;
@@ -6354,9 +6982,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6354
6982
  option: string;
6355
6983
  filename: string;
6356
6984
  originalFilename: string;
6357
- }[] | [string, string] | undefined>;
6358
- eventId: string & z.BRAND<"UUID">;
6359
- createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
6985
+ }[] | [string, string] | null | undefined>;
6986
+ eventId: string;
6987
+ createdAtLocation?: string | null | undefined;
6360
6988
  annotation?: Record<string, string | number | boolean | {
6361
6989
  type: string;
6362
6990
  filename: string;
@@ -6372,6 +7000,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6372
7000
  residentialArea?: string | null | undefined;
6373
7001
  street?: string | null | undefined;
6374
7002
  zipCode?: string | null | undefined;
7003
+ } | {
7004
+ firstname: string;
7005
+ surname: string;
7006
+ middlename?: string | null | undefined;
6375
7007
  } | {
6376
7008
  country: string;
6377
7009
  district: string;
@@ -6394,8 +7026,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6394
7026
  option: string;
6395
7027
  filename: string;
6396
7028
  originalFilename: string;
6397
- }[] | [string, string] | undefined> | undefined;
6398
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7029
+ }[] | [string, string] | null | undefined> | undefined;
7030
+ originalActionId?: string | undefined;
6399
7031
  keepAssignment?: boolean | undefined;
6400
7032
  }, {
6401
7033
  transactionId: string;
@@ -6417,6 +7049,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6417
7049
  residentialArea?: string | null | undefined;
6418
7050
  street?: string | null | undefined;
6419
7051
  zipCode?: string | null | undefined;
7052
+ } | {
7053
+ firstname: string;
7054
+ surname: string;
7055
+ middlename?: string | null | undefined;
6420
7056
  } | {
6421
7057
  country: string;
6422
7058
  district: string;
@@ -6439,7 +7075,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6439
7075
  option: string;
6440
7076
  filename: string;
6441
7077
  originalFilename: string;
6442
- }[] | [string, string] | undefined> | undefined;
7078
+ }[] | [string, string] | null | undefined> | undefined;
6443
7079
  annotation?: Record<string, string | number | boolean | {
6444
7080
  type: string;
6445
7081
  filename: string;
@@ -6455,6 +7091,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6455
7091
  residentialArea?: string | null | undefined;
6456
7092
  street?: string | null | undefined;
6457
7093
  zipCode?: string | null | undefined;
7094
+ } | {
7095
+ firstname: string;
7096
+ surname: string;
7097
+ middlename?: string | null | undefined;
6458
7098
  } | {
6459
7099
  country: string;
6460
7100
  district: string;
@@ -6477,11 +7117,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6477
7117
  option: string;
6478
7118
  filename: string;
6479
7119
  originalFilename: string;
6480
- }[] | [string, string] | undefined> | undefined;
7120
+ }[] | [string, string] | null | undefined> | undefined;
6481
7121
  originalActionId?: string | undefined;
6482
7122
  keepAssignment?: boolean | undefined;
6483
7123
  }>, z.ZodObject<z.objectUtil.extendShape<{
6484
- eventId: z.ZodBranded<z.ZodString, "UUID">;
7124
+ eventId: z.ZodString;
6485
7125
  transactionId: z.ZodString;
6486
7126
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
6487
7127
  filename: z.ZodString;
@@ -6596,7 +7236,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6596
7236
  addressLine2?: string | null | undefined;
6597
7237
  addressLine3?: string | null | undefined;
6598
7238
  postcodeOrZip?: string | null | undefined;
6599
- }>]>>>;
7239
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7240
+ firstname: z.ZodString;
7241
+ surname: z.ZodString;
7242
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7243
+ }, "strip", z.ZodTypeAny, {
7244
+ firstname: string;
7245
+ surname: string;
7246
+ middlename?: string | null | undefined;
7247
+ }, {
7248
+ firstname: string;
7249
+ surname: string;
7250
+ middlename?: string | null | undefined;
7251
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6600
7252
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
6601
7253
  filename: z.ZodString;
6602
7254
  originalFilename: z.ZodString;
@@ -6710,8 +7362,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6710
7362
  addressLine2?: string | null | undefined;
6711
7363
  addressLine3?: string | null | undefined;
6712
7364
  postcodeOrZip?: string | null | undefined;
6713
- }>]>>>;
6714
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7365
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7366
+ firstname: z.ZodString;
7367
+ surname: z.ZodString;
7368
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7369
+ }, "strip", z.ZodTypeAny, {
7370
+ firstname: string;
7371
+ surname: string;
7372
+ middlename?: string | null | undefined;
7373
+ }, {
7374
+ firstname: string;
7375
+ surname: string;
7376
+ middlename?: string | null | undefined;
7377
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7378
+ originalActionId: z.ZodOptional<z.ZodString>;
6715
7379
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6716
7380
  }, {
6717
7381
  type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
@@ -6734,6 +7398,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6734
7398
  residentialArea?: string | null | undefined;
6735
7399
  street?: string | null | undefined;
6736
7400
  zipCode?: string | null | undefined;
7401
+ } | {
7402
+ firstname: string;
7403
+ surname: string;
7404
+ middlename?: string | null | undefined;
6737
7405
  } | {
6738
7406
  country: string;
6739
7407
  district: string;
@@ -6756,8 +7424,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6756
7424
  option: string;
6757
7425
  filename: string;
6758
7426
  originalFilename: string;
6759
- }[] | [string, string] | undefined>;
6760
- eventId: string & z.BRAND<"UUID">;
7427
+ }[] | [string, string] | null | undefined>;
7428
+ eventId: string;
6761
7429
  duplicates: string[];
6762
7430
  annotation?: Record<string, string | number | boolean | {
6763
7431
  type: string;
@@ -6774,6 +7442,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6774
7442
  residentialArea?: string | null | undefined;
6775
7443
  street?: string | null | undefined;
6776
7444
  zipCode?: string | null | undefined;
7445
+ } | {
7446
+ firstname: string;
7447
+ surname: string;
7448
+ middlename?: string | null | undefined;
6777
7449
  } | {
6778
7450
  country: string;
6779
7451
  district: string;
@@ -6796,8 +7468,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6796
7468
  option: string;
6797
7469
  filename: string;
6798
7470
  originalFilename: string;
6799
- }[] | [string, string] | undefined> | undefined;
6800
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7471
+ }[] | [string, string] | null | undefined> | undefined;
7472
+ originalActionId?: string | undefined;
6801
7473
  keepAssignment?: boolean | undefined;
6802
7474
  }, {
6803
7475
  transactionId: string;
@@ -6819,6 +7491,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6819
7491
  residentialArea?: string | null | undefined;
6820
7492
  street?: string | null | undefined;
6821
7493
  zipCode?: string | null | undefined;
7494
+ } | {
7495
+ firstname: string;
7496
+ surname: string;
7497
+ middlename?: string | null | undefined;
6822
7498
  } | {
6823
7499
  country: string;
6824
7500
  district: string;
@@ -6841,7 +7517,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6841
7517
  option: string;
6842
7518
  filename: string;
6843
7519
  originalFilename: string;
6844
- }[] | [string, string] | undefined> | undefined;
7520
+ }[] | [string, string] | null | undefined> | undefined;
6845
7521
  annotation?: Record<string, string | number | boolean | {
6846
7522
  type: string;
6847
7523
  filename: string;
@@ -6857,6 +7533,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6857
7533
  residentialArea?: string | null | undefined;
6858
7534
  street?: string | null | undefined;
6859
7535
  zipCode?: string | null | undefined;
7536
+ } | {
7537
+ firstname: string;
7538
+ surname: string;
7539
+ middlename?: string | null | undefined;
6860
7540
  } | {
6861
7541
  country: string;
6862
7542
  district: string;
@@ -6879,11 +7559,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6879
7559
  option: string;
6880
7560
  filename: string;
6881
7561
  originalFilename: string;
6882
- }[] | [string, string] | undefined> | undefined;
7562
+ }[] | [string, string] | null | undefined> | undefined;
6883
7563
  originalActionId?: string | undefined;
6884
7564
  keepAssignment?: boolean | undefined;
6885
7565
  }>, z.ZodObject<z.objectUtil.extendShape<{
6886
- eventId: z.ZodBranded<z.ZodString, "UUID">;
7566
+ eventId: z.ZodString;
6887
7567
  transactionId: z.ZodString;
6888
7568
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
6889
7569
  filename: z.ZodString;
@@ -6998,7 +7678,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6998
7678
  addressLine2?: string | null | undefined;
6999
7679
  addressLine3?: string | null | undefined;
7000
7680
  postcodeOrZip?: string | null | undefined;
7001
- }>]>>>;
7681
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7682
+ firstname: z.ZodString;
7683
+ surname: z.ZodString;
7684
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7685
+ }, "strip", z.ZodTypeAny, {
7686
+ firstname: string;
7687
+ surname: string;
7688
+ middlename?: string | null | undefined;
7689
+ }, {
7690
+ firstname: string;
7691
+ surname: string;
7692
+ middlename?: string | null | undefined;
7693
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7002
7694
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
7003
7695
  filename: z.ZodString;
7004
7696
  originalFilename: z.ZodString;
@@ -7112,8 +7804,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7112
7804
  addressLine2?: string | null | undefined;
7113
7805
  addressLine3?: string | null | undefined;
7114
7806
  postcodeOrZip?: string | null | undefined;
7115
- }>]>>>;
7116
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7807
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7808
+ firstname: z.ZodString;
7809
+ surname: z.ZodString;
7810
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7811
+ }, "strip", z.ZodTypeAny, {
7812
+ firstname: string;
7813
+ surname: string;
7814
+ middlename?: string | null | undefined;
7815
+ }, {
7816
+ firstname: string;
7817
+ surname: string;
7818
+ middlename?: string | null | undefined;
7819
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7820
+ originalActionId: z.ZodOptional<z.ZodString>;
7117
7821
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7118
7822
  }, {
7119
7823
  type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
@@ -7136,6 +7840,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7136
7840
  residentialArea?: string | null | undefined;
7137
7841
  street?: string | null | undefined;
7138
7842
  zipCode?: string | null | undefined;
7843
+ } | {
7844
+ firstname: string;
7845
+ surname: string;
7846
+ middlename?: string | null | undefined;
7139
7847
  } | {
7140
7848
  country: string;
7141
7849
  district: string;
@@ -7158,8 +7866,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7158
7866
  option: string;
7159
7867
  filename: string;
7160
7868
  originalFilename: string;
7161
- }[] | [string, string] | undefined>;
7162
- eventId: string & z.BRAND<"UUID">;
7869
+ }[] | [string, string] | null | undefined>;
7870
+ eventId: string;
7163
7871
  annotation?: Record<string, string | number | boolean | {
7164
7872
  type: string;
7165
7873
  filename: string;
@@ -7175,6 +7883,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7175
7883
  residentialArea?: string | null | undefined;
7176
7884
  street?: string | null | undefined;
7177
7885
  zipCode?: string | null | undefined;
7886
+ } | {
7887
+ firstname: string;
7888
+ surname: string;
7889
+ middlename?: string | null | undefined;
7178
7890
  } | {
7179
7891
  country: string;
7180
7892
  district: string;
@@ -7197,8 +7909,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7197
7909
  option: string;
7198
7910
  filename: string;
7199
7911
  originalFilename: string;
7200
- }[] | [string, string] | undefined> | undefined;
7201
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7912
+ }[] | [string, string] | null | undefined> | undefined;
7913
+ originalActionId?: string | undefined;
7202
7914
  registrationNumber?: string | undefined;
7203
7915
  keepAssignment?: boolean | undefined;
7204
7916
  }, {
@@ -7220,6 +7932,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7220
7932
  residentialArea?: string | null | undefined;
7221
7933
  street?: string | null | undefined;
7222
7934
  zipCode?: string | null | undefined;
7935
+ } | {
7936
+ firstname: string;
7937
+ surname: string;
7938
+ middlename?: string | null | undefined;
7223
7939
  } | {
7224
7940
  country: string;
7225
7941
  district: string;
@@ -7242,7 +7958,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7242
7958
  option: string;
7243
7959
  filename: string;
7244
7960
  originalFilename: string;
7245
- }[] | [string, string] | undefined> | undefined;
7961
+ }[] | [string, string] | null | undefined> | undefined;
7246
7962
  annotation?: Record<string, string | number | boolean | {
7247
7963
  type: string;
7248
7964
  filename: string;
@@ -7258,6 +7974,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7258
7974
  residentialArea?: string | null | undefined;
7259
7975
  street?: string | null | undefined;
7260
7976
  zipCode?: string | null | undefined;
7977
+ } | {
7978
+ firstname: string;
7979
+ surname: string;
7980
+ middlename?: string | null | undefined;
7261
7981
  } | {
7262
7982
  country: string;
7263
7983
  district: string;
@@ -7280,12 +8000,12 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7280
8000
  option: string;
7281
8001
  filename: string;
7282
8002
  originalFilename: string;
7283
- }[] | [string, string] | undefined> | undefined;
8003
+ }[] | [string, string] | null | undefined> | undefined;
7284
8004
  originalActionId?: string | undefined;
7285
8005
  registrationNumber?: string | undefined;
7286
8006
  keepAssignment?: boolean | undefined;
7287
8007
  }>, z.ZodObject<z.objectUtil.extendShape<{
7288
- eventId: z.ZodBranded<z.ZodString, "UUID">;
8008
+ eventId: z.ZodString;
7289
8009
  transactionId: z.ZodString;
7290
8010
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
7291
8011
  filename: z.ZodString;
@@ -7400,7 +8120,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7400
8120
  addressLine2?: string | null | undefined;
7401
8121
  addressLine3?: string | null | undefined;
7402
8122
  postcodeOrZip?: string | null | undefined;
7403
- }>]>>>;
8123
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8124
+ firstname: z.ZodString;
8125
+ surname: z.ZodString;
8126
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8127
+ }, "strip", z.ZodTypeAny, {
8128
+ firstname: string;
8129
+ surname: string;
8130
+ middlename?: string | null | undefined;
8131
+ }, {
8132
+ firstname: string;
8133
+ surname: string;
8134
+ middlename?: string | null | undefined;
8135
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7404
8136
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
7405
8137
  filename: z.ZodString;
7406
8138
  originalFilename: z.ZodString;
@@ -7514,8 +8246,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7514
8246
  addressLine2?: string | null | undefined;
7515
8247
  addressLine3?: string | null | undefined;
7516
8248
  postcodeOrZip?: string | null | undefined;
7517
- }>]>>>;
7518
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8249
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8250
+ firstname: z.ZodString;
8251
+ surname: z.ZodString;
8252
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8253
+ }, "strip", z.ZodTypeAny, {
8254
+ firstname: string;
8255
+ surname: string;
8256
+ middlename?: string | null | undefined;
8257
+ }, {
8258
+ firstname: string;
8259
+ surname: string;
8260
+ middlename?: string | null | undefined;
8261
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8262
+ originalActionId: z.ZodOptional<z.ZodString>;
7519
8263
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7520
8264
  }, {
7521
8265
  type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
@@ -7537,6 +8281,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7537
8281
  residentialArea?: string | null | undefined;
7538
8282
  street?: string | null | undefined;
7539
8283
  zipCode?: string | null | undefined;
8284
+ } | {
8285
+ firstname: string;
8286
+ surname: string;
8287
+ middlename?: string | null | undefined;
7540
8288
  } | {
7541
8289
  country: string;
7542
8290
  district: string;
@@ -7559,8 +8307,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7559
8307
  option: string;
7560
8308
  filename: string;
7561
8309
  originalFilename: string;
7562
- }[] | [string, string] | undefined>;
7563
- eventId: string & z.BRAND<"UUID">;
8310
+ }[] | [string, string] | null | undefined>;
8311
+ eventId: string;
7564
8312
  annotation?: Record<string, string | number | boolean | {
7565
8313
  type: string;
7566
8314
  filename: string;
@@ -7576,6 +8324,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7576
8324
  residentialArea?: string | null | undefined;
7577
8325
  street?: string | null | undefined;
7578
8326
  zipCode?: string | null | undefined;
8327
+ } | {
8328
+ firstname: string;
8329
+ surname: string;
8330
+ middlename?: string | null | undefined;
7579
8331
  } | {
7580
8332
  country: string;
7581
8333
  district: string;
@@ -7598,8 +8350,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7598
8350
  option: string;
7599
8351
  filename: string;
7600
8352
  originalFilename: string;
7601
- }[] | [string, string] | undefined> | undefined;
7602
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8353
+ }[] | [string, string] | null | undefined> | undefined;
8354
+ originalActionId?: string | undefined;
7603
8355
  keepAssignment?: boolean | undefined;
7604
8356
  }, {
7605
8357
  transactionId: string;
@@ -7620,6 +8372,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7620
8372
  residentialArea?: string | null | undefined;
7621
8373
  street?: string | null | undefined;
7622
8374
  zipCode?: string | null | undefined;
8375
+ } | {
8376
+ firstname: string;
8377
+ surname: string;
8378
+ middlename?: string | null | undefined;
7623
8379
  } | {
7624
8380
  country: string;
7625
8381
  district: string;
@@ -7642,7 +8398,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7642
8398
  option: string;
7643
8399
  filename: string;
7644
8400
  originalFilename: string;
7645
- }[] | [string, string] | undefined> | undefined;
8401
+ }[] | [string, string] | null | undefined> | undefined;
7646
8402
  annotation?: Record<string, string | number | boolean | {
7647
8403
  type: string;
7648
8404
  filename: string;
@@ -7658,6 +8414,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7658
8414
  residentialArea?: string | null | undefined;
7659
8415
  street?: string | null | undefined;
7660
8416
  zipCode?: string | null | undefined;
8417
+ } | {
8418
+ firstname: string;
8419
+ surname: string;
8420
+ middlename?: string | null | undefined;
7661
8421
  } | {
7662
8422
  country: string;
7663
8423
  district: string;
@@ -7680,11 +8440,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7680
8440
  option: string;
7681
8441
  filename: string;
7682
8442
  originalFilename: string;
7683
- }[] | [string, string] | undefined> | undefined;
8443
+ }[] | [string, string] | null | undefined> | undefined;
7684
8444
  originalActionId?: string | undefined;
7685
8445
  keepAssignment?: boolean | undefined;
7686
8446
  }>, z.ZodObject<z.objectUtil.extendShape<{
7687
- eventId: z.ZodBranded<z.ZodString, "UUID">;
8447
+ eventId: z.ZodString;
7688
8448
  transactionId: z.ZodString;
7689
8449
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
7690
8450
  filename: z.ZodString;
@@ -7799,7 +8559,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7799
8559
  addressLine2?: string | null | undefined;
7800
8560
  addressLine3?: string | null | undefined;
7801
8561
  postcodeOrZip?: string | null | undefined;
7802
- }>]>>>;
8562
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8563
+ firstname: z.ZodString;
8564
+ surname: z.ZodString;
8565
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8566
+ }, "strip", z.ZodTypeAny, {
8567
+ firstname: string;
8568
+ surname: string;
8569
+ middlename?: string | null | undefined;
8570
+ }, {
8571
+ firstname: string;
8572
+ surname: string;
8573
+ middlename?: string | null | undefined;
8574
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7803
8575
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
7804
8576
  filename: z.ZodString;
7805
8577
  originalFilename: z.ZodString;
@@ -7913,8 +8685,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7913
8685
  addressLine2?: string | null | undefined;
7914
8686
  addressLine3?: string | null | undefined;
7915
8687
  postcodeOrZip?: string | null | undefined;
7916
- }>]>>>;
7917
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8688
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8689
+ firstname: z.ZodString;
8690
+ surname: z.ZodString;
8691
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8692
+ }, "strip", z.ZodTypeAny, {
8693
+ firstname: string;
8694
+ surname: string;
8695
+ middlename?: string | null | undefined;
8696
+ }, {
8697
+ firstname: string;
8698
+ surname: string;
8699
+ middlename?: string | null | undefined;
8700
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8701
+ originalActionId: z.ZodOptional<z.ZodString>;
7918
8702
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7919
8703
  }, {
7920
8704
  type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
@@ -7936,6 +8720,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7936
8720
  residentialArea?: string | null | undefined;
7937
8721
  street?: string | null | undefined;
7938
8722
  zipCode?: string | null | undefined;
8723
+ } | {
8724
+ firstname: string;
8725
+ surname: string;
8726
+ middlename?: string | null | undefined;
7939
8727
  } | {
7940
8728
  country: string;
7941
8729
  district: string;
@@ -7958,8 +8746,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7958
8746
  option: string;
7959
8747
  filename: string;
7960
8748
  originalFilename: string;
7961
- }[] | [string, string] | undefined>;
7962
- eventId: string & z.BRAND<"UUID">;
8749
+ }[] | [string, string] | null | undefined>;
8750
+ eventId: string;
7963
8751
  annotation?: Record<string, string | number | boolean | {
7964
8752
  type: string;
7965
8753
  filename: string;
@@ -7975,6 +8763,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7975
8763
  residentialArea?: string | null | undefined;
7976
8764
  street?: string | null | undefined;
7977
8765
  zipCode?: string | null | undefined;
8766
+ } | {
8767
+ firstname: string;
8768
+ surname: string;
8769
+ middlename?: string | null | undefined;
7978
8770
  } | {
7979
8771
  country: string;
7980
8772
  district: string;
@@ -7997,8 +8789,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7997
8789
  option: string;
7998
8790
  filename: string;
7999
8791
  originalFilename: string;
8000
- }[] | [string, string] | undefined> | undefined;
8001
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8792
+ }[] | [string, string] | null | undefined> | undefined;
8793
+ originalActionId?: string | undefined;
8002
8794
  keepAssignment?: boolean | undefined;
8003
8795
  }, {
8004
8796
  transactionId: string;
@@ -8019,6 +8811,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8019
8811
  residentialArea?: string | null | undefined;
8020
8812
  street?: string | null | undefined;
8021
8813
  zipCode?: string | null | undefined;
8814
+ } | {
8815
+ firstname: string;
8816
+ surname: string;
8817
+ middlename?: string | null | undefined;
8022
8818
  } | {
8023
8819
  country: string;
8024
8820
  district: string;
@@ -8041,7 +8837,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8041
8837
  option: string;
8042
8838
  filename: string;
8043
8839
  originalFilename: string;
8044
- }[] | [string, string] | undefined> | undefined;
8840
+ }[] | [string, string] | null | undefined> | undefined;
8045
8841
  annotation?: Record<string, string | number | boolean | {
8046
8842
  type: string;
8047
8843
  filename: string;
@@ -8057,6 +8853,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8057
8853
  residentialArea?: string | null | undefined;
8058
8854
  street?: string | null | undefined;
8059
8855
  zipCode?: string | null | undefined;
8856
+ } | {
8857
+ firstname: string;
8858
+ surname: string;
8859
+ middlename?: string | null | undefined;
8060
8860
  } | {
8061
8861
  country: string;
8062
8862
  district: string;
@@ -8079,11 +8879,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8079
8879
  option: string;
8080
8880
  filename: string;
8081
8881
  originalFilename: string;
8082
- }[] | [string, string] | undefined> | undefined;
8882
+ }[] | [string, string] | null | undefined> | undefined;
8083
8883
  originalActionId?: string | undefined;
8084
8884
  keepAssignment?: boolean | undefined;
8085
8885
  }>, z.ZodObject<z.objectUtil.extendShape<{
8086
- eventId: z.ZodBranded<z.ZodString, "UUID">;
8886
+ eventId: z.ZodString;
8087
8887
  transactionId: z.ZodString;
8088
8888
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
8089
8889
  filename: z.ZodString;
@@ -8198,7 +8998,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8198
8998
  addressLine2?: string | null | undefined;
8199
8999
  addressLine3?: string | null | undefined;
8200
9000
  postcodeOrZip?: string | null | undefined;
8201
- }>]>>>;
9001
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9002
+ firstname: z.ZodString;
9003
+ surname: z.ZodString;
9004
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9005
+ }, "strip", z.ZodTypeAny, {
9006
+ firstname: string;
9007
+ surname: string;
9008
+ middlename?: string | null | undefined;
9009
+ }, {
9010
+ firstname: string;
9011
+ surname: string;
9012
+ middlename?: string | null | undefined;
9013
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8202
9014
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
8203
9015
  filename: z.ZodString;
8204
9016
  originalFilename: z.ZodString;
@@ -8312,8 +9124,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8312
9124
  addressLine2?: string | null | undefined;
8313
9125
  addressLine3?: string | null | undefined;
8314
9126
  postcodeOrZip?: string | null | undefined;
8315
- }>]>>>;
8316
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9127
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9128
+ firstname: z.ZodString;
9129
+ surname: z.ZodString;
9130
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9131
+ }, "strip", z.ZodTypeAny, {
9132
+ firstname: string;
9133
+ surname: string;
9134
+ middlename?: string | null | undefined;
9135
+ }, {
9136
+ firstname: string;
9137
+ surname: string;
9138
+ middlename?: string | null | undefined;
9139
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9140
+ originalActionId: z.ZodOptional<z.ZodString>;
8317
9141
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8318
9142
  }, {
8319
9143
  type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
@@ -8349,6 +9173,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8349
9173
  residentialArea?: string | null | undefined;
8350
9174
  street?: string | null | undefined;
8351
9175
  zipCode?: string | null | undefined;
9176
+ } | {
9177
+ firstname: string;
9178
+ surname: string;
9179
+ middlename?: string | null | undefined;
8352
9180
  } | {
8353
9181
  country: string;
8354
9182
  district: string;
@@ -8371,8 +9199,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8371
9199
  option: string;
8372
9200
  filename: string;
8373
9201
  originalFilename: string;
8374
- }[] | [string, string] | undefined>;
8375
- eventId: string & z.BRAND<"UUID">;
9202
+ }[] | [string, string] | null | undefined>;
9203
+ eventId: string;
8376
9204
  annotation?: Record<string, string | number | boolean | {
8377
9205
  type: string;
8378
9206
  filename: string;
@@ -8388,6 +9216,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8388
9216
  residentialArea?: string | null | undefined;
8389
9217
  street?: string | null | undefined;
8390
9218
  zipCode?: string | null | undefined;
9219
+ } | {
9220
+ firstname: string;
9221
+ surname: string;
9222
+ middlename?: string | null | undefined;
8391
9223
  } | {
8392
9224
  country: string;
8393
9225
  district: string;
@@ -8410,8 +9242,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8410
9242
  option: string;
8411
9243
  filename: string;
8412
9244
  originalFilename: string;
8413
- }[] | [string, string] | undefined> | undefined;
8414
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9245
+ }[] | [string, string] | null | undefined> | undefined;
9246
+ originalActionId?: string | undefined;
8415
9247
  keepAssignment?: boolean | undefined;
8416
9248
  }, {
8417
9249
  reason: {
@@ -8436,6 +9268,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8436
9268
  residentialArea?: string | null | undefined;
8437
9269
  street?: string | null | undefined;
8438
9270
  zipCode?: string | null | undefined;
9271
+ } | {
9272
+ firstname: string;
9273
+ surname: string;
9274
+ middlename?: string | null | undefined;
8439
9275
  } | {
8440
9276
  country: string;
8441
9277
  district: string;
@@ -8458,7 +9294,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8458
9294
  option: string;
8459
9295
  filename: string;
8460
9296
  originalFilename: string;
8461
- }[] | [string, string] | undefined> | undefined;
9297
+ }[] | [string, string] | null | undefined> | undefined;
8462
9298
  annotation?: Record<string, string | number | boolean | {
8463
9299
  type: string;
8464
9300
  filename: string;
@@ -8474,6 +9310,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8474
9310
  residentialArea?: string | null | undefined;
8475
9311
  street?: string | null | undefined;
8476
9312
  zipCode?: string | null | undefined;
9313
+ } | {
9314
+ firstname: string;
9315
+ surname: string;
9316
+ middlename?: string | null | undefined;
8477
9317
  } | {
8478
9318
  country: string;
8479
9319
  district: string;
@@ -8496,11 +9336,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8496
9336
  option: string;
8497
9337
  filename: string;
8498
9338
  originalFilename: string;
8499
- }[] | [string, string] | undefined> | undefined;
9339
+ }[] | [string, string] | null | undefined> | undefined;
8500
9340
  originalActionId?: string | undefined;
8501
9341
  keepAssignment?: boolean | undefined;
8502
9342
  }>, z.ZodObject<z.objectUtil.extendShape<{
8503
- eventId: z.ZodBranded<z.ZodString, "UUID">;
9343
+ eventId: z.ZodString;
8504
9344
  transactionId: z.ZodString;
8505
9345
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
8506
9346
  filename: z.ZodString;
@@ -8615,7 +9455,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8615
9455
  addressLine2?: string | null | undefined;
8616
9456
  addressLine3?: string | null | undefined;
8617
9457
  postcodeOrZip?: string | null | undefined;
8618
- }>]>>>;
9458
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9459
+ firstname: z.ZodString;
9460
+ surname: z.ZodString;
9461
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9462
+ }, "strip", z.ZodTypeAny, {
9463
+ firstname: string;
9464
+ surname: string;
9465
+ middlename?: string | null | undefined;
9466
+ }, {
9467
+ firstname: string;
9468
+ surname: string;
9469
+ middlename?: string | null | undefined;
9470
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8619
9471
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
8620
9472
  filename: z.ZodString;
8621
9473
  originalFilename: z.ZodString;
@@ -8729,8 +9581,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8729
9581
  addressLine2?: string | null | undefined;
8730
9582
  addressLine3?: string | null | undefined;
8731
9583
  postcodeOrZip?: string | null | undefined;
8732
- }>]>>>;
8733
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9584
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9585
+ firstname: z.ZodString;
9586
+ surname: z.ZodString;
9587
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9588
+ }, "strip", z.ZodTypeAny, {
9589
+ firstname: string;
9590
+ surname: string;
9591
+ middlename?: string | null | undefined;
9592
+ }, {
9593
+ firstname: string;
9594
+ surname: string;
9595
+ middlename?: string | null | undefined;
9596
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9597
+ originalActionId: z.ZodOptional<z.ZodString>;
8734
9598
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8735
9599
  }, {
8736
9600
  type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
@@ -8752,6 +9616,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8752
9616
  residentialArea?: string | null | undefined;
8753
9617
  street?: string | null | undefined;
8754
9618
  zipCode?: string | null | undefined;
9619
+ } | {
9620
+ firstname: string;
9621
+ surname: string;
9622
+ middlename?: string | null | undefined;
8755
9623
  } | {
8756
9624
  country: string;
8757
9625
  district: string;
@@ -8774,8 +9642,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8774
9642
  option: string;
8775
9643
  filename: string;
8776
9644
  originalFilename: string;
8777
- }[] | [string, string] | undefined>;
8778
- eventId: string & z.BRAND<"UUID">;
9645
+ }[] | [string, string] | null | undefined>;
9646
+ eventId: string;
8779
9647
  annotation?: Record<string, string | number | boolean | {
8780
9648
  type: string;
8781
9649
  filename: string;
@@ -8791,6 +9659,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8791
9659
  residentialArea?: string | null | undefined;
8792
9660
  street?: string | null | undefined;
8793
9661
  zipCode?: string | null | undefined;
9662
+ } | {
9663
+ firstname: string;
9664
+ surname: string;
9665
+ middlename?: string | null | undefined;
8794
9666
  } | {
8795
9667
  country: string;
8796
9668
  district: string;
@@ -8813,8 +9685,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8813
9685
  option: string;
8814
9686
  filename: string;
8815
9687
  originalFilename: string;
8816
- }[] | [string, string] | undefined> | undefined;
8817
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9688
+ }[] | [string, string] | null | undefined> | undefined;
9689
+ originalActionId?: string | undefined;
8818
9690
  keepAssignment?: boolean | undefined;
8819
9691
  }, {
8820
9692
  transactionId: string;
@@ -8835,6 +9707,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8835
9707
  residentialArea?: string | null | undefined;
8836
9708
  street?: string | null | undefined;
8837
9709
  zipCode?: string | null | undefined;
9710
+ } | {
9711
+ firstname: string;
9712
+ surname: string;
9713
+ middlename?: string | null | undefined;
8838
9714
  } | {
8839
9715
  country: string;
8840
9716
  district: string;
@@ -8857,7 +9733,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8857
9733
  option: string;
8858
9734
  filename: string;
8859
9735
  originalFilename: string;
8860
- }[] | [string, string] | undefined> | undefined;
9736
+ }[] | [string, string] | null | undefined> | undefined;
8861
9737
  annotation?: Record<string, string | number | boolean | {
8862
9738
  type: string;
8863
9739
  filename: string;
@@ -8873,6 +9749,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8873
9749
  residentialArea?: string | null | undefined;
8874
9750
  street?: string | null | undefined;
8875
9751
  zipCode?: string | null | undefined;
9752
+ } | {
9753
+ firstname: string;
9754
+ surname: string;
9755
+ middlename?: string | null | undefined;
8876
9756
  } | {
8877
9757
  country: string;
8878
9758
  district: string;
@@ -8895,11 +9775,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8895
9775
  option: string;
8896
9776
  filename: string;
8897
9777
  originalFilename: string;
8898
- }[] | [string, string] | undefined> | undefined;
9778
+ }[] | [string, string] | null | undefined> | undefined;
8899
9779
  originalActionId?: string | undefined;
8900
9780
  keepAssignment?: boolean | undefined;
8901
9781
  }>, z.ZodObject<z.objectUtil.extendShape<{
8902
- eventId: z.ZodBranded<z.ZodString, "UUID">;
9782
+ eventId: z.ZodString;
8903
9783
  transactionId: z.ZodString;
8904
9784
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
8905
9785
  filename: z.ZodString;
@@ -9014,7 +9894,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9014
9894
  addressLine2?: string | null | undefined;
9015
9895
  addressLine3?: string | null | undefined;
9016
9896
  postcodeOrZip?: string | null | undefined;
9017
- }>]>>>;
9897
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9898
+ firstname: z.ZodString;
9899
+ surname: z.ZodString;
9900
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9901
+ }, "strip", z.ZodTypeAny, {
9902
+ firstname: string;
9903
+ surname: string;
9904
+ middlename?: string | null | undefined;
9905
+ }, {
9906
+ firstname: string;
9907
+ surname: string;
9908
+ middlename?: string | null | undefined;
9909
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9018
9910
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
9019
9911
  filename: z.ZodString;
9020
9912
  originalFilename: z.ZodString;
@@ -9128,8 +10020,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9128
10020
  addressLine2?: string | null | undefined;
9129
10021
  addressLine3?: string | null | undefined;
9130
10022
  postcodeOrZip?: string | null | undefined;
9131
- }>]>>>;
9132
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10023
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10024
+ firstname: z.ZodString;
10025
+ surname: z.ZodString;
10026
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10027
+ }, "strip", z.ZodTypeAny, {
10028
+ firstname: string;
10029
+ surname: string;
10030
+ middlename?: string | null | undefined;
10031
+ }, {
10032
+ firstname: string;
10033
+ surname: string;
10034
+ middlename?: string | null | undefined;
10035
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10036
+ originalActionId: z.ZodOptional<z.ZodString>;
9133
10037
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9134
10038
  }, {
9135
10039
  type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
@@ -9165,6 +10069,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9165
10069
  residentialArea?: string | null | undefined;
9166
10070
  street?: string | null | undefined;
9167
10071
  zipCode?: string | null | undefined;
10072
+ } | {
10073
+ firstname: string;
10074
+ surname: string;
10075
+ middlename?: string | null | undefined;
9168
10076
  } | {
9169
10077
  country: string;
9170
10078
  district: string;
@@ -9187,8 +10095,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9187
10095
  option: string;
9188
10096
  filename: string;
9189
10097
  originalFilename: string;
9190
- }[] | [string, string] | undefined>;
9191
- eventId: string & z.BRAND<"UUID">;
10098
+ }[] | [string, string] | null | undefined>;
10099
+ eventId: string;
9192
10100
  annotation?: Record<string, string | number | boolean | {
9193
10101
  type: string;
9194
10102
  filename: string;
@@ -9204,6 +10112,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9204
10112
  residentialArea?: string | null | undefined;
9205
10113
  street?: string | null | undefined;
9206
10114
  zipCode?: string | null | undefined;
10115
+ } | {
10116
+ firstname: string;
10117
+ surname: string;
10118
+ middlename?: string | null | undefined;
9207
10119
  } | {
9208
10120
  country: string;
9209
10121
  district: string;
@@ -9226,8 +10138,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9226
10138
  option: string;
9227
10139
  filename: string;
9228
10140
  originalFilename: string;
9229
- }[] | [string, string] | undefined> | undefined;
9230
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10141
+ }[] | [string, string] | null | undefined> | undefined;
10142
+ originalActionId?: string | undefined;
9231
10143
  keepAssignment?: boolean | undefined;
9232
10144
  }, {
9233
10145
  reason: {
@@ -9252,6 +10164,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9252
10164
  residentialArea?: string | null | undefined;
9253
10165
  street?: string | null | undefined;
9254
10166
  zipCode?: string | null | undefined;
10167
+ } | {
10168
+ firstname: string;
10169
+ surname: string;
10170
+ middlename?: string | null | undefined;
9255
10171
  } | {
9256
10172
  country: string;
9257
10173
  district: string;
@@ -9274,7 +10190,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9274
10190
  option: string;
9275
10191
  filename: string;
9276
10192
  originalFilename: string;
9277
- }[] | [string, string] | undefined> | undefined;
10193
+ }[] | [string, string] | null | undefined> | undefined;
9278
10194
  annotation?: Record<string, string | number | boolean | {
9279
10195
  type: string;
9280
10196
  filename: string;
@@ -9290,6 +10206,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9290
10206
  residentialArea?: string | null | undefined;
9291
10207
  street?: string | null | undefined;
9292
10208
  zipCode?: string | null | undefined;
10209
+ } | {
10210
+ firstname: string;
10211
+ surname: string;
10212
+ middlename?: string | null | undefined;
9293
10213
  } | {
9294
10214
  country: string;
9295
10215
  district: string;
@@ -9312,11 +10232,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9312
10232
  option: string;
9313
10233
  filename: string;
9314
10234
  originalFilename: string;
9315
- }[] | [string, string] | undefined> | undefined;
10235
+ }[] | [string, string] | null | undefined> | undefined;
9316
10236
  originalActionId?: string | undefined;
9317
10237
  keepAssignment?: boolean | undefined;
9318
10238
  }>, z.ZodObject<z.objectUtil.extendShape<{
9319
- eventId: z.ZodBranded<z.ZodString, "UUID">;
10239
+ eventId: z.ZodString;
9320
10240
  transactionId: z.ZodString;
9321
10241
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
9322
10242
  filename: z.ZodString;
@@ -9431,7 +10351,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9431
10351
  addressLine2?: string | null | undefined;
9432
10352
  addressLine3?: string | null | undefined;
9433
10353
  postcodeOrZip?: string | null | undefined;
9434
- }>]>>>;
10354
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10355
+ firstname: z.ZodString;
10356
+ surname: z.ZodString;
10357
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10358
+ }, "strip", z.ZodTypeAny, {
10359
+ firstname: string;
10360
+ surname: string;
10361
+ middlename?: string | null | undefined;
10362
+ }, {
10363
+ firstname: string;
10364
+ surname: string;
10365
+ middlename?: string | null | undefined;
10366
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9435
10367
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
9436
10368
  filename: z.ZodString;
9437
10369
  originalFilename: z.ZodString;
@@ -9545,8 +10477,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9545
10477
  addressLine2?: string | null | undefined;
9546
10478
  addressLine3?: string | null | undefined;
9547
10479
  postcodeOrZip?: string | null | undefined;
9548
- }>]>>>;
9549
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10480
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10481
+ firstname: z.ZodString;
10482
+ surname: z.ZodString;
10483
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10484
+ }, "strip", z.ZodTypeAny, {
10485
+ firstname: string;
10486
+ surname: string;
10487
+ middlename?: string | null | undefined;
10488
+ }, {
10489
+ firstname: string;
10490
+ surname: string;
10491
+ middlename?: string | null | undefined;
10492
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10493
+ originalActionId: z.ZodOptional<z.ZodString>;
9550
10494
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9551
10495
  }, {
9552
10496
  type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
@@ -9569,6 +10513,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9569
10513
  residentialArea?: string | null | undefined;
9570
10514
  street?: string | null | undefined;
9571
10515
  zipCode?: string | null | undefined;
10516
+ } | {
10517
+ firstname: string;
10518
+ surname: string;
10519
+ middlename?: string | null | undefined;
9572
10520
  } | {
9573
10521
  country: string;
9574
10522
  district: string;
@@ -9591,9 +10539,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9591
10539
  option: string;
9592
10540
  filename: string;
9593
10541
  originalFilename: string;
9594
- }[] | [string, string] | undefined>;
10542
+ }[] | [string, string] | null | undefined>;
9595
10543
  assignedTo: string;
9596
- eventId: string & z.BRAND<"UUID">;
10544
+ eventId: string;
9597
10545
  annotation?: Record<string, string | number | boolean | {
9598
10546
  type: string;
9599
10547
  filename: string;
@@ -9609,6 +10557,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9609
10557
  residentialArea?: string | null | undefined;
9610
10558
  street?: string | null | undefined;
9611
10559
  zipCode?: string | null | undefined;
10560
+ } | {
10561
+ firstname: string;
10562
+ surname: string;
10563
+ middlename?: string | null | undefined;
9612
10564
  } | {
9613
10565
  country: string;
9614
10566
  district: string;
@@ -9631,8 +10583,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9631
10583
  option: string;
9632
10584
  filename: string;
9633
10585
  originalFilename: string;
9634
- }[] | [string, string] | undefined> | undefined;
9635
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10586
+ }[] | [string, string] | null | undefined> | undefined;
10587
+ originalActionId?: string | undefined;
9636
10588
  keepAssignment?: boolean | undefined;
9637
10589
  }, {
9638
10590
  transactionId: string;
@@ -9654,6 +10606,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9654
10606
  residentialArea?: string | null | undefined;
9655
10607
  street?: string | null | undefined;
9656
10608
  zipCode?: string | null | undefined;
10609
+ } | {
10610
+ firstname: string;
10611
+ surname: string;
10612
+ middlename?: string | null | undefined;
9657
10613
  } | {
9658
10614
  country: string;
9659
10615
  district: string;
@@ -9676,7 +10632,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9676
10632
  option: string;
9677
10633
  filename: string;
9678
10634
  originalFilename: string;
9679
- }[] | [string, string] | undefined> | undefined;
10635
+ }[] | [string, string] | null | undefined> | undefined;
9680
10636
  annotation?: Record<string, string | number | boolean | {
9681
10637
  type: string;
9682
10638
  filename: string;
@@ -9692,6 +10648,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9692
10648
  residentialArea?: string | null | undefined;
9693
10649
  street?: string | null | undefined;
9694
10650
  zipCode?: string | null | undefined;
10651
+ } | {
10652
+ firstname: string;
10653
+ surname: string;
10654
+ middlename?: string | null | undefined;
9695
10655
  } | {
9696
10656
  country: string;
9697
10657
  district: string;
@@ -9714,11 +10674,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9714
10674
  option: string;
9715
10675
  filename: string;
9716
10676
  originalFilename: string;
9717
- }[] | [string, string] | undefined> | undefined;
10677
+ }[] | [string, string] | null | undefined> | undefined;
9718
10678
  originalActionId?: string | undefined;
9719
10679
  keepAssignment?: boolean | undefined;
9720
10680
  }>, z.ZodObject<z.objectUtil.extendShape<{
9721
- eventId: z.ZodBranded<z.ZodString, "UUID">;
10681
+ eventId: z.ZodString;
9722
10682
  transactionId: z.ZodString;
9723
10683
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
9724
10684
  filename: z.ZodString;
@@ -9833,7 +10793,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9833
10793
  addressLine2?: string | null | undefined;
9834
10794
  addressLine3?: string | null | undefined;
9835
10795
  postcodeOrZip?: string | null | undefined;
9836
- }>]>>>;
10796
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10797
+ firstname: z.ZodString;
10798
+ surname: z.ZodString;
10799
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10800
+ }, "strip", z.ZodTypeAny, {
10801
+ firstname: string;
10802
+ surname: string;
10803
+ middlename?: string | null | undefined;
10804
+ }, {
10805
+ firstname: string;
10806
+ surname: string;
10807
+ middlename?: string | null | undefined;
10808
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9837
10809
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
9838
10810
  filename: z.ZodString;
9839
10811
  originalFilename: z.ZodString;
@@ -9947,8 +10919,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9947
10919
  addressLine2?: string | null | undefined;
9948
10920
  addressLine3?: string | null | undefined;
9949
10921
  postcodeOrZip?: string | null | undefined;
9950
- }>]>>>;
9951
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10922
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10923
+ firstname: z.ZodString;
10924
+ surname: z.ZodString;
10925
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10926
+ }, "strip", z.ZodTypeAny, {
10927
+ firstname: string;
10928
+ surname: string;
10929
+ middlename?: string | null | undefined;
10930
+ }, {
10931
+ firstname: string;
10932
+ surname: string;
10933
+ middlename?: string | null | undefined;
10934
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10935
+ originalActionId: z.ZodOptional<z.ZodString>;
9952
10936
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9953
10937
  }, {
9954
10938
  type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
@@ -9971,6 +10955,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9971
10955
  residentialArea?: string | null | undefined;
9972
10956
  street?: string | null | undefined;
9973
10957
  zipCode?: string | null | undefined;
10958
+ } | {
10959
+ firstname: string;
10960
+ surname: string;
10961
+ middlename?: string | null | undefined;
9974
10962
  } | {
9975
10963
  country: string;
9976
10964
  district: string;
@@ -9993,9 +10981,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9993
10981
  option: string;
9994
10982
  filename: string;
9995
10983
  originalFilename: string;
9996
- }[] | [string, string] | undefined>;
10984
+ }[] | [string, string] | null | undefined>;
9997
10985
  assignedTo: null;
9998
- eventId: string & z.BRAND<"UUID">;
10986
+ eventId: string;
9999
10987
  annotation?: Record<string, string | number | boolean | {
10000
10988
  type: string;
10001
10989
  filename: string;
@@ -10011,6 +10999,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10011
10999
  residentialArea?: string | null | undefined;
10012
11000
  street?: string | null | undefined;
10013
11001
  zipCode?: string | null | undefined;
11002
+ } | {
11003
+ firstname: string;
11004
+ surname: string;
11005
+ middlename?: string | null | undefined;
10014
11006
  } | {
10015
11007
  country: string;
10016
11008
  district: string;
@@ -10033,8 +11025,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10033
11025
  option: string;
10034
11026
  filename: string;
10035
11027
  originalFilename: string;
10036
- }[] | [string, string] | undefined> | undefined;
10037
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11028
+ }[] | [string, string] | null | undefined> | undefined;
11029
+ originalActionId?: string | undefined;
10038
11030
  keepAssignment?: boolean | undefined;
10039
11031
  }, {
10040
11032
  transactionId: string;
@@ -10055,6 +11047,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10055
11047
  residentialArea?: string | null | undefined;
10056
11048
  street?: string | null | undefined;
10057
11049
  zipCode?: string | null | undefined;
11050
+ } | {
11051
+ firstname: string;
11052
+ surname: string;
11053
+ middlename?: string | null | undefined;
10058
11054
  } | {
10059
11055
  country: string;
10060
11056
  district: string;
@@ -10077,7 +11073,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10077
11073
  option: string;
10078
11074
  filename: string;
10079
11075
  originalFilename: string;
10080
- }[] | [string, string] | undefined> | undefined;
11076
+ }[] | [string, string] | null | undefined> | undefined;
10081
11077
  annotation?: Record<string, string | number | boolean | {
10082
11078
  type: string;
10083
11079
  filename: string;
@@ -10093,6 +11089,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10093
11089
  residentialArea?: string | null | undefined;
10094
11090
  street?: string | null | undefined;
10095
11091
  zipCode?: string | null | undefined;
11092
+ } | {
11093
+ firstname: string;
11094
+ surname: string;
11095
+ middlename?: string | null | undefined;
10096
11096
  } | {
10097
11097
  country: string;
10098
11098
  district: string;
@@ -10115,12 +11115,12 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10115
11115
  option: string;
10116
11116
  filename: string;
10117
11117
  originalFilename: string;
10118
- }[] | [string, string] | undefined> | undefined;
11118
+ }[] | [string, string] | null | undefined> | undefined;
10119
11119
  originalActionId?: string | undefined;
10120
11120
  assignedTo?: null | undefined;
10121
11121
  keepAssignment?: boolean | undefined;
10122
11122
  }>, z.ZodObject<z.objectUtil.extendShape<{
10123
- eventId: z.ZodBranded<z.ZodString, "UUID">;
11123
+ eventId: z.ZodString;
10124
11124
  transactionId: z.ZodString;
10125
11125
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
10126
11126
  filename: z.ZodString;
@@ -10235,7 +11235,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10235
11235
  addressLine2?: string | null | undefined;
10236
11236
  addressLine3?: string | null | undefined;
10237
11237
  postcodeOrZip?: string | null | undefined;
10238
- }>]>>>;
11238
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11239
+ firstname: z.ZodString;
11240
+ surname: z.ZodString;
11241
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11242
+ }, "strip", z.ZodTypeAny, {
11243
+ firstname: string;
11244
+ surname: string;
11245
+ middlename?: string | null | undefined;
11246
+ }, {
11247
+ firstname: string;
11248
+ surname: string;
11249
+ middlename?: string | null | undefined;
11250
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10239
11251
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
10240
11252
  filename: z.ZodString;
10241
11253
  originalFilename: z.ZodString;
@@ -10349,8 +11361,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10349
11361
  addressLine2?: string | null | undefined;
10350
11362
  addressLine3?: string | null | undefined;
10351
11363
  postcodeOrZip?: string | null | undefined;
10352
- }>]>>>;
10353
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11364
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11365
+ firstname: z.ZodString;
11366
+ surname: z.ZodString;
11367
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11368
+ }, "strip", z.ZodTypeAny, {
11369
+ firstname: string;
11370
+ surname: string;
11371
+ middlename?: string | null | undefined;
11372
+ }, {
11373
+ firstname: string;
11374
+ surname: string;
11375
+ middlename?: string | null | undefined;
11376
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11377
+ originalActionId: z.ZodOptional<z.ZodString>;
10354
11378
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10355
11379
  }, {
10356
11380
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
@@ -10372,6 +11396,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10372
11396
  residentialArea?: string | null | undefined;
10373
11397
  street?: string | null | undefined;
10374
11398
  zipCode?: string | null | undefined;
11399
+ } | {
11400
+ firstname: string;
11401
+ surname: string;
11402
+ middlename?: string | null | undefined;
10375
11403
  } | {
10376
11404
  country: string;
10377
11405
  district: string;
@@ -10394,8 +11422,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10394
11422
  option: string;
10395
11423
  filename: string;
10396
11424
  originalFilename: string;
10397
- }[] | [string, string] | undefined>;
10398
- eventId: string & z.BRAND<"UUID">;
11425
+ }[] | [string, string] | null | undefined>;
11426
+ eventId: string;
10399
11427
  annotation?: Record<string, string | number | boolean | {
10400
11428
  type: string;
10401
11429
  filename: string;
@@ -10411,6 +11439,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10411
11439
  residentialArea?: string | null | undefined;
10412
11440
  street?: string | null | undefined;
10413
11441
  zipCode?: string | null | undefined;
11442
+ } | {
11443
+ firstname: string;
11444
+ surname: string;
11445
+ middlename?: string | null | undefined;
10414
11446
  } | {
10415
11447
  country: string;
10416
11448
  district: string;
@@ -10433,8 +11465,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10433
11465
  option: string;
10434
11466
  filename: string;
10435
11467
  originalFilename: string;
10436
- }[] | [string, string] | undefined> | undefined;
10437
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11468
+ }[] | [string, string] | null | undefined> | undefined;
11469
+ originalActionId?: string | undefined;
10438
11470
  keepAssignment?: boolean | undefined;
10439
11471
  }, {
10440
11472
  transactionId: string;
@@ -10455,6 +11487,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10455
11487
  residentialArea?: string | null | undefined;
10456
11488
  street?: string | null | undefined;
10457
11489
  zipCode?: string | null | undefined;
11490
+ } | {
11491
+ firstname: string;
11492
+ surname: string;
11493
+ middlename?: string | null | undefined;
10458
11494
  } | {
10459
11495
  country: string;
10460
11496
  district: string;
@@ -10477,7 +11513,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10477
11513
  option: string;
10478
11514
  filename: string;
10479
11515
  originalFilename: string;
10480
- }[] | [string, string] | undefined> | undefined;
11516
+ }[] | [string, string] | null | undefined> | undefined;
10481
11517
  annotation?: Record<string, string | number | boolean | {
10482
11518
  type: string;
10483
11519
  filename: string;
@@ -10493,6 +11529,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10493
11529
  residentialArea?: string | null | undefined;
10494
11530
  street?: string | null | undefined;
10495
11531
  zipCode?: string | null | undefined;
11532
+ } | {
11533
+ firstname: string;
11534
+ surname: string;
11535
+ middlename?: string | null | undefined;
10496
11536
  } | {
10497
11537
  country: string;
10498
11538
  district: string;
@@ -10515,11 +11555,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10515
11555
  option: string;
10516
11556
  filename: string;
10517
11557
  originalFilename: string;
10518
- }[] | [string, string] | undefined> | undefined;
11558
+ }[] | [string, string] | null | undefined> | undefined;
10519
11559
  originalActionId?: string | undefined;
10520
11560
  keepAssignment?: boolean | undefined;
10521
11561
  }>, z.ZodObject<z.objectUtil.extendShape<{
10522
- eventId: z.ZodBranded<z.ZodString, "UUID">;
11562
+ eventId: z.ZodString;
10523
11563
  transactionId: z.ZodString;
10524
11564
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
10525
11565
  filename: z.ZodString;
@@ -10634,7 +11674,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10634
11674
  addressLine2?: string | null | undefined;
10635
11675
  addressLine3?: string | null | undefined;
10636
11676
  postcodeOrZip?: string | null | undefined;
10637
- }>]>>>;
11677
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11678
+ firstname: z.ZodString;
11679
+ surname: z.ZodString;
11680
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11681
+ }, "strip", z.ZodTypeAny, {
11682
+ firstname: string;
11683
+ surname: string;
11684
+ middlename?: string | null | undefined;
11685
+ }, {
11686
+ firstname: string;
11687
+ surname: string;
11688
+ middlename?: string | null | undefined;
11689
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10638
11690
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
10639
11691
  filename: z.ZodString;
10640
11692
  originalFilename: z.ZodString;
@@ -10748,8 +11800,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10748
11800
  addressLine2?: string | null | undefined;
10749
11801
  addressLine3?: string | null | undefined;
10750
11802
  postcodeOrZip?: string | null | undefined;
10751
- }>]>>>;
10752
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11803
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11804
+ firstname: z.ZodString;
11805
+ surname: z.ZodString;
11806
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11807
+ }, "strip", z.ZodTypeAny, {
11808
+ firstname: string;
11809
+ surname: string;
11810
+ middlename?: string | null | undefined;
11811
+ }, {
11812
+ firstname: string;
11813
+ surname: string;
11814
+ middlename?: string | null | undefined;
11815
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11816
+ originalActionId: z.ZodOptional<z.ZodString>;
10753
11817
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10754
11818
  }, {
10755
11819
  type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
@@ -10771,6 +11835,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10771
11835
  residentialArea?: string | null | undefined;
10772
11836
  street?: string | null | undefined;
10773
11837
  zipCode?: string | null | undefined;
11838
+ } | {
11839
+ firstname: string;
11840
+ surname: string;
11841
+ middlename?: string | null | undefined;
10774
11842
  } | {
10775
11843
  country: string;
10776
11844
  district: string;
@@ -10793,8 +11861,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10793
11861
  option: string;
10794
11862
  filename: string;
10795
11863
  originalFilename: string;
10796
- }[] | [string, string] | undefined>;
10797
- eventId: string & z.BRAND<"UUID">;
11864
+ }[] | [string, string] | null | undefined>;
11865
+ eventId: string;
10798
11866
  annotation?: Record<string, string | number | boolean | {
10799
11867
  type: string;
10800
11868
  filename: string;
@@ -10810,6 +11878,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10810
11878
  residentialArea?: string | null | undefined;
10811
11879
  street?: string | null | undefined;
10812
11880
  zipCode?: string | null | undefined;
11881
+ } | {
11882
+ firstname: string;
11883
+ surname: string;
11884
+ middlename?: string | null | undefined;
10813
11885
  } | {
10814
11886
  country: string;
10815
11887
  district: string;
@@ -10832,8 +11904,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10832
11904
  option: string;
10833
11905
  filename: string;
10834
11906
  originalFilename: string;
10835
- }[] | [string, string] | undefined> | undefined;
10836
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11907
+ }[] | [string, string] | null | undefined> | undefined;
11908
+ originalActionId?: string | undefined;
10837
11909
  keepAssignment?: boolean | undefined;
10838
11910
  }, {
10839
11911
  transactionId: string;
@@ -10854,6 +11926,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10854
11926
  residentialArea?: string | null | undefined;
10855
11927
  street?: string | null | undefined;
10856
11928
  zipCode?: string | null | undefined;
11929
+ } | {
11930
+ firstname: string;
11931
+ surname: string;
11932
+ middlename?: string | null | undefined;
10857
11933
  } | {
10858
11934
  country: string;
10859
11935
  district: string;
@@ -10876,7 +11952,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10876
11952
  option: string;
10877
11953
  filename: string;
10878
11954
  originalFilename: string;
10879
- }[] | [string, string] | undefined> | undefined;
11955
+ }[] | [string, string] | null | undefined> | undefined;
10880
11956
  annotation?: Record<string, string | number | boolean | {
10881
11957
  type: string;
10882
11958
  filename: string;
@@ -10892,6 +11968,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10892
11968
  residentialArea?: string | null | undefined;
10893
11969
  street?: string | null | undefined;
10894
11970
  zipCode?: string | null | undefined;
11971
+ } | {
11972
+ firstname: string;
11973
+ surname: string;
11974
+ middlename?: string | null | undefined;
10895
11975
  } | {
10896
11976
  country: string;
10897
11977
  district: string;
@@ -10914,11 +11994,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10914
11994
  option: string;
10915
11995
  filename: string;
10916
11996
  originalFilename: string;
10917
- }[] | [string, string] | undefined> | undefined;
11997
+ }[] | [string, string] | null | undefined> | undefined;
10918
11998
  originalActionId?: string | undefined;
10919
11999
  keepAssignment?: boolean | undefined;
10920
12000
  }>, z.ZodObject<z.objectUtil.extendShape<{
10921
- eventId: z.ZodBranded<z.ZodString, "UUID">;
12001
+ eventId: z.ZodString;
10922
12002
  transactionId: z.ZodString;
10923
12003
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
10924
12004
  filename: z.ZodString;
@@ -11033,7 +12113,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11033
12113
  addressLine2?: string | null | undefined;
11034
12114
  addressLine3?: string | null | undefined;
11035
12115
  postcodeOrZip?: string | null | undefined;
11036
- }>]>>>;
12116
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12117
+ firstname: z.ZodString;
12118
+ surname: z.ZodString;
12119
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12120
+ }, "strip", z.ZodTypeAny, {
12121
+ firstname: string;
12122
+ surname: string;
12123
+ middlename?: string | null | undefined;
12124
+ }, {
12125
+ firstname: string;
12126
+ surname: string;
12127
+ middlename?: string | null | undefined;
12128
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11037
12129
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
11038
12130
  filename: z.ZodString;
11039
12131
  originalFilename: z.ZodString;
@@ -11147,8 +12239,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11147
12239
  addressLine2?: string | null | undefined;
11148
12240
  addressLine3?: string | null | undefined;
11149
12241
  postcodeOrZip?: string | null | undefined;
11150
- }>]>>>;
11151
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12242
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12243
+ firstname: z.ZodString;
12244
+ surname: z.ZodString;
12245
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12246
+ }, "strip", z.ZodTypeAny, {
12247
+ firstname: string;
12248
+ surname: string;
12249
+ middlename?: string | null | undefined;
12250
+ }, {
12251
+ firstname: string;
12252
+ surname: string;
12253
+ middlename?: string | null | undefined;
12254
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12255
+ originalActionId: z.ZodOptional<z.ZodString>;
11152
12256
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11153
12257
  }, {
11154
12258
  requestId: z.ZodString;
@@ -11171,6 +12275,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11171
12275
  residentialArea?: string | null | undefined;
11172
12276
  street?: string | null | undefined;
11173
12277
  zipCode?: string | null | undefined;
12278
+ } | {
12279
+ firstname: string;
12280
+ surname: string;
12281
+ middlename?: string | null | undefined;
11174
12282
  } | {
11175
12283
  country: string;
11176
12284
  district: string;
@@ -11193,9 +12301,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11193
12301
  option: string;
11194
12302
  filename: string;
11195
12303
  originalFilename: string;
11196
- }[] | [string, string] | undefined>;
12304
+ }[] | [string, string] | null | undefined>;
11197
12305
  requestId: string;
11198
- eventId: string & z.BRAND<"UUID">;
12306
+ eventId: string;
11199
12307
  annotation?: Record<string, string | number | boolean | {
11200
12308
  type: string;
11201
12309
  filename: string;
@@ -11211,6 +12319,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11211
12319
  residentialArea?: string | null | undefined;
11212
12320
  street?: string | null | undefined;
11213
12321
  zipCode?: string | null | undefined;
12322
+ } | {
12323
+ firstname: string;
12324
+ surname: string;
12325
+ middlename?: string | null | undefined;
11214
12326
  } | {
11215
12327
  country: string;
11216
12328
  district: string;
@@ -11233,8 +12345,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11233
12345
  option: string;
11234
12346
  filename: string;
11235
12347
  originalFilename: string;
11236
- }[] | [string, string] | undefined> | undefined;
11237
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12348
+ }[] | [string, string] | null | undefined> | undefined;
12349
+ originalActionId?: string | undefined;
11238
12350
  keepAssignment?: boolean | undefined;
11239
12351
  }, {
11240
12352
  transactionId: string;
@@ -11256,6 +12368,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11256
12368
  residentialArea?: string | null | undefined;
11257
12369
  street?: string | null | undefined;
11258
12370
  zipCode?: string | null | undefined;
12371
+ } | {
12372
+ firstname: string;
12373
+ surname: string;
12374
+ middlename?: string | null | undefined;
11259
12375
  } | {
11260
12376
  country: string;
11261
12377
  district: string;
@@ -11278,7 +12394,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11278
12394
  option: string;
11279
12395
  filename: string;
11280
12396
  originalFilename: string;
11281
- }[] | [string, string] | undefined> | undefined;
12397
+ }[] | [string, string] | null | undefined> | undefined;
11282
12398
  annotation?: Record<string, string | number | boolean | {
11283
12399
  type: string;
11284
12400
  filename: string;
@@ -11294,6 +12410,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11294
12410
  residentialArea?: string | null | undefined;
11295
12411
  street?: string | null | undefined;
11296
12412
  zipCode?: string | null | undefined;
12413
+ } | {
12414
+ firstname: string;
12415
+ surname: string;
12416
+ middlename?: string | null | undefined;
11297
12417
  } | {
11298
12418
  country: string;
11299
12419
  district: string;
@@ -11316,11 +12436,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11316
12436
  option: string;
11317
12437
  filename: string;
11318
12438
  originalFilename: string;
11319
- }[] | [string, string] | undefined> | undefined;
12439
+ }[] | [string, string] | null | undefined> | undefined;
11320
12440
  originalActionId?: string | undefined;
11321
12441
  keepAssignment?: boolean | undefined;
11322
12442
  }>, z.ZodObject<z.objectUtil.extendShape<{
11323
- eventId: z.ZodBranded<z.ZodString, "UUID">;
12443
+ eventId: z.ZodString;
11324
12444
  transactionId: z.ZodString;
11325
12445
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
11326
12446
  filename: z.ZodString;
@@ -11435,7 +12555,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11435
12555
  addressLine2?: string | null | undefined;
11436
12556
  addressLine3?: string | null | undefined;
11437
12557
  postcodeOrZip?: string | null | undefined;
11438
- }>]>>>;
12558
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12559
+ firstname: z.ZodString;
12560
+ surname: z.ZodString;
12561
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12562
+ }, "strip", z.ZodTypeAny, {
12563
+ firstname: string;
12564
+ surname: string;
12565
+ middlename?: string | null | undefined;
12566
+ }, {
12567
+ firstname: string;
12568
+ surname: string;
12569
+ middlename?: string | null | undefined;
12570
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11439
12571
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
11440
12572
  filename: z.ZodString;
11441
12573
  originalFilename: z.ZodString;
@@ -11549,8 +12681,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11549
12681
  addressLine2?: string | null | undefined;
11550
12682
  addressLine3?: string | null | undefined;
11551
12683
  postcodeOrZip?: string | null | undefined;
11552
- }>]>>>;
11553
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12684
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12685
+ firstname: z.ZodString;
12686
+ surname: z.ZodString;
12687
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12688
+ }, "strip", z.ZodTypeAny, {
12689
+ firstname: string;
12690
+ surname: string;
12691
+ middlename?: string | null | undefined;
12692
+ }, {
12693
+ firstname: string;
12694
+ surname: string;
12695
+ middlename?: string | null | undefined;
12696
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12697
+ originalActionId: z.ZodOptional<z.ZodString>;
11554
12698
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11555
12699
  }, {
11556
12700
  requestId: z.ZodString;
@@ -11573,6 +12717,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11573
12717
  residentialArea?: string | null | undefined;
11574
12718
  street?: string | null | undefined;
11575
12719
  zipCode?: string | null | undefined;
12720
+ } | {
12721
+ firstname: string;
12722
+ surname: string;
12723
+ middlename?: string | null | undefined;
11576
12724
  } | {
11577
12725
  country: string;
11578
12726
  district: string;
@@ -11595,9 +12743,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11595
12743
  option: string;
11596
12744
  filename: string;
11597
12745
  originalFilename: string;
11598
- }[] | [string, string] | undefined>;
12746
+ }[] | [string, string] | null | undefined>;
11599
12747
  requestId: string;
11600
- eventId: string & z.BRAND<"UUID">;
12748
+ eventId: string;
11601
12749
  annotation?: Record<string, string | number | boolean | {
11602
12750
  type: string;
11603
12751
  filename: string;
@@ -11613,6 +12761,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11613
12761
  residentialArea?: string | null | undefined;
11614
12762
  street?: string | null | undefined;
11615
12763
  zipCode?: string | null | undefined;
12764
+ } | {
12765
+ firstname: string;
12766
+ surname: string;
12767
+ middlename?: string | null | undefined;
11616
12768
  } | {
11617
12769
  country: string;
11618
12770
  district: string;
@@ -11635,8 +12787,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11635
12787
  option: string;
11636
12788
  filename: string;
11637
12789
  originalFilename: string;
11638
- }[] | [string, string] | undefined> | undefined;
11639
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12790
+ }[] | [string, string] | null | undefined> | undefined;
12791
+ originalActionId?: string | undefined;
11640
12792
  keepAssignment?: boolean | undefined;
11641
12793
  }, {
11642
12794
  transactionId: string;
@@ -11658,6 +12810,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11658
12810
  residentialArea?: string | null | undefined;
11659
12811
  street?: string | null | undefined;
11660
12812
  zipCode?: string | null | undefined;
12813
+ } | {
12814
+ firstname: string;
12815
+ surname: string;
12816
+ middlename?: string | null | undefined;
11661
12817
  } | {
11662
12818
  country: string;
11663
12819
  district: string;
@@ -11680,7 +12836,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11680
12836
  option: string;
11681
12837
  filename: string;
11682
12838
  originalFilename: string;
11683
- }[] | [string, string] | undefined> | undefined;
12839
+ }[] | [string, string] | null | undefined> | undefined;
11684
12840
  annotation?: Record<string, string | number | boolean | {
11685
12841
  type: string;
11686
12842
  filename: string;
@@ -11696,6 +12852,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11696
12852
  residentialArea?: string | null | undefined;
11697
12853
  street?: string | null | undefined;
11698
12854
  zipCode?: string | null | undefined;
12855
+ } | {
12856
+ firstname: string;
12857
+ surname: string;
12858
+ middlename?: string | null | undefined;
11699
12859
  } | {
11700
12860
  country: string;
11701
12861
  district: string;
@@ -11718,11 +12878,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11718
12878
  option: string;
11719
12879
  filename: string;
11720
12880
  originalFilename: string;
11721
- }[] | [string, string] | undefined> | undefined;
12881
+ }[] | [string, string] | null | undefined> | undefined;
11722
12882
  originalActionId?: string | undefined;
11723
12883
  keepAssignment?: boolean | undefined;
11724
12884
  }>, z.ZodObject<z.objectUtil.extendShape<{
11725
- eventId: z.ZodBranded<z.ZodString, "UUID">;
12885
+ eventId: z.ZodString;
11726
12886
  transactionId: z.ZodString;
11727
12887
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
11728
12888
  filename: z.ZodString;
@@ -11837,7 +12997,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11837
12997
  addressLine2?: string | null | undefined;
11838
12998
  addressLine3?: string | null | undefined;
11839
12999
  postcodeOrZip?: string | null | undefined;
11840
- }>]>>>;
13000
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13001
+ firstname: z.ZodString;
13002
+ surname: z.ZodString;
13003
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13004
+ }, "strip", z.ZodTypeAny, {
13005
+ firstname: string;
13006
+ surname: string;
13007
+ middlename?: string | null | undefined;
13008
+ }, {
13009
+ firstname: string;
13010
+ surname: string;
13011
+ middlename?: string | null | undefined;
13012
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11841
13013
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
11842
13014
  filename: z.ZodString;
11843
13015
  originalFilename: z.ZodString;
@@ -11951,8 +13123,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11951
13123
  addressLine2?: string | null | undefined;
11952
13124
  addressLine3?: string | null | undefined;
11953
13125
  postcodeOrZip?: string | null | undefined;
11954
- }>]>>>;
11955
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
13126
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13127
+ firstname: z.ZodString;
13128
+ surname: z.ZodString;
13129
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13130
+ }, "strip", z.ZodTypeAny, {
13131
+ firstname: string;
13132
+ surname: string;
13133
+ middlename?: string | null | undefined;
13134
+ }, {
13135
+ firstname: string;
13136
+ surname: string;
13137
+ middlename?: string | null | undefined;
13138
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13139
+ originalActionId: z.ZodOptional<z.ZodString>;
11956
13140
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11957
13141
  }, {
11958
13142
  type: z.ZodDefault<z.ZodLiteral<"READ">>;
@@ -11974,6 +13158,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11974
13158
  residentialArea?: string | null | undefined;
11975
13159
  street?: string | null | undefined;
11976
13160
  zipCode?: string | null | undefined;
13161
+ } | {
13162
+ firstname: string;
13163
+ surname: string;
13164
+ middlename?: string | null | undefined;
11977
13165
  } | {
11978
13166
  country: string;
11979
13167
  district: string;
@@ -11996,8 +13184,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11996
13184
  option: string;
11997
13185
  filename: string;
11998
13186
  originalFilename: string;
11999
- }[] | [string, string] | undefined>;
12000
- eventId: string & z.BRAND<"UUID">;
13187
+ }[] | [string, string] | null | undefined>;
13188
+ eventId: string;
12001
13189
  annotation?: Record<string, string | number | boolean | {
12002
13190
  type: string;
12003
13191
  filename: string;
@@ -12013,6 +13201,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12013
13201
  residentialArea?: string | null | undefined;
12014
13202
  street?: string | null | undefined;
12015
13203
  zipCode?: string | null | undefined;
13204
+ } | {
13205
+ firstname: string;
13206
+ surname: string;
13207
+ middlename?: string | null | undefined;
12016
13208
  } | {
12017
13209
  country: string;
12018
13210
  district: string;
@@ -12035,8 +13227,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12035
13227
  option: string;
12036
13228
  filename: string;
12037
13229
  originalFilename: string;
12038
- }[] | [string, string] | undefined> | undefined;
12039
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13230
+ }[] | [string, string] | null | undefined> | undefined;
13231
+ originalActionId?: string | undefined;
12040
13232
  keepAssignment?: boolean | undefined;
12041
13233
  }, {
12042
13234
  transactionId: string;
@@ -12057,6 +13249,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12057
13249
  residentialArea?: string | null | undefined;
12058
13250
  street?: string | null | undefined;
12059
13251
  zipCode?: string | null | undefined;
13252
+ } | {
13253
+ firstname: string;
13254
+ surname: string;
13255
+ middlename?: string | null | undefined;
12060
13256
  } | {
12061
13257
  country: string;
12062
13258
  district: string;
@@ -12079,7 +13275,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12079
13275
  option: string;
12080
13276
  filename: string;
12081
13277
  originalFilename: string;
12082
- }[] | [string, string] | undefined> | undefined;
13278
+ }[] | [string, string] | null | undefined> | undefined;
12083
13279
  annotation?: Record<string, string | number | boolean | {
12084
13280
  type: string;
12085
13281
  filename: string;
@@ -12095,6 +13291,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12095
13291
  residentialArea?: string | null | undefined;
12096
13292
  street?: string | null | undefined;
12097
13293
  zipCode?: string | null | undefined;
13294
+ } | {
13295
+ firstname: string;
13296
+ surname: string;
13297
+ middlename?: string | null | undefined;
12098
13298
  } | {
12099
13299
  country: string;
12100
13300
  district: string;
@@ -12117,7 +13317,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12117
13317
  option: string;
12118
13318
  filename: string;
12119
13319
  originalFilename: string;
12120
- }[] | [string, string] | undefined> | undefined;
13320
+ }[] | [string, string] | null | undefined> | undefined;
12121
13321
  originalActionId?: string | undefined;
12122
13322
  keepAssignment?: boolean | undefined;
12123
13323
  }>]>;