@opencrvs/toolkit 1.8.0-rc.fe87a15 → 1.8.0-rc.fe8c092
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +6884 -614
- package/dist/commons/conditionals/conditionals.d.ts +4 -0
- package/dist/commons/conditionals/validate.d.ts +6 -0
- package/dist/commons/events/ActionConfig.d.ts +18678 -6326
- package/dist/commons/events/ActionDocument.d.ts +1923 -414
- package/dist/commons/events/ActionInput.d.ts +1504 -304
- package/dist/commons/events/ActionType.d.ts +6 -0
- package/dist/commons/events/AdvancedSearchConfig.d.ts +75 -3
- package/dist/commons/events/CompositeFieldValue.d.ts +28 -0
- package/dist/commons/events/Constants.d.ts +1 -0
- package/dist/commons/events/CountryConfigQueryInput.d.ts +254 -168
- package/dist/commons/events/CreatedAtLocation.d.ts +2 -1
- package/dist/commons/events/Draft.d.ts +134 -33
- package/dist/commons/events/EventConfig.d.ts +8242 -2365
- package/dist/commons/events/EventDocument.d.ts +1242 -298
- package/dist/commons/events/EventIndex.d.ts +798 -123
- package/dist/commons/events/EventMetadata.d.ts +62 -59
- package/dist/commons/events/FieldConfig.d.ts +1572 -746
- package/dist/commons/events/FieldType.d.ts +4 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +89 -50
- package/dist/commons/events/FieldValue.d.ts +41 -5
- package/dist/commons/events/FormConfig.d.ts +7640 -2444
- package/dist/commons/events/PageConfig.d.ts +2816 -1540
- package/dist/commons/events/SummaryConfig.d.ts +0 -5
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +11 -11
- package/dist/commons/events/WorkqueueConfig.d.ts +3277 -1512
- package/dist/commons/events/defineConfig.d.ts +959 -13
- package/dist/commons/events/field.d.ts +4 -0
- package/dist/commons/events/index.d.ts +1 -0
- package/dist/commons/events/scopes.d.ts +1 -2
- package/dist/commons/events/test.utils.d.ts +138 -40
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +9666 -16
- package/dist/conditionals/index.js +18 -1
- package/dist/events/index.js +1592 -1011
- package/dist/scopes/index.d.ts +4 -1
- package/dist/scopes/index.js +67 -17
- package/package.json +1 -1
@@ -1,2 +1,3 @@
|
|
1
|
-
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const CreatedAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2
3
|
//# sourceMappingURL=CreatedAtLocation.d.ts.map
|
@@ -1,17 +1,18 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
export declare const Draft: z.ZodObject<{
|
3
|
-
id: z.
|
4
|
-
eventId: z.
|
3
|
+
id: z.ZodString;
|
4
|
+
eventId: z.ZodString;
|
5
5
|
transactionId: z.ZodString;
|
6
6
|
createdAt: z.ZodString;
|
7
7
|
action: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
8
8
|
id: z.ZodString;
|
9
9
|
transactionId: z.ZodString;
|
10
|
+
createdByUserType: z.ZodEnum<["user", "system"]>;
|
10
11
|
createdAt: z.ZodString;
|
11
12
|
createdBy: z.ZodString;
|
12
13
|
createdByRole: z.ZodString;
|
13
14
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14
|
-
createdAtLocation: z.ZodOptional<z.ZodNullable<z.
|
15
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15
16
|
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
16
17
|
filename: z.ZodString;
|
17
18
|
originalFilename: z.ZodString;
|
@@ -125,8 +126,20 @@ export declare const Draft: z.ZodObject<{
|
|
125
126
|
addressLine2?: string | null | undefined;
|
126
127
|
addressLine3?: string | null | undefined;
|
127
128
|
postcodeOrZip?: string | null | undefined;
|
128
|
-
}
|
129
|
-
|
129
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
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]>]>>;
|
142
|
+
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<{
|
130
143
|
filename: z.ZodString;
|
131
144
|
originalFilename: z.ZodString;
|
132
145
|
type: z.ZodString;
|
@@ -239,15 +252,28 @@ export declare const Draft: z.ZodObject<{
|
|
239
252
|
addressLine2?: string | null | undefined;
|
240
253
|
addressLine3?: string | null | undefined;
|
241
254
|
postcodeOrZip?: string | null | undefined;
|
242
|
-
}
|
255
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
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]>]>>>;
|
243
268
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
244
|
-
originalActionId: z.
|
269
|
+
originalActionId: z.ZodOptional<z.ZodString>;
|
245
270
|
}, {
|
246
271
|
type: z.ZodEnum<["DELETE", "CREATE", "NOTIFY", "DECLARE", "VALIDATE", "REGISTER", "DETECT_DUPLICATE", "REJECT", "MARKED_AS_DUPLICATE", "ARCHIVE", "PRINT_CERTIFICATE", "REQUEST_CORRECTION", "REJECT_CORRECTION", "APPROVE_CORRECTION", "READ", "ASSIGN", "UNASSIGN"]>;
|
247
272
|
}>, "id">, "strip", z.ZodTypeAny, {
|
248
273
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "DELETE" | "CREATE" | "NOTIFY" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
249
274
|
status: "Rejected" | "Requested" | "Accepted";
|
250
275
|
transactionId: string;
|
276
|
+
createdByUserType: "system" | "user";
|
251
277
|
createdAt: string;
|
252
278
|
createdBy: string;
|
253
279
|
createdByRole: string;
|
@@ -266,6 +292,10 @@ export declare const Draft: z.ZodObject<{
|
|
266
292
|
residentialArea?: string | null | undefined;
|
267
293
|
street?: string | null | undefined;
|
268
294
|
zipCode?: string | null | undefined;
|
295
|
+
} | {
|
296
|
+
firstname: string;
|
297
|
+
surname: string;
|
298
|
+
middlename?: string | null | undefined;
|
269
299
|
} | {
|
270
300
|
country: string;
|
271
301
|
district: string;
|
@@ -288,9 +318,9 @@ export declare const Draft: z.ZodObject<{
|
|
288
318
|
option: string;
|
289
319
|
filename: string;
|
290
320
|
originalFilename: string;
|
291
|
-
}[] | [string, string] | undefined>;
|
321
|
+
}[] | [string, string] | null | undefined>;
|
292
322
|
createdBySignature?: string | null | undefined;
|
293
|
-
createdAtLocation?:
|
323
|
+
createdAtLocation?: string | null | undefined;
|
294
324
|
annotation?: Record<string, string | number | boolean | {
|
295
325
|
type: string;
|
296
326
|
filename: string;
|
@@ -306,6 +336,10 @@ export declare const Draft: z.ZodObject<{
|
|
306
336
|
residentialArea?: string | null | undefined;
|
307
337
|
street?: string | null | undefined;
|
308
338
|
zipCode?: string | null | undefined;
|
339
|
+
} | {
|
340
|
+
firstname: string;
|
341
|
+
surname: string;
|
342
|
+
middlename?: string | null | undefined;
|
309
343
|
} | {
|
310
344
|
country: string;
|
311
345
|
district: string;
|
@@ -328,12 +362,13 @@ export declare const Draft: z.ZodObject<{
|
|
328
362
|
option: string;
|
329
363
|
filename: string;
|
330
364
|
originalFilename: string;
|
331
|
-
}[] | [string, string] |
|
332
|
-
originalActionId?:
|
365
|
+
}[] | [string, string] | null | undefined> | undefined;
|
366
|
+
originalActionId?: string | undefined;
|
333
367
|
}, {
|
334
368
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "DELETE" | "CREATE" | "NOTIFY" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
335
369
|
status: "Rejected" | "Requested" | "Accepted";
|
336
370
|
transactionId: string;
|
371
|
+
createdByUserType: "system" | "user";
|
337
372
|
createdAt: string;
|
338
373
|
createdBy: string;
|
339
374
|
createdByRole: string;
|
@@ -352,6 +387,10 @@ export declare const Draft: z.ZodObject<{
|
|
352
387
|
residentialArea?: string | null | undefined;
|
353
388
|
street?: string | null | undefined;
|
354
389
|
zipCode?: string | null | undefined;
|
390
|
+
} | {
|
391
|
+
firstname: string;
|
392
|
+
surname: string;
|
393
|
+
middlename?: string | null | undefined;
|
355
394
|
} | {
|
356
395
|
country: string;
|
357
396
|
district: string;
|
@@ -374,7 +413,7 @@ export declare const Draft: z.ZodObject<{
|
|
374
413
|
option: string;
|
375
414
|
filename: string;
|
376
415
|
originalFilename: string;
|
377
|
-
}[] | [string, string] | undefined>;
|
416
|
+
}[] | [string, string] | null | undefined>;
|
378
417
|
createdBySignature?: string | null | undefined;
|
379
418
|
createdAtLocation?: string | null | undefined;
|
380
419
|
annotation?: Record<string, string | number | boolean | {
|
@@ -392,6 +431,10 @@ export declare const Draft: z.ZodObject<{
|
|
392
431
|
residentialArea?: string | null | undefined;
|
393
432
|
street?: string | null | undefined;
|
394
433
|
zipCode?: string | null | undefined;
|
434
|
+
} | {
|
435
|
+
firstname: string;
|
436
|
+
surname: string;
|
437
|
+
middlename?: string | null | undefined;
|
395
438
|
} | {
|
396
439
|
country: string;
|
397
440
|
district: string;
|
@@ -414,18 +457,19 @@ export declare const Draft: z.ZodObject<{
|
|
414
457
|
option: string;
|
415
458
|
filename: string;
|
416
459
|
originalFilename: string;
|
417
|
-
}[] | [string, string] |
|
418
|
-
originalActionId?: string |
|
460
|
+
}[] | [string, string] | null | undefined> | undefined;
|
461
|
+
originalActionId?: string | undefined;
|
419
462
|
}>;
|
420
463
|
}, "strip", z.ZodTypeAny, {
|
421
|
-
id: string
|
464
|
+
id: string;
|
422
465
|
transactionId: string;
|
423
466
|
createdAt: string;
|
424
|
-
eventId: string
|
467
|
+
eventId: string;
|
425
468
|
action: {
|
426
469
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "DELETE" | "CREATE" | "NOTIFY" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
427
470
|
status: "Rejected" | "Requested" | "Accepted";
|
428
471
|
transactionId: string;
|
472
|
+
createdByUserType: "system" | "user";
|
429
473
|
createdAt: string;
|
430
474
|
createdBy: string;
|
431
475
|
createdByRole: string;
|
@@ -444,6 +488,10 @@ export declare const Draft: z.ZodObject<{
|
|
444
488
|
residentialArea?: string | null | undefined;
|
445
489
|
street?: string | null | undefined;
|
446
490
|
zipCode?: string | null | undefined;
|
491
|
+
} | {
|
492
|
+
firstname: string;
|
493
|
+
surname: string;
|
494
|
+
middlename?: string | null | undefined;
|
447
495
|
} | {
|
448
496
|
country: string;
|
449
497
|
district: string;
|
@@ -466,9 +514,9 @@ export declare const Draft: z.ZodObject<{
|
|
466
514
|
option: string;
|
467
515
|
filename: string;
|
468
516
|
originalFilename: string;
|
469
|
-
}[] | [string, string] | undefined>;
|
517
|
+
}[] | [string, string] | null | undefined>;
|
470
518
|
createdBySignature?: string | null | undefined;
|
471
|
-
createdAtLocation?:
|
519
|
+
createdAtLocation?: string | null | undefined;
|
472
520
|
annotation?: Record<string, string | number | boolean | {
|
473
521
|
type: string;
|
474
522
|
filename: string;
|
@@ -484,6 +532,10 @@ export declare const Draft: z.ZodObject<{
|
|
484
532
|
residentialArea?: string | null | undefined;
|
485
533
|
street?: string | null | undefined;
|
486
534
|
zipCode?: string | null | undefined;
|
535
|
+
} | {
|
536
|
+
firstname: string;
|
537
|
+
surname: string;
|
538
|
+
middlename?: string | null | undefined;
|
487
539
|
} | {
|
488
540
|
country: string;
|
489
541
|
district: string;
|
@@ -506,8 +558,8 @@ export declare const Draft: z.ZodObject<{
|
|
506
558
|
option: string;
|
507
559
|
filename: string;
|
508
560
|
originalFilename: string;
|
509
|
-
}[] | [string, string] |
|
510
|
-
originalActionId?:
|
561
|
+
}[] | [string, string] | null | undefined> | undefined;
|
562
|
+
originalActionId?: string | undefined;
|
511
563
|
};
|
512
564
|
}, {
|
513
565
|
id: string;
|
@@ -518,6 +570,7 @@ export declare const Draft: z.ZodObject<{
|
|
518
570
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "DELETE" | "CREATE" | "NOTIFY" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
519
571
|
status: "Rejected" | "Requested" | "Accepted";
|
520
572
|
transactionId: string;
|
573
|
+
createdByUserType: "system" | "user";
|
521
574
|
createdAt: string;
|
522
575
|
createdBy: string;
|
523
576
|
createdByRole: string;
|
@@ -536,6 +589,10 @@ export declare const Draft: z.ZodObject<{
|
|
536
589
|
residentialArea?: string | null | undefined;
|
537
590
|
street?: string | null | undefined;
|
538
591
|
zipCode?: string | null | undefined;
|
592
|
+
} | {
|
593
|
+
firstname: string;
|
594
|
+
surname: string;
|
595
|
+
middlename?: string | null | undefined;
|
539
596
|
} | {
|
540
597
|
country: string;
|
541
598
|
district: string;
|
@@ -558,7 +615,7 @@ export declare const Draft: z.ZodObject<{
|
|
558
615
|
option: string;
|
559
616
|
filename: string;
|
560
617
|
originalFilename: string;
|
561
|
-
}[] | [string, string] | undefined>;
|
618
|
+
}[] | [string, string] | null | undefined>;
|
562
619
|
createdBySignature?: string | null | undefined;
|
563
620
|
createdAtLocation?: string | null | undefined;
|
564
621
|
annotation?: Record<string, string | number | boolean | {
|
@@ -576,6 +633,10 @@ export declare const Draft: z.ZodObject<{
|
|
576
633
|
residentialArea?: string | null | undefined;
|
577
634
|
street?: string | null | undefined;
|
578
635
|
zipCode?: string | null | undefined;
|
636
|
+
} | {
|
637
|
+
firstname: string;
|
638
|
+
surname: string;
|
639
|
+
middlename?: string | null | undefined;
|
579
640
|
} | {
|
580
641
|
country: string;
|
581
642
|
district: string;
|
@@ -598,12 +659,12 @@ export declare const Draft: z.ZodObject<{
|
|
598
659
|
option: string;
|
599
660
|
filename: string;
|
600
661
|
originalFilename: string;
|
601
|
-
}[] | [string, string] |
|
602
|
-
originalActionId?: string |
|
662
|
+
}[] | [string, string] | null | undefined> | undefined;
|
663
|
+
originalActionId?: string | undefined;
|
603
664
|
};
|
604
665
|
}>;
|
605
666
|
export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
606
|
-
eventId: z.
|
667
|
+
eventId: z.ZodString;
|
607
668
|
transactionId: z.ZodString;
|
608
669
|
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
609
670
|
filename: z.ZodString;
|
@@ -718,7 +779,19 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
718
779
|
addressLine2?: string | null | undefined;
|
719
780
|
addressLine3?: string | null | undefined;
|
720
781
|
postcodeOrZip?: string | null | undefined;
|
721
|
-
}
|
782
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
783
|
+
firstname: z.ZodString;
|
784
|
+
surname: z.ZodString;
|
785
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
786
|
+
}, "strip", z.ZodTypeAny, {
|
787
|
+
firstname: string;
|
788
|
+
surname: string;
|
789
|
+
middlename?: string | null | undefined;
|
790
|
+
}, {
|
791
|
+
firstname: string;
|
792
|
+
surname: string;
|
793
|
+
middlename?: string | null | undefined;
|
794
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
722
795
|
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<{
|
723
796
|
filename: z.ZodString;
|
724
797
|
originalFilename: z.ZodString;
|
@@ -832,8 +905,20 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
832
905
|
addressLine2?: string | null | undefined;
|
833
906
|
addressLine3?: string | null | undefined;
|
834
907
|
postcodeOrZip?: string | null | undefined;
|
835
|
-
}
|
836
|
-
|
908
|
+
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
909
|
+
firstname: z.ZodString;
|
910
|
+
surname: z.ZodString;
|
911
|
+
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
912
|
+
}, "strip", z.ZodTypeAny, {
|
913
|
+
firstname: string;
|
914
|
+
surname: string;
|
915
|
+
middlename?: string | null | undefined;
|
916
|
+
}, {
|
917
|
+
firstname: string;
|
918
|
+
surname: string;
|
919
|
+
middlename?: string | null | undefined;
|
920
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
921
|
+
originalActionId: z.ZodOptional<z.ZodString>;
|
837
922
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
838
923
|
}, {
|
839
924
|
type: z.ZodEnum<["DELETE", "CREATE", "NOTIFY", "DECLARE", "VALIDATE", "REGISTER", "DETECT_DUPLICATE", "REJECT", "MARKED_AS_DUPLICATE", "ARCHIVE", "PRINT_CERTIFICATE", "REQUEST_CORRECTION", "REJECT_CORRECTION", "APPROVE_CORRECTION", "READ", "ASSIGN", "UNASSIGN"]>;
|
@@ -857,6 +942,10 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
857
942
|
residentialArea?: string | null | undefined;
|
858
943
|
street?: string | null | undefined;
|
859
944
|
zipCode?: string | null | undefined;
|
945
|
+
} | {
|
946
|
+
firstname: string;
|
947
|
+
surname: string;
|
948
|
+
middlename?: string | null | undefined;
|
860
949
|
} | {
|
861
950
|
country: string;
|
862
951
|
district: string;
|
@@ -879,8 +968,8 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
879
968
|
option: string;
|
880
969
|
filename: string;
|
881
970
|
originalFilename: string;
|
882
|
-
}[] | [string, string] | undefined>;
|
883
|
-
eventId: string
|
971
|
+
}[] | [string, string] | null | undefined>;
|
972
|
+
eventId: string;
|
884
973
|
annotation?: Record<string, string | number | boolean | {
|
885
974
|
type: string;
|
886
975
|
filename: string;
|
@@ -896,6 +985,10 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
896
985
|
residentialArea?: string | null | undefined;
|
897
986
|
street?: string | null | undefined;
|
898
987
|
zipCode?: string | null | undefined;
|
988
|
+
} | {
|
989
|
+
firstname: string;
|
990
|
+
surname: string;
|
991
|
+
middlename?: string | null | undefined;
|
899
992
|
} | {
|
900
993
|
country: string;
|
901
994
|
district: string;
|
@@ -918,8 +1011,8 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
918
1011
|
option: string;
|
919
1012
|
filename: string;
|
920
1013
|
originalFilename: string;
|
921
|
-
}[] | [string, string] | undefined> | undefined;
|
922
|
-
originalActionId?:
|
1014
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1015
|
+
originalActionId?: string | undefined;
|
923
1016
|
keepAssignment?: boolean | undefined;
|
924
1017
|
}, {
|
925
1018
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "DELETE" | "CREATE" | "NOTIFY" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
@@ -941,6 +1034,10 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
941
1034
|
residentialArea?: string | null | undefined;
|
942
1035
|
street?: string | null | undefined;
|
943
1036
|
zipCode?: string | null | undefined;
|
1037
|
+
} | {
|
1038
|
+
firstname: string;
|
1039
|
+
surname: string;
|
1040
|
+
middlename?: string | null | undefined;
|
944
1041
|
} | {
|
945
1042
|
country: string;
|
946
1043
|
district: string;
|
@@ -963,7 +1060,7 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
963
1060
|
option: string;
|
964
1061
|
filename: string;
|
965
1062
|
originalFilename: string;
|
966
|
-
}[] | [string, string] | undefined> | undefined;
|
1063
|
+
}[] | [string, string] | null | undefined> | undefined;
|
967
1064
|
annotation?: Record<string, string | number | boolean | {
|
968
1065
|
type: string;
|
969
1066
|
filename: string;
|
@@ -979,6 +1076,10 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
979
1076
|
residentialArea?: string | null | undefined;
|
980
1077
|
street?: string | null | undefined;
|
981
1078
|
zipCode?: string | null | undefined;
|
1079
|
+
} | {
|
1080
|
+
firstname: string;
|
1081
|
+
surname: string;
|
1082
|
+
middlename?: string | null | undefined;
|
982
1083
|
} | {
|
983
1084
|
country: string;
|
984
1085
|
district: string;
|
@@ -1001,7 +1102,7 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1001
1102
|
option: string;
|
1002
1103
|
filename: string;
|
1003
1104
|
originalFilename: string;
|
1004
|
-
}[] | [string, string] | undefined> | undefined;
|
1105
|
+
}[] | [string, string] | null | undefined> | undefined;
|
1005
1106
|
originalActionId?: string | undefined;
|
1006
1107
|
keepAssignment?: boolean | undefined;
|
1007
1108
|
}>;
|