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

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.
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  export declare const BaseActionInput: z.ZodObject<{
3
- eventId: z.ZodString;
3
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -254,7 +254,7 @@ export declare const BaseActionInput: z.ZodObject<{
254
254
  surname: string;
255
255
  middlename?: string | null | undefined;
256
256
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
257
- originalActionId: z.ZodOptional<z.ZodString>;
257
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
258
258
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
259
259
  }, "strip", z.ZodTypeAny, {
260
260
  transactionId: 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;
303
+ eventId: string & z.BRAND<"UUID">;
304
304
  annotation?: Record<string, string | number | boolean | {
305
305
  type: string;
306
306
  filename: 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 | undefined;
346
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
347
347
  keepAssignment?: boolean | undefined;
348
348
  }, {
349
349
  transactionId: 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.ZodString;
439
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -690,12 +690,12 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
690
690
  surname: string;
691
691
  middlename?: string | null | undefined;
692
692
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
693
- originalActionId: z.ZodOptional<z.ZodString>;
693
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
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
- }>, "strip", z.ZodTypeAny, {
698
+ }>, "strict", z.ZodTypeAny, {
699
699
  type: "REGISTER";
700
700
  transactionId: string;
701
701
  declaration: Record<string, string | number | boolean | {
@@ -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;
743
+ eventId: string & z.BRAND<"UUID">;
744
744
  annotation?: Record<string, string | number | boolean | {
745
745
  type: string;
746
746
  filename: 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 | undefined;
786
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
787
787
  registrationNumber?: string | undefined;
788
788
  keepAssignment?: boolean | undefined;
789
789
  }, {
@@ -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.ZodString;
883
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -1134,7 +1134,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1134
1134
  surname: string;
1135
1135
  middlename?: string | null | undefined;
1136
1136
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1137
- originalActionId: z.ZodOptional<z.ZodString>;
1137
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1138
1138
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1139
1139
  }, {
1140
1140
  type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
@@ -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;
1187
+ eventId: string & z.BRAND<"UUID">;
1188
1188
  duplicates: string[];
1189
1189
  annotation?: Record<string, string | number | boolean | {
1190
1190
  type: 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 | undefined;
1231
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
1232
1232
  keepAssignment?: boolean | undefined;
1233
1233
  }, {
1234
1234
  transactionId: 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.ZodString;
1327
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -1578,7 +1578,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1578
1578
  surname: string;
1579
1579
  middlename?: string | null | undefined;
1580
1580
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1581
- originalActionId: z.ZodOptional<z.ZodString>;
1581
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1582
1582
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1583
1583
  }, {
1584
1584
  type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
@@ -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;
1630
+ eventId: string & z.BRAND<"UUID">;
1631
1631
  annotation?: Record<string, string | number | boolean | {
1632
1632
  type: string;
1633
1633
  filename: 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 | undefined;
1673
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
1674
1674
  keepAssignment?: boolean | undefined;
1675
1675
  }, {
1676
1676
  transactionId: 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.ZodString;
1768
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -2019,7 +2019,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2019
2019
  surname: string;
2020
2020
  middlename?: string | null | undefined;
2021
2021
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2022
- originalActionId: z.ZodOptional<z.ZodString>;
2022
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2023
2023
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2024
2024
  }, {
2025
2025
  type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
@@ -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;
2071
+ eventId: string & z.BRAND<"UUID">;
2072
2072
  annotation?: Record<string, string | number | boolean | {
2073
2073
  type: string;
2074
2074
  filename: 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 | undefined;
2114
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2115
2115
  keepAssignment?: boolean | undefined;
2116
2116
  }, {
2117
2117
  transactionId: 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.ZodString;
2208
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -2459,7 +2459,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2459
2459
  surname: string;
2460
2460
  middlename?: string | null | undefined;
2461
2461
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2462
- originalActionId: z.ZodOptional<z.ZodString>;
2462
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2463
2463
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2464
2464
  }, {
2465
2465
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
@@ -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;
2511
+ eventId: string & z.BRAND<"UUID">;
2512
2512
  annotation?: Record<string, string | number | boolean | {
2513
2513
  type: string;
2514
2514
  filename: 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 | undefined;
2554
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2555
2555
  keepAssignment?: boolean | undefined;
2556
2556
  }, {
2557
2557
  transactionId: 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.ZodString;
2649
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -2900,7 +2900,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2900
2900
  surname: string;
2901
2901
  middlename?: string | null | undefined;
2902
2902
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2903
- originalActionId: z.ZodOptional<z.ZodString>;
2903
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2904
2904
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2905
2905
  }, {
2906
2906
  type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
@@ -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;
2966
+ eventId: string & z.BRAND<"UUID">;
2967
2967
  annotation?: Record<string, string | number | boolean | {
2968
2968
  type: string;
2969
2969
  filename: 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 | undefined;
3009
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3010
3010
  keepAssignment?: boolean | undefined;
3011
3011
  }, {
3012
3012
  reason: {
@@ -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.ZodString;
3108
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -3359,7 +3359,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3359
3359
  surname: string;
3360
3360
  middlename?: string | null | undefined;
3361
3361
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3362
- originalActionId: z.ZodOptional<z.ZodString>;
3362
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
3363
3363
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3364
3364
  }, {
3365
3365
  type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
@@ -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;
3411
+ eventId: string & z.BRAND<"UUID">;
3412
3412
  annotation?: Record<string, string | number | boolean | {
3413
3413
  type: string;
3414
3414
  filename: 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 | undefined;
3454
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3455
3455
  keepAssignment?: boolean | undefined;
3456
3456
  }, {
3457
3457
  transactionId: 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.ZodString;
3549
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -3800,7 +3800,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3800
3800
  surname: string;
3801
3801
  middlename?: string | null | undefined;
3802
3802
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3803
- originalActionId: z.ZodOptional<z.ZodString>;
3803
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
3804
3804
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3805
3805
  }, {
3806
3806
  type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
@@ -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;
3866
+ eventId: string & z.BRAND<"UUID">;
3867
3867
  annotation?: Record<string, string | number | boolean | {
3868
3868
  type: string;
3869
3869
  filename: 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 | undefined;
3909
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3910
3910
  keepAssignment?: boolean | undefined;
3911
3911
  }, {
3912
3912
  reason: {
@@ -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.ZodString;
4008
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -4259,7 +4259,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4259
4259
  surname: string;
4260
4260
  middlename?: string | null | undefined;
4261
4261
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4262
- originalActionId: z.ZodOptional<z.ZodString>;
4262
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
4263
4263
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4264
4264
  }, {
4265
4265
  type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
@@ -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;
4313
+ eventId: string & z.BRAND<"UUID">;
4314
4314
  annotation?: Record<string, string | number | boolean | {
4315
4315
  type: string;
4316
4316
  filename: 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 | undefined;
4356
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
4357
4357
  keepAssignment?: boolean | undefined;
4358
4358
  }, {
4359
4359
  transactionId: 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.ZodString;
4452
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -4703,7 +4703,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4703
4703
  surname: string;
4704
4704
  middlename?: string | null | undefined;
4705
4705
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4706
- originalActionId: z.ZodOptional<z.ZodString>;
4706
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
4707
4707
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4708
4708
  }, {
4709
4709
  type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
@@ -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;
4757
+ eventId: string & z.BRAND<"UUID">;
4758
4758
  annotation?: Record<string, string | number | boolean | {
4759
4759
  type: string;
4760
4760
  filename: 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 | undefined;
4800
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
4801
4801
  keepAssignment?: boolean | undefined;
4802
4802
  }, {
4803
4803
  transactionId: 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.ZodString;
4896
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -5147,7 +5147,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5147
5147
  surname: string;
5148
5148
  middlename?: string | null | undefined;
5149
5149
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5150
- originalActionId: z.ZodOptional<z.ZodString>;
5150
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
5151
5151
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5152
5152
  }, {
5153
5153
  type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
@@ -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;
5199
+ eventId: string & z.BRAND<"UUID">;
5200
5200
  annotation?: Record<string, string | number | boolean | {
5201
5201
  type: string;
5202
5202
  filename: 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 | undefined;
5242
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
5243
5243
  keepAssignment?: boolean | undefined;
5244
5244
  }, {
5245
5245
  transactionId: 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.ZodString;
5337
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -5588,7 +5588,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5588
5588
  surname: string;
5589
5589
  middlename?: string | null | undefined;
5590
5590
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5591
- originalActionId: z.ZodOptional<z.ZodString>;
5591
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
5592
5592
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5593
5593
  }, {
5594
5594
  requestId: z.ZodString;
@@ -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;
5642
+ eventId: string & z.BRAND<"UUID">;
5643
5643
  annotation?: Record<string, string | number | boolean | {
5644
5644
  type: string;
5645
5645
  filename: 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 | undefined;
5685
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
5686
5686
  keepAssignment?: boolean | undefined;
5687
5687
  }, {
5688
5688
  transactionId: 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.ZodString;
5781
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -6032,7 +6032,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6032
6032
  surname: string;
6033
6033
  middlename?: string | null | undefined;
6034
6034
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6035
- originalActionId: z.ZodOptional<z.ZodString>;
6035
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6036
6036
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6037
6037
  }, {
6038
6038
  requestId: z.ZodString;
@@ -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;
6086
+ eventId: string & z.BRAND<"UUID">;
6087
6087
  annotation?: Record<string, string | number | boolean | {
6088
6088
  type: string;
6089
6089
  filename: 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 | undefined;
6129
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6130
6130
  keepAssignment?: boolean | undefined;
6131
6131
  }, {
6132
6132
  transactionId: 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.ZodString;
6225
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -6476,7 +6476,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6476
6476
  surname: string;
6477
6477
  middlename?: string | null | undefined;
6478
6478
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6479
- originalActionId: z.ZodOptional<z.ZodString>;
6479
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6480
6480
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6481
6481
  }, {
6482
6482
  type: z.ZodDefault<z.ZodLiteral<"READ">>;
@@ -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;
6528
+ eventId: string & z.BRAND<"UUID">;
6529
6529
  annotation?: Record<string, string | number | boolean | {
6530
6530
  type: string;
6531
6531
  filename: 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 | undefined;
6571
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6572
6572
  keepAssignment?: boolean | undefined;
6573
6573
  }, {
6574
6574
  transactionId: 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.ZodString;
6666
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
6667
6667
  }, "strip", z.ZodTypeAny, {
6668
- eventId: string;
6668
+ eventId: string & z.BRAND<"UUID">;
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.ZodString;
6682
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -6933,11 +6933,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6933
6933
  surname: string;
6934
6934
  middlename?: string | null | undefined;
6935
6935
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6936
- originalActionId: z.ZodOptional<z.ZodString>;
6936
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6937
6937
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6938
6938
  }, {
6939
6939
  type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
6940
- createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6940
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
6941
6941
  }>, "strip", z.ZodTypeAny, {
6942
6942
  type: "CREATE";
6943
6943
  transactionId: 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;
6987
- createdAtLocation?: string | null | undefined;
6986
+ eventId: string & z.BRAND<"UUID">;
6987
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
6988
6988
  annotation?: Record<string, string | number | boolean | {
6989
6989
  type: string;
6990
6990
  filename: 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 | undefined;
7030
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7031
7031
  keepAssignment?: boolean | undefined;
7032
7032
  }, {
7033
7033
  transactionId: 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.ZodString;
7124
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -7375,7 +7375,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7375
7375
  surname: string;
7376
7376
  middlename?: string | null | undefined;
7377
7377
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7378
- originalActionId: z.ZodOptional<z.ZodString>;
7378
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7379
7379
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7380
7380
  }, {
7381
7381
  type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
@@ -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;
7428
+ eventId: string & z.BRAND<"UUID">;
7429
7429
  duplicates: string[];
7430
7430
  annotation?: Record<string, string | number | boolean | {
7431
7431
  type: 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 | undefined;
7472
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7473
7473
  keepAssignment?: boolean | undefined;
7474
7474
  }, {
7475
7475
  transactionId: 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.ZodString;
7566
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -7817,12 +7817,12 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7817
7817
  surname: string;
7818
7818
  middlename?: string | null | undefined;
7819
7819
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7820
- originalActionId: z.ZodOptional<z.ZodString>;
7820
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
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
- }>, "strip", z.ZodTypeAny, {
7825
+ }>, "strict", z.ZodTypeAny, {
7826
7826
  type: "REGISTER";
7827
7827
  transactionId: string;
7828
7828
  declaration: Record<string, string | number | boolean | {
@@ -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;
7870
+ eventId: string & z.BRAND<"UUID">;
7871
7871
  annotation?: Record<string, string | number | boolean | {
7872
7872
  type: string;
7873
7873
  filename: 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 | undefined;
7913
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7914
7914
  registrationNumber?: string | undefined;
7915
7915
  keepAssignment?: boolean | undefined;
7916
7916
  }, {
@@ -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.ZodString;
8008
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -8259,7 +8259,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8259
8259
  surname: string;
8260
8260
  middlename?: string | null | undefined;
8261
8261
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8262
- originalActionId: z.ZodOptional<z.ZodString>;
8262
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8263
8263
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8264
8264
  }, {
8265
8265
  type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
@@ -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;
8311
+ eventId: string & z.BRAND<"UUID">;
8312
8312
  annotation?: Record<string, string | number | boolean | {
8313
8313
  type: string;
8314
8314
  filename: 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 | undefined;
8354
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8355
8355
  keepAssignment?: boolean | undefined;
8356
8356
  }, {
8357
8357
  transactionId: 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.ZodString;
8447
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -8698,7 +8698,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8698
8698
  surname: string;
8699
8699
  middlename?: string | null | undefined;
8700
8700
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8701
- originalActionId: z.ZodOptional<z.ZodString>;
8701
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8702
8702
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8703
8703
  }, {
8704
8704
  type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
@@ -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;
8750
+ eventId: string & z.BRAND<"UUID">;
8751
8751
  annotation?: Record<string, string | number | boolean | {
8752
8752
  type: string;
8753
8753
  filename: 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 | undefined;
8793
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8794
8794
  keepAssignment?: boolean | undefined;
8795
8795
  }, {
8796
8796
  transactionId: 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.ZodString;
8886
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -9137,7 +9137,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9137
9137
  surname: string;
9138
9138
  middlename?: string | null | undefined;
9139
9139
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9140
- originalActionId: z.ZodOptional<z.ZodString>;
9140
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9141
9141
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9142
9142
  }, {
9143
9143
  type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
@@ -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;
9203
+ eventId: string & z.BRAND<"UUID">;
9204
9204
  annotation?: Record<string, string | number | boolean | {
9205
9205
  type: string;
9206
9206
  filename: 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 | undefined;
9246
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9247
9247
  keepAssignment?: boolean | undefined;
9248
9248
  }, {
9249
9249
  reason: {
@@ -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.ZodString;
9343
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -9594,7 +9594,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9594
9594
  surname: string;
9595
9595
  middlename?: string | null | undefined;
9596
9596
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9597
- originalActionId: z.ZodOptional<z.ZodString>;
9597
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9598
9598
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9599
9599
  }, {
9600
9600
  type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
@@ -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;
9646
+ eventId: string & z.BRAND<"UUID">;
9647
9647
  annotation?: Record<string, string | number | boolean | {
9648
9648
  type: string;
9649
9649
  filename: 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 | undefined;
9689
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9690
9690
  keepAssignment?: boolean | undefined;
9691
9691
  }, {
9692
9692
  transactionId: 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.ZodString;
9782
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -10033,7 +10033,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10033
10033
  surname: string;
10034
10034
  middlename?: string | null | undefined;
10035
10035
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10036
- originalActionId: z.ZodOptional<z.ZodString>;
10036
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10037
10037
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10038
10038
  }, {
10039
10039
  type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
@@ -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;
10099
+ eventId: string & z.BRAND<"UUID">;
10100
10100
  annotation?: Record<string, string | number | boolean | {
10101
10101
  type: string;
10102
10102
  filename: 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 | undefined;
10142
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10143
10143
  keepAssignment?: boolean | undefined;
10144
10144
  }, {
10145
10145
  reason: {
@@ -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.ZodString;
10239
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -10490,7 +10490,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10490
10490
  surname: string;
10491
10491
  middlename?: string | null | undefined;
10492
10492
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10493
- originalActionId: z.ZodOptional<z.ZodString>;
10493
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10494
10494
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10495
10495
  }, {
10496
10496
  type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
@@ -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;
10544
+ eventId: string & z.BRAND<"UUID">;
10545
10545
  annotation?: Record<string, string | number | boolean | {
10546
10546
  type: string;
10547
10547
  filename: 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 | undefined;
10587
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10588
10588
  keepAssignment?: boolean | undefined;
10589
10589
  }, {
10590
10590
  transactionId: 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.ZodString;
10681
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -10932,7 +10932,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10932
10932
  surname: string;
10933
10933
  middlename?: string | null | undefined;
10934
10934
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10935
- originalActionId: z.ZodOptional<z.ZodString>;
10935
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10936
10936
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10937
10937
  }, {
10938
10938
  type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
@@ -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;
10986
+ eventId: string & z.BRAND<"UUID">;
10987
10987
  annotation?: Record<string, string | number | boolean | {
10988
10988
  type: string;
10989
10989
  filename: 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 | undefined;
11029
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11030
11030
  keepAssignment?: boolean | undefined;
11031
11031
  }, {
11032
11032
  transactionId: 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.ZodString;
11123
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -11374,7 +11374,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11374
11374
  surname: string;
11375
11375
  middlename?: string | null | undefined;
11376
11376
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11377
- originalActionId: z.ZodOptional<z.ZodString>;
11377
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11378
11378
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11379
11379
  }, {
11380
11380
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
@@ -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;
11426
+ eventId: string & z.BRAND<"UUID">;
11427
11427
  annotation?: Record<string, string | number | boolean | {
11428
11428
  type: string;
11429
11429
  filename: 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 | undefined;
11469
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11470
11470
  keepAssignment?: boolean | undefined;
11471
11471
  }, {
11472
11472
  transactionId: 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.ZodString;
11562
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -11813,7 +11813,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11813
11813
  surname: string;
11814
11814
  middlename?: string | null | undefined;
11815
11815
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11816
- originalActionId: z.ZodOptional<z.ZodString>;
11816
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11817
11817
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11818
11818
  }, {
11819
11819
  type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
@@ -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;
11865
+ eventId: string & z.BRAND<"UUID">;
11866
11866
  annotation?: Record<string, string | number | boolean | {
11867
11867
  type: string;
11868
11868
  filename: 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 | undefined;
11908
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11909
11909
  keepAssignment?: boolean | undefined;
11910
11910
  }, {
11911
11911
  transactionId: 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.ZodString;
12001
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -12252,7 +12252,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12252
12252
  surname: string;
12253
12253
  middlename?: string | null | undefined;
12254
12254
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12255
- originalActionId: z.ZodOptional<z.ZodString>;
12255
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12256
12256
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
12257
12257
  }, {
12258
12258
  requestId: z.ZodString;
@@ -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;
12306
+ eventId: string & z.BRAND<"UUID">;
12307
12307
  annotation?: Record<string, string | number | boolean | {
12308
12308
  type: string;
12309
12309
  filename: 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 | undefined;
12349
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12350
12350
  keepAssignment?: boolean | undefined;
12351
12351
  }, {
12352
12352
  transactionId: 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.ZodString;
12443
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -12694,7 +12694,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12694
12694
  surname: string;
12695
12695
  middlename?: string | null | undefined;
12696
12696
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12697
- originalActionId: z.ZodOptional<z.ZodString>;
12697
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12698
12698
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
12699
12699
  }, {
12700
12700
  requestId: z.ZodString;
@@ -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;
12748
+ eventId: string & z.BRAND<"UUID">;
12749
12749
  annotation?: Record<string, string | number | boolean | {
12750
12750
  type: string;
12751
12751
  filename: 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 | undefined;
12791
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12792
12792
  keepAssignment?: boolean | undefined;
12793
12793
  }, {
12794
12794
  transactionId: 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.ZodString;
12885
+ eventId: z.ZodBranded<z.ZodString, "UUID">;
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;
@@ -13136,7 +13136,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13136
13136
  surname: string;
13137
13137
  middlename?: string | null | undefined;
13138
13138
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13139
- originalActionId: z.ZodOptional<z.ZodString>;
13139
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
13140
13140
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
13141
13141
  }, {
13142
13142
  type: z.ZodDefault<z.ZodLiteral<"READ">>;
@@ -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;
13188
+ eventId: string & z.BRAND<"UUID">;
13189
13189
  annotation?: Record<string, string | number | boolean | {
13190
13190
  type: string;
13191
13191
  filename: 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 | undefined;
13231
+ originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13232
13232
  keepAssignment?: boolean | undefined;
13233
13233
  }, {
13234
13234
  transactionId: string;