@opencrvs/toolkit 1.8.0-rc.fea3888 → 1.8.0-rc.fec1d5d

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 (42) hide show
  1. package/dist/commons/api/router.d.ts +15788 -4866
  2. package/dist/commons/conditionals/conditionals.d.ts +8 -3
  3. package/dist/commons/conditionals/validate.d.ts +6 -0
  4. package/dist/commons/events/ActionConfig.d.ts +72517 -38926
  5. package/dist/commons/events/ActionDocument.d.ts +2095 -484
  6. package/dist/commons/events/ActionInput.d.ts +1515 -243
  7. package/dist/commons/events/ActionType.d.ts +4 -0
  8. package/dist/commons/events/AdvancedSearchConfig.d.ts +709 -48
  9. package/dist/commons/events/CompositeFieldValue.d.ts +28 -0
  10. package/dist/commons/events/Constants.d.ts +3 -0
  11. package/dist/commons/events/CountryConfigQueryInput.d.ts +2982 -0
  12. package/dist/commons/events/CreatedAtLocation.d.ts +3 -0
  13. package/dist/commons/events/Draft.d.ts +129 -30
  14. package/dist/commons/events/EventConfig.d.ts +28812 -12195
  15. package/dist/commons/events/EventDocument.d.ts +1269 -357
  16. package/dist/commons/events/EventIndex.d.ts +980 -316
  17. package/dist/commons/events/EventInput.d.ts +0 -13
  18. package/dist/commons/events/EventMetadata.d.ts +290 -44
  19. package/dist/commons/events/FieldConfig.d.ts +2954 -1142
  20. package/dist/commons/events/FieldType.d.ts +6 -3
  21. package/dist/commons/events/FieldTypeMapping.d.ts +103 -54
  22. package/dist/commons/events/FieldValue.d.ts +48 -7
  23. package/dist/commons/events/FormConfig.d.ts +20532 -9126
  24. package/dist/commons/events/PageConfig.d.ts +4906 -2112
  25. package/dist/commons/events/SummaryConfig.d.ts +17 -5
  26. package/dist/commons/events/User.d.ts +31 -7
  27. package/dist/commons/events/WorkqueueColumnConfig.d.ts +53 -0
  28. package/dist/commons/events/WorkqueueConfig.d.ts +4784 -16
  29. package/dist/commons/events/defineConfig.d.ts +3197 -626
  30. package/dist/commons/events/event.d.ts +37 -8
  31. package/dist/commons/events/field.d.ts +29 -20
  32. package/dist/commons/events/index.d.ts +4 -0
  33. package/dist/commons/events/scopes.d.ts +20 -1
  34. package/dist/commons/events/serializer.d.ts +2 -0
  35. package/dist/commons/events/test.utils.d.ts +147 -41
  36. package/dist/commons/events/utils.d.ts +10707 -318
  37. package/dist/commons/events/workqueueDefaultColumns.d.ts +3 -0
  38. package/dist/conditionals/index.js +45 -8
  39. package/dist/events/index.js +3408 -1469
  40. package/dist/scopes/index.d.ts +158 -1
  41. package/dist/scopes/index.js +152 -1
  42. package/package.json +1 -1
@@ -2,7 +2,7 @@ import { z } from 'zod';
2
2
  export declare const BaseActionInput: z.ZodObject<{
3
3
  eventId: z.ZodString;
4
4
  transactionId: z.ZodString;
5
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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;
7
7
  originalFilename: z.ZodString;
8
8
  type: z.ZodString;
@@ -115,8 +115,20 @@ 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
- }>]>>>;
119
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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;
122
134
  type: z.ZodString;
@@ -229,7 +241,19 @@ 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
- }>]>>>;
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]>]>>>;
233
257
  originalActionId: z.ZodOptional<z.ZodString>;
234
258
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
235
259
  }, "strip", z.ZodTypeAny, {
@@ -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,7 +299,7 @@ export declare const BaseActionInput: z.ZodObject<{
271
299
  option: string;
272
300
  filename: string;
273
301
  originalFilename: string;
274
- }[] | undefined>;
302
+ }[] | [string, string] | null | undefined>;
275
303
  eventId: string;
276
304
  annotation?: Record<string, string | number | boolean | {
277
305
  type: 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,7 +342,7 @@ export declare const BaseActionInput: z.ZodObject<{
310
342
  option: string;
311
343
  filename: string;
312
344
  originalFilename: string;
313
- }[] | undefined> | undefined;
345
+ }[] | [string, string] | null | undefined> | undefined;
314
346
  originalActionId?: string | undefined;
315
347
  keepAssignment?: boolean | undefined;
316
348
  }, {
@@ -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
- }[] | 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,14 +431,14 @@ export declare const BaseActionInput: z.ZodObject<{
391
431
  option: string;
392
432
  filename: string;
393
433
  originalFilename: string;
394
- }[] | 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
439
  eventId: z.ZodString;
400
440
  transactionId: z.ZodString;
401
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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;
403
443
  originalFilename: z.ZodString;
404
444
  type: z.ZodString;
@@ -511,8 +551,20 @@ 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
- }>]>>>;
515
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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;
518
570
  type: z.ZodString;
@@ -625,7 +677,19 @@ 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
- }>]>>>;
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]>]>>>;
629
693
  originalActionId: z.ZodOptional<z.ZodString>;
630
694
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
631
695
  }, {
@@ -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,7 +739,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
671
739
  option: string;
672
740
  filename: string;
673
741
  originalFilename: string;
674
- }[] | undefined>;
742
+ }[] | [string, string] | null | undefined>;
675
743
  eventId: string;
676
744
  annotation?: Record<string, string | number | boolean | {
677
745
  type: 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,7 +782,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
710
782
  option: string;
711
783
  filename: string;
712
784
  originalFilename: string;
713
- }[] | undefined> | undefined;
785
+ }[] | [string, string] | null | undefined> | undefined;
714
786
  originalActionId?: string | undefined;
715
787
  registrationNumber?: string | undefined;
716
788
  keepAssignment?: boolean | undefined;
@@ -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
- }[] | 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,7 +873,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
793
873
  option: string;
794
874
  filename: string;
795
875
  originalFilename: string;
796
- }[] | undefined> | undefined;
876
+ }[] | [string, string] | null | undefined> | undefined;
797
877
  originalActionId?: string | undefined;
798
878
  registrationNumber?: string | undefined;
799
879
  keepAssignment?: boolean | undefined;
@@ -802,7 +882,7 @@ export type RegisterActionInput = z.infer<typeof RegisterActionInput>;
802
882
  export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
803
883
  eventId: z.ZodString;
804
884
  transactionId: z.ZodString;
805
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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;
807
887
  originalFilename: z.ZodString;
808
888
  type: z.ZodString;
@@ -915,8 +995,20 @@ 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
- }>]>>>;
919
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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;
922
1014
  type: z.ZodString;
@@ -1029,7 +1121,19 @@ 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
- }>]>>>;
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]>]>>>;
1033
1137
  originalActionId: z.ZodOptional<z.ZodString>;
1034
1138
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1035
1139
  }, {
@@ -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,7 +1183,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1075
1183
  option: string;
1076
1184
  filename: string;
1077
1185
  originalFilename: string;
1078
- }[] | undefined>;
1186
+ }[] | [string, string] | null | undefined>;
1079
1187
  eventId: string;
1080
1188
  duplicates: string[];
1081
1189
  annotation?: Record<string, string | number | boolean | {
@@ -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,7 +1227,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1115
1227
  option: string;
1116
1228
  filename: string;
1117
1229
  originalFilename: string;
1118
- }[] | undefined> | undefined;
1230
+ }[] | [string, string] | null | undefined> | undefined;
1119
1231
  originalActionId?: string | undefined;
1120
1232
  keepAssignment?: boolean | undefined;
1121
1233
  }, {
@@ -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
- }[] | 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,7 +1318,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1198
1318
  option: string;
1199
1319
  filename: string;
1200
1320
  originalFilename: string;
1201
- }[] | undefined> | undefined;
1321
+ }[] | [string, string] | null | undefined> | undefined;
1202
1322
  originalActionId?: string | undefined;
1203
1323
  keepAssignment?: boolean | undefined;
1204
1324
  }>;
@@ -1206,7 +1326,7 @@ export type ValidateActionInput = z.infer<typeof ValidateActionInput>;
1206
1326
  export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1207
1327
  eventId: z.ZodString;
1208
1328
  transactionId: z.ZodString;
1209
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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;
1211
1331
  originalFilename: z.ZodString;
1212
1332
  type: z.ZodString;
@@ -1319,8 +1439,20 @@ 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
- }>]>>>;
1323
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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;
1326
1458
  type: z.ZodString;
@@ -1433,7 +1565,19 @@ 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
- }>]>>>;
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]>]>>>;
1437
1581
  originalActionId: z.ZodOptional<z.ZodString>;
1438
1582
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1439
1583
  }, {
@@ -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,7 +1626,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1478
1626
  option: string;
1479
1627
  filename: string;
1480
1628
  originalFilename: string;
1481
- }[] | undefined>;
1629
+ }[] | [string, string] | null | undefined>;
1482
1630
  eventId: string;
1483
1631
  annotation?: Record<string, string | number | boolean | {
1484
1632
  type: 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,7 +1669,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1517
1669
  option: string;
1518
1670
  filename: string;
1519
1671
  originalFilename: string;
1520
- }[] | undefined> | undefined;
1672
+ }[] | [string, string] | null | undefined> | undefined;
1521
1673
  originalActionId?: string | undefined;
1522
1674
  keepAssignment?: boolean | undefined;
1523
1675
  }, {
@@ -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
- }[] | 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,7 +1759,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1599
1759
  option: string;
1600
1760
  filename: string;
1601
1761
  originalFilename: string;
1602
- }[] | undefined> | undefined;
1762
+ }[] | [string, string] | null | undefined> | undefined;
1603
1763
  originalActionId?: string | undefined;
1604
1764
  keepAssignment?: boolean | undefined;
1605
1765
  }>;
@@ -1607,7 +1767,7 @@ export type NotifyActionInput = z.infer<typeof NotifyActionInput>;
1607
1767
  export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1608
1768
  eventId: z.ZodString;
1609
1769
  transactionId: z.ZodString;
1610
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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;
1612
1772
  originalFilename: z.ZodString;
1613
1773
  type: z.ZodString;
@@ -1720,8 +1880,20 @@ 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
- }>]>>>;
1724
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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;
1727
1899
  type: z.ZodString;
@@ -1834,7 +2006,19 @@ 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
- }>]>>>;
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]>]>>>;
1838
2022
  originalActionId: z.ZodOptional<z.ZodString>;
1839
2023
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1840
2024
  }, {
@@ -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,7 +2067,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1879
2067
  option: string;
1880
2068
  filename: string;
1881
2069
  originalFilename: string;
1882
- }[] | undefined>;
2070
+ }[] | [string, string] | null | undefined>;
1883
2071
  eventId: string;
1884
2072
  annotation?: Record<string, string | number | boolean | {
1885
2073
  type: 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,7 +2110,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1918
2110
  option: string;
1919
2111
  filename: string;
1920
2112
  originalFilename: string;
1921
- }[] | undefined> | undefined;
2113
+ }[] | [string, string] | null | undefined> | undefined;
1922
2114
  originalActionId?: string | undefined;
1923
2115
  keepAssignment?: boolean | undefined;
1924
2116
  }, {
@@ -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
- }[] | 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,14 +2200,14 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2000
2200
  option: string;
2001
2201
  filename: string;
2002
2202
  originalFilename: string;
2003
- }[] | 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
2208
  eventId: z.ZodString;
2009
2209
  transactionId: z.ZodString;
2010
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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;
2012
2212
  originalFilename: z.ZodString;
2013
2213
  type: z.ZodString;
@@ -2120,8 +2320,20 @@ 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
- }>]>>>;
2124
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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;
2127
2339
  type: z.ZodString;
@@ -2234,7 +2446,19 @@ 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
- }>]>>>;
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]>]>>>;
2238
2462
  originalActionId: z.ZodOptional<z.ZodString>;
2239
2463
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2240
2464
  }, {
@@ -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,7 +2507,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2279
2507
  option: string;
2280
2508
  filename: string;
2281
2509
  originalFilename: string;
2282
- }[] | undefined>;
2510
+ }[] | [string, string] | null | undefined>;
2283
2511
  eventId: string;
2284
2512
  annotation?: Record<string, string | number | boolean | {
2285
2513
  type: 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,7 +2550,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2318
2550
  option: string;
2319
2551
  filename: string;
2320
2552
  originalFilename: string;
2321
- }[] | undefined> | undefined;
2553
+ }[] | [string, string] | null | undefined> | undefined;
2322
2554
  originalActionId?: string | undefined;
2323
2555
  keepAssignment?: boolean | undefined;
2324
2556
  }, {
@@ -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
- }[] | 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,7 +2640,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2400
2640
  option: string;
2401
2641
  filename: string;
2402
2642
  originalFilename: string;
2403
- }[] | undefined> | undefined;
2643
+ }[] | [string, string] | null | undefined> | undefined;
2404
2644
  originalActionId?: string | undefined;
2405
2645
  keepAssignment?: boolean | undefined;
2406
2646
  }>;
@@ -2408,7 +2648,7 @@ export type DeclareActionInput = z.infer<typeof DeclareActionInput>;
2408
2648
  export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.extendShape<{
2409
2649
  eventId: z.ZodString;
2410
2650
  transactionId: z.ZodString;
2411
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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;
2413
2653
  originalFilename: z.ZodString;
2414
2654
  type: z.ZodString;
@@ -2521,8 +2761,20 @@ 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
- }>]>>>;
2525
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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;
2528
2780
  type: z.ZodString;
@@ -2635,13 +2887,39 @@ 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
- }>]>>>;
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]>]>>>;
2639
2903
  originalActionId: z.ZodOptional<z.ZodString>;
2640
2904
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2641
2905
  }, {
2642
2906
  type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
2907
+ reason: z.ZodObject<{
2908
+ message: z.ZodString;
2909
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
2910
+ }, "strip", z.ZodTypeAny, {
2911
+ message: string;
2912
+ isDuplicate?: boolean | undefined;
2913
+ }, {
2914
+ message: string;
2915
+ isDuplicate?: boolean | undefined;
2916
+ }>;
2643
2917
  }>, "strip", z.ZodTypeAny, {
2644
2918
  type: "REJECT";
2919
+ reason: {
2920
+ message: string;
2921
+ isDuplicate?: boolean | undefined;
2922
+ };
2645
2923
  transactionId: string;
2646
2924
  declaration: Record<string, string | number | boolean | {
2647
2925
  type: string;
@@ -2658,6 +2936,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2658
2936
  residentialArea?: string | null | undefined;
2659
2937
  street?: string | null | undefined;
2660
2938
  zipCode?: string | null | undefined;
2939
+ } | {
2940
+ firstname: string;
2941
+ surname: string;
2942
+ middlename?: string | null | undefined;
2661
2943
  } | {
2662
2944
  country: string;
2663
2945
  district: string;
@@ -2680,7 +2962,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2680
2962
  option: string;
2681
2963
  filename: string;
2682
2964
  originalFilename: string;
2683
- }[] | undefined>;
2965
+ }[] | [string, string] | null | undefined>;
2684
2966
  eventId: string;
