@opencrvs/toolkit 1.8.0-rc.fc4c805 → 1.8.0-rc.fc76588
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +10346 -4518
- package/dist/commons/conditionals/conditionals.d.ts +8 -3
- package/dist/commons/conditionals/validate.d.ts +6 -0
- package/dist/commons/events/ActionConfig.d.ts +56387 -29043
- package/dist/commons/events/ActionDocument.d.ts +2110 -519
- package/dist/commons/events/ActionInput.d.ts +1577 -305
- package/dist/commons/events/ActionType.d.ts +4 -0
- package/dist/commons/events/AdvancedSearchConfig.d.ts +675 -12
- package/dist/commons/events/CompositeFieldValue.d.ts +28 -0
- package/dist/commons/events/Constants.d.ts +3 -0
- package/dist/commons/events/CountryConfigQueryInput.d.ts +2982 -0
- package/dist/commons/events/CreatedAtLocation.d.ts +2 -0
- package/dist/commons/events/Draft.d.ts +137 -36
- package/dist/commons/events/EventConfig.d.ts +27593 -14046
- package/dist/commons/events/EventDocument.d.ts +1374 -391
- package/dist/commons/events/EventIndex.d.ts +589 -357
- package/dist/commons/events/EventInput.d.ts +0 -13
- package/dist/commons/events/EventMetadata.d.ts +74 -80
- package/dist/commons/events/FieldConfig.d.ts +2500 -1111
- package/dist/commons/events/FieldType.d.ts +4 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +94 -52
- package/dist/commons/events/FieldValue.d.ts +43 -5
- package/dist/commons/events/FormConfig.d.ts +18485 -9821
- package/dist/commons/events/PageConfig.d.ts +3600 -1472
- package/dist/commons/events/SummaryConfig.d.ts +0 -5
- package/dist/commons/events/User.d.ts +31 -7
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +53 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +4205 -538
- package/dist/commons/events/defineConfig.d.ts +2639 -635
- package/dist/commons/events/event.d.ts +37 -10
- package/dist/commons/events/field.d.ts +26 -17
- package/dist/commons/events/index.d.ts +4 -0
- package/dist/commons/events/scopes.d.ts +20 -1
- package/dist/commons/events/serializer.d.ts +2 -0
- package/dist/commons/events/test.utils.d.ts +149 -42
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +10115 -313
- package/dist/commons/events/workqueueDefaultColumns.d.ts +3 -0
- package/dist/conditionals/index.js +45 -8
- package/dist/events/index.js +2682 -1019
- package/dist/scopes/index.d.ts +158 -1
- package/dist/scopes/index.js +152 -1
- package/package.json +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
export declare const BaseActionInput: z.ZodObject<{
|
3
|
-
eventId: z.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;
|
@@ -115,7 +115,19 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
115
115
|
addressLine2?: string | null | undefined;
|
116
116
|
addressLine3?: string | null | undefined;
|
117
117
|
postcodeOrZip?: string | null | undefined;
|
118
|
-
}
|
118
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
119
|
+
firstname: z.ZodString;
|
120
|
+
surname: z.ZodString;
|
121
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
122
|
+
}, "strip", z.ZodTypeAny, {
|
123
|
+
firstname: string;
|
124
|
+
surname: string;
|
125
|
+
middlename?: string | null | undefined;
|
126
|
+
}, {
|
127
|
+
firstname: string;
|
128
|
+
surname: string;
|
129
|
+
middlename?: string | null | undefined;
|
130
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
119
131
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
120
132
|
filename: z.ZodString;
|
121
133
|
originalFilename: z.ZodString;
|
@@ -229,8 +241,20 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
229
241
|
addressLine2?: string | null | undefined;
|
230
242
|
addressLine3?: string | null | undefined;
|
231
243
|
postcodeOrZip?: string | null | undefined;
|
232
|
-
}
|
233
|
-
|
244
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
245
|
+
firstname: z.ZodString;
|
246
|
+
surname: z.ZodString;
|
247
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
248
|
+
}, "strip", z.ZodTypeAny, {
|
249
|
+
firstname: string;
|
250
|
+
surname: string;
|
251
|
+
middlename?: string | null | undefined;
|
252
|
+
}, {
|
253
|
+
firstname: string;
|
254
|
+
surname: string;
|
255
|
+
middlename?: string | null | undefined;
|
256
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
257
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
234
258
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
235
259
|
}, "strip", z.ZodTypeAny, {
|
236
260
|
transactionId: string;
|
@@ -249,6 +273,10 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
249
273
|
residentialArea?: string | null | undefined;
|
250
274
|
street?: string | null | undefined;
|
251
275
|
zipCode?: string | null | undefined;
|
276
|
+
} | {
|
277
|
+
firstname: string;
|
278
|
+
surname: string;
|
279
|
+
middlename?: string | null | undefined;
|
252
280
|
} | {
|
253
281
|
country: string;
|
254
282
|
district: string;
|
@@ -271,8 +299,8 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
271
299
|
option: string;
|
272
300
|
filename: string;
|
273
301
|
originalFilename: string;
|
274
|
-
}[] | [string, string] | undefined>;
|
275
|
-
eventId: string
|
302
|
+
}[] | [string, string] | null | undefined>;
|
303
|
+
eventId: string & z.BRAND<"UUID">;
|
276
304
|
annotation?: Record<string, string | number | boolean | {
|
277
305
|
type: string;
|
278
306
|
filename: string;
|
@@ -288,6 +316,10 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
288
316
|
residentialArea?: string | null | undefined;
|
289
317
|
street?: string | null | undefined;
|
290
318
|
zipCode?: string | null | undefined;
|
319
|
+
} | {
|
320
|
+
firstname: string;
|
321
|
+
surname: string;
|
322
|
+
middlename?: string | null | undefined;
|
291
323
|
} | {
|
292
324
|
country: string;
|
293
325
|
district: string;
|
@@ -310,8 +342,8 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
310
342
|
option: string;
|
311
343
|
filename: string;
|
312
344
|
originalFilename: string;
|
313
|
-
}[] | [string, string] | undefined> | undefined;
|
314
|
-
originalActionId?: string | undefined;
|
345
|
+
}[] | [string, string] | null | undefined> | undefined;
|
346
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
315
347
|
keepAssignment?: boolean | undefined;
|
316
348
|
}, {
|
317
349
|
transactionId: string;
|
@@ -331,6 +363,10 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
331
363
|
residentialArea?: string | null | undefined;
|
332
364
|
street?: string | null | undefined;
|
333
365
|
zipCode?: string | null | undefined;
|
366
|
+
} | {
|
367
|
+
firstname: string;
|
368
|
+
surname: string;
|
369
|
+
middlename?: string | null | undefined;
|
334
370
|
} | {
|
335
371
|
country: string;
|
336
372
|
district: string;
|
@@ -353,7 +389,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
353
389
|
option: string;
|
354
390
|
filename: string;
|
355
391
|
originalFilename: string;
|
356
|
-
}[] | [string, string] | undefined> | undefined;
|
392
|
+
}[] | [string, string] | null | undefined> | undefined;
|
357
393
|
annotation?: Record<string, string | number | boolean | {
|
358
394
|
type: string;
|
359
395
|
filename: string;
|
@@ -369,6 +405,10 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
369
405
|
residentialArea?: string | null | undefined;
|
370
406
|
street?: string | null | undefined;
|
371
407
|
zipCode?: string | null | undefined;
|
408
|
+
} | {
|
409
|
+
firstname: string;
|
410
|
+
surname: string;
|
411
|
+
middlename?: string | null | undefined;
|
372
412
|
} | {
|
373
413
|
country: string;
|
374
414
|
district: string;
|
@@ -391,12 +431,12 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
391
431
|
option: string;
|
392
432
|
filename: string;
|
393
433
|
originalFilename: string;
|
394
|
-
}[] | [string, string] | undefined> | undefined;
|
434
|
+
}[] | [string, string] | null | undefined> | undefined;
|
395
435
|
originalActionId?: string | undefined;
|
396
436
|
keepAssignment?: boolean | undefined;
|
397
437
|
}>;
|
398
438
|
export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
399
|
-
eventId: z.ZodString
|
439
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
400
440
|
transactionId: z.ZodString;
|
401
441
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
402
442
|
filename: z.ZodString;
|
@@ -511,7 +551,19 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
511
551
|
addressLine2?: string | null | undefined;
|
512
552
|
addressLine3?: string | null | undefined;
|
513
553
|
postcodeOrZip?: string | null | undefined;
|
514
|
-
}
|
554
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
555
|
+
firstname: z.ZodString;
|
556
|
+
surname: z.ZodString;
|
557
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
558
|
+
}, "strip", z.ZodTypeAny, {
|
559
|
+
firstname: string;
|
560
|
+
surname: string;
|
561
|
+
middlename?: string | null | undefined;
|
562
|
+
}, {
|
563
|
+
firstname: string;
|
564
|
+
surname: string;
|
565
|
+
middlename?: string | null | undefined;
|
566
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
515
567
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
516
568
|
filename: z.ZodString;
|
517
569
|
originalFilename: z.ZodString;
|
@@ -625,8 +677,20 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
625
677
|
addressLine2?: string | null | undefined;
|
626
678
|
addressLine3?: string | null | undefined;
|
627
679
|
postcodeOrZip?: string | null | undefined;
|
628
|
-
}
|
629
|
-
|
680
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
681
|
+
firstname: z.ZodString;
|
682
|
+
surname: z.ZodString;
|
683
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
684
|
+
}, "strip", z.ZodTypeAny, {
|
685
|
+
firstname: string;
|
686
|
+
surname: string;
|
687
|
+
middlename?: string | null | undefined;
|
688
|
+
}, {
|
689
|
+
firstname: string;
|
690
|
+
surname: string;
|
691
|
+
middlename?: string | null | undefined;
|
692
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
693
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
630
694
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
631
695
|
}, {
|
632
696
|
type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
|
@@ -649,6 +713,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
649
713
|
residentialArea?: string | null | undefined;
|
650
714
|
street?: string | null | undefined;
|
651
715
|
zipCode?: string | null | undefined;
|
716
|
+
} | {
|
717
|
+
firstname: string;
|
718
|
+
surname: string;
|
719
|
+
middlename?: string | null | undefined;
|
652
720
|
} | {
|
653
721
|
country: string;
|
654
722
|
district: string;
|
@@ -671,8 +739,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
671
739
|
option: string;
|
672
740
|
filename: string;
|
673
741
|
originalFilename: string;
|
674
|
-
}[] | [string, string] | undefined>;
|
675
|
-
eventId: string
|
742
|
+
}[] | [string, string] | null | undefined>;
|
743
|
+
eventId: string & z.BRAND<"UUID">;
|
676
744
|
annotation?: Record<string, string | number | boolean | {
|
677
745
|
type: string;
|
678
746
|
filename: string;
|
@@ -688,6 +756,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
688
756
|
residentialArea?: string | null | undefined;
|
689
757
|
street?: string | null | undefined;
|
690
758
|
zipCode?: string | null | undefined;
|
759
|
+
} | {
|
760
|
+
firstname: string;
|
761
|
+
surname: string;
|
762
|
+
middlename?: string | null | undefined;
|
691
763
|
} | {
|
692
764
|
country: string;
|
693
765
|
district: string;
|
@@ -710,8 +782,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
710
782
|
option: string;
|
711
783
|
filename: string;
|
712
784
|
originalFilename: string;
|
713
|
-
}[] | [string, string] | undefined> | undefined;
|
714
|
-
originalActionId?: string | undefined;
|
785
|
+
}[] | [string, string] | null | undefined> | undefined;
|
786
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
715
787
|
registrationNumber?: string | undefined;
|
716
788
|
keepAssignment?: boolean | undefined;
|
717
789
|
}, {
|
@@ -733,6 +805,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
733
805
|
residentialArea?: string | null | undefined;
|
734
806
|
street?: string | null | undefined;
|
735
807
|
zipCode?: string | null | undefined;
|
808
|
+
} | {
|
809
|
+
firstname: string;
|
810
|
+
surname: string;
|
811
|
+
middlename?: string | null | undefined;
|
736
812
|
} | {
|
737
813
|
country: string;
|
738
814
|
district: string;
|
@@ -755,7 +831,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
755
831
|
option: string;
|
756
832
|
filename: string;
|
757
833
|
originalFilename: string;
|
758
|
-
}[] | [string, string] | undefined> | undefined;
|
834
|
+
}[] | [string, string] | null | undefined> | undefined;
|
759
835
|
annotation?: Record<string, string | number | boolean | {
|
760
836
|
type: string;
|
761
837
|
filename: string;
|
@@ -771,6 +847,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
771
847
|
residentialArea?: string | null | undefined;
|
772
848
|
street?: string | null | undefined;
|
773
849
|
zipCode?: string | null | undefined;
|
850
|
+
} | {
|
851
|
+
firstname: string;
|
852
|
+
surname: string;
|
853
|
+
middlename?: string | null | undefined;
|
774
854
|
} | {
|
775
855
|
country: string;
|
776
856
|
district: string;
|
@@ -793,14 +873,14 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
793
873
|
option: string;
|
794
874
|
filename: string;
|
795
875
|
originalFilename: string;
|
796
|
-
}[] | [string, string] | undefined> | undefined;
|
876
|
+
}[] | [string, string] | null | undefined> | undefined;
|
797
877
|
originalActionId?: string | undefined;
|
798
878
|
registrationNumber?: string | undefined;
|
799
879
|
keepAssignment?: boolean | undefined;
|
800
880
|
}>;
|
801
881
|
export type RegisterActionInput = z.infer<typeof RegisterActionInput>;
|
802
882
|
export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
803
|
-
eventId: z.ZodString
|
883
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
804
884
|
transactionId: z.ZodString;
|
805
885
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
806
886
|
filename: z.ZodString;
|
@@ -915,7 +995,19 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
915
995
|
addressLine2?: string | null | undefined;
|
916
996
|
addressLine3?: string | null | undefined;
|
917
997
|
postcodeOrZip?: string | null | undefined;
|
918
|
-
}
|
998
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
999
|
+
firstname: z.ZodString;
|
1000
|
+
surname: z.ZodString;
|
1001
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1002
|
+
}, "strip", z.ZodTypeAny, {
|
1003
|
+
firstname: string;
|
1004
|
+
surname: string;
|
1005
|
+
middlename?: string | null | undefined;
|
1006
|
+
}, {
|
1007
|
+
firstname: string;
|
1008
|
+
surname: string;
|
1009
|
+
middlename?: string | null | undefined;
|
1010
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
919
1011
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
920
1012
|
filename: z.ZodString;
|
921
1013
|
originalFilename: z.ZodString;
|
@@ -1029,8 +1121,20 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1029
1121
|
addressLine2?: string | null | undefined;
|
1030
1122
|
addressLine3?: string | null | undefined;
|
1031
1123
|
postcodeOrZip?: string | null | undefined;
|
1032
|
-
}
|
1033
|
-
|
1124
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1125
|
+
firstname: z.ZodString;
|
1126
|
+
surname: z.ZodString;
|
1127
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1128
|
+
}, "strip", z.ZodTypeAny, {
|
1129
|
+
firstname: string;
|
1130
|
+
surname: string;
|
1131
|
+
middlename?: string | null | undefined;
|
1132
|
+
}, {
|
1133
|
+
firstname: string;
|
1134
|
+
surname: string;
|
1135
|
+
middlename?: string | null | undefined;
|
1136
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1137
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
1034
1138
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
1035
1139
|
}, {
|
1036
1140
|
type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
|
@@ -1053,6 +1157,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1053
1157
|
residentialArea?: string | null | undefined;
|
1054
1158
|
street?: string | null | undefined;
|
1055
1159
|
zipCode?: string | null | undefined;
|
1160
|
+
} | {
|
1161
|
+
firstname: string;
|
1162
|
+
surname: string;
|
1163
|
+
middlename?: string | null | undefined;
|
1056
1164
|
} | {
|
1057
1165
|
country: string;
|
1058
1166
|
district: string;
|
@@ -1075,8 +1183,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1075
1183
|
option: string;
|
1076
1184
|
filename: string;
|
1077
1185
|
originalFilename: string;
|
1078
|
-
}[] | [string, string] | undefined>;
|
1079
|
-
eventId: string
|
1186
|
+
}[] | [string, string] | null | undefined>;
|
1187
|
+
eventId: string & z.BRAND<"UUID">;
|
1080
1188
|
duplicates: string[];
|
1081
1189
|
annotation?: Record<string, string | number | boolean | {
|
1082
1190
|
type: string;
|
@@ -1093,6 +1201,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1093
1201
|
residentialArea?: string | null | undefined;
|
1094
1202
|
street?: string | null | undefined;
|
1095
1203
|
zipCode?: string | null | undefined;
|
1204
|
+
} | {
|
1205
|
+
firstname: string;
|
1206
|
+
surname: string;
|
1207
|
+
middlename?: string | null | undefined;
|
1096
1208
|
} | {
|
1097
1209
|
country: string;
|
1098
1210
|
district: string;
|
@@ -1115,8 +1227,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1115
1227
|
option: string;
|
1116
1228
|
filename: string;
|
1117
1229
|
originalFilename: string;
|
1118
|
-
}[] | [string, string] | undefined> | undefined;
|
1119
|
-
originalActionId?: string | undefined;
|
1230
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1231
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
1120
1232
|
keepAssignment?: boolean | undefined;
|
1121
1233
|
}, {
|
1122
1234
|
transactionId: string;
|
@@ -1138,6 +1250,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1138
1250
|
residentialArea?: string | null | undefined;
|
1139
1251
|
street?: string | null | undefined;
|
1140
1252
|
zipCode?: string | null | undefined;
|
1253
|
+
} | {
|
1254
|
+
firstname: string;
|
1255
|
+
surname: string;
|
1256
|
+
middlename?: string | null | undefined;
|
1141
1257
|
} | {
|
1142
1258
|
country: string;
|
1143
1259
|
district: string;
|
@@ -1160,7 +1276,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1160
1276
|
option: string;
|
1161
1277
|
filename: string;
|
1162
1278
|
originalFilename: string;
|
1163
|
-
}[] | [string, string] | undefined> | undefined;
|
1279
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1164
1280
|
annotation?: Record<string, string | number | boolean | {
|
1165
1281
|
type: string;
|
1166
1282
|
filename: string;
|
@@ -1176,6 +1292,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1176
1292
|
residentialArea?: string | null | undefined;
|
1177
1293
|
street?: string | null | undefined;
|
1178
1294
|
zipCode?: string | null | undefined;
|
1295
|
+
} | {
|
1296
|
+
firstname: string;
|
1297
|
+
surname: string;
|
1298
|
+
middlename?: string | null | undefined;
|
1179
1299
|
} | {
|
1180
1300
|
country: string;
|
1181
1301
|
district: string;
|
@@ -1198,13 +1318,13 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1198
1318
|
option: string;
|
1199
1319
|
filename: string;
|
1200
1320
|
originalFilename: string;
|
1201
|
-
}[] | [string, string] | undefined> | undefined;
|
1321
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1202
1322
|
originalActionId?: string | undefined;
|
1203
1323
|
keepAssignment?: boolean | undefined;
|
1204
1324
|
}>;
|
1205
1325
|
export type ValidateActionInput = z.infer<typeof ValidateActionInput>;
|
1206
1326
|
export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
1207
|
-
eventId: z.ZodString
|
1327
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
1208
1328
|
transactionId: z.ZodString;
|
1209
1329
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1210
1330
|
filename: z.ZodString;
|
@@ -1319,7 +1439,19 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1319
1439
|
addressLine2?: string | null | undefined;
|
1320
1440
|
addressLine3?: string | null | undefined;
|
1321
1441
|
postcodeOrZip?: string | null | undefined;
|
1322
|
-
}
|
1442
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1443
|
+
firstname: z.ZodString;
|
1444
|
+
surname: z.ZodString;
|
1445
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1446
|
+
}, "strip", z.ZodTypeAny, {
|
1447
|
+
firstname: string;
|
1448
|
+
surname: string;
|
1449
|
+
middlename?: string | null | undefined;
|
1450
|
+
}, {
|
1451
|
+
firstname: string;
|
1452
|
+
surname: string;
|
1453
|
+
middlename?: string | null | undefined;
|
1454
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1323
1455
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1324
1456
|
filename: z.ZodString;
|
1325
1457
|
originalFilename: z.ZodString;
|
@@ -1433,8 +1565,20 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1433
1565
|
addressLine2?: string | null | undefined;
|
1434
1566
|
addressLine3?: string | null | undefined;
|
1435
1567
|
postcodeOrZip?: string | null | undefined;
|
1436
|
-
}
|
1437
|
-
|
1568
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1569
|
+
firstname: z.ZodString;
|
1570
|
+
surname: z.ZodString;
|
1571
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1572
|
+
}, "strip", z.ZodTypeAny, {
|
1573
|
+
firstname: string;
|
1574
|
+
surname: string;
|
1575
|
+
middlename?: string | null | undefined;
|
1576
|
+
}, {
|
1577
|
+
firstname: string;
|
1578
|
+
surname: string;
|
1579
|
+
middlename?: string | null | undefined;
|
1580
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1581
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
1438
1582
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
1439
1583
|
}, {
|
1440
1584
|
type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
|
@@ -1456,6 +1600,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1456
1600
|
residentialArea?: string | null | undefined;
|
1457
1601
|
street?: string | null | undefined;
|
1458
1602
|
zipCode?: string | null | undefined;
|
1603
|
+
} | {
|
1604
|
+
firstname: string;
|
1605
|
+
surname: string;
|
1606
|
+
middlename?: string | null | undefined;
|
1459
1607
|
} | {
|
1460
1608
|
country: string;
|
1461
1609
|
district: string;
|
@@ -1478,8 +1626,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1478
1626
|
option: string;
|
1479
1627
|
filename: string;
|
1480
1628
|
originalFilename: string;
|
1481
|
-
}[] | [string, string] | undefined>;
|
1482
|
-
eventId: string
|
1629
|
+
}[] | [string, string] | null | undefined>;
|
1630
|
+
eventId: string & z.BRAND<"UUID">;
|
1483
1631
|
annotation?: Record<string, string | number | boolean | {
|
1484
1632
|
type: string;
|
1485
1633
|
filename: string;
|
@@ -1495,6 +1643,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1495
1643
|
residentialArea?: string | null | undefined;
|
1496
1644
|
street?: string | null | undefined;
|
1497
1645
|
zipCode?: string | null | undefined;
|
1646
|
+
} | {
|
1647
|
+
firstname: string;
|
1648
|
+
surname: string;
|
1649
|
+
middlename?: string | null | undefined;
|
1498
1650
|
} | {
|
1499
1651
|
country: string;
|
1500
1652
|
district: string;
|
@@ -1517,8 +1669,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1517
1669
|
option: string;
|
1518
1670
|
filename: string;
|
1519
1671
|
originalFilename: string;
|
1520
|
-
}[] | [string, string] | undefined> | undefined;
|
1521
|
-
originalActionId?: string | undefined;
|
1672
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1673
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
1522
1674
|
keepAssignment?: boolean | undefined;
|
1523
1675
|
}, {
|
1524
1676
|
transactionId: string;
|
@@ -1539,6 +1691,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1539
1691
|
residentialArea?: string | null | undefined;
|
1540
1692
|
street?: string | null | undefined;
|
1541
1693
|
zipCode?: string | null | undefined;
|
1694
|
+
} | {
|
1695
|
+
firstname: string;
|
1696
|
+
surname: string;
|
1697
|
+
middlename?: string | null | undefined;
|
1542
1698
|
} | {
|
1543
1699
|
country: string;
|
1544
1700
|
district: string;
|
@@ -1561,7 +1717,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1561
1717
|
option: string;
|
1562
1718
|
filename: string;
|
1563
1719
|
originalFilename: string;
|
1564
|
-
}[] | [string, string] | undefined> | undefined;
|
1720
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1565
1721
|
annotation?: Record<string, string | number | boolean | {
|
1566
1722
|
type: string;
|
1567
1723
|
filename: string;
|
@@ -1577,6 +1733,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1577
1733
|
residentialArea?: string | null | undefined;
|
1578
1734
|
street?: string | null | undefined;
|
1579
1735
|
zipCode?: string | null | undefined;
|
1736
|
+
} | {
|
1737
|
+
firstname: string;
|
1738
|
+
surname: string;
|
1739
|
+
middlename?: string | null | undefined;
|
1580
1740
|
} | {
|
1581
1741
|
country: string;
|
1582
1742
|
district: string;
|
@@ -1599,13 +1759,13 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1599
1759
|
option: string;
|
1600
1760
|
filename: string;
|
1601
1761
|
originalFilename: string;
|
1602
|
-
}[] | [string, string] | undefined> | undefined;
|
1762
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1603
1763
|
originalActionId?: string | undefined;
|
1604
1764
|
keepAssignment?: boolean | undefined;
|
1605
1765
|
}>;
|
1606
1766
|
export type NotifyActionInput = z.infer<typeof NotifyActionInput>;
|
1607
1767
|
export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
1608
|
-
eventId: z.ZodString
|
1768
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
1609
1769
|
transactionId: z.ZodString;
|
1610
1770
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1611
1771
|
filename: z.ZodString;
|
@@ -1720,7 +1880,19 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1720
1880
|
addressLine2?: string | null | undefined;
|
1721
1881
|
addressLine3?: string | null | undefined;
|
1722
1882
|
postcodeOrZip?: string | null | undefined;
|
1723
|
-
}
|
1883
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1884
|
+
firstname: z.ZodString;
|
1885
|
+
surname: z.ZodString;
|
1886
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1887
|
+
}, "strip", z.ZodTypeAny, {
|
1888
|
+
firstname: string;
|
1889
|
+
surname: string;
|
1890
|
+
middlename?: string | null | undefined;
|
1891
|
+
}, {
|
1892
|
+
firstname: string;
|
1893
|
+
surname: string;
|
1894
|
+
middlename?: string | null | undefined;
|
1895
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1724
1896
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1725
1897
|
filename: z.ZodString;
|
1726
1898
|
originalFilename: z.ZodString;
|
@@ -1834,8 +2006,20 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1834
2006
|
addressLine2?: string | null | undefined;
|
1835
2007
|
addressLine3?: string | null | undefined;
|
1836
2008
|
postcodeOrZip?: string | null | undefined;
|
1837
|
-
}
|
1838
|
-
|
2009
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2010
|
+
firstname: z.ZodString;
|
2011
|
+
surname: z.ZodString;
|
2012
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2013
|
+
}, "strip", z.ZodTypeAny, {
|
2014
|
+
firstname: string;
|
2015
|
+
surname: string;
|
2016
|
+
middlename?: string | null | undefined;
|
2017
|
+
}, {
|
2018
|
+
firstname: string;
|
2019
|
+
surname: string;
|
2020
|
+
middlename?: string | null | undefined;
|
2021
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2022
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
1839
2023
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
1840
2024
|
}, {
|
1841
2025
|
type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
|
@@ -1857,6 +2041,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1857
2041
|
residentialArea?: string | null | undefined;
|
1858
2042
|
street?: string | null | undefined;
|
1859
2043
|
zipCode?: string | null | undefined;
|
2044
|
+
} | {
|
2045
|
+
firstname: string;
|
2046
|
+
surname: string;
|
2047
|
+
middlename?: string | null | undefined;
|
1860
2048
|
} | {
|
1861
2049
|
country: string;
|
1862
2050
|
district: string;
|
@@ -1879,8 +2067,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1879
2067
|
option: string;
|
1880
2068
|
filename: string;
|
1881
2069
|
originalFilename: string;
|
1882
|
-
}[] | [string, string] | undefined>;
|
1883
|
-
eventId: string
|
2070
|
+
}[] | [string, string] | null | undefined>;
|
2071
|
+
eventId: string & z.BRAND<"UUID">;
|
1884
2072
|
annotation?: Record<string, string | number | boolean | {
|
1885
2073
|
type: string;
|
1886
2074
|
filename: string;
|
@@ -1896,6 +2084,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1896
2084
|
residentialArea?: string | null | undefined;
|
1897
2085
|
street?: string | null | undefined;
|
1898
2086
|
zipCode?: string | null | undefined;
|
2087
|
+
} | {
|
2088
|
+
firstname: string;
|
2089
|
+
surname: string;
|
2090
|
+
middlename?: string | null | undefined;
|
1899
2091
|
} | {
|
1900
2092
|
country: string;
|
1901
2093
|
district: string;
|
@@ -1918,8 +2110,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1918
2110
|
option: string;
|
1919
2111
|
filename: string;
|
1920
2112
|
originalFilename: string;
|
1921
|
-
}[] | [string, string] | undefined> | undefined;
|
1922
|
-
originalActionId?: string | undefined;
|
2113
|
+
}[] | [string, string] | null | undefined> | undefined;
|
2114
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
1923
2115
|
keepAssignment?: boolean | undefined;
|
1924
2116
|
}, {
|
1925
2117
|
transactionId: string;
|
@@ -1940,6 +2132,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1940
2132
|
residentialArea?: string | null | undefined;
|
1941
2133
|
street?: string | null | undefined;
|
1942
2134
|
zipCode?: string | null | undefined;
|
2135
|
+
} | {
|
2136
|
+
firstname: string;
|
2137
|
+
surname: string;
|
2138
|
+
middlename?: string | null | undefined;
|
1943
2139
|
} | {
|
1944
2140
|
country: string;
|
1945
2141
|
district: string;
|
@@ -1962,7 +2158,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1962
2158
|
option: string;
|
1963
2159
|
filename: string;
|
1964
2160
|
originalFilename: string;
|
1965
|
-
}[] | [string, string] | undefined> | undefined;
|
2161
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1966
2162
|
annotation?: Record<string, string | number | boolean | {
|
1967
2163
|
type: string;
|
1968
2164
|
filename: string;
|
@@ -1978,6 +2174,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1978
2174
|
residentialArea?: string | null | undefined;
|
1979
2175
|
street?: string | null | undefined;
|
1980
2176
|
zipCode?: string | null | undefined;
|
2177
|
+
} | {
|
2178
|
+
firstname: string;
|
2179
|
+
surname: string;
|
2180
|
+
middlename?: string | null | undefined;
|
1981
2181
|
} | {
|
1982
2182
|
country: string;
|
1983
2183
|
district: string;
|
@@ -2000,12 +2200,12 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2000
2200
|
option: string;
|
2001
2201
|
filename: string;
|
2002
2202
|
originalFilename: string;
|
2003
|
-
}[] | [string, string] | undefined> | undefined;
|
2203
|
+
}[] | [string, string] | null | undefined> | undefined;
|
2004
2204
|
originalActionId?: string | undefined;
|
2005
2205
|
keepAssignment?: boolean | undefined;
|
2006
2206
|
}>;
|
2007
2207
|
export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
2008
|
-
eventId: z.ZodString
|
2208
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
2009
2209
|
transactionId: z.ZodString;
|
2010
2210
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2011
2211
|
filename: z.ZodString;
|
@@ -2120,7 +2320,19 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2120
2320
|
addressLine2?: string | null | undefined;
|
2121
2321
|
addressLine3?: string | null | undefined;
|
2122
2322
|
postcodeOrZip?: string | null | undefined;
|
2123
|
-
}
|
2323
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2324
|
+
firstname: z.ZodString;
|
2325
|
+
surname: z.ZodString;
|
2326
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2327
|
+
}, "strip", z.ZodTypeAny, {
|
2328
|
+
firstname: string;
|
2329
|
+
surname: string;
|
2330
|
+
middlename?: string | null | undefined;
|
2331
|
+
}, {
|
2332
|
+
firstname: string;
|
2333
|
+
surname: string;
|
2334
|
+
middlename?: string | null | undefined;
|
2335
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2124
2336
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2125
2337
|
filename: z.ZodString;
|
2126
2338
|
originalFilename: z.ZodString;
|
@@ -2234,8 +2446,20 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2234
2446
|
addressLine2?: string | null | undefined;
|
2235
2447
|
addressLine3?: string | null | undefined;
|
2236
2448
|
postcodeOrZip?: string | null | undefined;
|
2237
|
-
}
|
2238
|
-
|
2449
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2450
|
+
firstname: z.ZodString;
|
2451
|
+
surname: z.ZodString;
|
2452
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2453
|
+
}, "strip", z.ZodTypeAny, {
|
2454
|
+
firstname: string;
|
2455
|
+
surname: string;
|
2456
|
+
middlename?: string | null | undefined;
|
2457
|
+
}, {
|
2458
|
+
firstname: string;
|
2459
|
+
surname: string;
|
2460
|
+
middlename?: string | null | undefined;
|
2461
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2462
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
2239
2463
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
2240
2464
|
}, {
|
2241
2465
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
@@ -2257,6 +2481,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2257
2481
|
residentialArea?: string | null | undefined;
|
2258
2482
|
street?: string | null | undefined;
|
2259
2483
|
zipCode?: string | null | undefined;
|
2484
|
+
} | {
|
2485
|
+
firstname: string;
|
2486
|
+
surname: string;
|
2487
|
+
middlename?: string | null | undefined;
|
2260
2488
|
} | {
|
2261
2489
|
country: string;
|
2262
2490
|
district: string;
|
@@ -2279,8 +2507,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2279
2507
|
option: string;
|
2280
2508
|
filename: string;
|
2281
2509
|
originalFilename: string;
|
2282
|
-
}[] | [string, string] | undefined>;
|
2283
|
-
eventId: string
|
2510
|
+
}[] | [string, string] | null | undefined>;
|
2511
|
+
eventId: string & z.BRAND<"UUID">;
|
2284
2512
|
annotation?: Record<string, string | number | boolean | {
|
2285
2513
|
type: string;
|
2286
2514
|
filename: string;
|
@@ -2296,6 +2524,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2296
2524
|
residentialArea?: string | null | undefined;
|
2297
2525
|
street?: string | null | undefined;
|
2298
2526
|
zipCode?: string | null | undefined;
|
2527
|
+
} | {
|
2528
|
+
firstname: string;
|
2529
|
+
surname: string;
|
2530
|
+
middlename?: string | null | undefined;
|
2299
2531
|
} | {
|
2300
2532
|
country: string;
|
2301
2533
|
district: string;
|
@@ -2318,8 +2550,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2318
2550
|
option: string;
|
2319
2551
|
filename: string;
|
2320
2552
|
originalFilename: string;
|
2321
|
-
}[] | [string, string] | undefined> | undefined;
|
2322
|
-
originalActionId?: string | undefined;
|
2553
|
+
}[] | [string, string] | null | undefined> | undefined;
|
2554
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
2323
2555
|
keepAssignment?: boolean | undefined;
|
2324
2556
|
}, {
|
2325
2557
|
transactionId: string;
|
@@ -2340,6 +2572,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2340
2572
|
residentialArea?: string | null | undefined;
|
2341
2573
|
street?: string | null | undefined;
|
2342
2574
|
zipCode?: string | null | undefined;
|
2575
|
+
} | {
|
2576
|
+
firstname: string;
|
2577
|
+
surname: string;
|
2578
|
+
middlename?: string | null | undefined;
|
2343
2579
|
} | {
|
2344
2580
|
country: string;
|
2345
2581
|
district: string;
|
@@ -2362,7 +2598,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2362
2598
|
option: string;
|
2363
2599
|
filename: string;
|
2364
2600
|
originalFilename: string;
|
2365
|
-
}[] | [string, string] | undefined> | undefined;
|
2601
|
+
}[] | [string, string] | null | undefined> | undefined;
|
2366
2602
|
annotation?: Record<string, string | number | boolean | {
|
2367
2603
|
type: string;
|
2368
2604
|
filename: string;
|
@@ -2378,6 +2614,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2378
2614
|
residentialArea?: string | null | undefined;
|
2379
2615
|
street?: string | null | undefined;
|
2380
2616
|
zipCode?: string | null | undefined;
|
2617
|
+
} | {
|
2618
|
+
firstname: string;
|
2619
|
+
surname: string;
|
2620
|
+
middlename?: string | null | undefined;
|
2381
2621
|
} | {
|
2382
2622
|
country: string;
|
2383
2623
|
district: string;
|
@@ -2400,13 +2640,13 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2400
2640
|
option: string;
|
2401
2641
|
filename: string;
|
2402
2642
|
originalFilename: string;
|
2403
|
-
}[] | [string, string] | undefined> | undefined;
|
2643
|
+
}[] | [string, string] | null | undefined> | undefined;
|
2404
2644
|
originalActionId?: string | undefined;
|
2405
2645
|
keepAssignment?: boolean | undefined;
|
2406
2646
|
}>;
|
2407
2647
|
export type DeclareActionInput = z.infer<typeof DeclareActionInput>;
|
2408
2648
|
export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
2409
|
-
eventId: z.ZodString
|
2649
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
2410
2650
|
transactionId: z.ZodString;
|
2411
2651
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2412
2652
|
filename: z.ZodString;
|
@@ -2521,7 +2761,19 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2521
2761
|
addressLine2?: string | null | undefined;
|
2522
2762
|
addressLine3?: string | null | undefined;
|
2523
2763
|
postcodeOrZip?: string | null | undefined;
|
2524
|
-
}
|
2764
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2765
|
+
firstname: z.ZodString;
|
2766
|
+
surname: z.ZodString;
|
2767
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2768
|
+
}, "strip", z.ZodTypeAny, {
|
2769
|
+
firstname: string;
|
2770
|
+
surname: string;
|
2771
|
+
middlename?: string | null | undefined;
|
2772
|
+
}, {
|
2773
|
+
firstname: string;
|
2774
|
+
surname: string;
|
2775
|
+
middlename?: string | null | undefined;
|
2776
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2525
2777
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2526
2778
|
filename: z.ZodString;
|
2527
2779
|
originalFilename: z.ZodString;
|
@@ -2635,13 +2887,39 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2635
2887
|
addressLine2?: string | null | undefined;
|
2636
2888
|
addressLine3?: string | null | undefined;
|
2637
2889
|
postcodeOrZip?: string | null | undefined;
|
2638
|
-
}
|
2639
|
-
|
2890
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2891
|
+
firstname: z.ZodString;
|
2892
|
+
surname: z.ZodString;
|
2893
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2894
|
+
}, "strip", z.ZodTypeAny, {
|
2895
|
+
firstname: string;
|
2896
|
+
surname: string;
|
2897
|
+
middlename?: string | null | undefined;
|
2898
|
+
}, {
|
2899
|
+
firstname: string;
|
2900
|
+
surname: string;
|
2901
|
+
middlename?: string | null | undefined;
|
2902
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2903
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
2640
2904
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
2641
2905
|
}, {
|
2642
2906
|
type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
|
2907
|
+
reason: z.ZodObject<{
|
2908
|
+
message: z.ZodString;
|
2909
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
2910
|
+
}, "strip", z.ZodTypeAny, {
|
2911
|
+
message: string;
|
2912
|
+
isDuplicate?: boolean | undefined;
|
2913
|
+
}, {
|
2914
|
+
message: string;
|
2915
|
+
isDuplicate?: boolean | undefined;
|
2916
|
+
}>;
|
2643
2917
|
}>, "strip", z.ZodTypeAny, {
|
2644
2918
|
type: "REJECT";
|
2919
|
+
reason: {
|
2920
|
+
message: string;
|
2921
|
+
isDuplicate?: boolean | undefined;
|
2922
|
+
};
|
2645
2923
|
transactionId: string;
|
2646
2924
|
declaration: Record<string, string | number | boolean | {
|
2647
2925
|
type: string;
|
@@ -2658,6 +2936,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2658
2936
|
residentialArea?: string | null | undefined;
|
2659
2937
|
street?: string | null | undefined;
|
2660
2938
|
zipCode?: string | null | undefined;
|
2939
|
+
} | {
|
2940
|
+
firstname: string;
|
2941
|
+
surname: string;
|
2942
|
+
middlename?: string | null | undefined;
|
2661
2943
|
} | {
|
2662
2944
|
country: string;
|
2663
2945
|
district: string;
|
@@ -2680,8 +2962,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2680
2962
|
option: string;
|
2681
2963
|
filename: string;
|
2682
2964
|
originalFilename: string;
|
2683
|
-
}[] | [string, string] | undefined>;
|
2684
|
-
eventId: string
|
2965
|
+
}[] | [string, string] | null | undefined>;
|
2966
|
+
eventId: string & z.BRAND<"UUID">;
|
2685
2967
|
annotation?: Record<string, string | number | boolean | {
|
2686
2968
|
type: string;
|
2687
2969
|
filename: string;
|
@@ -2697,6 +2979,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2697
2979
|
residentialArea?: string | null | undefined;
|
2698
2980
|
street?: string | null | undefined;
|
2699
2981
|
zipCode?: string | null | undefined;
|
2982
|
+
} | {
|
2983
|
+
firstname: string;
|
2984
|
+
surname: string;
|
2985
|
+
middlename?: string | null | undefined;
|
2700
2986
|
} | {
|
2701
2987
|
country: string;
|
2702
2988
|
district: string;
|
@@ -2719,10 +3005,14 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2719
3005
|
option: string;
|
2720
3006
|
filename: string;
|
2721
3007
|
originalFilename: string;
|
2722
|
-
}[] | [string, string] | undefined> | undefined;
|
2723
|
-
originalActionId?: string | undefined;
|
3008
|
+
}[] | [string, string] | null | undefined> | undefined;
|
3009
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
2724
3010
|
keepAssignment?: boolean | undefined;
|
2725
3011
|
}, {
|
3012
|
+
reason: {
|
3013
|
+
message: string;
|
3014
|
+
isDuplicate?: boolean | undefined;
|
3015
|
+
};
|
2726
3016
|
transactionId: string;
|
2727
3017
|
eventId: string;
|
2728
3018
|
type?: "REJECT" | undefined;
|
@@ -2741,6 +3031,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2741
3031
|
residentialArea?: string | null | undefined;
|
2742
3032
|
street?: string | null | undefined;
|
2743
3033
|
zipCode?: string | null | undefined;
|
3034
|
+
} | {
|
3035
|
+
firstname: string;
|
3036
|
+
surname: string;
|
3037
|
+
middlename?: string | null | undefined;
|
2744
3038
|
} | {
|
2745
3039
|
country: string;
|
2746
3040
|
district: string;
|
@@ -2763,7 +3057,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2763
3057
|
option: string;
|
2764
3058
|
filename: string;
|
2765
3059
|
originalFilename: string;
|
2766
|
-
}[] | [string, string] | undefined> | undefined;
|
3060
|
+
}[] | [string, string] | null | undefined> | undefined;
|
2767
3061
|
annotation?: Record<string, string | number | boolean | {
|
2768
3062
|
type: string;
|
2769
3063
|
filename: string;
|
@@ -2779,6 +3073,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2779
3073
|
residentialArea?: string | null | undefined;
|
2780
3074
|
street?: string | null | undefined;
|
2781
3075
|
zipCode?: string | null | undefined;
|
3076
|
+
} | {
|
3077
|
+
firstname: string;
|
3078
|
+
surname: string;
|
3079
|
+
middlename?: string | null | undefined;
|
2782
3080
|
} | {
|
2783
3081
|
country: string;
|
2784
3082
|
district: string;
|
@@ -2801,13 +3099,13 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2801
3099
|
option: string;
|
2802
3100
|
filename: string;
|
2803
3101
|
originalFilename: string;
|
2804
|
-
}[] | [string, string] | undefined> | undefined;
|
3102
|
+
}[] | [string, string] | null | undefined> | undefined;
|
2805
3103
|
originalActionId?: string | undefined;
|
2806
3104
|
keepAssignment?: boolean | undefined;
|
2807
3105
|
}>;
|
2808
3106
|
export type RejectDeclarationActionInput = z.infer<typeof RejectDeclarationActionInput>;
|
2809
3107
|
export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
2810
|
-
eventId: z.ZodString
|
3108
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
2811
3109
|
transactionId: z.ZodString;
|
2812
3110
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2813
3111
|
filename: z.ZodString;
|
@@ -2922,7 +3220,19 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2922
3220
|
addressLine2?: string | null | undefined;
|
2923
3221
|
addressLine3?: string | null | undefined;
|
2924
3222
|
postcodeOrZip?: string | null | undefined;
|
2925
|
-
}
|
3223
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3224
|
+
firstname: z.ZodString;
|
3225
|
+
surname: z.ZodString;
|
3226
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3227
|
+
}, "strip", z.ZodTypeAny, {
|
3228
|
+
firstname: string;
|
3229
|
+
surname: string;
|
3230
|
+
middlename?: string | null | undefined;
|
3231
|
+
}, {
|
3232
|
+
firstname: string;
|
3233
|
+
surname: string;
|
3234
|
+
middlename?: string | null | undefined;
|
3235
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2926
3236
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2927
3237
|
filename: z.ZodString;
|
2928
3238
|
originalFilename: z.ZodString;
|
@@ -3036,8 +3346,20 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3036
3346
|
addressLine2?: string | null | undefined;
|
3037
3347
|
addressLine3?: string | null | undefined;
|
3038
3348
|
postcodeOrZip?: string | null | undefined;
|
3039
|
-
}
|
3040
|
-
|
3349
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3350
|
+
firstname: z.ZodString;
|
3351
|
+
surname: z.ZodString;
|
3352
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3353
|
+
}, "strip", z.ZodTypeAny, {
|
3354
|
+
firstname: string;
|
3355
|
+
surname: string;
|
3356
|
+
middlename?: string | null | undefined;
|
3357
|
+
}, {
|
3358
|
+
firstname: string;
|
3359
|
+
surname: string;
|
3360
|
+
middlename?: string | null | undefined;
|
3361
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3362
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
3041
3363
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
3042
3364
|
}, {
|
3043
3365
|
type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
|
@@ -3059,6 +3381,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3059
3381
|
residentialArea?: string | null | undefined;
|
3060
3382
|
street?: string | null | undefined;
|
3061
3383
|
zipCode?: string | null | undefined;
|
3384
|
+
} | {
|
3385
|
+
firstname: string;
|
3386
|
+
surname: string;
|
3387
|
+
middlename?: string | null | undefined;
|
3062
3388
|
} | {
|
3063
3389
|
country: string;
|
3064
3390
|
district: string;
|
@@ -3081,8 +3407,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3081
3407
|
option: string;
|
3082
3408
|
filename: string;
|
3083
3409
|
originalFilename: string;
|
3084
|
-
}[] | [string, string] | undefined>;
|
3085
|
-
eventId: string
|
3410
|
+
}[] | [string, string] | null | undefined>;
|
3411
|
+
eventId: string & z.BRAND<"UUID">;
|
3086
3412
|
annotation?: Record<string, string | number | boolean | {
|
3087
3413
|
type: string;
|
3088
3414
|
filename: string;
|
@@ -3098,6 +3424,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3098
3424
|
residentialArea?: string | null | undefined;
|
3099
3425
|
street?: string | null | undefined;
|
3100
3426
|
zipCode?: string | null | undefined;
|
3427
|
+
} | {
|
3428
|
+
firstname: string;
|
3429
|
+
surname: string;
|
3430
|
+
middlename?: string | null | undefined;
|
3101
3431
|
} | {
|
3102
3432
|
country: string;
|
3103
3433
|
district: string;
|
@@ -3120,8 +3450,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3120
3450
|
option: string;
|
3121
3451
|
filename: string;
|
3122
3452
|
originalFilename: string;
|
3123
|
-
}[] | [string, string] | undefined> | undefined;
|
3124
|
-
originalActionId?: string | undefined;
|
3453
|
+
}[] | [string, string] | null | undefined> | undefined;
|
3454
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
3125
3455
|
keepAssignment?: boolean | undefined;
|
3126
3456
|
}, {
|
3127
3457
|
transactionId: string;
|
@@ -3142,6 +3472,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3142
3472
|
residentialArea?: string | null | undefined;
|
3143
3473
|
street?: string | null | undefined;
|
3144
3474
|
zipCode?: string | null | undefined;
|
3475
|
+
} | {
|
3476
|
+
firstname: string;
|
3477
|
+
surname: string;
|
3478
|
+
middlename?: string | null | undefined;
|
3145
3479
|
} | {
|
3146
3480
|
country: string;
|
3147
3481
|
district: string;
|
@@ -3164,7 +3498,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3164
3498
|
option: string;
|
3165
3499
|
filename: string;
|
3166
3500
|
originalFilename: string;
|
3167
|
-
}[] | [string, string] | undefined> | undefined;
|
3501
|
+
}[] | [string, string] | null | undefined> | undefined;
|
3168
3502
|
annotation?: Record<string, string | number | boolean | {
|
3169
3503
|
type: string;
|
3170
3504
|
filename: string;
|
@@ -3180,6 +3514,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3180
3514
|
residentialArea?: string | null | undefined;
|
3181
3515
|
street?: string | null | undefined;
|
3182
3516
|
zipCode?: string | null | undefined;
|
3517
|
+
} | {
|
3518
|
+
firstname: string;
|
3519
|
+
surname: string;
|
3520
|
+
middlename?: string | null | undefined;
|
3183
3521
|
} | {
|
3184
3522
|
country: string;
|
3185
3523
|
district: string;
|
@@ -3202,13 +3540,13 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3202
3540
|
option: string;
|
3203
3541
|
filename: string;
|
3204
3542
|
originalFilename: string;
|
3205
|
-
}[] | [string, string] | undefined> | undefined;
|
3543
|
+
}[] | [string, string] | null | undefined> | undefined;
|
3206
3544
|
originalActionId?: string | undefined;
|
3207
3545
|
keepAssignment?: boolean | undefined;
|
3208
3546
|
}>;
|
3209
3547
|
export type MarkedAsDuplicateActionInput = z.infer<typeof MarkedAsDuplicateActionInput>;
|
3210
3548
|
export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
3211
|
-
eventId: z.ZodString
|
3549
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
3212
3550
|
transactionId: z.ZodString;
|
3213
3551
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3214
3552
|
filename: z.ZodString;
|
@@ -3323,7 +3661,19 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3323
3661
|
addressLine2?: string | null | undefined;
|
3324
3662
|
addressLine3?: string | null | undefined;
|
3325
3663
|
postcodeOrZip?: string | null | undefined;
|
3326
|
-
}
|
3664
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3665
|
+
firstname: z.ZodString;
|
3666
|
+
surname: z.ZodString;
|
3667
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3668
|
+
}, "strip", z.ZodTypeAny, {
|
3669
|
+
firstname: string;
|
3670
|
+
surname: string;
|
3671
|
+
middlename?: string | null | undefined;
|
3672
|
+
}, {
|
3673
|
+
firstname: string;
|
3674
|
+
surname: string;
|
3675
|
+
middlename?: string | null | undefined;
|
3676
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3327
3677
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3328
3678
|
filename: z.ZodString;
|
3329
3679
|
originalFilename: z.ZodString;
|
@@ -3437,13 +3787,39 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3437
3787
|
addressLine2?: string | null | undefined;
|
3438
3788
|
addressLine3?: string | null | undefined;
|
3439
3789
|
postcodeOrZip?: string | null | undefined;
|
3440
|
-
}
|
3441
|
-
|
3790
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3791
|
+
firstname: z.ZodString;
|
3792
|
+
surname: z.ZodString;
|
3793
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3794
|
+
}, "strip", z.ZodTypeAny, {
|
3795
|
+
firstname: string;
|
3796
|
+
surname: string;
|
3797
|
+
middlename?: string | null | undefined;
|
3798
|
+
}, {
|
3799
|
+
firstname: string;
|
3800
|
+
surname: string;
|
3801
|
+
middlename?: string | null | undefined;
|
3802
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3803
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
3442
3804
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
3443
3805
|
}, {
|
3444
3806
|
type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
|
3807
|
+
reason: z.ZodObject<{
|
3808
|
+
message: z.ZodString;
|
3809
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
3810
|
+
}, "strip", z.ZodTypeAny, {
|
3811
|
+
message: string;
|
3812
|
+
isDuplicate?: boolean | undefined;
|
3813
|
+
}, {
|
3814
|
+
message: string;
|
3815
|
+
isDuplicate?: boolean | undefined;
|
3816
|
+
}>;
|
3445
3817
|
}>, "strip", z.ZodTypeAny, {
|
3446
3818
|
type: "ARCHIVE";
|
3819
|
+
reason: {
|
3820
|
+
message: string;
|
3821
|
+
isDuplicate?: boolean | undefined;
|
3822
|
+
};
|
3447
3823
|
transactionId: string;
|
3448
3824
|
declaration: Record<string, string | number | boolean | {
|
3449
3825
|
type: string;
|
@@ -3460,6 +3836,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3460
3836
|
residentialArea?: string | null | undefined;
|
3461
3837
|
street?: string | null | undefined;
|
3462
3838
|
zipCode?: string | null | undefined;
|
3839
|
+
} | {
|
3840
|
+
firstname: string;
|
3841
|
+
surname: string;
|
3842
|
+
middlename?: string | null | undefined;
|
3463
3843
|
} | {
|
3464
3844
|
country: string;
|
3465
3845
|
district: string;
|
@@ -3482,8 +3862,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3482
3862
|
option: string;
|
3483
3863
|
filename: string;
|
3484
3864
|
originalFilename: string;
|
3485
|
-
}[] | [string, string] | undefined>;
|
3486
|
-
eventId: string
|
3865
|
+
}[] | [string, string] | null | undefined>;
|
3866
|
+
eventId: string & z.BRAND<"UUID">;
|
3487
3867
|
annotation?: Record<string, string | number | boolean | {
|
3488
3868
|
type: string;
|
3489
3869
|
filename: string;
|
@@ -3499,6 +3879,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3499
3879
|
residentialArea?: string | null | undefined;
|
3500
3880
|
street?: string | null | undefined;
|
3501
3881
|
zipCode?: string | null | undefined;
|
3882
|
+
} | {
|
3883
|
+
firstname: string;
|
3884
|
+
surname: string;
|
3885
|
+
middlename?: string | null | undefined;
|
3502
3886
|
} | {
|
3503
3887
|
country: string;
|
3504
3888
|
district: string;
|
@@ -3521,10 +3905,14 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3521
3905
|
option: string;
|
3522
3906
|
filename: string;
|
3523
3907
|
originalFilename: string;
|
3524
|
-
}[] | [string, string] | undefined> | undefined;
|
3525
|
-
originalActionId?: string | undefined;
|
3908
|
+
}[] | [string, string] | null | undefined> | undefined;
|
3909
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
3526
3910
|
keepAssignment?: boolean | undefined;
|
3527
3911
|
}, {
|
3912
|
+
reason: {
|
3913
|
+
message: string;
|
3914
|
+
isDuplicate?: boolean | undefined;
|
3915
|
+
};
|
3528
3916
|
transactionId: string;
|
3529
3917
|
eventId: string;
|
3530
3918
|
type?: "ARCHIVE" | undefined;
|
@@ -3543,6 +3931,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3543
3931
|
residentialArea?: string | null | undefined;
|
3544
3932
|
street?: string | null | undefined;
|
3545
3933
|
zipCode?: string | null | undefined;
|
3934
|
+
} | {
|
3935
|
+
firstname: string;
|
3936
|
+
surname: string;
|
3937
|
+
middlename?: string | null | undefined;
|
3546
3938
|
} | {
|
3547
3939
|
country: string;
|
3548
3940
|
district: string;
|
@@ -3565,7 +3957,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3565
3957
|
option: string;
|
3566
3958
|
filename: string;
|
3567
3959
|
originalFilename: string;
|
3568
|
-
}[] | [string, string] | undefined> | undefined;
|
3960
|
+
}[] | [string, string] | null | undefined> | undefined;
|
3569
3961
|
annotation?: Record<string, string | number | boolean | {
|
3570
3962
|
type: string;
|
3571
3963
|
filename: string;
|
@@ -3581,6 +3973,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3581
3973
|
residentialArea?: string | null | undefined;
|
3582
3974
|
street?: string | null | undefined;
|
3583
3975
|
zipCode?: string | null | undefined;
|
3976
|
+
} | {
|
3977
|
+
firstname: string;
|
3978
|
+
surname: string;
|
3979
|
+
middlename?: string | null | undefined;
|
3584
3980
|
} | {
|
3585
3981
|
country: string;
|
3586
3982
|
district: string;
|
@@ -3603,13 +3999,13 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3603
3999
|
option: string;
|
3604
4000
|
filename: string;
|
3605
4001
|
originalFilename: string;
|
3606
|
-
}[] | [string, string] | undefined> | undefined;
|
4002
|
+
}[] | [string, string] | null | undefined> | undefined;
|
3607
4003
|
originalActionId?: string | undefined;
|
3608
4004
|
keepAssignment?: boolean | undefined;
|
3609
4005
|
}>;
|
3610
4006
|
export type ArchiveActionInput = z.infer<typeof ArchiveActionInput>;
|
3611
4007
|
export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
3612
|
-
eventId: z.ZodString
|
4008
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
3613
4009
|
transactionId: z.ZodString;
|
3614
4010
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3615
4011
|
filename: z.ZodString;
|
@@ -3724,7 +4120,19 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3724
4120
|
addressLine2?: string | null | undefined;
|
3725
4121
|
addressLine3?: string | null | undefined;
|
3726
4122
|
postcodeOrZip?: string | null | undefined;
|
3727
|
-
}
|
4123
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4124
|
+
firstname: z.ZodString;
|
4125
|
+
surname: z.ZodString;
|
4126
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4127
|
+
}, "strip", z.ZodTypeAny, {
|
4128
|
+
firstname: string;
|
4129
|
+
surname: string;
|
4130
|
+
middlename?: string | null | undefined;
|
4131
|
+
}, {
|
4132
|
+
firstname: string;
|
4133
|
+
surname: string;
|
4134
|
+
middlename?: string | null | undefined;
|
4135
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3728
4136
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3729
4137
|
filename: z.ZodString;
|
3730
4138
|
originalFilename: z.ZodString;
|
@@ -3838,8 +4246,20 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3838
4246
|
addressLine2?: string | null | undefined;
|
3839
4247
|
addressLine3?: string | null | undefined;
|
3840
4248
|
postcodeOrZip?: string | null | undefined;
|
3841
|
-
}
|
3842
|
-
|
4249
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4250
|
+
firstname: z.ZodString;
|
4251
|
+
surname: z.ZodString;
|
4252
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4253
|
+
}, "strip", z.ZodTypeAny, {
|
4254
|
+
firstname: string;
|
4255
|
+
surname: string;
|
4256
|
+
middlename?: string | null | undefined;
|
4257
|
+
}, {
|
4258
|
+
firstname: string;
|
4259
|
+
surname: string;
|
4260
|
+
middlename?: string | null | undefined;
|
4261
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4262
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
3843
4263
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
3844
4264
|
}, {
|
3845
4265
|
type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
|
@@ -3862,6 +4282,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3862
4282
|
residentialArea?: string | null | undefined;
|
3863
4283
|
street?: string | null | undefined;
|
3864
4284
|
zipCode?: string | null | undefined;
|
4285
|
+
} | {
|
4286
|
+
firstname: string;
|
4287
|
+
surname: string;
|
4288
|
+
middlename?: string | null | undefined;
|
3865
4289
|
} | {
|
3866
4290
|
country: string;
|
3867
4291
|
district: string;
|
@@ -3884,9 +4308,9 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3884
4308
|
option: string;
|
3885
4309
|
filename: string;
|
3886
4310
|
originalFilename: string;
|
3887
|
-
}[] | [string, string] | undefined>;
|
4311
|
+
}[] | [string, string] | null | undefined>;
|
3888
4312
|
assignedTo: string;
|
3889
|
-
eventId: string
|
4313
|
+
eventId: string & z.BRAND<"UUID">;
|
3890
4314
|
annotation?: Record<string, string | number | boolean | {
|
3891
4315
|
type: string;
|
3892
4316
|
filename: string;
|
@@ -3902,6 +4326,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3902
4326
|
residentialArea?: string | null | undefined;
|
3903
4327
|
street?: string | null | undefined;
|
3904
4328
|
zipCode?: string | null | undefined;
|
4329
|
+
} | {
|
4330
|
+
firstname: string;
|
4331
|
+
surname: string;
|
4332
|
+
middlename?: string | null | undefined;
|
3905
4333
|
} | {
|
3906
4334
|
country: string;
|
3907
4335
|
district: string;
|
@@ -3924,8 +4352,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3924
4352
|
option: string;
|
3925
4353
|
filename: string;
|
3926
4354
|
originalFilename: string;
|
3927
|
-
}[] | [string, string] | undefined> | undefined;
|
3928
|
-
originalActionId?: string | undefined;
|
4355
|
+
}[] | [string, string] | null | undefined> | undefined;
|
4356
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
3929
4357
|
keepAssignment?: boolean | undefined;
|
3930
4358
|
}, {
|
3931
4359
|
transactionId: string;
|
@@ -3947,6 +4375,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3947
4375
|
residentialArea?: string | null | undefined;
|
3948
4376
|
street?: string | null | undefined;
|
3949
4377
|
zipCode?: string | null | undefined;
|
4378
|
+
} | {
|
4379
|
+
firstname: string;
|
4380
|
+
surname: string;
|
4381
|
+
middlename?: string | null | undefined;
|
3950
4382
|
} | {
|
3951
4383
|
country: string;
|
3952
4384
|
district: string;
|
@@ -3969,7 +4401,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3969
4401
|
option: string;
|
3970
4402
|
filename: string;
|
3971
4403
|
originalFilename: string;
|
3972
|
-
}[] | [string, string] | undefined> | undefined;
|
4404
|
+
}[] | [string, string] | null | undefined> | undefined;
|
3973
4405
|
annotation?: Record<string, string | number | boolean | {
|
3974
4406
|
type: string;
|
3975
4407
|
filename: string;
|
@@ -3985,6 +4417,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3985
4417
|
residentialArea?: string | null | undefined;
|
3986
4418
|
street?: string | null | undefined;
|
3987
4419
|
zipCode?: string | null | undefined;
|
4420
|
+
} | {
|
4421
|
+
firstname: string;
|
4422
|
+
surname: string;
|
4423
|
+
middlename?: string | null | undefined;
|
3988
4424
|
} | {
|
3989
4425
|
country: string;
|
3990
4426
|
district: string;
|
@@ -4007,13 +4443,13 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4007
4443
|
option: string;
|
4008
4444
|
filename: string;
|
4009
4445
|
originalFilename: string;
|
4010
|
-
}[] | [string, string] | undefined> | undefined;
|
4446
|
+
}[] | [string, string] | null | undefined> | undefined;
|
4011
4447
|
originalActionId?: string | undefined;
|
4012
4448
|
keepAssignment?: boolean | undefined;
|
4013
4449
|
}>;
|
4014
4450
|
export type AssignActionInput = z.infer<typeof AssignActionInput>;
|
4015
4451
|
export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
4016
|
-
eventId: z.ZodString
|
4452
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
4017
4453
|
transactionId: z.ZodString;
|
4018
4454
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4019
4455
|
filename: z.ZodString;
|
@@ -4128,7 +4564,19 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4128
4564
|
addressLine2?: string | null | undefined;
|
4129
4565
|
addressLine3?: string | null | undefined;
|
4130
4566
|
postcodeOrZip?: string | null | undefined;
|
4131
|
-
}
|
4567
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4568
|
+
firstname: z.ZodString;
|
4569
|
+
surname: z.ZodString;
|
4570
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4571
|
+
}, "strip", z.ZodTypeAny, {
|
4572
|
+
firstname: string;
|
4573
|
+
surname: string;
|
4574
|
+
middlename?: string | null | undefined;
|
4575
|
+
}, {
|
4576
|
+
firstname: string;
|
4577
|
+
surname: string;
|
4578
|
+
middlename?: string | null | undefined;
|
4579
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4132
4580
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4133
4581
|
filename: z.ZodString;
|
4134
4582
|
originalFilename: z.ZodString;
|
@@ -4242,8 +4690,20 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4242
4690
|
addressLine2?: string | null | undefined;
|
4243
4691
|
addressLine3?: string | null | undefined;
|
4244
4692
|
postcodeOrZip?: string | null | undefined;
|
4245
|
-
}
|
4246
|
-
|
4693
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4694
|
+
firstname: z.ZodString;
|
4695
|
+
surname: z.ZodString;
|
4696
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4697
|
+
}, "strip", z.ZodTypeAny, {
|
4698
|
+
firstname: string;
|
4699
|
+
surname: string;
|
4700
|
+
middlename?: string | null | undefined;
|
4701
|
+
}, {
|
4702
|
+
firstname: string;
|
4703
|
+
surname: string;
|
4704
|
+
middlename?: string | null | undefined;
|
4705
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4706
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
4247
4707
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
4248
4708
|
}, {
|
4249
4709
|
type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
|
@@ -4266,6 +4726,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4266
4726
|
residentialArea?: string | null | undefined;
|
4267
4727
|
street?: string | null | undefined;
|
4268
4728
|
zipCode?: string | null | undefined;
|
4729
|
+
} | {
|
4730
|
+
firstname: string;
|
4731
|
+
surname: string;
|
4732
|
+
middlename?: string | null | undefined;
|
4269
4733
|
} | {
|
4270
4734
|
country: string;
|
4271
4735
|
district: string;
|
@@ -4288,9 +4752,9 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4288
4752
|
option: string;
|
4289
4753
|
filename: string;
|
4290
4754
|
originalFilename: string;
|
4291
|
-
}[] | [string, string] | undefined>;
|
4755
|
+
}[] | [string, string] | null | undefined>;
|
4292
4756
|
assignedTo: null;
|
4293
|
-
eventId: string
|
4757
|
+
eventId: string & z.BRAND<"UUID">;
|
4294
4758
|
annotation?: Record<string, string | number | boolean | {
|
4295
4759
|
type: string;
|
4296
4760
|
filename: string;
|
@@ -4306,6 +4770,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4306
4770
|
residentialArea?: string | null | undefined;
|
4307
4771
|
street?: string | null | undefined;
|
4308
4772
|
zipCode?: string | null | undefined;
|
4773
|
+
} | {
|
4774
|
+
firstname: string;
|
4775
|
+
surname: string;
|
4776
|
+
middlename?: string | null | undefined;
|
4309
4777
|
} | {
|
4310
4778
|
country: string;
|
4311
4779
|
district: string;
|
@@ -4328,8 +4796,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4328
4796
|
option: string;
|
4329
4797
|
filename: string;
|
4330
4798
|
originalFilename: string;
|
4331
|
-
}[] | [string, string] | undefined> | undefined;
|
4332
|
-
originalActionId?: string | undefined;
|
4799
|
+
}[] | [string, string] | null | undefined> | undefined;
|
4800
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
4333
4801
|
keepAssignment?: boolean | undefined;
|
4334
4802
|
}, {
|
4335
4803
|
transactionId: string;
|
@@ -4350,6 +4818,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4350
4818
|
residentialArea?: string | null | undefined;
|
4351
4819
|
street?: string | null | undefined;
|
4352
4820
|
zipCode?: string | null | undefined;
|
4821
|
+
} | {
|
4822
|
+
firstname: string;
|
4823
|
+
surname: string;
|
4824
|
+
middlename?: string | null | undefined;
|
4353
4825
|
} | {
|
4354
4826
|
country: string;
|
4355
4827
|
district: string;
|
@@ -4372,7 +4844,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4372
4844
|
option: string;
|
4373
4845
|
filename: string;
|
4374
4846
|
originalFilename: string;
|
4375
|
-
}[] | [string, string] | undefined> | undefined;
|
4847
|
+
}[] | [string, string] | null | undefined> | undefined;
|
4376
4848
|
annotation?: Record<string, string | number | boolean | {
|
4377
4849
|
type: string;
|
4378
4850
|
filename: string;
|
@@ -4388,6 +4860,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4388
4860
|
residentialArea?: string | null | undefined;
|
4389
4861
|
street?: string | null | undefined;
|
4390
4862
|
zipCode?: string | null | undefined;
|
4863
|
+
} | {
|
4864
|
+
firstname: string;
|
4865
|
+
surname: string;
|
4866
|
+
middlename?: string | null | undefined;
|
4391
4867
|
} | {
|
4392
4868
|
country: string;
|
4393
4869
|
district: string;
|
@@ -4410,14 +4886,14 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4410
4886
|
option: string;
|
4411
4887
|
filename: string;
|
4412
4888
|
originalFilename: string;
|
4413
|
-
}[] | [string, string] | undefined> | undefined;
|
4889
|
+
}[] | [string, string] | null | undefined> | undefined;
|
4414
4890
|
originalActionId?: string | undefined;
|
4415
4891
|
assignedTo?: null | undefined;
|
4416
4892
|
keepAssignment?: boolean | undefined;
|
4417
4893
|
}>;
|
4418
4894
|
export type UnassignActionInput = z.infer<typeof UnassignActionInput>;
|
4419
4895
|
export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
4420
|
-
eventId: z.ZodString
|
4896
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
4421
4897
|
transactionId: z.ZodString;
|
4422
4898
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4423
4899
|
filename: z.ZodString;
|
@@ -4532,7 +5008,19 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4532
5008
|
addressLine2?: string | null | undefined;
|
4533
5009
|
addressLine3?: string | null | undefined;
|
4534
5010
|
postcodeOrZip?: string | null | undefined;
|
4535
|
-
}
|
5011
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5012
|
+
firstname: z.ZodString;
|
5013
|
+
surname: z.ZodString;
|
5014
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5015
|
+
}, "strip", z.ZodTypeAny, {
|
5016
|
+
firstname: string;
|
5017
|
+
surname: string;
|
5018
|
+
middlename?: string | null | undefined;
|
5019
|
+
}, {
|
5020
|
+
firstname: string;
|
5021
|
+
surname: string;
|
5022
|
+
middlename?: string | null | undefined;
|
5023
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4536
5024
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4537
5025
|
filename: z.ZodString;
|
4538
5026
|
originalFilename: z.ZodString;
|
@@ -4646,8 +5134,20 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4646
5134
|
addressLine2?: string | null | undefined;
|
4647
5135
|
addressLine3?: string | null | undefined;
|
4648
5136
|
postcodeOrZip?: string | null | undefined;
|
4649
|
-
}
|
4650
|
-
|
5137
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5138
|
+
firstname: z.ZodString;
|
5139
|
+
surname: z.ZodString;
|
5140
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5141
|
+
}, "strip", z.ZodTypeAny, {
|
5142
|
+
firstname: string;
|
5143
|
+
surname: string;
|
5144
|
+
middlename?: string | null | undefined;
|
5145
|
+
}, {
|
5146
|
+
firstname: string;
|
5147
|
+
surname: string;
|
5148
|
+
middlename?: string | null | undefined;
|
5149
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5150
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
4651
5151
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
4652
5152
|
}, {
|
4653
5153
|
type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
|
@@ -4669,6 +5169,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4669
5169
|
residentialArea?: string | null | undefined;
|
4670
5170
|
street?: string | null | undefined;
|
4671
5171
|
zipCode?: string | null | undefined;
|
5172
|
+
} | {
|
5173
|
+
firstname: string;
|
5174
|
+
surname: string;
|
5175
|
+
middlename?: string | null | undefined;
|
4672
5176
|
} | {
|
4673
5177
|
country: string;
|
4674
5178
|
district: string;
|
@@ -4691,8 +5195,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4691
5195
|
option: string;
|
4692
5196
|
filename: string;
|
4693
5197
|
originalFilename: string;
|
4694
|
-
}[] | [string, string] | undefined>;
|
4695
|
-
eventId: string
|
5198
|
+
}[] | [string, string] | null | undefined>;
|
5199
|
+
eventId: string & z.BRAND<"UUID">;
|
4696
5200
|
annotation?: Record<string, string | number | boolean | {
|
4697
5201
|
type: string;
|
4698
5202
|
filename: string;
|
@@ -4708,6 +5212,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4708
5212
|
residentialArea?: string | null | undefined;
|
4709
5213
|
street?: string | null | undefined;
|
4710
5214
|
zipCode?: string | null | undefined;
|
5215
|
+
} | {
|
5216
|
+
firstname: string;
|
5217
|
+
surname: string;
|
5218
|
+
middlename?: string | null | undefined;
|
4711
5219
|
} | {
|
4712
5220
|
country: string;
|
4713
5221
|
district: string;
|
@@ -4730,8 +5238,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4730
5238
|
option: string;
|
4731
5239
|
filename: string;
|
4732
5240
|
originalFilename: string;
|
4733
|
-
}[] | [string, string] | undefined> | undefined;
|
4734
|
-
originalActionId?: string | undefined;
|
5241
|
+
}[] | [string, string] | null | undefined> | undefined;
|
5242
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
4735
5243
|
keepAssignment?: boolean | undefined;
|
4736
5244
|
}, {
|
4737
5245
|
transactionId: string;
|
@@ -4752,6 +5260,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4752
5260
|
residentialArea?: string | null | undefined;
|
4753
5261
|
street?: string | null | undefined;
|
4754
5262
|
zipCode?: string | null | undefined;
|
5263
|
+
} | {
|
5264
|
+
firstname: string;
|
5265
|
+
surname: string;
|
5266
|
+
middlename?: string | null | undefined;
|
4755
5267
|
} | {
|
4756
5268
|
country: string;
|
4757
5269
|
district: string;
|
@@ -4774,7 +5286,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4774
5286
|
option: string;
|
4775
5287
|
filename: string;
|
4776
5288
|
originalFilename: string;
|
4777
|
-
}[] | [string, string] | undefined> | undefined;
|
5289
|
+
}[] | [string, string] | null | undefined> | undefined;
|
4778
5290
|
annotation?: Record<string, string | number | boolean | {
|
4779
5291
|
type: string;
|
4780
5292
|
filename: string;
|
@@ -4790,6 +5302,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4790
5302
|
residentialArea?: string | null | undefined;
|
4791
5303
|
street?: string | null | undefined;
|
4792
5304
|
zipCode?: string | null | undefined;
|
5305
|
+
} | {
|
5306
|
+
firstname: string;
|
5307
|
+
surname: string;
|
5308
|
+
middlename?: string | null | undefined;
|
4793
5309
|
} | {
|
4794
5310
|
country: string;
|
4795
5311
|
district: string;
|
@@ -4812,13 +5328,13 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4812
5328
|
option: string;
|
4813
5329
|
filename: string;
|
4814
5330
|
originalFilename: string;
|
4815
|
-
}[] | [string, string] | undefined> | undefined;
|
5331
|
+
}[] | [string, string] | null | undefined> | undefined;
|
4816
5332
|
originalActionId?: string | undefined;
|
4817
5333
|
keepAssignment?: boolean | undefined;
|
4818
5334
|
}>;
|
4819
5335
|
export type RequestCorrectionActionInput = z.infer<typeof RequestCorrectionActionInput>;
|
4820
5336
|
export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
4821
|
-
eventId: z.ZodString
|
5337
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
4822
5338
|
transactionId: z.ZodString;
|
4823
5339
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4824
5340
|
filename: z.ZodString;
|
@@ -4933,7 +5449,19 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
4933
5449
|
addressLine2?: string | null | undefined;
|
4934
5450
|
addressLine3?: string | null | undefined;
|
4935
5451
|
postcodeOrZip?: string | null | undefined;
|
4936
|
-
}
|
5452
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5453
|
+
firstname: z.ZodString;
|
5454
|
+
surname: z.ZodString;
|
5455
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5456
|
+
}, "strip", z.ZodTypeAny, {
|
5457
|
+
firstname: string;
|
5458
|
+
surname: string;
|
5459
|
+
middlename?: string | null | undefined;
|
5460
|
+
}, {
|
5461
|
+
firstname: string;
|
5462
|
+
surname: string;
|
5463
|
+
middlename?: string | null | undefined;
|
5464
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4937
5465
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4938
5466
|
filename: z.ZodString;
|
4939
5467
|
originalFilename: z.ZodString;
|
@@ -5047,8 +5575,20 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5047
5575
|
addressLine2?: string | null | undefined;
|
5048
5576
|
addressLine3?: string | null | undefined;
|
5049
5577
|
postcodeOrZip?: string | null | undefined;
|
5050
|
-
}
|
5051
|
-
|
5578
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5579
|
+
firstname: z.ZodString;
|
5580
|
+
surname: z.ZodString;
|
5581
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5582
|
+
}, "strip", z.ZodTypeAny, {
|
5583
|
+
firstname: string;
|
5584
|
+
surname: string;
|
5585
|
+
middlename?: string | null | undefined;
|
5586
|
+
}, {
|
5587
|
+
firstname: string;
|
5588
|
+
surname: string;
|
5589
|
+
middlename?: string | null | undefined;
|
5590
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5591
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5052
5592
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5053
5593
|
}, {
|
5054
5594
|
requestId: z.ZodString;
|
@@ -5071,6 +5611,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5071
5611
|
residentialArea?: string | null | undefined;
|
5072
5612
|
street?: string | null | undefined;
|
5073
5613
|
zipCode?: string | null | undefined;
|
5614
|
+
} | {
|
5615
|
+
firstname: string;
|
5616
|
+
surname: string;
|
5617
|
+
middlename?: string | null | undefined;
|
5074
5618
|
} | {
|
5075
5619
|
country: string;
|
5076
5620
|
district: string;
|
@@ -5093,9 +5637,9 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5093
5637
|
option: string;
|
5094
5638
|
filename: string;
|
5095
5639
|
originalFilename: string;
|
5096
|
-
}[] | [string, string] | undefined>;
|
5640
|
+
}[] | [string, string] | null | undefined>;
|
5097
5641
|
requestId: string;
|
5098
|
-
eventId: string
|
5642
|
+
eventId: string & z.BRAND<"UUID">;
|
5099
5643
|
annotation?: Record<string, string | number | boolean | {
|
5100
5644
|
type: string;
|
5101
5645
|
filename: string;
|
@@ -5111,6 +5655,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5111
5655
|
residentialArea?: string | null | undefined;
|
5112
5656
|
street?: string | null | undefined;
|
5113
5657
|
zipCode?: string | null | undefined;
|
5658
|
+
} | {
|
5659
|
+
firstname: string;
|
5660
|
+
surname: string;
|
5661
|
+
middlename?: string | null | undefined;
|
5114
5662
|
} | {
|
5115
5663
|
country: string;
|
5116
5664
|
district: string;
|
@@ -5133,8 +5681,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5133
5681
|
option: string;
|
5134
5682
|
filename: string;
|
5135
5683
|
originalFilename: string;
|
5136
|
-
}[] | [string, string] | undefined> | undefined;
|
5137
|
-
originalActionId?: string | undefined;
|
5684
|
+
}[] | [string, string] | null | undefined> | undefined;
|
5685
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
5138
5686
|
keepAssignment?: boolean | undefined;
|
5139
5687
|
}, {
|
5140
5688
|
transactionId: string;
|
@@ -5156,6 +5704,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5156
5704
|
residentialArea?: string | null | undefined;
|
5157
5705
|
street?: string | null | undefined;
|
5158
5706
|
zipCode?: string | null | undefined;
|
5707
|
+
} | {
|
5708
|
+
firstname: string;
|
5709
|
+
surname: string;
|
5710
|
+
middlename?: string | null | undefined;
|
5159
5711
|
} | {
|
5160
5712
|
country: string;
|
5161
5713
|
district: string;
|
@@ -5178,7 +5730,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5178
5730
|
option: string;
|
5179
5731
|
filename: string;
|
5180
5732
|
originalFilename: string;
|
5181
|
-
}[] | [string, string] | undefined> | undefined;
|
5733
|
+
}[] | [string, string] | null | undefined> | undefined;
|
5182
5734
|
annotation?: Record<string, string | number | boolean | {
|
5183
5735
|
type: string;
|
5184
5736
|
filename: string;
|
@@ -5194,6 +5746,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5194
5746
|
residentialArea?: string | null | undefined;
|
5195
5747
|
street?: string | null | undefined;
|
5196
5748
|
zipCode?: string | null | undefined;
|
5749
|
+
} | {
|
5750
|
+
firstname: string;
|
5751
|
+
surname: string;
|
5752
|
+
middlename?: string | null | undefined;
|
5197
5753
|
} | {
|
5198
5754
|
country: string;
|
5199
5755
|
district: string;
|
@@ -5216,13 +5772,13 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5216
5772
|
option: string;
|
5217
5773
|
filename: string;
|
5218
5774
|
originalFilename: string;
|
5219
|
-
}[] | [string, string] | undefined> | undefined;
|
5775
|
+
}[] | [string, string] | null | undefined> | undefined;
|
5220
5776
|
originalActionId?: string | undefined;
|
5221
5777
|
keepAssignment?: boolean | undefined;
|
5222
5778
|
}>;
|
5223
5779
|
export type RejectCorrectionActionInput = z.infer<typeof RejectCorrectionActionInput>;
|
5224
5780
|
export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
5225
|
-
eventId: z.ZodString
|
5781
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
5226
5782
|
transactionId: z.ZodString;
|
5227
5783
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5228
5784
|
filename: z.ZodString;
|
@@ -5337,7 +5893,19 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5337
5893
|
addressLine2?: string | null | undefined;
|
5338
5894
|
addressLine3?: string | null | undefined;
|
5339
5895
|
postcodeOrZip?: string | null | undefined;
|
5340
|
-
}
|
5896
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5897
|
+
firstname: z.ZodString;
|
5898
|
+
surname: z.ZodString;
|
5899
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5900
|
+
}, "strip", z.ZodTypeAny, {
|
5901
|
+
firstname: string;
|
5902
|
+
surname: string;
|
5903
|
+
middlename?: string | null | undefined;
|
5904
|
+
}, {
|
5905
|
+
firstname: string;
|
5906
|
+
surname: string;
|
5907
|
+
middlename?: string | null | undefined;
|
5908
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5341
5909
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5342
5910
|
filename: z.ZodString;
|
5343
5911
|
originalFilename: z.ZodString;
|
@@ -5451,8 +6019,20 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5451
6019
|
addressLine2?: string | null | undefined;
|
5452
6020
|
addressLine3?: string | null | undefined;
|
5453
6021
|
postcodeOrZip?: string | null | undefined;
|
5454
|
-
}
|
5455
|
-
|
6022
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6023
|
+
firstname: z.ZodString;
|
6024
|
+
surname: z.ZodString;
|
6025
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6026
|
+
}, "strip", z.ZodTypeAny, {
|
6027
|
+
firstname: string;
|
6028
|
+
surname: string;
|
6029
|
+
middlename?: string | null | undefined;
|
6030
|
+
}, {
|
6031
|
+
firstname: string;
|
6032
|
+
surname: string;
|
6033
|
+
middlename?: string | null | undefined;
|
6034
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6035
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5456
6036
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5457
6037
|
}, {
|
5458
6038
|
requestId: z.ZodString;
|
@@ -5475,6 +6055,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5475
6055
|
residentialArea?: string | null | undefined;
|
5476
6056
|
street?: string | null | undefined;
|
5477
6057
|
zipCode?: string | null | undefined;
|
6058
|
+
} | {
|
6059
|
+
firstname: string;
|
6060
|
+
surname: string;
|
6061
|
+
middlename?: string | null | undefined;
|
5478
6062
|
} | {
|
5479
6063
|
country: string;
|
5480
6064
|
district: string;
|
@@ -5497,9 +6081,9 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5497
6081
|
option: string;
|
5498
6082
|
filename: string;
|
5499
6083
|
originalFilename: string;
|
5500
|
-
}[] | [string, string] | undefined>;
|
6084
|
+
}[] | [string, string] | null | undefined>;
|
5501
6085
|
requestId: string;
|
5502
|
-
eventId: string
|
6086
|
+
eventId: string & z.BRAND<"UUID">;
|
5503
6087
|
annotation?: Record<string, string | number | boolean | {
|
5504
6088
|
type: string;
|
5505
6089
|
filename: string;
|
@@ -5515,6 +6099,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5515
6099
|
residentialArea?: string | null | undefined;
|
5516
6100
|
street?: string | null | undefined;
|
5517
6101
|
zipCode?: string | null | undefined;
|
6102
|
+
} | {
|
6103
|
+
firstname: string;
|
6104
|
+
surname: string;
|
6105
|
+
middlename?: string | null | undefined;
|
5518
6106
|
} | {
|
5519
6107
|
country: string;
|
5520
6108
|
district: string;
|
@@ -5537,8 +6125,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5537
6125
|
option: string;
|
5538
6126
|
filename: string;
|
5539
6127
|
originalFilename: string;
|
5540
|
-
}[] | [string, string] | undefined> | undefined;
|
5541
|
-
originalActionId?: string | undefined;
|
6128
|
+
}[] | [string, string] | null | undefined> | undefined;
|
6129
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
5542
6130
|
keepAssignment?: boolean | undefined;
|
5543
6131
|
}, {
|
5544
6132
|
transactionId: string;
|
@@ -5560,6 +6148,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5560
6148
|
residentialArea?: string | null | undefined;
|
5561
6149
|
street?: string | null | undefined;
|
5562
6150
|
zipCode?: string | null | undefined;
|
6151
|
+
} | {
|
6152
|
+
firstname: string;
|
6153
|
+
surname: string;
|
6154
|
+
middlename?: string | null | undefined;
|
5563
6155
|
} | {
|
5564
6156
|
country: string;
|
5565
6157
|
district: string;
|
@@ -5582,7 +6174,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5582
6174
|
option: string;
|
5583
6175
|
filename: string;
|
5584
6176
|
originalFilename: string;
|
5585
|
-
}[] | [string, string] | undefined> | undefined;
|
6177
|
+
}[] | [string, string] | null | undefined> | undefined;
|
5586
6178
|
annotation?: Record<string, string | number | boolean | {
|
5587
6179
|
type: string;
|
5588
6180
|
filename: string;
|
@@ -5598,6 +6190,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5598
6190
|
residentialArea?: string | null | undefined;
|
5599
6191
|
street?: string | null | undefined;
|
5600
6192
|
zipCode?: string | null | undefined;
|
6193
|
+
} | {
|
6194
|
+
firstname: string;
|
6195
|
+
surname: string;
|
6196
|
+
middlename?: string | null | undefined;
|
5601
6197
|
} | {
|
5602
6198
|
country: string;
|
5603
6199
|
district: string;
|
@@ -5620,13 +6216,13 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5620
6216
|
option: string;
|
5621
6217
|
filename: string;
|
5622
6218
|
originalFilename: string;
|
5623
|
-
}[] | [string, string] | undefined> | undefined;
|
6219
|
+
}[] | [string, string] | null | undefined> | undefined;
|
5624
6220
|
originalActionId?: string | undefined;
|
5625
6221
|
keepAssignment?: boolean | undefined;
|
5626
6222
|
}>;
|
5627
6223
|
export type ApproveCorrectionActionInput = z.infer<typeof ApproveCorrectionActionInput>;
|
5628
6224
|
export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
5629
|
-
eventId: z.ZodString
|
6225
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
5630
6226
|
transactionId: z.ZodString;
|
5631
6227
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5632
6228
|
filename: z.ZodString;
|
@@ -5741,7 +6337,19 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5741
6337
|
addressLine2?: string | null | undefined;
|
5742
6338
|
addressLine3?: string | null | undefined;
|
5743
6339
|
postcodeOrZip?: string | null | undefined;
|
5744
|
-
}
|
6340
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6341
|
+
firstname: z.ZodString;
|
6342
|
+
surname: z.ZodString;
|
6343
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6344
|
+
}, "strip", z.ZodTypeAny, {
|
6345
|
+
firstname: string;
|
6346
|
+
surname: string;
|
6347
|
+
middlename?: string | null | undefined;
|
6348
|
+
}, {
|
6349
|
+
firstname: string;
|
6350
|
+
surname: string;
|
6351
|
+
middlename?: string | null | undefined;
|
6352
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5745
6353
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5746
6354
|
filename: z.ZodString;
|
5747
6355
|
originalFilename: z.ZodString;
|
@@ -5855,8 +6463,20 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5855
6463
|
addressLine2?: string | null | undefined;
|
5856
6464
|
addressLine3?: string | null | undefined;
|
5857
6465
|
postcodeOrZip?: string | null | undefined;
|
5858
|
-
}
|
5859
|
-
|
6466
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6467
|
+
firstname: z.ZodString;
|
6468
|
+
surname: z.ZodString;
|
6469
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6470
|
+
}, "strip", z.ZodTypeAny, {
|
6471
|
+
firstname: string;
|
6472
|
+
surname: string;
|
6473
|
+
middlename?: string | null | undefined;
|
6474
|
+
}, {
|
6475
|
+
firstname: string;
|
6476
|
+
surname: string;
|
6477
|
+
middlename?: string | null | undefined;
|
6478
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6479
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5860
6480
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5861
6481
|
}, {
|
5862
6482
|
type: z.ZodDefault<z.ZodLiteral<"READ">>;
|
@@ -5878,6 +6498,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5878
6498
|
residentialArea?: string | null | undefined;
|
5879
6499
|
street?: string | null | undefined;
|
5880
6500
|
zipCode?: string | null | undefined;
|
6501
|
+
} | {
|
6502
|
+
firstname: string;
|
6503
|
+
surname: string;
|
6504
|
+
middlename?: string | null | undefined;
|
5881
6505
|
} | {
|
5882
6506
|
country: string;
|
5883
6507
|
district: string;
|
@@ -5900,8 +6524,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5900
6524
|
option: string;
|
5901
6525
|
filename: string;
|
5902
6526
|
originalFilename: string;
|
5903
|
-
}[] | [string, string] | undefined>;
|
5904
|
-
eventId: string
|
6527
|
+
}[] | [string, string] | null | undefined>;
|
6528
|
+
eventId: string & z.BRAND<"UUID">;
|
5905
6529
|
annotation?: Record<string, string | number | boolean | {
|
5906
6530
|
type: string;
|
5907
6531
|
filename: string;
|
@@ -5917,6 +6541,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5917
6541
|
residentialArea?: string | null | undefined;
|
5918
6542
|
street?: string | null | undefined;
|
5919
6543
|
zipCode?: string | null | undefined;
|
6544
|
+
} | {
|
6545
|
+
firstname: string;
|
6546
|
+
surname: string;
|
6547
|
+
middlename?: string | null | undefined;
|
5920
6548
|
} | {
|
5921
6549
|
country: string;
|
5922
6550
|
district: string;
|
@@ -5939,8 +6567,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5939
6567
|
option: string;
|
5940
6568
|
filename: string;
|
5941
6569
|
originalFilename: string;
|
5942
|
-
}[] | [string, string] | undefined> | undefined;
|
5943
|
-
originalActionId?: string | undefined;
|
6570
|
+
}[] | [string, string] | null | undefined> | undefined;
|
6571
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
5944
6572
|
keepAssignment?: boolean | undefined;
|
5945
6573
|
}, {
|
5946
6574
|
transactionId: string;
|
@@ -5961,6 +6589,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5961
6589
|
residentialArea?: string | null | undefined;
|
5962
6590
|
street?: string | null | undefined;
|
5963
6591
|
zipCode?: string | null | undefined;
|
6592
|
+
} | {
|
6593
|
+
firstname: string;
|
6594
|
+
surname: string;
|
6595
|
+
middlename?: string | null | undefined;
|
5964
6596
|
} | {
|
5965
6597
|
country: string;
|
5966
6598
|
district: string;
|
@@ -5983,7 +6615,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5983
6615
|
option: string;
|
5984
6616
|
filename: string;
|
5985
6617
|
originalFilename: string;
|
5986
|
-
}[] | [string, string] | undefined> | undefined;
|
6618
|
+
}[] | [string, string] | null | undefined> | undefined;
|
5987
6619
|
annotation?: Record<string, string | number | boolean | {
|
5988
6620
|
type: string;
|
5989
6621
|
filename: string;
|
@@ -5999,6 +6631,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5999
6631
|
residentialArea?: string | null | undefined;
|
6000
6632
|
street?: string | null | undefined;
|
6001
6633
|
zipCode?: string | null | undefined;
|
6634
|
+
} | {
|
6635
|
+
firstname: string;
|
6636
|
+
surname: string;
|
6637
|
+
middlename?: string | null | undefined;
|
6002
6638
|
} | {
|
6003
6639
|
country: string;
|
6004
6640
|
district: string;
|
@@ -6021,15 +6657,15 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6021
6657
|
option: string;
|
6022
6658
|
filename: string;
|
6023
6659
|
originalFilename: string;
|
6024
|
-
}[] | [string, string] | undefined> | undefined;
|
6660
|
+
}[] | [string, string] | null | undefined> | undefined;
|
6025
6661
|
originalActionId?: string | undefined;
|
6026
6662
|
keepAssignment?: boolean | undefined;
|
6027
6663
|
}>;
|
6028
6664
|
export type ReadActionInput = z.infer<typeof ReadActionInput>;
|
6029
6665
|
export declare const DeleteActionInput: z.ZodObject<{
|
6030
|
-
eventId: z.ZodString
|
6666
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
6031
6667
|
}, "strip", z.ZodTypeAny, {
|
6032
|
-
eventId: string
|
6668
|
+
eventId: string & z.BRAND<"UUID">;
|
6033
6669
|
}, {
|
6034
6670
|
eventId: string;
|
6035
6671
|
}>;
|
@@ -6043,7 +6679,7 @@ export type DeleteActionInput = z.infer<typeof DeleteActionInput>;
|
|
6043
6679
|
* e.g. mutation.declare({createdAt: new Date()}) vs mutation.declare({createdAt: new Date(), type: 'DECLARE'})
|
6044
6680
|
*/
|
6045
6681
|
export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
6046
|
-
eventId: z.ZodString
|
6682
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
6047
6683
|
transactionId: z.ZodString;
|
6048
6684
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6049
6685
|
filename: z.ZodString;
|
@@ -6158,7 +6794,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6158
6794
|
addressLine2?: string | null | undefined;
|
6159
6795
|
addressLine3?: string | null | undefined;
|
6160
6796
|
postcodeOrZip?: string | null | undefined;
|
6161
|
-
}
|
6797
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6798
|
+
firstname: z.ZodString;
|
6799
|
+
surname: z.ZodString;
|
6800
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6801
|
+
}, "strip", z.ZodTypeAny, {
|
6802
|
+
firstname: string;
|
6803
|
+
surname: string;
|
6804
|
+
middlename?: string | null | undefined;
|
6805
|
+
}, {
|
6806
|
+
firstname: string;
|
6807
|
+
surname: string;
|
6808
|
+
middlename?: string | null | undefined;
|
6809
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6162
6810
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6163
6811
|
filename: z.ZodString;
|
6164
6812
|
originalFilename: z.ZodString;
|
@@ -6272,12 +6920,24 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6272
6920
|
addressLine2?: string | null | undefined;
|
6273
6921
|
addressLine3?: string | null | undefined;
|
6274
6922
|
postcodeOrZip?: string | null | undefined;
|
6275
|
-
}
|
6276
|
-
|
6923
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6924
|
+
firstname: z.ZodString;
|
6925
|
+
surname: z.ZodString;
|
6926
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6927
|
+
}, "strip", z.ZodTypeAny, {
|
6928
|
+
firstname: string;
|
6929
|
+
surname: string;
|
6930
|
+
middlename?: string | null | undefined;
|
6931
|
+
}, {
|
6932
|
+
firstname: string;
|
6933
|
+
surname: string;
|
6934
|
+
middlename?: string | null | undefined;
|
6935
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6936
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
6277
6937
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
6278
6938
|
}, {
|
6279
6939
|
type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
|
6280
|
-
createdAtLocation: z.ZodString
|
6940
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
|
6281
6941
|
}>, "strip", z.ZodTypeAny, {
|
6282
6942
|
type: "CREATE";
|
6283
6943
|
transactionId: string;
|
@@ -6296,6 +6956,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6296
6956
|
residentialArea?: string | null | undefined;
|
6297
6957
|
street?: string | null | undefined;
|
6298
6958
|
zipCode?: string | null | undefined;
|
6959
|
+
} | {
|
6960
|
+
firstname: string;
|
6961
|
+
surname: string;
|
6962
|
+
middlename?: string | null | undefined;
|
6299
6963
|
} | {
|
6300
6964
|
country: string;
|
6301
6965
|
district: string;
|
@@ -6318,9 +6982,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6318
6982
|
option: string;
|
6319
6983
|
filename: string;
|
6320
6984
|
originalFilename: string;
|
6321
|
-
}[] | [string, string] | undefined>;
|
6322
|
-
|
6323
|
-
|
6985
|
+
}[] | [string, string] | null | undefined>;
|
6986
|
+
eventId: string & z.BRAND<"UUID">;
|
6987
|
+
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
6324
6988
|
annotation?: Record<string, string | number | boolean | {
|
6325
6989
|
type: string;
|
6326
6990
|
filename: string;
|
@@ -6336,6 +7000,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6336
7000
|
residentialArea?: string | null | undefined;
|
6337
7001
|
street?: string | null | undefined;
|
6338
7002
|
zipCode?: string | null | undefined;
|
7003
|
+
} | {
|
7004
|
+
firstname: string;
|
7005
|
+
surname: string;
|
7006
|
+
middlename?: string | null | undefined;
|
6339
7007
|
} | {
|
6340
7008
|
country: string;
|
6341
7009
|
district: string;
|
@@ -6358,14 +7026,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6358
7026
|
option: string;
|
6359
7027
|
filename: string;
|
6360
7028
|
originalFilename: string;
|
6361
|
-
}[] | [string, string] | undefined> | undefined;
|
6362
|
-
originalActionId?: string | undefined;
|
7029
|
+
}[] | [string, string] | null | undefined> | undefined;
|
7030
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
6363
7031
|
keepAssignment?: boolean | undefined;
|
6364
7032
|
}, {
|
6365
7033
|
transactionId: string;
|
6366
|
-
createdAtLocation: string;
|
6367
7034
|
eventId: string;
|
6368
7035
|
type?: "CREATE" | undefined;
|
7036
|
+
createdAtLocation?: string | null | undefined;
|
6369
7037
|
declaration?: Record<string, string | number | boolean | {
|
6370
7038
|
type: string;
|
6371
7039
|
filename: string;
|
@@ -6381,6 +7049,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6381
7049
|
residentialArea?: string | null | undefined;
|
6382
7050
|
street?: string | null | undefined;
|
6383
7051
|
zipCode?: string | null | undefined;
|
7052
|
+
} | {
|
7053
|
+
firstname: string;
|
7054
|
+
surname: string;
|
7055
|
+
middlename?: string | null | undefined;
|
6384
7056
|
} | {
|
6385
7057
|
country: string;
|
6386
7058
|
district: string;
|
@@ -6403,7 +7075,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6403
7075
|
option: string;
|
6404
7076
|
filename: string;
|
6405
7077
|
originalFilename: string;
|
6406
|
-
}[] | [string, string] | undefined> | undefined;
|
7078
|
+
}[] | [string, string] | null | undefined> | undefined;
|
6407
7079
|
annotation?: Record<string, string | number | boolean | {
|
6408
7080
|
type: string;
|
6409
7081
|
filename: string;
|
@@ -6419,6 +7091,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6419
7091
|
residentialArea?: string | null | undefined;
|
6420
7092
|
street?: string | null | undefined;
|
6421
7093
|
zipCode?: string | null | undefined;
|
7094
|
+
} | {
|
7095
|
+
firstname: string;
|
7096
|
+
surname: string;
|
7097
|
+
middlename?: string | null | undefined;
|
6422
7098
|
} | {
|
6423
7099
|
country: string;
|
6424
7100
|
district: string;
|
@@ -6441,11 +7117,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6441
7117
|
option: string;
|
6442
7118
|
filename: string;
|
6443
7119
|
originalFilename: string;
|
6444
|
-
}[] | [string, string] | undefined> | undefined;
|
7120
|
+
}[] | [string, string] | null | undefined> | undefined;
|
6445
7121
|
originalActionId?: string | undefined;
|
6446
7122
|
keepAssignment?: boolean | undefined;
|
6447
7123
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6448
|
-
eventId: z.ZodString
|
7124
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
6449
7125
|
transactionId: z.ZodString;
|
6450
7126
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6451
7127
|
filename: z.ZodString;
|
@@ -6560,7 +7236,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6560
7236
|
addressLine2?: string | null | undefined;
|
6561
7237
|
addressLine3?: string | null | undefined;
|
6562
7238
|
postcodeOrZip?: string | null | undefined;
|
6563
|
-
}
|
7239
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7240
|
+
firstname: z.ZodString;
|
7241
|
+
surname: z.ZodString;
|
7242
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7243
|
+
}, "strip", z.ZodTypeAny, {
|
7244
|
+
firstname: string;
|
7245
|
+
surname: string;
|
7246
|
+
middlename?: string | null | undefined;
|
7247
|
+
}, {
|
7248
|
+
firstname: string;
|
7249
|
+
surname: string;
|
7250
|
+
middlename?: string | null | undefined;
|
7251
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6564
7252
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6565
7253
|
filename: z.ZodString;
|
6566
7254
|
originalFilename: z.ZodString;
|
@@ -6674,8 +7362,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6674
7362
|
addressLine2?: string | null | undefined;
|
6675
7363
|
addressLine3?: string | null | undefined;
|
6676
7364
|
postcodeOrZip?: string | null | undefined;
|
6677
|
-
}
|
6678
|
-
|
7365
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7366
|
+
firstname: z.ZodString;
|
7367
|
+
surname: z.ZodString;
|
7368
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7369
|
+
}, "strip", z.ZodTypeAny, {
|
7370
|
+
firstname: string;
|
7371
|
+
surname: string;
|
7372
|
+
middlename?: string | null | undefined;
|
7373
|
+
}, {
|
7374
|
+
firstname: string;
|
7375
|
+
surname: string;
|
7376
|
+
middlename?: string | null | undefined;
|
7377
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7378
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
6679
7379
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
6680
7380
|
}, {
|
6681
7381
|
type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
|
@@ -6698,6 +7398,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6698
7398
|
residentialArea?: string | null | undefined;
|
6699
7399
|
street?: string | null | undefined;
|
6700
7400
|
zipCode?: string | null | undefined;
|
7401
|
+
} | {
|
7402
|
+
firstname: string;
|
7403
|
+
surname: string;
|
7404
|
+
middlename?: string | null | undefined;
|
6701
7405
|
} | {
|
6702
7406
|
country: string;
|
6703
7407
|
district: string;
|
@@ -6720,8 +7424,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6720
7424
|
option: string;
|
6721
7425
|
filename: string;
|
6722
7426
|
originalFilename: string;
|
6723
|
-
}[] | [string, string] | undefined>;
|
6724
|
-
eventId: string
|
7427
|
+
}[] | [string, string] | null | undefined>;
|
7428
|
+
eventId: string & z.BRAND<"UUID">;
|
6725
7429
|
duplicates: string[];
|
6726
7430
|
annotation?: Record<string, string | number | boolean | {
|
6727
7431
|
type: string;
|
@@ -6738,6 +7442,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6738
7442
|
residentialArea?: string | null | undefined;
|
6739
7443
|
street?: string | null | undefined;
|
6740
7444
|
zipCode?: string | null | undefined;
|
7445
|
+
} | {
|
7446
|
+
firstname: string;
|
7447
|
+
surname: string;
|
7448
|
+
middlename?: string | null | undefined;
|
6741
7449
|
} | {
|
6742
7450
|
country: string;
|
6743
7451
|
district: string;
|
@@ -6760,8 +7468,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6760
7468
|
option: string;
|
6761
7469
|
filename: string;
|
6762
7470
|
originalFilename: string;
|
6763
|
-
}[] | [string, string] | undefined> | undefined;
|
6764
|
-
originalActionId?: string | undefined;
|
7471
|
+
}[] | [string, string] | null | undefined> | undefined;
|
7472
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
6765
7473
|
keepAssignment?: boolean | undefined;
|
6766
7474
|
}, {
|
6767
7475
|
transactionId: string;
|
@@ -6783,6 +7491,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6783
7491
|
residentialArea?: string | null | undefined;
|
6784
7492
|
street?: string | null | undefined;
|
6785
7493
|
zipCode?: string | null | undefined;
|
7494
|
+
} | {
|
7495
|
+
firstname: string;
|
7496
|
+
surname: string;
|
7497
|
+
middlename?: string | null | undefined;
|
6786
7498
|
} | {
|
6787
7499
|
country: string;
|
6788
7500
|
district: string;
|
@@ -6805,7 +7517,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6805
7517
|
option: string;
|
6806
7518
|
filename: string;
|
6807
7519
|
originalFilename: string;
|
6808
|
-
}[] | [string, string] | undefined> | undefined;
|
7520
|
+
}[] | [string, string] | null | undefined> | undefined;
|
6809
7521
|
annotation?: Record<string, string | number | boolean | {
|
6810
7522
|
type: string;
|
6811
7523
|
filename: string;
|
@@ -6821,6 +7533,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6821
7533
|
residentialArea?: string | null | undefined;
|
6822
7534
|
street?: string | null | undefined;
|
6823
7535
|
zipCode?: string | null | undefined;
|
7536
|
+
} | {
|
7537
|
+
firstname: string;
|
7538
|
+
surname: string;
|
7539
|
+
middlename?: string | null | undefined;
|
6824
7540
|
} | {
|
6825
7541
|
country: string;
|
6826
7542
|
district: string;
|
@@ -6843,11 +7559,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6843
7559
|
option: string;
|
6844
7560
|
filename: string;
|
6845
7561
|
originalFilename: string;
|
6846
|
-
}[] | [string, string] | undefined> | undefined;
|
7562
|
+
}[] | [string, string] | null | undefined> | undefined;
|
6847
7563
|
originalActionId?: string | undefined;
|
6848
7564
|
keepAssignment?: boolean | undefined;
|
6849
7565
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6850
|
-
eventId: z.ZodString
|
7566
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
6851
7567
|
transactionId: z.ZodString;
|
6852
7568
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6853
7569
|
filename: z.ZodString;
|
@@ -6962,7 +7678,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6962
7678
|
addressLine2?: string | null | undefined;
|
6963
7679
|
addressLine3?: string | null | undefined;
|
6964
7680
|
postcodeOrZip?: string | null | undefined;
|
6965
|
-
}
|
7681
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7682
|
+
firstname: z.ZodString;
|
7683
|
+
surname: z.ZodString;
|
7684
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7685
|
+
}, "strip", z.ZodTypeAny, {
|
7686
|
+
firstname: string;
|
7687
|
+
surname: string;
|
7688
|
+
middlename?: string | null | undefined;
|
7689
|
+
}, {
|
7690
|
+
firstname: string;
|
7691
|
+
surname: string;
|
7692
|
+
middlename?: string | null | undefined;
|
7693
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6966
7694
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6967
7695
|
filename: z.ZodString;
|
6968
7696
|
originalFilename: z.ZodString;
|
@@ -7076,8 +7804,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7076
7804
|
addressLine2?: string | null | undefined;
|
7077
7805
|
addressLine3?: string | null | undefined;
|
7078
7806
|
postcodeOrZip?: string | null | undefined;
|
7079
|
-
}
|
7080
|
-
|
7807
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7808
|
+
firstname: z.ZodString;
|
7809
|
+
surname: z.ZodString;
|
7810
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7811
|
+
}, "strip", z.ZodTypeAny, {
|
7812
|
+
firstname: string;
|
7813
|
+
surname: string;
|
7814
|
+
middlename?: string | null | undefined;
|
7815
|
+
}, {
|
7816
|
+
firstname: string;
|
7817
|
+
surname: string;
|
7818
|
+
middlename?: string | null | undefined;
|
7819
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7820
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7081
7821
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7082
7822
|
}, {
|
7083
7823
|
type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
|
@@ -7100,6 +7840,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7100
7840
|
residentialArea?: string | null | undefined;
|
7101
7841
|
street?: string | null | undefined;
|
7102
7842
|
zipCode?: string | null | undefined;
|
7843
|
+
} | {
|
7844
|
+
firstname: string;
|
7845
|
+
surname: string;
|
7846
|
+
middlename?: string | null | undefined;
|
7103
7847
|
} | {
|
7104
7848
|
country: string;
|
7105
7849
|
district: string;
|
@@ -7122,8 +7866,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7122
7866
|
option: string;
|
7123
7867
|
filename: string;
|
7124
7868
|
originalFilename: string;
|
7125
|
-
}[] | [string, string] | undefined>;
|
7126
|
-
eventId: string
|
7869
|
+
}[] | [string, string] | null | undefined>;
|
7870
|
+
eventId: string & z.BRAND<"UUID">;
|
7127
7871
|
annotation?: Record<string, string | number | boolean | {
|
7128
7872
|
type: string;
|
7129
7873
|
filename: string;
|
@@ -7139,6 +7883,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7139
7883
|
residentialArea?: string | null | undefined;
|
7140
7884
|
street?: string | null | undefined;
|
7141
7885
|
zipCode?: string | null | undefined;
|
7886
|
+
} | {
|
7887
|
+
firstname: string;
|
7888
|
+
surname: string;
|
7889
|
+
middlename?: string | null | undefined;
|
7142
7890
|
} | {
|
7143
7891
|
country: string;
|
7144
7892
|
district: string;
|
@@ -7161,8 +7909,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7161
7909
|
option: string;
|
7162
7910
|
filename: string;
|
7163
7911
|
originalFilename: string;
|
7164
|
-
}[] | [string, string] | undefined> | undefined;
|
7165
|
-
originalActionId?: string | undefined;
|
7912
|
+
}[] | [string, string] | null | undefined> | undefined;
|
7913
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7166
7914
|
registrationNumber?: string | undefined;
|
7167
7915
|
keepAssignment?: boolean | undefined;
|
7168
7916
|
}, {
|
@@ -7184,6 +7932,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7184
7932
|
residentialArea?: string | null | undefined;
|
7185
7933
|
street?: string | null | undefined;
|
7186
7934
|
zipCode?: string | null | undefined;
|
7935
|
+
} | {
|
7936
|
+
firstname: string;
|
7937
|
+
surname: string;
|
7938
|
+
middlename?: string | null | undefined;
|
7187
7939
|
} | {
|
7188
7940
|
country: string;
|
7189
7941
|
district: string;
|
@@ -7206,7 +7958,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7206
7958
|
option: string;
|
7207
7959
|
filename: string;
|
7208
7960
|
originalFilename: string;
|
7209
|
-
}[] | [string, string] | undefined> | undefined;
|
7961
|
+
}[] | [string, string] | null | undefined> | undefined;
|
7210
7962
|
annotation?: Record<string, string | number | boolean | {
|
7211
7963
|
type: string;
|
7212
7964
|
filename: string;
|
@@ -7222,6 +7974,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7222
7974
|
residentialArea?: string | null | undefined;
|
7223
7975
|
street?: string | null | undefined;
|
7224
7976
|
zipCode?: string | null | undefined;
|
7977
|
+
} | {
|
7978
|
+
firstname: string;
|
7979
|
+
surname: string;
|
7980
|
+
middlename?: string | null | undefined;
|
7225
7981
|
} | {
|
7226
7982
|
country: string;
|
7227
7983
|
district: string;
|
@@ -7244,12 +8000,12 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7244
8000
|
option: string;
|
7245
8001
|
filename: string;
|
7246
8002
|
originalFilename: string;
|
7247
|
-
}[] | [string, string] | undefined> | undefined;
|
8003
|
+
}[] | [string, string] | null | undefined> | undefined;
|
7248
8004
|
originalActionId?: string | undefined;
|
7249
8005
|
registrationNumber?: string | undefined;
|
7250
8006
|
keepAssignment?: boolean | undefined;
|
7251
8007
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7252
|
-
eventId: z.ZodString
|
8008
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
7253
8009
|
transactionId: z.ZodString;
|
7254
8010
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7255
8011
|
filename: z.ZodString;
|
@@ -7364,7 +8120,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7364
8120
|
addressLine2?: string | null | undefined;
|
7365
8121
|
addressLine3?: string | null | undefined;
|
7366
8122
|
postcodeOrZip?: string | null | undefined;
|
7367
|
-
}
|
8123
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8124
|
+
firstname: z.ZodString;
|
8125
|
+
surname: z.ZodString;
|
8126
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8127
|
+
}, "strip", z.ZodTypeAny, {
|
8128
|
+
firstname: string;
|
8129
|
+
surname: string;
|
8130
|
+
middlename?: string | null | undefined;
|
8131
|
+
}, {
|
8132
|
+
firstname: string;
|
8133
|
+
surname: string;
|
8134
|
+
middlename?: string | null | undefined;
|
8135
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7368
8136
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7369
8137
|
filename: z.ZodString;
|
7370
8138
|
originalFilename: z.ZodString;
|
@@ -7478,8 +8246,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7478
8246
|
addressLine2?: string | null | undefined;
|
7479
8247
|
addressLine3?: string | null | undefined;
|
7480
8248
|
postcodeOrZip?: string | null | undefined;
|
7481
|
-
}
|
7482
|
-
|
8249
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8250
|
+
firstname: z.ZodString;
|
8251
|
+
surname: z.ZodString;
|
8252
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8253
|
+
}, "strip", z.ZodTypeAny, {
|
8254
|
+
firstname: string;
|
8255
|
+
surname: string;
|
8256
|
+
middlename?: string | null | undefined;
|
8257
|
+
}, {
|
8258
|
+
firstname: string;
|
8259
|
+
surname: string;
|
8260
|
+
middlename?: string | null | undefined;
|
8261
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8262
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7483
8263
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7484
8264
|
}, {
|
7485
8265
|
type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
|
@@ -7501,6 +8281,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7501
8281
|
residentialArea?: string | null | undefined;
|
7502
8282
|
street?: string | null | undefined;
|
7503
8283
|
zipCode?: string | null | undefined;
|
8284
|
+
} | {
|
8285
|
+
firstname: string;
|
8286
|
+
surname: string;
|
8287
|
+
middlename?: string | null | undefined;
|
7504
8288
|
} | {
|
7505
8289
|
country: string;
|
7506
8290
|
district: string;
|
@@ -7523,8 +8307,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7523
8307
|
option: string;
|
7524
8308
|
filename: string;
|
7525
8309
|
originalFilename: string;
|
7526
|
-
}[] | [string, string] | undefined>;
|
7527
|
-
eventId: string
|
8310
|
+
}[] | [string, string] | null | undefined>;
|
8311
|
+
eventId: string & z.BRAND<"UUID">;
|
7528
8312
|
annotation?: Record<string, string | number | boolean | {
|
7529
8313
|
type: string;
|
7530
8314
|
filename: string;
|
@@ -7540,6 +8324,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7540
8324
|
residentialArea?: string | null | undefined;
|
7541
8325
|
street?: string | null | undefined;
|
7542
8326
|
zipCode?: string | null | undefined;
|
8327
|
+
} | {
|
8328
|
+
firstname: string;
|
8329
|
+
surname: string;
|
8330
|
+
middlename?: string | null | undefined;
|
7543
8331
|
} | {
|
7544
8332
|
country: string;
|
7545
8333
|
district: string;
|
@@ -7562,8 +8350,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7562
8350
|
option: string;
|
7563
8351
|
filename: string;
|
7564
8352
|
originalFilename: string;
|
7565
|
-
}[] | [string, string] | undefined> | undefined;
|
7566
|
-
originalActionId?: string | undefined;
|
8353
|
+
}[] | [string, string] | null | undefined> | undefined;
|
8354
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7567
8355
|
keepAssignment?: boolean | undefined;
|
7568
8356
|
}, {
|
7569
8357
|
transactionId: string;
|
@@ -7584,6 +8372,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7584
8372
|
residentialArea?: string | null | undefined;
|
7585
8373
|
street?: string | null | undefined;
|
7586
8374
|
zipCode?: string | null | undefined;
|
8375
|
+
} | {
|
8376
|
+
firstname: string;
|
8377
|
+
surname: string;
|
8378
|
+
middlename?: string | null | undefined;
|
7587
8379
|
} | {
|
7588
8380
|
country: string;
|
7589
8381
|
district: string;
|
@@ -7606,7 +8398,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7606
8398
|
option: string;
|
7607
8399
|
filename: string;
|
7608
8400
|
originalFilename: string;
|
7609
|
-
}[] | [string, string] | undefined> | undefined;
|
8401
|
+
}[] | [string, string] | null | undefined> | undefined;
|
7610
8402
|
annotation?: Record<string, string | number | boolean | {
|
7611
8403
|
type: string;
|
7612
8404
|
filename: string;
|
@@ -7622,6 +8414,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7622
8414
|
residentialArea?: string | null | undefined;
|
7623
8415
|
street?: string | null | undefined;
|
7624
8416
|
zipCode?: string | null | undefined;
|
8417
|
+
} | {
|
8418
|
+
firstname: string;
|
8419
|
+
surname: string;
|
8420
|
+
middlename?: string | null | undefined;
|
7625
8421
|
} | {
|
7626
8422
|
country: string;
|
7627
8423
|
district: string;
|
@@ -7644,11 +8440,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7644
8440
|
option: string;
|
7645
8441
|
filename: string;
|
7646
8442
|
originalFilename: string;
|
7647
|
-
}[] | [string, string] | undefined> | undefined;
|
8443
|
+
}[] | [string, string] | null | undefined> | undefined;
|
7648
8444
|
originalActionId?: string | undefined;
|
7649
8445
|
keepAssignment?: boolean | undefined;
|
7650
8446
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7651
|
-
eventId: z.ZodString
|
8447
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
7652
8448
|
transactionId: z.ZodString;
|
7653
8449
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7654
8450
|
filename: z.ZodString;
|
@@ -7763,7 +8559,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7763
8559
|
addressLine2?: string | null | undefined;
|
7764
8560
|
addressLine3?: string | null | undefined;
|
7765
8561
|
postcodeOrZip?: string | null | undefined;
|
7766
|
-
}
|
8562
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8563
|
+
firstname: z.ZodString;
|
8564
|
+
surname: z.ZodString;
|
8565
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8566
|
+
}, "strip", z.ZodTypeAny, {
|
8567
|
+
firstname: string;
|
8568
|
+
surname: string;
|
8569
|
+
middlename?: string | null | undefined;
|
8570
|
+
}, {
|
8571
|
+
firstname: string;
|
8572
|
+
surname: string;
|
8573
|
+
middlename?: string | null | undefined;
|
8574
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7767
8575
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7768
8576
|
filename: z.ZodString;
|
7769
8577
|
originalFilename: z.ZodString;
|
@@ -7877,8 +8685,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7877
8685
|
addressLine2?: string | null | undefined;
|
7878
8686
|
addressLine3?: string | null | undefined;
|
7879
8687
|
postcodeOrZip?: string | null | undefined;
|
7880
|
-
}
|
7881
|
-
|
8688
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8689
|
+
firstname: z.ZodString;
|
8690
|
+
surname: z.ZodString;
|
8691
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8692
|
+
}, "strip", z.ZodTypeAny, {
|
8693
|
+
firstname: string;
|
8694
|
+
surname: string;
|
8695
|
+
middlename?: string | null | undefined;
|
8696
|
+
}, {
|
8697
|
+
firstname: string;
|
8698
|
+
surname: string;
|
8699
|
+
middlename?: string | null | undefined;
|
8700
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8701
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7882
8702
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7883
8703
|
}, {
|
7884
8704
|
type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
|
@@ -7900,6 +8720,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7900
8720
|
residentialArea?: string | null | undefined;
|
7901
8721
|
street?: string | null | undefined;
|
7902
8722
|
zipCode?: string | null | undefined;
|
8723
|
+
} | {
|
8724
|
+
firstname: string;
|
8725
|
+
surname: string;
|
8726
|
+
middlename?: string | null | undefined;
|
7903
8727
|
} | {
|
7904
8728
|
country: string;
|
7905
8729
|
district: string;
|
@@ -7922,8 +8746,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7922
8746
|
option: string;
|
7923
8747
|
filename: string;
|
7924
8748
|
originalFilename: string;
|
7925
|
-
}[] | [string, string] | undefined>;
|
7926
|
-
eventId: string
|
8749
|
+
}[] | [string, string] | null | undefined>;
|
8750
|
+
eventId: string & z.BRAND<"UUID">;
|
7927
8751
|
annotation?: Record<string, string | number | boolean | {
|
7928
8752
|
type: string;
|
7929
8753
|
filename: string;
|
@@ -7939,6 +8763,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7939
8763
|
residentialArea?: string | null | undefined;
|
7940
8764
|
street?: string | null | undefined;
|
7941
8765
|
zipCode?: string | null | undefined;
|
8766
|
+
} | {
|
8767
|
+
firstname: string;
|
8768
|
+
surname: string;
|
8769
|
+
middlename?: string | null | undefined;
|
7942
8770
|
} | {
|
7943
8771
|
country: string;
|
7944
8772
|
district: string;
|
@@ -7961,8 +8789,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7961
8789
|
option: string;
|
7962
8790
|
filename: string;
|
7963
8791
|
originalFilename: string;
|
7964
|
-
}[] | [string, string] | undefined> | undefined;
|
7965
|
-
originalActionId?: string | undefined;
|
8792
|
+
}[] | [string, string] | null | undefined> | undefined;
|
8793
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7966
8794
|
keepAssignment?: boolean | undefined;
|
7967
8795
|
}, {
|
7968
8796
|
transactionId: string;
|
@@ -7983,6 +8811,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7983
8811
|
residentialArea?: string | null | undefined;
|
7984
8812
|
street?: string | null | undefined;
|
7985
8813
|
zipCode?: string | null | undefined;
|
8814
|
+
} | {
|
8815
|
+
firstname: string;
|
8816
|
+
surname: string;
|
8817
|
+
middlename?: string | null | undefined;
|
7986
8818
|
} | {
|
7987
8819
|
country: string;
|
7988
8820
|
district: string;
|
@@ -8005,7 +8837,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8005
8837
|
option: string;
|
8006
8838
|
filename: string;
|
8007
8839
|
originalFilename: string;
|
8008
|
-
}[] | [string, string] | undefined> | undefined;
|
8840
|
+
}[] | [string, string] | null | undefined> | undefined;
|
8009
8841
|
annotation?: Record<string, string | number | boolean | {
|
8010
8842
|
type: string;
|
8011
8843
|
filename: string;
|
@@ -8021,6 +8853,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8021
8853
|
residentialArea?: string | null | undefined;
|
8022
8854
|
street?: string | null | undefined;
|
8023
8855
|
zipCode?: string | null | undefined;
|
8856
|
+
} | {
|
8857
|
+
firstname: string;
|
8858
|
+
surname: string;
|
8859
|
+
middlename?: string | null | undefined;
|
8024
8860
|
} | {
|
8025
8861
|
country: string;
|
8026
8862
|
district: string;
|
@@ -8043,11 +8879,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8043
8879
|
option: string;
|
8044
8880
|
filename: string;
|
8045
8881
|
originalFilename: string;
|
8046
|
-
}[] | [string, string] | undefined> | undefined;
|
8882
|
+
}[] | [string, string] | null | undefined> | undefined;
|
8047
8883
|
originalActionId?: string | undefined;
|
8048
8884
|
keepAssignment?: boolean | undefined;
|
8049
8885
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8050
|
-
eventId: z.ZodString
|
8886
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
8051
8887
|
transactionId: z.ZodString;
|
8052
8888
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8053
8889
|
filename: z.ZodString;
|
@@ -8162,7 +8998,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8162
8998
|
addressLine2?: string | null | undefined;
|
8163
8999
|
addressLine3?: string | null | undefined;
|
8164
9000
|
postcodeOrZip?: string | null | undefined;
|
8165
|
-
}
|
9001
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9002
|
+
firstname: z.ZodString;
|
9003
|
+
surname: z.ZodString;
|
9004
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9005
|
+
}, "strip", z.ZodTypeAny, {
|
9006
|
+
firstname: string;
|
9007
|
+
surname: string;
|
9008
|
+
middlename?: string | null | undefined;
|
9009
|
+
}, {
|
9010
|
+
firstname: string;
|
9011
|
+
surname: string;
|
9012
|
+
middlename?: string | null | undefined;
|
9013
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8166
9014
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8167
9015
|
filename: z.ZodString;
|
8168
9016
|
originalFilename: z.ZodString;
|
@@ -8276,13 +9124,39 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8276
9124
|
addressLine2?: string | null | undefined;
|
8277
9125
|
addressLine3?: string | null | undefined;
|
8278
9126
|
postcodeOrZip?: string | null | undefined;
|
8279
|
-
}
|
8280
|
-
|
9127
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9128
|
+
firstname: z.ZodString;
|
9129
|
+
surname: z.ZodString;
|
9130
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9131
|
+
}, "strip", z.ZodTypeAny, {
|
9132
|
+
firstname: string;
|
9133
|
+
surname: string;
|
9134
|
+
middlename?: string | null | undefined;
|
9135
|
+
}, {
|
9136
|
+
firstname: string;
|
9137
|
+
surname: string;
|
9138
|
+
middlename?: string | null | undefined;
|
9139
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9140
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
8281
9141
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
8282
9142
|
}, {
|
8283
9143
|
type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
|
9144
|
+
reason: z.ZodObject<{
|
9145
|
+
message: z.ZodString;
|
9146
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
9147
|
+
}, "strip", z.ZodTypeAny, {
|
9148
|
+
message: string;
|
9149
|
+
isDuplicate?: boolean | undefined;
|
9150
|
+
}, {
|
9151
|
+
message: string;
|
9152
|
+
isDuplicate?: boolean | undefined;
|
9153
|
+
}>;
|
8284
9154
|
}>, "strip", z.ZodTypeAny, {
|
8285
9155
|
type: "REJECT";
|
9156
|
+
reason: {
|
9157
|
+
message: string;
|
9158
|
+
isDuplicate?: boolean | undefined;
|
9159
|
+
};
|
8286
9160
|
transactionId: string;
|
8287
9161
|
declaration: Record<string, string | number | boolean | {
|
8288
9162
|
type: string;
|
@@ -8299,6 +9173,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8299
9173
|
residentialArea?: string | null | undefined;
|
8300
9174
|
street?: string | null | undefined;
|
8301
9175
|
zipCode?: string | null | undefined;
|
9176
|
+
} | {
|
9177
|
+
firstname: string;
|
9178
|
+
surname: string;
|
9179
|
+
middlename?: string | null | undefined;
|
8302
9180
|
} | {
|
8303
9181
|
country: string;
|
8304
9182
|
district: string;
|
@@ -8321,8 +9199,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8321
9199
|
option: string;
|
8322
9200
|
filename: string;
|
8323
9201
|
originalFilename: string;
|
8324
|
-
}[] | [string, string] | undefined>;
|
8325
|
-
eventId: string
|
9202
|
+
}[] | [string, string] | null | undefined>;
|
9203
|
+
eventId: string & z.BRAND<"UUID">;
|
8326
9204
|
annotation?: Record<string, string | number | boolean | {
|
8327
9205
|
type: string;
|
8328
9206
|
filename: string;
|
@@ -8338,6 +9216,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8338
9216
|
residentialArea?: string | null | undefined;
|
8339
9217
|
street?: string | null | undefined;
|
8340
9218
|
zipCode?: string | null | undefined;
|
9219
|
+
} | {
|
9220
|
+
firstname: string;
|
9221
|
+
surname: string;
|
9222
|
+
middlename?: string | null | undefined;
|
8341
9223
|
} | {
|
8342
9224
|
country: string;
|
8343
9225
|
district: string;
|
@@ -8360,10 +9242,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8360
9242
|
option: string;
|
8361
9243
|
filename: string;
|
8362
9244
|
originalFilename: string;
|
8363
|
-
}[] | [string, string] | undefined> | undefined;
|
8364
|
-
originalActionId?: string | undefined;
|
9245
|
+
}[] | [string, string] | null | undefined> | undefined;
|
9246
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
8365
9247
|
keepAssignment?: boolean | undefined;
|
8366
9248
|
}, {
|
9249
|
+
reason: {
|
9250
|
+
message: string;
|
9251
|
+
isDuplicate?: boolean | undefined;
|
9252
|
+
};
|
8367
9253
|
transactionId: string;
|
8368
9254
|
eventId: string;
|
8369
9255
|
type?: "REJECT" | undefined;
|
@@ -8382,6 +9268,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8382
9268
|
residentialArea?: string | null | undefined;
|
8383
9269
|
street?: string | null | undefined;
|
8384
9270
|
zipCode?: string | null | undefined;
|
9271
|
+
} | {
|
9272
|
+
firstname: string;
|
9273
|
+
surname: string;
|
9274
|
+
middlename?: string | null | undefined;
|
8385
9275
|
} | {
|
8386
9276
|
country: string;
|
8387
9277
|
district: string;
|
@@ -8404,7 +9294,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8404
9294
|
option: string;
|
8405
9295
|
filename: string;
|
8406
9296
|
originalFilename: string;
|
8407
|
-
}[] | [string, string] | undefined> | undefined;
|
9297
|
+
}[] | [string, string] | null | undefined> | undefined;
|
8408
9298
|
annotation?: Record<string, string | number | boolean | {
|
8409
9299
|
type: string;
|
8410
9300
|
filename: string;
|
@@ -8420,6 +9310,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8420
9310
|
residentialArea?: string | null | undefined;
|
8421
9311
|
street?: string | null | undefined;
|
8422
9312
|
zipCode?: string | null | undefined;
|
9313
|
+
} | {
|
9314
|
+
firstname: string;
|
9315
|
+
surname: string;
|
9316
|
+
middlename?: string | null | undefined;
|
8423
9317
|
} | {
|
8424
9318
|
country: string;
|
8425
9319
|
district: string;
|
@@ -8442,11 +9336,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8442
9336
|
option: string;
|
8443
9337
|
filename: string;
|
8444
9338
|
originalFilename: string;
|
8445
|
-
}[] | [string, string] | undefined> | undefined;
|
9339
|
+
}[] | [string, string] | null | undefined> | undefined;
|
8446
9340
|
originalActionId?: string | undefined;
|
8447
9341
|
keepAssignment?: boolean | undefined;
|
8448
9342
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8449
|
-
eventId: z.ZodString
|
9343
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
8450
9344
|
transactionId: z.ZodString;
|
8451
9345
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8452
9346
|
filename: z.ZodString;
|
@@ -8561,7 +9455,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8561
9455
|
addressLine2?: string | null | undefined;
|
8562
9456
|
addressLine3?: string | null | undefined;
|
8563
9457
|
postcodeOrZip?: string | null | undefined;
|
8564
|
-
}
|
9458
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9459
|
+
firstname: z.ZodString;
|
9460
|
+
surname: z.ZodString;
|
9461
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9462
|
+
}, "strip", z.ZodTypeAny, {
|
9463
|
+
firstname: string;
|
9464
|
+
surname: string;
|
9465
|
+
middlename?: string | null | undefined;
|
9466
|
+
}, {
|
9467
|
+
firstname: string;
|
9468
|
+
surname: string;
|
9469
|
+
middlename?: string | null | undefined;
|
9470
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8565
9471
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8566
9472
|
filename: z.ZodString;
|
8567
9473
|
originalFilename: z.ZodString;
|
@@ -8675,8 +9581,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8675
9581
|
addressLine2?: string | null | undefined;
|
8676
9582
|
addressLine3?: string | null | undefined;
|
8677
9583
|
postcodeOrZip?: string | null | undefined;
|
8678
|
-
}
|
8679
|
-
|
9584
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9585
|
+
firstname: z.ZodString;
|
9586
|
+
surname: z.ZodString;
|
9587
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9588
|
+
}, "strip", z.ZodTypeAny, {
|
9589
|
+
firstname: string;
|
9590
|
+
surname: string;
|
9591
|
+
middlename?: string | null | undefined;
|
9592
|
+
}, {
|
9593
|
+
firstname: string;
|
9594
|
+
surname: string;
|
9595
|
+
middlename?: string | null | undefined;
|
9596
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9597
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
8680
9598
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
8681
9599
|
}, {
|
8682
9600
|
type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
|
@@ -8698,6 +9616,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8698
9616
|
residentialArea?: string | null | undefined;
|
8699
9617
|
street?: string | null | undefined;
|
8700
9618
|
zipCode?: string | null | undefined;
|
9619
|
+
} | {
|
9620
|
+
firstname: string;
|
9621
|
+
surname: string;
|
9622
|
+
middlename?: string | null | undefined;
|
8701
9623
|
} | {
|
8702
9624
|
country: string;
|
8703
9625
|
district: string;
|
@@ -8720,8 +9642,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8720
9642
|
option: string;
|
8721
9643
|
filename: string;
|
8722
9644
|
originalFilename: string;
|
8723
|
-
}[] | [string, string] | undefined>;
|
8724
|
-
eventId: string
|
9645
|
+
}[] | [string, string] | null | undefined>;
|
9646
|
+
eventId: string & z.BRAND<"UUID">;
|
8725
9647
|
annotation?: Record<string, string | number | boolean | {
|
8726
9648
|
type: string;
|
8727
9649
|
filename: string;
|
@@ -8737,6 +9659,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8737
9659
|
residentialArea?: string | null | undefined;
|
8738
9660
|
street?: string | null | undefined;
|
8739
9661
|
zipCode?: string | null | undefined;
|
9662
|
+
} | {
|
9663
|
+
firstname: string;
|
9664
|
+
surname: string;
|
9665
|
+
middlename?: string | null | undefined;
|
8740
9666
|
} | {
|
8741
9667
|
country: string;
|
8742
9668
|
district: string;
|
@@ -8759,8 +9685,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8759
9685
|
option: string;
|
8760
9686
|
filename: string;
|
8761
9687
|
originalFilename: string;
|
8762
|
-
}[] | [string, string] | undefined> | undefined;
|
8763
|
-
originalActionId?: string | undefined;
|
9688
|
+
}[] | [string, string] | null | undefined> | undefined;
|
9689
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
8764
9690
|
keepAssignment?: boolean | undefined;
|
8765
9691
|
}, {
|
8766
9692
|
transactionId: string;
|
@@ -8781,6 +9707,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8781
9707
|
residentialArea?: string | null | undefined;
|
8782
9708
|
street?: string | null | undefined;
|
8783
9709
|
zipCode?: string | null | undefined;
|
9710
|
+
} | {
|
9711
|
+
firstname: string;
|
9712
|
+
surname: string;
|
9713
|
+
middlename?: string | null | undefined;
|
8784
9714
|
} | {
|
8785
9715
|
country: string;
|
8786
9716
|
district: string;
|
@@ -8803,7 +9733,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8803
9733
|
option: string;
|
8804
9734
|
filename: string;
|
8805
9735
|
originalFilename: string;
|
8806
|
-
}[] | [string, string] | undefined> | undefined;
|
9736
|
+
}[] | [string, string] | null | undefined> | undefined;
|
8807
9737
|
annotation?: Record<string, string | number | boolean | {
|
8808
9738
|
type: string;
|
8809
9739
|
filename: string;
|
@@ -8819,6 +9749,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8819
9749
|
residentialArea?: string | null | undefined;
|
8820
9750
|
street?: string | null | undefined;
|
8821
9751
|
zipCode?: string | null | undefined;
|
9752
|
+
} | {
|
9753
|
+
firstname: string;
|
9754
|
+
surname: string;
|
9755
|
+
middlename?: string | null | undefined;
|
8822
9756
|
} | {
|
8823
9757
|
country: string;
|
8824
9758
|
district: string;
|
@@ -8841,11 +9775,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8841
9775
|
option: string;
|
8842
9776
|
filename: string;
|
8843
9777
|
originalFilename: string;
|
8844
|
-
}[] | [string, string] | undefined> | undefined;
|
9778
|
+
}[] | [string, string] | null | undefined> | undefined;
|
8845
9779
|
originalActionId?: string | undefined;
|
8846
9780
|
keepAssignment?: boolean | undefined;
|
8847
9781
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8848
|
-
eventId: z.ZodString
|
9782
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
8849
9783
|
transactionId: z.ZodString;
|
8850
9784
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8851
9785
|
filename: z.ZodString;
|
@@ -8960,7 +9894,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8960
9894
|
addressLine2?: string | null | undefined;
|
8961
9895
|
addressLine3?: string | null | undefined;
|
8962
9896
|
postcodeOrZip?: string | null | undefined;
|
8963
|
-
}
|
9897
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9898
|
+
firstname: z.ZodString;
|
9899
|
+
surname: z.ZodString;
|
9900
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9901
|
+
}, "strip", z.ZodTypeAny, {
|
9902
|
+
firstname: string;
|
9903
|
+
surname: string;
|
9904
|
+
middlename?: string | null | undefined;
|
9905
|
+
}, {
|
9906
|
+
firstname: string;
|
9907
|
+
surname: string;
|
9908
|
+
middlename?: string | null | undefined;
|
9909
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8964
9910
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8965
9911
|
filename: z.ZodString;
|
8966
9912
|
originalFilename: z.ZodString;
|
@@ -9074,13 +10020,39 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9074
10020
|
addressLine2?: string | null | undefined;
|
9075
10021
|
addressLine3?: string | null | undefined;
|
9076
10022
|
postcodeOrZip?: string | null | undefined;
|
9077
|
-
}
|
9078
|
-
|
10023
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10024
|
+
firstname: z.ZodString;
|
10025
|
+
surname: z.ZodString;
|
10026
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10027
|
+
}, "strip", z.ZodTypeAny, {
|
10028
|
+
firstname: string;
|
10029
|
+
surname: string;
|
10030
|
+
middlename?: string | null | undefined;
|
10031
|
+
}, {
|
10032
|
+
firstname: string;
|
10033
|
+
surname: string;
|
10034
|
+
middlename?: string | null | undefined;
|
10035
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10036
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9079
10037
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9080
10038
|
}, {
|
9081
10039
|
type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
|
10040
|
+
reason: z.ZodObject<{
|
10041
|
+
message: z.ZodString;
|
10042
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
10043
|
+
}, "strip", z.ZodTypeAny, {
|
10044
|
+
message: string;
|
10045
|
+
isDuplicate?: boolean | undefined;
|
10046
|
+
}, {
|
10047
|
+
message: string;
|
10048
|
+
isDuplicate?: boolean | undefined;
|
10049
|
+
}>;
|
9082
10050
|
}>, "strip", z.ZodTypeAny, {
|
9083
10051
|
type: "ARCHIVE";
|
10052
|
+
reason: {
|
10053
|
+
message: string;
|
10054
|
+
isDuplicate?: boolean | undefined;
|
10055
|
+
};
|
9084
10056
|
transactionId: string;
|
9085
10057
|
declaration: Record<string, string | number | boolean | {
|
9086
10058
|
type: string;
|
@@ -9097,6 +10069,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9097
10069
|
residentialArea?: string | null | undefined;
|
9098
10070
|
street?: string | null | undefined;
|
9099
10071
|
zipCode?: string | null | undefined;
|
10072
|
+
} | {
|
10073
|
+
firstname: string;
|
10074
|
+
surname: string;
|
10075
|
+
middlename?: string | null | undefined;
|
9100
10076
|
} | {
|
9101
10077
|
country: string;
|
9102
10078
|
district: string;
|
@@ -9119,8 +10095,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9119
10095
|
option: string;
|
9120
10096
|
filename: string;
|
9121
10097
|
originalFilename: string;
|
9122
|
-
}[] | [string, string] | undefined>;
|
9123
|
-
eventId: string
|
10098
|
+
}[] | [string, string] | null | undefined>;
|
10099
|
+
eventId: string & z.BRAND<"UUID">;
|
9124
10100
|
annotation?: Record<string, string | number | boolean | {
|
9125
10101
|
type: string;
|
9126
10102
|
filename: string;
|
@@ -9136,6 +10112,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9136
10112
|
residentialArea?: string | null | undefined;
|
9137
10113
|
street?: string | null | undefined;
|
9138
10114
|
zipCode?: string | null | undefined;
|
10115
|
+
} | {
|
10116
|
+
firstname: string;
|
10117
|
+
surname: string;
|
10118
|
+
middlename?: string | null | undefined;
|
9139
10119
|
} | {
|
9140
10120
|
country: string;
|
9141
10121
|
district: string;
|
@@ -9158,10 +10138,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9158
10138
|
option: string;
|
9159
10139
|
filename: string;
|
9160
10140
|
originalFilename: string;
|
9161
|
-
}[] | [string, string] | undefined> | undefined;
|
9162
|
-
originalActionId?: string | undefined;
|
10141
|
+
}[] | [string, string] | null | undefined> | undefined;
|
10142
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
9163
10143
|
keepAssignment?: boolean | undefined;
|
9164
10144
|
}, {
|
10145
|
+
reason: {
|
10146
|
+
message: string;
|
10147
|
+
isDuplicate?: boolean | undefined;
|
10148
|
+
};
|
9165
10149
|
transactionId: string;
|
9166
10150
|
eventId: string;
|
9167
10151
|
type?: "ARCHIVE" | undefined;
|
@@ -9180,6 +10164,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9180
10164
|
residentialArea?: string | null | undefined;
|
9181
10165
|
street?: string | null | undefined;
|
9182
10166
|
zipCode?: string | null | undefined;
|
10167
|
+
} | {
|
10168
|
+
firstname: string;
|
10169
|
+
surname: string;
|
10170
|
+
middlename?: string | null | undefined;
|
9183
10171
|
} | {
|
9184
10172
|
country: string;
|
9185
10173
|
district: string;
|
@@ -9202,7 +10190,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9202
10190
|
option: string;
|
9203
10191
|
filename: string;
|
9204
10192
|
originalFilename: string;
|
9205
|
-
}[] | [string, string] | undefined> | undefined;
|
10193
|
+
}[] | [string, string] | null | undefined> | undefined;
|
9206
10194
|
annotation?: Record<string, string | number | boolean | {
|
9207
10195
|
type: string;
|
9208
10196
|
filename: string;
|
@@ -9218,6 +10206,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9218
10206
|
residentialArea?: string | null | undefined;
|
9219
10207
|
street?: string | null | undefined;
|
9220
10208
|
zipCode?: string | null | undefined;
|
10209
|
+
} | {
|
10210
|
+
firstname: string;
|
10211
|
+
surname: string;
|
10212
|
+
middlename?: string | null | undefined;
|
9221
10213
|
} | {
|
9222
10214
|
country: string;
|
9223
10215
|
district: string;
|
@@ -9240,11 +10232,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9240
10232
|
option: string;
|
9241
10233
|
filename: string;
|
9242
10234
|
originalFilename: string;
|
9243
|
-
}[] | [string, string] | undefined> | undefined;
|
10235
|
+
}[] | [string, string] | null | undefined> | undefined;
|
9244
10236
|
originalActionId?: string | undefined;
|
9245
10237
|
keepAssignment?: boolean | undefined;
|
9246
10238
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9247
|
-
eventId: z.ZodString
|
10239
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
9248
10240
|
transactionId: z.ZodString;
|
9249
10241
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
9250
10242
|
filename: z.ZodString;
|
@@ -9359,7 +10351,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9359
10351
|
addressLine2?: string | null | undefined;
|
9360
10352
|
addressLine3?: string | null | undefined;
|
9361
10353
|
postcodeOrZip?: string | null | undefined;
|
9362
|
-
}
|
10354
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10355
|
+
firstname: z.ZodString;
|
10356
|
+
surname: z.ZodString;
|
10357
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10358
|
+
}, "strip", z.ZodTypeAny, {
|
10359
|
+
firstname: string;
|
10360
|
+
surname: string;
|
10361
|
+
middlename?: string | null | undefined;
|
10362
|
+
}, {
|
10363
|
+
firstname: string;
|
10364
|
+
surname: string;
|
10365
|
+
middlename?: string | null | undefined;
|
10366
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9363
10367
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
9364
10368
|
filename: z.ZodString;
|
9365
10369
|
originalFilename: z.ZodString;
|
@@ -9473,8 +10477,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9473
10477
|
addressLine2?: string | null | undefined;
|
9474
10478
|
addressLine3?: string | null | undefined;
|
9475
10479
|
postcodeOrZip?: string | null | undefined;
|
9476
|
-
}
|
9477
|
-
|
10480
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10481
|
+
firstname: z.ZodString;
|
10482
|
+
surname: z.ZodString;
|
10483
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10484
|
+
}, "strip", z.ZodTypeAny, {
|
10485
|
+
firstname: string;
|
10486
|
+
surname: string;
|
10487
|
+
middlename?: string | null | undefined;
|
10488
|
+
}, {
|
10489
|
+
firstname: string;
|
10490
|
+
surname: string;
|
10491
|
+
middlename?: string | null | undefined;
|
10492
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10493
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9478
10494
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9479
10495
|
}, {
|
9480
10496
|
type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
|
@@ -9497,6 +10513,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9497
10513
|
residentialArea?: string | null | undefined;
|
9498
10514
|
street?: string | null | undefined;
|
9499
10515
|
zipCode?: string | null | undefined;
|
10516
|
+
} | {
|
10517
|
+
firstname: string;
|
10518
|
+
surname: string;
|
10519
|
+
middlename?: string | null | undefined;
|
9500
10520
|
} | {
|
9501
10521
|
country: string;
|
9502
10522
|
district: string;
|
@@ -9519,9 +10539,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9519
10539
|
option: string;
|
9520
10540
|
filename: string;
|
9521
10541
|
originalFilename: string;
|
9522
|
-
}[] | [string, string] | undefined>;
|
10542
|
+
}[] | [string, string] | null | undefined>;
|
9523
10543
|
assignedTo: string;
|
9524
|
-
eventId: string
|
10544
|
+
eventId: string & z.BRAND<"UUID">;
|
9525
10545
|
annotation?: Record<string, string | number | boolean | {
|
9526
10546
|
type: string;
|
9527
10547
|
filename: string;
|
@@ -9537,6 +10557,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9537
10557
|
residentialArea?: string | null | undefined;
|
9538
10558
|
street?: string | null | undefined;
|
9539
10559
|
zipCode?: string | null | undefined;
|
10560
|
+
} | {
|
10561
|
+
firstname: string;
|
10562
|
+
surname: string;
|
10563
|
+
middlename?: string | null | undefined;
|
9540
10564
|
} | {
|
9541
10565
|
country: string;
|
9542
10566
|
district: string;
|
@@ -9559,8 +10583,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9559
10583
|
option: string;
|
9560
10584
|
filename: string;
|
9561
10585
|
originalFilename: string;
|
9562
|
-
}[] | [string, string] | undefined> | undefined;
|
9563
|
-
originalActionId?: string | undefined;
|
10586
|
+
}[] | [string, string] | null | undefined> | undefined;
|
10587
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
9564
10588
|
keepAssignment?: boolean | undefined;
|
9565
10589
|
}, {
|
9566
10590
|
transactionId: string;
|
@@ -9582,6 +10606,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9582
10606
|
residentialArea?: string | null | undefined;
|
9583
10607
|
street?: string | null | undefined;
|
9584
10608
|
zipCode?: string | null | undefined;
|
10609
|
+
} | {
|
10610
|
+
firstname: string;
|
10611
|
+
surname: string;
|
10612
|
+
middlename?: string | null | undefined;
|
9585
10613
|
} | {
|
9586
10614
|
country: string;
|
9587
10615
|
district: string;
|
@@ -9604,7 +10632,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9604
10632
|
option: string;
|
9605
10633
|
filename: string;
|
9606
10634
|
originalFilename: string;
|
9607
|
-
}[] | [string, string] | undefined> | undefined;
|
10635
|
+
}[] | [string, string] | null | undefined> | undefined;
|
9608
10636
|
annotation?: Record<string, string | number | boolean | {
|
9609
10637
|
type: string;
|
9610
10638
|
filename: string;
|
@@ -9620,6 +10648,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9620
10648
|
residentialArea?: string | null | undefined;
|
9621
10649
|
street?: string | null | undefined;
|
9622
10650
|
zipCode?: string | null | undefined;
|
10651
|
+
} | {
|
10652
|
+
firstname: string;
|
10653
|
+
surname: string;
|
10654
|
+
middlename?: string | null | undefined;
|
9623
10655
|
} | {
|
9624
10656
|
country: string;
|
9625
10657
|
district: string;
|
@@ -9642,11 +10674,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9642
10674
|
option: string;
|
9643
10675
|
filename: string;
|
9644
10676
|
originalFilename: string;
|
9645
|
-
}[] | [string, string] | undefined> | undefined;
|
10677
|
+
}[] | [string, string] | null | undefined> | undefined;
|
9646
10678
|
originalActionId?: string | undefined;
|
9647
10679
|
keepAssignment?: boolean | undefined;
|
9648
10680
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9649
|
-
eventId: z.ZodString
|
10681
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
9650
10682
|
transactionId: z.ZodString;
|
9651
10683
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
9652
10684
|
filename: z.ZodString;
|
@@ -9761,7 +10793,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9761
10793
|
addressLine2?: string | null | undefined;
|
9762
10794
|
addressLine3?: string | null | undefined;
|
9763
10795
|
postcodeOrZip?: string | null | undefined;
|
9764
|
-
}
|
10796
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10797
|
+
firstname: z.ZodString;
|
10798
|
+
surname: z.ZodString;
|
10799
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10800
|
+
}, "strip", z.ZodTypeAny, {
|
10801
|
+
firstname: string;
|
10802
|
+
surname: string;
|
10803
|
+
middlename?: string | null | undefined;
|
10804
|
+
}, {
|
10805
|
+
firstname: string;
|
10806
|
+
surname: string;
|
10807
|
+
middlename?: string | null | undefined;
|
10808
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9765
10809
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
9766
10810
|
filename: z.ZodString;
|
9767
10811
|
originalFilename: z.ZodString;
|
@@ -9875,8 +10919,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9875
10919
|
addressLine2?: string | null | undefined;
|
9876
10920
|
addressLine3?: string | null | undefined;
|
9877
10921
|
postcodeOrZip?: string | null | undefined;
|
9878
|
-
}
|
9879
|
-
|
10922
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10923
|
+
firstname: z.ZodString;
|
10924
|
+
surname: z.ZodString;
|
10925
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10926
|
+
}, "strip", z.ZodTypeAny, {
|
10927
|
+
firstname: string;
|
10928
|
+
surname: string;
|
10929
|
+
middlename?: string | null | undefined;
|
10930
|
+
}, {
|
10931
|
+
firstname: string;
|
10932
|
+
surname: string;
|
10933
|
+
middlename?: string | null | undefined;
|
10934
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10935
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9880
10936
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9881
10937
|
}, {
|
9882
10938
|
type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
|
@@ -9899,6 +10955,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9899
10955
|
residentialArea?: string | null | undefined;
|
9900
10956
|
street?: string | null | undefined;
|
9901
10957
|
zipCode?: string | null | undefined;
|
10958
|
+
} | {
|
10959
|
+
firstname: string;
|
10960
|
+
surname: string;
|
10961
|
+
middlename?: string | null | undefined;
|
9902
10962
|
} | {
|
9903
10963
|
country: string;
|
9904
10964
|
district: string;
|
@@ -9921,9 +10981,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9921
10981
|
option: string;
|
9922
10982
|
filename: string;
|
9923
10983
|
originalFilename: string;
|
9924
|
-
}[] | [string, string] | undefined>;
|
10984
|
+
}[] | [string, string] | null | undefined>;
|
9925
10985
|
assignedTo: null;
|
9926
|
-
eventId: string
|
10986
|
+
eventId: string & z.BRAND<"UUID">;
|
9927
10987
|
annotation?: Record<string, string | number | boolean | {
|
9928
10988
|
type: string;
|
9929
10989
|
filename: string;
|
@@ -9939,6 +10999,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9939
10999
|
residentialArea?: string | null | undefined;
|
9940
11000
|
street?: string | null | undefined;
|
9941
11001
|
zipCode?: string | null | undefined;
|
11002
|
+
} | {
|
11003
|
+
firstname: string;
|
11004
|
+
surname: string;
|
11005
|
+
middlename?: string | null | undefined;
|
9942
11006
|
} | {
|
9943
11007
|
country: string;
|
9944
11008
|
district: string;
|
@@ -9961,8 +11025,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9961
11025
|
option: string;
|
9962
11026
|
filename: string;
|
9963
11027
|
originalFilename: string;
|
9964
|
-
}[] | [string, string] | undefined> | undefined;
|
9965
|
-
originalActionId?: string | undefined;
|
11028
|
+
}[] | [string, string] | null | undefined> | undefined;
|
11029
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
9966
11030
|
keepAssignment?: boolean | undefined;
|
9967
11031
|
}, {
|
9968
11032
|
transactionId: string;
|
@@ -9983,6 +11047,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9983
11047
|
residentialArea?: string | null | undefined;
|
9984
11048
|
street?: string | null | undefined;
|
9985
11049
|
zipCode?: string | null | undefined;
|
11050
|
+
} | {
|
11051
|
+
firstname: string;
|
11052
|
+
surname: string;
|
11053
|
+
middlename?: string | null | undefined;
|
9986
11054
|
} | {
|
9987
11055
|
country: string;
|
9988
11056
|
district: string;
|
@@ -10005,7 +11073,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10005
11073
|
option: string;
|
10006
11074
|
filename: string;
|
10007
11075
|
originalFilename: string;
|
10008
|
-
}[] | [string, string] | undefined> | undefined;
|
11076
|
+
}[] | [string, string] | null | undefined> | undefined;
|
10009
11077
|
annotation?: Record<string, string | number | boolean | {
|
10010
11078
|
type: string;
|
10011
11079
|
filename: string;
|
@@ -10021,6 +11089,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10021
11089
|
residentialArea?: string | null | undefined;
|
10022
11090
|
street?: string | null | undefined;
|
10023
11091
|
zipCode?: string | null | undefined;
|
11092
|
+
} | {
|
11093
|
+
firstname: string;
|
11094
|
+
surname: string;
|
11095
|
+
middlename?: string | null | undefined;
|
10024
11096
|
} | {
|
10025
11097
|
country: string;
|
10026
11098
|
district: string;
|
@@ -10043,12 +11115,12 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10043
11115
|
option: string;
|
10044
11116
|
filename: string;
|
10045
11117
|
originalFilename: string;
|
10046
|
-
}[] | [string, string] | undefined> | undefined;
|
11118
|
+
}[] | [string, string] | null | undefined> | undefined;
|
10047
11119
|
originalActionId?: string | undefined;
|
10048
11120
|
assignedTo?: null | undefined;
|
10049
11121
|
keepAssignment?: boolean | undefined;
|
10050
11122
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10051
|
-
eventId: z.ZodString
|
11123
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
10052
11124
|
transactionId: z.ZodString;
|
10053
11125
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10054
11126
|
filename: z.ZodString;
|
@@ -10163,7 +11235,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10163
11235
|
addressLine2?: string | null | undefined;
|
10164
11236
|
addressLine3?: string | null | undefined;
|
10165
11237
|
postcodeOrZip?: string | null | undefined;
|
10166
|
-
}
|
11238
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11239
|
+
firstname: z.ZodString;
|
11240
|
+
surname: z.ZodString;
|
11241
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11242
|
+
}, "strip", z.ZodTypeAny, {
|
11243
|
+
firstname: string;
|
11244
|
+
surname: string;
|
11245
|
+
middlename?: string | null | undefined;
|
11246
|
+
}, {
|
11247
|
+
firstname: string;
|
11248
|
+
surname: string;
|
11249
|
+
middlename?: string | null | undefined;
|
11250
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10167
11251
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10168
11252
|
filename: z.ZodString;
|
10169
11253
|
originalFilename: z.ZodString;
|
@@ -10277,8 +11361,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10277
11361
|
addressLine2?: string | null | undefined;
|
10278
11362
|
addressLine3?: string | null | undefined;
|
10279
11363
|
postcodeOrZip?: string | null | undefined;
|
10280
|
-
}
|
10281
|
-
|
11364
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11365
|
+
firstname: z.ZodString;
|
11366
|
+
surname: z.ZodString;
|
11367
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11368
|
+
}, "strip", z.ZodTypeAny, {
|
11369
|
+
firstname: string;
|
11370
|
+
surname: string;
|
11371
|
+
middlename?: string | null | undefined;
|
11372
|
+
}, {
|
11373
|
+
firstname: string;
|
11374
|
+
surname: string;
|
11375
|
+
middlename?: string | null | undefined;
|
11376
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11377
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
10282
11378
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10283
11379
|
}, {
|
10284
11380
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
@@ -10300,6 +11396,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10300
11396
|
residentialArea?: string | null | undefined;
|
10301
11397
|
street?: string | null | undefined;
|
10302
11398
|
zipCode?: string | null | undefined;
|
11399
|
+
} | {
|
11400
|
+
firstname: string;
|
11401
|
+
surname: string;
|
11402
|
+
middlename?: string | null | undefined;
|
10303
11403
|
} | {
|
10304
11404
|
country: string;
|
10305
11405
|
district: string;
|
@@ -10322,8 +11422,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10322
11422
|
option: string;
|
10323
11423
|
filename: string;
|
10324
11424
|
originalFilename: string;
|
10325
|
-
}[] | [string, string] | undefined>;
|
10326
|
-
eventId: string
|
11425
|
+
}[] | [string, string] | null | undefined>;
|
11426
|
+
eventId: string & z.BRAND<"UUID">;
|
10327
11427
|
annotation?: Record<string, string | number | boolean | {
|
10328
11428
|
type: string;
|
10329
11429
|
filename: string;
|
@@ -10339,6 +11439,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10339
11439
|
residentialArea?: string | null | undefined;
|
10340
11440
|
street?: string | null | undefined;
|
10341
11441
|
zipCode?: string | null | undefined;
|
11442
|
+
} | {
|
11443
|
+
firstname: string;
|
11444
|
+
surname: string;
|
11445
|
+
middlename?: string | null | undefined;
|
10342
11446
|
} | {
|
10343
11447
|
country: string;
|
10344
11448
|
district: string;
|
@@ -10361,8 +11465,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10361
11465
|
option: string;
|
10362
11466
|
filename: string;
|
10363
11467
|
originalFilename: string;
|
10364
|
-
}[] | [string, string] | undefined> | undefined;
|
10365
|
-
originalActionId?: string | undefined;
|
11468
|
+
}[] | [string, string] | null | undefined> | undefined;
|
11469
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
10366
11470
|
keepAssignment?: boolean | undefined;
|
10367
11471
|
}, {
|
10368
11472
|
transactionId: string;
|
@@ -10383,6 +11487,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10383
11487
|
residentialArea?: string | null | undefined;
|
10384
11488
|
street?: string | null | undefined;
|
10385
11489
|
zipCode?: string | null | undefined;
|
11490
|
+
} | {
|
11491
|
+
firstname: string;
|
11492
|
+
surname: string;
|
11493
|
+
middlename?: string | null | undefined;
|
10386
11494
|
} | {
|
10387
11495
|
country: string;
|
10388
11496
|
district: string;
|
@@ -10405,7 +11513,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10405
11513
|
option: string;
|
10406
11514
|
filename: string;
|
10407
11515
|
originalFilename: string;
|
10408
|
-
}[] | [string, string] | undefined> | undefined;
|
11516
|
+
}[] | [string, string] | null | undefined> | undefined;
|
10409
11517
|
annotation?: Record<string, string | number | boolean | {
|
10410
11518
|
type: string;
|
10411
11519
|
filename: string;
|
@@ -10421,6 +11529,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10421
11529
|
residentialArea?: string | null | undefined;
|
10422
11530
|
street?: string | null | undefined;
|
10423
11531
|
zipCode?: string | null | undefined;
|
11532
|
+
} | {
|
11533
|
+
firstname: string;
|
11534
|
+
surname: string;
|
11535
|
+
middlename?: string | null | undefined;
|
10424
11536
|
} | {
|
10425
11537
|
country: string;
|
10426
11538
|
district: string;
|
@@ -10443,11 +11555,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10443
11555
|
option: string;
|
10444
11556
|
filename: string;
|
10445
11557
|
originalFilename: string;
|
10446
|
-
}[] | [string, string] | undefined> | undefined;
|
11558
|
+
}[] | [string, string] | null | undefined> | undefined;
|
10447
11559
|
originalActionId?: string | undefined;
|
10448
11560
|
keepAssignment?: boolean | undefined;
|
10449
11561
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10450
|
-
eventId: z.ZodString
|
11562
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
10451
11563
|
transactionId: z.ZodString;
|
10452
11564
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10453
11565
|
filename: z.ZodString;
|
@@ -10562,7 +11674,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10562
11674
|
addressLine2?: string | null | undefined;
|
10563
11675
|
addressLine3?: string | null | undefined;
|
10564
11676
|
postcodeOrZip?: string | null | undefined;
|
10565
|
-
}
|
11677
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11678
|
+
firstname: z.ZodString;
|
11679
|
+
surname: z.ZodString;
|
11680
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11681
|
+
}, "strip", z.ZodTypeAny, {
|
11682
|
+
firstname: string;
|
11683
|
+
surname: string;
|
11684
|
+
middlename?: string | null | undefined;
|
11685
|
+
}, {
|
11686
|
+
firstname: string;
|
11687
|
+
surname: string;
|
11688
|
+
middlename?: string | null | undefined;
|
11689
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10566
11690
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10567
11691
|
filename: z.ZodString;
|
10568
11692
|
originalFilename: z.ZodString;
|
@@ -10676,8 +11800,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10676
11800
|
addressLine2?: string | null | undefined;
|
10677
11801
|
addressLine3?: string | null | undefined;
|
10678
11802
|
postcodeOrZip?: string | null | undefined;
|
10679
|
-
}
|
10680
|
-
|
11803
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11804
|
+
firstname: z.ZodString;
|
11805
|
+
surname: z.ZodString;
|
11806
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11807
|
+
}, "strip", z.ZodTypeAny, {
|
11808
|
+
firstname: string;
|
11809
|
+
surname: string;
|
11810
|
+
middlename?: string | null | undefined;
|
11811
|
+
}, {
|
11812
|
+
firstname: string;
|
11813
|
+
surname: string;
|
11814
|
+
middlename?: string | null | undefined;
|
11815
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11816
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
10681
11817
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10682
11818
|
}, {
|
10683
11819
|
type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
|
@@ -10699,6 +11835,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10699
11835
|
residentialArea?: string | null | undefined;
|
10700
11836
|
street?: string | null | undefined;
|
10701
11837
|
zipCode?: string | null | undefined;
|
11838
|
+
} | {
|
11839
|
+
firstname: string;
|
11840
|
+
surname: string;
|
11841
|
+
middlename?: string | null | undefined;
|
10702
11842
|
} | {
|
10703
11843
|
country: string;
|
10704
11844
|
district: string;
|
@@ -10721,8 +11861,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10721
11861
|
option: string;
|
10722
11862
|
filename: string;
|
10723
11863
|
originalFilename: string;
|
10724
|
-
}[] | [string, string] | undefined>;
|
10725
|
-
eventId: string
|
11864
|
+
}[] | [string, string] | null | undefined>;
|
11865
|
+
eventId: string & z.BRAND<"UUID">;
|
10726
11866
|
annotation?: Record<string, string | number | boolean | {
|
10727
11867
|
type: string;
|
10728
11868
|
filename: string;
|
@@ -10738,6 +11878,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10738
11878
|
residentialArea?: string | null | undefined;
|
10739
11879
|
street?: string | null | undefined;
|
10740
11880
|
zipCode?: string | null | undefined;
|
11881
|
+
} | {
|
11882
|
+
firstname: string;
|
11883
|
+
surname: string;
|
11884
|
+
middlename?: string | null | undefined;
|
10741
11885
|
} | {
|
10742
11886
|
country: string;
|
10743
11887
|
district: string;
|
@@ -10760,8 +11904,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10760
11904
|
option: string;
|
10761
11905
|
filename: string;
|
10762
11906
|
originalFilename: string;
|
10763
|
-
}[] | [string, string] | undefined> | undefined;
|
10764
|
-
originalActionId?: string | undefined;
|
11907
|
+
}[] | [string, string] | null | undefined> | undefined;
|
11908
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
10765
11909
|
keepAssignment?: boolean | undefined;
|
10766
11910
|
}, {
|
10767
11911
|
transactionId: string;
|
@@ -10782,6 +11926,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10782
11926
|
residentialArea?: string | null | undefined;
|
10783
11927
|
street?: string | null | undefined;
|
10784
11928
|
zipCode?: string | null | undefined;
|
11929
|
+
} | {
|
11930
|
+
firstname: string;
|
11931
|
+
surname: string;
|
11932
|
+
middlename?: string | null | undefined;
|
10785
11933
|
} | {
|
10786
11934
|
country: string;
|
10787
11935
|
district: string;
|
@@ -10804,7 +11952,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10804
11952
|
option: string;
|
10805
11953
|
filename: string;
|
10806
11954
|
originalFilename: string;
|
10807
|
-
}[] | [string, string] | undefined> | undefined;
|
11955
|
+
}[] | [string, string] | null | undefined> | undefined;
|
10808
11956
|
annotation?: Record<string, string | number | boolean | {
|
10809
11957
|
type: string;
|
10810
11958
|
filename: string;
|
@@ -10820,6 +11968,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10820
11968
|
residentialArea?: string | null | undefined;
|
10821
11969
|
street?: string | null | undefined;
|
10822
11970
|
zipCode?: string | null | undefined;
|
11971
|
+
} | {
|
11972
|
+
firstname: string;
|
11973
|
+
surname: string;
|
11974
|
+
middlename?: string | null | undefined;
|
10823
11975
|
} | {
|
10824
11976
|
country: string;
|
10825
11977
|
district: string;
|
@@ -10842,11 +11994,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10842
11994
|
option: string;
|
10843
11995
|
filename: string;
|
10844
11996
|
originalFilename: string;
|
10845
|
-
}[] | [string, string] | undefined> | undefined;
|
11997
|
+
}[] | [string, string] | null | undefined> | undefined;
|
10846
11998
|
originalActionId?: string | undefined;
|
10847
11999
|
keepAssignment?: boolean | undefined;
|
10848
12000
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10849
|
-
eventId: z.ZodString
|
12001
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
10850
12002
|
transactionId: z.ZodString;
|
10851
12003
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10852
12004
|
filename: z.ZodString;
|
@@ -10961,7 +12113,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10961
12113
|
addressLine2?: string | null | undefined;
|
10962
12114
|
addressLine3?: string | null | undefined;
|
10963
12115
|
postcodeOrZip?: string | null | undefined;
|
10964
|
-
}
|
12116
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12117
|
+
firstname: z.ZodString;
|
12118
|
+
surname: z.ZodString;
|
12119
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12120
|
+
}, "strip", z.ZodTypeAny, {
|
12121
|
+
firstname: string;
|
12122
|
+
surname: string;
|
12123
|
+
middlename?: string | null | undefined;
|
12124
|
+
}, {
|
12125
|
+
firstname: string;
|
12126
|
+
surname: string;
|
12127
|
+
middlename?: string | null | undefined;
|
12128
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10965
12129
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10966
12130
|
filename: z.ZodString;
|
10967
12131
|
originalFilename: z.ZodString;
|
@@ -11075,8 +12239,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11075
12239
|
addressLine2?: string | null | undefined;
|
11076
12240
|
addressLine3?: string | null | undefined;
|
11077
12241
|
postcodeOrZip?: string | null | undefined;
|
11078
|
-
}
|
11079
|
-
|
12242
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12243
|
+
firstname: z.ZodString;
|
12244
|
+
surname: z.ZodString;
|
12245
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12246
|
+
}, "strip", z.ZodTypeAny, {
|
12247
|
+
firstname: string;
|
12248
|
+
surname: string;
|
12249
|
+
middlename?: string | null | undefined;
|
12250
|
+
}, {
|
12251
|
+
firstname: string;
|
12252
|
+
surname: string;
|
12253
|
+
middlename?: string | null | undefined;
|
12254
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12255
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11080
12256
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11081
12257
|
}, {
|
11082
12258
|
requestId: z.ZodString;
|
@@ -11099,6 +12275,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11099
12275
|
residentialArea?: string | null | undefined;
|
11100
12276
|
street?: string | null | undefined;
|
11101
12277
|
zipCode?: string | null | undefined;
|
12278
|
+
} | {
|
12279
|
+
firstname: string;
|
12280
|
+
surname: string;
|
12281
|
+
middlename?: string | null | undefined;
|
11102
12282
|
} | {
|
11103
12283
|
country: string;
|
11104
12284
|
district: string;
|
@@ -11121,9 +12301,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11121
12301
|
option: string;
|
11122
12302
|
filename: string;
|
11123
12303
|
originalFilename: string;
|
11124
|
-
}[] | [string, string] | undefined>;
|
12304
|
+
}[] | [string, string] | null | undefined>;
|
11125
12305
|
requestId: string;
|
11126
|
-
eventId: string
|
12306
|
+
eventId: string & z.BRAND<"UUID">;
|
11127
12307
|
annotation?: Record<string, string | number | boolean | {
|
11128
12308
|
type: string;
|
11129
12309
|
filename: string;
|
@@ -11139,6 +12319,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11139
12319
|
residentialArea?: string | null | undefined;
|
11140
12320
|
street?: string | null | undefined;
|
11141
12321
|
zipCode?: string | null | undefined;
|
12322
|
+
} | {
|
12323
|
+
firstname: string;
|
12324
|
+
surname: string;
|
12325
|
+
middlename?: string | null | undefined;
|
11142
12326
|
} | {
|
11143
12327
|
country: string;
|
11144
12328
|
district: string;
|
@@ -11161,8 +12345,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11161
12345
|
option: string;
|
11162
12346
|
filename: string;
|
11163
12347
|
originalFilename: string;
|
11164
|
-
}[] | [string, string] | undefined> | undefined;
|
11165
|
-
originalActionId?: string | undefined;
|
12348
|
+
}[] | [string, string] | null | undefined> | undefined;
|
12349
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
11166
12350
|
keepAssignment?: boolean | undefined;
|
11167
12351
|
}, {
|
11168
12352
|
transactionId: string;
|
@@ -11184,6 +12368,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11184
12368
|
residentialArea?: string | null | undefined;
|
11185
12369
|
street?: string | null | undefined;
|
11186
12370
|
zipCode?: string | null | undefined;
|
12371
|
+
} | {
|
12372
|
+
firstname: string;
|
12373
|
+
surname: string;
|
12374
|
+
middlename?: string | null | undefined;
|
11187
12375
|
} | {
|
11188
12376
|
country: string;
|
11189
12377
|
district: string;
|
@@ -11206,7 +12394,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11206
12394
|
option: string;
|
11207
12395
|
filename: string;
|
11208
12396
|
originalFilename: string;
|
11209
|
-
}[] | [string, string] | undefined> | undefined;
|
12397
|
+
}[] | [string, string] | null | undefined> | undefined;
|
11210
12398
|
annotation?: Record<string, string | number | boolean | {
|
11211
12399
|
type: string;
|
11212
12400
|
filename: string;
|
@@ -11222,6 +12410,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11222
12410
|
residentialArea?: string | null | undefined;
|
11223
12411
|
street?: string | null | undefined;
|
11224
12412
|
zipCode?: string | null | undefined;
|
12413
|
+
} | {
|
12414
|
+
firstname: string;
|
12415
|
+
surname: string;
|
12416
|
+
middlename?: string | null | undefined;
|
11225
12417
|
} | {
|
11226
12418
|
country: string;
|
11227
12419
|
district: string;
|
@@ -11244,11 +12436,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11244
12436
|
option: string;
|
11245
12437
|
filename: string;
|
11246
12438
|
originalFilename: string;
|
11247
|
-
}[] | [string, string] | undefined> | undefined;
|
12439
|
+
}[] | [string, string] | null | undefined> | undefined;
|
11248
12440
|
originalActionId?: string | undefined;
|
11249
12441
|
keepAssignment?: boolean | undefined;
|
11250
12442
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11251
|
-
eventId: z.ZodString
|
12443
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
11252
12444
|
transactionId: z.ZodString;
|
11253
12445
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11254
12446
|
filename: z.ZodString;
|
@@ -11363,7 +12555,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11363
12555
|
addressLine2?: string | null | undefined;
|
11364
12556
|
addressLine3?: string | null | undefined;
|
11365
12557
|
postcodeOrZip?: string | null | undefined;
|
11366
|
-
}
|
12558
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12559
|
+
firstname: z.ZodString;
|
12560
|
+
surname: z.ZodString;
|
12561
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12562
|
+
}, "strip", z.ZodTypeAny, {
|
12563
|
+
firstname: string;
|
12564
|
+
surname: string;
|
12565
|
+
middlename?: string | null | undefined;
|
12566
|
+
}, {
|
12567
|
+
firstname: string;
|
12568
|
+
surname: string;
|
12569
|
+
middlename?: string | null | undefined;
|
12570
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11367
12571
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11368
12572
|
filename: z.ZodString;
|
11369
12573
|
originalFilename: z.ZodString;
|
@@ -11477,8 +12681,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11477
12681
|
addressLine2?: string | null | undefined;
|
11478
12682
|
addressLine3?: string | null | undefined;
|
11479
12683
|
postcodeOrZip?: string | null | undefined;
|
11480
|
-
}
|
11481
|
-
|
12684
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12685
|
+
firstname: z.ZodString;
|
12686
|
+
surname: z.ZodString;
|
12687
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12688
|
+
}, "strip", z.ZodTypeAny, {
|
12689
|
+
firstname: string;
|
12690
|
+
surname: string;
|
12691
|
+
middlename?: string | null | undefined;
|
12692
|
+
}, {
|
12693
|
+
firstname: string;
|
12694
|
+
surname: string;
|
12695
|
+
middlename?: string | null | undefined;
|
12696
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12697
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11482
12698
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11483
12699
|
}, {
|
11484
12700
|
requestId: z.ZodString;
|
@@ -11501,6 +12717,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11501
12717
|
residentialArea?: string | null | undefined;
|
11502
12718
|
street?: string | null | undefined;
|
11503
12719
|
zipCode?: string | null | undefined;
|
12720
|
+
} | {
|
12721
|
+
firstname: string;
|
12722
|
+
surname: string;
|
12723
|
+
middlename?: string | null | undefined;
|
11504
12724
|
} | {
|
11505
12725
|
country: string;
|
11506
12726
|
district: string;
|
@@ -11523,9 +12743,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11523
12743
|
option: string;
|
11524
12744
|
filename: string;
|
11525
12745
|
originalFilename: string;
|
11526
|
-
}[] | [string, string] | undefined>;
|
12746
|
+
}[] | [string, string] | null | undefined>;
|
11527
12747
|
requestId: string;
|
11528
|
-
eventId: string
|
12748
|
+
eventId: string & z.BRAND<"UUID">;
|
11529
12749
|
annotation?: Record<string, string | number | boolean | {
|
11530
12750
|
type: string;
|
11531
12751
|
filename: string;
|
@@ -11541,6 +12761,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11541
12761
|
residentialArea?: string | null | undefined;
|
11542
12762
|
street?: string | null | undefined;
|
11543
12763
|
zipCode?: string | null | undefined;
|
12764
|
+
} | {
|
12765
|
+
firstname: string;
|
12766
|
+
surname: string;
|
12767
|
+
middlename?: string | null | undefined;
|
11544
12768
|
} | {
|
11545
12769
|
country: string;
|
11546
12770
|
district: string;
|
@@ -11563,8 +12787,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11563
12787
|
option: string;
|
11564
12788
|
filename: string;
|
11565
12789
|
originalFilename: string;
|
11566
|
-
}[] | [string, string] | undefined> | undefined;
|
11567
|
-
originalActionId?: string | undefined;
|
12790
|
+
}[] | [string, string] | null | undefined> | undefined;
|
12791
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
11568
12792
|
keepAssignment?: boolean | undefined;
|
11569
12793
|
}, {
|
11570
12794
|
transactionId: string;
|
@@ -11586,6 +12810,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11586
12810
|
residentialArea?: string | null | undefined;
|
11587
12811
|
street?: string | null | undefined;
|
11588
12812
|
zipCode?: string | null | undefined;
|
12813
|
+
} | {
|
12814
|
+
firstname: string;
|
12815
|
+
surname: string;
|
12816
|
+
middlename?: string | null | undefined;
|
11589
12817
|
} | {
|
11590
12818
|
country: string;
|
11591
12819
|
district: string;
|
@@ -11608,7 +12836,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11608
12836
|
option: string;
|
11609
12837
|
filename: string;
|
11610
12838
|
originalFilename: string;
|
11611
|
-
}[] | [string, string] | undefined> | undefined;
|
12839
|
+
}[] | [string, string] | null | undefined> | undefined;
|
11612
12840
|
annotation?: Record<string, string | number | boolean | {
|
11613
12841
|
type: string;
|
11614
12842
|
filename: string;
|
@@ -11624,6 +12852,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11624
12852
|
residentialArea?: string | null | undefined;
|
11625
12853
|
street?: string | null | undefined;
|
11626
12854
|
zipCode?: string | null | undefined;
|
12855
|
+
} | {
|
12856
|
+
firstname: string;
|
12857
|
+
surname: string;
|
12858
|
+
middlename?: string | null | undefined;
|
11627
12859
|
} | {
|
11628
12860
|
country: string;
|
11629
12861
|
district: string;
|
@@ -11646,11 +12878,11 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11646
12878
|
option: string;
|
11647
12879
|
filename: string;
|
11648
12880
|
originalFilename: string;
|
11649
|
-
}[] | [string, string] | undefined> | undefined;
|
12881
|
+
}[] | [string, string] | null | undefined> | undefined;
|
11650
12882
|
originalActionId?: string | undefined;
|
11651
12883
|
keepAssignment?: boolean | undefined;
|
11652
12884
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11653
|
-
eventId: z.ZodString
|
12885
|
+
eventId: z.ZodBranded<z.ZodString, "UUID">;
|
11654
12886
|
transactionId: z.ZodString;
|
11655
12887
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11656
12888
|
filename: z.ZodString;
|
@@ -11765,7 +12997,19 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11765
12997
|
addressLine2?: string | null | undefined;
|
11766
12998
|
addressLine3?: string | null | undefined;
|
11767
12999
|
postcodeOrZip?: string | null | undefined;
|
11768
|
-
}
|
13000
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13001
|
+
firstname: z.ZodString;
|
13002
|
+
surname: z.ZodString;
|
13003
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13004
|
+
}, "strip", z.ZodTypeAny, {
|
13005
|
+
firstname: string;
|
13006
|
+
surname: string;
|
13007
|
+
middlename?: string | null | undefined;
|
13008
|
+
}, {
|
13009
|
+
firstname: string;
|
13010
|
+
surname: string;
|
13011
|
+
middlename?: string | null | undefined;
|
13012
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11769
13013
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11770
13014
|
filename: z.ZodString;
|
11771
13015
|
originalFilename: z.ZodString;
|
@@ -11879,8 +13123,20 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11879
13123
|
addressLine2?: string | null | undefined;
|
11880
13124
|
addressLine3?: string | null | undefined;
|
11881
13125
|
postcodeOrZip?: string | null | undefined;
|
11882
|
-
}
|
11883
|
-
|
13126
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13127
|
+
firstname: z.ZodString;
|
13128
|
+
surname: z.ZodString;
|
13129
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13130
|
+
}, "strip", z.ZodTypeAny, {
|
13131
|
+
firstname: string;
|
13132
|
+
surname: string;
|
13133
|
+
middlename?: string | null | undefined;
|
13134
|
+
}, {
|
13135
|
+
firstname: string;
|
13136
|
+
surname: string;
|
13137
|
+
middlename?: string | null | undefined;
|
13138
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13139
|
+
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11884
13140
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11885
13141
|
}, {
|
11886
13142
|
type: z.ZodDefault<z.ZodLiteral<"READ">>;
|
@@ -11902,6 +13158,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11902
13158
|
residentialArea?: string | null | undefined;
|
11903
13159
|
street?: string | null | undefined;
|
11904
13160
|
zipCode?: string | null | undefined;
|
13161
|
+
} | {
|
13162
|
+
firstname: string;
|
13163
|
+
surname: string;
|
13164
|
+
middlename?: string | null | undefined;
|
11905
13165
|
} | {
|
11906
13166
|
country: string;
|
11907
13167
|
district: string;
|
@@ -11924,8 +13184,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11924
13184
|
option: string;
|
11925
13185
|
filename: string;
|
11926
13186
|
originalFilename: string;
|
11927
|
-
}[] | [string, string] | undefined>;
|
11928
|
-
eventId: string
|
13187
|
+
}[] | [string, string] | null | undefined>;
|
13188
|
+
eventId: string & z.BRAND<"UUID">;
|
11929
13189
|
annotation?: Record<string, string | number | boolean | {
|
11930
13190
|
type: string;
|
11931
13191
|
filename: string;
|
@@ -11941,6 +13201,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11941
13201
|
residentialArea?: string | null | undefined;
|
11942
13202
|
street?: string | null | undefined;
|
11943
13203
|
zipCode?: string | null | undefined;
|
13204
|
+
} | {
|
13205
|
+
firstname: string;
|
13206
|
+
surname: string;
|
13207
|
+
middlename?: string | null | undefined;
|
11944
13208
|
} | {
|
11945
13209
|
country: string;
|
11946
13210
|
district: string;
|
@@ -11963,8 +13227,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11963
13227
|
option: string;
|
11964
13228
|
filename: string;
|
11965
13229
|
originalFilename: string;
|
11966
|
-
}[] | [string, string] | undefined> | undefined;
|
11967
|
-
originalActionId?: string | undefined;
|
13230
|
+
}[] | [string, string] | null | undefined> | undefined;
|
13231
|
+
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
11968
13232
|
keepAssignment?: boolean | undefined;
|
11969
13233
|
}, {
|
11970
13234
|
transactionId: string;
|
@@ -11985,6 +13249,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11985
13249
|
residentialArea?: string | null | undefined;
|
11986
13250
|
street?: string | null | undefined;
|
11987
13251
|
zipCode?: string | null | undefined;
|
13252
|
+
} | {
|
13253
|
+
firstname: string;
|
13254
|
+
surname: string;
|
13255
|
+
middlename?: string | null | undefined;
|
11988
13256
|
} | {
|
11989
13257
|
country: string;
|
11990
13258
|
district: string;
|
@@ -12007,7 +13275,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12007
13275
|
option: string;
|
12008
13276
|
filename: string;
|
12009
13277
|
originalFilename: string;
|
12010
|
-
}[] | [string, string] | undefined> | undefined;
|
13278
|
+
}[] | [string, string] | null | undefined> | undefined;
|
12011
13279
|
annotation?: Record<string, string | number | boolean | {
|
12012
13280
|
type: string;
|
12013
13281
|
filename: string;
|
@@ -12023,6 +13291,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12023
13291
|
residentialArea?: string | null | undefined;
|
12024
13292
|
street?: string | null | undefined;
|
12025
13293
|
zipCode?: string | null | undefined;
|
13294
|
+
} | {
|
13295
|
+
firstname: string;
|
13296
|
+
surname: string;
|
13297
|
+
middlename?: string | null | undefined;
|
12026
13298
|
} | {
|
12027
13299
|
country: string;
|
12028
13300
|
district: string;
|
@@ -12045,7 +13317,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12045
13317
|
option: string;
|
12046
13318
|
filename: string;
|
12047
13319
|
originalFilename: string;
|
12048
|
-
}[] | [string, string] | undefined> | undefined;
|
13320
|
+
}[] | [string, string] | null | undefined> | undefined;
|
12049
13321
|
originalActionId?: string | undefined;
|
12050
13322
|
keepAssignment?: boolean | undefined;
|
12051
13323
|
}>]>;
|