@opencrvs/toolkit 1.8.0-rc.fa49ae3 → 1.8.0-rc.fa564ca
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 +381 -6649
- package/dist/commons/conditionals/conditionals.d.ts +0 -4
- package/dist/commons/conditionals/validate.d.ts +0 -6
- package/dist/commons/events/ActionConfig.d.ts +6326 -18678
- package/dist/commons/events/ActionDocument.d.ts +204 -1713
- package/dist/commons/events/ActionInput.d.ts +180 -1380
- package/dist/commons/events/AdvancedSearchConfig.d.ts +3 -75
- package/dist/commons/events/CompositeFieldValue.d.ts +0 -28
- package/dist/commons/events/Constants.d.ts +0 -1
- package/dist/commons/events/CountryConfigQueryInput.d.ts +0 -26
- package/dist/commons/events/Draft.d.ts +16 -117
- package/dist/commons/events/EventConfig.d.ts +2487 -8364
- package/dist/commons/events/EventDocument.d.ts +152 -1096
- package/dist/commons/events/EventIndex.d.ts +17 -283
- package/dist/commons/events/EventMetadata.d.ts +35 -38
- package/dist/commons/events/FieldConfig.d.ts +771 -1597
- package/dist/commons/events/FieldType.d.ts +1 -4
- package/dist/commons/events/FieldTypeMapping.d.ts +50 -89
- package/dist/commons/events/FieldValue.d.ts +5 -41
- package/dist/commons/events/FormConfig.d.ts +2444 -7640
- package/dist/commons/events/PageConfig.d.ts +1620 -2896
- package/dist/commons/events/SummaryConfig.d.ts +5 -0
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +11 -11
- package/dist/commons/events/WorkqueueConfig.d.ts +24 -346
- package/dist/commons/events/defineConfig.d.ts +14 -960
- package/dist/commons/events/field.d.ts +0 -4
- package/dist/commons/events/test.utils.d.ts +38 -124
- package/dist/commons/events/utils.d.ts +8 -9659
- package/dist/conditionals/index.js +1 -18
- package/dist/events/index.js +413 -691
- package/package.json +1 -1
@@ -7,7 +7,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7
7
|
actions: z.ZodArray<z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
8
8
|
id: z.ZodString;
|
9
9
|
transactionId: z.ZodString;
|
10
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
11
10
|
createdAt: z.ZodString;
|
12
11
|
createdBy: z.ZodString;
|
13
12
|
createdByRole: z.ZodString;
|
@@ -126,19 +125,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
126
125
|
addressLine2?: string | null | undefined;
|
127
126
|
addressLine3?: string | null | undefined;
|
128
127
|
postcodeOrZip?: string | null | undefined;
|
129
|
-
}
|
130
|
-
firstname: z.ZodString;
|
131
|
-
surname: z.ZodString;
|
132
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
133
|
-
}, "strip", z.ZodTypeAny, {
|
134
|
-
firstname: string;
|
135
|
-
surname: string;
|
136
|
-
middlename?: string | null | undefined;
|
137
|
-
}, {
|
138
|
-
firstname: string;
|
139
|
-
surname: string;
|
140
|
-
middlename?: string | null | undefined;
|
141
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
128
|
+
}>]>>;
|
142
129
|
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<{
|
143
130
|
filename: z.ZodString;
|
144
131
|
originalFilename: z.ZodString;
|
@@ -252,19 +239,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
252
239
|
addressLine2?: string | null | undefined;
|
253
240
|
addressLine3?: string | null | undefined;
|
254
241
|
postcodeOrZip?: string | null | undefined;
|
255
|
-
}
|
256
|
-
firstname: z.ZodString;
|
257
|
-
surname: z.ZodString;
|
258
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
259
|
-
}, "strip", z.ZodTypeAny, {
|
260
|
-
firstname: string;
|
261
|
-
surname: string;
|
262
|
-
middlename?: string | null | undefined;
|
263
|
-
}, {
|
264
|
-
firstname: string;
|
265
|
-
surname: string;
|
266
|
-
middlename?: string | null | undefined;
|
267
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
242
|
+
}>]>>>;
|
268
243
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
269
244
|
originalActionId: z.ZodOptional<z.ZodString>;
|
270
245
|
}, {
|
@@ -292,10 +267,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
292
267
|
residentialArea?: string | null | undefined;
|
293
268
|
street?: string | null | undefined;
|
294
269
|
zipCode?: string | null | undefined;
|
295
|
-
} | {
|
296
|
-
firstname: string;
|
297
|
-
surname: string;
|
298
|
-
middlename?: string | null | undefined;
|
299
270
|
} | {
|
300
271
|
country: string;
|
301
272
|
district: string;
|
@@ -318,8 +289,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
318
289
|
option: string;
|
319
290
|
filename: string;
|
320
291
|
originalFilename: string;
|
321
|
-
}[] | [string, string] |
|
322
|
-
creator?: "system" | "user" | undefined;
|
292
|
+
}[] | [string, string] | undefined>;
|
323
293
|
createdBySignature?: string | null | undefined;
|
324
294
|
createdAtLocation?: string | null | undefined;
|
325
295
|
annotation?: Record<string, string | number | boolean | {
|
@@ -337,10 +307,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
337
307
|
residentialArea?: string | null | undefined;
|
338
308
|
street?: string | null | undefined;
|
339
309
|
zipCode?: string | null | undefined;
|
340
|
-
} | {
|
341
|
-
firstname: string;
|
342
|
-
surname: string;
|
343
|
-
middlename?: string | null | undefined;
|
344
310
|
} | {
|
345
311
|
country: string;
|
346
312
|
district: string;
|
@@ -363,7 +329,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
363
329
|
option: string;
|
364
330
|
filename: string;
|
365
331
|
originalFilename: string;
|
366
|
-
}[] | [string, string] |
|
332
|
+
}[] | [string, string] | undefined> | undefined;
|
367
333
|
originalActionId?: string | undefined;
|
368
334
|
}, {
|
369
335
|
type: "CREATE";
|
@@ -388,10 +354,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
388
354
|
residentialArea?: string | null | undefined;
|
389
355
|
street?: string | null | undefined;
|
390
356
|
zipCode?: string | null | undefined;
|
391
|
-
} | {
|
392
|
-
firstname: string;
|
393
|
-
surname: string;
|
394
|
-
middlename?: string | null | undefined;
|
395
357
|
} | {
|
396
358
|
country: string;
|
397
359
|
district: string;
|
@@ -414,8 +376,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
414
376
|
option: string;
|
415
377
|
filename: string;
|
416
378
|
originalFilename: string;
|
417
|
-
}[] | [string, string] |
|
418
|
-
creator?: "system" | "user" | undefined;
|
379
|
+
}[] | [string, string] | undefined>;
|
419
380
|
createdBySignature?: string | null | undefined;
|
420
381
|
createdAtLocation?: string | null | undefined;
|
421
382
|
annotation?: Record<string, string | number | boolean | {
|
@@ -433,10 +394,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
433
394
|
residentialArea?: string | null | undefined;
|
434
395
|
street?: string | null | undefined;
|
435
396
|
zipCode?: string | null | undefined;
|
436
|
-
} | {
|
437
|
-
firstname: string;
|
438
|
-
surname: string;
|
439
|
-
middlename?: string | null | undefined;
|
440
397
|
} | {
|
441
398
|
country: string;
|
442
399
|
district: string;
|
@@ -459,12 +416,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
459
416
|
option: string;
|
460
417
|
filename: string;
|
461
418
|
originalFilename: string;
|
462
|
-
}[] | [string, string] |
|
419
|
+
}[] | [string, string] | undefined> | undefined;
|
463
420
|
originalActionId?: string | undefined;
|
464
421
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
465
422
|
id: z.ZodString;
|
466
423
|
transactionId: z.ZodString;
|
467
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
468
424
|
createdAt: z.ZodString;
|
469
425
|
createdBy: z.ZodString;
|
470
426
|
createdByRole: z.ZodString;
|
@@ -583,19 +539,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
583
539
|
addressLine2?: string | null | undefined;
|
584
540
|
addressLine3?: string | null | undefined;
|
585
541
|
postcodeOrZip?: string | null | undefined;
|
586
|
-
}
|
587
|
-
firstname: z.ZodString;
|
588
|
-
surname: z.ZodString;
|
589
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
590
|
-
}, "strip", z.ZodTypeAny, {
|
591
|
-
firstname: string;
|
592
|
-
surname: string;
|
593
|
-
middlename?: string | null | undefined;
|
594
|
-
}, {
|
595
|
-
firstname: string;
|
596
|
-
surname: string;
|
597
|
-
middlename?: string | null | undefined;
|
598
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
542
|
+
}>]>>;
|
599
543
|
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<{
|
600
544
|
filename: z.ZodString;
|
601
545
|
originalFilename: z.ZodString;
|
@@ -709,19 +653,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
709
653
|
addressLine2?: string | null | undefined;
|
710
654
|
addressLine3?: string | null | undefined;
|
711
655
|
postcodeOrZip?: string | null | undefined;
|
712
|
-
}
|
713
|
-
firstname: z.ZodString;
|
714
|
-
surname: z.ZodString;
|
715
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
716
|
-
}, "strip", z.ZodTypeAny, {
|
717
|
-
firstname: string;
|
718
|
-
surname: string;
|
719
|
-
middlename?: string | null | undefined;
|
720
|
-
}, {
|
721
|
-
firstname: string;
|
722
|
-
surname: string;
|
723
|
-
middlename?: string | null | undefined;
|
724
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
656
|
+
}>]>>>;
|
725
657
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
726
658
|
originalActionId: z.ZodOptional<z.ZodString>;
|
727
659
|
}, {
|
@@ -749,10 +681,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
749
681
|
residentialArea?: string | null | undefined;
|
750
682
|
street?: string | null | undefined;
|
751
683
|
zipCode?: string | null | undefined;
|
752
|
-
} | {
|
753
|
-
firstname: string;
|
754
|
-
surname: string;
|
755
|
-
middlename?: string | null | undefined;
|
756
684
|
} | {
|
757
685
|
country: string;
|
758
686
|
district: string;
|
@@ -775,8 +703,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
775
703
|
option: string;
|
776
704
|
filename: string;
|
777
705
|
originalFilename: string;
|
778
|
-
}[] | [string, string] |
|
779
|
-
creator?: "system" | "user" | undefined;
|
706
|
+
}[] | [string, string] | undefined>;
|
780
707
|
createdBySignature?: string | null | undefined;
|
781
708
|
createdAtLocation?: string | null | undefined;
|
782
709
|
annotation?: Record<string, string | number | boolean | {
|
@@ -794,10 +721,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
794
721
|
residentialArea?: string | null | undefined;
|
795
722
|
street?: string | null | undefined;
|
796
723
|
zipCode?: string | null | undefined;
|
797
|
-
} | {
|
798
|
-
firstname: string;
|
799
|
-
surname: string;
|
800
|
-
middlename?: string | null | undefined;
|
801
724
|
} | {
|
802
725
|
country: string;
|
803
726
|
district: string;
|
@@ -820,7 +743,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
820
743
|
option: string;
|
821
744
|
filename: string;
|
822
745
|
originalFilename: string;
|
823
|
-
}[] | [string, string] |
|
746
|
+
}[] | [string, string] | undefined> | undefined;
|
824
747
|
originalActionId?: string | undefined;
|
825
748
|
}, {
|
826
749
|
type: "VALIDATE";
|
@@ -845,10 +768,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
845
768
|
residentialArea?: string | null | undefined;
|
846
769
|
street?: string | null | undefined;
|
847
770
|
zipCode?: string | null | undefined;
|
848
|
-
} | {
|
849
|
-
firstname: string;
|
850
|
-
surname: string;
|
851
|
-
middlename?: string | null | undefined;
|
852
771
|
} | {
|
853
772
|
country: string;
|
854
773
|
district: string;
|
@@ -871,8 +790,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
871
790
|
option: string;
|
872
791
|
filename: string;
|
873
792
|
originalFilename: string;
|
874
|
-
}[] | [string, string] |
|
875
|
-
creator?: "system" | "user" | undefined;
|
793
|
+
}[] | [string, string] | undefined>;
|
876
794
|
createdBySignature?: string | null | undefined;
|
877
795
|
createdAtLocation?: string | null | undefined;
|
878
796
|
annotation?: Record<string, string | number | boolean | {
|
@@ -890,10 +808,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
890
808
|
residentialArea?: string | null | undefined;
|
891
809
|
street?: string | null | undefined;
|
892
810
|
zipCode?: string | null | undefined;
|
893
|
-
} | {
|
894
|
-
firstname: string;
|
895
|
-
surname: string;
|
896
|
-
middlename?: string | null | undefined;
|
897
811
|
} | {
|
898
812
|
country: string;
|
899
813
|
district: string;
|
@@ -916,12 +830,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
916
830
|
option: string;
|
917
831
|
filename: string;
|
918
832
|
originalFilename: string;
|
919
|
-
}[] | [string, string] |
|
833
|
+
}[] | [string, string] | undefined> | undefined;
|
920
834
|
originalActionId?: string | undefined;
|
921
835
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
922
836
|
id: z.ZodString;
|
923
837
|
transactionId: z.ZodString;
|
924
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
925
838
|
createdAt: z.ZodString;
|
926
839
|
createdBy: z.ZodString;
|
927
840
|
createdByRole: z.ZodString;
|
@@ -1040,19 +953,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1040
953
|
addressLine2?: string | null | undefined;
|
1041
954
|
addressLine3?: string | null | undefined;
|
1042
955
|
postcodeOrZip?: string | null | undefined;
|
1043
|
-
}
|
1044
|
-
firstname: z.ZodString;
|
1045
|
-
surname: z.ZodString;
|
1046
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1047
|
-
}, "strip", z.ZodTypeAny, {
|
1048
|
-
firstname: string;
|
1049
|
-
surname: string;
|
1050
|
-
middlename?: string | null | undefined;
|
1051
|
-
}, {
|
1052
|
-
firstname: string;
|
1053
|
-
surname: string;
|
1054
|
-
middlename?: string | null | undefined;
|
1055
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
956
|
+
}>]>>;
|
1056
957
|
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<{
|
1057
958
|
filename: z.ZodString;
|
1058
959
|
originalFilename: z.ZodString;
|
@@ -1166,19 +1067,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1166
1067
|
addressLine2?: string | null | undefined;
|
1167
1068
|
addressLine3?: string | null | undefined;
|
1168
1069
|
postcodeOrZip?: string | null | undefined;
|
1169
|
-
}
|
1170
|
-
firstname: z.ZodString;
|
1171
|
-
surname: z.ZodString;
|
1172
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1173
|
-
}, "strip", z.ZodTypeAny, {
|
1174
|
-
firstname: string;
|
1175
|
-
surname: string;
|
1176
|
-
middlename?: string | null | undefined;
|
1177
|
-
}, {
|
1178
|
-
firstname: string;
|
1179
|
-
surname: string;
|
1180
|
-
middlename?: string | null | undefined;
|
1181
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1070
|
+
}>]>>>;
|
1182
1071
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1183
1072
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1184
1073
|
}, {
|
@@ -1220,10 +1109,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1220
1109
|
residentialArea?: string | null | undefined;
|
1221
1110
|
street?: string | null | undefined;
|
1222
1111
|
zipCode?: string | null | undefined;
|
1223
|
-
} | {
|
1224
|
-
firstname: string;
|
1225
|
-
surname: string;
|
1226
|
-
middlename?: string | null | undefined;
|
1227
1112
|
} | {
|
1228
1113
|
country: string;
|
1229
1114
|
district: string;
|
@@ -1246,8 +1131,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1246
1131
|
option: string;
|
1247
1132
|
filename: string;
|
1248
1133
|
originalFilename: string;
|
1249
|
-
}[] | [string, string] |
|
1250
|
-
creator?: "system" | "user" | undefined;
|
1134
|
+
}[] | [string, string] | undefined>;
|
1251
1135
|
createdBySignature?: string | null | undefined;
|
1252
1136
|
createdAtLocation?: string | null | undefined;
|
1253
1137
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1265,10 +1149,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1265
1149
|
residentialArea?: string | null | undefined;
|
1266
1150
|
street?: string | null | undefined;
|
1267
1151
|
zipCode?: string | null | undefined;
|
1268
|
-
} | {
|
1269
|
-
firstname: string;
|
1270
|
-
surname: string;
|
1271
|
-
middlename?: string | null | undefined;
|
1272
1152
|
} | {
|
1273
1153
|
country: string;
|
1274
1154
|
district: string;
|
@@ -1291,7 +1171,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1291
1171
|
option: string;
|
1292
1172
|
filename: string;
|
1293
1173
|
originalFilename: string;
|
1294
|
-
}[] | [string, string] |
|
1174
|
+
}[] | [string, string] | undefined> | undefined;
|
1295
1175
|
originalActionId?: string | undefined;
|
1296
1176
|
}, {
|
1297
1177
|
type: "REJECT";
|
@@ -1320,10 +1200,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1320
1200
|
residentialArea?: string | null | undefined;
|
1321
1201
|
street?: string | null | undefined;
|
1322
1202
|
zipCode?: string | null | undefined;
|
1323
|
-
} | {
|
1324
|
-
firstname: string;
|
1325
|
-
surname: string;
|
1326
|
-
middlename?: string | null | undefined;
|
1327
1203
|
} | {
|
1328
1204
|
country: string;
|
1329
1205
|
district: string;
|
@@ -1346,8 +1222,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1346
1222
|
option: string;
|
1347
1223
|
filename: string;
|
1348
1224
|
originalFilename: string;
|
1349
|
-
}[] | [string, string] |
|
1350
|
-
creator?: "system" | "user" | undefined;
|
1225
|
+
}[] | [string, string] | undefined>;
|
1351
1226
|
createdBySignature?: string | null | undefined;
|
1352
1227
|
createdAtLocation?: string | null | undefined;
|
1353
1228
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1365,10 +1240,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1365
1240
|
residentialArea?: string | null | undefined;
|
1366
1241
|
street?: string | null | undefined;
|
1367
1242
|
zipCode?: string | null | undefined;
|
1368
|
-
} | {
|
1369
|
-
firstname: string;
|
1370
|
-
surname: string;
|
1371
|
-
middlename?: string | null | undefined;
|
1372
1243
|
} | {
|
1373
1244
|
country: string;
|
1374
1245
|
district: string;
|
@@ -1391,12 +1262,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
1391
1262
|
option: string;
|
1392
1263
|
filename: string;
|
1393
1264
|
originalFilename: string;
|
1394
|
-
}[] | [string, string] |
|
1265
|
+
}[] | [string, string] | undefined> | undefined;
|
1395
1266
|
originalActionId?: string | undefined;
|
1396
1267
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1397
1268
|
id: z.ZodString;
|
1398
1269
|
transactionId: z.ZodString;
|
1399
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
1400
1270
|
createdAt: z.ZodString;
|
1401
1271
|
createdBy: z.ZodString;
|
1402
1272
|
createdByRole: z.ZodString;
|
@@ -1515,19 +1385,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1515
1385
|
addressLine2?: string | null | undefined;
|
1516
1386
|
addressLine3?: string | null | undefined;
|
1517
1387
|
postcodeOrZip?: string | null | undefined;
|
1518
|
-
}
|
1519
|
-
firstname: z.ZodString;
|
1520
|
-
surname: z.ZodString;
|
1521
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1522
|
-
}, "strip", z.ZodTypeAny, {
|
1523
|
-
firstname: string;
|
1524
|
-
surname: string;
|
1525
|
-
middlename?: string | null | undefined;
|
1526
|
-
}, {
|
1527
|
-
firstname: string;
|
1528
|
-
surname: string;
|
1529
|
-
middlename?: string | null | undefined;
|
1530
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1388
|
+
}>]>>;
|
1531
1389
|
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<{
|
1532
1390
|
filename: z.ZodString;
|
1533
1391
|
originalFilename: z.ZodString;
|
@@ -1641,19 +1499,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1641
1499
|
addressLine2?: string | null | undefined;
|
1642
1500
|
addressLine3?: string | null | undefined;
|
1643
1501
|
postcodeOrZip?: string | null | undefined;
|
1644
|
-
}
|
1645
|
-
firstname: z.ZodString;
|
1646
|
-
surname: z.ZodString;
|
1647
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1648
|
-
}, "strip", z.ZodTypeAny, {
|
1649
|
-
firstname: string;
|
1650
|
-
surname: string;
|
1651
|
-
middlename?: string | null | undefined;
|
1652
|
-
}, {
|
1653
|
-
firstname: string;
|
1654
|
-
surname: string;
|
1655
|
-
middlename?: string | null | undefined;
|
1656
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1502
|
+
}>]>>>;
|
1657
1503
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1658
1504
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1659
1505
|
}, {
|
@@ -1681,10 +1527,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1681
1527
|
residentialArea?: string | null | undefined;
|
1682
1528
|
street?: string | null | undefined;
|
1683
1529
|
zipCode?: string | null | undefined;
|
1684
|
-
} | {
|
1685
|
-
firstname: string;
|
1686
|
-
surname: string;
|
1687
|
-
middlename?: string | null | undefined;
|
1688
1530
|
} | {
|
1689
1531
|
country: string;
|
1690
1532
|
district: string;
|
@@ -1707,8 +1549,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1707
1549
|
option: string;
|
1708
1550
|
filename: string;
|
1709
1551
|
originalFilename: string;
|
1710
|
-
}[] | [string, string] |
|
1711
|
-
creator?: "system" | "user" | undefined;
|
1552
|
+
}[] | [string, string] | undefined>;
|
1712
1553
|
createdBySignature?: string | null | undefined;
|
1713
1554
|
createdAtLocation?: string | null | undefined;
|
1714
1555
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1726,10 +1567,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1726
1567
|
residentialArea?: string | null | undefined;
|
1727
1568
|
street?: string | null | undefined;
|
1728
1569
|
zipCode?: string | null | undefined;
|
1729
|
-
} | {
|
1730
|
-
firstname: string;
|
1731
|
-
surname: string;
|
1732
|
-
middlename?: string | null | undefined;
|
1733
1570
|
} | {
|
1734
1571
|
country: string;
|
1735
1572
|
district: string;
|
@@ -1752,7 +1589,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1752
1589
|
option: string;
|
1753
1590
|
filename: string;
|
1754
1591
|
originalFilename: string;
|
1755
|
-
}[] | [string, string] |
|
1592
|
+
}[] | [string, string] | undefined> | undefined;
|
1756
1593
|
originalActionId?: string | undefined;
|
1757
1594
|
}, {
|
1758
1595
|
type: "MARKED_AS_DUPLICATE";
|
@@ -1777,10 +1614,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1777
1614
|
residentialArea?: string | null | undefined;
|
1778
1615
|
street?: string | null | undefined;
|
1779
1616
|
zipCode?: string | null | undefined;
|
1780
|
-
} | {
|
1781
|
-
firstname: string;
|
1782
|
-
surname: string;
|
1783
|
-
middlename?: string | null | undefined;
|
1784
1617
|
} | {
|
1785
1618
|
country: string;
|
1786
1619
|
district: string;
|
@@ -1803,8 +1636,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1803
1636
|
option: string;
|
1804
1637
|
filename: string;
|
1805
1638
|
originalFilename: string;
|
1806
|
-
}[] | [string, string] |
|
1807
|
-
creator?: "system" | "user" | undefined;
|
1639
|
+
}[] | [string, string] | undefined>;
|
1808
1640
|
createdBySignature?: string | null | undefined;
|
1809
1641
|
createdAtLocation?: string | null | undefined;
|
1810
1642
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1822,10 +1654,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1822
1654
|
residentialArea?: string | null | undefined;
|
1823
1655
|
street?: string | null | undefined;
|
1824
1656
|
zipCode?: string | null | undefined;
|
1825
|
-
} | {
|
1826
|
-
firstname: string;
|
1827
|
-
surname: string;
|
1828
|
-
middlename?: string | null | undefined;
|
1829
1657
|
} | {
|
1830
1658
|
country: string;
|
1831
1659
|
district: string;
|
@@ -1848,12 +1676,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
1848
1676
|
option: string;
|
1849
1677
|
filename: string;
|
1850
1678
|
originalFilename: string;
|
1851
|
-
}[] | [string, string] |
|
1679
|
+
}[] | [string, string] | undefined> | undefined;
|
1852
1680
|
originalActionId?: string | undefined;
|
1853
1681
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1854
1682
|
id: z.ZodString;
|
1855
1683
|
transactionId: z.ZodString;
|
1856
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
1857
1684
|
createdAt: z.ZodString;
|
1858
1685
|
createdBy: z.ZodString;
|
1859
1686
|
createdByRole: z.ZodString;
|
@@ -1972,19 +1799,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1972
1799
|
addressLine2?: string | null | undefined;
|
1973
1800
|
addressLine3?: string | null | undefined;
|
1974
1801
|
postcodeOrZip?: string | null | undefined;
|
1975
|
-
}
|
1976
|
-
firstname: z.ZodString;
|
1977
|
-
surname: z.ZodString;
|
1978
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1979
|
-
}, "strip", z.ZodTypeAny, {
|
1980
|
-
firstname: string;
|
1981
|
-
surname: string;
|
1982
|
-
middlename?: string | null | undefined;
|
1983
|
-
}, {
|
1984
|
-
firstname: string;
|
1985
|
-
surname: string;
|
1986
|
-
middlename?: string | null | undefined;
|
1987
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1802
|
+
}>]>>;
|
1988
1803
|
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<{
|
1989
1804
|
filename: z.ZodString;
|
1990
1805
|
originalFilename: z.ZodString;
|
@@ -2098,19 +1913,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2098
1913
|
addressLine2?: string | null | undefined;
|
2099
1914
|
addressLine3?: string | null | undefined;
|
2100
1915
|
postcodeOrZip?: string | null | undefined;
|
2101
|
-
}
|
2102
|
-
firstname: z.ZodString;
|
2103
|
-
surname: z.ZodString;
|
2104
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2105
|
-
}, "strip", z.ZodTypeAny, {
|
2106
|
-
firstname: string;
|
2107
|
-
surname: string;
|
2108
|
-
middlename?: string | null | undefined;
|
2109
|
-
}, {
|
2110
|
-
firstname: string;
|
2111
|
-
surname: string;
|
2112
|
-
middlename?: string | null | undefined;
|
2113
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1916
|
+
}>]>>>;
|
2114
1917
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2115
1918
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2116
1919
|
}, {
|
@@ -2152,10 +1955,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2152
1955
|
residentialArea?: string | null | undefined;
|
2153
1956
|
street?: string | null | undefined;
|
2154
1957
|
zipCode?: string | null | undefined;
|
2155
|
-
} | {
|
2156
|
-
firstname: string;
|
2157
|
-
surname: string;
|
2158
|
-
middlename?: string | null | undefined;
|
2159
1958
|
} | {
|
2160
1959
|
country: string;
|
2161
1960
|
district: string;
|
@@ -2178,8 +1977,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2178
1977
|
option: string;
|
2179
1978
|
filename: string;
|
2180
1979
|
originalFilename: string;
|
2181
|
-
}[] | [string, string] |
|
2182
|
-
creator?: "system" | "user" | undefined;
|
1980
|
+
}[] | [string, string] | undefined>;
|
2183
1981
|
createdBySignature?: string | null | undefined;
|
2184
1982
|
createdAtLocation?: string | null | undefined;
|
2185
1983
|
annotation?: Record<string, string | number | boolean | {
|
@@ -2197,10 +1995,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2197
1995
|
residentialArea?: string | null | undefined;
|
2198
1996
|
street?: string | null | undefined;
|
2199
1997
|
zipCode?: string | null | undefined;
|
2200
|
-
} | {
|
2201
|
-
firstname: string;
|
2202
|
-
surname: string;
|
2203
|
-
middlename?: string | null | undefined;
|
2204
1998
|
} | {
|
2205
1999
|
country: string;
|
2206
2000
|
district: string;
|
@@ -2223,7 +2017,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2223
2017
|
option: string;
|
2224
2018
|
filename: string;
|
2225
2019
|
originalFilename: string;
|
2226
|
-
}[] | [string, string] |
|
2020
|
+
}[] | [string, string] | undefined> | undefined;
|
2227
2021
|
originalActionId?: string | undefined;
|
2228
2022
|
}, {
|
2229
2023
|
type: "ARCHIVE";
|
@@ -2252,10 +2046,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2252
2046
|
residentialArea?: string | null | undefined;
|
2253
2047
|
street?: string | null | undefined;
|
2254
2048
|
zipCode?: string | null | undefined;
|
2255
|
-
} | {
|
2256
|
-
firstname: string;
|
2257
|
-
surname: string;
|
2258
|
-
middlename?: string | null | undefined;
|
2259
2049
|
} | {
|
2260
2050
|
country: string;
|
2261
2051
|
district: string;
|
@@ -2278,8 +2068,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2278
2068
|
option: string;
|
2279
2069
|
filename: string;
|
2280
2070
|
originalFilename: string;
|
2281
|
-
}[] | [string, string] |
|
2282
|
-
creator?: "system" | "user" | undefined;
|
2071
|
+
}[] | [string, string] | undefined>;
|
2283
2072
|
createdBySignature?: string | null | undefined;
|
2284
2073
|
createdAtLocation?: string | null | undefined;
|
2285
2074
|
annotation?: Record<string, string | number | boolean | {
|
@@ -2297,10 +2086,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2297
2086
|
residentialArea?: string | null | undefined;
|
2298
2087
|
street?: string | null | undefined;
|
2299
2088
|
zipCode?: string | null | undefined;
|
2300
|
-
} | {
|
2301
|
-
firstname: string;
|
2302
|
-
surname: string;
|
2303
|
-
middlename?: string | null | undefined;
|
2304
2089
|
} | {
|
2305
2090
|
country: string;
|
2306
2091
|
district: string;
|
@@ -2323,12 +2108,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
2323
2108
|
option: string;
|
2324
2109
|
filename: string;
|
2325
2110
|
originalFilename: string;
|
2326
|
-
}[] | [string, string] |
|
2111
|
+
}[] | [string, string] | undefined> | undefined;
|
2327
2112
|
originalActionId?: string | undefined;
|
2328
2113
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2329
2114
|
id: z.ZodString;
|
2330
2115
|
transactionId: z.ZodString;
|
2331
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
2332
2116
|
createdAt: z.ZodString;
|
2333
2117
|
createdBy: z.ZodString;
|
2334
2118
|
createdByRole: z.ZodString;
|
@@ -2447,19 +2231,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2447
2231
|
addressLine2?: string | null | undefined;
|
2448
2232
|
addressLine3?: string | null | undefined;
|
2449
2233
|
postcodeOrZip?: string | null | undefined;
|
2450
|
-
}
|
2451
|
-
firstname: z.ZodString;
|
2452
|
-
surname: z.ZodString;
|
2453
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2454
|
-
}, "strip", z.ZodTypeAny, {
|
2455
|
-
firstname: string;
|
2456
|
-
surname: string;
|
2457
|
-
middlename?: string | null | undefined;
|
2458
|
-
}, {
|
2459
|
-
firstname: string;
|
2460
|
-
surname: string;
|
2461
|
-
middlename?: string | null | undefined;
|
2462
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2234
|
+
}>]>>;
|
2463
2235
|
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<{
|
2464
2236
|
filename: z.ZodString;
|
2465
2237
|
originalFilename: z.ZodString;
|
@@ -2573,19 +2345,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2573
2345
|
addressLine2?: string | null | undefined;
|
2574
2346
|
addressLine3?: string | null | undefined;
|
2575
2347
|
postcodeOrZip?: string | null | undefined;
|
2576
|
-
}
|
2577
|
-
firstname: z.ZodString;
|
2578
|
-
surname: z.ZodString;
|
2579
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2580
|
-
}, "strip", z.ZodTypeAny, {
|
2581
|
-
firstname: string;
|
2582
|
-
surname: string;
|
2583
|
-
middlename?: string | null | undefined;
|
2584
|
-
}, {
|
2585
|
-
firstname: string;
|
2586
|
-
surname: string;
|
2587
|
-
middlename?: string | null | undefined;
|
2588
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2348
|
+
}>]>>>;
|
2589
2349
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2590
2350
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2591
2351
|
}, {
|
@@ -2613,10 +2373,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2613
2373
|
residentialArea?: string | null | undefined;
|
2614
2374
|
street?: string | null | undefined;
|
2615
2375
|
zipCode?: string | null | undefined;
|
2616
|
-
} | {
|
2617
|
-
firstname: string;
|
2618
|
-
surname: string;
|
2619
|
-
middlename?: string | null | undefined;
|
2620
2376
|
} | {
|
2621
2377
|
country: string;
|
2622
2378
|
district: string;
|
@@ -2639,8 +2395,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2639
2395
|
option: string;
|
2640
2396
|
filename: string;
|
2641
2397
|
originalFilename: string;
|
2642
|
-
}[] | [string, string] |
|
2643
|
-
creator?: "system" | "user" | undefined;
|
2398
|
+
}[] | [string, string] | undefined>;
|
2644
2399
|
createdBySignature?: string | null | undefined;
|
2645
2400
|
createdAtLocation?: string | null | undefined;
|
2646
2401
|
annotation?: Record<string, string | number | boolean | {
|
@@ -2658,10 +2413,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2658
2413
|
residentialArea?: string | null | undefined;
|
2659
2414
|
street?: string | null | undefined;
|
2660
2415
|
zipCode?: string | null | undefined;
|
2661
|
-
} | {
|
2662
|
-
firstname: string;
|
2663
|
-
surname: string;
|
2664
|
-
middlename?: string | null | undefined;
|
2665
2416
|
} | {
|
2666
2417
|
country: string;
|
2667
2418
|
district: string;
|
@@ -2684,7 +2435,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2684
2435
|
option: string;
|
2685
2436
|
filename: string;
|
2686
2437
|
originalFilename: string;
|
2687
|
-
}[] | [string, string] |
|
2438
|
+
}[] | [string, string] | undefined> | undefined;
|
2688
2439
|
originalActionId?: string | undefined;
|
2689
2440
|
}, {
|
2690
2441
|
type: "NOTIFY";
|
@@ -2709,10 +2460,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2709
2460
|
residentialArea?: string | null | undefined;
|
2710
2461
|
street?: string | null | undefined;
|
2711
2462
|
zipCode?: string | null | undefined;
|
2712
|
-
} | {
|
2713
|
-
firstname: string;
|
2714
|
-
surname: string;
|
2715
|
-
middlename?: string | null | undefined;
|
2716
2463
|
} | {
|
2717
2464
|
country: string;
|
2718
2465
|
district: string;
|
@@ -2735,8 +2482,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2735
2482
|
option: string;
|
2736
2483
|
filename: string;
|
2737
2484
|
originalFilename: string;
|
2738
|
-
}[] | [string, string] |
|
2739
|
-
creator?: "system" | "user" | undefined;
|
2485
|
+
}[] | [string, string] | undefined>;
|
2740
2486
|
createdBySignature?: string | null | undefined;
|
2741
2487
|
createdAtLocation?: string | null | undefined;
|
2742
2488
|
annotation?: Record<string, string | number | boolean | {
|
@@ -2754,10 +2500,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2754
2500
|
residentialArea?: string | null | undefined;
|
2755
2501
|
street?: string | null | undefined;
|
2756
2502
|
zipCode?: string | null | undefined;
|
2757
|
-
} | {
|
2758
|
-
firstname: string;
|
2759
|
-
surname: string;
|
2760
|
-
middlename?: string | null | undefined;
|
2761
2503
|
} | {
|
2762
2504
|
country: string;
|
2763
2505
|
district: string;
|
@@ -2780,12 +2522,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
2780
2522
|
option: string;
|
2781
2523
|
filename: string;
|
2782
2524
|
originalFilename: string;
|
2783
|
-
}[] | [string, string] |
|
2525
|
+
}[] | [string, string] | undefined> | undefined;
|
2784
2526
|
originalActionId?: string | undefined;
|
2785
2527
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2786
2528
|
id: z.ZodString;
|
2787
2529
|
transactionId: z.ZodString;
|
2788
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
2789
2530
|
createdAt: z.ZodString;
|
2790
2531
|
createdBy: z.ZodString;
|
2791
2532
|
createdByRole: z.ZodString;
|
@@ -2904,19 +2645,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2904
2645
|
addressLine2?: string | null | undefined;
|
2905
2646
|
addressLine3?: string | null | undefined;
|
2906
2647
|
postcodeOrZip?: string | null | undefined;
|
2907
|
-
}
|
2908
|
-
firstname: z.ZodString;
|
2909
|
-
surname: z.ZodString;
|
2910
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2911
|
-
}, "strip", z.ZodTypeAny, {
|
2912
|
-
firstname: string;
|
2913
|
-
surname: string;
|
2914
|
-
middlename?: string | null | undefined;
|
2915
|
-
}, {
|
2916
|
-
firstname: string;
|
2917
|
-
surname: string;
|
2918
|
-
middlename?: string | null | undefined;
|
2919
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2648
|
+
}>]>>;
|
2920
2649
|
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<{
|
2921
2650
|
filename: z.ZodString;
|
2922
2651
|
originalFilename: z.ZodString;
|
@@ -3030,19 +2759,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3030
2759
|
addressLine2?: string | null | undefined;
|
3031
2760
|
addressLine3?: string | null | undefined;
|
3032
2761
|
postcodeOrZip?: string | null | undefined;
|
3033
|
-
}
|
3034
|
-
firstname: z.ZodString;
|
3035
|
-
surname: z.ZodString;
|
3036
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3037
|
-
}, "strip", z.ZodTypeAny, {
|
3038
|
-
firstname: string;
|
3039
|
-
surname: string;
|
3040
|
-
middlename?: string | null | undefined;
|
3041
|
-
}, {
|
3042
|
-
firstname: string;
|
3043
|
-
surname: string;
|
3044
|
-
middlename?: string | null | undefined;
|
3045
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2762
|
+
}>]>>>;
|
3046
2763
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3047
2764
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3048
2765
|
}, {
|
@@ -3071,10 +2788,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3071
2788
|
residentialArea?: string | null | undefined;
|
3072
2789
|
street?: string | null | undefined;
|
3073
2790
|
zipCode?: string | null | undefined;
|
3074
|
-
} | {
|
3075
|
-
firstname: string;
|
3076
|
-
surname: string;
|
3077
|
-
middlename?: string | null | undefined;
|
3078
2791
|
} | {
|
3079
2792
|
country: string;
|
3080
2793
|
district: string;
|
@@ -3097,8 +2810,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3097
2810
|
option: string;
|
3098
2811
|
filename: string;
|
3099
2812
|
originalFilename: string;
|
3100
|
-
}[] | [string, string] |
|
3101
|
-
creator?: "system" | "user" | undefined;
|
2813
|
+
}[] | [string, string] | undefined>;
|
3102
2814
|
createdBySignature?: string | null | undefined;
|
3103
2815
|
createdAtLocation?: string | null | undefined;
|
3104
2816
|
annotation?: Record<string, string | number | boolean | {
|
@@ -3116,10 +2828,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3116
2828
|
residentialArea?: string | null | undefined;
|
3117
2829
|
street?: string | null | undefined;
|
3118
2830
|
zipCode?: string | null | undefined;
|
3119
|
-
} | {
|
3120
|
-
firstname: string;
|
3121
|
-
surname: string;
|
3122
|
-
middlename?: string | null | undefined;
|
3123
2831
|
} | {
|
3124
2832
|
country: string;
|
3125
2833
|
district: string;
|
@@ -3142,7 +2850,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3142
2850
|
option: string;
|
3143
2851
|
filename: string;
|
3144
2852
|
originalFilename: string;
|
3145
|
-
}[] | [string, string] |
|
2853
|
+
}[] | [string, string] | undefined> | undefined;
|
3146
2854
|
originalActionId?: string | undefined;
|
3147
2855
|
registrationNumber?: string | undefined;
|
3148
2856
|
}, {
|
@@ -3168,10 +2876,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3168
2876
|
residentialArea?: string | null | undefined;
|
3169
2877
|
street?: string | null | undefined;
|
3170
2878
|
zipCode?: string | null | undefined;
|
3171
|
-
} | {
|
3172
|
-
firstname: string;
|
3173
|
-
surname: string;
|
3174
|
-
middlename?: string | null | undefined;
|
3175
2879
|
} | {
|
3176
2880
|
country: string;
|
3177
2881
|
district: string;
|
@@ -3194,8 +2898,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3194
2898
|
option: string;
|
3195
2899
|
filename: string;
|
3196
2900
|
originalFilename: string;
|
3197
|
-
}[] | [string, string] |
|
3198
|
-
creator?: "system" | "user" | undefined;
|
2901
|
+
}[] | [string, string] | undefined>;
|
3199
2902
|
createdBySignature?: string | null | undefined;
|
3200
2903
|
createdAtLocation?: string | null | undefined;
|
3201
2904
|
annotation?: Record<string, string | number | boolean | {
|
@@ -3213,10 +2916,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3213
2916
|
residentialArea?: string | null | undefined;
|
3214
2917
|
street?: string | null | undefined;
|
3215
2918
|
zipCode?: string | null | undefined;
|
3216
|
-
} | {
|
3217
|
-
firstname: string;
|
3218
|
-
surname: string;
|
3219
|
-
middlename?: string | null | undefined;
|
3220
2919
|
} | {
|
3221
2920
|
country: string;
|
3222
2921
|
district: string;
|
@@ -3239,13 +2938,12 @@ export declare const EventDocument: z.ZodObject<{
|
|
3239
2938
|
option: string;
|
3240
2939
|
filename: string;
|
3241
2940
|
originalFilename: string;
|
3242
|
-
}[] | [string, string] |
|
2941
|
+
}[] | [string, string] | undefined> | undefined;
|
3243
2942
|
originalActionId?: string | undefined;
|
3244
2943
|
registrationNumber?: string | undefined;
|
3245
2944
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3246
2945
|
id: z.ZodString;
|
3247
2946
|
transactionId: z.ZodString;
|
3248
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
3249
2947
|
createdAt: z.ZodString;
|
3250
2948
|
createdBy: z.ZodString;
|
3251
2949
|
createdByRole: z.ZodString;
|
@@ -3364,19 +3062,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3364
3062
|
addressLine2?: string | null | undefined;
|
3365
3063
|
addressLine3?: string | null | undefined;
|
3366
3064
|
postcodeOrZip?: string | null | undefined;
|
3367
|
-
}
|
3368
|
-
firstname: z.ZodString;
|
3369
|
-
surname: z.ZodString;
|
3370
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3371
|
-
}, "strip", z.ZodTypeAny, {
|
3372
|
-
firstname: string;
|
3373
|
-
surname: string;
|
3374
|
-
middlename?: string | null | undefined;
|
3375
|
-
}, {
|
3376
|
-
firstname: string;
|
3377
|
-
surname: string;
|
3378
|
-
middlename?: string | null | undefined;
|
3379
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3065
|
+
}>]>>;
|
3380
3066
|
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<{
|
3381
3067
|
filename: z.ZodString;
|
3382
3068
|
originalFilename: z.ZodString;
|
@@ -3490,19 +3176,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3490
3176
|
addressLine2?: string | null | undefined;
|
3491
3177
|
addressLine3?: string | null | undefined;
|
3492
3178
|
postcodeOrZip?: string | null | undefined;
|
3493
|
-
}
|
3494
|
-
firstname: z.ZodString;
|
3495
|
-
surname: z.ZodString;
|
3496
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3497
|
-
}, "strip", z.ZodTypeAny, {
|
3498
|
-
firstname: string;
|
3499
|
-
surname: string;
|
3500
|
-
middlename?: string | null | undefined;
|
3501
|
-
}, {
|
3502
|
-
firstname: string;
|
3503
|
-
surname: string;
|
3504
|
-
middlename?: string | null | undefined;
|
3505
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3179
|
+
}>]>>>;
|
3506
3180
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3507
3181
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3508
3182
|
}, {
|
@@ -3530,10 +3204,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3530
3204
|
residentialArea?: string | null | undefined;
|
3531
3205
|
street?: string | null | undefined;
|
3532
3206
|
zipCode?: string | null | undefined;
|
3533
|
-
} | {
|
3534
|
-
firstname: string;
|
3535
|
-
surname: string;
|
3536
|
-
middlename?: string | null | undefined;
|
3537
3207
|
} | {
|
3538
3208
|
country: string;
|
3539
3209
|
district: string;
|
@@ -3556,8 +3226,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3556
3226
|
option: string;
|
3557
3227
|
filename: string;
|
3558
3228
|
originalFilename: string;
|
3559
|
-
}[] | [string, string] |
|
3560
|
-
creator?: "system" | "user" | undefined;
|
3229
|
+
}[] | [string, string] | undefined>;
|
3561
3230
|
createdBySignature?: string | null | undefined;
|
3562
3231
|
createdAtLocation?: string | null | undefined;
|
3563
3232
|
annotation?: Record<string, string | number | boolean | {
|
@@ -3575,10 +3244,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3575
3244
|
residentialArea?: string | null | undefined;
|
3576
3245
|
street?: string | null | undefined;
|
3577
3246
|
zipCode?: string | null | undefined;
|
3578
|
-
} | {
|
3579
|
-
firstname: string;
|
3580
|
-
surname: string;
|
3581
|
-
middlename?: string | null | undefined;
|
3582
3247
|
} | {
|
3583
3248
|
country: string;
|
3584
3249
|
district: string;
|
@@ -3601,7 +3266,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3601
3266
|
option: string;
|
3602
3267
|
filename: string;
|
3603
3268
|
originalFilename: string;
|
3604
|
-
}[] | [string, string] |
|
3269
|
+
}[] | [string, string] | undefined> | undefined;
|
3605
3270
|
originalActionId?: string | undefined;
|
3606
3271
|
}, {
|
3607
3272
|
type: "DECLARE";
|
@@ -3626,10 +3291,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3626
3291
|
residentialArea?: string | null | undefined;
|
3627
3292
|
street?: string | null | undefined;
|
3628
3293
|
zipCode?: string | null | undefined;
|
3629
|
-
} | {
|
3630
|
-
firstname: string;
|
3631
|
-
surname: string;
|
3632
|
-
middlename?: string | null | undefined;
|
3633
3294
|
} | {
|
3634
3295
|
country: string;
|
3635
3296
|
district: string;
|
@@ -3652,8 +3313,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3652
3313
|
option: string;
|
3653
3314
|
filename: string;
|
3654
3315
|
originalFilename: string;
|
3655
|
-
}[] | [string, string] |
|
3656
|
-
creator?: "system" | "user" | undefined;
|
3316
|
+
}[] | [string, string] | undefined>;
|
3657
3317
|
createdBySignature?: string | null | undefined;
|
3658
3318
|
createdAtLocation?: string | null | undefined;
|
3659
3319
|
annotation?: Record<string, string | number | boolean | {
|
@@ -3671,10 +3331,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3671
3331
|
residentialArea?: string | null | undefined;
|
3672
3332
|
street?: string | null | undefined;
|
3673
3333
|
zipCode?: string | null | undefined;
|
3674
|
-
} | {
|
3675
|
-
firstname: string;
|
3676
|
-
surname: string;
|
3677
|
-
middlename?: string | null | undefined;
|
3678
3334
|
} | {
|
3679
3335
|
country: string;
|
3680
3336
|
district: string;
|
@@ -3697,12 +3353,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
3697
3353
|
option: string;
|
3698
3354
|
filename: string;
|
3699
3355
|
originalFilename: string;
|
3700
|
-
}[] | [string, string] |
|
3356
|
+
}[] | [string, string] | undefined> | undefined;
|
3701
3357
|
originalActionId?: string | undefined;
|
3702
3358
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3703
3359
|
id: z.ZodString;
|
3704
3360
|
transactionId: z.ZodString;
|
3705
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
3706
3361
|
createdAt: z.ZodString;
|
3707
3362
|
createdBy: z.ZodString;
|
3708
3363
|
createdByRole: z.ZodString;
|
@@ -3821,19 +3476,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3821
3476
|
addressLine2?: string | null | undefined;
|
3822
3477
|
addressLine3?: string | null | undefined;
|
3823
3478
|
postcodeOrZip?: string | null | undefined;
|
3824
|
-
}
|
3825
|
-
firstname: z.ZodString;
|
3826
|
-
surname: z.ZodString;
|
3827
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3828
|
-
}, "strip", z.ZodTypeAny, {
|
3829
|
-
firstname: string;
|
3830
|
-
surname: string;
|
3831
|
-
middlename?: string | null | undefined;
|
3832
|
-
}, {
|
3833
|
-
firstname: string;
|
3834
|
-
surname: string;
|
3835
|
-
middlename?: string | null | undefined;
|
3836
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3479
|
+
}>]>>;
|
3837
3480
|
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<{
|
3838
3481
|
filename: z.ZodString;
|
3839
3482
|
originalFilename: z.ZodString;
|
@@ -3947,19 +3590,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3947
3590
|
addressLine2?: string | null | undefined;
|
3948
3591
|
addressLine3?: string | null | undefined;
|
3949
3592
|
postcodeOrZip?: string | null | undefined;
|
3950
|
-
}
|
3951
|
-
firstname: z.ZodString;
|
3952
|
-
surname: z.ZodString;
|
3953
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3954
|
-
}, "strip", z.ZodTypeAny, {
|
3955
|
-
firstname: string;
|
3956
|
-
surname: string;
|
3957
|
-
middlename?: string | null | undefined;
|
3958
|
-
}, {
|
3959
|
-
firstname: string;
|
3960
|
-
surname: string;
|
3961
|
-
middlename?: string | null | undefined;
|
3962
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3593
|
+
}>]>>>;
|
3963
3594
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3964
3595
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3965
3596
|
}, {
|
@@ -3988,10 +3619,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3988
3619
|
residentialArea?: string | null | undefined;
|
3989
3620
|
street?: string | null | undefined;
|
3990
3621
|
zipCode?: string | null | undefined;
|
3991
|
-
} | {
|
3992
|
-
firstname: string;
|
3993
|
-
surname: string;
|
3994
|
-
middlename?: string | null | undefined;
|
3995
3622
|
} | {
|
3996
3623
|
country: string;
|
3997
3624
|
district: string;
|
@@ -4014,9 +3641,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4014
3641
|
option: string;
|
4015
3642
|
filename: string;
|
4016
3643
|
originalFilename: string;
|
4017
|
-
}[] | [string, string] |
|
3644
|
+
}[] | [string, string] | undefined>;
|
4018
3645
|
assignedTo: string;
|
4019
|
-
creator?: "system" | "user" | undefined;
|
4020
3646
|
createdBySignature?: string | null | undefined;
|
4021
3647
|
createdAtLocation?: string | null | undefined;
|
4022
3648
|
annotation?: Record<string, string | number | boolean | {
|
@@ -4034,10 +3660,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4034
3660
|
residentialArea?: string | null | undefined;
|
4035
3661
|
street?: string | null | undefined;
|
4036
3662
|
zipCode?: string | null | undefined;
|
4037
|
-
} | {
|
4038
|
-
firstname: string;
|
4039
|
-
surname: string;
|
4040
|
-
middlename?: string | null | undefined;
|
4041
3663
|
} | {
|
4042
3664
|
country: string;
|
4043
3665
|
district: string;
|
@@ -4060,7 +3682,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4060
3682
|
option: string;
|
4061
3683
|
filename: string;
|
4062
3684
|
originalFilename: string;
|
4063
|
-
}[] | [string, string] |
|
3685
|
+
}[] | [string, string] | undefined> | undefined;
|
4064
3686
|
originalActionId?: string | undefined;
|
4065
3687
|
}, {
|
4066
3688
|
type: "ASSIGN";
|
@@ -4085,10 +3707,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4085
3707
|
residentialArea?: string | null | undefined;
|
4086
3708
|
street?: string | null | undefined;
|
4087
3709
|
zipCode?: string | null | undefined;
|
4088
|
-
} | {
|
4089
|
-
firstname: string;
|
4090
|
-
surname: string;
|
4091
|
-
middlename?: string | null | undefined;
|
4092
3710
|
} | {
|
4093
3711
|
country: string;
|
4094
3712
|
district: string;
|
@@ -4111,9 +3729,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4111
3729
|
option: string;
|
4112
3730
|
filename: string;
|
4113
3731
|
originalFilename: string;
|
4114
|
-
}[] | [string, string] |
|
3732
|
+
}[] | [string, string] | undefined>;
|
4115
3733
|
assignedTo: string;
|
4116
|
-
creator?: "system" | "user" | undefined;
|
4117
3734
|
createdBySignature?: string | null | undefined;
|
4118
3735
|
createdAtLocation?: string | null | undefined;
|
4119
3736
|
annotation?: Record<string, string | number | boolean | {
|
@@ -4131,10 +3748,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4131
3748
|
residentialArea?: string | null | undefined;
|
4132
3749
|
street?: string | null | undefined;
|
4133
3750
|
zipCode?: string | null | undefined;
|
4134
|
-
} | {
|
4135
|
-
firstname: string;
|
4136
|
-
surname: string;
|
4137
|
-
middlename?: string | null | undefined;
|
4138
3751
|
} | {
|
4139
3752
|
country: string;
|
4140
3753
|
district: string;
|
@@ -4157,12 +3770,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
4157
3770
|
option: string;
|
4158
3771
|
filename: string;
|
4159
3772
|
originalFilename: string;
|
4160
|
-
}[] | [string, string] |
|
3773
|
+
}[] | [string, string] | undefined> | undefined;
|
4161
3774
|
originalActionId?: string | undefined;
|
4162
3775
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4163
3776
|
id: z.ZodString;
|
4164
3777
|
transactionId: z.ZodString;
|
4165
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
4166
3778
|
createdAt: z.ZodString;
|
4167
3779
|
createdBy: z.ZodString;
|
4168
3780
|
createdByRole: z.ZodString;
|
@@ -4281,19 +3893,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4281
3893
|
addressLine2?: string | null | undefined;
|
4282
3894
|
addressLine3?: string | null | undefined;
|
4283
3895
|
postcodeOrZip?: string | null | undefined;
|
4284
|
-
}
|
4285
|
-
firstname: z.ZodString;
|
4286
|
-
surname: z.ZodString;
|
4287
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4288
|
-
}, "strip", z.ZodTypeAny, {
|
4289
|
-
firstname: string;
|
4290
|
-
surname: string;
|
4291
|
-
middlename?: string | null | undefined;
|
4292
|
-
}, {
|
4293
|
-
firstname: string;
|
4294
|
-
surname: string;
|
4295
|
-
middlename?: string | null | undefined;
|
4296
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3896
|
+
}>]>>;
|
4297
3897
|
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<{
|
4298
3898
|
filename: z.ZodString;
|
4299
3899
|
originalFilename: z.ZodString;
|
@@ -4407,19 +4007,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4407
4007
|
addressLine2?: string | null | undefined;
|
4408
4008
|
addressLine3?: string | null | undefined;
|
4409
4009
|
postcodeOrZip?: string | null | undefined;
|
4410
|
-
}
|
4411
|
-
firstname: z.ZodString;
|
4412
|
-
surname: z.ZodString;
|
4413
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4414
|
-
}, "strip", z.ZodTypeAny, {
|
4415
|
-
firstname: string;
|
4416
|
-
surname: string;
|
4417
|
-
middlename?: string | null | undefined;
|
4418
|
-
}, {
|
4419
|
-
firstname: string;
|
4420
|
-
surname: string;
|
4421
|
-
middlename?: string | null | undefined;
|
4422
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4010
|
+
}>]>>>;
|
4423
4011
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4424
4012
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4425
4013
|
}, {
|
@@ -4447,10 +4035,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4447
4035
|
residentialArea?: string | null | undefined;
|
4448
4036
|
street?: string | null | undefined;
|
4449
4037
|
zipCode?: string | null | undefined;
|
4450
|
-
} | {
|
4451
|
-
firstname: string;
|
4452
|
-
surname: string;
|
4453
|
-
middlename?: string | null | undefined;
|
4454
4038
|
} | {
|
4455
4039
|
country: string;
|
4456
4040
|
district: string;
|
@@ -4473,8 +4057,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4473
4057
|
option: string;
|
4474
4058
|
filename: string;
|
4475
4059
|
originalFilename: string;
|
4476
|
-
}[] | [string, string] |
|
4477
|
-
creator?: "system" | "user" | undefined;
|
4060
|
+
}[] | [string, string] | undefined>;
|
4478
4061
|
createdBySignature?: string | null | undefined;
|
4479
4062
|
createdAtLocation?: string | null | undefined;
|
4480
4063
|
annotation?: Record<string, string | number | boolean | {
|
@@ -4492,10 +4075,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4492
4075
|
residentialArea?: string | null | undefined;
|
4493
4076
|
street?: string | null | undefined;
|
4494
4077
|
zipCode?: string | null | undefined;
|
4495
|
-
} | {
|
4496
|
-
firstname: string;
|
4497
|
-
surname: string;
|
4498
|
-
middlename?: string | null | undefined;
|
4499
4078
|
} | {
|
4500
4079
|
country: string;
|
4501
4080
|
district: string;
|
@@ -4518,7 +4097,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4518
4097
|
option: string;
|
4519
4098
|
filename: string;
|
4520
4099
|
originalFilename: string;
|
4521
|
-
}[] | [string, string] |
|
4100
|
+
}[] | [string, string] | undefined> | undefined;
|
4522
4101
|
originalActionId?: string | undefined;
|
4523
4102
|
}, {
|
4524
4103
|
type: "REQUEST_CORRECTION";
|
@@ -4543,10 +4122,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4543
4122
|
residentialArea?: string | null | undefined;
|
4544
4123
|
street?: string | null | undefined;
|
4545
4124
|
zipCode?: string | null | undefined;
|
4546
|
-
} | {
|
4547
|
-
firstname: string;
|
4548
|
-
surname: string;
|
4549
|
-
middlename?: string | null | undefined;
|
4550
4125
|
} | {
|
4551
4126
|
country: string;
|
4552
4127
|
district: string;
|
@@ -4569,8 +4144,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4569
4144
|
option: string;
|
4570
4145
|
filename: string;
|
4571
4146
|
originalFilename: string;
|
4572
|
-
}[] | [string, string] |
|
4573
|
-
creator?: "system" | "user" | undefined;
|
4147
|
+
}[] | [string, string] | undefined>;
|
4574
4148
|
createdBySignature?: string | null | undefined;
|
4575
4149
|
createdAtLocation?: string | null | undefined;
|
4576
4150
|
annotation?: Record<string, string | number | boolean | {
|
@@ -4588,10 +4162,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4588
4162
|
residentialArea?: string | null | undefined;
|
4589
4163
|
street?: string | null | undefined;
|
4590
4164
|
zipCode?: string | null | undefined;
|
4591
|
-
} | {
|
4592
|
-
firstname: string;
|
4593
|
-
surname: string;
|
4594
|
-
middlename?: string | null | undefined;
|
4595
4165
|
} | {
|
4596
4166
|
country: string;
|
4597
4167
|
district: string;
|
@@ -4614,12 +4184,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
4614
4184
|
option: string;
|
4615
4185
|
filename: string;
|
4616
4186
|
originalFilename: string;
|
4617
|
-
}[] | [string, string] |
|
4187
|
+
}[] | [string, string] | undefined> | undefined;
|
4618
4188
|
originalActionId?: string | undefined;
|
4619
4189
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4620
4190
|
id: z.ZodString;
|
4621
4191
|
transactionId: z.ZodString;
|
4622
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
4623
4192
|
createdAt: z.ZodString;
|
4624
4193
|
createdBy: z.ZodString;
|
4625
4194
|
createdByRole: z.ZodString;
|
@@ -4738,19 +4307,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4738
4307
|
addressLine2?: string | null | undefined;
|
4739
4308
|
addressLine3?: string | null | undefined;
|
4740
4309
|
postcodeOrZip?: string | null | undefined;
|
4741
|
-
}
|
4742
|
-
firstname: z.ZodString;
|
4743
|
-
surname: z.ZodString;
|
4744
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4745
|
-
}, "strip", z.ZodTypeAny, {
|
4746
|
-
firstname: string;
|
4747
|
-
surname: string;
|
4748
|
-
middlename?: string | null | undefined;
|
4749
|
-
}, {
|
4750
|
-
firstname: string;
|
4751
|
-
surname: string;
|
4752
|
-
middlename?: string | null | undefined;
|
4753
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4310
|
+
}>]>>;
|
4754
4311
|
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<{
|
4755
4312
|
filename: z.ZodString;
|
4756
4313
|
originalFilename: z.ZodString;
|
@@ -4864,19 +4421,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4864
4421
|
addressLine2?: string | null | undefined;
|
4865
4422
|
addressLine3?: string | null | undefined;
|
4866
4423
|
postcodeOrZip?: string | null | undefined;
|
4867
|
-
}
|
4868
|
-
firstname: z.ZodString;
|
4869
|
-
surname: z.ZodString;
|
4870
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4871
|
-
}, "strip", z.ZodTypeAny, {
|
4872
|
-
firstname: string;
|
4873
|
-
surname: string;
|
4874
|
-
middlename?: string | null | undefined;
|
4875
|
-
}, {
|
4876
|
-
firstname: string;
|
4877
|
-
surname: string;
|
4878
|
-
middlename?: string | null | undefined;
|
4879
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4424
|
+
}>]>>>;
|
4880
4425
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4881
4426
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4882
4427
|
}, {
|
@@ -4905,10 +4450,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4905
4450
|
residentialArea?: string | null | undefined;
|
4906
4451
|
street?: string | null | undefined;
|
4907
4452
|
zipCode?: string | null | undefined;
|
4908
|
-
} | {
|
4909
|
-
firstname: string;
|
4910
|
-
surname: string;
|
4911
|
-
middlename?: string | null | undefined;
|
4912
4453
|
} | {
|
4913
4454
|
country: string;
|
4914
4455
|
district: string;
|
@@ -4931,9 +4472,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4931
4472
|
option: string;
|
4932
4473
|
filename: string;
|
4933
4474
|
originalFilename: string;
|
4934
|
-
}[] | [string, string] |
|
4475
|
+
}[] | [string, string] | undefined>;
|
4935
4476
|
requestId: string;
|
4936
|
-
creator?: "system" | "user" | undefined;
|
4937
4477
|
createdBySignature?: string | null | undefined;
|
4938
4478
|
createdAtLocation?: string | null | undefined;
|
4939
4479
|
annotation?: Record<string, string | number | boolean | {
|
@@ -4951,10 +4491,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4951
4491
|
residentialArea?: string | null | undefined;
|
4952
4492
|
street?: string | null | undefined;
|
4953
4493
|
zipCode?: string | null | undefined;
|
4954
|
-
} | {
|
4955
|
-
firstname: string;
|
4956
|
-
surname: string;
|
4957
|
-
middlename?: string | null | undefined;
|
4958
4494
|
} | {
|
4959
4495
|
country: string;
|
4960
4496
|
district: string;
|
@@ -4977,7 +4513,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4977
4513
|
option: string;
|
4978
4514
|
filename: string;
|
4979
4515
|
originalFilename: string;
|
4980
|
-
}[] | [string, string] |
|
4516
|
+
}[] | [string, string] | undefined> | undefined;
|
4981
4517
|
originalActionId?: string | undefined;
|
4982
4518
|
}, {
|
4983
4519
|
type: "APPROVE_CORRECTION";
|
@@ -5002,10 +4538,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5002
4538
|
residentialArea?: string | null | undefined;
|
5003
4539
|
street?: string | null | undefined;
|
5004
4540
|
zipCode?: string | null | undefined;
|
5005
|
-
} | {
|
5006
|
-
firstname: string;
|
5007
|
-
surname: string;
|
5008
|
-
middlename?: string | null | undefined;
|
5009
4541
|
} | {
|
5010
4542
|
country: string;
|
5011
4543
|
district: string;
|
@@ -5028,9 +4560,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5028
4560
|
option: string;
|
5029
4561
|
filename: string;
|
5030
4562
|
originalFilename: string;
|
5031
|
-
}[] | [string, string] |
|
4563
|
+
}[] | [string, string] | undefined>;
|
5032
4564
|
requestId: string;
|
5033
|
-
creator?: "system" | "user" | undefined;
|
5034
4565
|
createdBySignature?: string | null | undefined;
|
5035
4566
|
createdAtLocation?: string | null | undefined;
|
5036
4567
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5048,10 +4579,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5048
4579
|
residentialArea?: string | null | undefined;
|
5049
4580
|
street?: string | null | undefined;
|
5050
4581
|
zipCode?: string | null | undefined;
|
5051
|
-
} | {
|
5052
|
-
firstname: string;
|
5053
|
-
surname: string;
|
5054
|
-
middlename?: string | null | undefined;
|
5055
4582
|
} | {
|
5056
4583
|
country: string;
|
5057
4584
|
district: string;
|
@@ -5074,12 +4601,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
5074
4601
|
option: string;
|
5075
4602
|
filename: string;
|
5076
4603
|
originalFilename: string;
|
5077
|
-
}[] | [string, string] |
|
4604
|
+
}[] | [string, string] | undefined> | undefined;
|
5078
4605
|
originalActionId?: string | undefined;
|
5079
4606
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5080
4607
|
id: z.ZodString;
|
5081
4608
|
transactionId: z.ZodString;
|
5082
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
5083
4609
|
createdAt: z.ZodString;
|
5084
4610
|
createdBy: z.ZodString;
|
5085
4611
|
createdByRole: z.ZodString;
|
@@ -5198,19 +4724,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5198
4724
|
addressLine2?: string | null | undefined;
|
5199
4725
|
addressLine3?: string | null | undefined;
|
5200
4726
|
postcodeOrZip?: string | null | undefined;
|
5201
|
-
}
|
5202
|
-
firstname: z.ZodString;
|
5203
|
-
surname: z.ZodString;
|
5204
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5205
|
-
}, "strip", z.ZodTypeAny, {
|
5206
|
-
firstname: string;
|
5207
|
-
surname: string;
|
5208
|
-
middlename?: string | null | undefined;
|
5209
|
-
}, {
|
5210
|
-
firstname: string;
|
5211
|
-
surname: string;
|
5212
|
-
middlename?: string | null | undefined;
|
5213
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4727
|
+
}>]>>;
|
5214
4728
|
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<{
|
5215
4729
|
filename: z.ZodString;
|
5216
4730
|
originalFilename: z.ZodString;
|
@@ -5324,19 +4838,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5324
4838
|
addressLine2?: string | null | undefined;
|
5325
4839
|
addressLine3?: string | null | undefined;
|
5326
4840
|
postcodeOrZip?: string | null | undefined;
|
5327
|
-
}
|
5328
|
-
firstname: z.ZodString;
|
5329
|
-
surname: z.ZodString;
|
5330
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5331
|
-
}, "strip", z.ZodTypeAny, {
|
5332
|
-
firstname: string;
|
5333
|
-
surname: string;
|
5334
|
-
middlename?: string | null | undefined;
|
5335
|
-
}, {
|
5336
|
-
firstname: string;
|
5337
|
-
surname: string;
|
5338
|
-
middlename?: string | null | undefined;
|
5339
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4841
|
+
}>]>>>;
|
5340
4842
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5341
4843
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5342
4844
|
}, {
|
@@ -5365,10 +4867,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5365
4867
|
residentialArea?: string | null | undefined;
|
5366
4868
|
street?: string | null | undefined;
|
5367
4869
|
zipCode?: string | null | undefined;
|
5368
|
-
} | {
|
5369
|
-
firstname: string;
|
5370
|
-
surname: string;
|
5371
|
-
middlename?: string | null | undefined;
|
5372
4870
|
} | {
|
5373
4871
|
country: string;
|
5374
4872
|
district: string;
|
@@ -5391,9 +4889,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5391
4889
|
option: string;
|
5392
4890
|
filename: string;
|
5393
4891
|
originalFilename: string;
|
5394
|
-
}[] | [string, string] |
|
4892
|
+
}[] | [string, string] | undefined>;
|
5395
4893
|
requestId: string;
|
5396
|
-
creator?: "system" | "user" | undefined;
|
5397
4894
|
createdBySignature?: string | null | undefined;
|
5398
4895
|
createdAtLocation?: string | null | undefined;
|
5399
4896
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5411,10 +4908,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5411
4908
|
residentialArea?: string | null | undefined;
|
5412
4909
|
street?: string | null | undefined;
|
5413
4910
|
zipCode?: string | null | undefined;
|
5414
|
-
} | {
|
5415
|
-
firstname: string;
|
5416
|
-
surname: string;
|
5417
|
-
middlename?: string | null | undefined;
|
5418
4911
|
} | {
|
5419
4912
|
country: string;
|
5420
4913
|
district: string;
|
@@ -5437,7 +4930,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5437
4930
|
option: string;
|
5438
4931
|
filename: string;
|
5439
4932
|
originalFilename: string;
|
5440
|
-
}[] | [string, string] |
|
4933
|
+
}[] | [string, string] | undefined> | undefined;
|
5441
4934
|
originalActionId?: string | undefined;
|
5442
4935
|
}, {
|
5443
4936
|
type: "REJECT_CORRECTION";
|
@@ -5462,10 +4955,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5462
4955
|
residentialArea?: string | null | undefined;
|
5463
4956
|
street?: string | null | undefined;
|
5464
4957
|
zipCode?: string | null | undefined;
|
5465
|
-
} | {
|
5466
|
-
firstname: string;
|
5467
|
-
surname: string;
|
5468
|
-
middlename?: string | null | undefined;
|
5469
4958
|
} | {
|
5470
4959
|
country: string;
|
5471
4960
|
district: string;
|
@@ -5488,9 +4977,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5488
4977
|
option: string;
|
5489
4978
|
filename: string;
|
5490
4979
|
originalFilename: string;
|
5491
|
-
}[] | [string, string] |
|
4980
|
+
}[] | [string, string] | undefined>;
|
5492
4981
|
requestId: string;
|
5493
|
-
creator?: "system" | "user" | undefined;
|
5494
4982
|
createdBySignature?: string | null | undefined;
|
5495
4983
|
createdAtLocation?: string | null | undefined;
|
5496
4984
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5508,10 +4996,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5508
4996
|
residentialArea?: string | null | undefined;
|
5509
4997
|
street?: string | null | undefined;
|
5510
4998
|
zipCode?: string | null | undefined;
|
5511
|
-
} | {
|
5512
|
-
firstname: string;
|
5513
|
-
surname: string;
|
5514
|
-
middlename?: string | null | undefined;
|
5515
4999
|
} | {
|
5516
5000
|
country: string;
|
5517
5001
|
district: string;
|
@@ -5534,12 +5018,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
5534
5018
|
option: string;
|
5535
5019
|
filename: string;
|
5536
5020
|
originalFilename: string;
|
5537
|
-
}[] | [string, string] |
|
5021
|
+
}[] | [string, string] | undefined> | undefined;
|
5538
5022
|
originalActionId?: string | undefined;
|
5539
5023
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5540
5024
|
id: z.ZodString;
|
5541
5025
|
transactionId: z.ZodString;
|
5542
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
5543
5026
|
createdAt: z.ZodString;
|
5544
5027
|
createdBy: z.ZodString;
|
5545
5028
|
createdByRole: z.ZodString;
|
@@ -5658,19 +5141,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5658
5141
|
addressLine2?: string | null | undefined;
|
5659
5142
|
addressLine3?: string | null | undefined;
|
5660
5143
|
postcodeOrZip?: string | null | undefined;
|
5661
|
-
}
|
5662
|
-
firstname: z.ZodString;
|
5663
|
-
surname: z.ZodString;
|
5664
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5665
|
-
}, "strip", z.ZodTypeAny, {
|
5666
|
-
firstname: string;
|
5667
|
-
surname: string;
|
5668
|
-
middlename?: string | null | undefined;
|
5669
|
-
}, {
|
5670
|
-
firstname: string;
|
5671
|
-
surname: string;
|
5672
|
-
middlename?: string | null | undefined;
|
5673
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5144
|
+
}>]>>;
|
5674
5145
|
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<{
|
5675
5146
|
filename: z.ZodString;
|
5676
5147
|
originalFilename: z.ZodString;
|
@@ -5784,19 +5255,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5784
5255
|
addressLine2?: string | null | undefined;
|
5785
5256
|
addressLine3?: string | null | undefined;
|
5786
5257
|
postcodeOrZip?: string | null | undefined;
|
5787
|
-
}
|
5788
|
-
firstname: z.ZodString;
|
5789
|
-
surname: z.ZodString;
|
5790
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5791
|
-
}, "strip", z.ZodTypeAny, {
|
5792
|
-
firstname: string;
|
5793
|
-
surname: string;
|
5794
|
-
middlename?: string | null | undefined;
|
5795
|
-
}, {
|
5796
|
-
firstname: string;
|
5797
|
-
surname: string;
|
5798
|
-
middlename?: string | null | undefined;
|
5799
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5258
|
+
}>]>>>;
|
5800
5259
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5801
5260
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5802
5261
|
}, {
|
@@ -5825,10 +5284,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5825
5284
|
residentialArea?: string | null | undefined;
|
5826
5285
|
street?: string | null | undefined;
|
5827
5286
|
zipCode?: string | null | undefined;
|
5828
|
-
} | {
|
5829
|
-
firstname: string;
|
5830
|
-
surname: string;
|
5831
|
-
middlename?: string | null | undefined;
|
5832
5287
|
} | {
|
5833
5288
|
country: string;
|
5834
5289
|
district: string;
|
@@ -5851,9 +5306,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5851
5306
|
option: string;
|
5852
5307
|
filename: string;
|
5853
5308
|
originalFilename: string;
|
5854
|
-
}[] | [string, string] |
|
5309
|
+
}[] | [string, string] | undefined>;
|
5855
5310
|
assignedTo: null;
|
5856
|
-
creator?: "system" | "user" | undefined;
|
5857
5311
|
createdBySignature?: string | null | undefined;
|
5858
5312
|
createdAtLocation?: string | null | undefined;
|
5859
5313
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5871,10 +5325,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5871
5325
|
residentialArea?: string | null | undefined;
|
5872
5326
|
street?: string | null | undefined;
|
5873
5327
|
zipCode?: string | null | undefined;
|
5874
|
-
} | {
|
5875
|
-
firstname: string;
|
5876
|
-
surname: string;
|
5877
|
-
middlename?: string | null | undefined;
|
5878
5328
|
} | {
|
5879
5329
|
country: string;
|
5880
5330
|
district: string;
|
@@ -5897,7 +5347,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5897
5347
|
option: string;
|
5898
5348
|
filename: string;
|
5899
5349
|
originalFilename: string;
|
5900
|
-
}[] | [string, string] |
|
5350
|
+
}[] | [string, string] | undefined> | undefined;
|
5901
5351
|
originalActionId?: string | undefined;
|
5902
5352
|
}, {
|
5903
5353
|
type: "UNASSIGN";
|
@@ -5922,10 +5372,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5922
5372
|
residentialArea?: string | null | undefined;
|
5923
5373
|
street?: string | null | undefined;
|
5924
5374
|
zipCode?: string | null | undefined;
|
5925
|
-
} | {
|
5926
|
-
firstname: string;
|
5927
|
-
surname: string;
|
5928
|
-
middlename?: string | null | undefined;
|
5929
5375
|
} | {
|
5930
5376
|
country: string;
|
5931
5377
|
district: string;
|
@@ -5948,9 +5394,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5948
5394
|
option: string;
|
5949
5395
|
filename: string;
|
5950
5396
|
originalFilename: string;
|
5951
|
-
}[] | [string, string] |
|
5397
|
+
}[] | [string, string] | undefined>;
|
5952
5398
|
assignedTo: null;
|
5953
|
-
creator?: "system" | "user" | undefined;
|
5954
5399
|
createdBySignature?: string | null | undefined;
|
5955
5400
|
createdAtLocation?: string | null | undefined;
|
5956
5401
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5968,10 +5413,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5968
5413
|
residentialArea?: string | null | undefined;
|
5969
5414
|
street?: string | null | undefined;
|
5970
5415
|
zipCode?: string | null | undefined;
|
5971
|
-
} | {
|
5972
|
-
firstname: string;
|
5973
|
-
surname: string;
|
5974
|
-
middlename?: string | null | undefined;
|
5975
5416
|
} | {
|
5976
5417
|
country: string;
|
5977
5418
|
district: string;
|
@@ -5994,12 +5435,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
5994
5435
|
option: string;
|
5995
5436
|
filename: string;
|
5996
5437
|
originalFilename: string;
|
5997
|
-
}[] | [string, string] |
|
5438
|
+
}[] | [string, string] | undefined> | undefined;
|
5998
5439
|
originalActionId?: string | undefined;
|
5999
5440
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6000
5441
|
id: z.ZodString;
|
6001
5442
|
transactionId: z.ZodString;
|
6002
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
6003
5443
|
createdAt: z.ZodString;
|
6004
5444
|
createdBy: z.ZodString;
|
6005
5445
|
createdByRole: z.ZodString;
|
@@ -6118,19 +5558,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6118
5558
|
addressLine2?: string | null | undefined;
|
6119
5559
|
addressLine3?: string | null | undefined;
|
6120
5560
|
postcodeOrZip?: string | null | undefined;
|
6121
|
-
}
|
6122
|
-
firstname: z.ZodString;
|
6123
|
-
surname: z.ZodString;
|
6124
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6125
|
-
}, "strip", z.ZodTypeAny, {
|
6126
|
-
firstname: string;
|
6127
|
-
surname: string;
|
6128
|
-
middlename?: string | null | undefined;
|
6129
|
-
}, {
|
6130
|
-
firstname: string;
|
6131
|
-
surname: string;
|
6132
|
-
middlename?: string | null | undefined;
|
6133
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5561
|
+
}>]>>;
|
6134
5562
|
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<{
|
6135
5563
|
filename: z.ZodString;
|
6136
5564
|
originalFilename: z.ZodString;
|
@@ -6244,19 +5672,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6244
5672
|
addressLine2?: string | null | undefined;
|
6245
5673
|
addressLine3?: string | null | undefined;
|
6246
5674
|
postcodeOrZip?: string | null | undefined;
|
6247
|
-
}
|
6248
|
-
firstname: z.ZodString;
|
6249
|
-
surname: z.ZodString;
|
6250
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6251
|
-
}, "strip", z.ZodTypeAny, {
|
6252
|
-
firstname: string;
|
6253
|
-
surname: string;
|
6254
|
-
middlename?: string | null | undefined;
|
6255
|
-
}, {
|
6256
|
-
firstname: string;
|
6257
|
-
surname: string;
|
6258
|
-
middlename?: string | null | undefined;
|
6259
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5675
|
+
}>]>>>;
|
6260
5676
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6261
5677
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6262
5678
|
}, {
|
@@ -6284,10 +5700,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6284
5700
|
residentialArea?: string | null | undefined;
|
6285
5701
|
street?: string | null | undefined;
|
6286
5702
|
zipCode?: string | null | undefined;
|
6287
|
-
} | {
|
6288
|
-
firstname: string;
|
6289
|
-
surname: string;
|
6290
|
-
middlename?: string | null | undefined;
|
6291
5703
|
} | {
|
6292
5704
|
country: string;
|
6293
5705
|
district: string;
|
@@ -6310,8 +5722,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6310
5722
|
option: string;
|
6311
5723
|
filename: string;
|
6312
5724
|
originalFilename: string;
|
6313
|
-
}[] | [string, string] |
|
6314
|
-
creator?: "system" | "user" | undefined;
|
5725
|
+
}[] | [string, string] | undefined>;
|
6315
5726
|
createdBySignature?: string | null | undefined;
|
6316
5727
|
createdAtLocation?: string | null | undefined;
|
6317
5728
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6329,10 +5740,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6329
5740
|
residentialArea?: string | null | undefined;
|
6330
5741
|
street?: string | null | undefined;
|
6331
5742
|
zipCode?: string | null | undefined;
|
6332
|
-
} | {
|
6333
|
-
firstname: string;
|
6334
|
-
surname: string;
|
6335
|
-
middlename?: string | null | undefined;
|
6336
5743
|
} | {
|
6337
5744
|
country: string;
|
6338
5745
|
district: string;
|
@@ -6355,7 +5762,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6355
5762
|
option: string;
|
6356
5763
|
filename: string;
|
6357
5764
|
originalFilename: string;
|
6358
|
-
}[] | [string, string] |
|
5765
|
+
}[] | [string, string] | undefined> | undefined;
|
6359
5766
|
originalActionId?: string | undefined;
|
6360
5767
|
}, {
|
6361
5768
|
type: "PRINT_CERTIFICATE";
|
@@ -6380,10 +5787,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6380
5787
|
residentialArea?: string | null | undefined;
|
6381
5788
|
street?: string | null | undefined;
|
6382
5789
|
zipCode?: string | null | undefined;
|
6383
|
-
} | {
|
6384
|
-
firstname: string;
|
6385
|
-
surname: string;
|
6386
|
-
middlename?: string | null | undefined;
|
6387
5790
|
} | {
|
6388
5791
|
country: string;
|
6389
5792
|
district: string;
|
@@ -6406,8 +5809,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6406
5809
|
option: string;
|
6407
5810
|
filename: string;
|
6408
5811
|
originalFilename: string;
|
6409
|
-
}[] | [string, string] |
|
6410
|
-
creator?: "system" | "user" | undefined;
|
5812
|
+
}[] | [string, string] | undefined>;
|
6411
5813
|
createdBySignature?: string | null | undefined;
|
6412
5814
|
createdAtLocation?: string | null | undefined;
|
6413
5815
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6425,10 +5827,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6425
5827
|
residentialArea?: string | null | undefined;
|
6426
5828
|
street?: string | null | undefined;
|
6427
5829
|
zipCode?: string | null | undefined;
|
6428
|
-
} | {
|
6429
|
-
firstname: string;
|
6430
|
-
surname: string;
|
6431
|
-
middlename?: string | null | undefined;
|
6432
5830
|
} | {
|
6433
5831
|
country: string;
|
6434
5832
|
district: string;
|
@@ -6451,12 +5849,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
6451
5849
|
option: string;
|
6452
5850
|
filename: string;
|
6453
5851
|
originalFilename: string;
|
6454
|
-
}[] | [string, string] |
|
5852
|
+
}[] | [string, string] | undefined> | undefined;
|
6455
5853
|
originalActionId?: string | undefined;
|
6456
5854
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6457
5855
|
id: z.ZodString;
|
6458
5856
|
transactionId: z.ZodString;
|
6459
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
6460
5857
|
createdAt: z.ZodString;
|
6461
5858
|
createdBy: z.ZodString;
|
6462
5859
|
createdByRole: z.ZodString;
|
@@ -6575,19 +5972,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6575
5972
|
addressLine2?: string | null | undefined;
|
6576
5973
|
addressLine3?: string | null | undefined;
|
6577
5974
|
postcodeOrZip?: string | null | undefined;
|
6578
|
-
}
|
6579
|
-
firstname: z.ZodString;
|
6580
|
-
surname: z.ZodString;
|
6581
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6582
|
-
}, "strip", z.ZodTypeAny, {
|
6583
|
-
firstname: string;
|
6584
|
-
surname: string;
|
6585
|
-
middlename?: string | null | undefined;
|
6586
|
-
}, {
|
6587
|
-
firstname: string;
|
6588
|
-
surname: string;
|
6589
|
-
middlename?: string | null | undefined;
|
6590
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5975
|
+
}>]>>;
|
6591
5976
|
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<{
|
6592
5977
|
filename: z.ZodString;
|
6593
5978
|
originalFilename: z.ZodString;
|
@@ -6701,19 +6086,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6701
6086
|
addressLine2?: string | null | undefined;
|
6702
6087
|
addressLine3?: string | null | undefined;
|
6703
6088
|
postcodeOrZip?: string | null | undefined;
|
6704
|
-
}
|
6705
|
-
firstname: z.ZodString;
|
6706
|
-
surname: z.ZodString;
|
6707
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6708
|
-
}, "strip", z.ZodTypeAny, {
|
6709
|
-
firstname: string;
|
6710
|
-
surname: string;
|
6711
|
-
middlename?: string | null | undefined;
|
6712
|
-
}, {
|
6713
|
-
firstname: string;
|
6714
|
-
surname: string;
|
6715
|
-
middlename?: string | null | undefined;
|
6716
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6089
|
+
}>]>>>;
|
6717
6090
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6718
6091
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6719
6092
|
}, {
|
@@ -6741,10 +6114,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6741
6114
|
residentialArea?: string | null | undefined;
|
6742
6115
|
street?: string | null | undefined;
|
6743
6116
|
zipCode?: string | null | undefined;
|
6744
|
-
} | {
|
6745
|
-
firstname: string;
|
6746
|
-
surname: string;
|
6747
|
-
middlename?: string | null | undefined;
|
6748
6117
|
} | {
|
6749
6118
|
country: string;
|
6750
6119
|
district: string;
|
@@ -6767,8 +6136,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6767
6136
|
option: string;
|
6768
6137
|
filename: string;
|
6769
6138
|
originalFilename: string;
|
6770
|
-
}[] | [string, string] |
|
6771
|
-
creator?: "system" | "user" | undefined;
|
6139
|
+
}[] | [string, string] | undefined>;
|
6772
6140
|
createdBySignature?: string | null | undefined;
|
6773
6141
|
createdAtLocation?: string | null | undefined;
|
6774
6142
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6786,10 +6154,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6786
6154
|
residentialArea?: string | null | undefined;
|
6787
6155
|
street?: string | null | undefined;
|
6788
6156
|
zipCode?: string | null | undefined;
|
6789
|
-
} | {
|
6790
|
-
firstname: string;
|
6791
|
-
surname: string;
|
6792
|
-
middlename?: string | null | undefined;
|
6793
6157
|
} | {
|
6794
6158
|
country: string;
|
6795
6159
|
district: string;
|
@@ -6812,7 +6176,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6812
6176
|
option: string;
|
6813
6177
|
filename: string;
|
6814
6178
|
originalFilename: string;
|
6815
|
-
}[] | [string, string] |
|
6179
|
+
}[] | [string, string] | undefined> | undefined;
|
6816
6180
|
originalActionId?: string | undefined;
|
6817
6181
|
}, {
|
6818
6182
|
type: "READ";
|
@@ -6837,10 +6201,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6837
6201
|
residentialArea?: string | null | undefined;
|
6838
6202
|
street?: string | null | undefined;
|
6839
6203
|
zipCode?: string | null | undefined;
|
6840
|
-
} | {
|
6841
|
-
firstname: string;
|
6842
|
-
surname: string;
|
6843
|
-
middlename?: string | null | undefined;
|
6844
6204
|
} | {
|
6845
6205
|
country: string;
|
6846
6206
|
district: string;
|
@@ -6863,8 +6223,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6863
6223
|
option: string;
|
6864
6224
|
filename: string;
|
6865
6225
|
originalFilename: string;
|
6866
|
-
}[] | [string, string] |
|
6867
|
-
creator?: "system" | "user" | undefined;
|
6226
|
+
}[] | [string, string] | undefined>;
|
6868
6227
|
createdBySignature?: string | null | undefined;
|
6869
6228
|
createdAtLocation?: string | null | undefined;
|
6870
6229
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6882,10 +6241,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6882
6241
|
residentialArea?: string | null | undefined;
|
6883
6242
|
street?: string | null | undefined;
|
6884
6243
|
zipCode?: string | null | undefined;
|
6885
|
-
} | {
|
6886
|
-
firstname: string;
|
6887
|
-
surname: string;
|
6888
|
-
middlename?: string | null | undefined;
|
6889
6244
|
} | {
|
6890
6245
|
country: string;
|
6891
6246
|
district: string;
|
@@ -6908,12 +6263,11 @@ export declare const EventDocument: z.ZodObject<{
|
|
6908
6263
|
option: string;
|
6909
6264
|
filename: string;
|
6910
6265
|
originalFilename: string;
|
6911
|
-
}[] | [string, string] |
|
6266
|
+
}[] | [string, string] | undefined> | undefined;
|
6912
6267
|
originalActionId?: string | undefined;
|
6913
6268
|
}>]>, z.ZodObject<z.objectUtil.extendShape<Omit<{
|
6914
6269
|
id: z.ZodString;
|
6915
6270
|
transactionId: z.ZodString;
|
6916
|
-
creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
|
6917
6271
|
createdAt: z.ZodString;
|
6918
6272
|
createdBy: z.ZodString;
|
6919
6273
|
createdByRole: z.ZodString;
|
@@ -7032,19 +6386,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7032
6386
|
addressLine2?: string | null | undefined;
|
7033
6387
|
addressLine3?: string | null | undefined;
|
7034
6388
|
postcodeOrZip?: string | null | undefined;
|
7035
|
-
}
|
7036
|
-
firstname: z.ZodString;
|
7037
|
-
surname: z.ZodString;
|
7038
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7039
|
-
}, "strip", z.ZodTypeAny, {
|
7040
|
-
firstname: string;
|
7041
|
-
surname: string;
|
7042
|
-
middlename?: string | null | undefined;
|
7043
|
-
}, {
|
7044
|
-
firstname: string;
|
7045
|
-
surname: string;
|
7046
|
-
middlename?: string | null | undefined;
|
7047
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6389
|
+
}>]>>;
|
7048
6390
|
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<{
|
7049
6391
|
filename: z.ZodString;
|
7050
6392
|
originalFilename: z.ZodString;
|
@@ -7158,19 +6500,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7158
6500
|
addressLine2?: string | null | undefined;
|
7159
6501
|
addressLine3?: string | null | undefined;
|
7160
6502
|
postcodeOrZip?: string | null | undefined;
|
7161
|
-
}
|
7162
|
-
firstname: z.ZodString;
|
7163
|
-
surname: z.ZodString;
|
7164
|
-
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7165
|
-
}, "strip", z.ZodTypeAny, {
|
7166
|
-
firstname: string;
|
7167
|
-
surname: string;
|
7168
|
-
middlename?: string | null | undefined;
|
7169
|
-
}, {
|
7170
|
-
firstname: string;
|
7171
|
-
surname: string;
|
7172
|
-
middlename?: string | null | undefined;
|
7173
|
-
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6503
|
+
}>]>>>;
|
7174
6504
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7175
6505
|
originalActionId: z.ZodOptional<z.ZodString>;
|
7176
6506
|
}, "declaration" | "annotation">, {
|
@@ -7184,7 +6514,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7184
6514
|
createdAt: string;
|
7185
6515
|
createdBy: string;
|
7186
6516
|
createdByRole: string;
|
7187
|
-
creator?: "system" | "user" | undefined;
|
7188
6517
|
createdBySignature?: string | null | undefined;
|
7189
6518
|
createdAtLocation?: string | null | undefined;
|
7190
6519
|
originalActionId?: string | undefined;
|
@@ -7196,7 +6525,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7196
6525
|
createdAt: string;
|
7197
6526
|
createdBy: string;
|
7198
6527
|
createdByRole: string;
|
7199
|
-
creator?: "system" | "user" | undefined;
|
7200
6528
|
createdBySignature?: string | null | undefined;
|
7201
6529
|
createdAtLocation?: string | null | undefined;
|
7202
6530
|
originalActionId?: string | undefined;
|
@@ -7230,10 +6558,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7230
6558
|
residentialArea?: string | null | undefined;
|
7231
6559
|
street?: string | null | undefined;
|
7232
6560
|
zipCode?: string | null | undefined;
|
7233
|
-
} | {
|
7234
|
-
firstname: string;
|
7235
|
-
surname: string;
|
7236
|
-
middlename?: string | null | undefined;
|
7237
6561
|
} | {
|
7238
6562
|
country: string;
|
7239
6563
|
district: string;
|
@@ -7256,9 +6580,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7256
6580
|
option: string;
|
7257
6581
|
filename: string;
|
7258
6582
|
originalFilename: string;
|
7259
|
-
}[] | [string, string] |
|
6583
|
+
}[] | [string, string] | undefined>;
|
7260
6584
|
assignedTo: string;
|
7261
|
-
creator?: "system" | "user" | undefined;
|
7262
6585
|
createdBySignature?: string | null | undefined;
|
7263
6586
|
createdAtLocation?: string | null | undefined;
|
7264
6587
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7276,10 +6599,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7276
6599
|
residentialArea?: string | null | undefined;
|
7277
6600
|
street?: string | null | undefined;
|
7278
6601
|
zipCode?: string | null | undefined;
|
7279
|
-
} | {
|
7280
|
-
firstname: string;
|
7281
|
-
surname: string;
|
7282
|
-
middlename?: string | null | undefined;
|
7283
6602
|
} | {
|
7284
6603
|
country: string;
|
7285
6604
|
district: string;
|
@@ -7302,7 +6621,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7302
6621
|
option: string;
|
7303
6622
|
filename: string;
|
7304
6623
|
originalFilename: string;
|
7305
|
-
}[] | [string, string] |
|
6624
|
+
}[] | [string, string] | undefined> | undefined;
|
7306
6625
|
originalActionId?: string | undefined;
|
7307
6626
|
} | {
|
7308
6627
|
type: "UNASSIGN";
|
@@ -7327,10 +6646,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7327
6646
|
residentialArea?: string | null | undefined;
|
7328
6647
|
street?: string | null | undefined;
|
7329
6648
|
zipCode?: string | null | undefined;
|
7330
|
-
} | {
|
7331
|
-
firstname: string;
|
7332
|
-
surname: string;
|
7333
|
-
middlename?: string | null | undefined;
|
7334
6649
|
} | {
|
7335
6650
|
country: string;
|
7336
6651
|
district: string;
|
@@ -7353,9 +6668,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7353
6668
|
option: string;
|
7354
6669
|
filename: string;
|
7355
6670
|
originalFilename: string;
|
7356
|
-
}[] | [string, string] |
|
6671
|
+
}[] | [string, string] | undefined>;
|
7357
6672
|
assignedTo: null;
|
7358
|
-
creator?: "system" | "user" | undefined;
|
7359
6673
|
createdBySignature?: string | null | undefined;
|
7360
6674
|
createdAtLocation?: string | null | undefined;
|
7361
6675
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7373,10 +6687,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7373
6687
|
residentialArea?: string | null | undefined;
|
7374
6688
|
street?: string | null | undefined;
|
7375
6689
|
zipCode?: string | null | undefined;
|
7376
|
-
} | {
|
7377
|
-
firstname: string;
|
7378
|
-
surname: string;
|
7379
|
-
middlename?: string | null | undefined;
|
7380
6690
|
} | {
|
7381
6691
|
country: string;
|
7382
6692
|
district: string;
|
@@ -7399,7 +6709,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7399
6709
|
option: string;
|
7400
6710
|
filename: string;
|
7401
6711
|
originalFilename: string;
|
7402
|
-
}[] | [string, string] |
|
6712
|
+
}[] | [string, string] | undefined> | undefined;
|
7403
6713
|
originalActionId?: string | undefined;
|
7404
6714
|
} | {
|
7405
6715
|
type: "REGISTER";
|
@@ -7424,10 +6734,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7424
6734
|
residentialArea?: string | null | undefined;
|
7425
6735
|
street?: string | null | undefined;
|
7426
6736
|
zipCode?: string | null | undefined;
|
7427
|
-
} | {
|
7428
|
-
firstname: string;
|
7429
|
-
surname: string;
|
7430
|
-
middlename?: string | null | undefined;
|
7431
6737
|
} | {
|
7432
6738
|
country: string;
|
7433
6739
|
district: string;
|
@@ -7450,8 +6756,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7450
6756
|
option: string;
|
7451
6757
|
filename: string;
|
7452
6758
|
originalFilename: string;
|
7453
|
-
}[] | [string, string] |
|
7454
|
-
creator?: "system" | "user" | undefined;
|
6759
|
+
}[] | [string, string] | undefined>;
|
7455
6760
|
createdBySignature?: string | null | undefined;
|
7456
6761
|
createdAtLocation?: string | null | undefined;
|
7457
6762
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7469,10 +6774,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7469
6774
|
residentialArea?: string | null | undefined;
|
7470
6775
|
street?: string | null | undefined;
|
7471
6776
|
zipCode?: string | null | undefined;
|
7472
|
-
} | {
|
7473
|
-
firstname: string;
|
7474
|
-
surname: string;
|
7475
|
-
middlename?: string | null | undefined;
|
7476
6777
|
} | {
|
7477
6778
|
country: string;
|
7478
6779
|
district: string;
|
@@ -7495,7 +6796,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7495
6796
|
option: string;
|
7496
6797
|
filename: string;
|
7497
6798
|
originalFilename: string;
|
7498
|
-
}[] | [string, string] |
|
6799
|
+
}[] | [string, string] | undefined> | undefined;
|
7499
6800
|
originalActionId?: string | undefined;
|
7500
6801
|
registrationNumber?: string | undefined;
|
7501
6802
|
} | {
|
@@ -7521,10 +6822,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7521
6822
|
residentialArea?: string | null | undefined;
|
7522
6823
|
street?: string | null | undefined;
|
7523
6824
|
zipCode?: string | null | undefined;
|
7524
|
-
} | {
|
7525
|
-
firstname: string;
|
7526
|
-
surname: string;
|
7527
|
-
middlename?: string | null | undefined;
|
7528
6825
|
} | {
|
7529
6826
|
country: string;
|
7530
6827
|
district: string;
|
@@ -7547,8 +6844,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7547
6844
|
option: string;
|
7548
6845
|
filename: string;
|
7549
6846
|
originalFilename: string;
|
7550
|
-
}[] | [string, string] |
|
7551
|
-
creator?: "system" | "user" | undefined;
|
6847
|
+
}[] | [string, string] | undefined>;
|
7552
6848
|
createdBySignature?: string | null | undefined;
|
7553
6849
|
createdAtLocation?: string | null | undefined;
|
7554
6850
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7566,10 +6862,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7566
6862
|
residentialArea?: string | null | undefined;
|
7567
6863
|
street?: string | null | undefined;
|
7568
6864
|
zipCode?: string | null | undefined;
|
7569
|
-
} | {
|
7570
|
-
firstname: string;
|
7571
|
-
surname: string;
|
7572
|
-
middlename?: string | null | undefined;
|
7573
6865
|
} | {
|
7574
6866
|
country: string;
|
7575
6867
|
district: string;
|
@@ -7592,7 +6884,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7592
6884
|
option: string;
|
7593
6885
|
filename: string;
|
7594
6886
|
originalFilename: string;
|
7595
|
-
}[] | [string, string] |
|
6887
|
+
}[] | [string, string] | undefined> | undefined;
|
7596
6888
|
originalActionId?: string | undefined;
|
7597
6889
|
} | {
|
7598
6890
|
type: "VALIDATE";
|
@@ -7617,10 +6909,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7617
6909
|
residentialArea?: string | null | undefined;
|
7618
6910
|
street?: string | null | undefined;
|
7619
6911
|
zipCode?: string | null | undefined;
|
7620
|
-
} | {
|
7621
|
-
firstname: string;
|
7622
|
-
surname: string;
|
7623
|
-
middlename?: string | null | undefined;
|
7624
6912
|
} | {
|
7625
6913
|
country: string;
|
7626
6914
|
district: string;
|
@@ -7643,8 +6931,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7643
6931
|
option: string;
|
7644
6932
|
filename: string;
|
7645
6933
|
originalFilename: string;
|
7646
|
-
}[] | [string, string] |
|
7647
|
-
creator?: "system" | "user" | undefined;
|
6934
|
+
}[] | [string, string] | undefined>;
|
7648
6935
|
createdBySignature?: string | null | undefined;
|
7649
6936
|
createdAtLocation?: string | null | undefined;
|
7650
6937
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7662,10 +6949,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7662
6949
|
residentialArea?: string | null | undefined;
|
7663
6950
|
street?: string | null | undefined;
|
7664
6951
|
zipCode?: string | null | undefined;
|
7665
|
-
} | {
|
7666
|
-
firstname: string;
|
7667
|
-
surname: string;
|
7668
|
-
middlename?: string | null | undefined;
|
7669
6952
|
} | {
|
7670
6953
|
country: string;
|
7671
6954
|
district: string;
|
@@ -7688,7 +6971,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7688
6971
|
option: string;
|
7689
6972
|
filename: string;
|
7690
6973
|
originalFilename: string;
|
7691
|
-
}[] | [string, string] |
|
6974
|
+
}[] | [string, string] | undefined> | undefined;
|
7692
6975
|
originalActionId?: string | undefined;
|
7693
6976
|
} | {
|
7694
6977
|
type: "REJECT";
|
@@ -7717,10 +7000,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7717
7000
|
residentialArea?: string | null | undefined;
|
7718
7001
|
street?: string | null | undefined;
|
7719
7002
|
zipCode?: string | null | undefined;
|
7720
|
-
} | {
|
7721
|
-
firstname: string;
|
7722
|
-
surname: string;
|
7723
|
-
middlename?: string | null | undefined;
|
7724
7003
|
} | {
|
7725
7004
|
country: string;
|
7726
7005
|
district: string;
|
@@ -7743,8 +7022,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7743
7022
|
option: string;
|
7744
7023
|
filename: string;
|
7745
7024
|
originalFilename: string;
|
7746
|
-
}[] | [string, string] |
|
7747
|
-
creator?: "system" | "user" | undefined;
|
7025
|
+
}[] | [string, string] | undefined>;
|
7748
7026
|
createdBySignature?: string | null | undefined;
|
7749
7027
|
createdAtLocation?: string | null | undefined;
|
7750
7028
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7762,10 +7040,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7762
7040
|
residentialArea?: string | null | undefined;
|
7763
7041
|
street?: string | null | undefined;
|
7764
7042
|
zipCode?: string | null | undefined;
|
7765
|
-
} | {
|
7766
|
-
firstname: string;
|
7767
|
-
surname: string;
|
7768
|
-
middlename?: string | null | undefined;
|
7769
7043
|
} | {
|
7770
7044
|
country: string;
|
7771
7045
|
district: string;
|
@@ -7788,7 +7062,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7788
7062
|
option: string;
|
7789
7063
|
filename: string;
|
7790
7064
|
originalFilename: string;
|
7791
|
-
}[] | [string, string] |
|
7065
|
+
}[] | [string, string] | undefined> | undefined;
|
7792
7066
|
originalActionId?: string | undefined;
|
7793
7067
|
} | {
|
7794
7068
|
type: "MARKED_AS_DUPLICATE";
|
@@ -7813,10 +7087,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7813
7087
|
residentialArea?: string | null | undefined;
|
7814
7088
|
street?: string | null | undefined;
|
7815
7089
|
zipCode?: string | null | undefined;
|
7816
|
-
} | {
|
7817
|
-
firstname: string;
|
7818
|
-
surname: string;
|
7819
|
-
middlename?: string | null | undefined;
|
7820
7090
|
} | {
|
7821
7091
|
country: string;
|
7822
7092
|
district: string;
|
@@ -7839,8 +7109,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7839
7109
|
option: string;
|
7840
7110
|
filename: string;
|
7841
7111
|
originalFilename: string;
|
7842
|
-
}[] | [string, string] |
|
7843
|
-
creator?: "system" | "user" | undefined;
|
7112
|
+
}[] | [string, string] | undefined>;
|
7844
7113
|
createdBySignature?: string | null | undefined;
|
7845
7114
|
createdAtLocation?: string | null | undefined;
|
7846
7115
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7858,10 +7127,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7858
7127
|
residentialArea?: string | null | undefined;
|
7859
7128
|
street?: string | null | undefined;
|
7860
7129
|
zipCode?: string | null | undefined;
|
7861
|
-
} | {
|
7862
|
-
firstname: string;
|
7863
|
-
surname: string;
|
7864
|
-
middlename?: string | null | undefined;
|
7865
7130
|
} | {
|
7866
7131
|
country: string;
|
7867
7132
|
district: string;
|
@@ -7884,7 +7149,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7884
7149
|
option: string;
|
7885
7150
|
filename: string;
|
7886
7151
|
originalFilename: string;
|
7887
|
-
}[] | [string, string] |
|
7152
|
+
}[] | [string, string] | undefined> | undefined;
|
7888
7153
|
originalActionId?: string | undefined;
|
7889
7154
|
} | {
|
7890
7155
|
type: "ARCHIVE";
|
@@ -7913,10 +7178,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7913
7178
|
residentialArea?: string | null | undefined;
|
7914
7179
|
street?: string | null | undefined;
|
7915
7180
|
zipCode?: string | null | undefined;
|
7916
|
-
} | {
|
7917
|
-
firstname: string;
|
7918
|
-
surname: string;
|
7919
|
-
middlename?: string | null | undefined;
|
7920
7181
|
} | {
|
7921
7182
|
country: string;
|
7922
7183
|
district: string;
|
@@ -7939,8 +7200,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7939
7200
|
option: string;
|
7940
7201
|
filename: string;
|
7941
7202
|
originalFilename: string;
|
7942
|
-
}[] | [string, string] |
|
7943
|
-
creator?: "system" | "user" | undefined;
|
7203
|
+
}[] | [string, string] | undefined>;
|
7944
7204
|
createdBySignature?: string | null | undefined;
|
7945
7205
|
createdAtLocation?: string | null | undefined;
|
7946
7206
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7958,10 +7218,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7958
7218
|
residentialArea?: string | null | undefined;
|
7959
7219
|
street?: string | null | undefined;
|
7960
7220
|
zipCode?: string | null | undefined;
|
7961
|
-
} | {
|
7962
|
-
firstname: string;
|
7963
|
-
surname: string;
|
7964
|
-
middlename?: string | null | undefined;
|
7965
7221
|
} | {
|
7966
7222
|
country: string;
|
7967
7223
|
district: string;
|
@@ -7984,7 +7240,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7984
7240
|
option: string;
|
7985
7241
|
filename: string;
|
7986
7242
|
originalFilename: string;
|
7987
|
-
}[] | [string, string] |
|
7243
|
+
}[] | [string, string] | undefined> | undefined;
|
7988
7244
|
originalActionId?: string | undefined;
|
7989
7245
|
} | {
|
7990
7246
|
type: "CREATE";
|
@@ -8009,10 +7265,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8009
7265
|
residentialArea?: string | null | undefined;
|
8010
7266
|
street?: string | null | undefined;
|
8011
7267
|
zipCode?: string | null | undefined;
|
8012
|
-
} | {
|
8013
|
-
firstname: string;
|
8014
|
-
surname: string;
|
8015
|
-
middlename?: string | null | undefined;
|
8016
7268
|
} | {
|
8017
7269
|
country: string;
|
8018
7270
|
district: string;
|
@@ -8035,8 +7287,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8035
7287
|
option: string;
|
8036
7288
|
filename: string;
|
8037
7289
|
originalFilename: string;
|
8038
|
-
}[] | [string, string] |
|
8039
|
-
creator?: "system" | "user" | undefined;
|
7290
|
+
}[] | [string, string] | undefined>;
|
8040
7291
|
createdBySignature?: string | null | undefined;
|
8041
7292
|
createdAtLocation?: string | null | undefined;
|
8042
7293
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8054,10 +7305,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8054
7305
|
residentialArea?: string | null | undefined;
|
8055
7306
|
street?: string | null | undefined;
|
8056
7307
|
zipCode?: string | null | undefined;
|
8057
|
-
} | {
|
8058
|
-
firstname: string;
|
8059
|
-
surname: string;
|
8060
|
-
middlename?: string | null | undefined;
|
8061
7308
|
} | {
|
8062
7309
|
country: string;
|
8063
7310
|
district: string;
|
@@ -8080,7 +7327,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8080
7327
|
option: string;
|
8081
7328
|
filename: string;
|
8082
7329
|
originalFilename: string;
|
8083
|
-
}[] | [string, string] |
|
7330
|
+
}[] | [string, string] | undefined> | undefined;
|
8084
7331
|
originalActionId?: string | undefined;
|
8085
7332
|
} | {
|
8086
7333
|
type: "NOTIFY";
|
@@ -8105,10 +7352,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8105
7352
|
residentialArea?: string | null | undefined;
|
8106
7353
|
street?: string | null | undefined;
|
8107
7354
|
zipCode?: string | null | undefined;
|
8108
|
-
} | {
|
8109
|
-
firstname: string;
|
8110
|
-
surname: string;
|
8111
|
-
middlename?: string | null | undefined;
|
8112
7355
|
} | {
|
8113
7356
|
country: string;
|
8114
7357
|
district: string;
|
@@ -8131,8 +7374,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8131
7374
|
option: string;
|
8132
7375
|
filename: string;
|
8133
7376
|
originalFilename: string;
|
8134
|
-
}[] | [string, string] |
|
8135
|
-
creator?: "system" | "user" | undefined;
|
7377
|
+
}[] | [string, string] | undefined>;
|
8136
7378
|
createdBySignature?: string | null | undefined;
|
8137
7379
|
createdAtLocation?: string | null | undefined;
|
8138
7380
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8150,10 +7392,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8150
7392
|
residentialArea?: string | null | undefined;
|
8151
7393
|
street?: string | null | undefined;
|
8152
7394
|
zipCode?: string | null | undefined;
|
8153
|
-
} | {
|
8154
|
-
firstname: string;
|
8155
|
-
surname: string;
|
8156
|
-
middlename?: string | null | undefined;
|
8157
7395
|
} | {
|
8158
7396
|
country: string;
|
8159
7397
|
district: string;
|
@@ -8176,7 +7414,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8176
7414
|
option: string;
|
8177
7415
|
filename: string;
|
8178
7416
|
originalFilename: string;
|
8179
|
-
}[] | [string, string] |
|
7417
|
+
}[] | [string, string] | undefined> | undefined;
|
8180
7418
|
originalActionId?: string | undefined;
|
8181
7419
|
} | {
|
8182
7420
|
type: "PRINT_CERTIFICATE";
|
@@ -8201,10 +7439,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8201
7439
|
residentialArea?: string | null | undefined;
|
8202
7440
|
street?: string | null | undefined;
|
8203
7441
|
zipCode?: string | null | undefined;
|
8204
|
-
} | {
|
8205
|
-
firstname: string;
|
8206
|
-
surname: string;
|
8207
|
-
middlename?: string | null | undefined;
|
8208
7442
|
} | {
|
8209
7443
|
country: string;
|
8210
7444
|
district: string;
|
@@ -8227,8 +7461,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8227
7461
|
option: string;
|
8228
7462
|
filename: string;
|
8229
7463
|
originalFilename: string;
|
8230
|
-
}[] | [string, string] |
|
8231
|
-
creator?: "system" | "user" | undefined;
|
7464
|
+
}[] | [string, string] | undefined>;
|
8232
7465
|
createdBySignature?: string | null | undefined;
|
8233
7466
|
createdAtLocation?: string | null | undefined;
|
8234
7467
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8246,10 +7479,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8246
7479
|
residentialArea?: string | null | undefined;
|
8247
7480
|
street?: string | null | undefined;
|
8248
7481
|
zipCode?: string | null | undefined;
|
8249
|
-
} | {
|
8250
|
-
firstname: string;
|
8251
|
-
surname: string;
|
8252
|
-
middlename?: string | null | undefined;
|
8253
7482
|
} | {
|
8254
7483
|
country: string;
|
8255
7484
|
district: string;
|
@@ -8272,7 +7501,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8272
7501
|
option: string;
|
8273
7502
|
filename: string;
|
8274
7503
|
originalFilename: string;
|
8275
|
-
}[] | [string, string] |
|
7504
|
+
}[] | [string, string] | undefined> | undefined;
|
8276
7505
|
originalActionId?: string | undefined;
|
8277
7506
|
} | {
|
8278
7507
|
type: "REQUEST_CORRECTION";
|
@@ -8297,10 +7526,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8297
7526
|
residentialArea?: string | null | undefined;
|
8298
7527
|
street?: string | null | undefined;
|
8299
7528
|
zipCode?: string | null | undefined;
|
8300
|
-
} | {
|
8301
|
-
firstname: string;
|
8302
|
-
surname: string;
|
8303
|
-
middlename?: string | null | undefined;
|
8304
7529
|
} | {
|
8305
7530
|
country: string;
|
8306
7531
|
district: string;
|
@@ -8323,8 +7548,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8323
7548
|
option: string;
|
8324
7549
|
filename: string;
|
8325
7550
|
originalFilename: string;
|
8326
|
-
}[] | [string, string] |
|
8327
|
-
creator?: "system" | "user" | undefined;
|
7551
|
+
}[] | [string, string] | undefined>;
|
8328
7552
|
createdBySignature?: string | null | undefined;
|
8329
7553
|
createdAtLocation?: string | null | undefined;
|
8330
7554
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8342,10 +7566,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8342
7566
|
residentialArea?: string | null | undefined;
|
8343
7567
|
street?: string | null | undefined;
|
8344
7568
|
zipCode?: string | null | undefined;
|
8345
|
-
} | {
|
8346
|
-
firstname: string;
|
8347
|
-
surname: string;
|
8348
|
-
middlename?: string | null | undefined;
|
8349
7569
|
} | {
|
8350
7570
|
country: string;
|
8351
7571
|
district: string;
|
@@ -8368,7 +7588,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8368
7588
|
option: string;
|
8369
7589
|
filename: string;
|
8370
7590
|
originalFilename: string;
|
8371
|
-
}[] | [string, string] |
|
7591
|
+
}[] | [string, string] | undefined> | undefined;
|
8372
7592
|
originalActionId?: string | undefined;
|
8373
7593
|
} | {
|
8374
7594
|
type: "APPROVE_CORRECTION";
|
@@ -8393,10 +7613,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8393
7613
|
residentialArea?: string | null | undefined;
|
8394
7614
|
street?: string | null | undefined;
|
8395
7615
|
zipCode?: string | null | undefined;
|
8396
|
-
} | {
|
8397
|
-
firstname: string;
|
8398
|
-
surname: string;
|
8399
|
-
middlename?: string | null | undefined;
|
8400
7616
|
} | {
|
8401
7617
|
country: string;
|
8402
7618
|
district: string;
|
@@ -8419,9 +7635,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8419
7635
|
option: string;
|
8420
7636
|
filename: string;
|
8421
7637
|
originalFilename: string;
|
8422
|
-
}[] | [string, string] |
|
7638
|
+
}[] | [string, string] | undefined>;
|
8423
7639
|
requestId: string;
|
8424
|
-
creator?: "system" | "user" | undefined;
|
8425
7640
|
createdBySignature?: string | null | undefined;
|
8426
7641
|
createdAtLocation?: string | null | undefined;
|
8427
7642
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8439,10 +7654,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8439
7654
|
residentialArea?: string | null | undefined;
|
8440
7655
|
street?: string | null | undefined;
|
8441
7656
|
zipCode?: string | null | undefined;
|
8442
|
-
} | {
|
8443
|
-
firstname: string;
|
8444
|
-
surname: string;
|
8445
|
-
middlename?: string | null | undefined;
|
8446
7657
|
} | {
|
8447
7658
|
country: string;
|
8448
7659
|
district: string;
|
@@ -8465,7 +7676,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8465
7676
|
option: string;
|
8466
7677
|
filename: string;
|
8467
7678
|
originalFilename: string;
|
8468
|
-
}[] | [string, string] |
|
7679
|
+
}[] | [string, string] | undefined> | undefined;
|
8469
7680
|
originalActionId?: string | undefined;
|
8470
7681
|
} | {
|
8471
7682
|
type: "REJECT_CORRECTION";
|
@@ -8490,10 +7701,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8490
7701
|
residentialArea?: string | null | undefined;
|
8491
7702
|
street?: string | null | undefined;
|
8492
7703
|
zipCode?: string | null | undefined;
|
8493
|
-
} | {
|
8494
|
-
firstname: string;
|
8495
|
-
surname: string;
|
8496
|
-
middlename?: string | null | undefined;
|
8497
7704
|
} | {
|
8498
7705
|
country: string;
|
8499
7706
|
district: string;
|
@@ -8516,9 +7723,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8516
7723
|
option: string;
|
8517
7724
|
filename: string;
|
8518
7725
|
originalFilename: string;
|
8519
|
-
}[] | [string, string] |
|
7726
|
+
}[] | [string, string] | undefined>;
|
8520
7727
|
requestId: string;
|
8521
|
-
creator?: "system" | "user" | undefined;
|
8522
7728
|
createdBySignature?: string | null | undefined;
|
8523
7729
|
createdAtLocation?: string | null | undefined;
|
8524
7730
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8536,10 +7742,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8536
7742
|
residentialArea?: string | null | undefined;
|
8537
7743
|
street?: string | null | undefined;
|
8538
7744
|
zipCode?: string | null | undefined;
|
8539
|
-
} | {
|
8540
|
-
firstname: string;
|
8541
|
-
surname: string;
|
8542
|
-
middlename?: string | null | undefined;
|
8543
7745
|
} | {
|
8544
7746
|
country: string;
|
8545
7747
|
district: string;
|
@@ -8562,7 +7764,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8562
7764
|
option: string;
|
8563
7765
|
filename: string;
|
8564
7766
|
originalFilename: string;
|
8565
|
-
}[] | [string, string] |
|
7767
|
+
}[] | [string, string] | undefined> | undefined;
|
8566
7768
|
originalActionId?: string | undefined;
|
8567
7769
|
} | {
|
8568
7770
|
type: "READ";
|
@@ -8587,10 +7789,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8587
7789
|
residentialArea?: string | null | undefined;
|
8588
7790
|
street?: string | null | undefined;
|
8589
7791
|
zipCode?: string | null | undefined;
|
8590
|
-
} | {
|
8591
|
-
firstname: string;
|
8592
|
-
surname: string;
|
8593
|
-
middlename?: string | null | undefined;
|
8594
7792
|
} | {
|
8595
7793
|
country: string;
|
8596
7794
|
district: string;
|
@@ -8613,8 +7811,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8613
7811
|
option: string;
|
8614
7812
|
filename: string;
|
8615
7813
|
originalFilename: string;
|
8616
|
-
}[] | [string, string] |
|
8617
|
-
creator?: "system" | "user" | undefined;
|
7814
|
+
}[] | [string, string] | undefined>;
|
8618
7815
|
createdBySignature?: string | null | undefined;
|
8619
7816
|
createdAtLocation?: string | null | undefined;
|
8620
7817
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8632,10 +7829,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8632
7829
|
residentialArea?: string | null | undefined;
|
8633
7830
|
street?: string | null | undefined;
|
8634
7831
|
zipCode?: string | null | undefined;
|
8635
|
-
} | {
|
8636
|
-
firstname: string;
|
8637
|
-
surname: string;
|
8638
|
-
middlename?: string | null | undefined;
|
8639
7832
|
} | {
|
8640
7833
|
country: string;
|
8641
7834
|
district: string;
|
@@ -8658,7 +7851,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8658
7851
|
option: string;
|
8659
7852
|
filename: string;
|
8660
7853
|
originalFilename: string;
|
8661
|
-
}[] | [string, string] |
|
7854
|
+
}[] | [string, string] | undefined> | undefined;
|
8662
7855
|
originalActionId?: string | undefined;
|
8663
7856
|
} | {
|
8664
7857
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -8668,7 +7861,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8668
7861
|
createdAt: string;
|
8669
7862
|
createdBy: string;
|
8670
7863
|
createdByRole: string;
|
8671
|
-
creator?: "system" | "user" | undefined;
|
8672
7864
|
createdBySignature?: string | null | undefined;
|
8673
7865
|
createdAtLocation?: string | null | undefined;
|
8674
7866
|
originalActionId?: string | undefined;
|
@@ -8702,10 +7894,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8702
7894
|
residentialArea?: string | null | undefined;
|
8703
7895
|
street?: string | null | undefined;
|
8704
7896
|
zipCode?: string | null | undefined;
|
8705
|
-
} | {
|
8706
|
-
firstname: string;
|
8707
|
-
surname: string;
|
8708
|
-
middlename?: string | null | undefined;
|
8709
7897
|
} | {
|
8710
7898
|
country: string;
|
8711
7899
|
district: string;
|
@@ -8728,9 +7916,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8728
7916
|
option: string;
|
8729
7917
|
filename: string;
|
8730
7918
|
originalFilename: string;
|
8731
|
-
}[] | [string, string] |
|
7919
|
+
}[] | [string, string] | undefined>;
|
8732
7920
|
assignedTo: string;
|
8733
|
-
creator?: "system" | "user" | undefined;
|
8734
7921
|
createdBySignature?: string | null | undefined;
|
8735
7922
|
createdAtLocation?: string | null | undefined;
|
8736
7923
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8748,10 +7935,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8748
7935
|
residentialArea?: string | null | undefined;
|
8749
7936
|
street?: string | null | undefined;
|
8750
7937
|
zipCode?: string | null | undefined;
|
8751
|
-
} | {
|
8752
|
-
firstname: string;
|
8753
|
-
surname: string;
|
8754
|
-
middlename?: string | null | undefined;
|
8755
7938
|
} | {
|
8756
7939
|
country: string;
|
8757
7940
|
district: string;
|
@@ -8774,7 +7957,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8774
7957
|
option: string;
|
8775
7958
|
filename: string;
|
8776
7959
|
originalFilename: string;
|
8777
|
-
}[] | [string, string] |
|
7960
|
+
}[] | [string, string] | undefined> | undefined;
|
8778
7961
|
originalActionId?: string | undefined;
|
8779
7962
|
} | {
|
8780
7963
|
type: "UNASSIGN";
|
@@ -8799,10 +7982,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8799
7982
|
residentialArea?: string | null | undefined;
|
8800
7983
|
street?: string | null | undefined;
|
8801
7984
|
zipCode?: string | null | undefined;
|
8802
|
-
} | {
|
8803
|
-
firstname: string;
|
8804
|
-
surname: string;
|
8805
|
-
middlename?: string | null | undefined;
|
8806
7985
|
} | {
|
8807
7986
|
country: string;
|
8808
7987
|
district: string;
|
@@ -8825,9 +8004,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8825
8004
|
option: string;
|
8826
8005
|
filename: string;
|
8827
8006
|
originalFilename: string;
|
8828
|
-
}[] | [string, string] |
|
8007
|
+
}[] | [string, string] | undefined>;
|
8829
8008
|
assignedTo: null;
|
8830
|
-
creator?: "system" | "user" | undefined;
|
8831
8009
|
createdBySignature?: string | null | undefined;
|
8832
8010
|
createdAtLocation?: string | null | undefined;
|
8833
8011
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8845,10 +8023,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8845
8023
|
residentialArea?: string | null | undefined;
|
8846
8024
|
street?: string | null | undefined;
|
8847
8025
|
zipCode?: string | null | undefined;
|
8848
|
-
} | {
|
8849
|
-
firstname: string;
|
8850
|
-
surname: string;
|
8851
|
-
middlename?: string | null | undefined;
|
8852
8026
|
} | {
|
8853
8027
|
country: string;
|
8854
8028
|
district: string;
|
@@ -8871,7 +8045,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8871
8045
|
option: string;
|
8872
8046
|
filename: string;
|
8873
8047
|
originalFilename: string;
|
8874
|
-
}[] | [string, string] |
|
8048
|
+
}[] | [string, string] | undefined> | undefined;
|
8875
8049
|
originalActionId?: string | undefined;
|
8876
8050
|
} | {
|
8877
8051
|
type: "REGISTER";
|
@@ -8896,10 +8070,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8896
8070
|
residentialArea?: string | null | undefined;
|
8897
8071
|
street?: string | null | undefined;
|
8898
8072
|
zipCode?: string | null | undefined;
|
8899
|
-
} | {
|
8900
|
-
firstname: string;
|
8901
|
-
surname: string;
|
8902
|
-
middlename?: string | null | undefined;
|
8903
8073
|
} | {
|
8904
8074
|
country: string;
|
8905
8075
|
district: string;
|
@@ -8922,8 +8092,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8922
8092
|
option: string;
|
8923
8093
|
filename: string;
|
8924
8094
|
originalFilename: string;
|
8925
|
-
}[] | [string, string] |
|
8926
|
-
creator?: "system" | "user" | undefined;
|
8095
|
+
}[] | [string, string] | undefined>;
|
8927
8096
|
createdBySignature?: string | null | undefined;
|
8928
8097
|
createdAtLocation?: string | null | undefined;
|
8929
8098
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8941,10 +8110,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8941
8110
|
residentialArea?: string | null | undefined;
|
8942
8111
|
street?: string | null | undefined;
|
8943
8112
|
zipCode?: string | null | undefined;
|
8944
|
-
} | {
|
8945
|
-
firstname: string;
|
8946
|
-
surname: string;
|
8947
|
-
middlename?: string | null | undefined;
|
8948
8113
|
} | {
|
8949
8114
|
country: string;
|
8950
8115
|
district: string;
|
@@ -8967,7 +8132,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8967
8132
|
option: string;
|
8968
8133
|
filename: string;
|
8969
8134
|
originalFilename: string;
|
8970
|
-
}[] | [string, string] |
|
8135
|
+
}[] | [string, string] | undefined> | undefined;
|
8971
8136
|
originalActionId?: string | undefined;
|
8972
8137
|
registrationNumber?: string | undefined;
|
8973
8138
|
} | {
|
@@ -8993,10 +8158,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8993
8158
|
residentialArea?: string | null | undefined;
|
8994
8159
|
street?: string | null | undefined;
|
8995
8160
|
zipCode?: string | null | undefined;
|
8996
|
-
} | {
|
8997
|
-
firstname: string;
|
8998
|
-
surname: string;
|
8999
|
-
middlename?: string | null | undefined;
|
9000
8161
|
} | {
|
9001
8162
|
country: string;
|
9002
8163
|
district: string;
|
@@ -9019,8 +8180,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9019
8180
|
option: string;
|
9020
8181
|
filename: string;
|
9021
8182
|
originalFilename: string;
|
9022
|
-
}[] | [string, string] |
|
9023
|
-
creator?: "system" | "user" | undefined;
|
8183
|
+
}[] | [string, string] | undefined>;
|
9024
8184
|
createdBySignature?: string | null | undefined;
|
9025
8185
|
createdAtLocation?: string | null | undefined;
|
9026
8186
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9038,10 +8198,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9038
8198
|
residentialArea?: string | null | undefined;
|
9039
8199
|
street?: string | null | undefined;
|
9040
8200
|
zipCode?: string | null | undefined;
|
9041
|
-
} | {
|
9042
|
-
firstname: string;
|
9043
|
-
surname: string;
|
9044
|
-
middlename?: string | null | undefined;
|
9045
8201
|
} | {
|
9046
8202
|
country: string;
|
9047
8203
|
district: string;
|
@@ -9064,7 +8220,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9064
8220
|
option: string;
|
9065
8221
|
filename: string;
|
9066
8222
|
originalFilename: string;
|
9067
|
-
}[] | [string, string] |
|
8223
|
+
}[] | [string, string] | undefined> | undefined;
|
9068
8224
|
originalActionId?: string | undefined;
|
9069
8225
|
} | {
|
9070
8226
|
type: "VALIDATE";
|
@@ -9089,10 +8245,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9089
8245
|
residentialArea?: string | null | undefined;
|
9090
8246
|
street?: string | null | undefined;
|
9091
8247
|
zipCode?: string | null | undefined;
|
9092
|
-
} | {
|
9093
|
-
firstname: string;
|
9094
|
-
surname: string;
|
9095
|
-
middlename?: string | null | undefined;
|
9096
8248
|
} | {
|
9097
8249
|
country: string;
|
9098
8250
|
district: string;
|
@@ -9115,8 +8267,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9115
8267
|
option: string;
|
9116
8268
|
filename: string;
|
9117
8269
|
originalFilename: string;
|
9118
|
-
}[] | [string, string] |
|
9119
|
-
creator?: "system" | "user" | undefined;
|
8270
|
+
}[] | [string, string] | undefined>;
|
9120
8271
|
createdBySignature?: string | null | undefined;
|
9121
8272
|
createdAtLocation?: string | null | undefined;
|
9122
8273
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9134,10 +8285,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9134
8285
|
residentialArea?: string | null | undefined;
|
9135
8286
|
street?: string | null | undefined;
|
9136
8287
|
zipCode?: string | null | undefined;
|
9137
|
-
} | {
|
9138
|
-
firstname: string;
|
9139
|
-
surname: string;
|
9140
|
-
middlename?: string | null | undefined;
|
9141
8288
|
} | {
|
9142
8289
|
country: string;
|
9143
8290
|
district: string;
|
@@ -9160,7 +8307,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9160
8307
|
option: string;
|
9161
8308
|
filename: string;
|
9162
8309
|
originalFilename: string;
|
9163
|
-
}[] | [string, string] |
|
8310
|
+
}[] | [string, string] | undefined> | undefined;
|
9164
8311
|
originalActionId?: string | undefined;
|
9165
8312
|
} | {
|
9166
8313
|
type: "REJECT";
|
@@ -9189,10 +8336,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9189
8336
|
residentialArea?: string | null | undefined;
|
9190
8337
|
street?: string | null | undefined;
|
9191
8338
|
zipCode?: string | null | undefined;
|
9192
|
-
} | {
|
9193
|
-
firstname: string;
|
9194
|
-
surname: string;
|
9195
|
-
middlename?: string | null | undefined;
|
9196
8339
|
} | {
|
9197
8340
|
country: string;
|
9198
8341
|
district: string;
|
@@ -9215,8 +8358,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9215
8358
|
option: string;
|
9216
8359
|
filename: string;
|
9217
8360
|
originalFilename: string;
|
9218
|
-
}[] | [string, string] |
|
9219
|
-
creator?: "system" | "user" | undefined;
|
8361
|
+
}[] | [string, string] | undefined>;
|
9220
8362
|
createdBySignature?: string | null | undefined;
|
9221
8363
|
createdAtLocation?: string | null | undefined;
|
9222
8364
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9234,10 +8376,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9234
8376
|
residentialArea?: string | null | undefined;
|
9235
8377
|
street?: string | null | undefined;
|
9236
8378
|
zipCode?: string | null | undefined;
|
9237
|
-
} | {
|
9238
|
-
firstname: string;
|
9239
|
-
surname: string;
|
9240
|
-
middlename?: string | null | undefined;
|
9241
8379
|
} | {
|
9242
8380
|
country: string;
|
9243
8381
|
district: string;
|
@@ -9260,7 +8398,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9260
8398
|
option: string;
|
9261
8399
|
filename: string;
|
9262
8400
|
originalFilename: string;
|
9263
|
-
}[] | [string, string] |
|
8401
|
+
}[] | [string, string] | undefined> | undefined;
|
9264
8402
|
originalActionId?: string | undefined;
|
9265
8403
|
} | {
|
9266
8404
|
type: "MARKED_AS_DUPLICATE";
|
@@ -9285,10 +8423,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9285
8423
|
residentialArea?: string | null | undefined;
|
9286
8424
|
street?: string | null | undefined;
|
9287
8425
|
zipCode?: string | null | undefined;
|
9288
|
-
} | {
|
9289
|
-
firstname: string;
|
9290
|
-
surname: string;
|
9291
|
-
middlename?: string | null | undefined;
|
9292
8426
|
} | {
|
9293
8427
|
country: string;
|
9294
8428
|
district: string;
|
@@ -9311,8 +8445,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9311
8445
|
option: string;
|
9312
8446
|
filename: string;
|
9313
8447
|
originalFilename: string;
|
9314
|
-
}[] | [string, string] |
|
9315
|
-
creator?: "system" | "user" | undefined;
|
8448
|
+
}[] | [string, string] | undefined>;
|
9316
8449
|
createdBySignature?: string | null | undefined;
|
9317
8450
|
createdAtLocation?: string | null | undefined;
|
9318
8451
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9330,10 +8463,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9330
8463
|
residentialArea?: string | null | undefined;
|
9331
8464
|
street?: string | null | undefined;
|
9332
8465
|
zipCode?: string | null | undefined;
|
9333
|
-
} | {
|
9334
|
-
firstname: string;
|
9335
|
-
surname: string;
|
9336
|
-
middlename?: string | null | undefined;
|
9337
8466
|
} | {
|
9338
8467
|
country: string;
|
9339
8468
|
district: string;
|
@@ -9356,7 +8485,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9356
8485
|
option: string;
|
9357
8486
|
filename: string;
|
9358
8487
|
originalFilename: string;
|
9359
|
-
}[] | [string, string] |
|
8488
|
+
}[] | [string, string] | undefined> | undefined;
|
9360
8489
|
originalActionId?: string | undefined;
|
9361
8490
|
} | {
|
9362
8491
|
type: "ARCHIVE";
|
@@ -9385,10 +8514,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9385
8514
|
residentialArea?: string | null | undefined;
|
9386
8515
|
street?: string | null | undefined;
|
9387
8516
|
zipCode?: string | null | undefined;
|
9388
|
-
} | {
|
9389
|
-
firstname: string;
|
9390
|
-
surname: string;
|
9391
|
-
middlename?: string | null | undefined;
|
9392
8517
|
} | {
|
9393
8518
|
country: string;
|
9394
8519
|
district: string;
|
@@ -9411,8 +8536,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9411
8536
|
option: string;
|
9412
8537
|
filename: string;
|
9413
8538
|
originalFilename: string;
|
9414
|
-
}[] | [string, string] |
|
9415
|
-
creator?: "system" | "user" | undefined;
|
8539
|
+
}[] | [string, string] | undefined>;
|
9416
8540
|
createdBySignature?: string | null | undefined;
|
9417
8541
|
createdAtLocation?: string | null | undefined;
|
9418
8542
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9430,10 +8554,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9430
8554
|
residentialArea?: string | null | undefined;
|
9431
8555
|
street?: string | null | undefined;
|
9432
8556
|
zipCode?: string | null | undefined;
|
9433
|
-
} | {
|
9434
|
-
firstname: string;
|
9435
|
-
surname: string;
|
9436
|
-
middlename?: string | null | undefined;
|
9437
8557
|
} | {
|
9438
8558
|
country: string;
|
9439
8559
|
district: string;
|
@@ -9456,7 +8576,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9456
8576
|
option: string;
|
9457
8577
|
filename: string;
|
9458
8578
|
originalFilename: string;
|
9459
|
-
}[] | [string, string] |
|
8579
|
+
}[] | [string, string] | undefined> | undefined;
|
9460
8580
|
originalActionId?: string | undefined;
|
9461
8581
|
} | {
|
9462
8582
|
type: "CREATE";
|
@@ -9481,10 +8601,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9481
8601
|
residentialArea?: string | null | undefined;
|
9482
8602
|
street?: string | null | undefined;
|
9483
8603
|
zipCode?: string | null | undefined;
|
9484
|
-
} | {
|
9485
|
-
firstname: string;
|
9486
|
-
surname: string;
|
9487
|
-
middlename?: string | null | undefined;
|
9488
8604
|
} | {
|
9489
8605
|
country: string;
|
9490
8606
|
district: string;
|
@@ -9507,8 +8623,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9507
8623
|
option: string;
|
9508
8624
|
filename: string;
|
9509
8625
|
originalFilename: string;
|
9510
|
-
}[] | [string, string] |
|
9511
|
-
creator?: "system" | "user" | undefined;
|
8626
|
+
}[] | [string, string] | undefined>;
|
9512
8627
|
createdBySignature?: string | null | undefined;
|
9513
8628
|
createdAtLocation?: string | null | undefined;
|
9514
8629
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9526,10 +8641,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9526
8641
|
residentialArea?: string | null | undefined;
|
9527
8642
|
street?: string | null | undefined;
|
9528
8643
|
zipCode?: string | null | undefined;
|
9529
|
-
} | {
|
9530
|
-
firstname: string;
|
9531
|
-
surname: string;
|
9532
|
-
middlename?: string | null | undefined;
|
9533
8644
|
} | {
|
9534
8645
|
country: string;
|
9535
8646
|
district: string;
|
@@ -9552,7 +8663,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9552
8663
|
option: string;
|
9553
8664
|
filename: string;
|
9554
8665
|
originalFilename: string;
|
9555
|
-
}[] | [string, string] |
|
8666
|
+
}[] | [string, string] | undefined> | undefined;
|
9556
8667
|
originalActionId?: string | undefined;
|
9557
8668
|
} | {
|
9558
8669
|
type: "NOTIFY";
|
@@ -9577,10 +8688,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9577
8688
|
residentialArea?: string | null | undefined;
|
9578
8689
|
street?: string | null | undefined;
|
9579
8690
|
zipCode?: string | null | undefined;
|
9580
|
-
} | {
|
9581
|
-
firstname: string;
|
9582
|
-
surname: string;
|
9583
|
-
middlename?: string | null | undefined;
|
9584
8691
|
} | {
|
9585
8692
|
country: string;
|
9586
8693
|
district: string;
|
@@ -9603,8 +8710,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9603
8710
|
option: string;
|
9604
8711
|
filename: string;
|
9605
8712
|
originalFilename: string;
|
9606
|
-
}[] | [string, string] |
|
9607
|
-
creator?: "system" | "user" | undefined;
|
8713
|
+
}[] | [string, string] | undefined>;
|
9608
8714
|
createdBySignature?: string | null | undefined;
|
9609
8715
|
createdAtLocation?: string | null | undefined;
|
9610
8716
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9622,10 +8728,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9622
8728
|
residentialArea?: string | null | undefined;
|
9623
8729
|
street?: string | null | undefined;
|
9624
8730
|
zipCode?: string | null | undefined;
|
9625
|
-
} | {
|
9626
|
-
firstname: string;
|
9627
|
-
surname: string;
|
9628
|
-
middlename?: string | null | undefined;
|
9629
8731
|
} | {
|
9630
8732
|
country: string;
|
9631
8733
|
district: string;
|
@@ -9648,7 +8750,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9648
8750
|
option: string;
|
9649
8751
|
filename: string;
|
9650
8752
|
originalFilename: string;
|
9651
|
-
}[] | [string, string] |
|
8753
|
+
}[] | [string, string] | undefined> | undefined;
|
9652
8754
|
originalActionId?: string | undefined;
|
9653
8755
|
} | {
|
9654
8756
|
type: "PRINT_CERTIFICATE";
|
@@ -9673,10 +8775,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9673
8775
|
residentialArea?: string | null | undefined;
|
9674
8776
|
street?: string | null | undefined;
|
9675
8777
|
zipCode?: string | null | undefined;
|
9676
|
-
} | {
|
9677
|
-
firstname: string;
|
9678
|
-
surname: string;
|
9679
|
-
middlename?: string | null | undefined;
|
9680
8778
|
} | {
|
9681
8779
|
country: string;
|
9682
8780
|
district: string;
|
@@ -9699,8 +8797,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9699
8797
|
option: string;
|
9700
8798
|
filename: string;
|
9701
8799
|
originalFilename: string;
|
9702
|
-
}[] | [string, string] |
|
9703
|
-
creator?: "system" | "user" | undefined;
|
8800
|
+
}[] | [string, string] | undefined>;
|
9704
8801
|
createdBySignature?: string | null | undefined;
|
9705
8802
|
createdAtLocation?: string | null | undefined;
|
9706
8803
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9718,10 +8815,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9718
8815
|
residentialArea?: string | null | undefined;
|
9719
8816
|
street?: string | null | undefined;
|
9720
8817
|
zipCode?: string | null | undefined;
|
9721
|
-
} | {
|
9722
|
-
firstname: string;
|
9723
|
-
surname: string;
|
9724
|
-
middlename?: string | null | undefined;
|
9725
8818
|
} | {
|
9726
8819
|
country: string;
|
9727
8820
|
district: string;
|
@@ -9744,7 +8837,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9744
8837
|
option: string;
|
9745
8838
|
filename: string;
|
9746
8839
|
originalFilename: string;
|
9747
|
-
}[] | [string, string] |
|
8840
|
+
}[] | [string, string] | undefined> | undefined;
|
9748
8841
|
originalActionId?: string | undefined;
|
9749
8842
|
} | {
|
9750
8843
|
type: "REQUEST_CORRECTION";
|
@@ -9769,10 +8862,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9769
8862
|
residentialArea?: string | null | undefined;
|
9770
8863
|
street?: string | null | undefined;
|
9771
8864
|
zipCode?: string | null | undefined;
|
9772
|
-
} | {
|
9773
|
-
firstname: string;
|
9774
|
-
surname: string;
|
9775
|
-
middlename?: string | null | undefined;
|
9776
8865
|
} | {
|
9777
8866
|
country: string;
|
9778
8867
|
district: string;
|
@@ -9795,8 +8884,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9795
8884
|
option: string;
|
9796
8885
|
filename: string;
|
9797
8886
|
originalFilename: string;
|
9798
|
-
}[] | [string, string] |
|
9799
|
-
creator?: "system" | "user" | undefined;
|
8887
|
+
}[] | [string, string] | undefined>;
|
9800
8888
|
createdBySignature?: string | null | undefined;
|
9801
8889
|
createdAtLocation?: string | null | undefined;
|
9802
8890
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9814,10 +8902,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9814
8902
|
residentialArea?: string | null | undefined;
|
9815
8903
|
street?: string | null | undefined;
|
9816
8904
|
zipCode?: string | null | undefined;
|
9817
|
-
} | {
|
9818
|
-
firstname: string;
|
9819
|
-
surname: string;
|
9820
|
-
middlename?: string | null | undefined;
|
9821
8905
|
} | {
|
9822
8906
|
country: string;
|
9823
8907
|
district: string;
|
@@ -9840,7 +8924,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9840
8924
|
option: string;
|
9841
8925
|
filename: string;
|
9842
8926
|
originalFilename: string;
|
9843
|
-
}[] | [string, string] |
|
8927
|
+
}[] | [string, string] | undefined> | undefined;
|
9844
8928
|
originalActionId?: string | undefined;
|
9845
8929
|
} | {
|
9846
8930
|
type: "APPROVE_CORRECTION";
|
@@ -9865,10 +8949,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9865
8949
|
residentialArea?: string | null | undefined;
|
9866
8950
|
street?: string | null | undefined;
|
9867
8951
|
zipCode?: string | null | undefined;
|
9868
|
-
} | {
|
9869
|
-
firstname: string;
|
9870
|
-
surname: string;
|
9871
|
-
middlename?: string | null | undefined;
|
9872
8952
|
} | {
|
9873
8953
|
country: string;
|
9874
8954
|
district: string;
|
@@ -9891,9 +8971,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9891
8971
|
option: string;
|
9892
8972
|
filename: string;
|
9893
8973
|
originalFilename: string;
|
9894
|
-
}[] | [string, string] |
|
8974
|
+
}[] | [string, string] | undefined>;
|
9895
8975
|
requestId: string;
|
9896
|
-
creator?: "system" | "user" | undefined;
|
9897
8976
|
createdBySignature?: string | null | undefined;
|
9898
8977
|
createdAtLocation?: string | null | undefined;
|
9899
8978
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9911,10 +8990,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9911
8990
|
residentialArea?: string | null | undefined;
|
9912
8991
|
street?: string | null | undefined;
|
9913
8992
|
zipCode?: string | null | undefined;
|
9914
|
-
} | {
|
9915
|
-
firstname: string;
|
9916
|
-
surname: string;
|
9917
|
-
middlename?: string | null | undefined;
|
9918
8993
|
} | {
|
9919
8994
|
country: string;
|
9920
8995
|
district: string;
|
@@ -9937,7 +9012,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9937
9012
|
option: string;
|
9938
9013
|
filename: string;
|
9939
9014
|
originalFilename: string;
|
9940
|
-
}[] | [string, string] |
|
9015
|
+
}[] | [string, string] | undefined> | undefined;
|
9941
9016
|
originalActionId?: string | undefined;
|
9942
9017
|
} | {
|
9943
9018
|
type: "REJECT_CORRECTION";
|
@@ -9962,10 +9037,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
9962
9037
|
residentialArea?: string | null | undefined;
|
9963
9038
|
street?: string | null | undefined;
|
9964
9039
|
zipCode?: string | null | undefined;
|
9965
|
-
} | {
|
9966
|
-
firstname: string;
|
9967
|
-
surname: string;
|
9968
|
-
middlename?: string | null | undefined;
|
9969
9040
|
} | {
|
9970
9041
|
country: string;
|
9971
9042
|
district: string;
|
@@ -9988,9 +9059,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9988
9059
|
option: string;
|
9989
9060
|
filename: string;
|
9990
9061
|
originalFilename: string;
|
9991
|
-
}[] | [string, string] |
|
9062
|
+
}[] | [string, string] | undefined>;
|
9992
9063
|
requestId: string;
|
9993
|
-
creator?: "system" | "user" | undefined;
|
9994
9064
|
createdBySignature?: string | null | undefined;
|
9995
9065
|
createdAtLocation?: string | null | undefined;
|
9996
9066
|
annotation?: Record<string, string | number | boolean | {
|
@@ -10008,10 +9078,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
10008
9078
|
residentialArea?: string | null | undefined;
|
10009
9079
|
street?: string | null | undefined;
|
10010
9080
|
zipCode?: string | null | undefined;
|
10011
|
-
} | {
|
10012
|
-
firstname: string;
|
10013
|
-
surname: string;
|
10014
|
-
middlename?: string | null | undefined;
|
10015
9081
|
} | {
|
10016
9082
|
country: string;
|
10017
9083
|
district: string;
|
@@ -10034,7 +9100,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
10034
9100
|
option: string;
|
10035
9101
|
filename: string;
|
10036
9102
|
originalFilename: string;
|
10037
|
-
}[] | [string, string] |
|
9103
|
+
}[] | [string, string] | undefined> | undefined;
|
10038
9104
|
originalActionId?: string | undefined;
|
10039
9105
|
} | {
|
10040
9106
|
type: "READ";
|
@@ -10059,10 +9125,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
10059
9125
|
residentialArea?: string | null | undefined;
|
10060
9126
|
street?: string | null | undefined;
|
10061
9127
|
zipCode?: string | null | undefined;
|
10062
|
-
} | {
|
10063
|
-
firstname: string;
|
10064
|
-
surname: string;
|
10065
|
-
middlename?: string | null | undefined;
|
10066
9128
|
} | {
|
10067
9129
|
country: string;
|
10068
9130
|
district: string;
|
@@ -10085,8 +9147,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
10085
9147
|
option: string;
|
10086
9148
|
filename: string;
|
10087
9149
|
originalFilename: string;
|
10088
|
-
}[] | [string, string] |
|
10089
|
-
creator?: "system" | "user" | undefined;
|
9150
|
+
}[] | [string, string] | undefined>;
|
10090
9151
|
createdBySignature?: string | null | undefined;
|
10091
9152
|
createdAtLocation?: string | null | undefined;
|
10092
9153
|
annotation?: Record<string, string | number | boolean | {
|
@@ -10104,10 +9165,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
10104
9165
|
residentialArea?: string | null | undefined;
|
10105
9166
|
street?: string | null | undefined;
|
10106
9167
|
zipCode?: string | null | undefined;
|
10107
|
-
} | {
|
10108
|
-
firstname: string;
|
10109
|
-
surname: string;
|
10110
|
-
middlename?: string | null | undefined;
|
10111
9168
|
} | {
|
10112
9169
|
country: string;
|
10113
9170
|
district: string;
|
@@ -10130,7 +9187,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
10130
9187
|
option: string;
|
10131
9188
|
filename: string;
|
10132
9189
|
originalFilename: string;
|
10133
|
-
}[] | [string, string] |
|
9190
|
+
}[] | [string, string] | undefined> | undefined;
|
10134
9191
|
originalActionId?: string | undefined;
|
10135
9192
|
} | {
|
10136
9193
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -10140,7 +9197,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
10140
9197
|
createdAt: string;
|
10141
9198
|
createdBy: string;
|
10142
9199
|
createdByRole: string;
|
10143
|
-
creator?: "system" | "user" | undefined;
|
10144
9200
|
createdBySignature?: string | null | undefined;
|
10145
9201
|
createdAtLocation?: string | null | undefined;
|
10146
9202
|
originalActionId?: string | undefined;
|