2685
2967
  annotation?: Record<string, string | number | boolean | {
2686
2968
  type: string;
@@ -2697,6 +2979,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2697
2979
  residentialArea?: string | null | undefined;
2698
2980
  street?: string | null | undefined;
2699
2981
  zipCode?: string | null | undefined;
2982
+ } | {
2983
+ firstname: string;
2984
+ surname: string;
2985
+ middlename?: string | null | undefined;
2700
2986
  } | {
2701
2987
  country: string;
2702
2988
  district: string;
@@ -2719,10 +3005,14 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2719
3005
  option: string;
2720
3006
  filename: string;
2721
3007
  originalFilename: string;
2722
- }[] | undefined> | undefined;
3008
+ }[] | [string, string] | null | undefined> | undefined;
2723
3009
  originalActionId?: string | undefined;
2724
3010
  keepAssignment?: boolean | undefined;
2725
3011
  }, {
3012
+ reason: {
3013
+ message: string;
3014
+ isDuplicate?: boolean | undefined;
3015
+ };
2726
3016
  transactionId: string;
2727
3017
  eventId: string;
2728
3018
  type?: "REJECT" | undefined;
@@ -2741,6 +3031,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2741
3031
  residentialArea?: string | null | undefined;
2742
3032
  street?: string | null | undefined;
2743
3033
  zipCode?: string | null | undefined;
3034
+ } | {
3035
+ firstname: string;
3036
+ surname: string;
3037
+ middlename?: string | null | undefined;
2744
3038
  } | {
2745
3039
  country: string;
2746
3040
  district: string;
@@ -2763,7 +3057,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2763
3057
  option: string;
2764
3058
  filename: string;
2765
3059
  originalFilename: string;
2766
- }[] | undefined> | undefined;
3060
+ }[] | [string, string] | null | undefined> | undefined;
2767
3061
  annotation?: Record<string, string | number | boolean | {
2768
3062
  type: string;
2769
3063
  filename: string;
@@ -2779,6 +3073,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2779
3073
  residentialArea?: string | null | undefined;
2780
3074
  street?: string | null | undefined;
2781
3075
  zipCode?: string | null | undefined;
3076
+ } | {
3077
+ firstname: string;
3078
+ surname: string;
3079
+ middlename?: string | null | undefined;
2782
3080
  } | {
2783
3081
  country: string;
2784
3082
  district: string;
@@ -2801,7 +3099,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2801
3099
  option: string;
2802
3100
  filename: string;
2803
3101
  originalFilename: string;
2804
- }[] | undefined> | undefined;
3102
+ }[] | [string, string] | null | undefined> | undefined;
2805
3103
  originalActionId?: string | undefined;
2806
3104
  keepAssignment?: boolean | undefined;
2807
3105
  }>;
@@ -2809,7 +3107,7 @@ export type RejectDeclarationActionInput = z.infer<typeof RejectDeclarationActio
2809
3107
  export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.extendShape<{
2810
3108
  eventId: z.ZodString;
2811
3109
  transactionId: z.ZodString;
2812
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
2813
3111
  filename: z.ZodString;
2814
3112
  originalFilename: z.ZodString;
2815
3113
  type: z.ZodString;
@@ -2922,8 +3220,20 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
2922
3220
  addressLine2?: string | null | undefined;
2923
3221
  addressLine3?: string | null | undefined;
2924
3222
  postcodeOrZip?: string | null | undefined;
2925
- }>]>>>;
2926
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
2927
3237
  filename: z.ZodString;
2928
3238
  originalFilename: z.ZodString;
2929
3239
  type: z.ZodString;
@@ -3036,7 +3346,19 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3036
3346
  addressLine2?: string | null | undefined;
3037
3347
  addressLine3?: string | null | undefined;
3038
3348
  postcodeOrZip?: string | null | undefined;
3039
- }>]>>>;
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]>]>>>;
3040
3362
  originalActionId: z.ZodOptional<z.ZodString>;
3041
3363
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3042
3364
  }, {
@@ -3059,6 +3381,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3059
3381
  residentialArea?: string | null | undefined;
3060
3382
  street?: string | null | undefined;
3061
3383
  zipCode?: string | null | undefined;
3384
+ } | {
3385
+ firstname: string;
3386
+ surname: string;
3387
+ middlename?: string | null | undefined;
3062
3388
  } | {
3063
3389
  country: string;
3064
3390
  district: string;
@@ -3081,7 +3407,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3081
3407
  option: string;
3082
3408
  filename: string;
3083
3409
  originalFilename: string;
3084
- }[] | undefined>;
3410
+ }[] | [string, string] | null | undefined>;
3085
3411
  eventId: string;
3086
3412
  annotation?: Record<string, string | number | boolean | {
3087
3413
  type: string;
@@ -3098,6 +3424,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3098
3424
  residentialArea?: string | null | undefined;
3099
3425
  street?: string | null | undefined;
3100
3426
  zipCode?: string | null | undefined;
3427
+ } | {
3428
+ firstname: string;
3429
+ surname: string;
3430
+ middlename?: string | null | undefined;
3101
3431
  } | {
3102
3432
  country: string;
3103
3433
  district: string;
@@ -3120,7 +3450,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3120
3450
  option: string;
3121
3451
  filename: string;
3122
3452
  originalFilename: string;
3123
- }[] | undefined> | undefined;
3453
+ }[] | [string, string] | null | undefined> | undefined;
3124
3454
  originalActionId?: string | undefined;
3125
3455
  keepAssignment?: boolean | undefined;
3126
3456
  }, {
@@ -3142,6 +3472,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3142
3472
  residentialArea?: string | null | undefined;
3143
3473
  street?: string | null | undefined;
3144
3474
  zipCode?: string | null | undefined;
3475
+ } | {
3476
+ firstname: string;
3477
+ surname: string;
3478
+ middlename?: string | null | undefined;
3145
3479
  } | {
3146
3480
  country: string;
3147
3481
  district: string;
@@ -3164,7 +3498,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3164
3498
  option: string;
3165
3499
  filename: string;
3166
3500
  originalFilename: string;
3167
- }[] | undefined> | undefined;
3501
+ }[] | [string, string] | null | undefined> | undefined;
3168
3502
  annotation?: Record<string, string | number | boolean | {
3169
3503
  type: string;
3170
3504
  filename: string;
@@ -3180,6 +3514,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3180
3514
  residentialArea?: string | null | undefined;
3181
3515
  street?: string | null | undefined;
3182
3516
  zipCode?: string | null | undefined;
3517
+ } | {
3518
+ firstname: string;
3519
+ surname: string;
3520
+ middlename?: string | null | undefined;
3183
3521
  } | {
3184
3522
  country: string;
3185
3523
  district: string;
@@ -3202,7 +3540,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3202
3540
  option: string;
3203
3541
  filename: string;
3204
3542
  originalFilename: string;
3205
- }[] | undefined> | undefined;
3543
+ }[] | [string, string] | null | undefined> | undefined;
3206
3544
  originalActionId?: string | undefined;
3207
3545
  keepAssignment?: boolean | undefined;
3208
3546
  }>;
@@ -3210,7 +3548,7 @@ export type MarkedAsDuplicateActionInput = z.infer<typeof MarkedAsDuplicateActio
3210
3548
  export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3211
3549
  eventId: z.ZodString;
3212
3550
  transactionId: z.ZodString;
3213
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
3214
3552
  filename: z.ZodString;
3215
3553
  originalFilename: z.ZodString;
3216
3554
  type: z.ZodString;
@@ -3323,8 +3661,20 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3323
3661
  addressLine2?: string | null | undefined;
3324
3662
  addressLine3?: string | null | undefined;
3325
3663
  postcodeOrZip?: string | null | undefined;
3326
- }>]>>>;
3327
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
3328
3678
  filename: z.ZodString;
3329
3679
  originalFilename: z.ZodString;
3330
3680
  type: z.ZodString;
@@ -3437,13 +3787,39 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3437
3787
  addressLine2?: string | null | undefined;
3438
3788
  addressLine3?: string | null | undefined;
3439
3789
  postcodeOrZip?: string | null | undefined;
3440
- }>]>>>;
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]>]>>>;
3441
3803
  originalActionId: z.ZodOptional<z.ZodString>;
3442
3804
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3443
3805
  }, {
3444
3806
  type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
3807
+ reason: z.ZodObject<{
3808
+ message: z.ZodString;
3809
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
3810
+ }, "strip", z.ZodTypeAny, {
3811
+ message: string;
3812
+ isDuplicate?: boolean | undefined;
3813
+ }, {
3814
+ message: string;
3815
+ isDuplicate?: boolean | undefined;
3816
+ }>;
3445
3817
  }>, "strip", z.ZodTypeAny, {
3446
3818
  type: "ARCHIVE";
3819
+ reason: {
3820
+ message: string;
3821
+ isDuplicate?: boolean | undefined;
3822
+ };
3447
3823
  transactionId: string;
3448
3824
  declaration: Record<string, string | number | boolean | {
3449
3825
  type: string;
@@ -3460,6 +3836,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3460
3836
  residentialArea?: string | null | undefined;
3461
3837
  street?: string | null | undefined;
3462
3838
  zipCode?: string | null | undefined;
3839
+ } | {
3840
+ firstname: string;
3841
+ surname: string;
3842
+ middlename?: string | null | undefined;
3463
3843
  } | {
3464
3844
  country: string;
3465
3845
  district: string;
@@ -3482,7 +3862,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3482
3862
  option: string;
3483
3863
  filename: string;
3484
3864
  originalFilename: string;
3485
- }[] | undefined>;
3865
+ }[] | [string, string] | null | undefined>;
3486
3866
  eventId: string;
3487
3867
  annotation?: Record<string, string | number | boolean | {
3488
3868
  type: string;
@@ -3499,6 +3879,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3499
3879
  residentialArea?: string | null | undefined;
3500
3880
  street?: string | null | undefined;
3501
3881
  zipCode?: string | null | undefined;
3882
+ } | {
3883
+ firstname: string;
3884
+ surname: string;
3885
+ middlename?: string | null | undefined;
3502
3886
  } | {
3503
3887
  country: string;
3504
3888
  district: string;
@@ -3521,10 +3905,14 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3521
3905
  option: string;
3522
3906
  filename: string;
3523
3907
  originalFilename: string;
3524
- }[] | undefined> | undefined;
3908
+ }[] | [string, string] | null | undefined> | undefined;
3525
3909
  originalActionId?: string | undefined;
3526
3910
  keepAssignment?: boolean | undefined;
3527
3911
  }, {
3912
+ reason: {
3913
+ message: string;
3914
+ isDuplicate?: boolean | undefined;
3915
+ };
3528
3916
  transactionId: string;
3529
3917
  eventId: string;
3530
3918
  type?: "ARCHIVE" | undefined;
@@ -3543,6 +3931,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3543
3931
  residentialArea?: string | null | undefined;
3544
3932
  street?: string | null | undefined;
3545
3933
  zipCode?: string | null | undefined;
3934
+ } | {
3935
+ firstname: string;
3936
+ surname: string;
3937
+ middlename?: string | null | undefined;
3546
3938
  } | {
3547
3939
  country: string;
3548
3940
  district: string;
@@ -3565,7 +3957,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3565
3957
  option: string;
3566
3958
  filename: string;
3567
3959
  originalFilename: string;
3568
- }[] | undefined> | undefined;
3960
+ }[] | [string, string] | null | undefined> | undefined;
3569
3961
  annotation?: Record<string, string | number | boolean | {
3570
3962
  type: string;
3571
3963
  filename: string;
@@ -3581,6 +3973,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3581
3973
  residentialArea?: string | null | undefined;
3582
3974
  street?: string | null | undefined;
3583
3975
  zipCode?: string | null | undefined;
3976
+ } | {
3977
+ firstname: string;
3978
+ surname: string;
3979
+ middlename?: string | null | undefined;
3584
3980
  } | {
3585
3981
  country: string;
3586
3982
  district: string;
@@ -3603,7 +3999,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3603
3999
  option: string;
3604
4000
  filename: string;
3605
4001
  originalFilename: string;
3606
- }[] | undefined> | undefined;
4002
+ }[] | [string, string] | null | undefined> | undefined;
3607
4003
  originalActionId?: string | undefined;
3608
4004
  keepAssignment?: boolean | undefined;
3609
4005
  }>;
@@ -3611,7 +4007,7 @@ export type ArchiveActionInput = z.infer<typeof ArchiveActionInput>;
3611
4007
  export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3612
4008
  eventId: z.ZodString;
3613
4009
  transactionId: z.ZodString;
3614
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
3615
4011
  filename: z.ZodString;
3616
4012
  originalFilename: z.ZodString;
3617
4013
  type: z.ZodString;
@@ -3724,8 +4120,20 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3724
4120
  addressLine2?: string | null | undefined;
3725
4121
  addressLine3?: string | null | undefined;
3726
4122
  postcodeOrZip?: string | null | undefined;
3727
- }>]>>>;
3728
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
3729
4137
  filename: z.ZodString;
3730
4138
  originalFilename: z.ZodString;
3731
4139
  type: z.ZodString;
@@ -3838,7 +4246,19 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3838
4246
  addressLine2?: string | null | undefined;
3839
4247
  addressLine3?: string | null | undefined;
3840
4248
  postcodeOrZip?: string | null | undefined;
3841
- }>]>>>;
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]>]>>>;
3842
4262
  originalActionId: z.ZodOptional<z.ZodString>;
3843
4263
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3844
4264
  }, {
@@ -3862,6 +4282,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3862
4282
  residentialArea?: string | null | undefined;
3863
4283
  street?: string | null | undefined;
3864
4284
  zipCode?: string | null | undefined;
4285
+ } | {
4286
+ firstname: string;
4287
+ surname: string;
4288
+ middlename?: string | null | undefined;
3865
4289
  } | {
3866
4290
  country: string;
3867
4291
  district: string;
@@ -3884,7 +4308,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3884
4308
  option: string;
3885
4309
  filename: string;
3886
4310
  originalFilename: string;
3887
- }[] | undefined>;
4311
+ }[] | [string, string] | null | undefined>;
3888
4312
  assignedTo: string;
3889
4313
  eventId: string;
