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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/commons/api/router.d.ts +10468 -1335
  2. package/dist/commons/events/ActionConfig.d.ts +0 -2600
  3. package/dist/commons/events/ActionDocument.d.ts +1087 -1081
  4. package/dist/commons/events/ActionInput.d.ts +726 -726
  5. package/dist/commons/events/ActionType.d.ts +2 -0
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +18 -222
  7. package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +572 -1234
  9. package/dist/commons/events/CreatedAtLocation.d.ts +2 -1
  10. package/dist/commons/events/Draft.d.ts +77 -77
  11. package/dist/commons/events/EventConfig.d.ts +0 -1458
  12. package/dist/commons/events/EventDocument.d.ts +711 -706
  13. package/dist/commons/events/EventIndex.d.ts +151 -135
  14. package/dist/commons/events/EventMetadata.d.ts +29 -38
  15. package/dist/commons/events/FieldConfig.d.ts +0 -178
  16. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  17. package/dist/commons/events/FieldValue.d.ts +12 -12
  18. package/dist/commons/events/FormConfig.d.ts +0 -1092
  19. package/dist/commons/events/PageConfig.d.ts +0 -260
  20. package/dist/commons/events/User.d.ts +3 -6
  21. package/dist/commons/events/WorkqueueConfig.d.ts +1028 -2038
  22. package/dist/commons/events/defineConfig.d.ts +0 -294
  23. package/dist/commons/events/field.d.ts +0 -5
  24. package/dist/commons/events/test.utils.d.ts +19 -30
  25. package/dist/commons/events/transactions.d.ts +1 -1
  26. package/dist/commons/events/utils.d.ts +15 -440
  27. package/dist/conditionals/index.js +18 -22
  28. package/dist/events/index.js +185 -303
  29. package/dist/scopes/index.d.ts +6 -92
  30. package/dist/scopes/index.js +9 -38
  31. package/package.json +3 -3
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  export declare const BaseActionInput: z.ZodObject<{
3
- eventId: z.ZodBranded<z.ZodString, "UUID">;
3
+ eventId: z.ZodString;
4
4
  transactionId: z.ZodString;
5
5
  declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
6
6
  filename: z.ZodString;
@@ -116,16 +116,16 @@ export declare const BaseActionInput: z.ZodObject<{
116
116
  addressLine3?: string | null | undefined;
117
117
  postcodeOrZip?: string | null | undefined;
118
118
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
119
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
120
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
119
+ firstname: z.ZodString;
120
+ surname: z.ZodString;
121
121
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
122
122
  }, "strip", z.ZodTypeAny, {
123
- firstname?: string | null | undefined;
124
- surname?: string | null | undefined;
123
+ firstname: string;
124
+ surname: string;
125
125
  middlename?: string | null | undefined;
126
126
  }, {
127
- firstname?: string | null | undefined;
128
- surname?: string | null | undefined;
127
+ firstname: string;
128
+ surname: string;
129
129
  middlename?: string | null | undefined;
130
130
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
131
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<{
@@ -242,19 +242,19 @@ export declare const BaseActionInput: z.ZodObject<{
242
242
  addressLine3?: string | null | undefined;
243
243
  postcodeOrZip?: string | null | undefined;
244
244
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
245
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
246
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
245
+ firstname: z.ZodString;
246
+ surname: z.ZodString;
247
247
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
248
248
  }, "strip", z.ZodTypeAny, {
249
- firstname?: string | null | undefined;
250
- surname?: string | null | undefined;
249
+ firstname: string;
250
+ surname: string;
251
251
  middlename?: string | null | undefined;
252
252
  }, {
253
- firstname?: string | null | undefined;
254
- surname?: string | null | undefined;
253
+ firstname: string;
254
+ surname: string;
255
255
  middlename?: string | null | undefined;
256
256
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
257
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
257
+ originalActionId: z.ZodOptional<z.ZodString>;
258
258
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
259
259
  }, "strip", z.ZodTypeAny, {
260
260
  transactionId: string;
@@ -274,8 +274,8 @@ export declare const BaseActionInput: z.ZodObject<{
274
274
  street?: string | null | undefined;
275
275
  zipCode?: string | null | undefined;
276
276
  } | {
277
- firstname?: string | null | undefined;
278
- surname?: string | null | undefined;
277
+ firstname: string;
278
+ surname: string;
279
279
  middlename?: string | null | undefined;
280
280
  } | {
281
281
  country: string;
@@ -300,7 +300,7 @@ export declare const BaseActionInput: z.ZodObject<{
300
300
  filename: string;
301
301
  originalFilename: string;
302
302
  }[] | [string, string] | null | undefined>;
303
- eventId: string & z.BRAND<"UUID">;
303
+ eventId: string;
304
304
  annotation?: Record<string, string | number | boolean | {
305
305
  type: string;
306
306
  filename: string;
@@ -317,8 +317,8 @@ export declare const BaseActionInput: z.ZodObject<{
317
317
  street?: string | null | undefined;
318
318
  zipCode?: string | null | undefined;
319
319
  } | {
320
- firstname?: string | null | undefined;
321
- surname?: string | null | undefined;
320
+ firstname: string;
321
+ surname: string;
322
322
  middlename?: string | null | undefined;
323
323
  } | {
324
324
  country: string;
@@ -343,7 +343,7 @@ export declare const BaseActionInput: z.ZodObject<{
343
343
  filename: string;
344
344
  originalFilename: string;
345
345
  }[] | [string, string] | null | undefined> | undefined;
346
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
346
+ originalActionId?: string | undefined;
347
347
  keepAssignment?: boolean | undefined;
348
348
  }, {
349
349
  transactionId: string;
@@ -364,8 +364,8 @@ export declare const BaseActionInput: z.ZodObject<{
364
364
  street?: string | null | undefined;
365
365
  zipCode?: string | null | undefined;
366
366
  } | {
367
- firstname?: string | null | undefined;
368
- surname?: string | null | undefined;
367
+ firstname: string;
368
+ surname: string;
369
369
  middlename?: string | null | undefined;
370
370
  } | {
371
371
  country: string;
@@ -406,8 +406,8 @@ export declare const BaseActionInput: z.ZodObject<{
406
406
  street?: string | null | undefined;
407
407
  zipCode?: string | null | undefined;
408
408
  } | {
409
- firstname?: string | null | undefined;
410
- surname?: string | null | undefined;
409
+ firstname: string;
410
+ surname: string;
411
411
  middlename?: string | null | undefined;
412
412
  } | {
413
413
  country: string;
@@ -436,7 +436,7 @@ export declare const BaseActionInput: z.ZodObject<{
436
436
  keepAssignment?: boolean | undefined;
437
437
  }>;
438
438
  export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
439
- eventId: z.ZodBranded<z.ZodString, "UUID">;
439
+ eventId: z.ZodString;
440
440
  transactionId: z.ZodString;
441
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<{
442
442
  filename: z.ZodString;
@@ -552,16 +552,16 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
552
552
  addressLine3?: string | null | undefined;
553
553
  postcodeOrZip?: string | null | undefined;
554
554
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
555
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
556
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
555
+ firstname: z.ZodString;
556
+ surname: z.ZodString;
557
557
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
558
558
  }, "strip", z.ZodTypeAny, {
559
- firstname?: string | null | undefined;
560
- surname?: string | null | undefined;
559
+ firstname: string;
560
+ surname: string;
561
561
  middlename?: string | null | undefined;
562
562
  }, {
563
- firstname?: string | null | undefined;
564
- surname?: string | null | undefined;
563
+ firstname: string;
564
+ surname: string;
565
565
  middlename?: string | null | undefined;
566
566
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
567
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<{
@@ -678,24 +678,24 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
678
678
  addressLine3?: string | null | undefined;
679
679
  postcodeOrZip?: string | null | undefined;
680
680
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
681
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
682
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
681
+ firstname: z.ZodString;
682
+ surname: z.ZodString;
683
683
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
684
684
  }, "strip", z.ZodTypeAny, {
685
- firstname?: string | null | undefined;
686
- surname?: string | null | undefined;
685
+ firstname: string;
686
+ surname: string;
687
687
  middlename?: string | null | undefined;
688
688
  }, {
689
- firstname?: string | null | undefined;
690
- surname?: string | null | undefined;
689
+ firstname: string;
690
+ surname: string;
691
691
  middlename?: string | null | undefined;
692
692
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
693
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
693
+ originalActionId: z.ZodOptional<z.ZodString>;
694
694
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
695
695
  }, {
696
696
  type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
697
697
  registrationNumber: z.ZodOptional<z.ZodString>;
698
- }>, "strict", z.ZodTypeAny, {
698
+ }>, "strip", z.ZodTypeAny, {
699
699
  type: "REGISTER";
700
700
  transactionId: string;
701
701
  declaration: Record<string, string | number | boolean | {
@@ -714,8 +714,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
714
714
  street?: string | null | undefined;
715
715
  zipCode?: string | null | undefined;
716
716
  } | {
717
- firstname?: string | null | undefined;
718
- surname?: string | null | undefined;
717
+ firstname: string;
718
+ surname: string;
719
719
  middlename?: string | null | undefined;
720
720
  } | {
721
721
  country: string;
@@ -740,7 +740,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
740
740
  filename: string;
741
741
  originalFilename: string;
742
742
  }[] | [string, string] | null | undefined>;
743
- eventId: string & z.BRAND<"UUID">;
743
+ eventId: string;
744
744
  annotation?: Record<string, string | number | boolean | {
745
745
  type: string;
746
746
  filename: string;
@@ -757,8 +757,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
757
757
  street?: string | null | undefined;
758
758
  zipCode?: string | null | undefined;
759
759
  } | {
760
- firstname?: string | null | undefined;
761
- surname?: string | null | undefined;
760
+ firstname: string;
761
+ surname: string;
762
762
  middlename?: string | null | undefined;
763
763
  } | {
764
764
  country: string;
@@ -783,7 +783,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
783
783
  filename: string;
784
784
  originalFilename: string;
785
785
  }[] | [string, string] | null | undefined> | undefined;
786
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
786
+ originalActionId?: string | undefined;
787
787
  registrationNumber?: string | undefined;
788
788
  keepAssignment?: boolean | undefined;
789
789
  }, {
@@ -806,8 +806,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
806
806
  street?: string | null | undefined;
807
807
  zipCode?: string | null | undefined;
808
808
  } | {
809
- firstname?: string | null | undefined;
810
- surname?: string | null | undefined;
809
+ firstname: string;
810
+ surname: string;
811
811
  middlename?: string | null | undefined;
812
812
  } | {
813
813
  country: string;
@@ -848,8 +848,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
848
848
  street?: string | null | undefined;
849
849
  zipCode?: string | null | undefined;
850
850
  } | {
851
- firstname?: string | null | undefined;
852
- surname?: string | null | undefined;
851
+ firstname: string;
852
+ surname: string;
853
853
  middlename?: string | null | undefined;
854
854
  } | {
855
855
  country: string;
@@ -880,7 +880,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
880
880
  }>;
881
881
  export type RegisterActionInput = z.infer<typeof RegisterActionInput>;
882
882
  export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
883
- eventId: z.ZodBranded<z.ZodString, "UUID">;
883
+ eventId: z.ZodString;
884
884
  transactionId: z.ZodString;
885
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<{
886
886
  filename: z.ZodString;
@@ -996,16 +996,16 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
996
996
  addressLine3?: string | null | undefined;
997
997
  postcodeOrZip?: string | null | undefined;
998
998
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
999
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1000
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
999
+ firstname: z.ZodString;
1000
+ surname: z.ZodString;
1001
1001
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1002
1002
  }, "strip", z.ZodTypeAny, {
1003
- firstname?: string | null | undefined;
1004
- surname?: string | null | undefined;
1003
+ firstname: string;
1004
+ surname: string;
1005
1005
  middlename?: string | null | undefined;
1006
1006
  }, {
1007
- firstname?: string | null | undefined;
1008
- surname?: string | null | undefined;
1007
+ firstname: string;
1008
+ surname: string;
1009
1009
  middlename?: string | null | undefined;
1010
1010
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1011
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<{
@@ -1122,19 +1122,19 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1122
1122
  addressLine3?: string | null | undefined;
1123
1123
  postcodeOrZip?: string | null | undefined;
1124
1124
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1125
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1126
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1125
+ firstname: z.ZodString;
1126
+ surname: z.ZodString;
1127
1127
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1128
1128
  }, "strip", z.ZodTypeAny, {
1129
- firstname?: string | null | undefined;
1130
- surname?: string | null | undefined;
1129
+ firstname: string;
1130
+ surname: string;
1131
1131
  middlename?: string | null | undefined;
1132
1132
  }, {
1133
- firstname?: string | null | undefined;
1134
- surname?: string | null | undefined;
1133
+ firstname: string;
1134
+ surname: string;
1135
1135
  middlename?: string | null | undefined;
1136
1136
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1137
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1137
+ originalActionId: z.ZodOptional<z.ZodString>;
1138
1138
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1139
1139
  }, {
1140
1140
  type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
@@ -1158,8 +1158,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1158
1158
  street?: string | null | undefined;
1159
1159
  zipCode?: string | null | undefined;
1160
1160
  } | {
1161
- firstname?: string | null | undefined;
1162
- surname?: string | null | undefined;
1161
+ firstname: string;
1162
+ surname: string;
1163
1163
  middlename?: string | null | undefined;
1164
1164
  } | {
1165
1165
  country: string;
@@ -1184,7 +1184,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1184
1184
  filename: string;
1185
1185
  originalFilename: string;
1186
1186
  }[] | [string, string] | null | undefined>;
1187
- eventId: string & z.BRAND<"UUID">;
1187
+ eventId: string;
1188
1188
  duplicates: string[];
1189
1189
  annotation?: Record<string, string | number | boolean | {
1190
1190
  type: string;
@@ -1202,8 +1202,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1202
1202
  street?: string | null | undefined;
1203
1203
  zipCode?: string | null | undefined;
1204
1204
  } | {
1205
- firstname?: string | null | undefined;
1206
- surname?: string | null | undefined;
1205
+ firstname: string;
1206
+ surname: string;
1207
1207
  middlename?: string | null | undefined;
1208
1208
  } | {
1209
1209
  country: string;
@@ -1228,7 +1228,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1228
1228
  filename: string;
1229
1229
  originalFilename: string;
1230
1230
  }[] | [string, string] | null | undefined> | undefined;
1231
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
1231
+ originalActionId?: string | undefined;
1232
1232
  keepAssignment?: boolean | undefined;
1233
1233
  }, {
1234
1234
  transactionId: string;
@@ -1251,8 +1251,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1251
1251
  street?: string | null | undefined;
1252
1252
  zipCode?: string | null | undefined;
1253
1253
  } | {
1254
- firstname?: string | null | undefined;
1255
- surname?: string | null | undefined;
1254
+ firstname: string;
1255
+ surname: string;
1256
1256
  middlename?: string | null | undefined;
1257
1257
  } | {
1258
1258
  country: string;
@@ -1293,8 +1293,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1293
1293
  street?: string | null | undefined;
1294
1294
  zipCode?: string | null | undefined;
1295
1295
  } | {
1296
- firstname?: string | null | undefined;
1297
- surname?: string | null | undefined;
1296
+ firstname: string;
1297
+ surname: string;
1298
1298
  middlename?: string | null | undefined;
1299
1299
  } | {
1300
1300
  country: string;
@@ -1324,7 +1324,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1324
1324
  }>;
1325
1325
  export type ValidateActionInput = z.infer<typeof ValidateActionInput>;
1326
1326
  export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1327
- eventId: z.ZodBranded<z.ZodString, "UUID">;
1327
+ eventId: z.ZodString;
1328
1328
  transactionId: z.ZodString;
1329
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<{
1330
1330
  filename: z.ZodString;
@@ -1440,16 +1440,16 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1440
1440
  addressLine3?: string | null | undefined;
1441
1441
  postcodeOrZip?: string | null | undefined;
1442
1442
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1443
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1444
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1443
+ firstname: z.ZodString;
1444
+ surname: z.ZodString;
1445
1445
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1446
1446
  }, "strip", z.ZodTypeAny, {
1447
- firstname?: string | null | undefined;
1448
- surname?: string | null | undefined;
1447
+ firstname: string;
1448
+ surname: string;
1449
1449
  middlename?: string | null | undefined;
1450
1450
  }, {
1451
- firstname?: string | null | undefined;
1452
- surname?: string | null | undefined;
1451
+ firstname: string;
1452
+ surname: string;
1453
1453
  middlename?: string | null | undefined;
1454
1454
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1455
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<{
@@ -1566,19 +1566,19 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1566
1566
  addressLine3?: string | null | undefined;
1567
1567
  postcodeOrZip?: string | null | undefined;
1568
1568
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1569
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1570
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1569
+ firstname: z.ZodString;
1570
+ surname: z.ZodString;
1571
1571
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1572
1572
  }, "strip", z.ZodTypeAny, {
1573
- firstname?: string | null | undefined;
1574
- surname?: string | null | undefined;
1573
+ firstname: string;
1574
+ surname: string;
1575
1575
  middlename?: string | null | undefined;
1576
1576
  }, {
1577
- firstname?: string | null | undefined;
1578
- surname?: string | null | undefined;
1577
+ firstname: string;
1578
+ surname: string;
1579
1579
  middlename?: string | null | undefined;
1580
1580
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1581
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1581
+ originalActionId: z.ZodOptional<z.ZodString>;
1582
1582
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1583
1583
  }, {
1584
1584
  type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
@@ -1601,8 +1601,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1601
1601
  street?: string | null | undefined;
1602
1602
  zipCode?: string | null | undefined;
1603
1603
  } | {
1604
- firstname?: string | null | undefined;
1605
- surname?: string | null | undefined;
1604
+ firstname: string;
1605
+ surname: string;
1606
1606
  middlename?: string | null | undefined;
1607
1607
  } | {
1608
1608
  country: string;
@@ -1627,7 +1627,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1627
1627
  filename: string;
1628
1628
  originalFilename: string;
1629
1629
  }[] | [string, string] | null | undefined>;
1630
- eventId: string & z.BRAND<"UUID">;
1630
+ eventId: string;
1631
1631
  annotation?: Record<string, string | number | boolean | {
1632
1632
  type: string;
1633
1633
  filename: string;
@@ -1644,8 +1644,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1644
1644
  street?: string | null | undefined;
1645
1645
  zipCode?: string | null | undefined;
1646
1646
  } | {
1647
- firstname?: string | null | undefined;
1648
- surname?: string | null | undefined;
1647
+ firstname: string;
1648
+ surname: string;
1649
1649
  middlename?: string | null | undefined;
1650
1650
  } | {
1651
1651
  country: string;
@@ -1670,7 +1670,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1670
1670
  filename: string;
1671
1671
  originalFilename: string;
1672
1672
  }[] | [string, string] | null | undefined> | undefined;
1673
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
1673
+ originalActionId?: string | undefined;
1674
1674
  keepAssignment?: boolean | undefined;
1675
1675
  }, {
1676
1676
  transactionId: string;
@@ -1692,8 +1692,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1692
1692
  street?: string | null | undefined;
1693
1693
  zipCode?: string | null | undefined;
1694
1694
  } | {
1695
- firstname?: string | null | undefined;
1696
- surname?: string | null | undefined;
1695
+ firstname: string;
1696
+ surname: string;
1697
1697
  middlename?: string | null | undefined;
1698
1698
  } | {
1699
1699
  country: string;
@@ -1734,8 +1734,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1734
1734
  street?: string | null | undefined;
1735
1735
  zipCode?: string | null | undefined;
1736
1736
  } | {
1737
- firstname?: string | null | undefined;
1738
- surname?: string | null | undefined;
1737
+ firstname: string;
1738
+ surname: string;
1739
1739
  middlename?: string | null | undefined;
1740
1740
  } | {
1741
1741
  country: string;
@@ -1765,7 +1765,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1765
1765
  }>;
1766
1766
  export type NotifyActionInput = z.infer<typeof NotifyActionInput>;
1767
1767
  export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1768
- eventId: z.ZodBranded<z.ZodString, "UUID">;
1768
+ eventId: z.ZodString;
1769
1769
  transactionId: z.ZodString;
1770
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<{
1771
1771
  filename: z.ZodString;
@@ -1881,16 +1881,16 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
1881
1881
  addressLine3?: string | null | undefined;
1882
1882
  postcodeOrZip?: string | null | undefined;
1883
1883
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1884
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1885
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1884
+ firstname: z.ZodString;
1885
+ surname: z.ZodString;
1886
1886
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1887
1887
  }, "strip", z.ZodTypeAny, {
1888
- firstname?: string | null | undefined;
1889
- surname?: string | null | undefined;
1888
+ firstname: string;
1889
+ surname: string;
1890
1890
  middlename?: string | null | undefined;
1891
1891
  }, {
1892
- firstname?: string | null | undefined;
1893
- surname?: string | null | undefined;
1892
+ firstname: string;
1893
+ surname: string;
1894
1894
  middlename?: string | null | undefined;
1895
1895
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1896
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<{
@@ -2007,19 +2007,19 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2007
2007
  addressLine3?: string | null | undefined;
2008
2008
  postcodeOrZip?: string | null | undefined;
2009
2009
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2010
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2011
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2010
+ firstname: z.ZodString;
2011
+ surname: z.ZodString;
2012
2012
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2013
2013
  }, "strip", z.ZodTypeAny, {
2014
- firstname?: string | null | undefined;
2015
- surname?: string | null | undefined;
2014
+ firstname: string;
2015
+ surname: string;
2016
2016
  middlename?: string | null | undefined;
2017
2017
  }, {
2018
- firstname?: string | null | undefined;
2019
- surname?: string | null | undefined;
2018
+ firstname: string;
2019
+ surname: string;
2020
2020
  middlename?: string | null | undefined;
2021
2021
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2022
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2022
+ originalActionId: z.ZodOptional<z.ZodString>;
2023
2023
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2024
2024
  }, {
2025
2025
  type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
@@ -2042,8 +2042,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2042
2042
  street?: string | null | undefined;
2043
2043
  zipCode?: string | null | undefined;
2044
2044
  } | {
2045
- firstname?: string | null | undefined;
2046
- surname?: string | null | undefined;
2045
+ firstname: string;
2046
+ surname: string;
2047
2047
  middlename?: string | null | undefined;
2048
2048
  } | {
2049
2049
  country: string;
@@ -2068,7 +2068,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2068
2068
  filename: string;
2069
2069
  originalFilename: string;
2070
2070
  }[] | [string, string] | null | undefined>;
2071
- eventId: string & z.BRAND<"UUID">;
2071
+ eventId: string;
2072
2072
  annotation?: Record<string, string | number | boolean | {
2073
2073
  type: string;
2074
2074
  filename: string;
@@ -2085,8 +2085,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2085
2085
  street?: string | null | undefined;
2086
2086
  zipCode?: string | null | undefined;
2087
2087
  } | {
2088
- firstname?: string | null | undefined;
2089
- surname?: string | null | undefined;
2088
+ firstname: string;
2089
+ surname: string;
2090
2090
  middlename?: string | null | undefined;
2091
2091
  } | {
2092
2092
  country: string;
@@ -2111,7 +2111,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2111
2111
  filename: string;
2112
2112
  originalFilename: string;
2113
2113
  }[] | [string, string] | null | undefined> | undefined;
2114
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2114
+ originalActionId?: string | undefined;
2115
2115
  keepAssignment?: boolean | undefined;
2116
2116
  }, {
2117
2117
  transactionId: string;
@@ -2133,8 +2133,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2133
2133
  street?: string | null | undefined;
2134
2134
  zipCode?: string | null | undefined;
2135
2135
  } | {
2136
- firstname?: string | null | undefined;
2137
- surname?: string | null | undefined;
2136
+ firstname: string;
2137
+ surname: string;
2138
2138
  middlename?: string | null | undefined;
2139
2139
  } | {
2140
2140
  country: string;
@@ -2175,8 +2175,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2175
2175
  street?: string | null | undefined;
2176
2176
  zipCode?: string | null | undefined;
2177
2177
  } | {
2178
- firstname?: string | null | undefined;
2179
- surname?: string | null | undefined;
2178
+ firstname: string;
2179
+ surname: string;
2180
2180
  middlename?: string | null | undefined;
2181
2181
  } | {
2182
2182
  country: string;
@@ -2205,7 +2205,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2205
2205
  keepAssignment?: boolean | undefined;
2206
2206
  }>;
2207
2207
  export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.extendShape<{
2208
- eventId: z.ZodBranded<z.ZodString, "UUID">;
2208
+ eventId: z.ZodString;
2209
2209
  transactionId: z.ZodString;
2210
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<{
2211
2211
  filename: z.ZodString;
@@ -2321,16 +2321,16 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2321
2321
  addressLine3?: string | null | undefined;
2322
2322
  postcodeOrZip?: string | null | undefined;
2323
2323
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2324
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2325
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2324
+ firstname: z.ZodString;
2325
+ surname: z.ZodString;
2326
2326
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2327
2327
  }, "strip", z.ZodTypeAny, {
2328
- firstname?: string | null | undefined;
2329
- surname?: string | null | undefined;
2328
+ firstname: string;
2329
+ surname: string;
2330
2330
  middlename?: string | null | undefined;
2331
2331
  }, {
2332
- firstname?: string | null | undefined;
2333
- surname?: string | null | undefined;
2332
+ firstname: string;
2333
+ surname: string;
2334
2334
  middlename?: string | null | undefined;
2335
2335
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2336
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<{
@@ -2447,19 +2447,19 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2447
2447
  addressLine3?: string | null | undefined;
2448
2448
  postcodeOrZip?: string | null | undefined;
2449
2449
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2450
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2451
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2450
+ firstname: z.ZodString;
2451
+ surname: z.ZodString;
2452
2452
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2453
2453
  }, "strip", z.ZodTypeAny, {
2454
- firstname?: string | null | undefined;
2455
- surname?: string | null | undefined;
2454
+ firstname: string;
2455
+ surname: string;
2456
2456
  middlename?: string | null | undefined;
2457
2457
  }, {
2458
- firstname?: string | null | undefined;
2459
- surname?: string | null | undefined;
2458
+ firstname: string;
2459
+ surname: string;
2460
2460
  middlename?: string | null | undefined;
2461
2461
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2462
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2462
+ originalActionId: z.ZodOptional<z.ZodString>;
2463
2463
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2464
2464
  }, {
2465
2465
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
@@ -2482,8 +2482,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2482
2482
  street?: string | null | undefined;
2483
2483
  zipCode?: string | null | undefined;
2484
2484
  } | {
2485
- firstname?: string | null | undefined;
2486
- surname?: string | null | undefined;
2485
+ firstname: string;
2486
+ surname: string;
2487
2487
  middlename?: string | null | undefined;
2488
2488
  } | {
2489
2489
  country: string;
@@ -2508,7 +2508,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2508
2508
  filename: string;
2509
2509
  originalFilename: string;
2510
2510
  }[] | [string, string] | null | undefined>;
2511
- eventId: string & z.BRAND<"UUID">;
2511
+ eventId: string;
2512
2512
  annotation?: Record<string, string | number | boolean | {
2513
2513
  type: string;
2514
2514
  filename: string;
@@ -2525,8 +2525,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2525
2525
  street?: string | null | undefined;
2526
2526
  zipCode?: string | null | undefined;
2527
2527
  } | {
2528
- firstname?: string | null | undefined;
2529
- surname?: string | null | undefined;
2528
+ firstname: string;
2529
+ surname: string;
2530
2530
  middlename?: string | null | undefined;
2531
2531
  } | {
2532
2532
  country: string;
@@ -2551,7 +2551,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2551
2551
  filename: string;
2552
2552
  originalFilename: string;
2553
2553
  }[] | [string, string] | null | undefined> | undefined;
2554
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2554
+ originalActionId?: string | undefined;
2555
2555
  keepAssignment?: boolean | undefined;
2556
2556
  }, {
2557
2557
  transactionId: string;
@@ -2573,8 +2573,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2573
2573
  street?: string | null | undefined;
2574
2574
  zipCode?: string | null | undefined;
2575
2575
  } | {
2576
- firstname?: string | null | undefined;
2577
- surname?: string | null | undefined;
2576
+ firstname: string;
2577
+ surname: string;
2578
2578
  middlename?: string | null | undefined;
2579
2579
  } | {
2580
2580
  country: string;
@@ -2615,8 +2615,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2615
2615
  street?: string | null | undefined;
2616
2616
  zipCode?: string | null | undefined;
2617
2617
  } | {
2618
- firstname?: string | null | undefined;
2619
- surname?: string | null | undefined;
2618
+ firstname: string;
2619
+ surname: string;
2620
2620
  middlename?: string | null | undefined;
2621
2621
  } | {
2622
2622
  country: string;
@@ -2646,7 +2646,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2646
2646
  }>;
2647
2647
  export type DeclareActionInput = z.infer<typeof DeclareActionInput>;
2648
2648
  export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.extendShape<{
2649
- eventId: z.ZodBranded<z.ZodString, "UUID">;
2649
+ eventId: z.ZodString;
2650
2650
  transactionId: z.ZodString;
2651
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<{
2652
2652
  filename: z.ZodString;
@@ -2762,16 +2762,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2762
2762
  addressLine3?: string | null | undefined;
2763
2763
  postcodeOrZip?: string | null | undefined;
2764
2764
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2765
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2766
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2765
+ firstname: z.ZodString;
2766
+ surname: z.ZodString;
2767
2767
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2768
2768
  }, "strip", z.ZodTypeAny, {
2769
- firstname?: string | null | undefined;
2770
- surname?: string | null | undefined;
2769
+ firstname: string;
2770
+ surname: string;
2771
2771
  middlename?: string | null | undefined;
2772
2772
  }, {
2773
- firstname?: string | null | undefined;
2774
- surname?: string | null | undefined;
2773
+ firstname: string;
2774
+ surname: string;
2775
2775
  middlename?: string | null | undefined;
2776
2776
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2777
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<{
@@ -2888,19 +2888,19 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2888
2888
  addressLine3?: string | null | undefined;
2889
2889
  postcodeOrZip?: string | null | undefined;
2890
2890
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2891
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2892
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2891
+ firstname: z.ZodString;
2892
+ surname: z.ZodString;
2893
2893
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2894
2894
  }, "strip", z.ZodTypeAny, {
2895
- firstname?: string | null | undefined;
2896
- surname?: string | null | undefined;
2895
+ firstname: string;
2896
+ surname: string;
2897
2897
  middlename?: string | null | undefined;
2898
2898
  }, {
2899
- firstname?: string | null | undefined;
2900
- surname?: string | null | undefined;
2899
+ firstname: string;
2900
+ surname: string;
2901
2901
  middlename?: string | null | undefined;
2902
2902
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2903
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2903
+ originalActionId: z.ZodOptional<z.ZodString>;
2904
2904
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2905
2905
  }, {
2906
2906
  type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
@@ -2937,8 +2937,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2937
2937
  street?: string | null | undefined;
2938
2938
  zipCode?: string | null | undefined;
2939
2939
  } | {
2940
- firstname?: string | null | undefined;
2941
- surname?: string | null | undefined;
2940
+ firstname: string;
2941
+ surname: string;
2942
2942
  middlename?: string | null | undefined;
2943
2943
  } | {
2944
2944
  country: string;
@@ -2963,7 +2963,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2963
2963
  filename: string;
2964
2964
  originalFilename: string;
2965
2965
  }[] | [string, string] | null | undefined>;
2966
- eventId: string & z.BRAND<"UUID">;
2966
+ eventId: string;
2967
2967
  annotation?: Record<string, string | number | boolean | {
2968
2968
  type: string;
2969
2969
  filename: string;
@@ -2980,8 +2980,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2980
2980
  street?: string | null | undefined;
2981
2981
  zipCode?: string | null | undefined;
2982
2982
  } | {
2983
- firstname?: string | null | undefined;
2984
- surname?: string | null | undefined;
2983
+ firstname: string;
2984
+ surname: string;
2985
2985
  middlename?: string | null | undefined;
2986
2986
  } | {
2987
2987
  country: string;
@@ -3006,7 +3006,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3006
3006
  filename: string;
3007
3007
  originalFilename: string;
3008
3008
  }[] | [string, string] | null | undefined> | undefined;
3009
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3009
+ originalActionId?: string | undefined;
3010
3010
  keepAssignment?: boolean | undefined;
3011
3011
  }, {
3012
3012
  reason: {
@@ -3032,8 +3032,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3032
3032
  street?: string | null | undefined;
3033
3033
  zipCode?: string | null | undefined;
3034
3034
  } | {
3035
- firstname?: string | null | undefined;
3036
- surname?: string | null | undefined;
3035
+ firstname: string;
3036
+ surname: string;
3037
3037
  middlename?: string | null | undefined;
3038
3038
  } | {
3039
3039
  country: string;
@@ -3074,8 +3074,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3074
3074
  street?: string | null | undefined;
3075
3075
  zipCode?: string | null | undefined;
3076
3076
  } | {
3077
- firstname?: string | null | undefined;
3078
- surname?: string | null | undefined;
3077
+ firstname: string;
3078
+ surname: string;
3079
3079
  middlename?: string | null | undefined;
3080
3080
  } | {
3081
3081
  country: string;
@@ -3105,7 +3105,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3105
3105
  }>;
3106
3106
  export type RejectDeclarationActionInput = z.infer<typeof RejectDeclarationActionInput>;
3107
3107
  export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.extendShape<{
3108
- eventId: z.ZodBranded<z.ZodString, "UUID">;
3108
+ eventId: z.ZodString;
3109
3109
  transactionId: z.ZodString;
3110
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<{
3111
3111
  filename: z.ZodString;
@@ -3221,16 +3221,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3221
3221
  addressLine3?: string | null | undefined;
3222
3222
  postcodeOrZip?: string | null | undefined;
3223
3223
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3224
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3225
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3224
+ firstname: z.ZodString;
3225
+ surname: z.ZodString;
3226
3226
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3227
3227
  }, "strip", z.ZodTypeAny, {
3228
- firstname?: string | null | undefined;
3229
- surname?: string | null | undefined;
3228
+ firstname: string;
3229
+ surname: string;
3230
3230
  middlename?: string | null | undefined;
3231
3231
  }, {
3232
- firstname?: string | null | undefined;
3233
- surname?: string | null | undefined;
3232
+ firstname: string;
3233
+ surname: string;
3234
3234
  middlename?: string | null | undefined;
3235
3235
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3236
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<{
@@ -3347,19 +3347,19 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3347
3347
  addressLine3?: string | null | undefined;
3348
3348
  postcodeOrZip?: string | null | undefined;
3349
3349
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3350
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3351
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3350
+ firstname: z.ZodString;
3351
+ surname: z.ZodString;
3352
3352
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3353
3353
  }, "strip", z.ZodTypeAny, {
3354
- firstname?: string | null | undefined;
3355
- surname?: string | null | undefined;
3354
+ firstname: string;
3355
+ surname: string;
3356
3356
  middlename?: string | null | undefined;
3357
3357
  }, {
3358
- firstname?: string | null | undefined;
3359
- surname?: string | null | undefined;
3358
+ firstname: string;
3359
+ surname: string;
3360
3360
  middlename?: string | null | undefined;
3361
3361
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3362
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
3362
+ originalActionId: z.ZodOptional<z.ZodString>;
3363
3363
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3364
3364
  }, {
3365
3365
  type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
@@ -3382,8 +3382,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3382
3382
  street?: string | null | undefined;
3383
3383
  zipCode?: string | null | undefined;
3384
3384
  } | {
3385
- firstname?: string | null | undefined;
3386
- surname?: string | null | undefined;
3385
+ firstname: string;
3386
+ surname: string;
3387
3387
  middlename?: string | null | undefined;
3388
3388
  } | {
3389
3389
  country: string;
@@ -3408,7 +3408,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3408
3408
  filename: string;
3409
3409
  originalFilename: string;
3410
3410
  }[] | [string, string] | null | undefined>;
3411
- eventId: string & z.BRAND<"UUID">;
3411
+ eventId: string;
3412
3412
  annotation?: Record<string, string | number | boolean | {
3413
3413
  type: string;
3414
3414
  filename: string;
@@ -3425,8 +3425,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3425
3425
  street?: string | null | undefined;
3426
3426
  zipCode?: string | null | undefined;
3427
3427
  } | {
3428
- firstname?: string | null | undefined;
3429
- surname?: string | null | undefined;
3428
+ firstname: string;
3429
+ surname: string;
3430
3430
  middlename?: string | null | undefined;
3431
3431
  } | {
3432
3432
  country: string;
@@ -3451,7 +3451,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3451
3451
  filename: string;
3452
3452
  originalFilename: string;
3453
3453
  }[] | [string, string] | null | undefined> | undefined;
3454
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3454
+ originalActionId?: string | undefined;
3455
3455
  keepAssignment?: boolean | undefined;
3456
3456
  }, {
3457
3457
  transactionId: string;
@@ -3473,8 +3473,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3473
3473
  street?: string | null | undefined;
3474
3474
  zipCode?: string | null | undefined;
3475
3475
  } | {
3476
- firstname?: string | null | undefined;
3477
- surname?: string | null | undefined;
3476
+ firstname: string;
3477
+ surname: string;
3478
3478
  middlename?: string | null | undefined;
3479
3479
  } | {
3480
3480
  country: string;
@@ -3515,8 +3515,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3515
3515
  street?: string | null | undefined;
3516
3516
  zipCode?: string | null | undefined;
3517
3517
  } | {
3518
- firstname?: string | null | undefined;
3519
- surname?: string | null | undefined;
3518
+ firstname: string;
3519
+ surname: string;
3520
3520
  middlename?: string | null | undefined;
3521
3521
  } | {
3522
3522
  country: string;
@@ -3546,7 +3546,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3546
3546
  }>;
3547
3547
  export type MarkedAsDuplicateActionInput = z.infer<typeof MarkedAsDuplicateActionInput>;
3548
3548
  export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3549
- eventId: z.ZodBranded<z.ZodString, "UUID">;
3549
+ eventId: z.ZodString;
3550
3550
  transactionId: z.ZodString;
3551
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<{
3552
3552
  filename: z.ZodString;
@@ -3662,16 +3662,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3662
3662
  addressLine3?: string | null | undefined;
3663
3663
  postcodeOrZip?: string | null | undefined;
3664
3664
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3665
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3666
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3665
+ firstname: z.ZodString;
3666
+ surname: z.ZodString;
3667
3667
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3668
3668
  }, "strip", z.ZodTypeAny, {
3669
- firstname?: string | null | undefined;
3670
- surname?: string | null | undefined;
3669
+ firstname: string;
3670
+ surname: string;
3671
3671
  middlename?: string | null | undefined;
3672
3672
  }, {
3673
- firstname?: string | null | undefined;
3674
- surname?: string | null | undefined;
3673
+ firstname: string;
3674
+ surname: string;
3675
3675
  middlename?: string | null | undefined;
3676
3676
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3677
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<{
@@ -3788,19 +3788,19 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3788
3788
  addressLine3?: string | null | undefined;
3789
3789
  postcodeOrZip?: string | null | undefined;
3790
3790
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3791
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3792
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3791
+ firstname: z.ZodString;
3792
+ surname: z.ZodString;
3793
3793
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3794
3794
  }, "strip", z.ZodTypeAny, {
3795
- firstname?: string | null | undefined;
3796
- surname?: string | null | undefined;
3795
+ firstname: string;
3796
+ surname: string;
3797
3797
  middlename?: string | null | undefined;
3798
3798
  }, {
3799
- firstname?: string | null | undefined;
3800
- surname?: string | null | undefined;
3799
+ firstname: string;
3800
+ surname: string;
3801
3801
  middlename?: string | null | undefined;
3802
3802
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3803
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
3803
+ originalActionId: z.ZodOptional<z.ZodString>;
3804
3804
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3805
3805
  }, {
3806
3806
  type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
@@ -3837,8 +3837,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3837
3837
  street?: string | null | undefined;
3838
3838
  zipCode?: string | null | undefined;
3839
3839
  } | {
3840
- firstname?: string | null | undefined;
3841
- surname?: string | null | undefined;
3840
+ firstname: string;
3841
+ surname: string;
3842
3842
  middlename?: string | null | undefined;
3843
3843
  } | {
3844
3844
  country: string;
@@ -3863,7 +3863,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3863
3863
  filename: string;
3864
3864
  originalFilename: string;
3865
3865
  }[] | [string, string] | null | undefined>;
3866
- eventId: string & z.BRAND<"UUID">;
3866
+ eventId: string;
3867
3867
  annotation?: Record<string, string | number | boolean | {
3868
3868
  type: string;
3869
3869
  filename: string;
@@ -3880,8 +3880,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3880
3880
  street?: string | null | undefined;
3881
3881
  zipCode?: string | null | undefined;
3882
3882
  } | {
3883
- firstname?: string | null | undefined;
3884
- surname?: string | null | undefined;
3883
+ firstname: string;
3884
+ surname: string;
3885
3885
  middlename?: string | null | undefined;
3886
3886
  } | {
3887
3887
  country: string;
@@ -3906,7 +3906,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3906
3906
  filename: string;
3907
3907
  originalFilename: string;
3908
3908
  }[] | [string, string] | null | undefined> | undefined;
3909
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3909
+ originalActionId?: string | undefined;
3910
3910
  keepAssignment?: boolean | undefined;
3911
3911
  }, {
3912
3912
  reason: {
@@ -3932,8 +3932,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3932
3932
  street?: string | null | undefined;
3933
3933
  zipCode?: string | null | undefined;
3934
3934
  } | {
3935
- firstname?: string | null | undefined;
3936
- surname?: string | null | undefined;
3935
+ firstname: string;
3936
+ surname: string;
3937
3937
  middlename?: string | null | undefined;
3938
3938
  } | {
3939
3939
  country: string;
@@ -3974,8 +3974,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3974
3974
  street?: string | null | undefined;
3975
3975
  zipCode?: string | null | undefined;
3976
3976
  } | {
3977
- firstname?: string | null | undefined;
3978
- surname?: string | null | undefined;
3977
+ firstname: string;
3978
+ surname: string;
3979
3979
  middlename?: string | null | undefined;
3980
3980
  } | {
3981
3981
  country: string;
@@ -4005,7 +4005,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4005
4005
  }>;
4006
4006
  export type ArchiveActionInput = z.infer<typeof ArchiveActionInput>;
4007
4007
  export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4008
- eventId: z.ZodBranded<z.ZodString, "UUID">;
4008
+ eventId: z.ZodString;
4009
4009
  transactionId: z.ZodString;
4010
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<{
4011
4011
  filename: z.ZodString;
@@ -4121,16 +4121,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4121
4121
  addressLine3?: string | null | undefined;
4122
4122
  postcodeOrZip?: string | null | undefined;
4123
4123
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4124
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4125
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4124
+ firstname: z.ZodString;
4125
+ surname: z.ZodString;
4126
4126
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4127
4127
  }, "strip", z.ZodTypeAny, {
4128
- firstname?: string | null | undefined;
4129
- surname?: string | null | undefined;
4128
+ firstname: string;
4129
+ surname: string;
4130
4130
  middlename?: string | null | undefined;
4131
4131
  }, {
4132
- firstname?: string | null | undefined;
4133
- surname?: string | null | undefined;
4132
+ firstname: string;
4133
+ surname: string;
4134
4134
  middlename?: string | null | undefined;
4135
4135
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4136
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<{
@@ -4247,19 +4247,19 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4247
4247
  addressLine3?: string | null | undefined;
4248
4248
  postcodeOrZip?: string | null | undefined;
4249
4249
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4250
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4251
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4250
+ firstname: z.ZodString;
4251
+ surname: z.ZodString;
4252
4252
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4253
4253
  }, "strip", z.ZodTypeAny, {
4254
- firstname?: string | null | undefined;
4255
- surname?: string | null | undefined;
4254
+ firstname: string;
4255
+ surname: string;
4256
4256
  middlename?: string | null | undefined;
4257
4257
  }, {
4258
- firstname?: string | null | undefined;
4259
- surname?: string | null | undefined;
4258
+ firstname: string;
4259
+ surname: string;
4260
4260
  middlename?: string | null | undefined;
4261
4261
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4262
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
4262
+ originalActionId: z.ZodOptional<z.ZodString>;
4263
4263
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4264
4264
  }, {
4265
4265
  type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
@@ -4283,8 +4283,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4283
4283
  street?: string | null | undefined;
4284
4284
  zipCode?: string | null | undefined;
4285
4285
  } | {
4286
- firstname?: string | null | undefined;
4287
- surname?: string | null | undefined;
4286
+ firstname: string;
4287
+ surname: string;
4288
4288
  middlename?: string | null | undefined;
4289
4289
  } | {
4290
4290
  country: string;
@@ -4310,7 +4310,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4310
4310
  originalFilename: string;
4311
4311
  }[] | [string, string] | null | undefined>;
4312
4312
  assignedTo: string;
4313
- eventId: string & z.BRAND<"UUID">;
4313
+ eventId: string;
4314
4314
  annotation?: Record<string, string | number | boolean | {
4315
4315
  type: string;
4316
4316
  filename: string;
@@ -4327,8 +4327,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4327
4327
  street?: string | null | undefined;
4328
4328
  zipCode?: string | null | undefined;
4329
4329
  } | {
4330
- firstname?: string | null | undefined;
4331
- surname?: string | null | undefined;
4330
+ firstname: string;
4331
+ surname: string;
4332
4332
  middlename?: string | null | undefined;
4333
4333
  } | {
4334
4334
  country: string;
@@ -4353,7 +4353,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4353
4353
  filename: string;
4354
4354
  originalFilename: string;
4355
4355
  }[] | [string, string] | null | undefined> | undefined;
4356
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
4356
+ originalActionId?: string | undefined;
4357
4357
  keepAssignment?: boolean | undefined;
4358
4358
  }, {
4359
4359
  transactionId: string;
@@ -4376,8 +4376,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4376
4376
  street?: string | null | undefined;
4377
4377
  zipCode?: string | null | undefined;
4378
4378
  } | {
4379
- firstname?: string | null | undefined;
4380
- surname?: string | null | undefined;
4379
+ firstname: string;
4380
+ surname: string;
4381
4381
  middlename?: string | null | undefined;
4382
4382
  } | {
4383
4383
  country: string;
@@ -4418,8 +4418,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4418
4418
  street?: string | null | undefined;
4419
4419
  zipCode?: string | null | undefined;
4420
4420
  } | {
4421
- firstname?: string | null | undefined;
4422
- surname?: string | null | undefined;
4421
+ firstname: string;
4422
+ surname: string;
4423
4423
  middlename?: string | null | undefined;
4424
4424
  } | {
4425
4425
  country: string;
@@ -4449,7 +4449,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4449
4449
  }>;
4450
4450
  export type AssignActionInput = z.infer<typeof AssignActionInput>;
4451
4451
  export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4452
- eventId: z.ZodBranded<z.ZodString, "UUID">;
4452
+ eventId: z.ZodString;
4453
4453
  transactionId: z.ZodString;
4454
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<{
4455
4455
  filename: z.ZodString;
@@ -4565,16 +4565,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4565
4565
  addressLine3?: string | null | undefined;
4566
4566
  postcodeOrZip?: string | null | undefined;
4567
4567
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4568
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4569
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4568
+ firstname: z.ZodString;
4569
+ surname: z.ZodString;
4570
4570
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4571
4571
  }, "strip", z.ZodTypeAny, {
4572
- firstname?: string | null | undefined;
4573
- surname?: string | null | undefined;
4572
+ firstname: string;
4573
+ surname: string;
4574
4574
  middlename?: string | null | undefined;
4575
4575
  }, {
4576
- firstname?: string | null | undefined;
4577
- surname?: string | null | undefined;
4576
+ firstname: string;
4577
+ surname: string;
4578
4578
  middlename?: string | null | undefined;
4579
4579
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4580
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<{
@@ -4691,19 +4691,19 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4691
4691
  addressLine3?: string | null | undefined;
4692
4692
  postcodeOrZip?: string | null | undefined;
4693
4693
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4694
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4695
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4694
+ firstname: z.ZodString;
4695
+ surname: z.ZodString;
4696
4696
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4697
4697
  }, "strip", z.ZodTypeAny, {
4698
- firstname?: string | null | undefined;
4699
- surname?: string | null | undefined;
4698
+ firstname: string;
4699
+ surname: string;
4700
4700
  middlename?: string | null | undefined;
4701
4701
  }, {
4702
- firstname?: string | null | undefined;
4703
- surname?: string | null | undefined;
4702
+ firstname: string;
4703
+ surname: string;
4704
4704
  middlename?: string | null | undefined;
4705
4705
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4706
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
4706
+ originalActionId: z.ZodOptional<z.ZodString>;
4707
4707
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4708
4708
  }, {
4709
4709
  type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
@@ -4727,8 +4727,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4727
4727
  street?: string | null | undefined;
4728
4728
  zipCode?: string | null | undefined;
4729
4729
  } | {
4730
- firstname?: string | null | undefined;
4731
- surname?: string | null | undefined;
4730
+ firstname: string;
4731
+ surname: string;
4732
4732
  middlename?: string | null | undefined;
4733
4733
  } | {
4734
4734
  country: string;
@@ -4754,7 +4754,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4754
4754
  originalFilename: string;
4755
4755
  }[] | [string, string] | null | undefined>;
4756
4756
  assignedTo: null;
4757
- eventId: string & z.BRAND<"UUID">;
4757
+ eventId: string;
4758
4758
  annotation?: Record<string, string | number | boolean | {
4759
4759
  type: string;
4760
4760
  filename: string;
@@ -4771,8 +4771,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4771
4771
  street?: string | null | undefined;
4772
4772
  zipCode?: string | null | undefined;
4773
4773
  } | {
4774
- firstname?: string | null | undefined;
4775
- surname?: string | null | undefined;
4774
+ firstname: string;
4775
+ surname: string;
4776
4776
  middlename?: string | null | undefined;
4777
4777
  } | {
4778
4778
  country: string;
@@ -4797,7 +4797,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4797
4797
  filename: string;
4798
4798
  originalFilename: string;
4799
4799
  }[] | [string, string] | null | undefined> | undefined;
4800
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
4800
+ originalActionId?: string | undefined;
4801
4801
  keepAssignment?: boolean | undefined;
4802
4802
  }, {
4803
4803
  transactionId: string;
@@ -4819,8 +4819,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4819
4819
  street?: string | null | undefined;
4820
4820
  zipCode?: string | null | undefined;
4821
4821
  } | {
4822
- firstname?: string | null | undefined;
4823
- surname?: string | null | undefined;
4822
+ firstname: string;
4823
+ surname: string;
4824
4824
  middlename?: string | null | undefined;
4825
4825
  } | {
4826
4826
  country: string;
@@ -4861,8 +4861,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4861
4861
  street?: string | null | undefined;
4862
4862
  zipCode?: string | null | undefined;
4863
4863
  } | {
4864
- firstname?: string | null | undefined;
4865
- surname?: string | null | undefined;
4864
+ firstname: string;
4865
+ surname: string;
4866
4866
  middlename?: string | null | undefined;
4867
4867
  } | {
4868
4868
  country: string;
@@ -4893,7 +4893,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4893
4893
  }>;
4894
4894
  export type UnassignActionInput = z.infer<typeof UnassignActionInput>;
4895
4895
  export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
4896
- eventId: z.ZodBranded<z.ZodString, "UUID">;
4896
+ eventId: z.ZodString;
4897
4897
  transactionId: z.ZodString;
4898
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<{
4899
4899
  filename: z.ZodString;
@@ -5009,16 +5009,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5009
5009
  addressLine3?: string | null | undefined;
5010
5010
  postcodeOrZip?: string | null | undefined;
5011
5011
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5012
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5013
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5012
+ firstname: z.ZodString;
5013
+ surname: z.ZodString;
5014
5014
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5015
5015
  }, "strip", z.ZodTypeAny, {
5016
- firstname?: string | null | undefined;
5017
- surname?: string | null | undefined;
5016
+ firstname: string;
5017
+ surname: string;
5018
5018
  middlename?: string | null | undefined;
5019
5019
  }, {
5020
- firstname?: string | null | undefined;
5021
- surname?: string | null | undefined;
5020
+ firstname: string;
5021
+ surname: string;
5022
5022
  middlename?: string | null | undefined;
5023
5023
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5024
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<{
@@ -5135,19 +5135,19 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5135
5135
  addressLine3?: string | null | undefined;
5136
5136
  postcodeOrZip?: string | null | undefined;
5137
5137
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5138
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5139
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5138
+ firstname: z.ZodString;
5139
+ surname: z.ZodString;
5140
5140
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5141
5141
  }, "strip", z.ZodTypeAny, {
5142
- firstname?: string | null | undefined;
5143
- surname?: string | null | undefined;
5142
+ firstname: string;
5143
+ surname: string;
5144
5144
  middlename?: string | null | undefined;
5145
5145
  }, {
5146
- firstname?: string | null | undefined;
5147
- surname?: string | null | undefined;
5146
+ firstname: string;
5147
+ surname: string;
5148
5148
  middlename?: string | null | undefined;
5149
5149
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5150
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
5150
+ originalActionId: z.ZodOptional<z.ZodString>;
5151
5151
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5152
5152
  }, {
5153
5153
  type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
@@ -5170,8 +5170,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5170
5170
  street?: string | null | undefined;
5171
5171
  zipCode?: string | null | undefined;
5172
5172
  } | {
5173
- firstname?: string | null | undefined;
5174
- surname?: string | null | undefined;
5173
+ firstname: string;
5174
+ surname: string;
5175
5175
  middlename?: string | null | undefined;
5176
5176
  } | {
5177
5177
  country: string;
@@ -5196,7 +5196,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5196
5196
  filename: string;
5197
5197
  originalFilename: string;
5198
5198
  }[] | [string, string] | null | undefined>;
5199
- eventId: string & z.BRAND<"UUID">;
5199
+ eventId: string;
5200
5200
  annotation?: Record<string, string | number | boolean | {
5201
5201
  type: string;
5202
5202
  filename: string;
@@ -5213,8 +5213,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5213
5213
  street?: string | null | undefined;
5214
5214
  zipCode?: string | null | undefined;
5215
5215
  } | {
5216
- firstname?: string | null | undefined;
5217
- surname?: string | null | undefined;
5216
+ firstname: string;
5217
+ surname: string;
5218
5218
  middlename?: string | null | undefined;
5219
5219
  } | {
5220
5220
  country: string;
@@ -5239,7 +5239,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5239
5239
  filename: string;
5240
5240
  originalFilename: string;
5241
5241
  }[] | [string, string] | null | undefined> | undefined;
5242
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
5242
+ originalActionId?: string | undefined;
5243
5243
  keepAssignment?: boolean | undefined;
5244
5244
  }, {
5245
5245
  transactionId: string;
@@ -5261,8 +5261,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5261
5261
  street?: string | null | undefined;
5262
5262
  zipCode?: string | null | undefined;
5263
5263
  } | {
5264
- firstname?: string | null | undefined;
5265
- surname?: string | null | undefined;
5264
+ firstname: string;
5265
+ surname: string;
5266
5266
  middlename?: string | null | undefined;
5267
5267
  } | {
5268
5268
  country: string;
@@ -5303,8 +5303,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5303
5303
  street?: string | null | undefined;
5304
5304
  zipCode?: string | null | undefined;
5305
5305
  } | {
5306
- firstname?: string | null | undefined;
5307
- surname?: string | null | undefined;
5306
+ firstname: string;
5307
+ surname: string;
5308
5308
  middlename?: string | null | undefined;
5309
5309
  } | {
5310
5310
  country: string;
@@ -5334,7 +5334,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5334
5334
  }>;
5335
5335
  export type RequestCorrectionActionInput = z.infer<typeof RequestCorrectionActionInput>;
5336
5336
  export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
5337
- eventId: z.ZodBranded<z.ZodString, "UUID">;
5337
+ eventId: z.ZodString;
5338
5338
  transactionId: z.ZodString;
5339
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<{
5340
5340
  filename: z.ZodString;
@@ -5450,16 +5450,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5450
5450
  addressLine3?: string | null | undefined;
5451
5451
  postcodeOrZip?: string | null | undefined;
5452
5452
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5453
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5454
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5453
+ firstname: z.ZodString;
5454
+ surname: z.ZodString;
5455
5455
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5456
5456
  }, "strip", z.ZodTypeAny, {
5457
- firstname?: string | null | undefined;
5458
- surname?: string | null | undefined;
5457
+ firstname: string;
5458
+ surname: string;
5459
5459
  middlename?: string | null | undefined;
5460
5460
  }, {
5461
- firstname?: string | null | undefined;
5462
- surname?: string | null | undefined;
5461
+ firstname: string;
5462
+ surname: string;
5463
5463
  middlename?: string | null | undefined;
5464
5464
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5465
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<{
@@ -5576,19 +5576,19 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5576
5576
  addressLine3?: string | null | undefined;
5577
5577
  postcodeOrZip?: string | null | undefined;
5578
5578
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5579
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5580
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5579
+ firstname: z.ZodString;
5580
+ surname: z.ZodString;
5581
5581
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5582
5582
  }, "strip", z.ZodTypeAny, {
5583
- firstname?: string | null | undefined;
5584
- surname?: string | null | undefined;
5583
+ firstname: string;
5584
+ surname: string;
5585
5585
  middlename?: string | null | undefined;
5586
5586
  }, {
5587
- firstname?: string | null | undefined;
5588
- surname?: string | null | undefined;
5587
+ firstname: string;
5588
+ surname: string;
5589
5589
  middlename?: string | null | undefined;
5590
5590
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5591
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
5591
+ originalActionId: z.ZodOptional<z.ZodString>;
5592
5592
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5593
5593
  }, {
5594
5594
  requestId: z.ZodString;
@@ -5612,8 +5612,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5612
5612
  street?: string | null | undefined;
5613
5613
  zipCode?: string | null | undefined;
5614
5614
  } | {
5615
- firstname?: string | null | undefined;
5616
- surname?: string | null | undefined;
5615
+ firstname: string;
5616
+ surname: string;
5617
5617
  middlename?: string | null | undefined;
5618
5618
  } | {
5619
5619
  country: string;
@@ -5639,7 +5639,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5639
5639
  originalFilename: string;
5640
5640
  }[] | [string, string] | null | undefined>;
5641
5641
  requestId: string;
5642
- eventId: string & z.BRAND<"UUID">;
5642
+ eventId: string;
5643
5643
  annotation?: Record<string, string | number | boolean | {
5644
5644
  type: string;
5645
5645
  filename: string;
@@ -5656,8 +5656,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5656
5656
  street?: string | null | undefined;
5657
5657
  zipCode?: string | null | undefined;
5658
5658
  } | {
5659
- firstname?: string | null | undefined;
5660
- surname?: string | null | undefined;
5659
+ firstname: string;
5660
+ surname: string;
5661
5661
  middlename?: string | null | undefined;
5662
5662
  } | {
5663
5663
  country: string;
@@ -5682,7 +5682,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5682
5682
  filename: string;
5683
5683
  originalFilename: string;
5684
5684
  }[] | [string, string] | null | undefined> | undefined;
5685
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
5685
+ originalActionId?: string | undefined;
5686
5686
  keepAssignment?: boolean | undefined;
5687
5687
  }, {
5688
5688
  transactionId: string;
@@ -5705,8 +5705,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5705
5705
  street?: string | null | undefined;
5706
5706
  zipCode?: string | null | undefined;
5707
5707
  } | {
5708
- firstname?: string | null | undefined;
5709
- surname?: string | null | undefined;
5708
+ firstname: string;
5709
+ surname: string;
5710
5710
  middlename?: string | null | undefined;
5711
5711
  } | {
5712
5712
  country: string;
@@ -5747,8 +5747,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5747
5747
  street?: string | null | undefined;
5748
5748
  zipCode?: string | null | undefined;
5749
5749
  } | {
5750
- firstname?: string | null | undefined;
5751
- surname?: string | null | undefined;
5750
+ firstname: string;
5751
+ surname: string;
5752
5752
  middlename?: string | null | undefined;
5753
5753
  } | {
5754
5754
  country: string;
@@ -5778,7 +5778,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5778
5778
  }>;
5779
5779
  export type RejectCorrectionActionInput = z.infer<typeof RejectCorrectionActionInput>;
5780
5780
  export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
5781
- eventId: z.ZodBranded<z.ZodString, "UUID">;
5781
+ eventId: z.ZodString;
5782
5782
  transactionId: z.ZodString;
5783
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<{
5784
5784
  filename: z.ZodString;
@@ -5894,16 +5894,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5894
5894
  addressLine3?: string | null | undefined;
5895
5895
  postcodeOrZip?: string | null | undefined;
5896
5896
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5897
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5898
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5897
+ firstname: z.ZodString;
5898
+ surname: z.ZodString;
5899
5899
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5900
5900
  }, "strip", z.ZodTypeAny, {
5901
- firstname?: string | null | undefined;
5902
- surname?: string | null | undefined;
5901
+ firstname: string;
5902
+ surname: string;
5903
5903
  middlename?: string | null | undefined;
5904
5904
  }, {
5905
- firstname?: string | null | undefined;
5906
- surname?: string | null | undefined;
5905
+ firstname: string;
5906
+ surname: string;
5907
5907
  middlename?: string | null | undefined;
5908
5908
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5909
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<{
@@ -6020,19 +6020,19 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6020
6020
  addressLine3?: string | null | undefined;
6021
6021
  postcodeOrZip?: string | null | undefined;
6022
6022
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6023
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6024
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6023
+ firstname: z.ZodString;
6024
+ surname: z.ZodString;
6025
6025
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6026
6026
  }, "strip", z.ZodTypeAny, {
6027
- firstname?: string | null | undefined;
6028
- surname?: string | null | undefined;
6027
+ firstname: string;
6028
+ surname: string;
6029
6029
  middlename?: string | null | undefined;
6030
6030
  }, {
6031
- firstname?: string | null | undefined;
6032
- surname?: string | null | undefined;
6031
+ firstname: string;
6032
+ surname: string;
6033
6033
  middlename?: string | null | undefined;
6034
6034
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6035
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6035
+ originalActionId: z.ZodOptional<z.ZodString>;
6036
6036
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6037
6037
  }, {
6038
6038
  requestId: z.ZodString;
@@ -6056,8 +6056,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6056
6056
  street?: string | null | undefined;
6057
6057
  zipCode?: string | null | undefined;
6058
6058
  } | {
6059
- firstname?: string | null | undefined;
6060
- surname?: string | null | undefined;
6059
+ firstname: string;
6060
+ surname: string;
6061
6061
  middlename?: string | null | undefined;
6062
6062
  } | {
6063
6063
  country: string;
@@ -6083,7 +6083,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6083
6083
  originalFilename: string;
6084
6084
  }[] | [string, string] | null | undefined>;
6085
6085
  requestId: string;
6086
- eventId: string & z.BRAND<"UUID">;
6086
+ eventId: string;
6087
6087
  annotation?: Record<string, string | number | boolean | {
6088
6088
  type: string;
6089
6089
  filename: string;
@@ -6100,8 +6100,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6100
6100
  street?: string | null | undefined;
6101
6101
  zipCode?: string | null | undefined;
6102
6102
  } | {
6103
- firstname?: string | null | undefined;
6104
- surname?: string | null | undefined;
6103
+ firstname: string;
6104
+ surname: string;
6105
6105
  middlename?: string | null | undefined;
6106
6106
  } | {
6107
6107
  country: string;
@@ -6126,7 +6126,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6126
6126
  filename: string;
6127
6127
  originalFilename: string;
6128
6128
  }[] | [string, string] | null | undefined> | undefined;
6129
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6129
+ originalActionId?: string | undefined;
6130
6130
  keepAssignment?: boolean | undefined;
6131
6131
  }, {
6132
6132
  transactionId: string;
@@ -6149,8 +6149,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6149
6149
  street?: string | null | undefined;
6150
6150
  zipCode?: string | null | undefined;
6151
6151
  } | {
6152
- firstname?: string | null | undefined;
6153
- surname?: string | null | undefined;
6152
+ firstname: string;
6153
+ surname: string;
6154
6154
  middlename?: string | null | undefined;
6155
6155
  } | {
6156
6156
  country: string;
@@ -6191,8 +6191,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6191
6191
  street?: string | null | undefined;
6192
6192
  zipCode?: string | null | undefined;
6193
6193
  } | {
6194
- firstname?: string | null | undefined;
6195
- surname?: string | null | undefined;
6194
+ firstname: string;
6195
+ surname: string;
6196
6196
  middlename?: string | null | undefined;
6197
6197
  } | {
6198
6198
  country: string;
@@ -6222,7 +6222,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6222
6222
  }>;
6223
6223
  export type ApproveCorrectionActionInput = z.infer<typeof ApproveCorrectionActionInput>;
6224
6224
  export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6225
- eventId: z.ZodBranded<z.ZodString, "UUID">;
6225
+ eventId: z.ZodString;
6226
6226
  transactionId: z.ZodString;
6227
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<{
6228
6228
  filename: z.ZodString;
@@ -6338,16 +6338,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6338
6338
  addressLine3?: string | null | undefined;
6339
6339
  postcodeOrZip?: string | null | undefined;
6340
6340
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6341
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6342
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6341
+ firstname: z.ZodString;
6342
+ surname: z.ZodString;
6343
6343
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6344
6344
  }, "strip", z.ZodTypeAny, {
6345
- firstname?: string | null | undefined;
6346
- surname?: string | null | undefined;
6345
+ firstname: string;
6346
+ surname: string;
6347
6347
  middlename?: string | null | undefined;
6348
6348
  }, {
6349
- firstname?: string | null | undefined;
6350
- surname?: string | null | undefined;
6349
+ firstname: string;
6350
+ surname: string;
6351
6351
  middlename?: string | null | undefined;
6352
6352
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6353
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<{
@@ -6464,19 +6464,19 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6464
6464
  addressLine3?: string | null | undefined;
6465
6465
  postcodeOrZip?: string | null | undefined;
6466
6466
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6467
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6468
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6467
+ firstname: z.ZodString;
6468
+ surname: z.ZodString;
6469
6469
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6470
6470
  }, "strip", z.ZodTypeAny, {
6471
- firstname?: string | null | undefined;
6472
- surname?: string | null | undefined;
6471
+ firstname: string;
6472
+ surname: string;
6473
6473
  middlename?: string | null | undefined;
6474
6474
  }, {
6475
- firstname?: string | null | undefined;
6476
- surname?: string | null | undefined;
6475
+ firstname: string;
6476
+ surname: string;
6477
6477
  middlename?: string | null | undefined;
6478
6478
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6479
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6479
+ originalActionId: z.ZodOptional<z.ZodString>;
6480
6480
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6481
6481
  }, {
6482
6482
  type: z.ZodDefault<z.ZodLiteral<"READ">>;
@@ -6499,8 +6499,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6499
6499
  street?: string | null | undefined;
6500
6500
  zipCode?: string | null | undefined;
6501
6501
  } | {
6502
- firstname?: string | null | undefined;
6503
- surname?: string | null | undefined;
6502
+ firstname: string;
6503
+ surname: string;
6504
6504
  middlename?: string | null | undefined;
6505
6505
  } | {
6506
6506
  country: string;
@@ -6525,7 +6525,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6525
6525
  filename: string;
6526
6526
  originalFilename: string;
6527
6527
  }[] | [string, string] | null | undefined>;
6528
- eventId: string & z.BRAND<"UUID">;
6528
+ eventId: string;
6529
6529
  annotation?: Record<string, string | number | boolean | {
6530
6530
  type: string;
6531
6531
  filename: string;
@@ -6542,8 +6542,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6542
6542
  street?: string | null | undefined;
6543
6543
  zipCode?: string | null | undefined;
6544
6544
  } | {
6545
- firstname?: string | null | undefined;
6546
- surname?: string | null | undefined;
6545
+ firstname: string;
6546
+ surname: string;
6547
6547
  middlename?: string | null | undefined;
6548
6548
  } | {
6549
6549
  country: string;
@@ -6568,7 +6568,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6568
6568
  filename: string;
6569
6569
  originalFilename: string;
6570
6570
  }[] | [string, string] | null | undefined> | undefined;
6571
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6571
+ originalActionId?: string | undefined;
6572
6572
  keepAssignment?: boolean | undefined;
6573
6573
  }, {
6574
6574
  transactionId: string;
@@ -6590,8 +6590,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6590
6590
  street?: string | null | undefined;
6591
6591
  zipCode?: string | null | undefined;
6592
6592
  } | {
6593
- firstname?: string | null | undefined;
6594
- surname?: string | null | undefined;
6593
+ firstname: string;
6594
+ surname: string;
6595
6595
  middlename?: string | null | undefined;
6596
6596
  } | {
6597
6597
  country: string;
@@ -6632,8 +6632,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6632
6632
  street?: string | null | undefined;
6633
6633
  zipCode?: string | null | undefined;
6634
6634
  } | {
6635
- firstname?: string | null | undefined;
6636
- surname?: string | null | undefined;
6635
+ firstname: string;
6636
+ surname: string;
6637
6637
  middlename?: string | null | undefined;
6638
6638
  } | {
6639
6639
  country: string;
@@ -6663,9 +6663,9 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6663
6663
  }>;
6664
6664
  export type ReadActionInput = z.infer<typeof ReadActionInput>;
6665
6665
  export declare const DeleteActionInput: z.ZodObject<{
6666
- eventId: z.ZodBranded<z.ZodString, "UUID">;
6666
+ eventId: z.ZodString;
6667
6667
  }, "strip", z.ZodTypeAny, {
6668
- eventId: string & z.BRAND<"UUID">;
6668
+ eventId: string;
6669
6669
  }, {
6670
6670
  eventId: string;
6671
6671
  }>;
@@ -6679,7 +6679,7 @@ export type DeleteActionInput = z.infer<typeof DeleteActionInput>;
6679
6679
  * e.g. mutation.declare({createdAt: new Date()}) vs mutation.declare({createdAt: new Date(), type: 'DECLARE'})
6680
6680
  */
6681
6681
  export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
6682
- eventId: z.ZodBranded<z.ZodString, "UUID">;
6682
+ eventId: z.ZodString;
6683
6683
  transactionId: z.ZodString;
6684
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<{
6685
6685
  filename: z.ZodString;
@@ -6795,16 +6795,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6795
6795
  addressLine3?: string | null | undefined;
6796
6796
  postcodeOrZip?: string | null | undefined;
6797
6797
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6798
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6799
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6798
+ firstname: z.ZodString;
6799
+ surname: z.ZodString;
6800
6800
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6801
6801
  }, "strip", z.ZodTypeAny, {
6802
- firstname?: string | null | undefined;
6803
- surname?: string | null | undefined;
6802
+ firstname: string;
6803
+ surname: string;
6804
6804
  middlename?: string | null | undefined;
6805
6805
  }, {
6806
- firstname?: string | null | undefined;
6807
- surname?: string | null | undefined;
6806
+ firstname: string;
6807
+ surname: string;
6808
6808
  middlename?: string | null | undefined;
6809
6809
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6810
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<{
@@ -6921,23 +6921,23 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6921
6921
  addressLine3?: string | null | undefined;
6922
6922
  postcodeOrZip?: string | null | undefined;
6923
6923
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6924
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6925
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6924
+ firstname: z.ZodString;
6925
+ surname: z.ZodString;
6926
6926
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6927
6927
  }, "strip", z.ZodTypeAny, {
6928
- firstname?: string | null | undefined;
6929
- surname?: string | null | undefined;
6928
+ firstname: string;
6929
+ surname: string;
6930
6930
  middlename?: string | null | undefined;
6931
6931
  }, {
6932
- firstname?: string | null | undefined;
6933
- surname?: string | null | undefined;
6932
+ firstname: string;
6933
+ surname: string;
6934
6934
  middlename?: string | null | undefined;
6935
6935
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6936
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6936
+ originalActionId: z.ZodOptional<z.ZodString>;
6937
6937
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6938
6938
  }, {
6939
6939
  type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
6940
- createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
6940
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6941
6941
  }>, "strip", z.ZodTypeAny, {
6942
6942
  type: "CREATE";
6943
6943
  transactionId: string;
@@ -6957,8 +6957,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6957
6957
  street?: string | null | undefined;
6958
6958
  zipCode?: string | null | undefined;
6959
6959
  } | {
6960
- firstname?: string | null | undefined;
6961
- surname?: string | null | undefined;
6960
+ firstname: string;
6961
+ surname: string;
6962
6962
  middlename?: string | null | undefined;
6963
6963
  } | {
6964
6964
  country: string;
@@ -6983,8 +6983,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6983
6983
  filename: string;
6984
6984
  originalFilename: string;
6985
6985
  }[] | [string, string] | null | undefined>;
6986
- eventId: string & z.BRAND<"UUID">;
6987
- createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
6986
+ eventId: string;
6987
+ createdAtLocation?: string | null | undefined;
6988
6988
  annotation?: Record<string, string | number | boolean | {
6989
6989
  type: string;
6990
6990
  filename: string;
@@ -7001,8 +7001,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7001
7001
  street?: string | null | undefined;
7002
7002
  zipCode?: string | null | undefined;
7003
7003
  } | {
7004
- firstname?: string | null | undefined;
7005
- surname?: string | null | undefined;
7004
+ firstname: string;
7005
+ surname: string;
7006
7006
  middlename?: string | null | undefined;
7007
7007
  } | {
7008
7008
  country: string;
@@ -7027,7 +7027,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7027
7027
  filename: string;
7028
7028
  originalFilename: string;
7029
7029
  }[] | [string, string] | null | undefined> | undefined;
7030
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7030
+ originalActionId?: string | undefined;
7031
7031
  keepAssignment?: boolean | undefined;
7032
7032
  }, {
7033
7033
  transactionId: string;
@@ -7050,8 +7050,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7050
7050
  street?: string | null | undefined;
7051
7051
  zipCode?: string | null | undefined;
7052
7052
  } | {
7053
- firstname?: string | null | undefined;
7054
- surname?: string | null | undefined;
7053
+ firstname: string;
7054
+ surname: string;
7055
7055
  middlename?: string | null | undefined;
7056
7056
  } | {
7057
7057
  country: string;
@@ -7092,8 +7092,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7092
7092
  street?: string | null | undefined;
7093
7093
  zipCode?: string | null | undefined;
7094
7094
  } | {
7095
- firstname?: string | null | undefined;
7096
- surname?: string | null | undefined;
7095
+ firstname: string;
7096
+ surname: string;
7097
7097
  middlename?: string | null | undefined;
7098
7098
  } | {
7099
7099
  country: string;
@@ -7121,7 +7121,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7121
7121
  originalActionId?: string | undefined;
7122
7122
  keepAssignment?: boolean | undefined;
7123
7123
  }>, z.ZodObject<z.objectUtil.extendShape<{
7124
- eventId: z.ZodBranded<z.ZodString, "UUID">;
7124
+ eventId: z.ZodString;
7125
7125
  transactionId: z.ZodString;
7126
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<{
7127
7127
  filename: z.ZodString;
@@ -7237,16 +7237,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7237
7237
  addressLine3?: string | null | undefined;
7238
7238
  postcodeOrZip?: string | null | undefined;
7239
7239
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7240
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7241
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7240
+ firstname: z.ZodString;
7241
+ surname: z.ZodString;
7242
7242
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7243
7243
  }, "strip", z.ZodTypeAny, {
7244
- firstname?: string | null | undefined;
7245
- surname?: string | null | undefined;
7244
+ firstname: string;
7245
+ surname: string;
7246
7246
  middlename?: string | null | undefined;
7247
7247
  }, {
7248
- firstname?: string | null | undefined;
7249
- surname?: string | null | undefined;
7248
+ firstname: string;
7249
+ surname: string;
7250
7250
  middlename?: string | null | undefined;
7251
7251
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7252
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<{
@@ -7363,19 +7363,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7363
7363
  addressLine3?: string | null | undefined;
7364
7364
  postcodeOrZip?: string | null | undefined;
7365
7365
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7366
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7367
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7366
+ firstname: z.ZodString;
7367
+ surname: z.ZodString;
7368
7368
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7369
7369
  }, "strip", z.ZodTypeAny, {
7370
- firstname?: string | null | undefined;
7371
- surname?: string | null | undefined;
7370
+ firstname: string;
7371
+ surname: string;
7372
7372
  middlename?: string | null | undefined;
7373
7373
  }, {
7374
- firstname?: string | null | undefined;
7375
- surname?: string | null | undefined;
7374
+ firstname: string;
7375
+ surname: string;
7376
7376
  middlename?: string | null | undefined;
7377
7377
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7378
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7378
+ originalActionId: z.ZodOptional<z.ZodString>;
7379
7379
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7380
7380
  }, {
7381
7381
  type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
@@ -7399,8 +7399,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7399
7399
  street?: string | null | undefined;
7400
7400
  zipCode?: string | null | undefined;
7401
7401
  } | {
7402
- firstname?: string | null | undefined;
7403
- surname?: string | null | undefined;
7402
+ firstname: string;
7403
+ surname: string;
7404
7404
  middlename?: string | null | undefined;
7405
7405
  } | {
7406
7406
  country: string;
@@ -7425,7 +7425,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7425
7425
  filename: string;
7426
7426
  originalFilename: string;
7427
7427
  }[] | [string, string] | null | undefined>;
7428
- eventId: string & z.BRAND<"UUID">;
7428
+ eventId: string;
7429
7429
  duplicates: string[];
7430
7430
  annotation?: Record<string, string | number | boolean | {
7431
7431
  type: string;
@@ -7443,8 +7443,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7443
7443
  street?: string | null | undefined;
7444
7444
  zipCode?: string | null | undefined;
7445
7445
  } | {
7446
- firstname?: string | null | undefined;
7447
- surname?: string | null | undefined;
7446
+ firstname: string;
7447
+ surname: string;
7448
7448
  middlename?: string | null | undefined;
7449
7449
  } | {
7450
7450
  country: string;
@@ -7469,7 +7469,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7469
7469
  filename: string;
7470
7470
  originalFilename: string;
7471
7471
  }[] | [string, string] | null | undefined> | undefined;
7472
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7472
+ originalActionId?: string | undefined;
7473
7473
  keepAssignment?: boolean | undefined;
7474
7474
  }, {
7475
7475
  transactionId: string;
@@ -7492,8 +7492,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7492
7492
  street?: string | null | undefined;
7493
7493
  zipCode?: string | null | undefined;
7494
7494
  } | {
7495
- firstname?: string | null | undefined;
7496
- surname?: string | null | undefined;
7495
+ firstname: string;
7496
+ surname: string;
7497
7497
  middlename?: string | null | undefined;
7498
7498
  } | {
7499
7499
  country: string;
@@ -7534,8 +7534,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7534
7534
  street?: string | null | undefined;
7535
7535
  zipCode?: string | null | undefined;
7536
7536
  } | {
7537
- firstname?: string | null | undefined;
7538
- surname?: string | null | undefined;
7537
+ firstname: string;
7538
+ surname: string;
7539
7539
  middlename?: string | null | undefined;
7540
7540
  } | {
7541
7541
  country: string;
@@ -7563,7 +7563,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7563
7563
  originalActionId?: string | undefined;
7564
7564
  keepAssignment?: boolean | undefined;
7565
7565
  }>, z.ZodObject<z.objectUtil.extendShape<{
7566
- eventId: z.ZodBranded<z.ZodString, "UUID">;
7566
+ eventId: z.ZodString;
7567
7567
  transactionId: z.ZodString;
7568
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<{
7569
7569
  filename: z.ZodString;
@@ -7679,16 +7679,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7679
7679
  addressLine3?: string | null | undefined;
7680
7680
  postcodeOrZip?: string | null | undefined;
7681
7681
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7682
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7683
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7682
+ firstname: z.ZodString;
7683
+ surname: z.ZodString;
7684
7684
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7685
7685
  }, "strip", z.ZodTypeAny, {
7686
- firstname?: string | null | undefined;
7687
- surname?: string | null | undefined;
7686
+ firstname: string;
7687
+ surname: string;
7688
7688
  middlename?: string | null | undefined;
7689
7689
  }, {
7690
- firstname?: string | null | undefined;
7691
- surname?: string | null | undefined;
7690
+ firstname: string;
7691
+ surname: string;
7692
7692
  middlename?: string | null | undefined;
7693
7693
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7694
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<{
@@ -7805,24 +7805,24 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7805
7805
  addressLine3?: string | null | undefined;
7806
7806
  postcodeOrZip?: string | null | undefined;
7807
7807
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7808
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7809
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7808
+ firstname: z.ZodString;
7809
+ surname: z.ZodString;
7810
7810
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7811
7811
  }, "strip", z.ZodTypeAny, {
7812
- firstname?: string | null | undefined;
7813
- surname?: string | null | undefined;
7812
+ firstname: string;
7813
+ surname: string;
7814
7814
  middlename?: string | null | undefined;
7815
7815
  }, {
7816
- firstname?: string | null | undefined;
7817
- surname?: string | null | undefined;
7816
+ firstname: string;
7817
+ surname: string;
7818
7818
  middlename?: string | null | undefined;
7819
7819
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7820
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7820
+ originalActionId: z.ZodOptional<z.ZodString>;
7821
7821
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7822
7822
  }, {
7823
7823
  type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
7824
7824
  registrationNumber: z.ZodOptional<z.ZodString>;
7825
- }>, "strict", z.ZodTypeAny, {
7825
+ }>, "strip", z.ZodTypeAny, {
7826
7826
  type: "REGISTER";
7827
7827
  transactionId: string;
7828
7828
  declaration: Record<string, string | number | boolean | {
@@ -7841,8 +7841,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7841
7841
  street?: string | null | undefined;
7842
7842
  zipCode?: string | null | undefined;
7843
7843
  } | {
7844
- firstname?: string | null | undefined;
7845
- surname?: string | null | undefined;
7844
+ firstname: string;
7845
+ surname: string;
7846
7846
  middlename?: string | null | undefined;
7847
7847
  } | {
7848
7848
  country: string;
@@ -7867,7 +7867,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7867
7867
  filename: string;
7868
7868
  originalFilename: string;
7869
7869
  }[] | [string, string] | null | undefined>;
7870
- eventId: string & z.BRAND<"UUID">;
7870
+ eventId: string;
7871
7871
  annotation?: Record<string, string | number | boolean | {
7872
7872
  type: string;
7873
7873
  filename: string;
@@ -7884,8 +7884,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7884
7884
  street?: string | null | undefined;
7885
7885
  zipCode?: string | null | undefined;
7886
7886
  } | {
7887
- firstname?: string | null | undefined;
7888
- surname?: string | null | undefined;
7887
+ firstname: string;
7888
+ surname: string;
7889
7889
  middlename?: string | null | undefined;
7890
7890
  } | {
7891
7891
  country: string;
@@ -7910,7 +7910,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7910
7910
  filename: string;
7911
7911
  originalFilename: string;
7912
7912
  }[] | [string, string] | null | undefined> | undefined;
7913
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7913
+ originalActionId?: string | undefined;
7914
7914
  registrationNumber?: string | undefined;
7915
7915
  keepAssignment?: boolean | undefined;
7916
7916
  }, {
@@ -7933,8 +7933,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7933
7933
  street?: string | null | undefined;
7934
7934
  zipCode?: string | null | undefined;
7935
7935
  } | {
7936
- firstname?: string | null | undefined;
7937
- surname?: string | null | undefined;
7936
+ firstname: string;
7937
+ surname: string;
7938
7938
  middlename?: string | null | undefined;
7939
7939
  } | {
7940
7940
  country: string;
@@ -7975,8 +7975,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7975
7975
  street?: string | null | undefined;
7976
7976
  zipCode?: string | null | undefined;
7977
7977
  } | {
7978
- firstname?: string | null | undefined;
7979
- surname?: string | null | undefined;
7978
+ firstname: string;
7979
+ surname: string;
7980
7980
  middlename?: string | null | undefined;
7981
7981
  } | {
7982
7982
  country: string;
@@ -8005,7 +8005,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8005
8005
  registrationNumber?: string | undefined;
8006
8006
  keepAssignment?: boolean | undefined;
8007
8007
  }>, z.ZodObject<z.objectUtil.extendShape<{
8008
- eventId: z.ZodBranded<z.ZodString, "UUID">;
8008
+ eventId: z.ZodString;
8009
8009
  transactionId: z.ZodString;
8010
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<{
8011
8011
  filename: z.ZodString;
@@ -8121,16 +8121,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8121
8121
  addressLine3?: string | null | undefined;
8122
8122
  postcodeOrZip?: string | null | undefined;
8123
8123
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8124
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8125
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8124
+ firstname: z.ZodString;
8125
+ surname: z.ZodString;
8126
8126
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8127
8127
  }, "strip", z.ZodTypeAny, {
8128
- firstname?: string | null | undefined;
8129
- surname?: string | null | undefined;
8128
+ firstname: string;
8129
+ surname: string;
8130
8130
  middlename?: string | null | undefined;
8131
8131
  }, {
8132
- firstname?: string | null | undefined;
8133
- surname?: string | null | undefined;
8132
+ firstname: string;
8133
+ surname: string;
8134
8134
  middlename?: string | null | undefined;
8135
8135
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8136
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<{
@@ -8247,19 +8247,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8247
8247
  addressLine3?: string | null | undefined;
8248
8248
  postcodeOrZip?: string | null | undefined;
8249
8249
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8250
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8251
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8250
+ firstname: z.ZodString;
8251
+ surname: z.ZodString;
8252
8252
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8253
8253
  }, "strip", z.ZodTypeAny, {
8254
- firstname?: string | null | undefined;
8255
- surname?: string | null | undefined;
8254
+ firstname: string;
8255
+ surname: string;
8256
8256
  middlename?: string | null | undefined;
8257
8257
  }, {
8258
- firstname?: string | null | undefined;
8259
- surname?: string | null | undefined;
8258
+ firstname: string;
8259
+ surname: string;
8260
8260
  middlename?: string | null | undefined;
8261
8261
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8262
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8262
+ originalActionId: z.ZodOptional<z.ZodString>;
8263
8263
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8264
8264
  }, {
8265
8265
  type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
@@ -8282,8 +8282,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8282
8282
  street?: string | null | undefined;
8283
8283
  zipCode?: string | null | undefined;
8284
8284
  } | {
8285
- firstname?: string | null | undefined;
8286
- surname?: string | null | undefined;
8285
+ firstname: string;
8286
+ surname: string;
8287
8287
  middlename?: string | null | undefined;
8288
8288
  } | {
8289
8289
  country: string;
@@ -8308,7 +8308,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8308
8308
  filename: string;
8309
8309
  originalFilename: string;
8310
8310
  }[] | [string, string] | null | undefined>;
8311
- eventId: string & z.BRAND<"UUID">;
8311
+ eventId: string;
8312
8312
  annotation?: Record<string, string | number | boolean | {
8313
8313
  type: string;
8314
8314
  filename: string;
@@ -8325,8 +8325,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8325
8325
  street?: string | null | undefined;
8326
8326
  zipCode?: string | null | undefined;
8327
8327
  } | {
8328
- firstname?: string | null | undefined;
8329
- surname?: string | null | undefined;
8328
+ firstname: string;
8329
+ surname: string;
8330
8330
  middlename?: string | null | undefined;
8331
8331
  } | {
8332
8332
  country: string;
@@ -8351,7 +8351,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8351
8351
  filename: string;
8352
8352
  originalFilename: string;
8353
8353
  }[] | [string, string] | null | undefined> | undefined;
8354
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8354
+ originalActionId?: string | undefined;
8355
8355
  keepAssignment?: boolean | undefined;
8356
8356
  }, {
8357
8357
  transactionId: string;
@@ -8373,8 +8373,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8373
8373
  street?: string | null | undefined;
8374
8374
  zipCode?: string | null | undefined;
8375
8375
  } | {
8376
- firstname?: string | null | undefined;
8377
- surname?: string | null | undefined;
8376
+ firstname: string;
8377
+ surname: string;
8378
8378
  middlename?: string | null | undefined;
8379
8379
  } | {
8380
8380
  country: string;
@@ -8415,8 +8415,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8415
8415
  street?: string | null | undefined;
8416
8416
  zipCode?: string | null | undefined;
8417
8417
  } | {
8418
- firstname?: string | null | undefined;
8419
- surname?: string | null | undefined;
8418
+ firstname: string;
8419
+ surname: string;
8420
8420
  middlename?: string | null | undefined;
8421
8421
  } | {
8422
8422
  country: string;
@@ -8444,7 +8444,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8444
8444
  originalActionId?: string | undefined;
8445
8445
  keepAssignment?: boolean | undefined;
8446
8446
  }>, z.ZodObject<z.objectUtil.extendShape<{
8447
- eventId: z.ZodBranded<z.ZodString, "UUID">;
8447
+ eventId: z.ZodString;
8448
8448
  transactionId: z.ZodString;
8449
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<{
8450
8450
  filename: z.ZodString;
@@ -8560,16 +8560,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8560
8560
  addressLine3?: string | null | undefined;
8561
8561
  postcodeOrZip?: string | null | undefined;
8562
8562
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8563
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8564
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8563
+ firstname: z.ZodString;
8564
+ surname: z.ZodString;
8565
8565
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8566
8566
  }, "strip", z.ZodTypeAny, {
8567
- firstname?: string | null | undefined;
8568
- surname?: string | null | undefined;
8567
+ firstname: string;
8568
+ surname: string;
8569
8569
  middlename?: string | null | undefined;
8570
8570
  }, {
8571
- firstname?: string | null | undefined;
8572
- surname?: string | null | undefined;
8571
+ firstname: string;
8572
+ surname: string;
8573
8573
  middlename?: string | null | undefined;
8574
8574
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8575
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<{
@@ -8686,19 +8686,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8686
8686
  addressLine3?: string | null | undefined;
8687
8687
  postcodeOrZip?: string | null | undefined;
8688
8688
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8689
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8690
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8689
+ firstname: z.ZodString;
8690
+ surname: z.ZodString;
8691
8691
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8692
8692
  }, "strip", z.ZodTypeAny, {
8693
- firstname?: string | null | undefined;
8694
- surname?: string | null | undefined;
8693
+ firstname: string;
8694
+ surname: string;
8695
8695
  middlename?: string | null | undefined;
8696
8696
  }, {
8697
- firstname?: string | null | undefined;
8698
- surname?: string | null | undefined;
8697
+ firstname: string;
8698
+ surname: string;
8699
8699
  middlename?: string | null | undefined;
8700
8700
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8701
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8701
+ originalActionId: z.ZodOptional<z.ZodString>;
8702
8702
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8703
8703
  }, {
8704
8704
  type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
@@ -8721,8 +8721,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8721
8721
  street?: string | null | undefined;
8722
8722
  zipCode?: string | null | undefined;
8723
8723
  } | {
8724
- firstname?: string | null | undefined;
8725
- surname?: string | null | undefined;
8724
+ firstname: string;
8725
+ surname: string;
8726
8726
  middlename?: string | null | undefined;
8727
8727
  } | {
8728
8728
  country: string;
@@ -8747,7 +8747,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8747
8747
  filename: string;
8748
8748
  originalFilename: string;
8749
8749
  }[] | [string, string] | null | undefined>;
8750
- eventId: string & z.BRAND<"UUID">;
8750
+ eventId: string;
8751
8751
  annotation?: Record<string, string | number | boolean | {
8752
8752
  type: string;
8753
8753
  filename: string;
@@ -8764,8 +8764,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8764
8764
  street?: string | null | undefined;
8765
8765
  zipCode?: string | null | undefined;
8766
8766
  } | {
8767
- firstname?: string | null | undefined;
8768
- surname?: string | null | undefined;
8767
+ firstname: string;
8768
+ surname: string;
8769
8769
  middlename?: string | null | undefined;
8770
8770
  } | {
8771
8771
  country: string;
@@ -8790,7 +8790,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8790
8790
  filename: string;
8791
8791
  originalFilename: string;
8792
8792
  }[] | [string, string] | null | undefined> | undefined;
8793
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8793
+ originalActionId?: string | undefined;
8794
8794
  keepAssignment?: boolean | undefined;
8795
8795
  }, {
8796
8796
  transactionId: string;
@@ -8812,8 +8812,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8812
8812
  street?: string | null | undefined;
8813
8813
  zipCode?: string | null | undefined;
8814
8814
  } | {
8815
- firstname?: string | null | undefined;
8816
- surname?: string | null | undefined;
8815
+ firstname: string;
8816
+ surname: string;
8817
8817
  middlename?: string | null | undefined;
8818
8818
  } | {
8819
8819
  country: string;
@@ -8854,8 +8854,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8854
8854
  street?: string | null | undefined;
8855
8855
  zipCode?: string | null | undefined;
8856
8856
  } | {
8857
- firstname?: string | null | undefined;
8858
- surname?: string | null | undefined;
8857
+ firstname: string;
8858
+ surname: string;
8859
8859
  middlename?: string | null | undefined;
8860
8860
  } | {
8861
8861
  country: string;
@@ -8883,7 +8883,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8883
8883
  originalActionId?: string | undefined;
8884
8884
  keepAssignment?: boolean | undefined;
8885
8885
  }>, z.ZodObject<z.objectUtil.extendShape<{
8886
- eventId: z.ZodBranded<z.ZodString, "UUID">;
8886
+ eventId: z.ZodString;
8887
8887
  transactionId: z.ZodString;
8888
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<{
8889
8889
  filename: z.ZodString;
@@ -8999,16 +8999,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8999
8999
  addressLine3?: string | null | undefined;
9000
9000
  postcodeOrZip?: string | null | undefined;
9001
9001
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9002
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9003
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9002
+ firstname: z.ZodString;
9003
+ surname: z.ZodString;
9004
9004
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9005
9005
  }, "strip", z.ZodTypeAny, {
9006
- firstname?: string | null | undefined;
9007
- surname?: string | null | undefined;
9006
+ firstname: string;
9007
+ surname: string;
9008
9008
  middlename?: string | null | undefined;
9009
9009
  }, {
9010
- firstname?: string | null | undefined;
9011
- surname?: string | null | undefined;
9010
+ firstname: string;
9011
+ surname: string;
9012
9012
  middlename?: string | null | undefined;
9013
9013
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9014
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<{
@@ -9125,19 +9125,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9125
9125
  addressLine3?: string | null | undefined;
9126
9126
  postcodeOrZip?: string | null | undefined;
9127
9127
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9128
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9129
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9128
+ firstname: z.ZodString;
9129
+ surname: z.ZodString;
9130
9130
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9131
9131
  }, "strip", z.ZodTypeAny, {
9132
- firstname?: string | null | undefined;
9133
- surname?: string | null | undefined;
9132
+ firstname: string;
9133
+ surname: string;
9134
9134
  middlename?: string | null | undefined;
9135
9135
  }, {
9136
- firstname?: string | null | undefined;
9137
- surname?: string | null | undefined;
9136
+ firstname: string;
9137
+ surname: string;
9138
9138
  middlename?: string | null | undefined;
9139
9139
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9140
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9140
+ originalActionId: z.ZodOptional<z.ZodString>;
9141
9141
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9142
9142
  }, {
9143
9143
  type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
@@ -9174,8 +9174,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9174
9174
  street?: string | null | undefined;
9175
9175
  zipCode?: string | null | undefined;
9176
9176
  } | {
9177
- firstname?: string | null | undefined;
9178
- surname?: string | null | undefined;
9177
+ firstname: string;
9178
+ surname: string;
9179
9179
  middlename?: string | null | undefined;
9180
9180
  } | {
9181
9181
  country: string;
@@ -9200,7 +9200,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9200
9200
  filename: string;
9201
9201
  originalFilename: string;
9202
9202
  }[] | [string, string] | null | undefined>;
9203
- eventId: string & z.BRAND<"UUID">;
9203
+ eventId: string;
9204
9204
  annotation?: Record<string, string | number | boolean | {
9205
9205
  type: string;
9206
9206
  filename: string;
@@ -9217,8 +9217,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9217
9217
  street?: string | null | undefined;
9218
9218
  zipCode?: string | null | undefined;
9219
9219
  } | {
9220
- firstname?: string | null | undefined;
9221
- surname?: string | null | undefined;
9220
+ firstname: string;
9221
+ surname: string;
9222
9222
  middlename?: string | null | undefined;
9223
9223
  } | {
9224
9224
  country: string;
@@ -9243,7 +9243,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9243
9243
  filename: string;
9244
9244
  originalFilename: string;
9245
9245
  }[] | [string, string] | null | undefined> | undefined;
9246
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9246
+ originalActionId?: string | undefined;
9247
9247
  keepAssignment?: boolean | undefined;
9248
9248
  }, {
9249
9249
  reason: {
@@ -9269,8 +9269,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9269
9269
  street?: string | null | undefined;
9270
9270
  zipCode?: string | null | undefined;
9271
9271
  } | {
9272
- firstname?: string | null | undefined;
9273
- surname?: string | null | undefined;
9272
+ firstname: string;
9273
+ surname: string;
9274
9274
  middlename?: string | null | undefined;
9275
9275
  } | {
9276
9276
  country: string;
@@ -9311,8 +9311,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9311
9311
  street?: string | null | undefined;
9312
9312
  zipCode?: string | null | undefined;
9313
9313
  } | {
9314
- firstname?: string | null | undefined;
9315
- surname?: string | null | undefined;
9314
+ firstname: string;
9315
+ surname: string;
9316
9316
  middlename?: string | null | undefined;
9317
9317
  } | {
9318
9318
  country: string;
@@ -9340,7 +9340,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9340
9340
  originalActionId?: string | undefined;
9341
9341
  keepAssignment?: boolean | undefined;
9342
9342
  }>, z.ZodObject<z.objectUtil.extendShape<{
9343
- eventId: z.ZodBranded<z.ZodString, "UUID">;
9343
+ eventId: z.ZodString;
9344
9344
  transactionId: z.ZodString;
9345
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<{
9346
9346
  filename: z.ZodString;
@@ -9456,16 +9456,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9456
9456
  addressLine3?: string | null | undefined;
9457
9457
  postcodeOrZip?: string | null | undefined;
9458
9458
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9459
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9460
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9459
+ firstname: z.ZodString;
9460
+ surname: z.ZodString;
9461
9461
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9462
9462
  }, "strip", z.ZodTypeAny, {
9463
- firstname?: string | null | undefined;
9464
- surname?: string | null | undefined;
9463
+ firstname: string;
9464
+ surname: string;
9465
9465
  middlename?: string | null | undefined;
9466
9466
  }, {
9467
- firstname?: string | null | undefined;
9468
- surname?: string | null | undefined;
9467
+ firstname: string;
9468
+ surname: string;
9469
9469
  middlename?: string | null | undefined;
9470
9470
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9471
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<{
@@ -9582,19 +9582,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9582
9582
  addressLine3?: string | null | undefined;
9583
9583
  postcodeOrZip?: string | null | undefined;
9584
9584
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9585
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9586
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9585
+ firstname: z.ZodString;
9586
+ surname: z.ZodString;
9587
9587
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9588
9588
  }, "strip", z.ZodTypeAny, {
9589
- firstname?: string | null | undefined;
9590
- surname?: string | null | undefined;
9589
+ firstname: string;
9590
+ surname: string;
9591
9591
  middlename?: string | null | undefined;
9592
9592
  }, {
9593
- firstname?: string | null | undefined;
9594
- surname?: string | null | undefined;
9593
+ firstname: string;
9594
+ surname: string;
9595
9595
  middlename?: string | null | undefined;
9596
9596
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9597
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9597
+ originalActionId: z.ZodOptional<z.ZodString>;
9598
9598
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9599
9599
  }, {
9600
9600
  type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
@@ -9617,8 +9617,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9617
9617
  street?: string | null | undefined;
9618
9618
  zipCode?: string | null | undefined;
9619
9619
  } | {
9620
- firstname?: string | null | undefined;
9621
- surname?: string | null | undefined;
9620
+ firstname: string;
9621
+ surname: string;
9622
9622
  middlename?: string | null | undefined;
9623
9623
  } | {
9624
9624
  country: string;
@@ -9643,7 +9643,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9643
9643
  filename: string;
9644
9644
  originalFilename: string;
9645
9645
  }[] | [string, string] | null | undefined>;
9646
- eventId: string & z.BRAND<"UUID">;
9646
+ eventId: string;
9647
9647
  annotation?: Record<string, string | number | boolean | {
9648
9648
  type: string;
9649
9649
  filename: string;
@@ -9660,8 +9660,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9660
9660
  street?: string | null | undefined;
9661
9661
  zipCode?: string | null | undefined;
9662
9662
  } | {
9663
- firstname?: string | null | undefined;
9664
- surname?: string | null | undefined;
9663
+ firstname: string;
9664
+ surname: string;
9665
9665
  middlename?: string | null | undefined;
9666
9666
  } | {
9667
9667
  country: string;
@@ -9686,7 +9686,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9686
9686
  filename: string;
9687
9687
  originalFilename: string;
9688
9688
  }[] | [string, string] | null | undefined> | undefined;
9689
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9689
+ originalActionId?: string | undefined;
9690
9690
  keepAssignment?: boolean | undefined;
9691
9691
  }, {
9692
9692
  transactionId: string;
@@ -9708,8 +9708,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9708
9708
  street?: string | null | undefined;
9709
9709
  zipCode?: string | null | undefined;
9710
9710
  } | {
9711
- firstname?: string | null | undefined;
9712
- surname?: string | null | undefined;
9711
+ firstname: string;
9712
+ surname: string;
9713
9713
  middlename?: string | null | undefined;
9714
9714
  } | {
9715
9715
  country: string;
@@ -9750,8 +9750,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9750
9750
  street?: string | null | undefined;
9751
9751
  zipCode?: string | null | undefined;
9752
9752
  } | {
9753
- firstname?: string | null | undefined;
9754
- surname?: string | null | undefined;
9753
+ firstname: string;
9754
+ surname: string;
9755
9755
  middlename?: string | null | undefined;
9756
9756
  } | {
9757
9757
  country: string;
@@ -9779,7 +9779,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9779
9779
  originalActionId?: string | undefined;
9780
9780
  keepAssignment?: boolean | undefined;
9781
9781
  }>, z.ZodObject<z.objectUtil.extendShape<{
9782
- eventId: z.ZodBranded<z.ZodString, "UUID">;
9782
+ eventId: z.ZodString;
9783
9783
  transactionId: z.ZodString;
9784
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<{
9785
9785
  filename: z.ZodString;
@@ -9895,16 +9895,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9895
9895
  addressLine3?: string | null | undefined;
9896
9896
  postcodeOrZip?: string | null | undefined;
9897
9897
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9898
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9899
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9898
+ firstname: z.ZodString;
9899
+ surname: z.ZodString;
9900
9900
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9901
9901
  }, "strip", z.ZodTypeAny, {
9902
- firstname?: string | null | undefined;
9903
- surname?: string | null | undefined;
9902
+ firstname: string;
9903
+ surname: string;
9904
9904
  middlename?: string | null | undefined;
9905
9905
  }, {
9906
- firstname?: string | null | undefined;
9907
- surname?: string | null | undefined;
9906
+ firstname: string;
9907
+ surname: string;
9908
9908
  middlename?: string | null | undefined;
9909
9909
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9910
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<{
@@ -10021,19 +10021,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10021
10021
  addressLine3?: string | null | undefined;
10022
10022
  postcodeOrZip?: string | null | undefined;
10023
10023
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10024
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10025
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10024
+ firstname: z.ZodString;
10025
+ surname: z.ZodString;
10026
10026
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10027
10027
  }, "strip", z.ZodTypeAny, {
10028
- firstname?: string | null | undefined;
10029
- surname?: string | null | undefined;
10028
+ firstname: string;
10029
+ surname: string;
10030
10030
  middlename?: string | null | undefined;
10031
10031
  }, {
10032
- firstname?: string | null | undefined;
10033
- surname?: string | null | undefined;
10032
+ firstname: string;
10033
+ surname: string;
10034
10034
  middlename?: string | null | undefined;
10035
10035
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10036
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10036
+ originalActionId: z.ZodOptional<z.ZodString>;
10037
10037
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10038
10038
  }, {
10039
10039
  type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
@@ -10070,8 +10070,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10070
10070
  street?: string | null | undefined;
10071
10071
  zipCode?: string | null | undefined;
10072
10072
  } | {
10073
- firstname?: string | null | undefined;
10074
- surname?: string | null | undefined;
10073
+ firstname: string;
10074
+ surname: string;
10075
10075
  middlename?: string | null | undefined;
10076
10076
  } | {
10077
10077
  country: string;
@@ -10096,7 +10096,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10096
10096
  filename: string;
10097
10097
  originalFilename: string;
10098
10098
  }[] | [string, string] | null | undefined>;
10099
- eventId: string & z.BRAND<"UUID">;
10099
+ eventId: string;
10100
10100
  annotation?: Record<string, string | number | boolean | {
10101
10101
  type: string;
10102
10102
  filename: string;
@@ -10113,8 +10113,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10113
10113
  street?: string | null | undefined;
10114
10114
  zipCode?: string | null | undefined;
10115
10115
  } | {
10116
- firstname?: string | null | undefined;
10117
- surname?: string | null | undefined;
10116
+ firstname: string;
10117
+ surname: string;
10118
10118
  middlename?: string | null | undefined;
10119
10119
  } | {
10120
10120
  country: string;
@@ -10139,7 +10139,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10139
10139
  filename: string;
10140
10140
  originalFilename: string;
10141
10141
  }[] | [string, string] | null | undefined> | undefined;
10142
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10142
+ originalActionId?: string | undefined;
10143
10143
  keepAssignment?: boolean | undefined;
10144
10144
  }, {
10145
10145
  reason: {
@@ -10165,8 +10165,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10165
10165
  street?: string | null | undefined;
10166
10166
  zipCode?: string | null | undefined;
10167
10167
  } | {
10168
- firstname?: string | null | undefined;
10169
- surname?: string | null | undefined;
10168
+ firstname: string;
10169
+ surname: string;
10170
10170
  middlename?: string | null | undefined;
10171
10171
  } | {
10172
10172
  country: string;
@@ -10207,8 +10207,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10207
10207
  street?: string | null | undefined;
10208
10208
  zipCode?: string | null | undefined;
10209
10209
  } | {
10210
- firstname?: string | null | undefined;
10211
- surname?: string | null | undefined;
10210
+ firstname: string;
10211
+ surname: string;
10212
10212
  middlename?: string | null | undefined;
10213
10213
  } | {
10214
10214
  country: string;
@@ -10236,7 +10236,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10236
10236
  originalActionId?: string | undefined;
10237
10237
  keepAssignment?: boolean | undefined;
10238
10238
  }>, z.ZodObject<z.objectUtil.extendShape<{
10239
- eventId: z.ZodBranded<z.ZodString, "UUID">;
10239
+ eventId: z.ZodString;
10240
10240
  transactionId: z.ZodString;
10241
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<{
10242
10242
  filename: z.ZodString;
@@ -10352,16 +10352,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10352
10352
  addressLine3?: string | null | undefined;
10353
10353
  postcodeOrZip?: string | null | undefined;
10354
10354
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10355
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10356
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10355
+ firstname: z.ZodString;
10356
+ surname: z.ZodString;
10357
10357
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10358
10358
  }, "strip", z.ZodTypeAny, {
10359
- firstname?: string | null | undefined;
10360
- surname?: string | null | undefined;
10359
+ firstname: string;
10360
+ surname: string;
10361
10361
  middlename?: string | null | undefined;
10362
10362
  }, {
10363
- firstname?: string | null | undefined;
10364
- surname?: string | null | undefined;
10363
+ firstname: string;
10364
+ surname: string;
10365
10365
  middlename?: string | null | undefined;
10366
10366
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10367
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<{
@@ -10478,19 +10478,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10478
10478
  addressLine3?: string | null | undefined;
10479
10479
  postcodeOrZip?: string | null | undefined;
10480
10480
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10481
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10482
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10481
+ firstname: z.ZodString;
10482
+ surname: z.ZodString;
10483
10483
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10484
10484
  }, "strip", z.ZodTypeAny, {
10485
- firstname?: string | null | undefined;
10486
- surname?: string | null | undefined;
10485
+ firstname: string;
10486
+ surname: string;
10487
10487
  middlename?: string | null | undefined;
10488
10488
  }, {
10489
- firstname?: string | null | undefined;
10490
- surname?: string | null | undefined;
10489
+ firstname: string;
10490
+ surname: string;
10491
10491
  middlename?: string | null | undefined;
10492
10492
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10493
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10493
+ originalActionId: z.ZodOptional<z.ZodString>;
10494
10494
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10495
10495
  }, {
10496
10496
  type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
@@ -10514,8 +10514,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10514
10514
  street?: string | null | undefined;
10515
10515
  zipCode?: string | null | undefined;
10516
10516
  } | {
10517
- firstname?: string | null | undefined;
10518
- surname?: string | null | undefined;
10517
+ firstname: string;
10518
+ surname: string;
10519
10519
  middlename?: string | null | undefined;
10520
10520
  } | {
10521
10521
  country: string;
@@ -10541,7 +10541,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10541
10541
  originalFilename: string;
10542
10542
  }[] | [string, string] | null | undefined>;
10543
10543
  assignedTo: string;
10544
- eventId: string & z.BRAND<"UUID">;
10544
+ eventId: string;
10545
10545
  annotation?: Record<string, string | number | boolean | {
10546
10546
  type: string;
10547
10547
  filename: string;
@@ -10558,8 +10558,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10558
10558
  street?: string | null | undefined;
10559
10559
  zipCode?: string | null | undefined;
10560
10560
  } | {
10561
- firstname?: string | null | undefined;
10562
- surname?: string | null | undefined;
10561
+ firstname: string;
10562
+ surname: string;
10563
10563
  middlename?: string | null | undefined;
10564
10564
  } | {
10565
10565
  country: string;
@@ -10584,7 +10584,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10584
10584
  filename: string;
10585
10585
  originalFilename: string;
10586
10586
  }[] | [string, string] | null | undefined> | undefined;
10587
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10587
+ originalActionId?: string | undefined;
10588
10588
  keepAssignment?: boolean | undefined;
10589
10589
  }, {
10590
10590
  transactionId: string;
@@ -10607,8 +10607,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10607
10607
  street?: string | null | undefined;
10608
10608
  zipCode?: string | null | undefined;
10609
10609
  } | {
10610
- firstname?: string | null | undefined;
10611
- surname?: string | null | undefined;
10610
+ firstname: string;
10611
+ surname: string;
10612
10612
  middlename?: string | null | undefined;
10613
10613
  } | {
10614
10614
  country: string;
@@ -10649,8 +10649,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10649
10649
  street?: string | null | undefined;
10650
10650
  zipCode?: string | null | undefined;
10651
10651
  } | {
10652
- firstname?: string | null | undefined;
10653
- surname?: string | null | undefined;
10652
+ firstname: string;
10653
+ surname: string;
10654
10654
  middlename?: string | null | undefined;
10655
10655
  } | {
10656
10656
  country: string;
@@ -10678,7 +10678,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10678
10678
  originalActionId?: string | undefined;
10679
10679
  keepAssignment?: boolean | undefined;
10680
10680
  }>, z.ZodObject<z.objectUtil.extendShape<{
10681
- eventId: z.ZodBranded<z.ZodString, "UUID">;
10681
+ eventId: z.ZodString;
10682
10682
  transactionId: z.ZodString;
10683
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<{
10684
10684
  filename: z.ZodString;
@@ -10794,16 +10794,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10794
10794
  addressLine3?: string | null | undefined;
10795
10795
  postcodeOrZip?: string | null | undefined;
10796
10796
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10797
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10798
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10797
+ firstname: z.ZodString;
10798
+ surname: z.ZodString;
10799
10799
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10800
10800
  }, "strip", z.ZodTypeAny, {
10801
- firstname?: string | null | undefined;
10802
- surname?: string | null | undefined;
10801
+ firstname: string;
10802
+ surname: string;
10803
10803
  middlename?: string | null | undefined;
10804
10804
  }, {
10805
- firstname?: string | null | undefined;
10806
- surname?: string | null | undefined;
10805
+ firstname: string;
10806
+ surname: string;
10807
10807
  middlename?: string | null | undefined;
10808
10808
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10809
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<{
@@ -10920,19 +10920,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10920
10920
  addressLine3?: string | null | undefined;
10921
10921
  postcodeOrZip?: string | null | undefined;
10922
10922
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10923
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10924
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10923
+ firstname: z.ZodString;
10924
+ surname: z.ZodString;
10925
10925
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10926
10926
  }, "strip", z.ZodTypeAny, {
10927
- firstname?: string | null | undefined;
10928
- surname?: string | null | undefined;
10927
+ firstname: string;
10928
+ surname: string;
10929
10929
  middlename?: string | null | undefined;
10930
10930
  }, {
10931
- firstname?: string | null | undefined;
10932
- surname?: string | null | undefined;
10931
+ firstname: string;
10932
+ surname: string;
10933
10933
  middlename?: string | null | undefined;
10934
10934
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10935
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10935
+ originalActionId: z.ZodOptional<z.ZodString>;
10936
10936
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10937
10937
  }, {
10938
10938
  type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
@@ -10956,8 +10956,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10956
10956
  street?: string | null | undefined;
10957
10957
  zipCode?: string | null | undefined;
10958
10958
  } | {
10959
- firstname?: string | null | undefined;
10960
- surname?: string | null | undefined;
10959
+ firstname: string;
10960
+ surname: string;
10961
10961
  middlename?: string | null | undefined;
10962
10962
  } | {
10963
10963
  country: string;
@@ -10983,7 +10983,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10983
10983
  originalFilename: string;
10984
10984
  }[] | [string, string] | null | undefined>;
10985
10985
  assignedTo: null;
10986
- eventId: string & z.BRAND<"UUID">;
10986
+ eventId: string;
10987
10987
  annotation?: Record<string, string | number | boolean | {
10988
10988
  type: string;
10989
10989
  filename: string;
@@ -11000,8 +11000,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11000
11000
  street?: string | null | undefined;
11001
11001
  zipCode?: string | null | undefined;
11002
11002
  } | {
11003
- firstname?: string | null | undefined;
11004
- surname?: string | null | undefined;
11003
+ firstname: string;
11004
+ surname: string;
11005
11005
  middlename?: string | null | undefined;
11006
11006
  } | {
11007
11007
  country: string;
@@ -11026,7 +11026,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11026
11026
  filename: string;
11027
11027
  originalFilename: string;
11028
11028
  }[] | [string, string] | null | undefined> | undefined;
11029
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11029
+ originalActionId?: string | undefined;
11030
11030
  keepAssignment?: boolean | undefined;
11031
11031
  }, {
11032
11032
  transactionId: string;
@@ -11048,8 +11048,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11048
11048
  street?: string | null | undefined;
11049
11049
  zipCode?: string | null | undefined;
11050
11050
  } | {
11051
- firstname?: string | null | undefined;
11052
- surname?: string | null | undefined;
11051
+ firstname: string;
11052
+ surname: string;
11053
11053
  middlename?: string | null | undefined;
11054
11054
  } | {
11055
11055
  country: string;
@@ -11090,8 +11090,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11090
11090
  street?: string | null | undefined;
11091
11091
  zipCode?: string | null | undefined;
11092
11092
  } | {
11093
- firstname?: string | null | undefined;
11094
- surname?: string | null | undefined;
11093
+ firstname: string;
11094
+ surname: string;
11095
11095
  middlename?: string | null | undefined;
11096
11096
  } | {
11097
11097
  country: string;
@@ -11120,7 +11120,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11120
11120
  assignedTo?: null | undefined;
11121
11121
  keepAssignment?: boolean | undefined;
11122
11122
  }>, z.ZodObject<z.objectUtil.extendShape<{
11123
- eventId: z.ZodBranded<z.ZodString, "UUID">;
11123
+ eventId: z.ZodString;
11124
11124
  transactionId: z.ZodString;
11125
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<{
11126
11126
  filename: z.ZodString;
@@ -11236,16 +11236,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11236
11236
  addressLine3?: string | null | undefined;
11237
11237
  postcodeOrZip?: string | null | undefined;
11238
11238
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11239
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11240
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11239
+ firstname: z.ZodString;
11240
+ surname: z.ZodString;
11241
11241
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11242
11242
  }, "strip", z.ZodTypeAny, {
11243
- firstname?: string | null | undefined;
11244
- surname?: string | null | undefined;
11243
+ firstname: string;
11244
+ surname: string;
11245
11245
  middlename?: string | null | undefined;
11246
11246
  }, {
11247
- firstname?: string | null | undefined;
11248
- surname?: string | null | undefined;
11247
+ firstname: string;
11248
+ surname: string;
11249
11249
  middlename?: string | null | undefined;
11250
11250
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11251
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<{
@@ -11362,19 +11362,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11362
11362
  addressLine3?: string | null | undefined;
11363
11363
  postcodeOrZip?: string | null | undefined;
11364
11364
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11365
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11366
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11365
+ firstname: z.ZodString;
11366
+ surname: z.ZodString;
11367
11367
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11368
11368
  }, "strip", z.ZodTypeAny, {
11369
- firstname?: string | null | undefined;
11370
- surname?: string | null | undefined;
11369
+ firstname: string;
11370
+ surname: string;
11371
11371
  middlename?: string | null | undefined;
11372
11372
  }, {
11373
- firstname?: string | null | undefined;
11374
- surname?: string | null | undefined;
11373
+ firstname: string;
11374
+ surname: string;
11375
11375
  middlename?: string | null | undefined;
11376
11376
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11377
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11377
+ originalActionId: z.ZodOptional<z.ZodString>;
11378
11378
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11379
11379
  }, {
11380
11380
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
@@ -11397,8 +11397,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11397
11397
  street?: string | null | undefined;
11398
11398
  zipCode?: string | null | undefined;
11399
11399
  } | {
11400
- firstname?: string | null | undefined;
11401
- surname?: string | null | undefined;
11400
+ firstname: string;
11401
+ surname: string;
11402
11402
  middlename?: string | null | undefined;
11403
11403
  } | {
11404
11404
  country: string;
@@ -11423,7 +11423,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11423
11423
  filename: string;
11424
11424
  originalFilename: string;
11425
11425
  }[] | [string, string] | null | undefined>;
11426
- eventId: string & z.BRAND<"UUID">;
11426
+ eventId: string;
11427
11427
  annotation?: Record<string, string | number | boolean | {
11428
11428
  type: string;
11429
11429
  filename: string;
@@ -11440,8 +11440,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11440
11440
  street?: string | null | undefined;
11441
11441
  zipCode?: string | null | undefined;
11442
11442
  } | {
11443
- firstname?: string | null | undefined;
11444
- surname?: string | null | undefined;
11443
+ firstname: string;
11444
+ surname: string;
11445
11445
  middlename?: string | null | undefined;
11446
11446
  } | {
11447
11447
  country: string;
@@ -11466,7 +11466,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11466
11466
  filename: string;
11467
11467
  originalFilename: string;
11468
11468
  }[] | [string, string] | null | undefined> | undefined;
11469
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11469
+ originalActionId?: string | undefined;
11470
11470
  keepAssignment?: boolean | undefined;
11471
11471
  }, {
11472
11472
  transactionId: string;
@@ -11488,8 +11488,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11488
11488
  street?: string | null | undefined;
11489
11489
  zipCode?: string | null | undefined;
11490
11490
  } | {
11491
- firstname?: string | null | undefined;
11492
- surname?: string | null | undefined;
11491
+ firstname: string;
11492
+ surname: string;
11493
11493
  middlename?: string | null | undefined;
11494
11494
  } | {
11495
11495
  country: string;
@@ -11530,8 +11530,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11530
11530
  street?: string | null | undefined;
11531
11531
  zipCode?: string | null | undefined;
11532
11532
  } | {
11533
- firstname?: string | null | undefined;
11534
- surname?: string | null | undefined;
11533
+ firstname: string;
11534
+ surname: string;
11535
11535
  middlename?: string | null | undefined;
11536
11536
  } | {
11537
11537
  country: string;
@@ -11559,7 +11559,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11559
11559
  originalActionId?: string | undefined;
11560
11560
  keepAssignment?: boolean | undefined;
11561
11561
  }>, z.ZodObject<z.objectUtil.extendShape<{
11562
- eventId: z.ZodBranded<z.ZodString, "UUID">;
11562
+ eventId: z.ZodString;
11563
11563
  transactionId: z.ZodString;
11564
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<{
11565
11565
  filename: z.ZodString;
@@ -11675,16 +11675,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11675
11675
  addressLine3?: string | null | undefined;
11676
11676
  postcodeOrZip?: string | null | undefined;
11677
11677
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11678
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11679
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11678
+ firstname: z.ZodString;
11679
+ surname: z.ZodString;
11680
11680
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11681
11681
  }, "strip", z.ZodTypeAny, {
11682
- firstname?: string | null | undefined;
11683
- surname?: string | null | undefined;
11682
+ firstname: string;
11683
+ surname: string;
11684
11684
  middlename?: string | null | undefined;
11685
11685
  }, {
11686
- firstname?: string | null | undefined;
11687
- surname?: string | null | undefined;
11686
+ firstname: string;
11687
+ surname: string;
11688
11688
  middlename?: string | null | undefined;
11689
11689
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11690
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<{
@@ -11801,19 +11801,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11801
11801
  addressLine3?: string | null | undefined;
11802
11802
  postcodeOrZip?: string | null | undefined;
11803
11803
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11804
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11805
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11804
+ firstname: z.ZodString;
11805
+ surname: z.ZodString;
11806
11806
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11807
11807
  }, "strip", z.ZodTypeAny, {
11808
- firstname?: string | null | undefined;
11809
- surname?: string | null | undefined;
11808
+ firstname: string;
11809
+ surname: string;
11810
11810
  middlename?: string | null | undefined;
11811
11811
  }, {
11812
- firstname?: string | null | undefined;
11813
- surname?: string | null | undefined;
11812
+ firstname: string;
11813
+ surname: string;
11814
11814
  middlename?: string | null | undefined;
11815
11815
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11816
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11816
+ originalActionId: z.ZodOptional<z.ZodString>;
11817
11817
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11818
11818
  }, {
11819
11819
  type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
@@ -11836,8 +11836,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11836
11836
  street?: string | null | undefined;
11837
11837
  zipCode?: string | null | undefined;
11838
11838
  } | {
11839
- firstname?: string | null | undefined;
11840
- surname?: string | null | undefined;
11839
+ firstname: string;
11840
+ surname: string;
11841
11841
  middlename?: string | null | undefined;
11842
11842
  } | {
11843
11843
  country: string;
@@ -11862,7 +11862,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11862
11862
  filename: string;
11863
11863
  originalFilename: string;
11864
11864
  }[] | [string, string] | null | undefined>;
11865
- eventId: string & z.BRAND<"UUID">;
11865
+ eventId: string;
11866
11866
  annotation?: Record<string, string | number | boolean | {
11867
11867
  type: string;
11868
11868
  filename: string;
@@ -11879,8 +11879,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11879
11879
  street?: string | null | undefined;
11880
11880
  zipCode?: string | null | undefined;
11881
11881
  } | {
11882
- firstname?: string | null | undefined;
11883
- surname?: string | null | undefined;
11882
+ firstname: string;
11883
+ surname: string;
11884
11884
  middlename?: string | null | undefined;
11885
11885
  } | {
11886
11886
  country: string;
@@ -11905,7 +11905,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11905
11905
  filename: string;
11906
11906
  originalFilename: string;
11907
11907
  }[] | [string, string] | null | undefined> | undefined;
11908
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11908
+ originalActionId?: string | undefined;
11909
11909
  keepAssignment?: boolean | undefined;
11910
11910
  }, {
11911
11911
  transactionId: string;
@@ -11927,8 +11927,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11927
11927
  street?: string | null | undefined;
11928
11928
  zipCode?: string | null | undefined;
11929
11929
  } | {
11930
- firstname?: string | null | undefined;
11931
- surname?: string | null | undefined;
11930
+ firstname: string;
11931
+ surname: string;
11932
11932
  middlename?: string | null | undefined;
11933
11933
  } | {
11934
11934
  country: string;
@@ -11969,8 +11969,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11969
11969
  street?: string | null | undefined;
11970
11970
  zipCode?: string | null | undefined;
11971
11971
  } | {
11972
- firstname?: string | null | undefined;
11973
- surname?: string | null | undefined;
11972
+ firstname: string;
11973
+ surname: string;
11974
11974
  middlename?: string | null | undefined;
11975
11975
  } | {
11976
11976
  country: string;
@@ -11998,7 +11998,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11998
11998
  originalActionId?: string | undefined;
11999
11999
  keepAssignment?: boolean | undefined;
12000
12000
  }>, z.ZodObject<z.objectUtil.extendShape<{
12001
- eventId: z.ZodBranded<z.ZodString, "UUID">;
12001
+ eventId: z.ZodString;
12002
12002
  transactionId: z.ZodString;
12003
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<{
12004
12004
  filename: z.ZodString;
@@ -12114,16 +12114,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12114
12114
  addressLine3?: string | null | undefined;
12115
12115
  postcodeOrZip?: string | null | undefined;
12116
12116
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12117
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12118
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12117
+ firstname: z.ZodString;
12118
+ surname: z.ZodString;
12119
12119
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12120
12120
  }, "strip", z.ZodTypeAny, {
12121
- firstname?: string | null | undefined;
12122
- surname?: string | null | undefined;
12121
+ firstname: string;
12122
+ surname: string;
12123
12123
  middlename?: string | null | undefined;
12124
12124
  }, {
12125
- firstname?: string | null | undefined;
12126
- surname?: string | null | undefined;
12125
+ firstname: string;
12126
+ surname: string;
12127
12127
  middlename?: string | null | undefined;
12128
12128
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12129
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<{
@@ -12240,19 +12240,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12240
12240
  addressLine3?: string | null | undefined;
12241
12241
  postcodeOrZip?: string | null | undefined;
12242
12242
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12243
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12244
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12243
+ firstname: z.ZodString;
12244
+ surname: z.ZodString;
12245
12245
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12246
12246
  }, "strip", z.ZodTypeAny, {
12247
- firstname?: string | null | undefined;
12248
- surname?: string | null | undefined;
12247
+ firstname: string;
12248
+ surname: string;
12249
12249
  middlename?: string | null | undefined;
12250
12250
  }, {
12251
- firstname?: string | null | undefined;
12252
- surname?: string | null | undefined;
12251
+ firstname: string;
12252
+ surname: string;
12253
12253
  middlename?: string | null | undefined;
12254
12254
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12255
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12255
+ originalActionId: z.ZodOptional<z.ZodString>;
12256
12256
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
12257
12257
  }, {
12258
12258
  requestId: z.ZodString;
@@ -12276,8 +12276,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12276
12276
  street?: string | null | undefined;
12277
12277
  zipCode?: string | null | undefined;
12278
12278
  } | {
12279
- firstname?: string | null | undefined;
12280
- surname?: string | null | undefined;
12279
+ firstname: string;
12280
+ surname: string;
12281
12281
  middlename?: string | null | undefined;
12282
12282
  } | {
12283
12283
  country: string;
@@ -12303,7 +12303,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12303
12303
  originalFilename: string;
12304
12304
  }[] | [string, string] | null | undefined>;
12305
12305
  requestId: string;
12306
- eventId: string & z.BRAND<"UUID">;
12306
+ eventId: string;
12307
12307
  annotation?: Record<string, string | number | boolean | {
12308
12308
  type: string;
12309
12309
  filename: string;
@@ -12320,8 +12320,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12320
12320
  street?: string | null | undefined;
12321
12321
  zipCode?: string | null | undefined;
12322
12322
  } | {
12323
- firstname?: string | null | undefined;
12324
- surname?: string | null | undefined;
12323
+ firstname: string;
12324
+ surname: string;
12325
12325
  middlename?: string | null | undefined;
12326
12326
  } | {
12327
12327
  country: string;
@@ -12346,7 +12346,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12346
12346
  filename: string;
12347
12347
  originalFilename: string;
12348
12348
  }[] | [string, string] | null | undefined> | undefined;
12349
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12349
+ originalActionId?: string | undefined;
12350
12350
  keepAssignment?: boolean | undefined;
12351
12351
  }, {
12352
12352
  transactionId: string;
@@ -12369,8 +12369,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12369
12369
  street?: string | null | undefined;
12370
12370
  zipCode?: string | null | undefined;
12371
12371
  } | {
12372
- firstname?: string | null | undefined;
12373
- surname?: string | null | undefined;
12372
+ firstname: string;
12373
+ surname: string;
12374
12374
  middlename?: string | null | undefined;
12375
12375
  } | {
12376
12376
  country: string;
@@ -12411,8 +12411,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12411
12411
  street?: string | null | undefined;
12412
12412
  zipCode?: string | null | undefined;
12413
12413
  } | {
12414
- firstname?: string | null | undefined;
12415
- surname?: string | null | undefined;
12414
+ firstname: string;
12415
+ surname: string;
12416
12416
  middlename?: string | null | undefined;
12417
12417
  } | {
12418
12418
  country: string;
@@ -12440,7 +12440,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12440
12440
  originalActionId?: string | undefined;
12441
12441
  keepAssignment?: boolean | undefined;
12442
12442
  }>, z.ZodObject<z.objectUtil.extendShape<{
12443
- eventId: z.ZodBranded<z.ZodString, "UUID">;
12443
+ eventId: z.ZodString;
12444
12444
  transactionId: z.ZodString;
12445
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<{
12446
12446
  filename: z.ZodString;
@@ -12556,16 +12556,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12556
12556
  addressLine3?: string | null | undefined;
12557
12557
  postcodeOrZip?: string | null | undefined;
12558
12558
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12559
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12560
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12559
+ firstname: z.ZodString;
12560
+ surname: z.ZodString;
12561
12561
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12562
12562
  }, "strip", z.ZodTypeAny, {
12563
- firstname?: string | null | undefined;
12564
- surname?: string | null | undefined;
12563
+ firstname: string;
12564
+ surname: string;
12565
12565
  middlename?: string | null | undefined;
12566
12566
  }, {
12567
- firstname?: string | null | undefined;
12568
- surname?: string | null | undefined;
12567
+ firstname: string;
12568
+ surname: string;
12569
12569
  middlename?: string | null | undefined;
12570
12570
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12571
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<{
@@ -12682,19 +12682,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12682
12682
  addressLine3?: string | null | undefined;
12683
12683
  postcodeOrZip?: string | null | undefined;
12684
12684
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12685
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12686
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12685
+ firstname: z.ZodString;
12686
+ surname: z.ZodString;
12687
12687
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12688
12688
  }, "strip", z.ZodTypeAny, {
12689
- firstname?: string | null | undefined;
12690
- surname?: string | null | undefined;
12689
+ firstname: string;
12690
+ surname: string;
12691
12691
  middlename?: string | null | undefined;
12692
12692
  }, {
12693
- firstname?: string | null | undefined;
12694
- surname?: string | null | undefined;
12693
+ firstname: string;
12694
+ surname: string;
12695
12695
  middlename?: string | null | undefined;
12696
12696
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12697
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12697
+ originalActionId: z.ZodOptional<z.ZodString>;
12698
12698
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
12699
12699
  }, {
12700
12700
  requestId: z.ZodString;
@@ -12718,8 +12718,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12718
12718
  street?: string | null | undefined;
12719
12719
  zipCode?: string | null | undefined;
12720
12720
  } | {
12721
- firstname?: string | null | undefined;
12722
- surname?: string | null | undefined;
12721
+ firstname: string;
12722
+ surname: string;
12723
12723
  middlename?: string | null | undefined;
12724
12724
  } | {
12725
12725
  country: string;
@@ -12745,7 +12745,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12745
12745
  originalFilename: string;
12746
12746
  }[] | [string, string] | null | undefined>;
12747
12747
  requestId: string;
12748
- eventId: string & z.BRAND<"UUID">;
12748
+ eventId: string;
12749
12749
  annotation?: Record<string, string | number | boolean | {
12750
12750
  type: string;
12751
12751
  filename: string;
@@ -12762,8 +12762,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12762
12762
  street?: string | null | undefined;
12763
12763
  zipCode?: string | null | undefined;
12764
12764
  } | {
12765
- firstname?: string | null | undefined;
12766
- surname?: string | null | undefined;
12765
+ firstname: string;
12766
+ surname: string;
12767
12767
  middlename?: string | null | undefined;
12768
12768
  } | {
12769
12769
  country: string;
@@ -12788,7 +12788,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12788
12788
  filename: string;
12789
12789
  originalFilename: string;
12790
12790
  }[] | [string, string] | null | undefined> | undefined;
12791
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12791
+ originalActionId?: string | undefined;
12792
12792
  keepAssignment?: boolean | undefined;
12793
12793
  }, {
12794
12794
  transactionId: string;
@@ -12811,8 +12811,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12811
12811
  street?: string | null | undefined;
12812
12812
  zipCode?: string | null | undefined;
12813
12813
  } | {
12814
- firstname?: string | null | undefined;
12815
- surname?: string | null | undefined;
12814
+ firstname: string;
12815
+ surname: string;
12816
12816
  middlename?: string | null | undefined;
12817
12817
  } | {
12818
12818
  country: string;
@@ -12853,8 +12853,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12853
12853
  street?: string | null | undefined;
12854
12854
  zipCode?: string | null | undefined;
12855
12855
  } | {
12856
- firstname?: string | null | undefined;
12857
- surname?: string | null | undefined;
12856
+ firstname: string;
12857
+ surname: string;
12858
12858
  middlename?: string | null | undefined;
12859
12859
  } | {
12860
12860
  country: string;
@@ -12882,7 +12882,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12882
12882
  originalActionId?: string | undefined;
12883
12883
  keepAssignment?: boolean | undefined;
12884
12884
  }>, z.ZodObject<z.objectUtil.extendShape<{
12885
- eventId: z.ZodBranded<z.ZodString, "UUID">;
12885
+ eventId: z.ZodString;
12886
12886
  transactionId: z.ZodString;
12887
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<{
12888
12888
  filename: z.ZodString;
@@ -12998,16 +12998,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12998
12998
  addressLine3?: string | null | undefined;
12999
12999
  postcodeOrZip?: string | null | undefined;
13000
13000
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13001
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13002
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13001
+ firstname: z.ZodString;
13002
+ surname: z.ZodString;
13003
13003
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13004
13004
  }, "strip", z.ZodTypeAny, {
13005
- firstname?: string | null | undefined;
13006
- surname?: string | null | undefined;
13005
+ firstname: string;
13006
+ surname: string;
13007
13007
  middlename?: string | null | undefined;
13008
13008
  }, {
13009
- firstname?: string | null | undefined;
13010
- surname?: string | null | undefined;
13009
+ firstname: string;
13010
+ surname: string;
13011
13011
  middlename?: string | null | undefined;
13012
13012
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13013
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<{
@@ -13124,19 +13124,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13124
13124
  addressLine3?: string | null | undefined;
13125
13125
  postcodeOrZip?: string | null | undefined;
13126
13126
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13127
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13128
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13127
+ firstname: z.ZodString;
13128
+ surname: z.ZodString;
13129
13129
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13130
13130
  }, "strip", z.ZodTypeAny, {
13131
- firstname?: string | null | undefined;
13132
- surname?: string | null | undefined;
13131
+ firstname: string;
13132
+ surname: string;
13133
13133
  middlename?: string | null | undefined;
13134
13134
  }, {
13135
- firstname?: string | null | undefined;
13136
- surname?: string | null | undefined;
13135
+ firstname: string;
13136
+ surname: string;
13137
13137
  middlename?: string | null | undefined;
13138
13138
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13139
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
13139
+ originalActionId: z.ZodOptional<z.ZodString>;
13140
13140
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
13141
13141
  }, {
13142
13142
  type: z.ZodDefault<z.ZodLiteral<"READ">>;
@@ -13159,8 +13159,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13159
13159
  street?: string | null | undefined;
13160
13160
  zipCode?: string | null | undefined;
13161
13161
  } | {
13162
- firstname?: string | null | undefined;
13163
- surname?: string | null | undefined;
13162
+ firstname: string;
13163
+ surname: string;
13164
13164
  middlename?: string | null | undefined;
13165
13165
  } | {
13166
13166
  country: string;
@@ -13185,7 +13185,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13185
13185
  filename: string;
13186
13186
  originalFilename: string;
13187
13187
  }[] | [string, string] | null | undefined>;
13188
- eventId: string & z.BRAND<"UUID">;
13188
+ eventId: string;
13189
13189
  annotation?: Record<string, string | number | boolean | {
13190
13190
  type: string;
13191
13191
  filename: string;
@@ -13202,8 +13202,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13202
13202
  street?: string | null | undefined;
13203
13203
  zipCode?: string | null | undefined;
13204
13204
  } | {
13205
- firstname?: string | null | undefined;
13206
- surname?: string | null | undefined;
13205
+ firstname: string;
13206
+ surname: string;
13207
13207
  middlename?: string | null | undefined;
13208
13208
  } | {
13209
13209
  country: string;
@@ -13228,7 +13228,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13228
13228
  filename: string;
13229
13229
  originalFilename: string;
13230
13230
  }[] | [string, string] | null | undefined> | undefined;
13231
- originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13231
+ originalActionId?: string | undefined;
13232
13232
  keepAssignment?: boolean | undefined;
13233
13233
  }, {
13234
13234
  transactionId: string;
@@ -13250,8 +13250,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13250
13250
  street?: string | null | undefined;
13251
13251
  zipCode?: string | null | undefined;
13252
13252
  } | {
13253
- firstname?: string | null | undefined;
13254
- surname?: string | null | undefined;
13253
+ firstname: string;
13254
+ surname: string;
13255
13255
  middlename?: string | null | undefined;
13256
13256
  } | {
13257
13257
  country: string;
@@ -13292,8 +13292,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13292
13292
  street?: string | null | undefined;
13293
13293
  zipCode?: string | null | undefined;
13294
13294
  } | {
13295
- firstname?: string | null | undefined;
13296
- surname?: string | null | undefined;
13295
+ firstname: string;
13296
+ surname: string;
13297
13297
  middlename?: string | null | undefined;
13298
13298
  } | {
13299
13299
  country: string;