@opencrvs/toolkit 1.8.0-rc.fd8a78f → 1.8.0-rc.fd936ab
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 +447 -14227
- package/dist/commons/conditionals/conditionals.d.ts +6 -14
- package/dist/commons/conditionals/validate.d.ts +6 -10
- package/dist/commons/events/ActionConfig.d.ts +1726 -117415
- package/dist/commons/events/ActionDocument.d.ts +383 -2305
- package/dist/commons/events/ActionInput.d.ts +303 -1583
- package/dist/commons/events/ActionType.d.ts +0 -4
- package/dist/commons/events/AdvancedSearchConfig.d.ts +22 -1029
- package/dist/commons/events/CompositeFieldValue.d.ts +0 -31
- package/dist/commons/events/Draft.d.ts +29 -143
- package/dist/commons/events/EventConfig.d.ts +1361 -56376
- package/dist/commons/events/EventDocument.d.ts +264 -1428
- package/dist/commons/events/EventIndex.d.ts +25 -1590
- package/dist/commons/events/EventMetadata.d.ts +43 -299
- package/dist/commons/events/FieldConfig.d.ts +1060 -5458
- package/dist/commons/events/FieldType.d.ts +3 -6
- package/dist/commons/events/FieldTypeMapping.d.ts +54 -103
- package/dist/commons/events/FieldValue.d.ts +8 -49
- package/dist/commons/events/FormConfig.d.ts +524 -49166
- package/dist/commons/events/PageConfig.d.ts +208 -12210
- package/dist/commons/events/SummaryConfig.d.ts +42 -93
- package/dist/commons/events/User.d.ts +2 -31
- package/dist/commons/events/WorkqueueConfig.d.ts +20 -4803
- package/dist/commons/events/defineConfig.d.ts +75 -9010
- package/dist/commons/events/index.d.ts +0 -8
- package/dist/commons/events/test.utils.d.ts +78 -147
- package/dist/commons/events/utils.d.ts +68 -13352
- package/dist/conditionals/index.js +36 -76
- package/dist/events/index.js +1504 -3807
- package/dist/scopes/index.d.ts +6 -94
- package/dist/scopes/index.js +21 -42
- package/package.json +2 -3
- package/dist/commons/events/Constants.d.ts +0 -3
- package/dist/commons/events/CountryConfigQueryInput.d.ts +0 -2982
- package/dist/commons/events/CreatedAtLocation.d.ts +0 -3
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +0 -53
- package/dist/commons/events/event.d.ts +0 -54
- package/dist/commons/events/field.d.ts +0 -77
- package/dist/commons/events/scopes.d.ts +0 -45
- package/dist/commons/events/serializer.d.ts +0 -2
- package/dist/commons/events/workqueueDefaultColumns.d.ts +0 -3
@@ -6,13 +6,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
6
6
|
updatedAt: z.ZodString;
|
7
7
|
actions: z.ZodArray<z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
8
8
|
id: z.ZodString;
|
9
|
-
transactionId: z.ZodString;
|
10
9
|
createdAt: z.ZodString;
|
11
10
|
createdBy: z.ZodString;
|
12
|
-
|
13
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
16
12
|
filename: z.ZodString;
|
17
13
|
originalFilename: z.ZodString;
|
18
14
|
type: z.ZodString;
|
@@ -125,20 +121,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
125
121
|
addressLine2?: string | null | undefined;
|
126
122
|
addressLine3?: string | null | undefined;
|
127
123
|
postcodeOrZip?: string | null | undefined;
|
128
|
-
}
|
129
|
-
|
130
|
-
surname: z.ZodString;
|
131
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
132
|
-
}, "strip", z.ZodTypeAny, {
|
133
|
-
firstname: string;
|
134
|
-
surname: string;
|
135
|
-
middlename?: string | null | undefined;
|
136
|
-
}, {
|
137
|
-
firstname: string;
|
138
|
-
surname: string;
|
139
|
-
middlename?: string | null | undefined;
|
140
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
141
|
-
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<{
|
124
|
+
}>]>>;
|
125
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
142
126
|
filename: z.ZodString;
|
143
127
|
originalFilename: z.ZodString;
|
144
128
|
type: z.ZodString;
|
@@ -251,19 +235,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
251
235
|
addressLine2?: string | null | undefined;
|
252
236
|
addressLine3?: string | null | undefined;
|
253
237
|
postcodeOrZip?: string | null | undefined;
|
254
|
-
}
|
255
|
-
|
256
|
-
surname: z.ZodString;
|
257
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
258
|
-
}, "strip", z.ZodTypeAny, {
|
259
|
-
firstname: string;
|
260
|
-
surname: string;
|
261
|
-
middlename?: string | null | undefined;
|
262
|
-
}, {
|
263
|
-
firstname: string;
|
264
|
-
surname: string;
|
265
|
-
middlename?: string | null | undefined;
|
266
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
238
|
+
}>]>>>;
|
239
|
+
createdAtLocation: z.ZodString;
|
267
240
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
268
241
|
originalActionId: z.ZodOptional<z.ZodString>;
|
269
242
|
}, {
|
@@ -272,10 +245,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
272
245
|
type: "CREATE";
|
273
246
|
id: string;
|
274
247
|
status: "Rejected" | "Requested" | "Accepted";
|
275
|
-
transactionId: string;
|
276
248
|
createdAt: string;
|
277
249
|
createdBy: string;
|
278
|
-
createdByRole: string;
|
279
250
|
declaration: Record<string, string | number | boolean | {
|
280
251
|
type: string;
|
281
252
|
filename: string;
|
@@ -291,10 +262,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
291
262
|
residentialArea?: string | null | undefined;
|
292
263
|
street?: string | null | undefined;
|
293
264
|
zipCode?: string | null | undefined;
|
294
|
-
} | {
|
295
|
-
firstname: string;
|
296
|
-
surname: string;
|
297
|
-
middlename?: string | null | undefined;
|
298
265
|
} | {
|
299
266
|
country: string;
|
300
267
|
district: string;
|
@@ -317,9 +284,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
317
284
|
option: string;
|
318
285
|
filename: string;
|
319
286
|
originalFilename: string;
|
320
|
-
}[] |
|
321
|
-
|
322
|
-
createdAtLocation?: string | null | undefined;
|
287
|
+
}[] | undefined>;
|
288
|
+
createdAtLocation: string;
|
323
289
|
annotation?: Record<string, string | number | boolean | {
|
324
290
|
type: string;
|
325
291
|
filename: string;
|
@@ -335,10 +301,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
335
301
|
residentialArea?: string | null | undefined;
|
336
302
|
street?: string | null | undefined;
|
337
303
|
zipCode?: string | null | undefined;
|
338
|
-
} | {
|
339
|
-
firstname: string;
|
340
|
-
surname: string;
|
341
|
-
middlename?: string | null | undefined;
|
342
304
|
} | {
|
343
305
|
country: string;
|
344
306
|
district: string;
|
@@ -361,16 +323,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
361
323
|
option: string;
|
362
324
|
filename: string;
|
363
325
|
originalFilename: string;
|
364
|
-
}[] |
|
326
|
+
}[] | undefined> | undefined;
|
365
327
|
originalActionId?: string | undefined;
|
366
328
|
}, {
|
367
329
|
type: "CREATE";
|
368
330
|
id: string;
|
369
331
|
status: "Rejected" | "Requested" | "Accepted";
|
370
|
-
transactionId: string;
|
371
332
|
createdAt: string;
|
372
333
|
createdBy: string;
|
373
|
-
createdByRole: string;
|
374
334
|
declaration: Record<string, string | number | boolean | {
|
375
335
|
type: string;
|
376
336
|
filename: string;
|
@@ -386,10 +346,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
386
346
|
residentialArea?: string | null | undefined;
|
387
347
|
street?: string | null | undefined;
|
388
348
|
zipCode?: string | null | undefined;
|
389
|
-
} | {
|
390
|
-
firstname: string;
|
391
|
-
surname: string;
|
392
|
-
middlename?: string | null | undefined;
|
393
349
|
} | {
|
394
350
|
country: string;
|
395
351
|
district: string;
|
@@ -412,9 +368,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
412
368
|
option: string;
|
413
369
|
filename: string;
|
414
370
|
originalFilename: string;
|
415
|
-
}[] |
|
416
|
-
|
417
|
-
createdAtLocation?: string | null | undefined;
|
371
|
+
}[] | undefined>;
|
372
|
+
createdAtLocation: string;
|
418
373
|
annotation?: Record<string, string | number | boolean | {
|
419
374
|
type: string;
|
420
375
|
filename: string;
|
@@ -430,10 +385,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
430
385
|
residentialArea?: string | null | undefined;
|
431
386
|
street?: string | null | undefined;
|
432
387
|
zipCode?: string | null | undefined;
|
433
|
-
} | {
|
434
|
-
firstname: string;
|
435
|
-
surname: string;
|
436
|
-
middlename?: string | null | undefined;
|
437
388
|
} | {
|
438
389
|
country: string;
|
439
390
|
district: string;
|
@@ -456,17 +407,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
456
407
|
option: string;
|
457
408
|
filename: string;
|
458
409
|
originalFilename: string;
|
459
|
-
}[] |
|
410
|
+
}[] | undefined> | undefined;
|
460
411
|
originalActionId?: string | undefined;
|
461
412
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
462
413
|
id: z.ZodString;
|
463
|
-
transactionId: z.ZodString;
|
464
414
|
createdAt: z.ZodString;
|
465
415
|
createdBy: z.ZodString;
|
466
|
-
|
467
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
468
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
469
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
416
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
470
417
|
filename: z.ZodString;
|
471
418
|
originalFilename: z.ZodString;
|
472
419
|
type: z.ZodString;
|
@@ -579,20 +526,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
579
526
|
addressLine2?: string | null | undefined;
|
580
527
|
addressLine3?: string | null | undefined;
|
581
528
|
postcodeOrZip?: string | null | undefined;
|
582
|
-
}
|
583
|
-
|
584
|
-
surname: z.ZodString;
|
585
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
586
|
-
}, "strip", z.ZodTypeAny, {
|
587
|
-
firstname: string;
|
588
|
-
surname: string;
|
589
|
-
middlename?: string | null | undefined;
|
590
|
-
}, {
|
591
|
-
firstname: string;
|
592
|
-
surname: string;
|
593
|
-
middlename?: string | null | undefined;
|
594
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
595
|
-
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<{
|
529
|
+
}>]>>;
|
530
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
596
531
|
filename: z.ZodString;
|
597
532
|
originalFilename: z.ZodString;
|
598
533
|
type: z.ZodString;
|
@@ -705,19 +640,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
705
640
|
addressLine2?: string | null | undefined;
|
706
641
|
addressLine3?: string | null | undefined;
|
707
642
|
postcodeOrZip?: string | null | undefined;
|
708
|
-
}
|
709
|
-
|
710
|
-
surname: z.ZodString;
|
711
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
712
|
-
}, "strip", z.ZodTypeAny, {
|
713
|
-
firstname: string;
|
714
|
-
surname: string;
|
715
|
-
middlename?: string | null | undefined;
|
716
|
-
}, {
|
717
|
-
firstname: string;
|
718
|
-
surname: string;
|
719
|
-
middlename?: string | null | undefined;
|
720
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
643
|
+
}>]>>>;
|
644
|
+
createdAtLocation: z.ZodString;
|
721
645
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
722
646
|
originalActionId: z.ZodOptional<z.ZodString>;
|
723
647
|
}, {
|
@@ -726,10 +650,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
726
650
|
type: "VALIDATE";
|
727
651
|
id: string;
|
728
652
|
status: "Rejected" | "Requested" | "Accepted";
|
729
|
-
transactionId: string;
|
730
653
|
createdAt: string;
|
731
654
|
createdBy: string;
|
732
|
-
createdByRole: string;
|
733
655
|
declaration: Record<string, string | number | boolean | {
|
734
656
|
type: string;
|
735
657
|
filename: string;
|
@@ -745,10 +667,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
745
667
|
residentialArea?: string | null | undefined;
|
746
668
|
street?: string | null | undefined;
|
747
669
|
zipCode?: string | null | undefined;
|
748
|
-
} | {
|
749
|
-
firstname: string;
|
750
|
-
surname: string;
|
751
|
-
middlename?: string | null | undefined;
|
752
670
|
} | {
|
753
671
|
country: string;
|
754
672
|
district: string;
|
@@ -771,9 +689,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
771
689
|
option: string;
|
772
690
|
filename: string;
|
773
691
|
originalFilename: string;
|
774
|
-
}[] |
|
775
|
-
|
776
|
-
createdAtLocation?: string | null | undefined;
|
692
|
+
}[] | undefined>;
|
693
|
+
createdAtLocation: string;
|
777
694
|
annotation?: Record<string, string | number | boolean | {
|
778
695
|
type: string;
|
779
696
|
filename: string;
|
@@ -789,10 +706,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
789
706
|
residentialArea?: string | null | undefined;
|
790
707
|
street?: string | null | undefined;
|
791
708
|
zipCode?: string | null | undefined;
|
792
|
-
} | {
|
793
|
-
firstname: string;
|
794
|
-
surname: string;
|
795
|
-
middlename?: string | null | undefined;
|
796
709
|
} | {
|
797
710
|
country: string;
|
798
711
|
district: string;
|
@@ -815,16 +728,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
815
728
|
option: string;
|
816
729
|
filename: string;
|
817
730
|
originalFilename: string;
|
818
|
-
}[] |
|
731
|
+
}[] | undefined> | undefined;
|
819
732
|
originalActionId?: string | undefined;
|
820
733
|
}, {
|
821
734
|
type: "VALIDATE";
|
822
735
|
id: string;
|
823
736
|
status: "Rejected" | "Requested" | "Accepted";
|
824
|
-
transactionId: string;
|
825
737
|
createdAt: string;
|
826
738
|
createdBy: string;
|
827
|
-
createdByRole: string;
|
828
739
|
declaration: Record<string, string | number | boolean | {
|
829
740
|
type: string;
|
830
741
|
filename: string;
|
@@ -840,10 +751,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
840
751
|
residentialArea?: string | null | undefined;
|
841
752
|
street?: string | null | undefined;
|
842
753
|
zipCode?: string | null | undefined;
|
843
|
-
} | {
|
844
|
-
firstname: string;
|
845
|
-
surname: string;
|
846
|
-
middlename?: string | null | undefined;
|
847
754
|
} | {
|
848
755
|
country: string;
|
849
756
|
district: string;
|
@@ -866,9 +773,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
866
773
|
option: string;
|
867
774
|
filename: string;
|
868
775
|
originalFilename: string;
|
869
|
-
}[] |
|
870
|
-
|
871
|
-
createdAtLocation?: string | null | undefined;
|
776
|
+
}[] | undefined>;
|
777
|
+
createdAtLocation: string;
|
872
778
|
annotation?: Record<string, string | number | boolean | {
|
873
779
|
type: string;
|
874
780
|
filename: string;
|
@@ -884,10 +790,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
884
790
|
residentialArea?: string | null | undefined;
|
885
791
|
street?: string | null | undefined;
|
886
792
|
zipCode?: string | null | undefined;
|
887
|
-
} | {
|
888
|
-
firstname: string;
|
889
|
-
surname: string;
|
890
|
-
middlename?: string | null | undefined;
|
891
793
|
} | {
|
892
794
|
country: string;
|
893
795
|
district: string;
|
@@ -910,17 +812,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
910
812
|
option: string;
|
911
813
|
filename: string;
|
912
814
|
originalFilename: string;
|
913
|
-
}[] |
|
815
|
+
}[] | undefined> | undefined;
|
914
816
|
originalActionId?: string | undefined;
|
915
817
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
916
818
|
id: z.ZodString;
|
917
|
-
transactionId: z.ZodString;
|
918
819
|
createdAt: z.ZodString;
|
919
820
|
createdBy: z.ZodString;
|
920
|
-
|
921
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
922
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
923
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
821
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
924
822
|
filename: z.ZodString;
|
925
823
|
originalFilename: z.ZodString;
|
926
824
|
type: z.ZodString;
|
@@ -1033,20 +931,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1033
931
|
addressLine2?: string | null | undefined;
|
1034
932
|
addressLine3?: string | null | undefined;
|
1035
933
|
postcodeOrZip?: string | null | undefined;
|
1036
|
-
}
|
1037
|
-
|
1038
|
-
surname: z.ZodString;
|
1039
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1040
|
-
}, "strip", z.ZodTypeAny, {
|
1041
|
-
firstname: string;
|
1042
|
-
surname: string;
|
1043
|
-
middlename?: string | null | undefined;
|
1044
|
-
}, {
|
1045
|
-
firstname: string;
|
1046
|
-
surname: string;
|
1047
|
-
middlename?: string | null | undefined;
|
1048
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1049
|
-
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<{
|
934
|
+
}>]>>;
|
935
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1050
936
|
filename: z.ZodString;
|
1051
937
|
originalFilename: z.ZodString;
|
1052
938
|
type: z.ZodString;
|
@@ -1159,45 +1045,18 @@ export declare const EventDocument: z.ZodObject<{
|
|
1159
1045
|
addressLine2?: string | null | undefined;
|
1160
1046
|
addressLine3?: string | null | undefined;
|
1161
1047
|
postcodeOrZip?: string | null | undefined;
|
1162
|
-
}
|
1163
|
-
|
1164
|
-
surname: z.ZodString;
|
1165
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1166
|
-
}, "strip", z.ZodTypeAny, {
|
1167
|
-
firstname: string;
|
1168
|
-
surname: string;
|
1169
|
-
middlename?: string | null | undefined;
|
1170
|
-
}, {
|
1171
|
-
firstname: string;
|
1172
|
-
surname: string;
|
1173
|
-
middlename?: string | null | undefined;
|
1174
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1048
|
+
}>]>>>;
|
1049
|
+
createdAtLocation: z.ZodString;
|
1175
1050
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1176
1051
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1177
1052
|
}, {
|
1178
1053
|
type: z.ZodLiteral<"REJECT">;
|
1179
|
-
reason: z.ZodObject<{
|
1180
|
-
message: z.ZodString;
|
1181
|
-
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
1182
|
-
}, "strip", z.ZodTypeAny, {
|
1183
|
-
message: string;
|
1184
|
-
isDuplicate?: boolean | undefined;
|
1185
|
-
}, {
|
1186
|
-
message: string;
|
1187
|
-
isDuplicate?: boolean | undefined;
|
1188
|
-
}>;
|
1189
1054
|
}>, "strip", z.ZodTypeAny, {
|
1190
1055
|
type: "REJECT";
|
1191
1056
|
id: string;
|
1192
1057
|
status: "Rejected" | "Requested" | "Accepted";
|
1193
|
-
reason: {
|
1194
|
-
message: string;
|
1195
|
-
isDuplicate?: boolean | undefined;
|
1196
|
-
};
|
1197
|
-
transactionId: string;
|
1198
1058
|
createdAt: string;
|
1199
1059
|
createdBy: string;
|
1200
|
-
createdByRole: string;
|
1201
1060
|
declaration: Record<string, string | number | boolean | {
|
1202
1061
|
type: string;
|
1203
1062
|
filename: string;
|
@@ -1213,10 +1072,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1213
1072
|
residentialArea?: string | null | undefined;
|
1214
1073
|
street?: string | null | undefined;
|
1215
1074
|
zipCode?: string | null | undefined;
|
1216
|
-
} | {
|
1217
|
-
firstname: string;
|
1218
|
-
surname: string;
|
1219
|
-
middlename?: string | null | undefined;
|
1220
1075
|
} | {
|
1221
1076
|
country: string;
|
1222
1077
|
district: string;
|
@@ -1239,9 +1094,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1239
1094
|
option: string;
|
1240
1095
|
filename: string;
|
1241
1096
|
originalFilename: string;
|
1242
|
-
}[] |
|
1243
|
-
|
1244
|
-
createdAtLocation?: string | null | undefined;
|
1097
|
+
}[] | undefined>;
|
1098
|
+
createdAtLocation: string;
|
1245
1099
|
annotation?: Record<string, string | number | boolean | {
|
1246
1100
|
type: string;
|
1247
1101
|
filename: string;
|
@@ -1257,10 +1111,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1257
1111
|
residentialArea?: string | null | undefined;
|
1258
1112
|
street?: string | null | undefined;
|
1259
1113
|
zipCode?: string | null | undefined;
|
1260
|
-
} | {
|
1261
|
-
firstname: string;
|
1262
|
-
surname: string;
|
1263
|
-
middlename?: string | null | undefined;
|
1264
1114
|
} | {
|
1265
1115
|
country: string;
|
1266
1116
|
district: string;
|
@@ -1283,20 +1133,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
1283
1133
|
option: string;
|
1284
1134
|
filename: string;
|
1285
1135
|
originalFilename: string;
|
1286
|
-
}[] |
|
1136
|
+
}[] | undefined> | undefined;
|
1287
1137
|
originalActionId?: string | undefined;
|
1288
1138
|
}, {
|
1289
1139
|
type: "REJECT";
|
1290
1140
|
id: string;
|
1291
1141
|
status: "Rejected" | "Requested" | "Accepted";
|
1292
|
-
reason: {
|
1293
|
-
message: string;
|
1294
|
-
isDuplicate?: boolean | undefined;
|
1295
|
-
};
|
1296
|
-
transactionId: string;
|
1297
1142
|
createdAt: string;
|
1298
1143
|
createdBy: string;
|
1299
|
-
createdByRole: string;
|
1300
1144
|
declaration: Record<string, string | number | boolean | {
|
1301
1145
|
type: string;
|
1302
1146
|
filename: string;
|
@@ -1312,10 +1156,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1312
1156
|
residentialArea?: string | null | undefined;
|
1313
1157
|
street?: string | null | undefined;
|
1314
1158
|
zipCode?: string | null | undefined;
|
1315
|
-
} | {
|
1316
|
-
firstname: string;
|
1317
|
-
surname: string;
|
1318
|
-
middlename?: string | null | undefined;
|
1319
1159
|
} | {
|
1320
1160
|
country: string;
|
1321
1161
|
district: string;
|
@@ -1338,9 +1178,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1338
1178
|
option: string;
|
1339
1179
|
filename: string;
|
1340
1180
|
originalFilename: string;
|
1341
|
-
}[] |
|
1342
|
-
|
1343
|
-
createdAtLocation?: string | null | undefined;
|
1181
|
+
}[] | undefined>;
|
1182
|
+
createdAtLocation: string;
|
1344
1183
|
annotation?: Record<string, string | number | boolean | {
|
1345
1184
|
type: string;
|
1346
1185
|
filename: string;
|
@@ -1356,10 +1195,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1356
1195
|
residentialArea?: string | null | undefined;
|
1357
1196
|
street?: string | null | undefined;
|
1358
1197
|
zipCode?: string | null | undefined;
|
1359
|
-
} | {
|
1360
|
-
firstname: string;
|
1361
|
-
surname: string;
|
1362
|
-
middlename?: string | null | undefined;
|
1363
1198
|
} | {
|
1364
1199
|
country: string;
|
1365
1200
|
district: string;
|
@@ -1382,17 +1217,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
1382
1217
|
option: string;
|
1383
1218
|
filename: string;
|
1384
1219
|
originalFilename: string;
|
1385
|
-
}[] |
|
1220
|
+
}[] | undefined> | undefined;
|
1386
1221
|
originalActionId?: string | undefined;
|
1387
1222
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1388
1223
|
id: z.ZodString;
|
1389
|
-
transactionId: z.ZodString;
|
1390
1224
|
createdAt: z.ZodString;
|
1391
1225
|
createdBy: z.ZodString;
|
1392
|
-
|
1393
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1394
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1395
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1226
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1396
1227
|
filename: z.ZodString;
|
1397
1228
|
originalFilename: z.ZodString;
|
1398
1229
|
type: z.ZodString;
|
@@ -1505,20 +1336,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1505
1336
|
addressLine2?: string | null | undefined;
|
1506
1337
|
addressLine3?: string | null | undefined;
|
1507
1338
|
postcodeOrZip?: string | null | undefined;
|
1508
|
-
}
|
1509
|
-
|
1510
|
-
surname: z.ZodString;
|
1511
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1512
|
-
}, "strip", z.ZodTypeAny, {
|
1513
|
-
firstname: string;
|
1514
|
-
surname: string;
|
1515
|
-
middlename?: string | null | undefined;
|
1516
|
-
}, {
|
1517
|
-
firstname: string;
|
1518
|
-
surname: string;
|
1519
|
-
middlename?: string | null | undefined;
|
1520
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1521
|
-
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<{
|
1339
|
+
}>]>>;
|
1340
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1522
1341
|
filename: z.ZodString;
|
1523
1342
|
originalFilename: z.ZodString;
|
1524
1343
|
type: z.ZodString;
|
@@ -1631,19 +1450,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1631
1450
|
addressLine2?: string | null | undefined;
|
1632
1451
|
addressLine3?: string | null | undefined;
|
1633
1452
|
postcodeOrZip?: string | null | undefined;
|
1634
|
-
}
|
1635
|
-
|
1636
|
-
surname: z.ZodString;
|
1637
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1638
|
-
}, "strip", z.ZodTypeAny, {
|
1639
|
-
firstname: string;
|
1640
|
-
surname: string;
|
1641
|
-
middlename?: string | null | undefined;
|
1642
|
-
}, {
|
1643
|
-
firstname: string;
|
1644
|
-
surname: string;
|
1645
|
-
middlename?: string | null | undefined;
|
1646
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1453
|
+
}>]>>>;
|
1454
|
+
createdAtLocation: z.ZodString;
|
1647
1455
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1648
1456
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1649
1457
|
}, {
|
@@ -1652,10 +1460,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1652
1460
|
type: "MARKED_AS_DUPLICATE";
|
1653
1461
|
id: string;
|
1654
1462
|
status: "Rejected" | "Requested" | "Accepted";
|
1655
|
-
transactionId: string;
|
1656
1463
|
createdAt: string;
|
1657
1464
|
createdBy: string;
|
1658
|
-
createdByRole: string;
|
1659
1465
|
declaration: Record<string, string | number | boolean | {
|
1660
1466
|
type: string;
|
1661
1467
|
filename: string;
|
@@ -1671,10 +1477,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1671
1477
|
residentialArea?: string | null | undefined;
|
1672
1478
|
street?: string | null | undefined;
|
1673
1479
|
zipCode?: string | null | undefined;
|
1674
|
-
} | {
|
1675
|
-
firstname: string;
|
1676
|
-
surname: string;
|
1677
|
-
middlename?: string | null | undefined;
|
1678
1480
|
} | {
|
1679
1481
|
country: string;
|
1680
1482
|
district: string;
|
@@ -1697,9 +1499,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1697
1499
|
option: string;
|
1698
1500
|
filename: string;
|
1699
1501
|
originalFilename: string;
|
1700
|
-
}[] |
|
1701
|
-
|
1702
|
-
createdAtLocation?: string | null | undefined;
|
1502
|
+
}[] | undefined>;
|
1503
|
+
createdAtLocation: string;
|
1703
1504
|
annotation?: Record<string, string | number | boolean | {
|
1704
1505
|
type: string;
|
1705
1506
|
filename: string;
|
@@ -1715,10 +1516,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1715
1516
|
residentialArea?: string | null | undefined;
|
1716
1517
|
street?: string | null | undefined;
|
1717
1518
|
zipCode?: string | null | undefined;
|
1718
|
-
} | {
|
1719
|
-
firstname: string;
|
1720
|
-
surname: string;
|
1721
|
-
middlename?: string | null | undefined;
|
1722
1519
|
} | {
|
1723
1520
|
country: string;
|
1724
1521
|
district: string;
|
@@ -1741,16 +1538,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
1741
1538
|
option: string;
|
1742
1539
|
filename: string;
|
1743
1540
|
originalFilename: string;
|
1744
|
-
}[] |
|
1541
|
+
}[] | undefined> | undefined;
|
1745
1542
|
originalActionId?: string | undefined;
|
1746
1543
|
}, {
|
1747
1544
|
type: "MARKED_AS_DUPLICATE";
|
1748
1545
|
id: string;
|
1749
1546
|
status: "Rejected" | "Requested" | "Accepted";
|
1750
|
-
transactionId: string;
|
1751
1547
|
createdAt: string;
|
1752
1548
|
createdBy: string;
|
1753
|
-
createdByRole: string;
|
1754
1549
|
declaration: Record<string, string | number | boolean | {
|
1755
1550
|
type: string;
|
1756
1551
|
filename: string;
|
@@ -1766,10 +1561,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1766
1561
|
residentialArea?: string | null | undefined;
|
1767
1562
|
street?: string | null | undefined;
|
1768
1563
|
zipCode?: string | null | undefined;
|
1769
|
-
} | {
|
1770
|
-
firstname: string;
|
1771
|
-
surname: string;
|
1772
|
-
middlename?: string | null | undefined;
|
1773
1564
|
} | {
|
1774
1565
|
country: string;
|
1775
1566
|
district: string;
|
@@ -1792,9 +1583,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1792
1583
|
option: string;
|
1793
1584
|
filename: string;
|
1794
1585
|
originalFilename: string;
|
1795
|
-
}[] |
|
1796
|
-
|
1797
|
-
createdAtLocation?: string | null | undefined;
|
1586
|
+
}[] | undefined>;
|
1587
|
+
createdAtLocation: string;
|
1798
1588
|
annotation?: Record<string, string | number | boolean | {
|
1799
1589
|
type: string;
|
1800
1590
|
filename: string;
|
@@ -1810,10 +1600,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1810
1600
|
residentialArea?: string | null | undefined;
|
1811
1601
|
street?: string | null | undefined;
|
1812
1602
|
zipCode?: string | null | undefined;
|
1813
|
-
} | {
|
1814
|
-
firstname: string;
|
1815
|
-
surname: string;
|
1816
|
-
middlename?: string | null | undefined;
|
1817
1603
|
} | {
|
1818
1604
|
country: string;
|
1819
1605
|
district: string;
|
@@ -1836,17 +1622,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
1836
1622
|
option: string;
|
1837
1623
|
filename: string;
|
1838
1624
|
originalFilename: string;
|
1839
|
-
}[] |
|
1625
|
+
}[] | undefined> | undefined;
|
1840
1626
|
originalActionId?: string | undefined;
|
1841
1627
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1842
1628
|
id: z.ZodString;
|
1843
|
-
transactionId: z.ZodString;
|
1844
1629
|
createdAt: z.ZodString;
|
1845
1630
|
createdBy: z.ZodString;
|
1846
|
-
|
1847
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1848
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1849
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1631
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1850
1632
|
filename: z.ZodString;
|
1851
1633
|
originalFilename: z.ZodString;
|
1852
1634
|
type: z.ZodString;
|
@@ -1959,20 +1741,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1959
1741
|
addressLine2?: string | null | undefined;
|
1960
1742
|
addressLine3?: string | null | undefined;
|
1961
1743
|
postcodeOrZip?: string | null | undefined;
|
1962
|
-
}
|
1963
|
-
|
1964
|
-
surname: z.ZodString;
|
1965
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1966
|
-
}, "strip", z.ZodTypeAny, {
|
1967
|
-
firstname: string;
|
1968
|
-
surname: string;
|
1969
|
-
middlename?: string | null | undefined;
|
1970
|
-
}, {
|
1971
|
-
firstname: string;
|
1972
|
-
surname: string;
|
1973
|
-
middlename?: string | null | undefined;
|
1974
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1975
|
-
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<{
|
1744
|
+
}>]>>;
|
1745
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1976
1746
|
filename: z.ZodString;
|
1977
1747
|
originalFilename: z.ZodString;
|
1978
1748
|
type: z.ZodString;
|
@@ -2085,45 +1855,18 @@ export declare const EventDocument: z.ZodObject<{
|
|
2085
1855
|
addressLine2?: string | null | undefined;
|
2086
1856
|
addressLine3?: string | null | undefined;
|
2087
1857
|
postcodeOrZip?: string | null | undefined;
|
2088
|
-
}
|
2089
|
-
|
2090
|
-
surname: z.ZodString;
|
2091
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2092
|
-
}, "strip", z.ZodTypeAny, {
|
2093
|
-
firstname: string;
|
2094
|
-
surname: string;
|
2095
|
-
middlename?: string | null | undefined;
|
2096
|
-
}, {
|
2097
|
-
firstname: string;
|
2098
|
-
surname: string;
|
2099
|
-
middlename?: string | null | undefined;
|
2100
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1858
|
+
}>]>>>;
|
1859
|
+
createdAtLocation: z.ZodString;
|
2101
1860
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2102
1861
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2103
1862
|
}, {
|
2104
1863
|
type: z.ZodLiteral<"ARCHIVE">;
|
2105
|
-
reason: z.ZodObject<{
|
2106
|
-
message: z.ZodString;
|
2107
|
-
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
2108
|
-
}, "strip", z.ZodTypeAny, {
|
2109
|
-
message: string;
|
2110
|
-
isDuplicate?: boolean | undefined;
|
2111
|
-
}, {
|
2112
|
-
message: string;
|
2113
|
-
isDuplicate?: boolean | undefined;
|
2114
|
-
}>;
|
2115
1864
|
}>, "strip", z.ZodTypeAny, {
|
2116
1865
|
type: "ARCHIVE";
|
2117
1866
|
id: string;
|
2118
1867
|
status: "Rejected" | "Requested" | "Accepted";
|
2119
|
-
reason: {
|
2120
|
-
message: string;
|
2121
|
-
isDuplicate?: boolean | undefined;
|
2122
|
-
};
|
2123
|
-
transactionId: string;
|
2124
1868
|
createdAt: string;
|
2125
1869
|
createdBy: string;
|
2126
|
-
createdByRole: string;
|
2127
1870
|
declaration: Record<string, string | number | boolean | {
|
2128
1871
|
type: string;
|
2129
1872
|
filename: string;
|
@@ -2139,10 +1882,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2139
1882
|
residentialArea?: string | null | undefined;
|
2140
1883
|
street?: string | null | undefined;
|
2141
1884
|
zipCode?: string | null | undefined;
|
2142
|
-
} | {
|
2143
|
-
firstname: string;
|
2144
|
-
surname: string;
|
2145
|
-
middlename?: string | null | undefined;
|
2146
1885
|
} | {
|
2147
1886
|
country: string;
|
2148
1887
|
district: string;
|
@@ -2165,9 +1904,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2165
1904
|
option: string;
|
2166
1905
|
filename: string;
|
2167
1906
|
originalFilename: string;
|
2168
|
-
}[] |
|
2169
|
-
|
2170
|
-
createdAtLocation?: string | null | undefined;
|
1907
|
+
}[] | undefined>;
|
1908
|
+
createdAtLocation: string;
|
2171
1909
|
annotation?: Record<string, string | number | boolean | {
|
2172
1910
|
type: string;
|
2173
1911
|
filename: string;
|
@@ -2183,10 +1921,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2183
1921
|
residentialArea?: string | null | undefined;
|
2184
1922
|
street?: string | null | undefined;
|
2185
1923
|
zipCode?: string | null | undefined;
|
2186
|
-
} | {
|
2187
|
-
firstname: string;
|
2188
|
-
surname: string;
|
2189
|
-
middlename?: string | null | undefined;
|
2190
1924
|
} | {
|
2191
1925
|
country: string;
|
2192
1926
|
district: string;
|
@@ -2209,20 +1943,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
2209
1943
|
option: string;
|
2210
1944
|
filename: string;
|
2211
1945
|
originalFilename: string;
|
2212
|
-
}[] |
|
1946
|
+
}[] | undefined> | undefined;
|
2213
1947
|
originalActionId?: string | undefined;
|
2214
1948
|
}, {
|
2215
1949
|
type: "ARCHIVE";
|
2216
1950
|
id: string;
|
2217
1951
|
status: "Rejected" | "Requested" | "Accepted";
|
2218
|
-
reason: {
|
2219
|
-
message: string;
|
2220
|
-
isDuplicate?: boolean | undefined;
|
2221
|
-
};
|
2222
|
-
transactionId: string;
|
2223
1952
|
createdAt: string;
|
2224
1953
|
createdBy: string;
|
2225
|
-
createdByRole: string;
|
2226
1954
|
declaration: Record<string, string | number | boolean | {
|
2227
1955
|
type: string;
|
2228
1956
|
filename: string;
|
@@ -2238,10 +1966,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2238
1966
|
residentialArea?: string | null | undefined;
|
2239
1967
|
street?: string | null | undefined;
|
2240
1968
|
zipCode?: string | null | undefined;
|
2241
|
-
} | {
|
2242
|
-
firstname: string;
|
2243
|
-
surname: string;
|
2244
|
-
middlename?: string | null | undefined;
|
2245
1969
|
} | {
|
2246
1970
|
country: string;
|
2247
1971
|
district: string;
|
@@ -2264,9 +1988,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2264
1988
|
option: string;
|
2265
1989
|
filename: string;
|
2266
1990
|
originalFilename: string;
|
2267
|
-
}[] |
|
2268
|
-
|
2269
|
-
createdAtLocation?: string | null | undefined;
|
1991
|
+
}[] | undefined>;
|
1992
|
+
createdAtLocation: string;
|
2270
1993
|
annotation?: Record<string, string | number | boolean | {
|
2271
1994
|
type: string;
|
2272
1995
|
filename: string;
|
@@ -2282,10 +2005,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2282
2005
|
residentialArea?: string | null | undefined;
|
2283
2006
|
street?: string | null | undefined;
|
2284
2007
|
zipCode?: string | null | undefined;
|
2285
|
-
} | {
|
2286
|
-
firstname: string;
|
2287
|
-
surname: string;
|
2288
|
-
middlename?: string | null | undefined;
|
2289
2008
|
} | {
|
2290
2009
|
country: string;
|
2291
2010
|
district: string;
|
@@ -2308,17 +2027,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
2308
2027
|
option: string;
|
2309
2028
|
filename: string;
|
2310
2029
|
originalFilename: string;
|
2311
|
-
}[] |
|
2030
|
+
}[] | undefined> | undefined;
|
2312
2031
|
originalActionId?: string | undefined;
|
2313
2032
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2314
2033
|
id: z.ZodString;
|
2315
|
-
transactionId: z.ZodString;
|
2316
2034
|
createdAt: z.ZodString;
|
2317
2035
|
createdBy: z.ZodString;
|
2318
|
-
|
2319
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2320
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2321
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2036
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2322
2037
|
filename: z.ZodString;
|
2323
2038
|
originalFilename: z.ZodString;
|
2324
2039
|
type: z.ZodString;
|
@@ -2431,20 +2146,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2431
2146
|
addressLine2?: string | null | undefined;
|
2432
2147
|
addressLine3?: string | null | undefined;
|
2433
2148
|
postcodeOrZip?: string | null | undefined;
|
2434
|
-
}
|
2435
|
-
|
2436
|
-
surname: z.ZodString;
|
2437
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2438
|
-
}, "strip", z.ZodTypeAny, {
|
2439
|
-
firstname: string;
|
2440
|
-
surname: string;
|
2441
|
-
middlename?: string | null | undefined;
|
2442
|
-
}, {
|
2443
|
-
firstname: string;
|
2444
|
-
surname: string;
|
2445
|
-
middlename?: string | null | undefined;
|
2446
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2447
|
-
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<{
|
2149
|
+
}>]>>;
|
2150
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2448
2151
|
filename: z.ZodString;
|
2449
2152
|
originalFilename: z.ZodString;
|
2450
2153
|
type: z.ZodString;
|
@@ -2557,19 +2260,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2557
2260
|
addressLine2?: string | null | undefined;
|
2558
2261
|
addressLine3?: string | null | undefined;
|
2559
2262
|
postcodeOrZip?: string | null | undefined;
|
2560
|
-
}
|
2561
|
-
|
2562
|
-
surname: z.ZodString;
|
2563
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2564
|
-
}, "strip", z.ZodTypeAny, {
|
2565
|
-
firstname: string;
|
2566
|
-
surname: string;
|
2567
|
-
middlename?: string | null | undefined;
|
2568
|
-
}, {
|
2569
|
-
firstname: string;
|
2570
|
-
surname: string;
|
2571
|
-
middlename?: string | null | undefined;
|
2572
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2263
|
+
}>]>>>;
|
2264
|
+
createdAtLocation: z.ZodString;
|
2573
2265
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2574
2266
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2575
2267
|
}, {
|
@@ -2578,10 +2270,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2578
2270
|
type: "NOTIFY";
|
2579
2271
|
id: string;
|
2580
2272
|
status: "Rejected" | "Requested" | "Accepted";
|
2581
|
-
transactionId: string;
|
2582
2273
|
createdAt: string;
|
2583
2274
|
createdBy: string;
|
2584
|
-
createdByRole: string;
|
2585
2275
|
declaration: Record<string, string | number | boolean | {
|
2586
2276
|
type: string;
|
2587
2277
|
filename: string;
|
@@ -2597,10 +2287,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2597
2287
|
residentialArea?: string | null | undefined;
|
2598
2288
|
street?: string | null | undefined;
|
2599
2289
|
zipCode?: string | null | undefined;
|
2600
|
-
} | {
|
2601
|
-
firstname: string;
|
2602
|
-
surname: string;
|
2603
|
-
middlename?: string | null | undefined;
|
2604
2290
|
} | {
|
2605
2291
|
country: string;
|
2606
2292
|
district: string;
|
@@ -2623,9 +2309,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2623
2309
|
option: string;
|
2624
2310
|
filename: string;
|
2625
2311
|
originalFilename: string;
|
2626
|
-
}[] |
|
2627
|
-
|
2628
|
-
createdAtLocation?: string | null | undefined;
|
2312
|
+
}[] | undefined>;
|
2313
|
+
createdAtLocation: string;
|
2629
2314
|
annotation?: Record<string, string | number | boolean | {
|
2630
2315
|
type: string;
|
2631
2316
|
filename: string;
|
@@ -2641,10 +2326,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2641
2326
|
residentialArea?: string | null | undefined;
|
2642
2327
|
street?: string | null | undefined;
|
2643
2328
|
zipCode?: string | null | undefined;
|
2644
|
-
} | {
|
2645
|
-
firstname: string;
|
2646
|
-
surname: string;
|
2647
|
-
middlename?: string | null | undefined;
|
2648
2329
|
} | {
|
2649
2330
|
country: string;
|
2650
2331
|
district: string;
|
@@ -2667,16 +2348,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
2667
2348
|
option: string;
|
2668
2349
|
filename: string;
|
2669
2350
|
originalFilename: string;
|
2670
|
-
}[] |
|
2351
|
+
}[] | undefined> | undefined;
|
2671
2352
|
originalActionId?: string | undefined;
|
2672
2353
|
}, {
|
2673
2354
|
type: "NOTIFY";
|
2674
2355
|
id: string;
|
2675
2356
|
status: "Rejected" | "Requested" | "Accepted";
|
2676
|
-
transactionId: string;
|
2677
2357
|
createdAt: string;
|
2678
2358
|
createdBy: string;
|
2679
|
-
createdByRole: string;
|
2680
2359
|
declaration: Record<string, string | number | boolean | {
|
2681
2360
|
type: string;
|
2682
2361
|
filename: string;
|
@@ -2692,10 +2371,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2692
2371
|
residentialArea?: string | null | undefined;
|
2693
2372
|
street?: string | null | undefined;
|
2694
2373
|
zipCode?: string | null | undefined;
|
2695
|
-
} | {
|
2696
|
-
firstname: string;
|
2697
|
-
surname: string;
|
2698
|
-
middlename?: string | null | undefined;
|
2699
2374
|
} | {
|
2700
2375
|
country: string;
|
2701
2376
|
district: string;
|
@@ -2718,9 +2393,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2718
2393
|
option: string;
|
2719
2394
|
filename: string;
|
2720
2395
|
originalFilename: string;
|
2721
|
-
}[] |
|
2722
|
-
|
2723
|
-
createdAtLocation?: string | null | undefined;
|
2396
|
+
}[] | undefined>;
|
2397
|
+
createdAtLocation: string;
|
2724
2398
|
annotation?: Record<string, string | number | boolean | {
|
2725
2399
|
type: string;
|
2726
2400
|
filename: string;
|
@@ -2736,10 +2410,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2736
2410
|
residentialArea?: string | null | undefined;
|
2737
2411
|
street?: string | null | undefined;
|
2738
2412
|
zipCode?: string | null | undefined;
|
2739
|
-
} | {
|
2740
|
-
firstname: string;
|
2741
|
-
surname: string;
|
2742
|
-
middlename?: string | null | undefined;
|
2743
2413
|
} | {
|
2744
2414
|
country: string;
|
2745
2415
|
district: string;
|
@@ -2762,17 +2432,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
2762
2432
|
option: string;
|
2763
2433
|
filename: string;
|
2764
2434
|
originalFilename: string;
|
2765
|
-
}[] |
|
2435
|
+
}[] | undefined> | undefined;
|
2766
2436
|
originalActionId?: string | undefined;
|
2767
2437
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2768
2438
|
id: z.ZodString;
|
2769
|
-
transactionId: z.ZodString;
|
2770
2439
|
createdAt: z.ZodString;
|
2771
2440
|
createdBy: z.ZodString;
|
2772
|
-
|
2773
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2774
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2775
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2441
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2776
2442
|
filename: z.ZodString;
|
2777
2443
|
originalFilename: z.ZodString;
|
2778
2444
|
type: z.ZodString;
|
@@ -2885,20 +2551,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2885
2551
|
addressLine2?: string | null | undefined;
|
2886
2552
|
addressLine3?: string | null | undefined;
|
2887
2553
|
postcodeOrZip?: string | null | undefined;
|
2888
|
-
}
|
2889
|
-
|
2890
|
-
surname: z.ZodString;
|
2891
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2892
|
-
}, "strip", z.ZodTypeAny, {
|
2893
|
-
firstname: string;
|
2894
|
-
surname: string;
|
2895
|
-
middlename?: string | null | undefined;
|
2896
|
-
}, {
|
2897
|
-
firstname: string;
|
2898
|
-
surname: string;
|
2899
|
-
middlename?: string | null | undefined;
|
2900
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2901
|
-
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<{
|
2554
|
+
}>]>>;
|
2555
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2902
2556
|
filename: z.ZodString;
|
2903
2557
|
originalFilename: z.ZodString;
|
2904
2558
|
type: z.ZodString;
|
@@ -3011,19 +2665,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3011
2665
|
addressLine2?: string | null | undefined;
|
3012
2666
|
addressLine3?: string | null | undefined;
|
3013
2667
|
postcodeOrZip?: string | null | undefined;
|
3014
|
-
}
|
3015
|
-
|
3016
|
-
surname: z.ZodString;
|
3017
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3018
|
-
}, "strip", z.ZodTypeAny, {
|
3019
|
-
firstname: string;
|
3020
|
-
surname: string;
|
3021
|
-
middlename?: string | null | undefined;
|
3022
|
-
}, {
|
3023
|
-
firstname: string;
|
3024
|
-
surname: string;
|
3025
|
-
middlename?: string | null | undefined;
|
3026
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2668
|
+
}>]>>>;
|
2669
|
+
createdAtLocation: z.ZodString;
|
3027
2670
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3028
2671
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3029
2672
|
}, {
|
@@ -3033,10 +2676,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3033
2676
|
type: "REGISTER";
|
3034
2677
|
id: string;
|
3035
2678
|
status: "Rejected" | "Requested" | "Accepted";
|
3036
|
-
transactionId: string;
|
3037
2679
|
createdAt: string;
|
3038
2680
|
createdBy: string;
|
3039
|
-
createdByRole: string;
|
3040
2681
|
declaration: Record<string, string | number | boolean | {
|
3041
2682
|
type: string;
|
3042
2683
|
filename: string;
|
@@ -3052,10 +2693,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3052
2693
|
residentialArea?: string | null | undefined;
|
3053
2694
|
street?: string | null | undefined;
|
3054
2695
|
zipCode?: string | null | undefined;
|
3055
|
-
} | {
|
3056
|
-
firstname: string;
|
3057
|
-
surname: string;
|
3058
|
-
middlename?: string | null | undefined;
|
3059
2696
|
} | {
|
3060
2697
|
country: string;
|
3061
2698
|
district: string;
|
@@ -3078,9 +2715,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3078
2715
|
option: string;
|
3079
2716
|
filename: string;
|
3080
2717
|
originalFilename: string;
|
3081
|
-
}[] |
|
3082
|
-
|
3083
|
-
createdAtLocation?: string | null | undefined;
|
2718
|
+
}[] | undefined>;
|
2719
|
+
createdAtLocation: string;
|
3084
2720
|
annotation?: Record<string, string | number | boolean | {
|
3085
2721
|
type: string;
|
3086
2722
|
filename: string;
|
@@ -3096,10 +2732,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3096
2732
|
residentialArea?: string | null | undefined;
|
3097
2733
|
street?: string | null | undefined;
|
3098
2734
|
zipCode?: string | null | undefined;
|
3099
|
-
} | {
|
3100
|
-
firstname: string;
|
3101
|
-
surname: string;
|
3102
|
-
middlename?: string | null | undefined;
|
3103
2735
|
} | {
|
3104
2736
|
country: string;
|
3105
2737
|
district: string;
|
@@ -3122,17 +2754,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3122
2754
|
option: string;
|
3123
2755
|
filename: string;
|
3124
2756
|
originalFilename: string;
|
3125
|
-
}[] |
|
2757
|
+
}[] | undefined> | undefined;
|
3126
2758
|
originalActionId?: string | undefined;
|
3127
2759
|
registrationNumber?: string | undefined;
|
3128
2760
|
}, {
|
3129
2761
|
type: "REGISTER";
|
3130
2762
|
id: string;
|
3131
2763
|
status: "Rejected" | "Requested" | "Accepted";
|
3132
|
-
transactionId: string;
|
3133
2764
|
createdAt: string;
|
3134
2765
|
createdBy: string;
|
3135
|
-
createdByRole: string;
|
3136
2766
|
declaration: Record<string, string | number | boolean | {
|
3137
2767
|
type: string;
|
3138
2768
|
filename: string;
|
@@ -3148,10 +2778,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3148
2778
|
residentialArea?: string | null | undefined;
|
3149
2779
|
street?: string | null | undefined;
|
3150
2780
|
zipCode?: string | null | undefined;
|
3151
|
-
} | {
|
3152
|
-
firstname: string;
|
3153
|
-
surname: string;
|
3154
|
-
middlename?: string | null | undefined;
|
3155
2781
|
} | {
|
3156
2782
|
country: string;
|
3157
2783
|
district: string;
|
@@ -3174,9 +2800,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3174
2800
|
option: string;
|
3175
2801
|
filename: string;
|
3176
2802
|
originalFilename: string;
|
3177
|
-
}[] |
|
3178
|
-
|
3179
|
-
createdAtLocation?: string | null | undefined;
|
2803
|
+
}[] | undefined>;
|
2804
|
+
createdAtLocation: string;
|
3180
2805
|
annotation?: Record<string, string | number | boolean | {
|
3181
2806
|
type: string;
|
3182
2807
|
filename: string;
|
@@ -3192,10 +2817,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3192
2817
|
residentialArea?: string | null | undefined;
|
3193
2818
|
street?: string | null | undefined;
|
3194
2819
|
zipCode?: string | null | undefined;
|
3195
|
-
} | {
|
3196
|
-
firstname: string;
|
3197
|
-
surname: string;
|
3198
|
-
middlename?: string | null | undefined;
|
3199
2820
|
} | {
|
3200
2821
|
country: string;
|
3201
2822
|
district: string;
|
@@ -3218,18 +2839,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
3218
2839
|
option: string;
|
3219
2840
|
filename: string;
|
3220
2841
|
originalFilename: string;
|
3221
|
-
}[] |
|
2842
|
+
}[] | undefined> | undefined;
|
3222
2843
|
originalActionId?: string | undefined;
|
3223
2844
|
registrationNumber?: string | undefined;
|
3224
2845
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3225
2846
|
id: z.ZodString;
|
3226
|
-
transactionId: z.ZodString;
|
3227
2847
|
createdAt: z.ZodString;
|
3228
2848
|
createdBy: z.ZodString;
|
3229
|
-
|
3230
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3231
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3232
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2849
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3233
2850
|
filename: z.ZodString;
|
3234
2851
|
originalFilename: z.ZodString;
|
3235
2852
|
type: z.ZodString;
|
@@ -3342,20 +2959,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3342
2959
|
addressLine2?: string | null | undefined;
|
3343
2960
|
addressLine3?: string | null | undefined;
|
3344
2961
|
postcodeOrZip?: string | null | undefined;
|
3345
|
-
}
|
3346
|
-
|
3347
|
-
surname: z.ZodString;
|
3348
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3349
|
-
}, "strip", z.ZodTypeAny, {
|
3350
|
-
firstname: string;
|
3351
|
-
surname: string;
|
3352
|
-
middlename?: string | null | undefined;
|
3353
|
-
}, {
|
3354
|
-
firstname: string;
|
3355
|
-
surname: string;
|
3356
|
-
middlename?: string | null | undefined;
|
3357
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3358
|
-
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<{
|
2962
|
+
}>]>>;
|
2963
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3359
2964
|
filename: z.ZodString;
|
3360
2965
|
originalFilename: z.ZodString;
|
3361
2966
|
type: z.ZodString;
|
@@ -3468,19 +3073,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3468
3073
|
addressLine2?: string | null | undefined;
|
3469
3074
|
addressLine3?: string | null | undefined;
|
3470
3075
|
postcodeOrZip?: string | null | undefined;
|
3471
|
-
}
|
3472
|
-
|
3473
|
-
surname: z.ZodString;
|
3474
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3475
|
-
}, "strip", z.ZodTypeAny, {
|
3476
|
-
firstname: string;
|
3477
|
-
surname: string;
|
3478
|
-
middlename?: string | null | undefined;
|
3479
|
-
}, {
|
3480
|
-
firstname: string;
|
3481
|
-
surname: string;
|
3482
|
-
middlename?: string | null | undefined;
|
3483
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3076
|
+
}>]>>>;
|
3077
|
+
createdAtLocation: z.ZodString;
|
3484
3078
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3485
3079
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3486
3080
|
}, {
|
@@ -3489,10 +3083,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3489
3083
|
type: "DECLARE";
|
3490
3084
|
id: string;
|
3491
3085
|
status: "Rejected" | "Requested" | "Accepted";
|
3492
|
-
transactionId: string;
|
3493
3086
|
createdAt: string;
|
3494
3087
|
createdBy: string;
|
3495
|
-
createdByRole: string;
|
3496
3088
|
declaration: Record<string, string | number | boolean | {
|
3497
3089
|
type: string;
|
3498
3090
|
filename: string;
|
@@ -3508,10 +3100,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3508
3100
|
residentialArea?: string | null | undefined;
|
3509
3101
|
street?: string | null | undefined;
|
3510
3102
|
zipCode?: string | null | undefined;
|
3511
|
-
} | {
|
3512
|
-
firstname: string;
|
3513
|
-
surname: string;
|
3514
|
-
middlename?: string | null | undefined;
|
3515
3103
|
} | {
|
3516
3104
|
country: string;
|
3517
3105
|
district: string;
|
@@ -3534,9 +3122,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3534
3122
|
option: string;
|
3535
3123
|
filename: string;
|
3536
3124
|
originalFilename: string;
|
3537
|
-
}[] |
|
3538
|
-
|
3539
|
-
createdAtLocation?: string | null | undefined;
|
3125
|
+
}[] | undefined>;
|
3126
|
+
createdAtLocation: string;
|
3540
3127
|
annotation?: Record<string, string | number | boolean | {
|
3541
3128
|
type: string;
|
3542
3129
|
filename: string;
|
@@ -3552,10 +3139,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3552
3139
|
residentialArea?: string | null | undefined;
|
3553
3140
|
street?: string | null | undefined;
|
3554
3141
|
zipCode?: string | null | undefined;
|
3555
|
-
} | {
|
3556
|
-
firstname: string;
|
3557
|
-
surname: string;
|
3558
|
-
middlename?: string | null | undefined;
|
3559
3142
|
} | {
|
3560
3143
|
country: string;
|
3561
3144
|
district: string;
|
@@ -3578,16 +3161,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
3578
3161
|
option: string;
|
3579
3162
|
filename: string;
|
3580
3163
|
originalFilename: string;
|
3581
|
-
}[] |
|
3164
|
+
}[] | undefined> | undefined;
|
3582
3165
|
originalActionId?: string | undefined;
|
3583
3166
|
}, {
|
3584
3167
|
type: "DECLARE";
|
3585
3168
|
id: string;
|
3586
3169
|
status: "Rejected" | "Requested" | "Accepted";
|
3587
|
-
transactionId: string;
|
3588
3170
|
createdAt: string;
|
3589
3171
|
createdBy: string;
|
3590
|
-
createdByRole: string;
|
3591
3172
|
declaration: Record<string, string | number | boolean | {
|
3592
3173
|
type: string;
|
3593
3174
|
filename: string;
|
@@ -3603,10 +3184,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3603
3184
|
residentialArea?: string | null | undefined;
|
3604
3185
|
street?: string | null | undefined;
|
3605
3186
|
zipCode?: string | null | undefined;
|
3606
|
-
} | {
|
3607
|
-
firstname: string;
|
3608
|
-
surname: string;
|
3609
|
-
middlename?: string | null | undefined;
|
3610
3187
|
} | {
|
3611
3188
|
country: string;
|
3612
3189
|
district: string;
|
@@ -3629,9 +3206,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3629
3206
|
option: string;
|
3630
3207
|
filename: string;
|
3631
3208
|
originalFilename: string;
|
3632
|
-
}[] |
|
3633
|
-
|
3634
|
-
createdAtLocation?: string | null | undefined;
|
3209
|
+
}[] | undefined>;
|
3210
|
+
createdAtLocation: string;
|
3635
3211
|
annotation?: Record<string, string | number | boolean | {
|
3636
3212
|
type: string;
|
3637
3213
|
filename: string;
|
@@ -3647,10 +3223,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3647
3223
|
residentialArea?: string | null | undefined;
|
3648
3224
|
street?: string | null | undefined;
|
3649
3225
|
zipCode?: string | null | undefined;
|
3650
|
-
} | {
|
3651
|
-
firstname: string;
|
3652
|
-
surname: string;
|
3653
|
-
middlename?: string | null | undefined;
|
3654
3226
|
} | {
|
3655
3227
|
country: string;
|
3656
3228
|
district: string;
|
@@ -3673,17 +3245,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
3673
3245
|
option: string;
|
3674
3246
|
filename: string;
|
3675
3247
|
originalFilename: string;
|
3676
|
-
}[] |
|
3248
|
+
}[] | undefined> | undefined;
|
3677
3249
|
originalActionId?: string | undefined;
|
3678
3250
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3679
3251
|
id: z.ZodString;
|
3680
|
-
transactionId: z.ZodString;
|
3681
3252
|
createdAt: z.ZodString;
|
3682
3253
|
createdBy: z.ZodString;
|
3683
|
-
|
3684
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3685
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3686
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3254
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3687
3255
|
filename: z.ZodString;
|
3688
3256
|
originalFilename: z.ZodString;
|
3689
3257
|
type: z.ZodString;
|
@@ -3796,20 +3364,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3796
3364
|
addressLine2?: string | null | undefined;
|
3797
3365
|
addressLine3?: string | null | undefined;
|
3798
3366
|
postcodeOrZip?: string | null | undefined;
|
3799
|
-
}
|
3800
|
-
|
3801
|
-
surname: z.ZodString;
|
3802
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3803
|
-
}, "strip", z.ZodTypeAny, {
|
3804
|
-
firstname: string;
|
3805
|
-
surname: string;
|
3806
|
-
middlename?: string | null | undefined;
|
3807
|
-
}, {
|
3808
|
-
firstname: string;
|
3809
|
-
surname: string;
|
3810
|
-
middlename?: string | null | undefined;
|
3811
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3812
|
-
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<{
|
3367
|
+
}>]>>;
|
3368
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3813
3369
|
filename: z.ZodString;
|
3814
3370
|
originalFilename: z.ZodString;
|
3815
3371
|
type: z.ZodString;
|
@@ -3922,19 +3478,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3922
3478
|
addressLine2?: string | null | undefined;
|
3923
3479
|
addressLine3?: string | null | undefined;
|
3924
3480
|
postcodeOrZip?: string | null | undefined;
|
3925
|
-
}
|
3926
|
-
|
3927
|
-
surname: z.ZodString;
|
3928
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3929
|
-
}, "strip", z.ZodTypeAny, {
|
3930
|
-
firstname: string;
|
3931
|
-
surname: string;
|
3932
|
-
middlename?: string | null | undefined;
|
3933
|
-
}, {
|
3934
|
-
firstname: string;
|
3935
|
-
surname: string;
|
3936
|
-
middlename?: string | null | undefined;
|
3937
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3481
|
+
}>]>>>;
|
3482
|
+
createdAtLocation: z.ZodString;
|
3938
3483
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3939
3484
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3940
3485
|
}, {
|
@@ -3944,10 +3489,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3944
3489
|
type: "ASSIGN";
|
3945
3490
|
id: string;
|
3946
3491
|
status: "Rejected" | "Requested" | "Accepted";
|
3947
|
-
transactionId: string;
|
3948
3492
|
createdAt: string;
|
3949
3493
|
createdBy: string;
|
3950
|
-
createdByRole: string;
|
3951
3494
|
declaration: Record<string, string | number | boolean | {
|
3952
3495
|
type: string;
|
3953
3496
|
filename: string;
|
@@ -3963,10 +3506,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3963
3506
|
residentialArea?: string | null | undefined;
|
3964
3507
|
street?: string | null | undefined;
|
3965
3508
|
zipCode?: string | null | undefined;
|
3966
|
-
} | {
|
3967
|
-
firstname: string;
|
3968
|
-
surname: string;
|
3969
|
-
middlename?: string | null | undefined;
|
3970
3509
|
} | {
|
3971
3510
|
country: string;
|
3972
3511
|
district: string;
|
@@ -3989,10 +3528,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
3989
3528
|
option: string;
|
3990
3529
|
filename: string;
|
3991
3530
|
originalFilename: string;
|
3992
|
-
}[] |
|
3531
|
+
}[] | undefined>;
|
3532
|
+
createdAtLocation: string;
|
3993
3533
|
assignedTo: string;
|
3994
|
-
createdBySignature?: string | null | undefined;
|
3995
|
-
createdAtLocation?: string | null | undefined;
|
3996
3534
|
annotation?: Record<string, string | number | boolean | {
|
3997
3535
|
type: string;
|
3998
3536
|
filename: string;
|
@@ -4008,10 +3546,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4008
3546
|
residentialArea?: string | null | undefined;
|
4009
3547
|
street?: string | null | undefined;
|
4010
3548
|
zipCode?: string | null | undefined;
|
4011
|
-
} | {
|
4012
|
-
firstname: string;
|
4013
|
-
surname: string;
|
4014
|
-
middlename?: string | null | undefined;
|
4015
3549
|
} | {
|
4016
3550
|
country: string;
|
4017
3551
|
district: string;
|
@@ -4034,16 +3568,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
4034
3568
|
option: string;
|
4035
3569
|
filename: string;
|
4036
3570
|
originalFilename: string;
|
4037
|
-
}[] |
|
3571
|
+
}[] | undefined> | undefined;
|
4038
3572
|
originalActionId?: string | undefined;
|
4039
3573
|
}, {
|
4040
3574
|
type: "ASSIGN";
|
4041
3575
|
id: string;
|
4042
3576
|
status: "Rejected" | "Requested" | "Accepted";
|
4043
|
-
transactionId: string;
|
4044
3577
|
createdAt: string;
|
4045
3578
|
createdBy: string;
|
4046
|
-
createdByRole: string;
|
4047
3579
|
declaration: Record<string, string | number | boolean | {
|
4048
3580
|
type: string;
|
4049
3581
|
filename: string;
|
@@ -4059,10 +3591,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4059
3591
|
residentialArea?: string | null | undefined;
|
4060
3592
|
street?: string | null | undefined;
|
4061
3593
|
zipCode?: string | null | undefined;
|
4062
|
-
} | {
|
4063
|
-
firstname: string;
|
4064
|
-
surname: string;
|
4065
|
-
middlename?: string | null | undefined;
|
4066
3594
|
} | {
|
4067
3595
|
country: string;
|
4068
3596
|
district: string;
|
@@ -4085,10 +3613,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
4085
3613
|
option: string;
|
4086
3614
|
filename: string;
|
4087
3615
|
originalFilename: string;
|
4088
|
-
}[] |
|
3616
|
+
}[] | undefined>;
|
3617
|
+
createdAtLocation: string;
|
4089
3618
|
assignedTo: string;
|
4090
|
-
createdBySignature?: string | null | undefined;
|
4091
|
-
createdAtLocation?: string | null | undefined;
|
4092
3619
|
annotation?: Record<string, string | number | boolean | {
|
4093
3620
|
type: string;
|
4094
3621
|
filename: string;
|
@@ -4104,10 +3631,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4104
3631
|
residentialArea?: string | null | undefined;
|
4105
3632
|
street?: string | null | undefined;
|
4106
3633
|
zipCode?: string | null | undefined;
|
4107
|
-
} | {
|
4108
|
-
firstname: string;
|
4109
|
-
surname: string;
|
4110
|
-
middlename?: string | null | undefined;
|
4111
3634
|
} | {
|
4112
3635
|
country: string;
|
4113
3636
|
district: string;
|
@@ -4130,17 +3653,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
4130
3653
|
option: string;
|
4131
3654
|
filename: string;
|
4132
3655
|
originalFilename: string;
|
4133
|
-
}[] |
|
3656
|
+
}[] | undefined> | undefined;
|
4134
3657
|
originalActionId?: string | undefined;
|
4135
3658
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4136
3659
|
id: z.ZodString;
|
4137
|
-
transactionId: z.ZodString;
|
4138
3660
|
createdAt: z.ZodString;
|
4139
3661
|
createdBy: z.ZodString;
|
4140
|
-
|
4141
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4142
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4143
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3662
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4144
3663
|
filename: z.ZodString;
|
4145
3664
|
originalFilename: z.ZodString;
|
4146
3665
|
type: z.ZodString;
|
@@ -4253,20 +3772,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4253
3772
|
addressLine2?: string | null | undefined;
|
4254
3773
|
addressLine3?: string | null | undefined;
|
4255
3774
|
postcodeOrZip?: string | null | undefined;
|
4256
|
-
}
|
4257
|
-
|
4258
|
-
surname: z.ZodString;
|
4259
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4260
|
-
}, "strip", z.ZodTypeAny, {
|
4261
|
-
firstname: string;
|
4262
|
-
surname: string;
|
4263
|
-
middlename?: string | null | undefined;
|
4264
|
-
}, {
|
4265
|
-
firstname: string;
|
4266
|
-
surname: string;
|
4267
|
-
middlename?: string | null | undefined;
|
4268
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4269
|
-
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<{
|
3775
|
+
}>]>>;
|
3776
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4270
3777
|
filename: z.ZodString;
|
4271
3778
|
originalFilename: z.ZodString;
|
4272
3779
|
type: z.ZodString;
|
@@ -4379,19 +3886,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4379
3886
|
addressLine2?: string | null | undefined;
|
4380
3887
|
addressLine3?: string | null | undefined;
|
4381
3888
|
postcodeOrZip?: string | null | undefined;
|
4382
|
-
}
|
4383
|
-
|
4384
|
-
surname: z.ZodString;
|
4385
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4386
|
-
}, "strip", z.ZodTypeAny, {
|
4387
|
-
firstname: string;
|
4388
|
-
surname: string;
|
4389
|
-
middlename?: string | null | undefined;
|
4390
|
-
}, {
|
4391
|
-
firstname: string;
|
4392
|
-
surname: string;
|
4393
|
-
middlename?: string | null | undefined;
|
4394
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3889
|
+
}>]>>>;
|
3890
|
+
createdAtLocation: z.ZodString;
|
4395
3891
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4396
3892
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4397
3893
|
}, {
|
@@ -4400,10 +3896,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4400
3896
|
type: "REQUEST_CORRECTION";
|
4401
3897
|
id: string;
|
4402
3898
|
status: "Rejected" | "Requested" | "Accepted";
|
4403
|
-
transactionId: string;
|
4404
3899
|
createdAt: string;
|
4405
3900
|
createdBy: string;
|
4406
|
-
createdByRole: string;
|
4407
3901
|
declaration: Record<string, string | number | boolean | {
|
4408
3902
|
type: string;
|
4409
3903
|
filename: string;
|
@@ -4419,10 +3913,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4419
3913
|
residentialArea?: string | null | undefined;
|
4420
3914
|
street?: string | null | undefined;
|
4421
3915
|
zipCode?: string | null | undefined;
|
4422
|
-
} | {
|
4423
|
-
firstname: string;
|
4424
|
-
surname: string;
|
4425
|
-
middlename?: string | null | undefined;
|
4426
3916
|
} | {
|
4427
3917
|
country: string;
|
4428
3918
|
district: string;
|
@@ -4445,9 +3935,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4445
3935
|
option: string;
|
4446
3936
|
filename: string;
|
4447
3937
|
originalFilename: string;
|
4448
|
-
}[] |
|
4449
|
-
|
4450
|
-
createdAtLocation?: string | null | undefined;
|
3938
|
+
}[] | undefined>;
|
3939
|
+
createdAtLocation: string;
|
4451
3940
|
annotation?: Record<string, string | number | boolean | {
|
4452
3941
|
type: string;
|
4453
3942
|
filename: string;
|
@@ -4463,10 +3952,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4463
3952
|
residentialArea?: string | null | undefined;
|
4464
3953
|
street?: string | null | undefined;
|
4465
3954
|
zipCode?: string | null | undefined;
|
4466
|
-
} | {
|
4467
|
-
firstname: string;
|
4468
|
-
surname: string;
|
4469
|
-
middlename?: string | null | undefined;
|
4470
3955
|
} | {
|
4471
3956
|
country: string;
|
4472
3957
|
district: string;
|
@@ -4489,16 +3974,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
4489
3974
|
option: string;
|
4490
3975
|
filename: string;
|
4491
3976
|
originalFilename: string;
|
4492
|
-
}[] |
|
3977
|
+
}[] | undefined> | undefined;
|
4493
3978
|
originalActionId?: string | undefined;
|
4494
3979
|
}, {
|
4495
3980
|
type: "REQUEST_CORRECTION";
|
4496
3981
|
id: string;
|
4497
3982
|
status: "Rejected" | "Requested" | "Accepted";
|
4498
|
-
transactionId: string;
|
4499
3983
|
createdAt: string;
|
4500
3984
|
createdBy: string;
|
4501
|
-
createdByRole: string;
|
4502
3985
|
declaration: Record<string, string | number | boolean | {
|
4503
3986
|
type: string;
|
4504
3987
|
filename: string;
|
@@ -4514,10 +3997,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4514
3997
|
residentialArea?: string | null | undefined;
|
4515
3998
|
street?: string | null | undefined;
|
4516
3999
|
zipCode?: string | null | undefined;
|
4517
|
-
} | {
|
4518
|
-
firstname: string;
|
4519
|
-
surname: string;
|
4520
|
-
middlename?: string | null | undefined;
|
4521
4000
|
} | {
|
4522
4001
|
country: string;
|
4523
4002
|
district: string;
|
@@ -4540,9 +4019,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4540
4019
|
option: string;
|
4541
4020
|
filename: string;
|
4542
4021
|
originalFilename: string;
|
4543
|
-
}[] |
|
4544
|
-
|
4545
|
-
createdAtLocation?: string | null | undefined;
|
4022
|
+
}[] | undefined>;
|
4023
|
+
createdAtLocation: string;
|
4546
4024
|
annotation?: Record<string, string | number | boolean | {
|
4547
4025
|
type: string;
|
4548
4026
|
filename: string;
|
@@ -4558,10 +4036,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4558
4036
|
residentialArea?: string | null | undefined;
|
4559
4037
|
street?: string | null | undefined;
|
4560
4038
|
zipCode?: string | null | undefined;
|
4561
|
-
} | {
|
4562
|
-
firstname: string;
|
4563
|
-
surname: string;
|
4564
|
-
middlename?: string | null | undefined;
|
4565
4039
|
} | {
|
4566
4040
|
country: string;
|
4567
4041
|
district: string;
|
@@ -4584,17 +4058,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
4584
4058
|
option: string;
|
4585
4059
|
filename: string;
|
4586
4060
|
originalFilename: string;
|
4587
|
-
}[] |
|
4061
|
+
}[] | undefined> | undefined;
|
4588
4062
|
originalActionId?: string | undefined;
|
4589
4063
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4590
4064
|
id: z.ZodString;
|
4591
|
-
transactionId: z.ZodString;
|
4592
4065
|
createdAt: z.ZodString;
|
4593
4066
|
createdBy: z.ZodString;
|
4594
|
-
|
4595
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4596
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4597
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4067
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4598
4068
|
filename: z.ZodString;
|
4599
4069
|
originalFilename: z.ZodString;
|
4600
4070
|
type: z.ZodString;
|
@@ -4707,20 +4177,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4707
4177
|
addressLine2?: string | null | undefined;
|
4708
4178
|
addressLine3?: string | null | undefined;
|
4709
4179
|
postcodeOrZip?: string | null | undefined;
|
4710
|
-
}
|
4711
|
-
|
4712
|
-
surname: z.ZodString;
|
4713
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4714
|
-
}, "strip", z.ZodTypeAny, {
|
4715
|
-
firstname: string;
|
4716
|
-
surname: string;
|
4717
|
-
middlename?: string | null | undefined;
|
4718
|
-
}, {
|
4719
|
-
firstname: string;
|
4720
|
-
surname: string;
|
4721
|
-
middlename?: string | null | undefined;
|
4722
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4723
|
-
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<{
|
4180
|
+
}>]>>;
|
4181
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4724
4182
|
filename: z.ZodString;
|
4725
4183
|
originalFilename: z.ZodString;
|
4726
4184
|
type: z.ZodString;
|
@@ -4833,19 +4291,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4833
4291
|
addressLine2?: string | null | undefined;
|
4834
4292
|
addressLine3?: string | null | undefined;
|
4835
4293
|
postcodeOrZip?: string | null | undefined;
|
4836
|
-
}
|
4837
|
-
|
4838
|
-
surname: z.ZodString;
|
4839
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4840
|
-
}, "strip", z.ZodTypeAny, {
|
4841
|
-
firstname: string;
|
4842
|
-
surname: string;
|
4843
|
-
middlename?: string | null | undefined;
|
4844
|
-
}, {
|
4845
|
-
firstname: string;
|
4846
|
-
surname: string;
|
4847
|
-
middlename?: string | null | undefined;
|
4848
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4294
|
+
}>]>>>;
|
4295
|
+
createdAtLocation: z.ZodString;
|
4849
4296
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4850
4297
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4851
4298
|
}, {
|
@@ -4855,10 +4302,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4855
4302
|
type: "APPROVE_CORRECTION";
|
4856
4303
|
id: string;
|
4857
4304
|
status: "Rejected" | "Requested" | "Accepted";
|
4858
|
-
transactionId: string;
|
4859
4305
|
createdAt: string;
|
4860
4306
|
createdBy: string;
|
4861
|
-
createdByRole: string;
|
4862
4307
|
declaration: Record<string, string | number | boolean | {
|
4863
4308
|
type: string;
|
4864
4309
|
filename: string;
|
@@ -4874,10 +4319,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4874
4319
|
residentialArea?: string | null | undefined;
|
4875
4320
|
street?: string | null | undefined;
|
4876
4321
|
zipCode?: string | null | undefined;
|
4877
|
-
} | {
|
4878
|
-
firstname: string;
|
4879
|
-
surname: string;
|
4880
|
-
middlename?: string | null | undefined;
|
4881
4322
|
} | {
|
4882
4323
|
country: string;
|
4883
4324
|
district: string;
|
@@ -4900,10 +4341,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
4900
4341
|
option: string;
|
4901
4342
|
filename: string;
|
4902
4343
|
originalFilename: string;
|
4903
|
-
}[] |
|
4344
|
+
}[] | undefined>;
|
4345
|
+
createdAtLocation: string;
|
4904
4346
|
requestId: string;
|
4905
|
-
createdBySignature?: string | null | undefined;
|
4906
|
-
createdAtLocation?: string | null | undefined;
|
4907
4347
|
annotation?: Record<string, string | number | boolean | {
|
4908
4348
|
type: string;
|
4909
4349
|
filename: string;
|
@@ -4919,10 +4359,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4919
4359
|
residentialArea?: string | null | undefined;
|
4920
4360
|
street?: string | null | undefined;
|
4921
4361
|
zipCode?: string | null | undefined;
|
4922
|
-
} | {
|
4923
|
-
firstname: string;
|
4924
|
-
surname: string;
|
4925
|
-
middlename?: string | null | undefined;
|
4926
4362
|
} | {
|
4927
4363
|
country: string;
|
4928
4364
|
district: string;
|
@@ -4945,16 +4381,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
4945
4381
|
option: string;
|
4946
4382
|
filename: string;
|
4947
4383
|
originalFilename: string;
|
4948
|
-
}[] |
|
4384
|
+
}[] | undefined> | undefined;
|
4949
4385
|
originalActionId?: string | undefined;
|
4950
4386
|
}, {
|
4951
4387
|
type: "APPROVE_CORRECTION";
|
4952
4388
|
id: string;
|
4953
4389
|
status: "Rejected" | "Requested" | "Accepted";
|
4954
|
-
transactionId: string;
|
4955
4390
|
createdAt: string;
|
4956
4391
|
createdBy: string;
|
4957
|
-
createdByRole: string;
|
4958
4392
|
declaration: Record<string, string | number | boolean | {
|
4959
4393
|
type: string;
|
4960
4394
|
filename: string;
|
@@ -4970,10 +4404,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4970
4404
|
residentialArea?: string | null | undefined;
|
4971
4405
|
street?: string | null | undefined;
|
4972
4406
|
zipCode?: string | null | undefined;
|
4973
|
-
} | {
|
4974
|
-
firstname: string;
|
4975
|
-
surname: string;
|
4976
|
-
middlename?: string | null | undefined;
|
4977
4407
|
} | {
|
4978
4408
|
country: string;
|
4979
4409
|
district: string;
|
@@ -4996,10 +4426,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
4996
4426
|
option: string;
|
4997
4427
|
filename: string;
|
4998
4428
|
originalFilename: string;
|
4999
|
-
}[] |
|
4429
|
+
}[] | undefined>;
|
4430
|
+
createdAtLocation: string;
|
5000
4431
|
requestId: string;
|
5001
|
-
createdBySignature?: string | null | undefined;
|
5002
|
-
createdAtLocation?: string | null | undefined;
|
5003
4432
|
annotation?: Record<string, string | number | boolean | {
|
5004
4433
|
type: string;
|
5005
4434
|
filename: string;
|
@@ -5015,10 +4444,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5015
4444
|
residentialArea?: string | null | undefined;
|
5016
4445
|
street?: string | null | undefined;
|
5017
4446
|
zipCode?: string | null | undefined;
|
5018
|
-
} | {
|
5019
|
-
firstname: string;
|
5020
|
-
surname: string;
|
5021
|
-
middlename?: string | null | undefined;
|
5022
4447
|
} | {
|
5023
4448
|
country: string;
|
5024
4449
|
district: string;
|
@@ -5041,17 +4466,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
5041
4466
|
option: string;
|
5042
4467
|
filename: string;
|
5043
4468
|
originalFilename: string;
|
5044
|
-
}[] |
|
4469
|
+
}[] | undefined> | undefined;
|
5045
4470
|
originalActionId?: string | undefined;
|
5046
4471
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5047
4472
|
id: z.ZodString;
|
5048
|
-
transactionId: z.ZodString;
|
5049
4473
|
createdAt: z.ZodString;
|
5050
4474
|
createdBy: z.ZodString;
|
5051
|
-
|
5052
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5053
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5054
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4475
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5055
4476
|
filename: z.ZodString;
|
5056
4477
|
originalFilename: z.ZodString;
|
5057
4478
|
type: z.ZodString;
|
@@ -5164,20 +4585,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5164
4585
|
addressLine2?: string | null | undefined;
|
5165
4586
|
addressLine3?: string | null | undefined;
|
5166
4587
|
postcodeOrZip?: string | null | undefined;
|
5167
|
-
}
|
5168
|
-
|
5169
|
-
surname: z.ZodString;
|
5170
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5171
|
-
}, "strip", z.ZodTypeAny, {
|
5172
|
-
firstname: string;
|
5173
|
-
surname: string;
|
5174
|
-
middlename?: string | null | undefined;
|
5175
|
-
}, {
|
5176
|
-
firstname: string;
|
5177
|
-
surname: string;
|
5178
|
-
middlename?: string | null | undefined;
|
5179
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5180
|
-
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<{
|
4588
|
+
}>]>>;
|
4589
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5181
4590
|
filename: z.ZodString;
|
5182
4591
|
originalFilename: z.ZodString;
|
5183
4592
|
type: z.ZodString;
|
@@ -5290,19 +4699,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5290
4699
|
addressLine2?: string | null | undefined;
|
5291
4700
|
addressLine3?: string | null | undefined;
|
5292
4701
|
postcodeOrZip?: string | null | undefined;
|
5293
|
-
}
|
5294
|
-
|
5295
|
-
surname: z.ZodString;
|
5296
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5297
|
-
}, "strip", z.ZodTypeAny, {
|
5298
|
-
firstname: string;
|
5299
|
-
surname: string;
|
5300
|
-
middlename?: string | null | undefined;
|
5301
|
-
}, {
|
5302
|
-
firstname: string;
|
5303
|
-
surname: string;
|
5304
|
-
middlename?: string | null | undefined;
|
5305
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4702
|
+
}>]>>>;
|
4703
|
+
createdAtLocation: z.ZodString;
|
5306
4704
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5307
4705
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5308
4706
|
}, {
|
@@ -5312,10 +4710,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5312
4710
|
type: "REJECT_CORRECTION";
|
5313
4711
|
id: string;
|
5314
4712
|
status: "Rejected" | "Requested" | "Accepted";
|
5315
|
-
transactionId: string;
|
5316
4713
|
createdAt: string;
|
5317
4714
|
createdBy: string;
|
5318
|
-
createdByRole: string;
|
5319
4715
|
declaration: Record<string, string | number | boolean | {
|
5320
4716
|
type: string;
|
5321
4717
|
filename: string;
|
@@ -5331,10 +4727,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5331
4727
|
residentialArea?: string | null | undefined;
|
5332
4728
|
street?: string | null | undefined;
|
5333
4729
|
zipCode?: string | null | undefined;
|
5334
|
-
} | {
|
5335
|
-
firstname: string;
|
5336
|
-
surname: string;
|
5337
|
-
middlename?: string | null | undefined;
|
5338
4730
|
} | {
|
5339
4731
|
country: string;
|
5340
4732
|
district: string;
|
@@ -5357,10 +4749,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
5357
4749
|
option: string;
|
5358
4750
|
filename: string;
|
5359
4751
|
originalFilename: string;
|
5360
|
-
}[] |
|
4752
|
+
}[] | undefined>;
|
4753
|
+
createdAtLocation: string;
|
5361
4754
|
requestId: string;
|
5362
|
-
createdBySignature?: string | null | undefined;
|
5363
|
-
createdAtLocation?: string | null | undefined;
|
5364
4755
|
annotation?: Record<string, string | number | boolean | {
|
5365
4756
|
type: string;
|
5366
4757
|
filename: string;
|
@@ -5376,10 +4767,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5376
4767
|
residentialArea?: string | null | undefined;
|
5377
4768
|
street?: string | null | undefined;
|
5378
4769
|
zipCode?: string | null | undefined;
|
5379
|
-
} | {
|
5380
|
-
firstname: string;
|
5381
|
-
surname: string;
|
5382
|
-
middlename?: string | null | undefined;
|
5383
4770
|
} | {
|
5384
4771
|
country: string;
|
5385
4772
|
district: string;
|
@@ -5402,16 +4789,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
5402
4789
|
option: string;
|
5403
4790
|
filename: string;
|
5404
4791
|
originalFilename: string;
|
5405
|
-
}[] |
|
4792
|
+
}[] | undefined> | undefined;
|
5406
4793
|
originalActionId?: string | undefined;
|
5407
4794
|
}, {
|
5408
4795
|
type: "REJECT_CORRECTION";
|
5409
4796
|
id: string;
|
5410
4797
|
status: "Rejected" | "Requested" | "Accepted";
|
5411
|
-
transactionId: string;
|
5412
4798
|
createdAt: string;
|
5413
4799
|
createdBy: string;
|
5414
|
-
createdByRole: string;
|
5415
4800
|
declaration: Record<string, string | number | boolean | {
|
5416
4801
|
type: string;
|
5417
4802
|
filename: string;
|
@@ -5427,10 +4812,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5427
4812
|
residentialArea?: string | null | undefined;
|
5428
4813
|
street?: string | null | undefined;
|
5429
4814
|
zipCode?: string | null | undefined;
|
5430
|
-
} | {
|
5431
|
-
firstname: string;
|
5432
|
-
surname: string;
|
5433
|
-
middlename?: string | null | undefined;
|
5434
4815
|
} | {
|
5435
4816
|
country: string;
|
5436
4817
|
district: string;
|
@@ -5453,10 +4834,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
5453
4834
|
option: string;
|
5454
4835
|
filename: string;
|
5455
4836
|
originalFilename: string;
|
5456
|
-
}[] |
|
4837
|
+
}[] | undefined>;
|
4838
|
+
createdAtLocation: string;
|
5457
4839
|
requestId: string;
|
5458
|
-
createdBySignature?: string | null | undefined;
|
5459
|
-
createdAtLocation?: string | null | undefined;
|
5460
4840
|
annotation?: Record<string, string | number | boolean | {
|
5461
4841
|
type: string;
|
5462
4842
|
filename: string;
|
@@ -5472,10 +4852,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5472
4852
|
residentialArea?: string | null | undefined;
|
5473
4853
|
street?: string | null | undefined;
|
5474
4854
|
zipCode?: string | null | undefined;
|
5475
|
-
} | {
|
5476
|
-
firstname: string;
|
5477
|
-
surname: string;
|
5478
|
-
middlename?: string | null | undefined;
|
5479
4855
|
} | {
|
5480
4856
|
country: string;
|
5481
4857
|
district: string;
|
@@ -5498,17 +4874,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
5498
4874
|
option: string;
|
5499
4875
|
filename: string;
|
5500
4876
|
originalFilename: string;
|
5501
|
-
}[] |
|
4877
|
+
}[] | undefined> | undefined;
|
5502
4878
|
originalActionId?: string | undefined;
|
5503
4879
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5504
4880
|
id: z.ZodString;
|
5505
|
-
transactionId: z.ZodString;
|
5506
4881
|
createdAt: z.ZodString;
|
5507
4882
|
createdBy: z.ZodString;
|
5508
|
-
|
5509
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5510
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5511
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4883
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5512
4884
|
filename: z.ZodString;
|
5513
4885
|
originalFilename: z.ZodString;
|
5514
4886
|
type: z.ZodString;
|
@@ -5621,20 +4993,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5621
4993
|
addressLine2?: string | null | undefined;
|
5622
4994
|
addressLine3?: string | null | undefined;
|
5623
4995
|
postcodeOrZip?: string | null | undefined;
|
5624
|
-
}
|
5625
|
-
|
5626
|
-
surname: z.ZodString;
|
5627
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5628
|
-
}, "strip", z.ZodTypeAny, {
|
5629
|
-
firstname: string;
|
5630
|
-
surname: string;
|
5631
|
-
middlename?: string | null | undefined;
|
5632
|
-
}, {
|
5633
|
-
firstname: string;
|
5634
|
-
surname: string;
|
5635
|
-
middlename?: string | null | undefined;
|
5636
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5637
|
-
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<{
|
4996
|
+
}>]>>;
|
4997
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5638
4998
|
filename: z.ZodString;
|
5639
4999
|
originalFilename: z.ZodString;
|
5640
5000
|
type: z.ZodString;
|
@@ -5747,32 +5107,19 @@ export declare const EventDocument: z.ZodObject<{
|
|
5747
5107
|
addressLine2?: string | null | undefined;
|
5748
5108
|
addressLine3?: string | null | undefined;
|
5749
5109
|
postcodeOrZip?: string | null | undefined;
|
5750
|
-
}
|
5751
|
-
|
5752
|
-
surname: z.ZodString;
|
5753
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5754
|
-
}, "strip", z.ZodTypeAny, {
|
5755
|
-
firstname: string;
|
5756
|
-
surname: string;
|
5757
|
-
middlename?: string | null | undefined;
|
5758
|
-
}, {
|
5759
|
-
firstname: string;
|
5760
|
-
surname: string;
|
5761
|
-
middlename?: string | null | undefined;
|
5762
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5110
|
+
}>]>>>;
|
5111
|
+
createdAtLocation: z.ZodString;
|
5763
5112
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5764
5113
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5765
5114
|
}, {
|
5766
5115
|
type: z.ZodLiteral<"UNASSIGN">;
|
5767
|
-
assignedTo: z.ZodLiteral<null
|
5116
|
+
assignedTo: z.ZodDefault<z.ZodLiteral<null>>;
|
5768
5117
|
}>, "strip", z.ZodTypeAny, {
|
5769
5118
|
type: "UNASSIGN";
|
5770
5119
|
id: string;
|
5771
5120
|
status: "Rejected" | "Requested" | "Accepted";
|
5772
|
-
transactionId: string;
|
5773
5121
|
createdAt: string;
|
5774
5122
|
createdBy: string;
|
5775
|
-
createdByRole: string;
|
5776
5123
|
declaration: Record<string, string | number | boolean | {
|
5777
5124
|
type: string;
|
5778
5125
|
filename: string;
|
@@ -5788,10 +5135,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5788
5135
|
residentialArea?: string | null | undefined;
|
5789
5136
|
street?: string | null | undefined;
|
5790
5137
|
zipCode?: string | null | undefined;
|
5791
|
-
} | {
|
5792
|
-
firstname: string;
|
5793
|
-
surname: string;
|
5794
|
-
middlename?: string | null | undefined;
|
5795
5138
|
} | {
|
5796
5139
|
country: string;
|
5797
5140
|
district: string;
|
@@ -5814,10 +5157,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
5814
5157
|
option: string;
|
5815
5158
|
filename: string;
|
5816
5159
|
originalFilename: string;
|
5817
|
-
}[] |
|
5160
|
+
}[] | undefined>;
|
5161
|
+
createdAtLocation: string;
|
5818
5162
|
assignedTo: null;
|
5819
|
-
createdBySignature?: string | null | undefined;
|
5820
|
-
createdAtLocation?: string | null | undefined;
|
5821
5163
|
annotation?: Record<string, string | number | boolean | {
|
5822
5164
|
type: string;
|
5823
5165
|
filename: string;
|
@@ -5833,10 +5175,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5833
5175
|
residentialArea?: string | null | undefined;
|
5834
5176
|
street?: string | null | undefined;
|
5835
5177
|
zipCode?: string | null | undefined;
|
5836
|
-
} | {
|
5837
|
-
firstname: string;
|
5838
|
-
surname: string;
|
5839
|
-
middlename?: string | null | undefined;
|
5840
5178
|
} | {
|
5841
5179
|
country: string;
|
5842
5180
|
district: string;
|
@@ -5859,16 +5197,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
5859
5197
|
option: string;
|
5860
5198
|
filename: string;
|
5861
5199
|
originalFilename: string;
|
5862
|
-
}[] |
|
5200
|
+
}[] | undefined> | undefined;
|
5863
5201
|
originalActionId?: string | undefined;
|
5864
5202
|
}, {
|
5865
5203
|
type: "UNASSIGN";
|
5866
5204
|
id: string;
|
5867
5205
|
status: "Rejected" | "Requested" | "Accepted";
|
5868
|
-
transactionId: string;
|
5869
5206
|
createdAt: string;
|
5870
5207
|
createdBy: string;
|
5871
|
-
createdByRole: string;
|
5872
5208
|
declaration: Record<string, string | number | boolean | {
|
5873
5209
|
type: string;
|
5874
5210
|
filename: string;
|
@@ -5884,10 +5220,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5884
5220
|
residentialArea?: string | null | undefined;
|
5885
5221
|
street?: string | null | undefined;
|
5886
5222
|
zipCode?: string | null | undefined;
|
5887
|
-
} | {
|
5888
|
-
firstname: string;
|
5889
|
-
surname: string;
|
5890
|
-
middlename?: string | null | undefined;
|
5891
5223
|
} | {
|
5892
5224
|
country: string;
|
5893
5225
|
district: string;
|
@@ -5910,10 +5242,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5910
5242
|
option: string;
|
5911
5243
|
filename: string;
|
5912
5244
|
originalFilename: string;
|
5913
|
-
}[] |
|
5914
|
-
|
5915
|
-
createdBySignature?: string | null | undefined;
|
5916
|
-
createdAtLocation?: string | null | undefined;
|
5245
|
+
}[] | undefined>;
|
5246
|
+
createdAtLocation: string;
|
5917
5247
|
annotation?: Record<string, string | number | boolean | {
|
5918
5248
|
type: string;
|
5919
5249
|
filename: string;
|
@@ -5929,10 +5259,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5929
5259
|
residentialArea?: string | null | undefined;
|
5930
5260
|
street?: string | null | undefined;
|
5931
5261
|
zipCode?: string | null | undefined;
|
5932
|
-
} | {
|
5933
|
-
firstname: string;
|
5934
|
-
surname: string;
|
5935
|
-
middlename?: string | null | undefined;
|
5936
5262
|
} | {
|
5937
5263
|
country: string;
|
5938
5264
|
district: string;
|
@@ -5955,17 +5281,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
5955
5281
|
option: string;
|
5956
5282
|
filename: string;
|
5957
5283
|
originalFilename: string;
|
5958
|
-
}[] |
|
5284
|
+
}[] | undefined> | undefined;
|
5959
5285
|
originalActionId?: string | undefined;
|
5286
|
+
assignedTo?: null | undefined;
|
5960
5287
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5961
5288
|
id: z.ZodString;
|
5962
|
-
transactionId: z.ZodString;
|
5963
5289
|
createdAt: z.ZodString;
|
5964
5290
|
createdBy: z.ZodString;
|
5965
|
-
|
5966
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5967
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5968
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5291
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5969
5292
|
filename: z.ZodString;
|
5970
5293
|
originalFilename: z.ZodString;
|
5971
5294
|
type: z.ZodString;
|
@@ -6078,20 +5401,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6078
5401
|
addressLine2?: string | null | undefined;
|
6079
5402
|
addressLine3?: string | null | undefined;
|
6080
5403
|
postcodeOrZip?: string | null | undefined;
|
6081
|
-
}
|
6082
|
-
|
6083
|
-
surname: z.ZodString;
|
6084
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6085
|
-
}, "strip", z.ZodTypeAny, {
|
6086
|
-
firstname: string;
|
6087
|
-
surname: string;
|
6088
|
-
middlename?: string | null | undefined;
|
6089
|
-
}, {
|
6090
|
-
firstname: string;
|
6091
|
-
surname: string;
|
6092
|
-
middlename?: string | null | undefined;
|
6093
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6094
|
-
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<{
|
5404
|
+
}>]>>;
|
5405
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6095
5406
|
filename: z.ZodString;
|
6096
5407
|
originalFilename: z.ZodString;
|
6097
5408
|
type: z.ZodString;
|
@@ -6204,19 +5515,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6204
5515
|
addressLine2?: string | null | undefined;
|
6205
5516
|
addressLine3?: string | null | undefined;
|
6206
5517
|
postcodeOrZip?: string | null | undefined;
|
6207
|
-
}
|
6208
|
-
|
6209
|
-
surname: z.ZodString;
|
6210
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6211
|
-
}, "strip", z.ZodTypeAny, {
|
6212
|
-
firstname: string;
|
6213
|
-
surname: string;
|
6214
|
-
middlename?: string | null | undefined;
|
6215
|
-
}, {
|
6216
|
-
firstname: string;
|
6217
|
-
surname: string;
|
6218
|
-
middlename?: string | null | undefined;
|
6219
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5518
|
+
}>]>>>;
|
5519
|
+
createdAtLocation: z.ZodString;
|
6220
5520
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6221
5521
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6222
5522
|
}, {
|
@@ -6225,10 +5525,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6225
5525
|
type: "PRINT_CERTIFICATE";
|
6226
5526
|
id: string;
|
6227
5527
|
status: "Rejected" | "Requested" | "Accepted";
|
6228
|
-
transactionId: string;
|
6229
5528
|
createdAt: string;
|
6230
5529
|
createdBy: string;
|
6231
|
-
createdByRole: string;
|
6232
5530
|
declaration: Record<string, string | number | boolean | {
|
6233
5531
|
type: string;
|
6234
5532
|
filename: string;
|
@@ -6244,10 +5542,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6244
5542
|
residentialArea?: string | null | undefined;
|
6245
5543
|
street?: string | null | undefined;
|
6246
5544
|
zipCode?: string | null | undefined;
|
6247
|
-
} | {
|
6248
|
-
firstname: string;
|
6249
|
-
surname: string;
|
6250
|
-
middlename?: string | null | undefined;
|
6251
5545
|
} | {
|
6252
5546
|
country: string;
|
6253
5547
|
district: string;
|
@@ -6270,9 +5564,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6270
5564
|
option: string;
|
6271
5565
|
filename: string;
|
6272
5566
|
originalFilename: string;
|
6273
|
-
}[] |
|
6274
|
-
|
6275
|
-
createdAtLocation?: string | null | undefined;
|
5567
|
+
}[] | undefined>;
|
5568
|
+
createdAtLocation: string;
|
6276
5569
|
annotation?: Record<string, string | number | boolean | {
|
6277
5570
|
type: string;
|
6278
5571
|
filename: string;
|
@@ -6288,10 +5581,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6288
5581
|
residentialArea?: string | null | undefined;
|
6289
5582
|
street?: string | null | undefined;
|
6290
5583
|
zipCode?: string | null | undefined;
|
6291
|
-
} | {
|
6292
|
-
firstname: string;
|
6293
|
-
surname: string;
|
6294
|
-
middlename?: string | null | undefined;
|
6295
5584
|
} | {
|
6296
5585
|
country: string;
|
6297
5586
|
district: string;
|
@@ -6314,16 +5603,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
6314
5603
|
option: string;
|
6315
5604
|
filename: string;
|
6316
5605
|
originalFilename: string;
|
6317
|
-
}[] |
|
5606
|
+
}[] | undefined> | undefined;
|
6318
5607
|
originalActionId?: string | undefined;
|
6319
5608
|
}, {
|
6320
5609
|
type: "PRINT_CERTIFICATE";
|
6321
5610
|
id: string;
|
6322
5611
|
status: "Rejected" | "Requested" | "Accepted";
|
6323
|
-
transactionId: string;
|
6324
5612
|
createdAt: string;
|
6325
5613
|
createdBy: string;
|
6326
|
-
createdByRole: string;
|
6327
5614
|
declaration: Record<string, string | number | boolean | {
|
6328
5615
|
type: string;
|
6329
5616
|
filename: string;
|
@@ -6339,10 +5626,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6339
5626
|
residentialArea?: string | null | undefined;
|
6340
5627
|
street?: string | null | undefined;
|
6341
5628
|
zipCode?: string | null | undefined;
|
6342
|
-
} | {
|
6343
|
-
firstname: string;
|
6344
|
-
surname: string;
|
6345
|
-
middlename?: string | null | undefined;
|
6346
5629
|
} | {
|
6347
5630
|
country: string;
|
6348
5631
|
district: string;
|
@@ -6365,9 +5648,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6365
5648
|
option: string;
|
6366
5649
|
filename: string;
|
6367
5650
|
originalFilename: string;
|
6368
|
-
}[] |
|
6369
|
-
|
6370
|
-
createdAtLocation?: string | null | undefined;
|
5651
|
+
}[] | undefined>;
|
5652
|
+
createdAtLocation: string;
|
6371
5653
|
annotation?: Record<string, string | number | boolean | {
|
6372
5654
|
type: string;
|
6373
5655
|
filename: string;
|
@@ -6383,10 +5665,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6383
5665
|
residentialArea?: string | null | undefined;
|
6384
5666
|
street?: string | null | undefined;
|
6385
5667
|
zipCode?: string | null | undefined;
|
6386
|
-
} | {
|
6387
|
-
firstname: string;
|
6388
|
-
surname: string;
|
6389
|
-
middlename?: string | null | undefined;
|
6390
5668
|
} | {
|
6391
5669
|
country: string;
|
6392
5670
|
district: string;
|
@@ -6409,17 +5687,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
6409
5687
|
option: string;
|
6410
5688
|
filename: string;
|
6411
5689
|
originalFilename: string;
|
6412
|
-
}[] |
|
5690
|
+
}[] | undefined> | undefined;
|
6413
5691
|
originalActionId?: string | undefined;
|
6414
5692
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6415
5693
|
id: z.ZodString;
|
6416
|
-
transactionId: z.ZodString;
|
6417
5694
|
createdAt: z.ZodString;
|
6418
5695
|
createdBy: z.ZodString;
|
6419
|
-
|
6420
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6421
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6422
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5696
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6423
5697
|
filename: z.ZodString;
|
6424
5698
|
originalFilename: z.ZodString;
|
6425
5699
|
type: z.ZodString;
|
@@ -6532,20 +5806,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6532
5806
|
addressLine2?: string | null | undefined;
|
6533
5807
|
addressLine3?: string | null | undefined;
|
6534
5808
|
postcodeOrZip?: string | null | undefined;
|
6535
|
-
}
|
6536
|
-
|
6537
|
-
surname: z.ZodString;
|
6538
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6539
|
-
}, "strip", z.ZodTypeAny, {
|
6540
|
-
firstname: string;
|
6541
|
-
surname: string;
|
6542
|
-
middlename?: string | null | undefined;
|
6543
|
-
}, {
|
6544
|
-
firstname: string;
|
6545
|
-
surname: string;
|
6546
|
-
middlename?: string | null | undefined;
|
6547
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6548
|
-
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<{
|
5809
|
+
}>]>>;
|
5810
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6549
5811
|
filename: z.ZodString;
|
6550
5812
|
originalFilename: z.ZodString;
|
6551
5813
|
type: z.ZodString;
|
@@ -6658,19 +5920,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6658
5920
|
addressLine2?: string | null | undefined;
|
6659
5921
|
addressLine3?: string | null | undefined;
|
6660
5922
|
postcodeOrZip?: string | null | undefined;
|
6661
|
-
}
|
6662
|
-
|
6663
|
-
surname: z.ZodString;
|
6664
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6665
|
-
}, "strip", z.ZodTypeAny, {
|
6666
|
-
firstname: string;
|
6667
|
-
surname: string;
|
6668
|
-
middlename?: string | null | undefined;
|
6669
|
-
}, {
|
6670
|
-
firstname: string;
|
6671
|
-
surname: string;
|
6672
|
-
middlename?: string | null | undefined;
|
6673
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5923
|
+
}>]>>>;
|
5924
|
+
createdAtLocation: z.ZodString;
|
6674
5925
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6675
5926
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6676
5927
|
}, {
|
@@ -6679,10 +5930,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6679
5930
|
type: "READ";
|
6680
5931
|
id: string;
|
6681
5932
|
status: "Rejected" | "Requested" | "Accepted";
|
6682
|
-
transactionId: string;
|
6683
5933
|
createdAt: string;
|
6684
5934
|
createdBy: string;
|
6685
|
-
createdByRole: string;
|
6686
5935
|
declaration: Record<string, string | number | boolean | {
|
6687
5936
|
type: string;
|
6688
5937
|
filename: string;
|
@@ -6698,10 +5947,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6698
5947
|
residentialArea?: string | null | undefined;
|
6699
5948
|
street?: string | null | undefined;
|
6700
5949
|
zipCode?: string | null | undefined;
|
6701
|
-
} | {
|
6702
|
-
firstname: string;
|
6703
|
-
surname: string;
|
6704
|
-
middlename?: string | null | undefined;
|
6705
5950
|
} | {
|
6706
5951
|
country: string;
|
6707
5952
|
district: string;
|
@@ -6724,9 +5969,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6724
5969
|
option: string;
|
6725
5970
|
filename: string;
|
6726
5971
|
originalFilename: string;
|
6727
|
-
}[] |
|
6728
|
-
|
6729
|
-
createdAtLocation?: string | null | undefined;
|
5972
|
+
}[] | undefined>;
|
5973
|
+
createdAtLocation: string;
|
6730
5974
|
annotation?: Record<string, string | number | boolean | {
|
6731
5975
|
type: string;
|
6732
5976
|
filename: string;
|
@@ -6742,10 +5986,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6742
5986
|
residentialArea?: string | null | undefined;
|
6743
5987
|
street?: string | null | undefined;
|
6744
5988
|
zipCode?: string | null | undefined;
|
6745
|
-
} | {
|
6746
|
-
firstname: string;
|
6747
|
-
surname: string;
|
6748
|
-
middlename?: string | null | undefined;
|
6749
5989
|
} | {
|
6750
5990
|
country: string;
|
6751
5991
|
district: string;
|
@@ -6768,16 +6008,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
6768
6008
|
option: string;
|
6769
6009
|
filename: string;
|
6770
6010
|
originalFilename: string;
|
6771
|
-
}[] |
|
6011
|
+
}[] | undefined> | undefined;
|
6772
6012
|
originalActionId?: string | undefined;
|
6773
6013
|
}, {
|
6774
6014
|
type: "READ";
|
6775
6015
|
id: string;
|
6776
6016
|
status: "Rejected" | "Requested" | "Accepted";
|
6777
|
-
transactionId: string;
|
6778
6017
|
createdAt: string;
|
6779
6018
|
createdBy: string;
|
6780
|
-
createdByRole: string;
|
6781
6019
|
declaration: Record<string, string | number | boolean | {
|
6782
6020
|
type: string;
|
6783
6021
|
filename: string;
|
@@ -6793,10 +6031,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6793
6031
|
residentialArea?: string | null | undefined;
|
6794
6032
|
street?: string | null | undefined;
|
6795
6033
|
zipCode?: string | null | undefined;
|
6796
|
-
} | {
|
6797
|
-
firstname: string;
|
6798
|
-
surname: string;
|
6799
|
-
middlename?: string | null | undefined;
|
6800
6034
|
} | {
|
6801
6035
|
country: string;
|
6802
6036
|
district: string;
|
@@ -6819,9 +6053,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6819
6053
|
option: string;
|
6820
6054
|
filename: string;
|
6821
6055
|
originalFilename: string;
|
6822
|
-
}[] |
|
6823
|
-
|
6824
|
-
createdAtLocation?: string | null | undefined;
|
6056
|
+
}[] | undefined>;
|
6057
|
+
createdAtLocation: string;
|
6825
6058
|
annotation?: Record<string, string | number | boolean | {
|
6826
6059
|
type: string;
|
6827
6060
|
filename: string;
|
@@ -6837,10 +6070,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6837
6070
|
residentialArea?: string | null | undefined;
|
6838
6071
|
street?: string | null | undefined;
|
6839
6072
|
zipCode?: string | null | undefined;
|
6840
|
-
} | {
|
6841
|
-
firstname: string;
|
6842
|
-
surname: string;
|
6843
|
-
middlename?: string | null | undefined;
|
6844
6073
|
} | {
|
6845
6074
|
country: string;
|
6846
6075
|
district: string;
|
@@ -6863,17 +6092,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
6863
6092
|
option: string;
|
6864
6093
|
filename: string;
|
6865
6094
|
originalFilename: string;
|
6866
|
-
}[] |
|
6095
|
+
}[] | undefined> | undefined;
|
6867
6096
|
originalActionId?: string | undefined;
|
6868
6097
|
}>]>, z.ZodObject<z.objectUtil.extendShape<Omit<{
|
6869
6098
|
id: z.ZodString;
|
6870
|
-
transactionId: z.ZodString;
|
6871
6099
|
createdAt: z.ZodString;
|
6872
6100
|
createdBy: z.ZodString;
|
6873
|
-
|
6874
|
-
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6875
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6876
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6101
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6877
6102
|
filename: z.ZodString;
|
6878
6103
|
originalFilename: z.ZodString;
|
6879
6104
|
type: z.ZodString;
|
@@ -6986,20 +6211,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6986
6211
|
addressLine2?: string | null | undefined;
|
6987
6212
|
addressLine3?: string | null | undefined;
|
6988
6213
|
postcodeOrZip?: string | null | undefined;
|
6989
|
-
}
|
6990
|
-
|
6991
|
-
surname: z.ZodString;
|
6992
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6993
|
-
}, "strip", z.ZodTypeAny, {
|
6994
|
-
firstname: string;
|
6995
|
-
surname: string;
|
6996
|
-
middlename?: string | null | undefined;
|
6997
|
-
}, {
|
6998
|
-
firstname: string;
|
6999
|
-
surname: string;
|
7000
|
-
middlename?: string | null | undefined;
|
7001
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7002
|
-
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<{
|
6214
|
+
}>]>>;
|
6215
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7003
6216
|
filename: z.ZodString;
|
7004
6217
|
originalFilename: z.ZodString;
|
7005
6218
|
type: z.ZodString;
|
@@ -7112,45 +6325,24 @@ export declare const EventDocument: z.ZodObject<{
|
|
7112
6325
|
addressLine2?: string | null | undefined;
|
7113
6326
|
addressLine3?: string | null | undefined;
|
7114
6327
|
postcodeOrZip?: string | null | undefined;
|
7115
|
-
}
|
7116
|
-
|
7117
|
-
surname: z.ZodString;
|
7118
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7119
|
-
}, "strip", z.ZodTypeAny, {
|
7120
|
-
firstname: string;
|
7121
|
-
surname: string;
|
7122
|
-
middlename?: string | null | undefined;
|
7123
|
-
}, {
|
7124
|
-
firstname: string;
|
7125
|
-
surname: string;
|
7126
|
-
middlename?: string | null | undefined;
|
7127
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6328
|
+
}>]>>>;
|
6329
|
+
createdAtLocation: z.ZodString;
|
7128
6330
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7129
6331
|
originalActionId: z.ZodOptional<z.ZodString>;
|
7130
|
-
}, "declaration" | "annotation">, {
|
6332
|
+
}, "createdBy" | "declaration" | "annotation" | "createdAtLocation">, {
|
7131
6333
|
type: z.ZodEnum<["NOTIFY", "DECLARE", "VALIDATE", "REGISTER", "REJECT", "ARCHIVE", "PRINT_CERTIFICATE"]>;
|
7132
6334
|
status: z.ZodLiteral<"Rejected">;
|
7133
6335
|
}>, "strip", z.ZodTypeAny, {
|
7134
6336
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
7135
6337
|
id: string;
|
7136
6338
|
status: "Rejected";
|
7137
|
-
transactionId: string;
|
7138
6339
|
createdAt: string;
|
7139
|
-
createdBy: string;
|
7140
|
-
createdByRole: string;
|
7141
|
-
createdBySignature?: string | null | undefined;
|
7142
|
-
createdAtLocation?: string | null | undefined;
|
7143
6340
|
originalActionId?: string | undefined;
|
7144
6341
|
}, {
|
7145
6342
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
7146
6343
|
id: string;
|
7147
6344
|
status: "Rejected";
|
7148
|
-
transactionId: string;
|
7149
6345
|
createdAt: string;
|
7150
|
-
createdBy: string;
|
7151
|
-
createdByRole: string;
|
7152
|
-
createdBySignature?: string | null | undefined;
|
7153
|
-
createdAtLocation?: string | null | undefined;
|
7154
6346
|
originalActionId?: string | undefined;
|
7155
6347
|
}>]>, "many">;
|
7156
6348
|
trackingId: z.ZodString;
|
@@ -7163,10 +6355,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7163
6355
|
type: "ASSIGN";
|
7164
6356
|
id: string;
|
7165
6357
|
status: "Rejected" | "Requested" | "Accepted";
|
7166
|
-
transactionId: string;
|
7167
6358
|
createdAt: string;
|
7168
6359
|
createdBy: string;
|
7169
|
-
createdByRole: string;
|
7170
6360
|
declaration: Record<string, string | number | boolean | {
|
7171
6361
|
type: string;
|
7172
6362
|
filename: string;
|
@@ -7182,10 +6372,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7182
6372
|
residentialArea?: string | null | undefined;
|
7183
6373
|
street?: string | null | undefined;
|
7184
6374
|
zipCode?: string | null | undefined;
|
7185
|
-
} | {
|
7186
|
-
firstname: string;
|
7187
|
-
surname: string;
|
7188
|
-
middlename?: string | null | undefined;
|
7189
6375
|
} | {
|
7190
6376
|
country: string;
|
7191
6377
|
district: string;
|
@@ -7208,10 +6394,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
7208
6394
|
option: string;
|
7209
6395
|
filename: string;
|
7210
6396
|
originalFilename: string;
|
7211
|
-
}[] |
|
6397
|
+
}[] | undefined>;
|
6398
|
+
createdAtLocation: string;
|
7212
6399
|
assignedTo: string;
|
7213
|
-
createdBySignature?: string | null | undefined;
|
7214
|
-
createdAtLocation?: string | null | undefined;
|
7215
6400
|
annotation?: Record<string, string | number | boolean | {
|
7216
6401
|
type: string;
|
7217
6402
|
filename: string;
|
@@ -7227,10 +6412,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7227
6412
|
residentialArea?: string | null | undefined;
|
7228
6413
|
street?: string | null | undefined;
|
7229
6414
|
zipCode?: string | null | undefined;
|
7230
|
-
} | {
|
7231
|
-
firstname: string;
|
7232
|
-
surname: string;
|
7233
|
-
middlename?: string | null | undefined;
|
7234
6415
|
} | {
|
7235
6416
|
country: string;
|
7236
6417
|
district: string;
|
@@ -7253,16 +6434,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
7253
6434
|
option: string;
|
7254
6435
|
filename: string;
|
7255
6436
|
originalFilename: string;
|
7256
|
-
}[] |
|
6437
|
+
}[] | undefined> | undefined;
|
7257
6438
|
originalActionId?: string | undefined;
|
7258
6439
|
} | {
|
7259
6440
|
type: "UNASSIGN";
|
7260
6441
|
id: string;
|
7261
6442
|
status: "Rejected" | "Requested" | "Accepted";
|
7262
|
-
transactionId: string;
|
7263
6443
|
createdAt: string;
|
7264
6444
|
createdBy: string;
|
7265
|
-
createdByRole: string;
|
7266
6445
|
declaration: Record<string, string | number | boolean | {
|
7267
6446
|
type: string;
|
7268
6447
|
filename: string;
|
@@ -7278,10 +6457,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7278
6457
|
residentialArea?: string | null | undefined;
|
7279
6458
|
street?: string | null | undefined;
|
7280
6459
|
zipCode?: string | null | undefined;
|
7281
|
-
} | {
|
7282
|
-
firstname: string;
|
7283
|
-
surname: string;
|
7284
|
-
middlename?: string | null | undefined;
|
7285
6460
|
} | {
|
7286
6461
|
country: string;
|
7287
6462
|
district: string;
|
@@ -7304,10 +6479,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
7304
6479
|
option: string;
|
7305
6480
|
filename: string;
|
7306
6481
|
originalFilename: string;
|
7307
|
-
}[] |
|
6482
|
+
}[] | undefined>;
|
6483
|
+
createdAtLocation: string;
|
7308
6484
|
assignedTo: null;
|
7309
|
-
createdBySignature?: string | null | undefined;
|
7310
|
-
createdAtLocation?: string | null | undefined;
|
7311
6485
|
annotation?: Record<string, string | number | boolean | {
|
7312
6486
|
type: string;
|
7313
6487
|
filename: string;
|
@@ -7323,10 +6497,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7323
6497
|
residentialArea?: string | null | undefined;
|
7324
6498
|
street?: string | null | undefined;
|
7325
6499
|
zipCode?: string | null | undefined;
|
7326
|
-
} | {
|
7327
|
-
firstname: string;
|
7328
|
-
surname: string;
|
7329
|
-
middlename?: string | null | undefined;
|
7330
6500
|
} | {
|
7331
6501
|
country: string;
|
7332
6502
|
district: string;
|
@@ -7349,16 +6519,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
7349
6519
|
option: string;
|
7350
6520
|
filename: string;
|
7351
6521
|
originalFilename: string;
|
7352
|
-
}[] |
|
6522
|
+
}[] | undefined> | undefined;
|
7353
6523
|
originalActionId?: string | undefined;
|
7354
6524
|
} | {
|
7355
6525
|
type: "REGISTER";
|
7356
6526
|
id: string;
|
7357
6527
|
status: "Rejected" | "Requested" | "Accepted";
|
7358
|
-
transactionId: string;
|
7359
6528
|
createdAt: string;
|
7360
6529
|
createdBy: string;
|
7361
|
-
createdByRole: string;
|
7362
6530
|
declaration: Record<string, string | number | boolean | {
|
7363
6531
|
type: string;
|
7364
6532
|
filename: string;
|
@@ -7374,10 +6542,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7374
6542
|
residentialArea?: string | null | undefined;
|
7375
6543
|
street?: string | null | undefined;
|
7376
6544
|
zipCode?: string | null | undefined;
|
7377
|
-
} | {
|
7378
|
-
firstname: string;
|
7379
|
-
surname: string;
|
7380
|
-
middlename?: string | null | undefined;
|
7381
6545
|
} | {
|
7382
6546
|
country: string;
|
7383
6547
|
district: string;
|
@@ -7400,9 +6564,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7400
6564
|
option: string;
|
7401
6565
|
filename: string;
|
7402
6566
|
originalFilename: string;
|
7403
|
-
}[] |
|
7404
|
-
|
7405
|
-
createdAtLocation?: string | null | undefined;
|
6567
|
+
}[] | undefined>;
|
6568
|
+
createdAtLocation: string;
|
7406
6569
|
annotation?: Record<string, string | number | boolean | {
|
7407
6570
|
type: string;
|
7408
6571
|
filename: string;
|
@@ -7418,10 +6581,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7418
6581
|
residentialArea?: string | null | undefined;
|
7419
6582
|
street?: string | null | undefined;
|
7420
6583
|
zipCode?: string | null | undefined;
|
7421
|
-
} | {
|
7422
|
-
firstname: string;
|
7423
|
-
surname: string;
|
7424
|
-
middlename?: string | null | undefined;
|
7425
6584
|
} | {
|
7426
6585
|
country: string;
|
7427
6586
|
district: string;
|
@@ -7444,17 +6603,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
7444
6603
|
option: string;
|
7445
6604
|
filename: string;
|
7446
6605
|
originalFilename: string;
|
7447
|
-
}[] |
|
6606
|
+
}[] | undefined> | undefined;
|
7448
6607
|
originalActionId?: string | undefined;
|
7449
6608
|
registrationNumber?: string | undefined;
|
7450
6609
|
} | {
|
7451
6610
|
type: "DECLARE";
|
7452
6611
|
id: string;
|
7453
6612
|
status: "Rejected" | "Requested" | "Accepted";
|
7454
|
-
transactionId: string;
|
7455
6613
|
createdAt: string;
|
7456
6614
|
createdBy: string;
|
7457
|
-
createdByRole: string;
|
7458
6615
|
declaration: Record<string, string | number | boolean | {
|
7459
6616
|
type: string;
|
7460
6617
|
filename: string;
|
@@ -7470,10 +6627,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7470
6627
|
residentialArea?: string | null | undefined;
|
7471
6628
|
street?: string | null | undefined;
|
7472
6629
|
zipCode?: string | null | undefined;
|
7473
|
-
} | {
|
7474
|
-
firstname: string;
|
7475
|
-
surname: string;
|
7476
|
-
middlename?: string | null | undefined;
|
7477
6630
|
} | {
|
7478
6631
|
country: string;
|
7479
6632
|
district: string;
|
@@ -7496,9 +6649,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7496
6649
|
option: string;
|
7497
6650
|
filename: string;
|
7498
6651
|
originalFilename: string;
|
7499
|
-
}[] |
|
7500
|
-
|
7501
|
-
createdAtLocation?: string | null | undefined;
|
6652
|
+
}[] | undefined>;
|
6653
|
+
createdAtLocation: string;
|
7502
6654
|
annotation?: Record<string, string | number | boolean | {
|
7503
6655
|
type: string;
|
7504
6656
|
filename: string;
|
@@ -7514,10 +6666,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7514
6666
|
residentialArea?: string | null | undefined;
|
7515
6667
|
street?: string | null | undefined;
|
7516
6668
|
zipCode?: string | null | undefined;
|
7517
|
-
} | {
|
7518
|
-
firstname: string;
|
7519
|
-
surname: string;
|
7520
|
-
middlename?: string | null | undefined;
|
7521
6669
|
} | {
|
7522
6670
|
country: string;
|
7523
6671
|
district: string;
|
@@ -7540,16 +6688,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
7540
6688
|
option: string;
|
7541
6689
|
filename: string;
|
7542
6690
|
originalFilename: string;
|
7543
|
-
}[] |
|
6691
|
+
}[] | undefined> | undefined;
|
7544
6692
|
originalActionId?: string | undefined;
|
7545
6693
|
} | {
|
7546
6694
|
type: "VALIDATE";
|
7547
6695
|
id: string;
|
7548
6696
|
status: "Rejected" | "Requested" | "Accepted";
|
7549
|
-
transactionId: string;
|
7550
6697
|
createdAt: string;
|
7551
6698
|
createdBy: string;
|
7552
|
-
createdByRole: string;
|
7553
6699
|
declaration: Record<string, string | number | boolean | {
|
7554
6700
|
type: string;
|
7555
6701
|
filename: string;
|
@@ -7565,10 +6711,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7565
6711
|
residentialArea?: string | null | undefined;
|
7566
6712
|
street?: string | null | undefined;
|
7567
6713
|
zipCode?: string | null | undefined;
|
7568
|
-
} | {
|
7569
|
-
firstname: string;
|
7570
|
-
surname: string;
|
7571
|
-
middlename?: string | null | undefined;
|
7572
6714
|
} | {
|
7573
6715
|
country: string;
|
7574
6716
|
district: string;
|
@@ -7591,9 +6733,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7591
6733
|
option: string;
|
7592
6734
|
filename: string;
|
7593
6735
|
originalFilename: string;
|
7594
|
-
}[] |
|
7595
|
-
|
7596
|
-
createdAtLocation?: string | null | undefined;
|
6736
|
+
}[] | undefined>;
|
6737
|
+
createdAtLocation: string;
|
7597
6738
|
annotation?: Record<string, string | number | boolean | {
|
7598
6739
|
type: string;
|
7599
6740
|
filename: string;
|
@@ -7609,10 +6750,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7609
6750
|
residentialArea?: string | null | undefined;
|
7610
6751
|
street?: string | null | undefined;
|
7611
6752
|
zipCode?: string | null | undefined;
|
7612
|
-
} | {
|
7613
|
-
firstname: string;
|
7614
|
-
surname: string;
|
7615
|
-
middlename?: string | null | undefined;
|
7616
6753
|
} | {
|
7617
6754
|
country: string;
|
7618
6755
|
district: string;
|
@@ -7635,20 +6772,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
7635
6772
|
option: string;
|
7636
6773
|
filename: string;
|
7637
6774
|
originalFilename: string;
|
7638
|
-
}[] |
|
6775
|
+
}[] | undefined> | undefined;
|
7639
6776
|
originalActionId?: string | undefined;
|
7640
6777
|
} | {
|
7641
6778
|
type: "REJECT";
|
7642
6779
|
id: string;
|
7643
6780
|
status: "Rejected" | "Requested" | "Accepted";
|
7644
|
-
reason: {
|
7645
|
-
message: string;
|
7646
|
-
isDuplicate?: boolean | undefined;
|
7647
|
-
};
|
7648
|
-
transactionId: string;
|
7649
6781
|
createdAt: string;
|
7650
6782
|
createdBy: string;
|
7651
|
-
createdByRole: string;
|
7652
6783
|
declaration: Record<string, string | number | boolean | {
|
7653
6784
|
type: string;
|
7654
6785
|
filename: string;
|
@@ -7664,10 +6795,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7664
6795
|
residentialArea?: string | null | undefined;
|
7665
6796
|
street?: string | null | undefined;
|
7666
6797
|
zipCode?: string | null | undefined;
|
7667
|
-
} | {
|
7668
|
-
firstname: string;
|
7669
|
-
surname: string;
|
7670
|
-
middlename?: string | null | undefined;
|
7671
6798
|
} | {
|
7672
6799
|
country: string;
|
7673
6800
|
district: string;
|
@@ -7690,9 +6817,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7690
6817
|
option: string;
|
7691
6818
|
filename: string;
|
7692
6819
|
originalFilename: string;
|
7693
|
-
}[] |
|
7694
|
-
|
7695
|
-
createdAtLocation?: string | null | undefined;
|
6820
|
+
}[] | undefined>;
|
6821
|
+
createdAtLocation: string;
|
7696
6822
|
annotation?: Record<string, string | number | boolean | {
|
7697
6823
|
type: string;
|
7698
6824
|
filename: string;
|
@@ -7708,10 +6834,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7708
6834
|
residentialArea?: string | null | undefined;
|
7709
6835
|
street?: string | null | undefined;
|
7710
6836
|
zipCode?: string | null | undefined;
|
7711
|
-
} | {
|
7712
|
-
firstname: string;
|
7713
|
-
surname: string;
|
7714
|
-
middlename?: string | null | undefined;
|
7715
6837
|
} | {
|
7716
6838
|
country: string;
|
7717
6839
|
district: string;
|
@@ -7734,16 +6856,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
7734
6856
|
option: string;
|
7735
6857
|
filename: string;
|
7736
6858
|
originalFilename: string;
|
7737
|
-
}[] |
|
6859
|
+
}[] | undefined> | undefined;
|
7738
6860
|
originalActionId?: string | undefined;
|
7739
6861
|
} | {
|
7740
6862
|
type: "MARKED_AS_DUPLICATE";
|
7741
6863
|
id: string;
|
7742
6864
|
status: "Rejected" | "Requested" | "Accepted";
|
7743
|
-
transactionId: string;
|
7744
6865
|
createdAt: string;
|
7745
6866
|
createdBy: string;
|
7746
|
-
createdByRole: string;
|
7747
6867
|
declaration: Record<string, string | number | boolean | {
|
7748
6868
|
type: string;
|
7749
6869
|
filename: string;
|
@@ -7759,10 +6879,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7759
6879
|
residentialArea?: string | null | undefined;
|
7760
6880
|
street?: string | null | undefined;
|
7761
6881
|
zipCode?: string | null | undefined;
|
7762
|
-
} | {
|
7763
|
-
firstname: string;
|
7764
|
-
surname: string;
|
7765
|
-
middlename?: string | null | undefined;
|
7766
6882
|
} | {
|
7767
6883
|
country: string;
|
7768
6884
|
district: string;
|
@@ -7785,9 +6901,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7785
6901
|
option: string;
|
7786
6902
|
filename: string;
|
7787
6903
|
originalFilename: string;
|
7788
|
-
}[] |
|
7789
|
-
|
7790
|
-
createdAtLocation?: string | null | undefined;
|
6904
|
+
}[] | undefined>;
|
6905
|
+
createdAtLocation: string;
|
7791
6906
|
annotation?: Record<string, string | number | boolean | {
|
7792
6907
|
type: string;
|
7793
6908
|
filename: string;
|
@@ -7803,10 +6918,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7803
6918
|
residentialArea?: string | null | undefined;
|
7804
6919
|
street?: string | null | undefined;
|
7805
6920
|
zipCode?: string | null | undefined;
|
7806
|
-
} | {
|
7807
|
-
firstname: string;
|
7808
|
-
surname: string;
|
7809
|
-
middlename?: string | null | undefined;
|
7810
6921
|
} | {
|
7811
6922
|
country: string;
|
7812
6923
|
district: string;
|
@@ -7829,20 +6940,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
7829
6940
|
option: string;
|
7830
6941
|
filename: string;
|
7831
6942
|
originalFilename: string;
|
7832
|
-
}[] |
|
6943
|
+
}[] | undefined> | undefined;
|
7833
6944
|
originalActionId?: string | undefined;
|
7834
6945
|
} | {
|
7835
6946
|
type: "ARCHIVE";
|
7836
6947
|
id: string;
|
7837
6948
|
status: "Rejected" | "Requested" | "Accepted";
|
7838
|
-
reason: {
|
7839
|
-
message: string;
|
7840
|
-
isDuplicate?: boolean | undefined;
|
7841
|
-
};
|
7842
|
-
transactionId: string;
|
7843
6949
|
createdAt: string;
|
7844
6950
|
createdBy: string;
|
7845
|
-
createdByRole: string;
|
7846
6951
|
declaration: Record<string, string | number | boolean | {
|
7847
6952
|
type: string;
|
7848
6953
|
filename: string;
|
@@ -7858,10 +6963,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7858
6963
|
residentialArea?: string | null | undefined;
|
7859
6964
|
street?: string | null | undefined;
|
7860
6965
|
zipCode?: string | null | undefined;
|
7861
|
-
} | {
|
7862
|
-
firstname: string;
|
7863
|
-
surname: string;
|
7864
|
-
middlename?: string | null | undefined;
|
7865
6966
|
} | {
|
7866
6967
|
country: string;
|
7867
6968
|
district: string;
|
@@ -7884,9 +6985,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7884
6985
|
option: string;
|
7885
6986
|
filename: string;
|
7886
6987
|
originalFilename: string;
|
7887
|
-
}[] |
|
7888
|
-
|
7889
|
-
createdAtLocation?: string | null | undefined;
|
6988
|
+
}[] | undefined>;
|
6989
|
+
createdAtLocation: string;
|
7890
6990
|
annotation?: Record<string, string | number | boolean | {
|
7891
6991
|
type: string;
|
7892
6992
|
filename: string;
|
@@ -7902,10 +7002,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7902
7002
|
residentialArea?: string | null | undefined;
|
7903
7003
|
street?: string | null | undefined;
|
7904
7004
|
zipCode?: string | null | undefined;
|
7905
|
-
} | {
|
7906
|
-
firstname: string;
|
7907
|
-
surname: string;
|
7908
|
-
middlename?: string | null | undefined;
|
7909
7005
|
} | {
|
7910
7006
|
country: string;
|
7911
7007
|
district: string;
|
@@ -7928,16 +7024,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
7928
7024
|
option: string;
|
7929
7025
|
filename: string;
|
7930
7026
|
originalFilename: string;
|
7931
|
-
}[] |
|
7027
|
+
}[] | undefined> | undefined;
|
7932
7028
|
originalActionId?: string | undefined;
|
7933
7029
|
} | {
|
7934
7030
|
type: "CREATE";
|
7935
7031
|
id: string;
|
7936
7032
|
status: "Rejected" | "Requested" | "Accepted";
|
7937
|
-
transactionId: string;
|
7938
7033
|
createdAt: string;
|
7939
7034
|
createdBy: string;
|
7940
|
-
createdByRole: string;
|
7941
7035
|
declaration: Record<string, string | number | boolean | {
|
7942
7036
|
type: string;
|
7943
7037
|
filename: string;
|
@@ -7953,10 +7047,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7953
7047
|
residentialArea?: string | null | undefined;
|
7954
7048
|
street?: string | null | undefined;
|
7955
7049
|
zipCode?: string | null | undefined;
|
7956
|
-
} | {
|
7957
|
-
firstname: string;
|
7958
|
-
surname: string;
|
7959
|
-
middlename?: string | null | undefined;
|
7960
7050
|
} | {
|
7961
7051
|
country: string;
|
7962
7052
|
district: string;
|
@@ -7979,9 +7069,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7979
7069
|
option: string;
|
7980
7070
|
filename: string;
|
7981
7071
|
originalFilename: string;
|
7982
|
-
}[] |
|
7983
|
-
|
7984
|
-
createdAtLocation?: string | null | undefined;
|
7072
|
+
}[] | undefined>;
|
7073
|
+
createdAtLocation: string;
|
7985
7074
|
annotation?: Record<string, string | number | boolean | {
|
7986
7075
|
type: string;
|
7987
7076
|
filename: string;
|
@@ -7997,10 +7086,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7997
7086
|
residentialArea?: string | null | undefined;
|
7998
7087
|
street?: string | null | undefined;
|
7999
7088
|
zipCode?: string | null | undefined;
|
8000
|
-
} | {
|
8001
|
-
firstname: string;
|
8002
|
-
surname: string;
|
8003
|
-
middlename?: string | null | undefined;
|
8004
7089
|
} | {
|
8005
7090
|
country: string;
|
8006
7091
|
district: string;
|
@@ -8023,16 +7108,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
8023
7108
|
option: string;
|
8024
7109
|
filename: string;
|
8025
7110
|
originalFilename: string;
|
8026
|
-
}[] |
|
7111
|
+
}[] | undefined> | undefined;
|
8027
7112
|
originalActionId?: string | undefined;
|
8028
7113
|
} | {
|
8029
7114
|
type: "NOTIFY";
|
8030
7115
|
id: string;
|
8031
7116
|
status: "Rejected" | "Requested" | "Accepted";
|
8032
|
-
transactionId: string;
|
8033
7117
|
createdAt: string;
|
8034
7118
|
createdBy: string;
|
8035
|
-
createdByRole: string;
|
8036
7119
|
declaration: Record<string, string | number | boolean | {
|
8037
7120
|
type: string;
|
8038
7121
|
filename: string;
|
@@ -8048,10 +7131,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8048
7131
|
residentialArea?: string | null | undefined;
|
8049
7132
|
street?: string | null | undefined;
|
8050
7133
|
zipCode?: string | null | undefined;
|
8051
|
-
} | {
|
8052
|
-
firstname: string;
|
8053
|
-
surname: string;
|
8054
|
-
middlename?: string | null | undefined;
|
8055
7134
|
} | {
|
8056
7135
|
country: string;
|
8057
7136
|
district: string;
|
@@ -8074,9 +7153,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8074
7153
|
option: string;
|
8075
7154
|
filename: string;
|
8076
7155
|
originalFilename: string;
|
8077
|
-
}[] |
|
8078
|
-
|
8079
|
-
createdAtLocation?: string | null | undefined;
|
7156
|
+
}[] | undefined>;
|
7157
|
+
createdAtLocation: string;
|
8080
7158
|
annotation?: Record<string, string | number | boolean | {
|
8081
7159
|
type: string;
|
8082
7160
|
filename: string;
|
@@ -8092,10 +7170,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8092
7170
|
residentialArea?: string | null | undefined;
|
8093
7171
|
street?: string | null | undefined;
|
8094
7172
|
zipCode?: string | null | undefined;
|
8095
|
-
} | {
|
8096
|
-
firstname: string;
|
8097
|
-
surname: string;
|
8098
|
-
middlename?: string | null | undefined;
|
8099
7173
|
} | {
|
8100
7174
|
country: string;
|
8101
7175
|
district: string;
|
@@ -8118,16 +7192,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
8118
7192
|
option: string;
|
8119
7193
|
filename: string;
|
8120
7194
|
originalFilename: string;
|
8121
|
-
}[] |
|
7195
|
+
}[] | undefined> | undefined;
|
8122
7196
|
originalActionId?: string | undefined;
|
8123
7197
|
} | {
|
8124
7198
|
type: "PRINT_CERTIFICATE";
|
8125
7199
|
id: string;
|
8126
7200
|
status: "Rejected" | "Requested" | "Accepted";
|
8127
|
-
transactionId: string;
|
8128
7201
|
createdAt: string;
|
8129
7202
|
createdBy: string;
|
8130
|
-
createdByRole: string;
|
8131
7203
|
declaration: Record<string, string | number | boolean | {
|
8132
7204
|
type: string;
|
8133
7205
|
filename: string;
|
@@ -8143,10 +7215,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8143
7215
|
residentialArea?: string | null | undefined;
|
8144
7216
|
street?: string | null | undefined;
|
8145
7217
|
zipCode?: string | null | undefined;
|
8146
|
-
} | {
|
8147
|
-
firstname: string;
|
8148
|
-
surname: string;
|
8149
|
-
middlename?: string | null | undefined;
|
8150
7218
|
} | {
|
8151
7219
|
country: string;
|
8152
7220
|
district: string;
|
@@ -8169,9 +7237,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8169
7237
|
option: string;
|
8170
7238
|
filename: string;
|
8171
7239
|
originalFilename: string;
|
8172
|
-
}[] |
|
8173
|
-
|
8174
|
-
createdAtLocation?: string | null | undefined;
|
7240
|
+
}[] | undefined>;
|
7241
|
+
createdAtLocation: string;
|
8175
7242
|
annotation?: Record<string, string | number | boolean | {
|
8176
7243
|
type: string;
|
8177
7244
|
filename: string;
|
@@ -8187,10 +7254,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8187
7254
|
residentialArea?: string | null | undefined;
|
8188
7255
|
street?: string | null | undefined;
|
8189
7256
|
zipCode?: string | null | undefined;
|
8190
|
-
} | {
|
8191
|
-
firstname: string;
|
8192
|
-
surname: string;
|
8193
|
-
middlename?: string | null | undefined;
|
8194
7257
|
} | {
|
8195
7258
|
country: string;
|
8196
7259
|
district: string;
|
@@ -8213,16 +7276,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
8213
7276
|
option: string;
|
8214
7277
|
filename: string;
|
8215
7278
|
originalFilename: string;
|
8216
|
-
}[] |
|
7279
|
+
}[] | undefined> | undefined;
|
8217
7280
|
originalActionId?: string | undefined;
|
8218
7281
|
} | {
|
8219
7282
|
type: "REQUEST_CORRECTION";
|
8220
7283
|
id: string;
|
8221
7284
|
status: "Rejected" | "Requested" | "Accepted";
|
8222
|
-
transactionId: string;
|
8223
7285
|
createdAt: string;
|
8224
7286
|
createdBy: string;
|
8225
|
-
createdByRole: string;
|
8226
7287
|
declaration: Record<string, string | number | boolean | {
|
8227
7288
|
type: string;
|
8228
7289
|
filename: string;
|
@@ -8238,10 +7299,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8238
7299
|
residentialArea?: string | null | undefined;
|
8239
7300
|
street?: string | null | undefined;
|
8240
7301
|
zipCode?: string | null | undefined;
|
8241
|
-
} | {
|
8242
|
-
firstname: string;
|
8243
|
-
surname: string;
|
8244
|
-
middlename?: string | null | undefined;
|
8245
7302
|
} | {
|
8246
7303
|
country: string;
|
8247
7304
|
district: string;
|
@@ -8264,9 +7321,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8264
7321
|
option: string;
|
8265
7322
|
filename: string;
|
8266
7323
|
originalFilename: string;
|
8267
|
-
}[] |
|
8268
|
-
|
8269
|
-
createdAtLocation?: string | null | undefined;
|
7324
|
+
}[] | undefined>;
|
7325
|
+
createdAtLocation: string;
|
8270
7326
|
annotation?: Record<string, string | number | boolean | {
|
8271
7327
|
type: string;
|
8272
7328
|
filename: string;
|
@@ -8282,10 +7338,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8282
7338
|
residentialArea?: string | null | undefined;
|
8283
7339
|
street?: string | null | undefined;
|
8284
7340
|
zipCode?: string | null | undefined;
|
8285
|
-
} | {
|
8286
|
-
firstname: string;
|
8287
|
-
surname: string;
|
8288
|
-
middlename?: string | null | undefined;
|
8289
7341
|
} | {
|
8290
7342
|
country: string;
|
8291
7343
|
district: string;
|
@@ -8308,16 +7360,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
8308
7360
|
option: string;
|
8309
7361
|
filename: string;
|
8310
7362
|
originalFilename: string;
|
8311
|
-
}[] |
|
7363
|
+
}[] | undefined> | undefined;
|
8312
7364
|
originalActionId?: string | undefined;
|
8313
7365
|
} | {
|
8314
7366
|
type: "APPROVE_CORRECTION";
|
8315
7367
|
id: string;
|
8316
7368
|
status: "Rejected" | "Requested" | "Accepted";
|
8317
|
-
transactionId: string;
|
8318
7369
|
createdAt: string;
|
8319
7370
|
createdBy: string;
|
8320
|
-
createdByRole: string;
|
8321
7371
|
declaration: Record<string, string | number | boolean | {
|
8322
7372
|
type: string;
|
8323
7373
|
filename: string;
|
@@ -8333,10 +7383,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8333
7383
|
residentialArea?: string | null | undefined;
|
8334
7384
|
street?: string | null | undefined;
|
8335
7385
|
zipCode?: string | null | undefined;
|
8336
|
-
} | {
|
8337
|
-
firstname: string;
|
8338
|
-
surname: string;
|
8339
|
-
middlename?: string | null | undefined;
|
8340
7386
|
} | {
|
8341
7387
|
country: string;
|
8342
7388
|
district: string;
|
@@ -8359,10 +7405,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
8359
7405
|
option: string;
|
8360
7406
|
filename: string;
|
8361
7407
|
originalFilename: string;
|
8362
|
-
}[] |
|
7408
|
+
}[] | undefined>;
|
7409
|
+
createdAtLocation: string;
|
8363
7410
|
requestId: string;
|
8364
|
-
createdBySignature?: string | null | undefined;
|
8365
|
-
createdAtLocation?: string | null | undefined;
|
8366
7411
|
annotation?: Record<string, string | number | boolean | {
|
8367
7412
|
type: string;
|
8368
7413
|
filename: string;
|
@@ -8378,10 +7423,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8378
7423
|
residentialArea?: string | null | undefined;
|
8379
7424
|
street?: string | null | undefined;
|
8380
7425
|
zipCode?: string | null | undefined;
|
8381
|
-
} | {
|
8382
|
-
firstname: string;
|
8383
|
-
surname: string;
|
8384
|
-
middlename?: string | null | undefined;
|
8385
7426
|
} | {
|
8386
7427
|
country: string;
|
8387
7428
|
district: string;
|
@@ -8404,16 +7445,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
8404
7445
|
option: string;
|
8405
7446
|
filename: string;
|
8406
7447
|
originalFilename: string;
|
8407
|
-
}[] |
|
7448
|
+
}[] | undefined> | undefined;
|
8408
7449
|
originalActionId?: string | undefined;
|
8409
7450
|
} | {
|
8410
7451
|
type: "REJECT_CORRECTION";
|
8411
7452
|
id: string;
|
8412
7453
|
status: "Rejected" | "Requested" | "Accepted";
|
8413
|
-
transactionId: string;
|
8414
7454
|
createdAt: string;
|
8415
7455
|
createdBy: string;
|
8416
|
-
createdByRole: string;
|
8417
7456
|
declaration: Record<string, string | number | boolean | {
|
8418
7457
|
type: string;
|
8419
7458
|
filename: string;
|
@@ -8429,10 +7468,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8429
7468
|
residentialArea?: string | null | undefined;
|
8430
7469
|
street?: string | null | undefined;
|
8431
7470
|
zipCode?: string | null | undefined;
|
8432
|
-
} | {
|
8433
|
-
firstname: string;
|
8434
|
-
surname: string;
|
8435
|
-
middlename?: string | null | undefined;
|
8436
7471
|
} | {
|
8437
7472
|
country: string;
|
8438
7473
|
district: string;
|
@@ -8455,10 +7490,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
8455
7490
|
option: string;
|
8456
7491
|
filename: string;
|
8457
7492
|
originalFilename: string;
|
8458
|
-
}[] |
|
7493
|
+
}[] | undefined>;
|
7494
|
+
createdAtLocation: string;
|
8459
7495
|
requestId: string;
|
8460
|
-
createdBySignature?: string | null | undefined;
|
8461
|
-
createdAtLocation?: string | null | undefined;
|
8462
7496
|
annotation?: Record<string, string | number | boolean | {
|
8463
7497
|
type: string;
|
8464
7498
|
filename: string;
|
@@ -8474,10 +7508,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8474
7508
|
residentialArea?: string | null | undefined;
|
8475
7509
|
street?: string | null | undefined;
|
8476
7510
|
zipCode?: string | null | undefined;
|
8477
|
-
} | {
|
8478
|
-
firstname: string;
|
8479
|
-
surname: string;
|
8480
|
-
middlename?: string | null | undefined;
|
8481
7511
|
} | {
|
8482
7512
|
country: string;
|
8483
7513
|
district: string;
|
@@ -8500,16 +7530,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
8500
7530
|
option: string;
|
8501
7531
|
filename: string;
|
8502
7532
|
originalFilename: string;
|
8503
|
-
}[] |
|
7533
|
+
}[] | undefined> | undefined;
|
8504
7534
|
originalActionId?: string | undefined;
|
8505
7535
|
} | {
|
8506
7536
|
type: "READ";
|
8507
7537
|
id: string;
|
8508
7538
|
status: "Rejected" | "Requested" | "Accepted";
|
8509
|
-
transactionId: string;
|
8510
7539
|
createdAt: string;
|
8511
7540
|
createdBy: string;
|
8512
|
-
createdByRole: string;
|
8513
7541
|
declaration: Record<string, string | number | boolean | {
|
8514
7542
|
type: string;
|
8515
7543
|
filename: string;
|
@@ -8525,10 +7553,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8525
7553
|
residentialArea?: string | null | undefined;
|
8526
7554
|
street?: string | null | undefined;
|
8527
7555
|
zipCode?: string | null | undefined;
|
8528
|
-
} | {
|
8529
|
-
firstname: string;
|
8530
|
-
surname: string;
|
8531
|
-
middlename?: string | null | undefined;
|
8532
7556
|
} | {
|
8533
7557
|
country: string;
|
8534
7558
|
district: string;
|
@@ -8551,9 +7575,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8551
7575
|
option: string;
|
8552
7576
|
filename: string;
|
8553
7577
|
originalFilename: string;
|
8554
|
-
}[] |
|
8555
|
-
|
8556
|
-
createdAtLocation?: string | null | undefined;
|
7578
|
+
}[] | undefined>;
|
7579
|
+
createdAtLocation: string;
|
8557
7580
|
annotation?: Record<string, string | number | boolean | {
|
8558
7581
|
type: string;
|
8559
7582
|
filename: string;
|
@@ -8569,10 +7592,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8569
7592
|
residentialArea?: string | null | undefined;
|
8570
7593
|
street?: string | null | undefined;
|
8571
7594
|
zipCode?: string | null | undefined;
|
8572
|
-
} | {
|
8573
|
-
firstname: string;
|
8574
|
-
surname: string;
|
8575
|
-
middlename?: string | null | undefined;
|
8576
7595
|
} | {
|
8577
7596
|
country: string;
|
8578
7597
|
district: string;
|
@@ -8595,18 +7614,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
8595
7614
|
option: string;
|
8596
7615
|
filename: string;
|
8597
7616
|
originalFilename: string;
|
8598
|
-
}[] |
|
7617
|
+
}[] | undefined> | undefined;
|
8599
7618
|
originalActionId?: string | undefined;
|
8600
7619
|
} | {
|
8601
7620
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
8602
7621
|
id: string;
|
8603
7622
|
status: "Rejected";
|
8604
|
-
transactionId: string;
|
8605
7623
|
createdAt: string;
|
8606
|
-
createdBy: string;
|
8607
|
-
createdByRole: string;
|
8608
|
-
createdBySignature?: string | null | undefined;
|
8609
|
-
createdAtLocation?: string | null | undefined;
|
8610
7624
|
originalActionId?: string | undefined;
|
8611
7625
|
})[];
|
8612
7626
|
trackingId: string;
|
@@ -8619,10 +7633,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8619
7633
|
type: "ASSIGN";
|
8620
7634
|
id: string;
|
8621
7635
|
status: "Rejected" | "Requested" | "Accepted";
|
8622
|
-
transactionId: string;
|
8623
7636
|
createdAt: string;
|
8624
7637
|
createdBy: string;
|
8625
|
-
createdByRole: string;
|
8626
7638
|
declaration: Record<string, string | number | boolean | {
|
8627
7639
|
type: string;
|
8628
7640
|
filename: string;
|
@@ -8638,10 +7650,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8638
7650
|
residentialArea?: string | null | undefined;
|
8639
7651
|
street?: string | null | undefined;
|
8640
7652
|
zipCode?: string | null | undefined;
|
8641
|
-
} | {
|
8642
|
-
firstname: string;
|
8643
|
-
surname: string;
|
8644
|
-
middlename?: string | null | undefined;
|
8645
7653
|
} | {
|
8646
7654
|
country: string;
|
8647
7655
|
district: string;
|
@@ -8664,10 +7672,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
8664
7672
|
option: string;
|
8665
7673
|
filename: string;
|
8666
7674
|
originalFilename: string;
|
8667
|
-
}[] |
|
7675
|
+
}[] | undefined>;
|
7676
|
+
createdAtLocation: string;
|
8668
7677
|
assignedTo: string;
|
8669
|
-
createdBySignature?: string | null | undefined;
|
8670
|
-
createdAtLocation?: string | null | undefined;
|
8671
7678
|
annotation?: Record<string, string | number | boolean | {
|
8672
7679
|
type: string;
|
8673
7680
|
filename: string;
|
@@ -8683,10 +7690,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8683
7690
|
residentialArea?: string | null | undefined;
|
8684
7691
|
street?: string | null | undefined;
|
8685
7692
|
zipCode?: string | null | undefined;
|
8686
|
-
} | {
|
8687
|
-
firstname: string;
|
8688
|
-
surname: string;
|
8689
|
-
middlename?: string | null | undefined;
|
8690
7693
|
} | {
|
8691
7694
|
country: string;
|
8692
7695
|
district: string;
|
@@ -8709,16 +7712,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
8709
7712
|
option: string;
|
8710
7713
|
filename: string;
|
8711
7714
|
originalFilename: string;
|
8712
|
-
}[] |
|
7715
|
+
}[] | undefined> | undefined;
|
8713
7716
|
originalActionId?: string | undefined;
|
8714
7717
|
} | {
|
8715
7718
|
type: "UNASSIGN";
|
8716
7719
|
id: string;
|
8717
7720
|
status: "Rejected" | "Requested" | "Accepted";
|
8718
|
-
transactionId: string;
|
8719
7721
|
createdAt: string;
|
8720
7722
|
createdBy: string;
|
8721
|
-
createdByRole: string;
|
8722
7723
|
declaration: Record<string, string | number | boolean | {
|
8723
7724
|
type: string;
|
8724
7725
|
filename: string;
|
@@ -8734,10 +7735,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8734
7735
|
residentialArea?: string | null | undefined;
|
8735
7736
|
street?: string | null | undefined;
|
8736
7737
|
zipCode?: string | null | undefined;
|
8737
|
-
} | {
|
8738
|
-
firstname: string;
|
8739
|
-
surname: string;
|
8740
|
-
middlename?: string | null | undefined;
|
8741
7738
|
} | {
|
8742
7739
|
country: string;
|
8743
7740
|
district: string;
|
@@ -8760,10 +7757,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8760
7757
|
option: string;
|
8761
7758
|
filename: string;
|
8762
7759
|
originalFilename: string;
|
8763
|
-
}[] |
|
8764
|
-
|
8765
|
-
createdBySignature?: string | null | undefined;
|
8766
|
-
createdAtLocation?: string | null | undefined;
|
7760
|
+
}[] | undefined>;
|
7761
|
+
createdAtLocation: string;
|
8767
7762
|
annotation?: Record<string, string | number | boolean | {
|
8768
7763
|
type: string;
|
8769
7764
|
filename: string;
|
@@ -8779,10 +7774,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8779
7774
|
residentialArea?: string | null | undefined;
|
8780
7775
|
street?: string | null | undefined;
|
8781
7776
|
zipCode?: string | null | undefined;
|
8782
|
-
} | {
|
8783
|
-
firstname: string;
|
8784
|
-
surname: string;
|
8785
|
-
middlename?: string | null | undefined;
|
8786
7777
|
} | {
|
8787
7778
|
country: string;
|
8788
7779
|
district: string;
|
@@ -8805,16 +7796,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
8805
7796
|
option: string;
|
8806
7797
|
filename: string;
|
8807
7798
|
originalFilename: string;
|
8808
|
-
}[] |
|
7799
|
+
}[] | undefined> | undefined;
|
8809
7800
|
originalActionId?: string | undefined;
|
7801
|
+
assignedTo?: null | undefined;
|
8810
7802
|
} | {
|
8811
7803
|
type: "REGISTER";
|
8812
7804
|
id: string;
|
8813
7805
|
status: "Rejected" | "Requested" | "Accepted";
|
8814
|
-
transactionId: string;
|
8815
7806
|
createdAt: string;
|
8816
7807
|
createdBy: string;
|
8817
|
-
createdByRole: string;
|
8818
7808
|
declaration: Record<string, string | number | boolean | {
|
8819
7809
|
type: string;
|
8820
7810
|
filename: string;
|
@@ -8830,10 +7820,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8830
7820
|
residentialArea?: string | null | undefined;
|
8831
7821
|
street?: string | null | undefined;
|
8832
7822
|
zipCode?: string | null | undefined;
|
8833
|
-
} | {
|
8834
|
-
firstname: string;
|
8835
|
-
surname: string;
|
8836
|
-
middlename?: string | null | undefined;
|
8837
7823
|
} | {
|
8838
7824
|
country: string;
|
8839
7825
|
district: string;
|
@@ -8856,9 +7842,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8856
7842
|
option: string;
|
8857
7843
|
filename: string;
|
8858
7844
|
originalFilename: string;
|
8859
|
-
}[] |
|
8860
|
-
|
8861
|
-
createdAtLocation?: string | null | undefined;
|
7845
|
+
}[] | undefined>;
|
7846
|
+
createdAtLocation: string;
|
8862
7847
|
annotation?: Record<string, string | number | boolean | {
|
8863
7848
|
type: string;
|
8864
7849
|
filename: string;
|
@@ -8874,10 +7859,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8874
7859
|
residentialArea?: string | null | undefined;
|
8875
7860
|
street?: string | null | undefined;
|
8876
7861
|
zipCode?: string | null | undefined;
|
8877
|
-
} | {
|
8878
|
-
firstname: string;
|
8879
|
-
surname: string;
|
8880
|
-
middlename?: string | null | undefined;
|
8881
7862
|
} | {
|
8882
7863
|
country: string;
|
8883
7864
|
district: string;
|
@@ -8900,17 +7881,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
8900
7881
|
option: string;
|
8901
7882
|
filename: string;
|
8902
7883
|
originalFilename: string;
|
8903
|
-
}[] |
|
7884
|
+
}[] | undefined> | undefined;
|
8904
7885
|
originalActionId?: string | undefined;
|
8905
7886
|
registrationNumber?: string | undefined;
|
8906
7887
|
} | {
|
8907
7888
|
type: "DECLARE";
|
8908
7889
|
id: string;
|
8909
7890
|
status: "Rejected" | "Requested" | "Accepted";
|
8910
|
-
transactionId: string;
|
8911
7891
|
createdAt: string;
|
8912
7892
|
createdBy: string;
|
8913
|
-
createdByRole: string;
|
8914
7893
|
declaration: Record<string, string | number | boolean | {
|
8915
7894
|
type: string;
|
8916
7895
|
filename: string;
|
@@ -8926,10 +7905,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8926
7905
|
residentialArea?: string | null | undefined;
|
8927
7906
|
street?: string | null | undefined;
|
8928
7907
|
zipCode?: string | null | undefined;
|
8929
|
-
} | {
|
8930
|
-
firstname: string;
|
8931
|
-
surname: string;
|
8932
|
-
middlename?: string | null | undefined;
|
8933
7908
|
} | {
|
8934
7909
|
country: string;
|
8935
7910
|
district: string;
|
@@ -8952,9 +7927,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8952
7927
|
option: string;
|
8953
7928
|
filename: string;
|
8954
7929
|
originalFilename: string;
|
8955
|
-
}[] |
|
8956
|
-
|
8957
|
-
createdAtLocation?: string | null | undefined;
|
7930
|
+
}[] | undefined>;
|
7931
|
+
createdAtLocation: string;
|
8958
7932
|
annotation?: Record<string, string | number | boolean | {
|
8959
7933
|
type: string;
|
8960
7934
|
filename: string;
|
@@ -8970,10 +7944,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8970
7944
|
residentialArea?: string | null | undefined;
|
8971
7945
|
street?: string | null | undefined;
|
8972
7946
|
zipCode?: string | null | undefined;
|
8973
|
-
} | {
|
8974
|
-
firstname: string;
|
8975
|
-
surname: string;
|
8976
|
-
middlename?: string | null | undefined;
|
8977
7947
|
} | {
|
8978
7948
|
country: string;
|
8979
7949
|
district: string;
|
@@ -8996,16 +7966,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
8996
7966
|
option: string;
|
8997
7967
|
filename: string;
|
8998
7968
|
originalFilename: string;
|
8999
|
-
}[] |
|
7969
|
+
}[] | undefined> | undefined;
|
9000
7970
|
originalActionId?: string | undefined;
|
9001
7971
|
} | {
|
9002
7972
|
type: "VALIDATE";
|
9003
7973
|
id: string;
|
9004
7974
|
status: "Rejected" | "Requested" | "Accepted";
|
9005
|
-
transactionId: string;
|
9006
7975
|
createdAt: string;
|
9007
7976
|
createdBy: string;
|
9008
|
-
createdByRole: string;
|
9009
7977
|
declaration: Record<string, string | number | boolean | {
|
9010
7978
|
type: string;
|
9011
7979
|
filename: string;
|
@@ -9021,10 +7989,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9021
7989
|
residentialArea?: string | null | undefined;
|
9022
7990
|
street?: string | null | undefined;
|
9023
7991
|
zipCode?: string | null | undefined;
|
9024
|
-
} | {
|
9025
|
-
firstname: string;
|
9026
|
-
surname: string;
|
9027
|
-
middlename?: string | null | undefined;
|
9028
7992
|
} | {
|
9029
7993
|
country: string;
|
9030
7994
|
district: string;
|
@@ -9047,9 +8011,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9047
8011
|
option: string;
|
9048
8012
|
filename: string;
|
9049
8013
|
originalFilename: string;
|
9050
|
-
}[] |
|
9051
|
-
|
9052
|
-
createdAtLocation?: string | null | undefined;
|
8014
|
+
}[] | undefined>;
|
8015
|
+
createdAtLocation: string;
|
9053
8016
|
annotation?: Record<string, string | number | boolean | {
|
9054
8017
|
type: string;
|
9055
8018
|
filename: string;
|
@@ -9065,10 +8028,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9065
8028
|
residentialArea?: string | null | undefined;
|
9066
8029
|
street?: string | null | undefined;
|
9067
8030
|
zipCode?: string | null | undefined;
|
9068
|
-
} | {
|
9069
|
-
firstname: string;
|
9070
|
-
surname: string;
|
9071
|
-
middlename?: string | null | undefined;
|
9072
8031
|
} | {
|
9073
8032
|
country: string;
|
9074
8033
|
district: string;
|
@@ -9091,20 +8050,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9091
8050
|
option: string;
|
9092
8051
|
filename: string;
|
9093
8052
|
originalFilename: string;
|
9094
|
-
}[] |
|
8053
|
+
}[] | undefined> | undefined;
|
9095
8054
|
originalActionId?: string | undefined;
|
9096
8055
|
} | {
|
9097
8056
|
type: "REJECT";
|
9098
8057
|
id: string;
|
9099
8058
|
status: "Rejected" | "Requested" | "Accepted";
|
9100
|
-
reason: {
|
9101
|
-
message: string;
|
9102
|
-
isDuplicate?: boolean | undefined;
|
9103
|
-
};
|
9104
|
-
transactionId: string;
|
9105
8059
|
createdAt: string;
|
9106
8060
|
createdBy: string;
|
9107
|
-
createdByRole: string;
|
9108
8061
|
declaration: Record<string, string | number | boolean | {
|
9109
8062
|
type: string;
|
9110
8063
|
filename: string;
|
@@ -9120,10 +8073,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9120
8073
|
residentialArea?: string | null | undefined;
|
9121
8074
|
street?: string | null | undefined;
|
9122
8075
|
zipCode?: string | null | undefined;
|
9123
|
-
} | {
|
9124
|
-
firstname: string;
|
9125
|
-
surname: string;
|
9126
|
-
middlename?: string | null | undefined;
|
9127
8076
|
} | {
|
9128
8077
|
country: string;
|
9129
8078
|
district: string;
|
@@ -9146,9 +8095,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9146
8095
|
option: string;
|
9147
8096
|
filename: string;
|
9148
8097
|
originalFilename: string;
|
9149
|
-
}[] |
|
9150
|
-
|
9151
|
-
createdAtLocation?: string | null | undefined;
|
8098
|
+
}[] | undefined>;
|
8099
|
+
createdAtLocation: string;
|
9152
8100
|
annotation?: Record<string, string | number | boolean | {
|
9153
8101
|
type: string;
|
9154
8102
|
filename: string;
|
@@ -9164,10 +8112,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9164
8112
|
residentialArea?: string | null | undefined;
|
9165
8113
|
street?: string | null | undefined;
|
9166
8114
|
zipCode?: string | null | undefined;
|
9167
|
-
} | {
|
9168
|
-
firstname: string;
|
9169
|
-
surname: string;
|
9170
|
-
middlename?: string | null | undefined;
|
9171
8115
|
} | {
|
9172
8116
|
country: string;
|
9173
8117
|
district: string;
|
@@ -9190,16 +8134,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9190
8134
|
option: string;
|
9191
8135
|
filename: string;
|
9192
8136
|
originalFilename: string;
|
9193
|
-
}[] |
|
8137
|
+
}[] | undefined> | undefined;
|
9194
8138
|
originalActionId?: string | undefined;
|
9195
8139
|
} | {
|
9196
8140
|
type: "MARKED_AS_DUPLICATE";
|
9197
8141
|
id: string;
|
9198
8142
|
status: "Rejected" | "Requested" | "Accepted";
|
9199
|
-
transactionId: string;
|
9200
8143
|
createdAt: string;
|
9201
8144
|
createdBy: string;
|
9202
|
-
createdByRole: string;
|
9203
8145
|
declaration: Record<string, string | number | boolean | {
|
9204
8146
|
type: string;
|
9205
8147
|
filename: string;
|
@@ -9215,10 +8157,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9215
8157
|
residentialArea?: string | null | undefined;
|
9216
8158
|
street?: string | null | undefined;
|
9217
8159
|
zipCode?: string | null | undefined;
|
9218
|
-
} | {
|
9219
|
-
firstname: string;
|
9220
|
-
surname: string;
|
9221
|
-
middlename?: string | null | undefined;
|
9222
8160
|
} | {
|
9223
8161
|
country: string;
|
9224
8162
|
district: string;
|
@@ -9241,9 +8179,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9241
8179
|
option: string;
|
9242
8180
|
filename: string;
|
9243
8181
|
originalFilename: string;
|
9244
|
-
}[] |
|
9245
|
-
|
9246
|
-
createdAtLocation?: string | null | undefined;
|
8182
|
+
}[] | undefined>;
|
8183
|
+
createdAtLocation: string;
|
9247
8184
|
annotation?: Record<string, string | number | boolean | {
|
9248
8185
|
type: string;
|
9249
8186
|
filename: string;
|
@@ -9259,10 +8196,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9259
8196
|
residentialArea?: string | null | undefined;
|
9260
8197
|
street?: string | null | undefined;
|
9261
8198
|
zipCode?: string | null | undefined;
|
9262
|
-
} | {
|
9263
|
-
firstname: string;
|
9264
|
-
surname: string;
|
9265
|
-
middlename?: string | null | undefined;
|
9266
8199
|
} | {
|
9267
8200
|
country: string;
|
9268
8201
|
district: string;
|
@@ -9285,20 +8218,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9285
8218
|
option: string;
|
9286
8219
|
filename: string;
|
9287
8220
|
originalFilename: string;
|
9288
|
-
}[] |
|
8221
|
+
}[] | undefined> | undefined;
|
9289
8222
|
originalActionId?: string | undefined;
|
9290
8223
|
} | {
|
9291
8224
|
type: "ARCHIVE";
|
9292
8225
|
id: string;
|
9293
8226
|
status: "Rejected" | "Requested" | "Accepted";
|
9294
|
-
reason: {
|
9295
|
-
message: string;
|
9296
|
-
isDuplicate?: boolean | undefined;
|
9297
|
-
};
|
9298
|
-
transactionId: string;
|
9299
8227
|
createdAt: string;
|
9300
8228
|
createdBy: string;
|
9301
|
-
createdByRole: string;
|
9302
8229
|
declaration: Record<string, string | number | boolean | {
|
9303
8230
|
type: string;
|
9304
8231
|
filename: string;
|
@@ -9314,10 +8241,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9314
8241
|
residentialArea?: string | null | undefined;
|
9315
8242
|
street?: string | null | undefined;
|
9316
8243
|
zipCode?: string | null | undefined;
|
9317
|
-
} | {
|
9318
|
-
firstname: string;
|
9319
|
-
surname: string;
|
9320
|
-
middlename?: string | null | undefined;
|
9321
8244
|
} | {
|
9322
8245
|
country: string;
|
9323
8246
|
district: string;
|
@@ -9340,9 +8263,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9340
8263
|
option: string;
|
9341
8264
|
filename: string;
|
9342
8265
|
originalFilename: string;
|
9343
|
-
}[] |
|
9344
|
-
|
9345
|
-
createdAtLocation?: string | null | undefined;
|
8266
|
+
}[] | undefined>;
|
8267
|
+
createdAtLocation: string;
|
9346
8268
|
annotation?: Record<string, string | number | boolean | {
|
9347
8269
|
type: string;
|
9348
8270
|
filename: string;
|
@@ -9358,10 +8280,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9358
8280
|
residentialArea?: string | null | undefined;
|
9359
8281
|
street?: string | null | undefined;
|
9360
8282
|
zipCode?: string | null | undefined;
|
9361
|
-
} | {
|
9362
|
-
firstname: string;
|
9363
|
-
surname: string;
|
9364
|
-
middlename?: string | null | undefined;
|
9365
8283
|
} | {
|
9366
8284
|
country: string;
|
9367
8285
|
district: string;
|
@@ -9384,16 +8302,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9384
8302
|
option: string;
|
9385
8303
|
filename: string;
|
9386
8304
|
originalFilename: string;
|
9387
|
-
}[] |
|
8305
|
+
}[] | undefined> | undefined;
|
9388
8306
|
originalActionId?: string | undefined;
|
9389
8307
|
} | {
|
9390
8308
|
type: "CREATE";
|
9391
8309
|
id: string;
|
9392
8310
|
status: "Rejected" | "Requested" | "Accepted";
|
9393
|
-
transactionId: string;
|
9394
8311
|
createdAt: string;
|
9395
8312
|
createdBy: string;
|
9396
|
-
createdByRole: string;
|
9397
8313
|
declaration: Record<string, string | number | boolean | {
|
9398
8314
|
type: string;
|
9399
8315
|
filename: string;
|
@@ -9409,10 +8325,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9409
8325
|
residentialArea?: string | null | undefined;
|
9410
8326
|
street?: string | null | undefined;
|
9411
8327
|
zipCode?: string | null | undefined;
|
9412
|
-
} | {
|
9413
|
-
firstname: string;
|
9414
|
-
surname: string;
|
9415
|
-
middlename?: string | null | undefined;
|
9416
8328
|
} | {
|
9417
8329
|
country: string;
|
9418
8330
|
district: string;
|
@@ -9435,9 +8347,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9435
8347
|
option: string;
|
9436
8348
|
filename: string;
|
9437
8349
|
originalFilename: string;
|
9438
|
-
}[] |
|
9439
|
-
|
9440
|
-
createdAtLocation?: string | null | undefined;
|
8350
|
+
}[] | undefined>;
|
8351
|
+
createdAtLocation: string;
|
9441
8352
|
annotation?: Record<string, string | number | boolean | {
|
9442
8353
|
type: string;
|
9443
8354
|
filename: string;
|
@@ -9453,10 +8364,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9453
8364
|
residentialArea?: string | null | undefined;
|
9454
8365
|
street?: string | null | undefined;
|
9455
8366
|
zipCode?: string | null | undefined;
|
9456
|
-
} | {
|
9457
|
-
firstname: string;
|
9458
|
-
surname: string;
|
9459
|
-
middlename?: string | null | undefined;
|
9460
8367
|
} | {
|
9461
8368
|
country: string;
|
9462
8369
|
district: string;
|
@@ -9479,16 +8386,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9479
8386
|
option: string;
|
9480
8387
|
filename: string;
|
9481
8388
|
originalFilename: string;
|
9482
|
-
}[] |
|
8389
|
+
}[] | undefined> | undefined;
|
9483
8390
|
originalActionId?: string | undefined;
|
9484
8391
|
} | {
|
9485
8392
|
type: "NOTIFY";
|
9486
8393
|
id: string;
|
9487
8394
|
status: "Rejected" | "Requested" | "Accepted";
|
9488
|
-
transactionId: string;
|
9489
8395
|
createdAt: string;
|
9490
8396
|
createdBy: string;
|
9491
|
-
createdByRole: string;
|
9492
8397
|
declaration: Record<string, string | number | boolean | {
|
9493
8398
|
type: string;
|
9494
8399
|
filename: string;
|
@@ -9504,10 +8409,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9504
8409
|
residentialArea?: string | null | undefined;
|
9505
8410
|
street?: string | null | undefined;
|
9506
8411
|
zipCode?: string | null | undefined;
|
9507
|
-
} | {
|
9508
|
-
firstname: string;
|
9509
|
-
surname: string;
|
9510
|
-
middlename?: string | null | undefined;
|
9511
8412
|
} | {
|
9512
8413
|
country: string;
|
9513
8414
|
district: string;
|
@@ -9530,9 +8431,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9530
8431
|
option: string;
|
9531
8432
|
filename: string;
|
9532
8433
|
originalFilename: string;
|
9533
|
-
}[] |
|
9534
|
-
|
9535
|
-
createdAtLocation?: string | null | undefined;
|
8434
|
+
}[] | undefined>;
|
8435
|
+
createdAtLocation: string;
|
9536
8436
|
annotation?: Record<string, string | number | boolean | {
|
9537
8437
|
type: string;
|
9538
8438
|
filename: string;
|
@@ -9548,10 +8448,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9548
8448
|
residentialArea?: string | null | undefined;
|
9549
8449
|
street?: string | null | undefined;
|
9550
8450
|
zipCode?: string | null | undefined;
|
9551
|
-
} | {
|
9552
|
-
firstname: string;
|
9553
|
-
surname: string;
|
9554
|
-
middlename?: string | null | undefined;
|
9555
8451
|
} | {
|
9556
8452
|
country: string;
|
9557
8453
|
district: string;
|
@@ -9574,16 +8470,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9574
8470
|
option: string;
|
9575
8471
|
filename: string;
|
9576
8472
|
originalFilename: string;
|
9577
|
-
}[] |
|
8473
|
+
}[] | undefined> | undefined;
|
9578
8474
|
originalActionId?: string | undefined;
|
9579
8475
|
} | {
|
9580
8476
|
type: "PRINT_CERTIFICATE";
|
9581
8477
|
id: string;
|
9582
8478
|
status: "Rejected" | "Requested" | "Accepted";
|
9583
|
-
transactionId: string;
|
9584
8479
|
createdAt: string;
|
9585
8480
|
createdBy: string;
|
9586
|
-
createdByRole: string;
|
9587
8481
|
declaration: Record<string, string | number | boolean | {
|
9588
8482
|
type: string;
|
9589
8483
|
filename: string;
|
@@ -9599,10 +8493,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9599
8493
|
residentialArea?: string | null | undefined;
|
9600
8494
|
street?: string | null | undefined;
|
9601
8495
|
zipCode?: string | null | undefined;
|
9602
|
-
} | {
|
9603
|
-
firstname: string;
|
9604
|
-
surname: string;
|
9605
|
-
middlename?: string | null | undefined;
|
9606
8496
|
} | {
|
9607
8497
|
country: string;
|
9608
8498
|
district: string;
|
@@ -9625,9 +8515,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9625
8515
|
option: string;
|
9626
8516
|
filename: string;
|
9627
8517
|
originalFilename: string;
|
9628
|
-
}[] |
|
9629
|
-
|
9630
|
-
createdAtLocation?: string | null | undefined;
|
8518
|
+
}[] | undefined>;
|
8519
|
+
createdAtLocation: string;
|
9631
8520
|
annotation?: Record<string, string | number | boolean | {
|
9632
8521
|
type: string;
|
9633
8522
|
filename: string;
|
@@ -9643,10 +8532,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9643
8532
|
residentialArea?: string | null | undefined;
|
9644
8533
|
street?: string | null | undefined;
|
9645
8534
|
zipCode?: string | null | undefined;
|
9646
|
-
} | {
|
9647
|
-
firstname: string;
|
9648
|
-
surname: string;
|
9649
|
-
middlename?: string | null | undefined;
|
9650
8535
|
} | {
|
9651
8536
|
country: string;
|
9652
8537
|
district: string;
|
@@ -9669,16 +8554,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9669
8554
|
option: string;
|
9670
8555
|
filename: string;
|
9671
8556
|
originalFilename: string;
|
9672
|
-
}[] |
|
8557
|
+
}[] | undefined> | undefined;
|
9673
8558
|
originalActionId?: string | undefined;
|
9674
8559
|
} | {
|
9675
8560
|
type: "REQUEST_CORRECTION";
|
9676
8561
|
id: string;
|
9677
8562
|
status: "Rejected" | "Requested" | "Accepted";
|
9678
|
-
transactionId: string;
|
9679
8563
|
createdAt: string;
|
9680
8564
|
createdBy: string;
|
9681
|
-
createdByRole: string;
|
9682
8565
|
declaration: Record<string, string | number | boolean | {
|
9683
8566
|
type: string;
|
9684
8567
|
filename: string;
|
@@ -9694,10 +8577,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9694
8577
|
residentialArea?: string | null | undefined;
|
9695
8578
|
street?: string | null | undefined;
|
9696
8579
|
zipCode?: string | null | undefined;
|
9697
|
-
} | {
|
9698
|
-
firstname: string;
|
9699
|
-
surname: string;
|
9700
|
-
middlename?: string | null | undefined;
|
9701
8580
|
} | {
|
9702
8581
|
country: string;
|
9703
8582
|
district: string;
|
@@ -9720,9 +8599,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9720
8599
|
option: string;
|
9721
8600
|
filename: string;
|
9722
8601
|
originalFilename: string;
|
9723
|
-
}[] |
|
9724
|
-
|
9725
|
-
createdAtLocation?: string | null | undefined;
|
8602
|
+
}[] | undefined>;
|
8603
|
+
createdAtLocation: string;
|
9726
8604
|
annotation?: Record<string, string | number | boolean | {
|
9727
8605
|
type: string;
|
9728
8606
|
filename: string;
|
@@ -9738,10 +8616,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9738
8616
|
residentialArea?: string | null | undefined;
|
9739
8617
|
street?: string | null | undefined;
|
9740
8618
|
zipCode?: string | null | undefined;
|
9741
|
-
} | {
|
9742
|
-
firstname: string;
|
9743
|
-
surname: string;
|
9744
|
-
middlename?: string | null | undefined;
|
9745
8619
|
} | {
|
9746
8620
|
country: string;
|
9747
8621
|
district: string;
|
@@ -9764,16 +8638,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9764
8638
|
option: string;
|
9765
8639
|
filename: string;
|
9766
8640
|
originalFilename: string;
|
9767
|
-
}[] |
|
8641
|
+
}[] | undefined> | undefined;
|
9768
8642
|
originalActionId?: string | undefined;
|
9769
8643
|
} | {
|
9770
8644
|
type: "APPROVE_CORRECTION";
|
9771
8645
|
id: string;
|
9772
8646
|
status: "Rejected" | "Requested" | "Accepted";
|
9773
|
-
transactionId: string;
|
9774
8647
|
createdAt: string;
|
9775
8648
|
createdBy: string;
|
9776
|
-
createdByRole: string;
|
9777
8649
|
declaration: Record<string, string | number | boolean | {
|
9778
8650
|
type: string;
|
9779
8651
|
filename: string;
|
@@ -9789,10 +8661,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9789
8661
|
residentialArea?: string | null | undefined;
|
9790
8662
|
street?: string | null | undefined;
|
9791
8663
|
zipCode?: string | null | undefined;
|
9792
|
-
} | {
|
9793
|
-
firstname: string;
|
9794
|
-
surname: string;
|
9795
|
-
middlename?: string | null | undefined;
|
9796
8664
|
} | {
|
9797
8665
|
country: string;
|
9798
8666
|
district: string;
|
@@ -9815,10 +8683,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
9815
8683
|
option: string;
|
9816
8684
|
filename: string;
|
9817
8685
|
originalFilename: string;
|
9818
|
-
}[] |
|
8686
|
+
}[] | undefined>;
|
8687
|
+
createdAtLocation: string;
|
9819
8688
|
requestId: string;
|
9820
|
-
createdBySignature?: string | null | undefined;
|
9821
|
-
createdAtLocation?: string | null | undefined;
|
9822
8689
|
annotation?: Record<string, string | number | boolean | {
|
9823
8690
|
type: string;
|
9824
8691
|
filename: string;
|
@@ -9834,10 +8701,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9834
8701
|
residentialArea?: string | null | undefined;
|
9835
8702
|
street?: string | null | undefined;
|
9836
8703
|
zipCode?: string | null | undefined;
|
9837
|
-
} | {
|
9838
|
-
firstname: string;
|
9839
|
-
surname: string;
|
9840
|
-
middlename?: string | null | undefined;
|
9841
8704
|
} | {
|
9842
8705
|
country: string;
|
9843
8706
|
district: string;
|
@@ -9860,16 +8723,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9860
8723
|
option: string;
|
9861
8724
|
filename: string;
|
9862
8725
|
originalFilename: string;
|
9863
|
-
}[] |
|
8726
|
+
}[] | undefined> | undefined;
|
9864
8727
|
originalActionId?: string | undefined;
|
9865
8728
|
} | {
|
9866
8729
|
type: "REJECT_CORRECTION";
|
9867
8730
|
id: string;
|
9868
8731
|
status: "Rejected" | "Requested" | "Accepted";
|
9869
|
-
transactionId: string;
|
9870
8732
|
createdAt: string;
|
9871
8733
|
createdBy: string;
|
9872
|
-
createdByRole: string;
|
9873
8734
|
declaration: Record<string, string | number | boolean | {
|
9874
8735
|
type: string;
|
9875
8736
|
filename: string;
|
@@ -9885,10 +8746,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9885
8746
|
residentialArea?: string | null | undefined;
|
9886
8747
|
street?: string | null | undefined;
|
9887
8748
|
zipCode?: string | null | undefined;
|
9888
|
-
} | {
|
9889
|
-
firstname: string;
|
9890
|
-
surname: string;
|
9891
|
-
middlename?: string | null | undefined;
|
9892
8749
|
} | {
|
9893
8750
|
country: string;
|
9894
8751
|
district: string;
|
@@ -9911,10 +8768,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
9911
8768
|
option: string;
|
9912
8769
|
filename: string;
|
9913
8770
|
originalFilename: string;
|
9914
|
-
}[] |
|
8771
|
+
}[] | undefined>;
|
8772
|
+
createdAtLocation: string;
|
9915
8773
|
requestId: string;
|
9916
|
-
createdBySignature?: string | null | undefined;
|
9917
|
-
createdAtLocation?: string | null | undefined;
|
9918
8774
|
annotation?: Record<string, string | number | boolean | {
|
9919
8775
|
type: string;
|
9920
8776
|
filename: string;
|
@@ -9930,10 +8786,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9930
8786
|
residentialArea?: string | null | undefined;
|
9931
8787
|
street?: string | null | undefined;
|
9932
8788
|
zipCode?: string | null | undefined;
|
9933
|
-
} | {
|
9934
|
-
firstname: string;
|
9935
|
-
surname: string;
|
9936
|
-
middlename?: string | null | undefined;
|
9937
8789
|
} | {
|
9938
8790
|
country: string;
|
9939
8791
|
district: string;
|
@@ -9956,16 +8808,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
9956
8808
|
option: string;
|
9957
8809
|
filename: string;
|
9958
8810
|
originalFilename: string;
|
9959
|
-
}[] |
|
8811
|
+
}[] | undefined> | undefined;
|
9960
8812
|
originalActionId?: string | undefined;
|
9961
8813
|
} | {
|
9962
8814
|
type: "READ";
|
9963
8815
|
id: string;
|
9964
8816
|
status: "Rejected" | "Requested" | "Accepted";
|
9965
|
-
transactionId: string;
|
9966
8817
|
createdAt: string;
|
9967
8818
|
createdBy: string;
|
9968
|
-
createdByRole: string;
|
9969
8819
|
declaration: Record<string, string | number | boolean | {
|
9970
8820
|
type: string;
|
9971
8821
|
filename: string;
|
@@ -9981,10 +8831,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9981
8831
|
residentialArea?: string | null | undefined;
|
9982
8832
|
street?: string | null | undefined;
|
9983
8833
|
zipCode?: string | null | undefined;
|
9984
|
-
} | {
|
9985
|
-
firstname: string;
|
9986
|
-
surname: string;
|
9987
|
-
middlename?: string | null | undefined;
|
9988
8834
|
} | {
|
9989
8835
|
country: string;
|
9990
8836
|
district: string;
|
@@ -10007,9 +8853,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10007
8853
|
option: string;
|
10008
8854
|
filename: string;
|
10009
8855
|
originalFilename: string;
|
10010
|
-
}[] |
|
10011
|
-
|
10012
|
-
createdAtLocation?: string | null | undefined;
|
8856
|
+
}[] | undefined>;
|
8857
|
+
createdAtLocation: string;
|
10013
8858
|
annotation?: Record<string, string | number | boolean | {
|
10014
8859
|
type: string;
|
10015
8860
|
filename: string;
|
@@ -10025,10 +8870,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
10025
8870
|
residentialArea?: string | null | undefined;
|
10026
8871
|
street?: string | null | undefined;
|
10027
8872
|
zipCode?: string | null | undefined;
|
10028
|
-
} | {
|
10029
|
-
firstname: string;
|
10030
|
-
surname: string;
|
10031
|
-
middlename?: string | null | undefined;
|
10032
8873
|
} | {
|
10033
8874
|
country: string;
|
10034
8875
|
district: string;
|
@@ -10051,18 +8892,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
10051
8892
|
option: string;
|
10052
8893
|
filename: string;
|
10053
8894
|
originalFilename: string;
|
10054
|
-
}[] |
|
8895
|
+
}[] | undefined> | undefined;
|
10055
8896
|
originalActionId?: string | undefined;
|
10056
8897
|
} | {
|
10057
8898
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
10058
8899
|
id: string;
|
10059
8900
|
status: "Rejected";
|
10060
|
-
transactionId: string;
|
10061
8901
|
createdAt: string;
|
10062
|
-
createdBy: string;
|
10063
|
-
createdByRole: string;
|
10064
|
-
createdBySignature?: string | null | undefined;
|
10065
|
-
createdAtLocation?: string | null | undefined;
|
10066
8902
|
originalActionId?: string | undefined;
|
10067
8903
|
})[];
|
10068
8904
|
trackingId: string;
|