3890
4314
  annotation?: Record<string, string | number | boolean | {
@@ -3902,6 +4326,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3902
4326
  residentialArea?: string | null | undefined;
3903
4327
  street?: string | null | undefined;
3904
4328
  zipCode?: string | null | undefined;
4329
+ } | {
4330
+ firstname: string;
4331
+ surname: string;
4332
+ middlename?: string | null | undefined;
3905
4333
  } | {
3906
4334
  country: string;
3907
4335
  district: string;
@@ -3924,7 +4352,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3924
4352
  option: string;
3925
4353
  filename: string;
3926
4354
  originalFilename: string;
3927
- }[] | undefined> | undefined;
4355
+ }[] | [string, string] | null | undefined> | undefined;
3928
4356
  originalActionId?: string | undefined;
3929
4357
  keepAssignment?: boolean | undefined;
3930
4358
  }, {
@@ -3947,6 +4375,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3947
4375
  residentialArea?: string | null | undefined;
3948
4376
  street?: string | null | undefined;
3949
4377
  zipCode?: string | null | undefined;
4378
+ } | {
4379
+ firstname: string;
4380
+ surname: string;
4381
+ middlename?: string | null | undefined;
3950
4382
  } | {
3951
4383
  country: string;
3952
4384
  district: string;
@@ -3969,7 +4401,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3969
4401
  option: string;
3970
4402
  filename: string;
3971
4403
  originalFilename: string;
3972
- }[] | undefined> | undefined;
4404
+ }[] | [string, string] | null | undefined> | undefined;
3973
4405
  annotation?: Record<string, string | number | boolean | {
3974
4406
  type: string;
3975
4407
  filename: string;
@@ -3985,6 +4417,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
3985
4417
  residentialArea?: string | null | undefined;
3986
4418
  street?: string | null | undefined;
3987
4419
  zipCode?: string | null | undefined;
4420
+ } | {
4421
+ firstname: string;
4422
+ surname: string;
4423
+ middlename?: string | null | undefined;
3988
4424
  } | {
3989
4425
  country: string;
3990
4426
  district: string;
@@ -4007,7 +4443,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4007
4443
  option: string;
4008
4444
  filename: string;
4009
4445
  originalFilename: string;
4010
- }[] | undefined> | undefined;
4446
+ }[] | [string, string] | null | undefined> | undefined;
4011
4447
  originalActionId?: string | undefined;
4012
4448
  keepAssignment?: boolean | undefined;
4013
4449
  }>;
@@ -4015,7 +4451,7 @@ export type AssignActionInput = z.infer<typeof AssignActionInput>;
4015
4451
  export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4016
4452
  eventId: z.ZodString;
4017
4453
  transactionId: z.ZodString;
4018
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
4019
4455
  filename: z.ZodString;
4020
4456
  originalFilename: z.ZodString;
4021
4457
  type: z.ZodString;
@@ -4128,8 +4564,20 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4128
4564
  addressLine2?: string | null | undefined;
4129
4565
  addressLine3?: string | null | undefined;
4130
4566
  postcodeOrZip?: string | null | undefined;
4131
- }>]>>>;
4132
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
4133
4581
  filename: z.ZodString;
4134
4582
  originalFilename: z.ZodString;
4135
4583
  type: z.ZodString;
@@ -4242,7 +4690,19 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4242
4690
  addressLine2?: string | null | undefined;
4243
4691
  addressLine3?: string | null | undefined;
4244
4692
  postcodeOrZip?: string | null | undefined;
4245
- }>]>>>;
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]>]>>>;
4246
4706
  originalActionId: z.ZodOptional<z.ZodString>;
4247
4707
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4248
4708
  }, {
@@ -4266,6 +4726,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4266
4726
  residentialArea?: string | null | undefined;
4267
4727
  street?: string | null | undefined;
4268
4728
  zipCode?: string | null | undefined;
4729
+ } | {
4730
+ firstname: string;
4731
+ surname: string;
4732
+ middlename?: string | null | undefined;
4269
4733
  } | {
4270
4734
  country: string;
4271
4735
  district: string;
@@ -4288,7 +4752,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4288
4752
  option: string;
4289
4753
  filename: string;
4290
4754
  originalFilename: string;
4291
- }[] | undefined>;
4755
+ }[] | [string, string] | null | undefined>;
4292
4756
  assignedTo: null;
4293
4757
  eventId: string;
4294
4758
  annotation?: Record<string, string | number | boolean | {
@@ -4306,6 +4770,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4306
4770
  residentialArea?: string | null | undefined;
4307
4771
  street?: string | null | undefined;
4308
4772
  zipCode?: string | null | undefined;
4773
+ } | {
4774
+ firstname: string;
4775
+ surname: string;
4776
+ middlename?: string | null | undefined;
4309
4777
  } | {
4310
4778
  country: string;
4311
4779
  district: string;
@@ -4328,7 +4796,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4328
4796
  option: string;
4329
4797
  filename: string;
4330
4798
  originalFilename: string;
4331
- }[] | undefined> | undefined;
4799
+ }[] | [string, string] | null | undefined> | undefined;
4332
4800
  originalActionId?: string | undefined;
4333
4801
  keepAssignment?: boolean | undefined;
4334
4802
  }, {
@@ -4350,6 +4818,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4350
4818
  residentialArea?: string | null | undefined;
4351
4819
  street?: string | null | undefined;
4352
4820
  zipCode?: string | null | undefined;
4821
+ } | {
4822
+ firstname: string;
4823
+ surname: string;
4824
+ middlename?: string | null | undefined;
4353
4825
  } | {
4354
4826
  country: string;
4355
4827
  district: string;
@@ -4372,7 +4844,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4372
4844
  option: string;
4373
4845
  filename: string;
4374
4846
  originalFilename: string;
4375
- }[] | undefined> | undefined;
4847
+ }[] | [string, string] | null | undefined> | undefined;
4376
4848
  annotation?: Record<string, string | number | boolean | {
4377
4849
  type: string;
4378
4850
  filename: string;
@@ -4388,6 +4860,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4388
4860
  residentialArea?: string | null | undefined;
4389
4861
  street?: string | null | undefined;
4390
4862
  zipCode?: string | null | undefined;
4863
+ } | {
4864
+ firstname: string;
4865
+ surname: string;
4866
+ middlename?: string | null | undefined;
4391
4867
  } | {
4392
4868
  country: string;
4393
4869
  district: string;
@@ -4410,7 +4886,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4410
4886
  option: string;
4411
4887
  filename: string;
4412
4888
  originalFilename: string;
4413
- }[] | undefined> | undefined;
4889
+ }[] | [string, string] | null | undefined> | undefined;
4414
4890
  originalActionId?: string | undefined;
4415
4891
  assignedTo?: null | undefined;
4416
4892
  keepAssignment?: boolean | undefined;
@@ -4419,7 +4895,7 @@ export type UnassignActionInput = z.infer<typeof UnassignActionInput>;
4419
4895
  export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
4420
4896
  eventId: z.ZodString;
4421
4897
  transactionId: z.ZodString;
4422
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
4423
4899
  filename: z.ZodString;
4424
4900
  originalFilename: z.ZodString;
4425
4901
  type: z.ZodString;
@@ -4532,8 +5008,20 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4532
5008
  addressLine2?: string | null | undefined;
4533
5009
  addressLine3?: string | null | undefined;
4534
5010
  postcodeOrZip?: string | null | undefined;
4535
- }>]>>>;
4536
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
4537
5025
  filename: z.ZodString;
4538
5026
  originalFilename: z.ZodString;
4539
5027
  type: z.ZodString;
@@ -4646,7 +5134,19 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4646
5134
  addressLine2?: string | null | undefined;
4647
5135
  addressLine3?: string | null | undefined;
4648
5136
  postcodeOrZip?: string | null | undefined;
4649
- }>]>>>;
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]>]>>>;
4650
5150
  originalActionId: z.ZodOptional<z.ZodString>;
4651
5151
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4652
5152
  }, {
@@ -4669,6 +5169,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4669
5169
  residentialArea?: string | null | undefined;
4670
5170
  street?: string | null | undefined;
4671
5171
  zipCode?: string | null | undefined;
5172
+ } | {
5173
+ firstname: string;
5174
+ surname: string;
5175
+ middlename?: string | null | undefined;
4672
5176
  } | {
4673
5177
  country: string;
4674
5178
  district: string;
@@ -4691,7 +5195,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4691
5195
  option: string;
4692
5196
  filename: string;
4693
5197
  originalFilename: string;
4694
- }[] | undefined>;
5198
+ }[] | [string, string] | null | undefined>;
4695
5199
  eventId: string;
4696
5200
  annotation?: Record<string, string | number | boolean | {
4697
5201
  type: string;
@@ -4708,6 +5212,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4708
5212
  residentialArea?: string | null | undefined;
4709
5213
  street?: string | null | undefined;
4710
5214
  zipCode?: string | null | undefined;
5215
+ } | {
5216
+ firstname: string;
5217
+ surname: string;
5218
+ middlename?: string | null | undefined;
4711
5219
  } | {
4712
5220
  country: string;
4713
5221
  district: string;
@@ -4730,7 +5238,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4730
5238
  option: string;
4731
5239
  filename: string;
4732
5240
  originalFilename: string;
4733
- }[] | undefined> | undefined;
5241
+ }[] | [string, string] | null | undefined> | undefined;
4734
5242
  originalActionId?: string | undefined;
4735
5243
  keepAssignment?: boolean | undefined;
4736
5244
  }, {
@@ -4752,6 +5260,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4752
5260
  residentialArea?: string | null | undefined;
4753
5261
  street?: string | null | undefined;
4754
5262
  zipCode?: string | null | undefined;
5263
+ } | {
5264
+ firstname: string;
5265
+ surname: string;
5266
+ middlename?: string | null | undefined;
4755
5267
  } | {
4756
5268
  country: string;
4757
5269
  district: string;
@@ -4774,7 +5286,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4774
5286
  option: string;
4775
5287
  filename: string;
4776
5288
  originalFilename: string;
4777
- }[] | undefined> | undefined;
5289
+ }[] | [string, string] | null | undefined> | undefined;
4778
5290
  annotation?: Record<string, string | number | boolean | {
4779
5291
  type: string;
4780
5292
  filename: string;
@@ -4790,6 +5302,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4790
5302
  residentialArea?: string | null | undefined;
4791
5303
  street?: string | null | undefined;
4792
5304
  zipCode?: string | null | undefined;
5305
+ } | {
5306
+ firstname: string;
5307
+ surname: string;
5308
+ middlename?: string | null | undefined;
4793
5309
  } | {
4794
5310
  country: string;
4795
5311
  district: string;
@@ -4812,7 +5328,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
4812
5328
  option: string;
4813
5329
  filename: string;
4814
5330
  originalFilename: string;
4815
- }[] | undefined> | undefined;
5331
+ }[] | [string, string] | null | undefined> | undefined;
4816
5332
  originalActionId?: string | undefined;
4817
5333
  keepAssignment?: boolean | undefined;
4818
5334
  }>;
@@ -4820,7 +5336,7 @@ export type RequestCorrectionActionInput = z.infer<typeof RequestCorrectionActio
4820
5336
  export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
4821
5337
  eventId: z.ZodString;
4822
5338
  transactionId: z.ZodString;
4823
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
4824
5340
  filename: z.ZodString;
4825
5341
  originalFilename: z.ZodString;
4826
5342
  type: z.ZodString;
@@ -4933,8 +5449,20 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
4933
5449
  addressLine2?: string | null | undefined;
4934
5450
  addressLine3?: string | null | undefined;
4935
5451
  postcodeOrZip?: string | null | undefined;
4936
- }>]>>>;
4937
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
4938
5466
  filename: z.ZodString;
4939
5467
  originalFilename: z.ZodString;
4940
5468
  type: z.ZodString;
@@ -5047,7 +5575,19 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5047
5575
  addressLine2?: string | null | undefined;
5048
5576
  addressLine3?: string | null | undefined;
5049
5577
  postcodeOrZip?: string | null | undefined;
5050
- }>]>>>;
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]>]>>>;
5051
5591
  originalActionId: z.ZodOptional<z.ZodString>;
5052
5592
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5053
5593
  }, {
@@ -5071,6 +5611,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5071
5611
  residentialArea?: string | null | undefined;
5072
5612
  street?: string | null | undefined;
5073
5613
  zipCode?: string | null | undefined;
5614
+ } | {
5615
+ firstname: string;
5616
+ surname: string;
5617
+ middlename?: string | null | undefined;
5074
5618
  } | {
5075
5619
  country: string;
5076
5620
  district: string;
@@ -5093,7 +5637,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5093
5637
  option: string;
5094
5638
  filename: string;
5095
5639
  originalFilename: string;
5096
- }[] | undefined>;
5640
+ }[] | [string, string] | null | undefined>;
5097
5641
  requestId: string;
5098
5642
  eventId: string;
5099
5643
  annotation?: Record<string, string | number | boolean | {
@@ -5111,6 +5655,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5111
5655
  residentialArea?: string | null | undefined;
5112
5656
  street?: string | null | undefined;
5113
5657
  zipCode?: string | null | undefined;
5658
+ } | {
5659
+ firstname: string;
5660
+ surname: string;
5661
+ middlename?: string | null | undefined;
5114
5662
  } | {
5115
5663
  country: string;
5116
5664
  district: string;
@@ -5133,7 +5681,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5133
5681
  option: string;
5134
5682
  filename: string;
5135
5683
  originalFilename: string;
5136
- }[] | undefined> | undefined;
5684
+ }[] | [string, string] | null | undefined> | undefined;
5137
5685
  originalActionId?: string | undefined;
5138
5686
  keepAssignment?: boolean | undefined;
5139
5687
  }, {
@@ -5156,6 +5704,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5156
5704
  residentialArea?: string | null | undefined;
5157
5705
  street?: string | null | undefined;
5158
5706
  zipCode?: string | null | undefined;
5707
+ } | {
5708
+ firstname: string;
5709
+ surname: string;
5710
+ middlename?: string | null | undefined;
5159
5711
  } | {
5160
5712
  country: string;
5161
5713
  district: string;
@@ -5178,7 +5730,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5178
5730
  option: string;
5179
5731
  filename: string;
5180
5732
  originalFilename: string;
5181
- }[] | undefined> | undefined;
5733
+ }[] | [string, string] | null | undefined> | undefined;
5182
5734
  annotation?: Record<string, string | number | boolean | {
5183
5735
  type: string;
5184
5736
  filename: string;
@@ -5194,6 +5746,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5194
5746
  residentialArea?: string | null | undefined;
5195
5747
  street?: string | null | undefined;
5196
5748
  zipCode?: string | null | undefined;
5749
+ } | {
5750
+ firstname: string;
5751
+ surname: string;
5752
+ middlename?: string | null | undefined;
5197
5753
  } | {
5198
5754
  country: string;
5199
5755
  district: string;
@@ -5216,7 +5772,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5216
5772
  option: string;
5217
5773
  filename: string;
5218
5774
  originalFilename: string;
5219
- }[] | undefined> | undefined;
5775
+ }[] | [string, string] | null | undefined> | undefined;
5220
5776
  originalActionId?: string | undefined;
5221
5777
  keepAssignment?: boolean | undefined;
5222
5778
  }>;
@@ -5224,7 +5780,7 @@ export type RejectCorrectionActionInput = z.infer<typeof RejectCorrectionActionI
5224
5780
  export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
5225
5781
  eventId: z.ZodString;
5226
5782
  transactionId: z.ZodString;
5227
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
5228
5784
  filename: z.ZodString;
5229
5785
  originalFilename: z.ZodString;
5230
5786
  type: z.ZodString;
@@ -5337,8 +5893,20 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5337
5893
  addressLine2?: string | null | undefined;
5338
5894
  addressLine3?: string | null | undefined;
5339
5895
  postcodeOrZip?: string | null | undefined;
5340
- }>]>>>;
5341
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
5342
5910
  filename: z.ZodString;
5343
5911
  originalFilename: z.ZodString;
5344
5912
  type: z.ZodString;
@@ -5451,7 +6019,19 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5451
6019
  addressLine2?: string | null | undefined;
5452
6020
  addressLine3?: string | null | undefined;
5453
6021
  postcodeOrZip?: string | null | undefined;
5454
- }>]>>>;
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]>]>>>;
5455
6035
  originalActionId: z.ZodOptional<z.ZodString>;
5456
6036
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5457
6037
  }, {
@@ -5475,6 +6055,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5475
6055
  residentialArea?: string | null | undefined;
5476
6056
  street?: string | null | undefined;
5477
6057
  zipCode?: string | null | undefined;
6058
+ } | {
6059
+ firstname: string;
6060
+ surname: string;
6061
+ middlename?: string | null | undefined;
5478
6062
  } | {
5479
6063
  country: string;
5480
6064
  district: string;
@@ -5497,7 +6081,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5497
6081
  option: string;
5498
6082
  filename: string;
5499
6083
  originalFilename: string;
5500
- }[] | undefined>;
6084
+ }[] | [string, string] | null | undefined>;
5501
6085
  requestId: string;
5502
6086
  eventId: string;
5503
6087
  annotation?: Record<string, string | number | boolean | {
@@ -5515,6 +6099,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5515
6099
  residentialArea?: string | null | undefined;
5516
6100
  street?: string | null | undefined;
5517
6101
  zipCode?: string | null | undefined;
6102
+ } | {
6103
+ firstname: string;
6104
+ surname: string;
6105
+ middlename?: string | null | undefined;
5518
6106
  } | {
5519
6107
  country: string;
5520
6108
  district: string;
@@ -5537,7 +6125,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5537
6125
  option: string;
5538
6126
  filename: string;
5539
6127
  originalFilename: string;
5540
- }[] | undefined> | undefined;
6128
+ }[] | [string, string] | null | undefined> | undefined;
5541
6129
  originalActionId?: string | undefined;
5542
6130
  keepAssignment?: boolean | undefined;
5543
6131
  }, {
@@ -5560,6 +6148,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5560
6148
  residentialArea?: string | null | undefined;
5561
6149
  street?: string | null | undefined;
5562
6150
  zipCode?: string | null | undefined;
6151
+ } | {
6152
+ firstname: string;
6153
+ surname: string;
6154
+ middlename?: string | null | undefined;
5563
6155
  } | {
5564
6156
  country: string;
5565
6157
  district: string;
@@ -5582,7 +6174,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5582
6174
  option: string;
5583
6175
  filename: string;
5584
6176
  originalFilename: string;
5585
- }[] | undefined> | undefined;
6177
+ }[] | [string, string] | null | undefined> | undefined;
5586
6178
  annotation?: Record<string, string | number | boolean | {
5587
6179
  type: string;
5588
6180
  filename: string;
@@ -5598,6 +6190,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5598
6190
  residentialArea?: string | null | undefined;
5599
6191
  street?: string | null | undefined;
5600
6192
  zipCode?: string | null | undefined;
6193
+ } | {
6194
+ firstname: string;
6195
+ surname: string;
6196
+ middlename?: string | null | undefined;
5601
6197
  } | {
5602
6198
  country: string;
5603
6199
  district: string;
@@ -5620,7 +6216,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5620
6216
  option: string;
5621
6217
  filename: string;
5622
6218
  originalFilename: string;
5623
- }[] | undefined> | undefined;
6219
+ }[] | [string, string] | null | undefined> | undefined;
5624
6220
  originalActionId?: string | undefined;
5625
6221
  keepAssignment?: boolean | undefined;
5626
6222
  }>;
@@ -5628,7 +6224,7 @@ export type ApproveCorrectionActionInput = z.infer<typeof ApproveCorrectionActio
5628
6224
  export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5629
6225
  eventId: z.ZodString;
5630
6226
  transactionId: z.ZodString;
5631
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
5632
6228
  filename: z.ZodString;
5633
6229
  originalFilename: z.ZodString;
5634
6230
  type: z.ZodString;
@@ -5741,8 +6337,20 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5741
6337
  addressLine2?: string | null | undefined;
5742
6338
  addressLine3?: string | null | undefined;
5743
6339
  postcodeOrZip?: string | null | undefined;
5744
- }>]>>>;
5745
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
5746
6354
  filename: z.ZodString;
5747
6355
  originalFilename: z.ZodString;
5748
6356
  type: z.ZodString;
@@ -5855,7 +6463,19 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5855
6463
  addressLine2?: string | null | undefined;
5856
6464
  addressLine3?: string | null | undefined;
5857
6465
  postcodeOrZip?: string | null | undefined;
5858
- }>]>>>;
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]>]>>>;
5859
6479
  originalActionId: z.ZodOptional<z.ZodString>;
5860
6480
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5861
6481
  }, {
@@ -5878,6 +6498,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5878
6498
  residentialArea?: string | null | undefined;
5879
6499
  street?: string | null | undefined;
5880
6500
  zipCode?: string | null | undefined;
6501
+ } | {
6502
+ firstname: string;
6503
+ surname: string;
6504
+ middlename?: string | null | undefined;
5881
6505
  } | {
5882
6506
  country: string;
5883
6507
  district: string;
@@ -5900,7 +6524,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5900
6524
  option: string;
5901
6525
  filename: string;
5902
6526
  originalFilename: string;
5903
- }[] | undefined>;
6527
+ }[] | [string, string] | null | undefined>;
5904
6528
  eventId: string;
5905
6529
  annotation?: Record<string, string | number | boolean | {
5906
6530
  type: string;
@@ -5917,6 +6541,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5917
6541
  residentialArea?: string | null | undefined;
5918
6542
  street?: string | null | undefined;
5919
6543
  zipCode?: string | null | undefined;
6544
+ } | {
6545
+ firstname: string;
6546
+ surname: string;
6547
+ middlename?: string | null | undefined;
5920
6548
  } | {
5921
6549
  country: string;
5922
6550
  district: string;
@@ -5939,7 +6567,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5939
6567
  option: string;
5940
6568
  filename: string;
5941
6569
  originalFilename: string;
5942
- }[] | undefined> | undefined;
6570
+ }[] | [string, string] | null | undefined> | undefined;
5943
6571
  originalActionId?: string | undefined;
5944
6572
  keepAssignment?: boolean | undefined;
5945
6573
  }, {
@@ -5961,6 +6589,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5961
6589
  residentialArea?: string | null | undefined;
5962
6590
  street?: string | null | undefined;
5963
6591
  zipCode?: string | null | undefined;
6592
+ } | {
6593
+ firstname: string;
6594
+ surname: string;
6595
+ middlename?: string | null | undefined;
5964
6596
  } | {
5965
6597
  country: string;
5966
6598
  district: string;
@@ -5983,7 +6615,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5983
6615
  option: string;
5984
6616
  filename: string;
5985
6617
  originalFilename: string;
5986
- }[] | undefined> | undefined;
6618
+ }[] | [string, string] | null | undefined> | undefined;
5987
6619
  annotation?: Record<string, string | number | boolean | {
5988
6620
  type: string;
5989
6621
  filename: string;
@@ -5999,6 +6631,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
5999
6631
  residentialArea?: string | null | undefined;
6000
6632
  street?: string | null | undefined;
6001
6633
  zipCode?: string | null | undefined;
6634
+ } | {
6635
+ firstname: string;
6636
+ surname: string;
6637
+ middlename?: string | null | undefined;
6002
6638
  } | {
6003
6639
  country: string;
6004
6640
  district: string;
@@ -6021,7 +6657,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6021
6657
  option: string;
6022
6658
  filename: string;
6023
6659
  originalFilename: string;
6024
- }[] | undefined> | undefined;
6660
+ }[] | [string, string] | null | undefined> | undefined;
6025
6661
  originalActionId?: string | undefined;
6026
6662
  keepAssignment?: boolean | undefined;
6027
6663
  }>;
@@ -6045,7 +6681,7 @@ export type DeleteActionInput = z.infer<typeof DeleteActionInput>;
6045
6681
  export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
6046
6682
  eventId: z.ZodString;
6047
6683
  transactionId: z.ZodString;
6048
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
6049
6685
  filename: z.ZodString;
6050
6686
  originalFilename: z.ZodString;
6051
6687
  type: z.ZodString;
@@ -6158,8 +6794,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6158
6794
  addressLine2?: string | null | undefined;
6159
6795
  addressLine3?: string | null | undefined;
6160
6796
  postcodeOrZip?: string | null | undefined;
6161
- }>]>>>;
6162
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
6163
6811
  filename: z.ZodString;
6164
6812
  originalFilename: z.ZodString;
6165
6813
  type: z.ZodString;
@@ -6272,12 +6920,24 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6272
6920
  addressLine2?: string | null | undefined;
6273
6921
  addressLine3?: string | null | undefined;
6274
6922
  postcodeOrZip?: string | null | undefined;
6275
- }>]>>>;
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]>]>>>;
6276
6936
  originalActionId: z.ZodOptional<z.ZodString>;
6277
6937
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6278
6938
  }, {
6279
6939
  type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
6280
- createdAtLocation: z.ZodString;
6940
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6281
6941
  }>, "strip", z.ZodTypeAny, {
6282
6942
  type: "CREATE";
6283
6943
  transactionId: string;
@@ -6296,6 +6956,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6296
6956
  residentialArea?: string | null | undefined;
6297
6957
  street?: string | null | undefined;
6298
6958
  zipCode?: string | null | undefined;
6959
+ } | {
6960
+ firstname: string;
6961
+ surname: string;
6962
+ middlename?: string | null | undefined;
6299
6963
  } | {
6300
6964
  country: string;
6301
6965
  district: string;
@@ -6318,9 +6982,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6318
6982
  option: string;
6319
6983
  filename: string;
6320
6984
  originalFilename: string;
6321
- }[] | undefined>;
6322
- createdAtLocation: string;
6985
+ }[] | [string, string] | null | undefined>;
6323
6986
  eventId: string;
6987
+ createdAtLocation?: string | null | undefined;
6324
6988
  annotation?: Record<string, string | number | boolean | {
6325
6989
  type: string;
6326
6990
  filename: string;
@@ -6336,6 +7000,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6336
7000
  residentialArea?: string | null | undefined;
6337
7001
  street?: string | null | undefined;
6338
7002
  zipCode?: string | null | undefined;
7003
+ } | {
7004
+ firstname: string;
7005
+ surname: string;
7006
+ middlename?: string | null | undefined;
6339
7007
  } | {
6340
7008
  country: string;
6341
7009
  district: string;
@@ -6358,14 +7026,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6358
7026
  option: string;
6359
7027
  filename: string;
6360
7028
  originalFilename: string;
6361
- }[] | undefined> | undefined;
7029
+ }[] | [string, string] | null | undefined> | undefined;
6362
7030
  originalActionId?: string | undefined;
6363
7031
  keepAssignment?: boolean | undefined;
6364
7032
  }, {
6365
7033
  transactionId: string;
6366
- createdAtLocation: string;
6367
7034
  eventId: string;
6368
7035
  type?: "CREATE" | undefined;
7036
+ createdAtLocation?: string | null | undefined;
6369
7037
  declaration?: Record<string, string | number | boolean | {
6370
7038
  type: string;
6371
7039
  filename: string;
@@ -6381,6 +7049,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6381
7049
  residentialArea?: string | null | undefined;
6382
7050
  street?: string | null | undefined;
6383
7051
  zipCode?: string | null | undefined;
7052
+ } | {
7053
+ firstname: string;
7054
+ surname: string;
7055
+ middlename?: string | null | undefined;
6384
7056
  } | {
6385
7057
  country: string;
6386
7058
  district: string;
@@ -6403,7 +7075,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6403
7075
  option: string;
6404
7076
  filename: string;
6405
7077
  originalFilename: string;
6406
- }[] | undefined> | undefined;
7078
+ }[] | [string, string] | null | undefined> | undefined;
6407
7079
  annotation?: Record<string, string | number | boolean | {
6408
7080
  type: string;
6409
7081
  filename: string;
@@ -6419,6 +7091,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6419
7091
  residentialArea?: string | null | undefined;
6420
7092
  street?: string | null | undefined;
6421
7093
  zipCode?: string | null | undefined;
7094
+ } | {
7095
+ firstname: string;
7096
+ surname: string;
7097
+ middlename?: string | null | undefined;
6422
7098
  } | {
6423
7099
  country: string;
6424
7100
  district: string;
@@ -6441,13 +7117,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6441
7117
  option: string;
6442
7118
  filename: string;
6443
7119
  originalFilename: string;
6444
- }[] | undefined> | undefined;
7120
+ }[] | [string, string] | null | undefined> | undefined;
6445
7121
  originalActionId?: string | undefined;
6446
7122
  keepAssignment?: boolean | undefined;
6447
7123
  }>, z.ZodObject<z.objectUtil.extendShape<{
6448
7124
  eventId: z.ZodString;
6449
7125
  transactionId: z.ZodString;
6450
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
6451
7127
  filename: z.ZodString;
6452
7128
  originalFilename: z.ZodString;
6453
7129
  type: z.ZodString;
@@ -6560,8 +7236,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6560
7236
  addressLine2?: string | null | undefined;
6561
7237
  addressLine3?: string | null | undefined;
6562
7238
  postcodeOrZip?: string | null | undefined;
6563
- }>]>>>;
6564
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
6565
7253
  filename: z.ZodString;
6566
7254
  originalFilename: z.ZodString;
6567
7255
  type: z.ZodString;
@@ -6674,7 +7362,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6674
7362
  addressLine2?: string | null | undefined;
6675
7363
  addressLine3?: string | null | undefined;
6676
7364
  postcodeOrZip?: string | null | undefined;
6677
- }>]>>>;
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]>]>>>;
6678
7378
  originalActionId: z.ZodOptional<z.ZodString>;
6679
7379
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6680
7380
  }, {
@@ -6698,6 +7398,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6698
7398
  residentialArea?: string | null | undefined;
6699
7399
  street?: string | null | undefined;
6700
7400
  zipCode?: string | null | undefined;
7401
+ } | {
7402
+ firstname: string;
7403
+ surname: string;
7404
+ middlename?: string | null | undefined;
6701
7405
  } | {
6702
7406
  country: string;
6703
7407
  district: string;
@@ -6720,7 +7424,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6720
7424
  option: string;
6721
7425
  filename: string;
6722
7426
  originalFilename: string;
6723
- }[] | undefined>;
7427
+ }[] | [string, string] | null | undefined>;
6724
7428
  eventId: string;
6725
7429
  duplicates: string[];
6726
7430
  annotation?: Record<string, string | number | boolean | {
@@ -6738,6 +7442,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6738
7442
  residentialArea?: string | null | undefined;
6739
7443
  street?: string | null | undefined;
6740
7444
  zipCode?: string | null | undefined;
7445
+ } | {
7446
+ firstname: string;
7447
+ surname: string;
7448
+ middlename?: string | null | undefined;
6741
7449
  } | {
6742
7450
  country: string;
6743
7451
  district: string;
@@ -6760,7 +7468,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6760
7468
  option: string;
6761
7469
  filename: string;
6762
7470
  originalFilename: string;
6763
- }[] | undefined> | undefined;
7471
+ }[] | [string, string] | null | undefined> | undefined;
6764
7472
  originalActionId?: string | undefined;
6765
7473
  keepAssignment?: boolean | undefined;
6766
7474
  }, {
@@ -6783,6 +7491,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6783
7491
  residentialArea?: string | null | undefined;
6784
7492
  street?: string | null | undefined;
6785
7493
  zipCode?: string | null | undefined;
7494
+ } | {
7495
+ firstname: string;
7496
+ surname: string;
7497
+ middlename?: string | null | undefined;
6786
7498
  } | {
6787
7499
  country: string;
6788
7500
  district: string;
@@ -6805,7 +7517,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6805
7517
  option: string;
6806
7518
  filename: string;
6807
7519
  originalFilename: string;
6808
- }[] | undefined> | undefined;
7520
+ }[] | [string, string] | null | undefined> | undefined;
6809
7521
  annotation?: Record<string, string | number | boolean | {
6810
7522
  type: string;
6811
7523
  filename: string;
@@ -6821,6 +7533,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6821
7533
  residentialArea?: string | null | undefined;
6822
7534
  street?: string | null | undefined;
6823
7535
  zipCode?: string | null | undefined;
7536
+ } | {
7537
+ firstname: string;
7538
+ surname: string;
7539
+ middlename?: string | null | undefined;
6824
7540
  } | {
6825
7541
  country: string;
6826
7542
  district: string;
@@ -6843,13 +7559,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6843
7559
  option: string;
6844
7560
  filename: string;
6845
7561
  originalFilename: string;
6846
- }[] | undefined> | undefined;
7562
+ }[] | [string, string] | null | undefined> | undefined;
6847
7563
  originalActionId?: string | undefined;
6848
7564
  keepAssignment?: boolean | undefined;
6849
7565
  }>, z.ZodObject<z.objectUtil.extendShape<{
6850
7566
  eventId: z.ZodString;
6851
7567
  transactionId: z.ZodString;
6852
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
6853
7569
  filename: z.ZodString;
6854
7570
  originalFilename: z.ZodString;
6855
7571
  type: z.ZodString;
@@ -6962,8 +7678,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6962
7678
  addressLine2?: string | null | undefined;
6963
7679
  addressLine3?: string | null | undefined;
6964
7680
  postcodeOrZip?: string | null | undefined;
6965
- }>]>>>;
6966
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
6967
7695
  filename: z.ZodString;
6968
7696
  originalFilename: z.ZodString;
6969
7697
  type: z.ZodString;
@@ -7076,7 +7804,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7076
7804
  addressLine2?: string | null | undefined;
7077
7805
  addressLine3?: string | null | undefined;
7078
7806
  postcodeOrZip?: string | null | undefined;
7079
- }>]>>>;
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]>]>>>;
7080
7820
  originalActionId: z.ZodOptional<z.ZodString>;
7081
7821
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7082
7822
  }, {
@@ -7100,6 +7840,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7100
7840
  residentialArea?: string | null | undefined;
7101
7841
  street?: string | null | undefined;
7102
7842
  zipCode?: string | null | undefined;
7843
+ } | {
7844
+ firstname: string;
7845
+ surname: string;
7846
+ middlename?: string | null | undefined;
7103
7847
  } | {
7104
7848
  country: string;
7105
7849
  district: string;
@@ -7122,7 +7866,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7122
7866
  option: string;
7123
7867
  filename: string;
7124
7868
  originalFilename: string;
7125
- }[] | undefined>;
7869
+ }[] | [string, string] | null | undefined>;
7126
7870
  eventId: string;
7127
7871
  annotation?: Record<string, string | number | boolean | {
7128
7872
  type: string;
@@ -7139,6 +7883,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7139
7883
  residentialArea?: string | null | undefined;
7140
7884
  street?: string | null | undefined;
7141
7885
  zipCode?: string | null | undefined;
7886
+ } | {
7887
+ firstname: string;
7888
+ surname: string;
7889
+ middlename?: string | null | undefined;
7142
7890
  } | {
7143
7891
  country: string;
7144
7892
  district: string;
@@ -7161,7 +7909,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7161
7909
  option: string;
7162
7910
  filename: string;
7163
7911
  originalFilename: string;
7164
- }[] | undefined> | undefined;
7912
+ }[] | [string, string] | null | undefined> | undefined;
7165
7913
  originalActionId?: string | undefined;
7166
7914
  registrationNumber?: string | undefined;
7167
7915
  keepAssignment?: boolean | undefined;
@@ -7184,6 +7932,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7184
7932
  residentialArea?: string | null | undefined;
7185
7933
  street?: string | null | undefined;
7186
7934
  zipCode?: string | null | undefined;
7935
+ } | {
7936
+ firstname: string;
7937
+ surname: string;
7938
+ middlename?: string | null | undefined;
7187
7939
  } | {
7188
7940
  country: string;
7189
7941
  district: string;
@@ -7206,7 +7958,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7206
7958
  option: string;
7207
7959
  filename: string;
7208
7960
  originalFilename: string;
7209
- }[] | undefined> | undefined;
7961
+ }[] | [string, string] | null | undefined> | undefined;
7210
7962
  annotation?: Record<string, string | number | boolean | {
7211
7963
  type: string;
7212
7964
  filename: string;
@@ -7222,6 +7974,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7222
7974
  residentialArea?: string | null | undefined;
7223
7975
  street?: string | null | undefined;
7224
7976
  zipCode?: string | null | undefined;
7977
+ } | {
7978
+ firstname: string;
7979
+ surname: string;
7980
+ middlename?: string | null | undefined;
7225
7981
  } | {
7226
7982
  country: string;
7227
7983
  district: string;
@@ -7244,14 +8000,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7244
8000
  option: string;
7245
8001
  filename: string;
7246
8002
  originalFilename: string;
7247
- }[] | undefined> | undefined;
8003
+ }[] | [string, string] | null | undefined> | undefined;
7248
8004
  originalActionId?: string | undefined;
7249
8005
  registrationNumber?: string | undefined;
7250
8006
  keepAssignment?: boolean | undefined;
7251
8007
  }>, z.ZodObject<z.objectUtil.extendShape<{
7252
8008
  eventId: z.ZodString;
7253
8009
  transactionId: z.ZodString;
7254
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
7255
8011
  filename: z.ZodString;
7256
8012
  originalFilename: z.ZodString;
7257
8013
  type: z.ZodString;
@@ -7364,8 +8120,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7364
8120
  addressLine2?: string | null | undefined;
7365
8121
  addressLine3?: string | null | undefined;
7366
8122
  postcodeOrZip?: string | null | undefined;
7367
- }>]>>>;
7368
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
7369
8137
  filename: z.ZodString;
7370
8138
  originalFilename: z.ZodString;
7371
8139
  type: z.ZodString;
@@ -7478,7 +8246,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7478
8246
  addressLine2?: string | null | undefined;
7479
8247
  addressLine3?: string | null | undefined;
7480
8248
  postcodeOrZip?: string | null | undefined;
7481
- }>]>>>;
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]>]>>>;
7482
8262
  originalActionId: z.ZodOptional<z.ZodString>;
7483
8263
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7484
8264
  }, {
@@ -7501,6 +8281,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7501
8281
  residentialArea?: string | null | undefined;
7502
8282
  street?: string | null | undefined;
7503
8283
  zipCode?: string | null | undefined;
8284
+ } | {
8285
+ firstname: string;
8286
+ surname: string;
8287
+ middlename?: string | null | undefined;
7504
8288
  } | {
7505
8289
  country: string;
7506
8290
  district: string;
@@ -7523,7 +8307,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7523
8307
  option: string;
7524
8308
  filename: string;
7525
8309
  originalFilename: string;
7526
- }[] | undefined>;
8310
+ }[] | [string, string] | null | undefined>;
7527
8311
  eventId: string;
7528
8312
  annotation?: Record<string, string | number | boolean | {
7529
8313
  type: string;
@@ -7540,6 +8324,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7540
8324
  residentialArea?: string | null | undefined;
7541
8325
  street?: string | null | undefined;
7542
8326
  zipCode?: string | null | undefined;
8327
+ } | {
8328
+ firstname: string;
8329
+ surname: string;
8330
+ middlename?: string | null | undefined;
7543
8331
  } | {
7544
8332
  country: string;
7545
8333
  district: string;
@@ -7562,7 +8350,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7562
8350
  option: string;
7563
8351
  filename: string;
7564
8352
  originalFilename: string;
7565
- }[] | undefined> | undefined;
8353
+ }[] | [string, string] | null | undefined> | undefined;
7566
8354
  originalActionId?: string | undefined;
7567
8355
  keepAssignment?: boolean | undefined;
7568
8356
  }, {
@@ -7584,6 +8372,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7584
8372
  residentialArea?: string | null | undefined;
7585
8373
  street?: string | null | undefined;
7586
8374
  zipCode?: string | null | undefined;
8375
+ } | {
8376
+ firstname: string;
8377
+ surname: string;
8378
+ middlename?: string | null | undefined;
7587
8379
  } | {
7588
8380
  country: string;
7589
8381
  district: string;
@@ -7606,7 +8398,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7606
8398
  option: string;
7607
8399
  filename: string;
7608
8400
  originalFilename: string;
7609
- }[] | undefined> | undefined;
8401
+ }[] | [string, string] | null | undefined> | undefined;
7610
8402
  annotation?: Record<string, string | number | boolean | {
7611
8403
  type: string;
7612
8404
  filename: string;
@@ -7622,6 +8414,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7622
8414
  residentialArea?: string | null | undefined;
7623
8415
  street?: string | null | undefined;
7624
8416
  zipCode?: string | null | undefined;
8417
+ } | {
8418
+ firstname: string;
8419
+ surname: string;
8420
+ middlename?: string | null | undefined;
7625
8421
  } | {
7626
8422
  country: string;
7627
8423
  district: string;
@@ -7644,13 +8440,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7644
8440
  option: string;
7645
8441
  filename: string;
7646
8442
  originalFilename: string;
7647
- }[] | undefined> | undefined;
8443
+ }[] | [string, string] | null | undefined> | undefined;
7648
8444
  originalActionId?: string | undefined;
7649
8445
  keepAssignment?: boolean | undefined;
7650
8446
  }>, z.ZodObject<z.objectUtil.extendShape<{
7651
8447
  eventId: z.ZodString;
7652
8448
  transactionId: z.ZodString;
7653
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
7654
8450
  filename: z.ZodString;
7655
8451
  originalFilename: z.ZodString;
7656
8452
  type: z.ZodString;
@@ -7763,8 +8559,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7763
8559
  addressLine2?: string | null | undefined;
7764
8560
  addressLine3?: string | null | undefined;
7765
8561
  postcodeOrZip?: string | null | undefined;
7766
- }>]>>>;
7767
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
7768
8576
  filename: z.ZodString;
7769
8577
  originalFilename: z.ZodString;
7770
8578
  type: z.ZodString;
@@ -7877,7 +8685,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7877
8685
  addressLine2?: string | null | undefined;
7878
8686
  addressLine3?: string | null | undefined;
7879
8687
  postcodeOrZip?: string | null | undefined;
7880
- }>]>>>;
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]>]>>>;
7881
8701
  originalActionId: z.ZodOptional<z.ZodString>;
7882
8702
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7883
8703
  }, {
@@ -7900,6 +8720,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7900
8720
  residentialArea?: string | null | undefined;
7901
8721
  street?: string | null | undefined;
7902
8722
  zipCode?: string | null | undefined;
8723
+ } | {
8724
+ firstname: string;
8725
+ surname: string;
8726
+ middlename?: string | null | undefined;
7903
8727
  } | {
7904
8728
  country: string;
7905
8729
  district: string;
@@ -7922,7 +8746,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7922
8746
  option: string;
7923
8747
  filename: string;
7924
8748
  originalFilename: string;
7925
- }[] | undefined>;
8749
+ }[] | [string, string] | null | undefined>;
7926
8750
  eventId: string;
7927
8751
  annotation?: Record<string, string | number | boolean | {
7928
8752
  type: string;
@@ -7939,6 +8763,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7939
8763
  residentialArea?: string | null | undefined;
7940
8764
  street?: string | null | undefined;
7941
8765
  zipCode?: string | null | undefined;
8766
+ } | {
8767
+ firstname: string;
8768
+ surname: string;
8769
+ middlename?: string | null | undefined;
7942
8770
  } | {
7943
8771
  country: string;
7944
8772
  district: string;
@@ -7961,7 +8789,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7961
8789
  option: string;
7962
8790
  filename: string;
7963
8791
  originalFilename: string;
7964
- }[] | undefined> | undefined;
8792
+ }[] | [string, string] | null | undefined> | undefined;
7965
8793
  originalActionId?: string | undefined;
7966
8794
  keepAssignment?: boolean | undefined;
7967
8795
  }, {
@@ -7983,6 +8811,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7983
8811
  residentialArea?: string | null | undefined;
7984
8812
  street?: string | null | undefined;
7985
8813
  zipCode?: string | null | undefined;
8814
+ } | {
8815
+ firstname: string;
8816
+ surname: string;
8817
+ middlename?: string | null | undefined;
7986
8818
  } | {
7987
8819
  country: string;
7988
8820
  district: string;
@@ -8005,7 +8837,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8005
8837
  option: string;
8006
8838
  filename: string;
8007
8839
  originalFilename: string;
8008
- }[] | undefined> | undefined;
8840
+ }[] | [string, string] | null | undefined> | undefined;
8009
8841
  annotation?: Record<string, string | number | boolean | {
8010
8842
  type: string;
8011
8843
  filename: string;
@@ -8021,6 +8853,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8021
8853
  residentialArea?: string | null | undefined;
8022
8854
  street?: string | null | undefined;
8023
8855
  zipCode?: string | null | undefined;
8856
+ } | {
8857
+ firstname: string;
8858
+ surname: string;
8859
+ middlename?: string | null | undefined;
8024
8860
  } | {
8025
8861
  country: string;
8026
8862
  district: string;
@@ -8043,13 +8879,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8043
8879
  option: string;
8044
8880
  filename: string;
8045
8881
  originalFilename: string;
8046
- }[] | undefined> | undefined;
8882
+ }[] | [string, string] | null | undefined> | undefined;
8047
8883
  originalActionId?: string | undefined;
8048
8884
  keepAssignment?: boolean | undefined;
8049
8885
  }>, z.ZodObject<z.objectUtil.extendShape<{
8050
8886
  eventId: z.ZodString;
8051
8887
  transactionId: z.ZodString;
8052
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
8053
8889
  filename: z.ZodString;
8054
8890
  originalFilename: z.ZodString;
8055
8891
  type: z.ZodString;
@@ -8162,8 +8998,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8162
8998
  addressLine2?: string | null | undefined;
8163
8999
  addressLine3?: string | null | undefined;
8164
9000
  postcodeOrZip?: string | null | undefined;
8165
- }>]>>>;
8166
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
8167
9015
  filename: z.ZodString;
8168
9016
  originalFilename: z.ZodString;
8169
9017
  type: z.ZodString;
@@ -8276,13 +9124,39 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8276
9124
  addressLine2?: string | null | undefined;
8277
9125
  addressLine3?: string | null | undefined;
8278
9126
  postcodeOrZip?: string | null | undefined;
8279
- }>]>>>;
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]>]>>>;
8280
9140
  originalActionId: z.ZodOptional<z.ZodString>;
8281
9141
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8282
9142
  }, {
8283
9143
  type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
9144
+ reason: z.ZodObject<{
9145
+ message: z.ZodString;
9146
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
9147
+ }, "strip", z.ZodTypeAny, {
9148
+ message: string;
9149
+ isDuplicate?: boolean | undefined;
9150
+ }, {
9151
+ message: string;
9152
+ isDuplicate?: boolean | undefined;
9153
+ }>;
8284
9154
  }>, "strip", z.ZodTypeAny, {
8285
9155
  type: "REJECT";
9156
+ reason: {
9157
+ message: string;
9158
+ isDuplicate?: boolean | undefined;
9159
+ };
8286
9160
  transactionId: string;
8287
9161
  declaration: Record<string, string | number | boolean | {
8288
9162
  type: string;
@@ -8299,6 +9173,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8299
9173
  residentialArea?: string | null | undefined;
8300
9174
  street?: string | null | undefined;
8301
9175
  zipCode?: string | null | undefined;
9176
+ } | {
9177
+ firstname: string;
9178
+ surname: string;
9179
+ middlename?: string | null | undefined;
8302
9180
  } | {
8303
9181
  country: string;
8304
9182
  district: string;
@@ -8321,7 +9199,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8321
9199
  option: string;
8322
9200
  filename: string;
8323
9201
  originalFilename: string;
8324
- }[] | undefined>;
9202
+ }[] | [string, string] | null | undefined>;
8325
9203
  eventId: string;
8326
9204
  annotation?: Record<string, string | number | boolean | {
8327
9205
  type: string;
@@ -8338,6 +9216,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8338
9216
  residentialArea?: string | null | undefined;
8339
9217
  street?: string | null | undefined;
8340
9218
  zipCode?: string | null | undefined;
9219
+ } | {
9220
+ firstname: string;
9221
+ surname: string;
9222
+ middlename?: string | null | undefined;
8341
9223
  } | {
8342
9224
  country: string;
8343
9225
  district: string;
@@ -8360,10 +9242,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8360
9242
  option: string;
8361
9243
  filename: string;
8362
9244
  originalFilename: string;
8363
- }[] | undefined> | undefined;
9245
+ }[] | [string, string] | null | undefined> | undefined;
8364
9246
  originalActionId?: string | undefined;
8365
9247
  keepAssignment?: boolean | undefined;
8366
9248
  }, {
9249
+ reason: {
9250
+ message: string;
9251
+ isDuplicate?: boolean | undefined;
9252
+ };
8367
9253
  transactionId: string;
8368
9254
  eventId: string;
8369
9255
  type?: "REJECT" | undefined;
@@ -8382,6 +9268,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8382
9268
  residentialArea?: string | null | undefined;
8383
9269
  street?: string | null | undefined;
8384
9270
  zipCode?: string | null | undefined;
9271
+ } | {
9272
+ firstname: string;
9273
+ surname: string;
9274
+ middlename?: string | null | undefined;
8385
9275
  } | {
8386
9276
  country: string;
8387
9277
  district: string;
@@ -8404,7 +9294,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8404
9294
  option: string;
8405
9295
  filename: string;
8406
9296
  originalFilename: string;
8407
- }[] | undefined> | undefined;
9297
+ }[] | [string, string] | null | undefined> | undefined;
8408
9298
  annotation?: Record<string, string | number | boolean | {
8409
9299
  type: string;
8410
9300
  filename: string;
@@ -8420,6 +9310,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8420
9310
  residentialArea?: string | null | undefined;
8421
9311
  street?: string | null | undefined;
8422
9312
  zipCode?: string | null | undefined;
9313
+ } | {
9314
+ firstname: string;
9315
+ surname: string;
9316
+ middlename?: string | null | undefined;
8423
9317
  } | {
8424
9318
  country: string;
8425
9319
  district: string;
@@ -8442,13 +9336,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8442
9336
  option: string;
8443
9337
  filename: string;
8444
9338
  originalFilename: string;
8445
- }[] | undefined> | undefined;
9339
+ }[] | [string, string] | null | undefined> | undefined;
8446
9340
  originalActionId?: string | undefined;
8447
9341
  keepAssignment?: boolean | undefined;
8448
9342
  }>, z.ZodObject<z.objectUtil.extendShape<{
8449
9343
  eventId: z.ZodString;
8450
9344
  transactionId: z.ZodString;
8451
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
8452
9346
  filename: z.ZodString;
8453
9347
  originalFilename: z.ZodString;
8454
9348
  type: z.ZodString;
@@ -8561,8 +9455,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8561
9455
  addressLine2?: string | null | undefined;
8562
9456
  addressLine3?: string | null | undefined;
8563
9457
  postcodeOrZip?: string | null | undefined;
8564
- }>]>>>;
8565
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
8566
9472
  filename: z.ZodString;
8567
9473
  originalFilename: z.ZodString;
8568
9474
  type: z.ZodString;
@@ -8675,7 +9581,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8675
9581
  addressLine2?: string | null | undefined;
8676
9582
  addressLine3?: string | null | undefined;
8677
9583
  postcodeOrZip?: string | null | undefined;
8678
- }>]>>>;
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]>]>>>;
8679
9597
  originalActionId: z.ZodOptional<z.ZodString>;
8680
9598
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8681
9599
  }, {
@@ -8698,6 +9616,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8698
9616
  residentialArea?: string | null | undefined;
8699
9617
  street?: string | null | undefined;
8700
9618
  zipCode?: string | null | undefined;
9619
+ } | {
9620
+ firstname: string;
9621
+ surname: string;
9622
+ middlename?: string | null | undefined;
8701
9623
  } | {
8702
9624
  country: string;
8703
9625
  district: string;
@@ -8720,7 +9642,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8720
9642
  option: string;
8721
9643
  filename: string;
8722
9644
  originalFilename: string;
8723
- }[] | undefined>;
9645
+ }[] | [string, string] | null | undefined>;
8724
9646
  eventId: string;
8725
9647
  annotation?: Record<string, string | number | boolean | {
8726
9648
  type: string;
@@ -8737,6 +9659,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8737
9659
  residentialArea?: string | null | undefined;
8738
9660
  street?: string | null | undefined;
8739
9661
  zipCode?: string | null | undefined;
9662
+ } | {
9663
+ firstname: string;
9664
+ surname: string;
9665
+ middlename?: string | null | undefined;
8740
9666
  } | {
8741
9667
  country: string;
8742
9668
  district: string;
@@ -8759,7 +9685,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8759
9685
  option: string;
8760
9686
  filename: string;
8761
9687
  originalFilename: string;
8762
- }[] | undefined> | undefined;
9688
+ }[] | [string, string] | null | undefined> | undefined;
8763
9689
  originalActionId?: string | undefined;
8764
9690
  keepAssignment?: boolean | undefined;
8765
9691
  }, {
@@ -8781,6 +9707,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8781
9707
  residentialArea?: string | null | undefined;
8782
9708
  street?: string | null | undefined;
8783
9709
  zipCode?: string | null | undefined;
9710
+ } | {
9711
+ firstname: string;
9712
+ surname: string;
9713
+ middlename?: string | null | undefined;
8784
9714
  } | {
8785
9715
  country: string;
8786
9716
  district: string;
@@ -8803,7 +9733,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8803
9733
  option: string;
8804
9734
  filename: string;
8805
9735
  originalFilename: string;
8806
- }[] | undefined> | undefined;
9736
+ }[] | [string, string] | null | undefined> | undefined;
8807
9737
  annotation?: Record<string, string | number | boolean | {
8808
9738
  type: string;
8809
9739
  filename: string;
@@ -8819,6 +9749,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8819
9749
  residentialArea?: string | null | undefined;
8820
9750
  street?: string | null | undefined;
8821
9751
  zipCode?: string | null | undefined;
9752
+ } | {
9753
+ firstname: string;
9754
+ surname: string;
9755
+ middlename?: string | null | undefined;
8822
9756
  } | {
8823
9757
  country: string;
8824
9758
  district: string;
@@ -8841,13 +9775,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8841
9775
  option: string;
8842
9776
  filename: string;
8843
9777
  originalFilename: string;
8844
- }[] | undefined> | undefined;
9778
+ }[] | [string, string] | null | undefined> | undefined;
8845
9779
  originalActionId?: string | undefined;
8846
9780
  keepAssignment?: boolean | undefined;
8847
9781
  }>, z.ZodObject<z.objectUtil.extendShape<{
8848
9782
  eventId: z.ZodString;
8849
9783
  transactionId: z.ZodString;
8850
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
8851
9785
  filename: z.ZodString;
8852
9786
  originalFilename: z.ZodString;
8853
9787
  type: z.ZodString;
@@ -8960,8 +9894,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8960
9894
  addressLine2?: string | null | undefined;
8961
9895
  addressLine3?: string | null | undefined;
8962
9896
  postcodeOrZip?: string | null | undefined;
8963
- }>]>>>;
8964
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
8965
9911
  filename: z.ZodString;
8966
9912
  originalFilename: z.ZodString;
8967
9913
  type: z.ZodString;
@@ -9074,13 +10020,39 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9074
10020
  addressLine2?: string | null | undefined;
9075
10021
  addressLine3?: string | null | undefined;
9076
10022
  postcodeOrZip?: string | null | undefined;
9077
- }>]>>>;
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]>]>>>;
9078
10036
  originalActionId: z.ZodOptional<z.ZodString>;
9079
10037
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9080
10038
  }, {
9081
10039
  type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
10040
+ reason: z.ZodObject<{
10041
+ message: z.ZodString;
10042
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
10043
+ }, "strip", z.ZodTypeAny, {
10044
+ message: string;
10045
+ isDuplicate?: boolean | undefined;
10046
+ }, {
10047
+ message: string;
10048
+ isDuplicate?: boolean | undefined;
10049
+ }>;
9082
10050
  }>, "strip", z.ZodTypeAny, {
9083
10051
  type: "ARCHIVE";
10052
+ reason: {
10053
+ message: string;
10054
+ isDuplicate?: boolean | undefined;
10055
+ };
9084
10056
  transactionId: string;
9085
10057
  declaration: Record<string, string | number | boolean | {
9086
10058
  type: string;
@@ -9097,6 +10069,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9097
10069
  residentialArea?: string | null | undefined;
9098
10070
  street?: string | null | undefined;
9099
10071
  zipCode?: string | null | undefined;
10072
+ } | {
10073
+ firstname: string;
10074
+ surname: string;
10075
+ middlename?: string | null | undefined;
9100
10076
  } | {
9101
10077
  country: string;
9102
10078
  district: string;
@@ -9119,7 +10095,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9119
10095
  option: string;
9120
10096
  filename: string;
9121
10097
  originalFilename: string;
9122
- }[] | undefined>;
10098
+ }[] | [string, string] | null | undefined>;
9123
10099
  eventId: string;
9124
10100
  annotation?: Record<string, string | number | boolean | {
9125
10101
  type: string;
@@ -9136,6 +10112,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9136
10112
  residentialArea?: string | null | undefined;
9137
10113
  street?: string | null | undefined;
9138
10114
  zipCode?: string | null | undefined;
10115
+ } | {
10116
+ firstname: string;
10117
+ surname: string;
10118
+ middlename?: string | null | undefined;
9139
10119
  } | {
9140
10120
  country: string;
9141
10121
  district: string;
@@ -9158,10 +10138,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9158
10138
  option: string;
9159
10139
  filename: string;
9160
10140
  originalFilename: string;
9161
- }[] | undefined> | undefined;
10141
+ }[] | [string, string] | null | undefined> | undefined;
9162
10142
  originalActionId?: string | undefined;
9163
10143
  keepAssignment?: boolean | undefined;
9164
10144
  }, {
10145
+ reason: {
10146
+ message: string;
10147
+ isDuplicate?: boolean | undefined;
10148
+ };
9165
10149
  transactionId: string;
9166
10150
  eventId: string;
9167
10151
  type?: "ARCHIVE" | undefined;
@@ -9180,6 +10164,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9180
10164
  residentialArea?: string | null | undefined;
9181
10165
  street?: string | null | undefined;
9182
10166
  zipCode?: string | null | undefined;
10167
+ } | {
10168
+ firstname: string;
10169
+ surname: string;
10170
+ middlename?: string | null | undefined;
9183
10171
  } | {
9184
10172
  country: string;
9185
10173
  district: string;
@@ -9202,7 +10190,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9202
10190
  option: string;
9203
10191
  filename: string;
9204
10192
  originalFilename: string;
9205
- }[] | undefined> | undefined;
10193
+ }[] | [string, string] | null | undefined> | undefined;
9206
10194
  annotation?: Record<string, string | number | boolean | {
9207
10195
  type: string;
9208
10196
  filename: string;
@@ -9218,6 +10206,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9218
10206
  residentialArea?: string | null | undefined;
9219
10207
  street?: string | null | undefined;
9220
10208
  zipCode?: string | null | undefined;
10209
+ } | {
10210
+ firstname: string;
10211
+ surname: string;
10212
+ middlename?: string | null | undefined;
9221
10213
  } | {
9222
10214
  country: string;
9223
10215
  district: string;
@@ -9240,13 +10232,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9240
10232
  option: string;
9241
10233
  filename: string;
9242
10234
  originalFilename: string;
9243
- }[] | undefined> | undefined;
10235
+ }[] | [string, string] | null | undefined> | undefined;
9244
10236
  originalActionId?: string | undefined;
9245
10237
  keepAssignment?: boolean | undefined;
9246
10238
  }>, z.ZodObject<z.objectUtil.extendShape<{
9247
10239
  eventId: z.ZodString;
9248
10240
  transactionId: z.ZodString;
9249
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
9250
10242
  filename: z.ZodString;
9251
10243
  originalFilename: z.ZodString;
9252
10244
  type: z.ZodString;
@@ -9359,8 +10351,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9359
10351
  addressLine2?: string | null | undefined;
9360
10352
  addressLine3?: string | null | undefined;
9361
10353
  postcodeOrZip?: string | null | undefined;
9362
- }>]>>>;
9363
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
9364
10368
  filename: z.ZodString;
9365
10369
  originalFilename: z.ZodString;
9366
10370
  type: z.ZodString;
@@ -9473,7 +10477,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9473
10477
  addressLine2?: string | null | undefined;
9474
10478
  addressLine3?: string | null | undefined;
9475
10479
  postcodeOrZip?: string | null | undefined;
9476
- }>]>>>;
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]>]>>>;
9477
10493
  originalActionId: z.ZodOptional<z.ZodString>;
9478
10494
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9479
10495
  }, {
@@ -9497,6 +10513,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9497
10513
  residentialArea?: string | null | undefined;
9498
10514
  street?: string | null | undefined;
9499
10515
  zipCode?: string | null | undefined;
10516
+ } | {
10517
+ firstname: string;
10518
+ surname: string;
10519
+ middlename?: string | null | undefined;
9500
10520
  } | {
9501
10521
  country: string;
9502
10522
  district: string;
@@ -9519,7 +10539,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9519
10539
  option: string;
9520
10540
  filename: string;
9521
10541
  originalFilename: string;
9522
- }[] | undefined>;
10542
+ }[] | [string, string] | null | undefined>;
9523
10543
  assignedTo: string;
9524
10544
  eventId: string;
9525
10545
  annotation?: Record<string, string | number | boolean | {
@@ -9537,6 +10557,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9537
10557
  residentialArea?: string | null | undefined;
9538
10558
  street?: string | null | undefined;
9539
10559
  zipCode?: string | null | undefined;
10560
+ } | {
10561
+ firstname: string;
10562
+ surname: string;
10563
+ middlename?: string | null | undefined;
9540
10564
  } | {
9541
10565
  country: string;
9542
10566
  district: string;
@@ -9559,7 +10583,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9559
10583
  option: string;
9560
10584
  filename: string;
9561
10585
  originalFilename: string;
9562
- }[] | undefined> | undefined;
10586
+ }[] | [string, string] | null | undefined> | undefined;
9563
10587
  originalActionId?: string | undefined;
9564
10588
  keepAssignment?: boolean | undefined;
9565
10589
  }, {
@@ -9582,6 +10606,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9582
10606
  residentialArea?: string | null | undefined;
9583
10607
  street?: string | null | undefined;
9584
10608
  zipCode?: string | null | undefined;
10609
+ } | {
10610
+ firstname: string;
10611
+ surname: string;
10612
+ middlename?: string | null | undefined;
9585
10613
  } | {
9586
10614
  country: string;
9587
10615
  district: string;
@@ -9604,7 +10632,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9604
10632
  option: string;
9605
10633
  filename: string;
9606
10634
  originalFilename: string;
9607
- }[] | undefined> | undefined;
10635
+ }[] | [string, string] | null | undefined> | undefined;
9608
10636
  annotation?: Record<string, string | number | boolean | {
9609
10637
  type: string;
9610
10638
  filename: string;
@@ -9620,6 +10648,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9620
10648
  residentialArea?: string | null | undefined;
9621
10649
  street?: string | null | undefined;
9622
10650
  zipCode?: string | null | undefined;
10651
+ } | {
10652
+ firstname: string;
10653
+ surname: string;
10654
+ middlename?: string | null | undefined;
9623
10655
  } | {
9624
10656
  country: string;
9625
10657
  district: string;
@@ -9642,13 +10674,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9642
10674
  option: string;
9643
10675
  filename: string;
9644
10676
  originalFilename: string;
9645
- }[] | undefined> | undefined;
10677
+ }[] | [string, string] | null | undefined> | undefined;
9646
10678
  originalActionId?: string | undefined;
9647
10679
  keepAssignment?: boolean | undefined;
9648
10680
  }>, z.ZodObject<z.objectUtil.extendShape<{
9649
10681
  eventId: z.ZodString;
9650
10682
  transactionId: z.ZodString;
9651
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
9652
10684
  filename: z.ZodString;
9653
10685
  originalFilename: z.ZodString;
9654
10686
  type: z.ZodString;
@@ -9761,8 +10793,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9761
10793
  addressLine2?: string | null | undefined;
9762
10794
  addressLine3?: string | null | undefined;
9763
10795
  postcodeOrZip?: string | null | undefined;
9764
- }>]>>>;
9765
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
9766
10810
  filename: z.ZodString;
9767
10811
  originalFilename: z.ZodString;
9768
10812
  type: z.ZodString;
@@ -9875,7 +10919,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9875
10919
  addressLine2?: string | null | undefined;
9876
10920
  addressLine3?: string | null | undefined;
9877
10921
  postcodeOrZip?: string | null | undefined;
9878
- }>]>>>;
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]>]>>>;
9879
10935
  originalActionId: z.ZodOptional<z.ZodString>;
9880
10936
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9881
10937
  }, {
@@ -9899,6 +10955,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9899
10955
  residentialArea?: string | null | undefined;
9900
10956
  street?: string | null | undefined;
9901
10957
  zipCode?: string | null | undefined;
10958
+ } | {
10959
+ firstname: string;
10960
+ surname: string;
10961
+ middlename?: string | null | undefined;
9902
10962
  } | {
9903
10963
  country: string;
9904
10964
  district: string;
@@ -9921,7 +10981,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9921
10981
  option: string;
9922
10982
  filename: string;
9923
10983
  originalFilename: string;
9924
- }[] | undefined>;
10984
+ }[] | [string, string] | null | undefined>;
9925
10985
  assignedTo: null;
9926
10986
  eventId: string;
9927
10987
  annotation?: Record<string, string | number | boolean | {
@@ -9939,6 +10999,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9939
10999
  residentialArea?: string | null | undefined;
9940
11000
  street?: string | null | undefined;
9941
11001
  zipCode?: string | null | undefined;
11002
+ } | {
11003
+ firstname: string;
11004
+ surname: string;
11005
+ middlename?: string | null | undefined;
9942
11006
  } | {
9943
11007
  country: string;
9944
11008
  district: string;
@@ -9961,7 +11025,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9961
11025
  option: string;
9962
11026
  filename: string;
9963
11027
  originalFilename: string;
9964
- }[] | undefined> | undefined;
11028
+ }[] | [string, string] | null | undefined> | undefined;
9965
11029
  originalActionId?: string | undefined;
9966
11030
  keepAssignment?: boolean | undefined;
9967
11031
  }, {
@@ -9983,6 +11047,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9983
11047
  residentialArea?: string | null | undefined;
9984
11048
  street?: string | null | undefined;
9985
11049
  zipCode?: string | null | undefined;
11050
+ } | {
11051
+ firstname: string;
11052
+ surname: string;
11053
+ middlename?: string | null | undefined;
9986
11054
  } | {
9987
11055
  country: string;
9988
11056
  district: string;
@@ -10005,7 +11073,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10005
11073
  option: string;
10006
11074
  filename: string;
10007
11075
  originalFilename: string;
10008
- }[] | undefined> | undefined;
11076
+ }[] | [string, string] | null | undefined> | undefined;
10009
11077
  annotation?: Record<string, string | number | boolean | {
10010
11078
  type: string;
10011
11079
  filename: string;
@@ -10021,6 +11089,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10021
11089
  residentialArea?: string | null | undefined;
10022
11090
  street?: string | null | undefined;
10023
11091
  zipCode?: string | null | undefined;
11092
+ } | {
11093
+ firstname: string;
11094
+ surname: string;
11095
+ middlename?: string | null | undefined;
10024
11096
  } | {
10025
11097
  country: string;
10026
11098
  district: string;
@@ -10043,14 +11115,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10043
11115
  option: string;
10044
11116
  filename: string;
10045
11117
  originalFilename: string;
10046
- }[] | undefined> | undefined;
11118
+ }[] | [string, string] | null | undefined> | undefined;
10047
11119
  originalActionId?: string | undefined;
10048
11120
  assignedTo?: null | undefined;
10049
11121
  keepAssignment?: boolean | undefined;
10050
11122
  }>, z.ZodObject<z.objectUtil.extendShape<{
10051
11123
  eventId: z.ZodString;
10052
11124
  transactionId: z.ZodString;
10053
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
10054
11126
  filename: z.ZodString;
10055
11127
  originalFilename: z.ZodString;
10056
11128
  type: z.ZodString;
@@ -10163,8 +11235,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10163
11235
  addressLine2?: string | null | undefined;
10164
11236
  addressLine3?: string | null | undefined;
10165
11237
  postcodeOrZip?: string | null | undefined;
10166
- }>]>>>;
10167
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
10168
11252
  filename: z.ZodString;
10169
11253
  originalFilename: z.ZodString;
10170
11254
  type: z.ZodString;
@@ -10277,7 +11361,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10277
11361
  addressLine2?: string | null | undefined;
10278
11362
  addressLine3?: string | null | undefined;
10279
11363
  postcodeOrZip?: string | null | undefined;
10280
- }>]>>>;
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]>]>>>;
10281
11377
  originalActionId: z.ZodOptional<z.ZodString>;
10282
11378
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10283
11379
  }, {
@@ -10300,6 +11396,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10300
11396
  residentialArea?: string | null | undefined;
10301
11397
  street?: string | null | undefined;
10302
11398
  zipCode?: string | null | undefined;
11399
+ } | {
11400
+ firstname: string;
11401
+ surname: string;
11402
+ middlename?: string | null | undefined;
10303
11403
  } | {
10304
11404
  country: string;
10305
11405
  district: string;
@@ -10322,7 +11422,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10322
11422
  option: string;
10323
11423
  filename: string;
10324
11424
  originalFilename: string;
10325
- }[] | undefined>;
11425
+ }[] | [string, string] | null | undefined>;
10326
11426
  eventId: string;
10327
11427
  annotation?: Record<string, string | number | boolean | {
10328
11428
  type: string;
@@ -10339,6 +11439,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10339
11439
  residentialArea?: string | null | undefined;
10340
11440
  street?: string | null | undefined;
10341
11441
  zipCode?: string | null | undefined;
11442
+ } | {
11443
+ firstname: string;
11444
+ surname: string;
11445
+ middlename?: string | null | undefined;
10342
11446
  } | {
10343
11447
  country: string;
10344
11448
  district: string;
@@ -10361,7 +11465,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10361
11465
  option: string;
10362
11466
  filename: string;
10363
11467
  originalFilename: string;
10364
- }[] | undefined> | undefined;
11468
+ }[] | [string, string] | null | undefined> | undefined;
10365
11469
  originalActionId?: string | undefined;
10366
11470
  keepAssignment?: boolean | undefined;
10367
11471
  }, {
@@ -10383,6 +11487,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10383
11487
  residentialArea?: string | null | undefined;
10384
11488
  street?: string | null | undefined;
10385
11489
  zipCode?: string | null | undefined;
11490
+ } | {
11491
+ firstname: string;
11492
+ surname: string;
11493
+ middlename?: string | null | undefined;
10386
11494
  } | {
10387
11495
  country: string;
10388
11496
  district: string;
@@ -10405,7 +11513,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10405
11513
  option: string;
10406
11514
  filename: string;
10407
11515
  originalFilename: string;
10408
- }[] | undefined> | undefined;
11516
+ }[] | [string, string] | null | undefined> | undefined;
10409
11517
  annotation?: Record<string, string | number | boolean | {
10410
11518
  type: string;
10411
11519
  filename: string;
@@ -10421,6 +11529,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10421
11529
  residentialArea?: string | null | undefined;
10422
11530
  street?: string | null | undefined;
10423
11531
  zipCode?: string | null | undefined;
11532
+ } | {
11533
+ firstname: string;
11534
+ surname: string;
11535
+ middlename?: string | null | undefined;
10424
11536
  } | {
10425
11537
  country: string;
10426
11538
  district: string;
@@ -10443,13 +11555,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10443
11555
  option: string;
10444
11556
  filename: string;
10445
11557
  originalFilename: string;
10446
- }[] | undefined> | undefined;
11558
+ }[] | [string, string] | null | undefined> | undefined;
10447
11559
  originalActionId?: string | undefined;
10448
11560
  keepAssignment?: boolean | undefined;
10449
11561
  }>, z.ZodObject<z.objectUtil.extendShape<{
10450
11562
  eventId: z.ZodString;
10451
11563
  transactionId: z.ZodString;
10452
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
10453
11565
  filename: z.ZodString;
10454
11566
  originalFilename: z.ZodString;
10455
11567
  type: z.ZodString;
@@ -10562,8 +11674,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10562
11674
  addressLine2?: string | null | undefined;
10563
11675
  addressLine3?: string | null | undefined;
10564
11676
  postcodeOrZip?: string | null | undefined;
10565
- }>]>>>;
10566
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
10567
11691
  filename: z.ZodString;
10568
11692
  originalFilename: z.ZodString;
10569
11693
  type: z.ZodString;
@@ -10676,7 +11800,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10676
11800
  addressLine2?: string | null | undefined;
10677
11801
  addressLine3?: string | null | undefined;
10678
11802
  postcodeOrZip?: string | null | undefined;
10679
- }>]>>>;
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]>]>>>;
10680
11816
  originalActionId: z.ZodOptional<z.ZodString>;
10681
11817
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10682
11818
  }, {
@@ -10699,6 +11835,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10699
11835
  residentialArea?: string | null | undefined;
10700
11836
  street?: string | null | undefined;
10701
11837
  zipCode?: string | null | undefined;
11838
+ } | {
11839
+ firstname: string;
11840
+ surname: string;
11841
+ middlename?: string | null | undefined;
10702
11842
  } | {
10703
11843
  country: string;
10704
11844
  district: string;
@@ -10721,7 +11861,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10721
11861
  option: string;
10722
11862
  filename: string;
10723
11863
  originalFilename: string;
10724
- }[] | undefined>;
11864
+ }[] | [string, string] | null | undefined>;
10725
11865
  eventId: string;
10726
11866
  annotation?: Record<string, string | number | boolean | {
10727
11867
  type: string;
@@ -10738,6 +11878,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10738
11878
  residentialArea?: string | null | undefined;
10739
11879
  street?: string | null | undefined;
10740
11880
  zipCode?: string | null | undefined;
11881
+ } | {
11882
+ firstname: string;
11883
+ surname: string;
11884
+ middlename?: string | null | undefined;
10741
11885
  } | {
10742
11886
  country: string;
10743
11887
  district: string;
@@ -10760,7 +11904,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10760
11904
  option: string;
10761
11905
  filename: string;
10762
11906
  originalFilename: string;
10763
- }[] | undefined> | undefined;
11907
+ }[] | [string, string] | null | undefined> | undefined;
10764
11908
  originalActionId?: string | undefined;
10765
11909
  keepAssignment?: boolean | undefined;
10766
11910
  }, {
@@ -10782,6 +11926,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10782
11926
  residentialArea?: string | null | undefined;
10783
11927
  street?: string | null | undefined;
10784
11928
  zipCode?: string | null | undefined;
11929
+ } | {
11930
+ firstname: string;
11931
+ surname: string;
11932
+ middlename?: string | null | undefined;
10785
11933
  } | {
10786
11934
  country: string;
10787
11935
  district: string;
@@ -10804,7 +11952,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10804
11952
  option: string;
10805
11953
  filename: string;
10806
11954
  originalFilename: string;
10807
- }[] | undefined> | undefined;
11955
+ }[] | [string, string] | null | undefined> | undefined;
10808
11956
  annotation?: Record<string, string | number | boolean | {
10809
11957
  type: string;
10810
11958
  filename: string;
@@ -10820,6 +11968,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10820
11968
  residentialArea?: string | null | undefined;
10821
11969
  street?: string | null | undefined;
10822
11970
  zipCode?: string | null | undefined;
11971
+ } | {
11972
+ firstname: string;
11973
+ surname: string;
11974
+ middlename?: string | null | undefined;
10823
11975
  } | {
10824
11976
  country: string;
10825
11977
  district: string;
@@ -10842,13 +11994,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10842
11994
  option: string;
10843
11995
  filename: string;
10844
11996
  originalFilename: string;
10845
- }[] | undefined> | undefined;
11997
+ }[] | [string, string] | null | undefined> | undefined;
10846
11998
  originalActionId?: string | undefined;
10847
11999
  keepAssignment?: boolean | undefined;
10848
12000
  }>, z.ZodObject<z.objectUtil.extendShape<{
10849
12001
  eventId: z.ZodString;
10850
12002
  transactionId: z.ZodString;
10851
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
10852
12004
  filename: z.ZodString;
10853
12005
  originalFilename: z.ZodString;
10854
12006
  type: z.ZodString;
@@ -10961,8 +12113,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10961
12113
  addressLine2?: string | null | undefined;
10962
12114
  addressLine3?: string | null | undefined;
10963
12115
  postcodeOrZip?: string | null | undefined;
10964
- }>]>>>;
10965
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
10966
12130
  filename: z.ZodString;
10967
12131
  originalFilename: z.ZodString;
10968
12132
  type: z.ZodString;
@@ -11075,7 +12239,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11075
12239
  addressLine2?: string | null | undefined;
11076
12240
  addressLine3?: string | null | undefined;
11077
12241
  postcodeOrZip?: string | null | undefined;
11078
- }>]>>>;
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]>]>>>;
11079
12255
  originalActionId: z.ZodOptional<z.ZodString>;
11080
12256
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11081
12257
  }, {
@@ -11099,6 +12275,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11099
12275
  residentialArea?: string | null | undefined;
11100
12276
  street?: string | null | undefined;
11101
12277
  zipCode?: string | null | undefined;
12278
+ } | {
12279
+ firstname: string;
12280
+ surname: string;
12281
+ middlename?: string | null | undefined;
11102
12282
  } | {
11103
12283
  country: string;
11104
12284
  district: string;
@@ -11121,7 +12301,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11121
12301
  option: string;
11122
12302
  filename: string;
11123
12303
  originalFilename: string;
11124
- }[] | undefined>;
12304
+ }[] | [string, string] | null | undefined>;
11125
12305
  requestId: string;
11126
12306
  eventId: string;
11127
12307
  annotation?: Record<string, string | number | boolean | {
@@ -11139,6 +12319,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11139
12319
  residentialArea?: string | null | undefined;
11140
12320
  street?: string | null | undefined;
11141
12321
  zipCode?: string | null | undefined;
12322
+ } | {
12323
+ firstname: string;
12324
+ surname: string;
12325
+ middlename?: string | null | undefined;
11142
12326
  } | {
11143
12327
  country: string;
11144
12328
  district: string;
@@ -11161,7 +12345,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11161
12345
  option: string;
11162
12346
  filename: string;
11163
12347
  originalFilename: string;
11164
- }[] | undefined> | undefined;
12348
+ }[] | [string, string] | null | undefined> | undefined;
11165
12349
  originalActionId?: string | undefined;
11166
12350
  keepAssignment?: boolean | undefined;
11167
12351
  }, {
@@ -11184,6 +12368,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11184
12368
  residentialArea?: string | null | undefined;
11185
12369
  street?: string | null | undefined;
11186
12370
  zipCode?: string | null | undefined;
12371
+ } | {
12372
+ firstname: string;
12373
+ surname: string;
12374
+ middlename?: string | null | undefined;
11187
12375
  } | {
11188
12376
  country: string;
11189
12377
  district: string;
@@ -11206,7 +12394,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11206
12394
  option: string;
11207
12395
  filename: string;
11208
12396
  originalFilename: string;
11209
- }[] | undefined> | undefined;
12397
+ }[] | [string, string] | null | undefined> | undefined;
11210
12398
  annotation?: Record<string, string | number | boolean | {
11211
12399
  type: string;
11212
12400
  filename: string;
@@ -11222,6 +12410,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11222
12410
  residentialArea?: string | null | undefined;
11223
12411
  street?: string | null | undefined;
11224
12412
  zipCode?: string | null | undefined;
12413
+ } | {
12414
+ firstname: string;
12415
+ surname: string;
12416
+ middlename?: string | null | undefined;
11225
12417
  } | {
11226
12418
  country: string;
11227
12419
  district: string;
@@ -11244,13 +12436,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11244
12436
  option: string;
11245
12437
  filename: string;
11246
12438
  originalFilename: string;
11247
- }[] | undefined> | undefined;
12439
+ }[] | [string, string] | null | undefined> | undefined;
11248
12440
  originalActionId?: string | undefined;
11249
12441
  keepAssignment?: boolean | undefined;
11250
12442
  }>, z.ZodObject<z.objectUtil.extendShape<{
11251
12443
  eventId: z.ZodString;
11252
12444
  transactionId: z.ZodString;
11253
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
11254
12446
  filename: z.ZodString;
11255
12447
  originalFilename: z.ZodString;
11256
12448
  type: z.ZodString;
@@ -11363,8 +12555,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11363
12555
  addressLine2?: string | null | undefined;
11364
12556
  addressLine3?: string | null | undefined;
11365
12557
  postcodeOrZip?: string | null | undefined;
11366
- }>]>>>;
11367
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
11368
12572
  filename: z.ZodString;
11369
12573
  originalFilename: z.ZodString;
11370
12574
  type: z.ZodString;
@@ -11477,7 +12681,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11477
12681
  addressLine2?: string | null | undefined;
11478
12682
  addressLine3?: string | null | undefined;
11479
12683
  postcodeOrZip?: string | null | undefined;
11480
- }>]>>>;
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]>]>>>;
11481
12697
  originalActionId: z.ZodOptional<z.ZodString>;
11482
12698
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11483
12699
  }, {
@@ -11501,6 +12717,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11501
12717
  residentialArea?: string | null | undefined;
11502
12718
  street?: string | null | undefined;
11503
12719
  zipCode?: string | null | undefined;
12720
+ } | {
12721
+ firstname: string;
12722
+ surname: string;
12723
+ middlename?: string | null | undefined;
11504
12724
  } | {
11505
12725
  country: string;
11506
12726
  district: string;
@@ -11523,7 +12743,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11523
12743
  option: string;
11524
12744
  filename: string;
11525
12745
  originalFilename: string;
11526
- }[] | undefined>;
12746
+ }[] | [string, string] | null | undefined>;
11527
12747
  requestId: string;
11528
12748
  eventId: string;
11529
12749
  annotation?: Record<string, string | number | boolean | {
@@ -11541,6 +12761,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11541
12761
  residentialArea?: string | null | undefined;
11542
12762
  street?: string | null | undefined;
11543
12763
  zipCode?: string | null | undefined;
12764
+ } | {
12765
+ firstname: string;
12766
+ surname: string;
12767
+ middlename?: string | null | undefined;
11544
12768
  } | {
11545
12769
  country: string;
11546
12770
  district: string;
@@ -11563,7 +12787,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11563
12787
  option: string;
11564
12788
  filename: string;
11565
12789
  originalFilename: string;
11566
- }[] | undefined> | undefined;
12790
+ }[] | [string, string] | null | undefined> | undefined;
11567
12791
  originalActionId?: string | undefined;
11568
12792
  keepAssignment?: boolean | undefined;
11569
12793
  }, {
@@ -11586,6 +12810,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11586
12810
  residentialArea?: string | null | undefined;
11587
12811
  street?: string | null | undefined;
11588
12812
  zipCode?: string | null | undefined;
12813
+ } | {
12814
+ firstname: string;
12815
+ surname: string;
12816
+ middlename?: string | null | undefined;
11589
12817
  } | {
11590
12818
  country: string;
11591
12819
  district: string;
@@ -11608,7 +12836,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11608
12836
  option: string;
11609
12837
  filename: string;
11610
12838
  originalFilename: string;
11611
- }[] | undefined> | undefined;
12839
+ }[] | [string, string] | null | undefined> | undefined;
11612
12840
  annotation?: Record<string, string | number | boolean | {
11613
12841
  type: string;
11614
12842
  filename: string;
@@ -11624,6 +12852,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11624
12852
  residentialArea?: string | null | undefined;
11625
12853
  street?: string | null | undefined;
11626
12854
  zipCode?: string | null | undefined;
12855
+ } | {
12856
+ firstname: string;
12857
+ surname: string;
12858
+ middlename?: string | null | undefined;
11627
12859
  } | {
11628
12860
  country: string;
11629
12861
  district: string;
@@ -11646,13 +12878,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11646
12878
  option: string;
11647
12879
  filename: string;
11648
12880
  originalFilename: string;
11649
- }[] | undefined> | undefined;
12881
+ }[] | [string, string] | null | undefined> | undefined;
11650
12882
  originalActionId?: string | undefined;
11651
12883
  keepAssignment?: boolean | undefined;
11652
12884
  }>, z.ZodObject<z.objectUtil.extendShape<{
11653
12885
  eventId: z.ZodString;
11654
12886
  transactionId: z.ZodString;
11655
- declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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<{
11656
12888
  filename: z.ZodString;
11657
12889
  originalFilename: z.ZodString;
11658
12890
  type: z.ZodString;
@@ -11765,8 +12997,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11765
12997
  addressLine2?: string | null | undefined;
11766
12998
  addressLine3?: string | null | undefined;
11767
12999
  postcodeOrZip?: string | null | undefined;
11768
- }>]>>>;
11769
- annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
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]>]>>>;
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<{
11770
13014
  filename: z.ZodString;
11771
13015
  originalFilename: z.ZodString;
11772
13016
  type: z.ZodString;
@@ -11879,7 +13123,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11879
13123
  addressLine2?: string | null | undefined;
11880
13124
  addressLine3?: string | null | undefined;
11881
13125
  postcodeOrZip?: string | null | undefined;
11882
- }>]>>>;
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]>]>>>;
11883
13139
  originalActionId: z.ZodOptional<z.ZodString>;
11884
13140
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11885
13141
  }, {
@@ -11902,6 +13158,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11902
13158
  residentialArea?: string | null | undefined;
11903
13159
  street?: string | null | undefined;
11904
13160
  zipCode?: string | null | undefined;
13161
+ } | {
13162
+ firstname: string;
13163
+ surname: string;
13164
+ middlename?: string | null | undefined;
11905
13165
  } | {
11906
13166
  country: string;
11907
13167
  district: string;
@@ -11924,7 +13184,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11924
13184
  option: string;
11925
13185
  filename: string;
11926
13186
  originalFilename: string;
11927
- }[] | undefined>;
13187
+ }[] | [string, string] | null | undefined>;
11928
13188
  eventId: string;
11929
13189
  annotation?: Record<string, string | number | boolean | {
11930
13190
  type: string;
@@ -11941,6 +13201,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11941
13201
  residentialArea?: string | null | undefined;
11942
13202
  street?: string | null | undefined;
11943
13203
  zipCode?: string | null | undefined;
13204
+ } | {
13205
+ firstname: string;
13206
+ surname: string;
13207
+ middlename?: string | null | undefined;
11944
13208
  } | {
11945
13209
  country: string;
11946
13210
  district: string;
@@ -11963,7 +13227,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11963
13227
  option: string;
11964
13228
  filename: string;
11965
13229
  originalFilename: string;
11966
- }[] | undefined> | undefined;
13230
+ }[] | [string, string] | null | undefined> | undefined;
11967
13231
  originalActionId?: string | undefined;
11968
13232
  keepAssignment?: boolean | undefined;
11969
13233
  }, {
@@ -11985,6 +13249,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11985
13249
  residentialArea?: string | null | undefined;
11986
13250
  street?: string | null | undefined;
11987
13251
  zipCode?: string | null | undefined;
13252
+ } | {
13253
+ firstname: string;
13254
+ surname: string;
13255
+ middlename?: string | null | undefined;
11988
13256
  } | {
11989
13257
  country: string;
11990
13258
  district: string;
@@ -12007,7 +13275,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12007
13275
  option: string;
12008
13276
  filename: string;
12009
13277
  originalFilename: string;
12010
- }[] | undefined> | undefined;
13278
+ }[] | [string, string] | null | undefined> | undefined;
12011
13279
  annotation?: Record<string, string | number | boolean | {
12012
13280
  type: string;
12013
13281
  filename: string;
@@ -12023,6 +13291,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12023
13291
  residentialArea?: string | null | undefined;
12024
13292
  street?: string | null | undefined;
12025
13293
  zipCode?: string | null | undefined;
13294
+ } | {
13295
+ firstname: string;
13296
+ surname: string;
13297
+ middlename?: string | null | undefined;
12026
13298
  } | {
12027
13299
  country: string;
12028
13300
  district: string;
@@ -12045,7 +13317,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12045
13317
  option: string;
12046
13318
  filename: string;
12047
13319
  originalFilename: string;
12048
- }[] | undefined> | undefined;
13320
+ }[] | [string, string] | null | undefined> | undefined;
12049
13321
  originalActionId?: string | undefined;
12050
13322
  keepAssignment?: boolean | undefined;
12051
13323
  }>]>;