@opencrvs/toolkit 1.8.0-rc.f466807 → 1.8.0-rc.f7e8fb5
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 +445 -697
- package/dist/commons/conditionals/validate.d.ts +0 -27
- package/dist/commons/events/ActionConfig.d.ts +142 -4410
- package/dist/commons/events/ActionDocument.d.ts +103 -103
- package/dist/commons/events/ActionInput.d.ts +156 -156
- package/dist/commons/events/Draft.d.ts +16 -16
- package/dist/commons/events/EventConfig.d.ts +112 -1680
- package/dist/commons/events/EventConfigInput.d.ts +2 -2
- package/dist/commons/events/EventDocument.d.ts +150 -150
- package/dist/commons/events/FieldConfig.d.ts +2 -158
- package/dist/commons/events/FieldType.d.ts +1 -2
- package/dist/commons/events/FieldTypeMapping.d.ts +2 -52
- package/dist/commons/events/FieldValue.d.ts +4 -6
- package/dist/commons/events/FormConfig.d.ts +23 -361
- package/dist/commons/events/defineConfig.d.ts +28 -280
- package/dist/commons/events/test.utils.d.ts +13 -15
- package/dist/commons/events/utils.d.ts +11 -84
- package/dist/events/index.js +57 -466
- package/package.json +1 -1
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
@@ -79,7 +79,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
79
79
|
province: string;
|
80
80
|
urbanOrRural: "RURAL";
|
81
81
|
village?: string | null | undefined;
|
82
|
-
}
|
82
|
+
}>]>>;
|
83
83
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
84
84
|
filename: z.ZodString;
|
85
85
|
originalFilename: z.ZodString;
|
@@ -157,7 +157,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
157
157
|
province: string;
|
158
158
|
urbanOrRural: "RURAL";
|
159
159
|
village?: string | null | undefined;
|
160
|
-
}
|
160
|
+
}>]>>>;
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
162
162
|
data: Record<string, string | number | boolean | {
|
163
163
|
type: string;
|
@@ -184,7 +184,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
184
184
|
option: string;
|
185
185
|
filename: string;
|
186
186
|
originalFilename: string;
|
187
|
-
}[]
|
187
|
+
}[]>;
|
188
188
|
eventId: string;
|
189
189
|
transactionId: string;
|
190
190
|
metadata?: Record<string, string | number | boolean | {
|
@@ -212,7 +212,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
212
212
|
option: string;
|
213
213
|
filename: string;
|
214
214
|
originalFilename: string;
|
215
|
-
}[]
|
215
|
+
}[]> | undefined;
|
216
216
|
}, {
|
217
217
|
data: Record<string, string | number | boolean | {
|
218
218
|
type: string;
|
@@ -239,7 +239,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
239
239
|
option: string;
|
240
240
|
filename: string;
|
241
241
|
originalFilename: string;
|
242
|
-
}[]
|
242
|
+
}[]>;
|
243
243
|
eventId: string;
|
244
244
|
transactionId: string;
|
245
245
|
metadata?: Record<string, string | number | boolean | {
|
@@ -267,7 +267,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
267
267
|
option: string;
|
268
268
|
filename: string;
|
269
269
|
originalFilename: string;
|
270
|
-
}[]
|
270
|
+
}[]> | undefined;
|
271
271
|
}>;
|
272
272
|
export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
273
273
|
eventId: z.ZodString;
|
@@ -349,7 +349,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
349
349
|
province: string;
|
350
350
|
urbanOrRural: "RURAL";
|
351
351
|
village?: string | null | undefined;
|
352
|
-
}
|
352
|
+
}>]>>;
|
353
353
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
354
354
|
filename: z.ZodString;
|
355
355
|
originalFilename: z.ZodString;
|
@@ -427,7 +427,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
427
427
|
province: string;
|
428
428
|
urbanOrRural: "RURAL";
|
429
429
|
village?: string | null | undefined;
|
430
|
-
}
|
430
|
+
}>]>>>;
|
431
431
|
}, {
|
432
432
|
type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
|
433
433
|
identifiers: z.ZodObject<{
|
@@ -467,7 +467,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
467
467
|
option: string;
|
468
468
|
filename: string;
|
469
469
|
originalFilename: string;
|
470
|
-
}[]
|
470
|
+
}[]>;
|
471
471
|
identifiers: {
|
472
472
|
trackingId: string;
|
473
473
|
registrationNumber: string;
|
@@ -499,7 +499,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
499
499
|
option: string;
|
500
500
|
filename: string;
|
501
501
|
originalFilename: string;
|
502
|
-
}[]
|
502
|
+
}[]> | undefined;
|
503
503
|
}, {
|
504
504
|
data: Record<string, string | number | boolean | {
|
505
505
|
type: string;
|
@@ -526,7 +526,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
526
526
|
option: string;
|
527
527
|
filename: string;
|
528
528
|
originalFilename: string;
|
529
|
-
}[]
|
529
|
+
}[]>;
|
530
530
|
identifiers: {
|
531
531
|
trackingId: string;
|
532
532
|
registrationNumber: string;
|
@@ -559,7 +559,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
559
559
|
option: string;
|
560
560
|
filename: string;
|
561
561
|
originalFilename: string;
|
562
|
-
}[]
|
562
|
+
}[]> | undefined;
|
563
563
|
}>;
|
564
564
|
export type RegisterActionInput = z.infer<typeof RegisterActionInput>;
|
565
565
|
export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -642,7 +642,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
642
642
|
province: string;
|
643
643
|
urbanOrRural: "RURAL";
|
644
644
|
village?: string | null | undefined;
|
645
|
-
}
|
645
|
+
}>]>>;
|
646
646
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
647
647
|
filename: z.ZodString;
|
648
648
|
originalFilename: z.ZodString;
|
@@ -720,7 +720,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
720
720
|
province: string;
|
721
721
|
urbanOrRural: "RURAL";
|
722
722
|
village?: string | null | undefined;
|
723
|
-
}
|
723
|
+
}>]>>>;
|
724
724
|
}, {
|
725
725
|
type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
|
726
726
|
duplicates: z.ZodArray<z.ZodString, "many">;
|
@@ -751,7 +751,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
751
751
|
option: string;
|
752
752
|
filename: string;
|
753
753
|
originalFilename: string;
|
754
|
-
}[]
|
754
|
+
}[]>;
|
755
755
|
eventId: string;
|
756
756
|
transactionId: string;
|
757
757
|
duplicates: string[];
|
@@ -780,7 +780,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
780
780
|
option: string;
|
781
781
|
filename: string;
|
782
782
|
originalFilename: string;
|
783
|
-
}[]
|
783
|
+
}[]> | undefined;
|
784
784
|
}, {
|
785
785
|
data: Record<string, string | number | boolean | {
|
786
786
|
type: string;
|
@@ -807,7 +807,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
807
807
|
option: string;
|
808
808
|
filename: string;
|
809
809
|
originalFilename: string;
|
810
|
-
}[]
|
810
|
+
}[]>;
|
811
811
|
eventId: string;
|
812
812
|
transactionId: string;
|
813
813
|
duplicates: string[];
|
@@ -837,7 +837,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
837
837
|
option: string;
|
838
838
|
filename: string;
|
839
839
|
originalFilename: string;
|
840
|
-
}[]
|
840
|
+
}[]> | undefined;
|
841
841
|
}>;
|
842
842
|
export type ValidateActionInput = z.infer<typeof ValidateActionInput>;
|
843
843
|
export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -920,7 +920,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
920
920
|
province: string;
|
921
921
|
urbanOrRural: "RURAL";
|
922
922
|
village?: string | null | undefined;
|
923
|
-
}
|
923
|
+
}>]>>;
|
924
924
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
925
925
|
filename: z.ZodString;
|
926
926
|
originalFilename: z.ZodString;
|
@@ -998,7 +998,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
998
998
|
province: string;
|
999
999
|
urbanOrRural: "RURAL";
|
1000
1000
|
village?: string | null | undefined;
|
1001
|
-
}
|
1001
|
+
}>]>>>;
|
1002
1002
|
}, {
|
1003
1003
|
type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
|
1004
1004
|
}>, "strip", z.ZodTypeAny, {
|
@@ -1028,7 +1028,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1028
1028
|
option: string;
|
1029
1029
|
filename: string;
|
1030
1030
|
originalFilename: string;
|
1031
|
-
}[]
|
1031
|
+
}[]>;
|
1032
1032
|
eventId: string;
|
1033
1033
|
transactionId: string;
|
1034
1034
|
metadata?: Record<string, string | number | boolean | {
|
@@ -1056,7 +1056,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1056
1056
|
option: string;
|
1057
1057
|
filename: string;
|
1058
1058
|
originalFilename: string;
|
1059
|
-
}[]
|
1059
|
+
}[]> | undefined;
|
1060
1060
|
}, {
|
1061
1061
|
data: Record<string, string | number | boolean | {
|
1062
1062
|
type: string;
|
@@ -1083,7 +1083,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1083
1083
|
option: string;
|
1084
1084
|
filename: string;
|
1085
1085
|
originalFilename: string;
|
1086
|
-
}[]
|
1086
|
+
}[]>;
|
1087
1087
|
eventId: string;
|
1088
1088
|
transactionId: string;
|
1089
1089
|
type?: "NOTIFY" | undefined;
|
@@ -1112,7 +1112,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1112
1112
|
option: string;
|
1113
1113
|
filename: string;
|
1114
1114
|
originalFilename: string;
|
1115
|
-
}[]
|
1115
|
+
}[]> | undefined;
|
1116
1116
|
}>;
|
1117
1117
|
export type NotifyActionInput = z.infer<typeof NotifyActionInput>;
|
1118
1118
|
export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -1195,7 +1195,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1195
1195
|
province: string;
|
1196
1196
|
urbanOrRural: "RURAL";
|
1197
1197
|
village?: string | null | undefined;
|
1198
|
-
}
|
1198
|
+
}>]>>;
|
1199
1199
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1200
1200
|
filename: z.ZodString;
|
1201
1201
|
originalFilename: z.ZodString;
|
@@ -1273,7 +1273,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1273
1273
|
province: string;
|
1274
1274
|
urbanOrRural: "RURAL";
|
1275
1275
|
village?: string | null | undefined;
|
1276
|
-
}
|
1276
|
+
}>]>>>;
|
1277
1277
|
}, {
|
1278
1278
|
type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
|
1279
1279
|
}>, "strip", z.ZodTypeAny, {
|
@@ -1303,7 +1303,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1303
1303
|
option: string;
|
1304
1304
|
filename: string;
|
1305
1305
|
originalFilename: string;
|
1306
|
-
}[]
|
1306
|
+
}[]>;
|
1307
1307
|
eventId: string;
|
1308
1308
|
transactionId: string;
|
1309
1309
|
metadata?: Record<string, string | number | boolean | {
|
@@ -1331,7 +1331,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1331
1331
|
option: string;
|
1332
1332
|
filename: string;
|
1333
1333
|
originalFilename: string;
|
1334
|
-
}[]
|
1334
|
+
}[]> | undefined;
|
1335
1335
|
}, {
|
1336
1336
|
data: Record<string, string | number | boolean | {
|
1337
1337
|
type: string;
|
@@ -1358,7 +1358,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1358
1358
|
option: string;
|
1359
1359
|
filename: string;
|
1360
1360
|
originalFilename: string;
|
1361
|
-
}[]
|
1361
|
+
}[]>;
|
1362
1362
|
eventId: string;
|
1363
1363
|
transactionId: string;
|
1364
1364
|
type?: "DECLARE" | undefined;
|
@@ -1387,7 +1387,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1387
1387
|
option: string;
|
1388
1388
|
filename: string;
|
1389
1389
|
originalFilename: string;
|
1390
|
-
}[]
|
1390
|
+
}[]> | undefined;
|
1391
1391
|
}>;
|
1392
1392
|
export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
1393
1393
|
eventId: z.ZodString;
|
@@ -1469,7 +1469,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1469
1469
|
province: string;
|
1470
1470
|
urbanOrRural: "RURAL";
|
1471
1471
|
village?: string | null | undefined;
|
1472
|
-
}
|
1472
|
+
}>]>>;
|
1473
1473
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1474
1474
|
filename: z.ZodString;
|
1475
1475
|
originalFilename: z.ZodString;
|
@@ -1547,7 +1547,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1547
1547
|
province: string;
|
1548
1548
|
urbanOrRural: "RURAL";
|
1549
1549
|
village?: string | null | undefined;
|
1550
|
-
}
|
1550
|
+
}>]>>>;
|
1551
1551
|
}, {
|
1552
1552
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
1553
1553
|
}>, "strip", z.ZodTypeAny, {
|
@@ -1577,7 +1577,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1577
1577
|
option: string;
|
1578
1578
|
filename: string;
|
1579
1579
|
originalFilename: string;
|
1580
|
-
}[]
|
1580
|
+
}[]>;
|
1581
1581
|
eventId: string;
|
1582
1582
|
transactionId: string;
|
1583
1583
|
metadata?: Record<string, string | number | boolean | {
|
@@ -1605,7 +1605,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1605
1605
|
option: string;
|
1606
1606
|
filename: string;
|
1607
1607
|
originalFilename: string;
|
1608
|
-
}[]
|
1608
|
+
}[]> | undefined;
|
1609
1609
|
}, {
|
1610
1610
|
data: Record<string, string | number | boolean | {
|
1611
1611
|
type: string;
|
@@ -1632,7 +1632,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1632
1632
|
option: string;
|
1633
1633
|
filename: string;
|
1634
1634
|
originalFilename: string;
|
1635
|
-
}[]
|
1635
|
+
}[]>;
|
1636
1636
|
eventId: string;
|
1637
1637
|
transactionId: string;
|
1638
1638
|
type?: "PRINT_CERTIFICATE" | undefined;
|
@@ -1661,7 +1661,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1661
1661
|
option: string;
|
1662
1662
|
filename: string;
|
1663
1663
|
originalFilename: string;
|
1664
|
-
}[]
|
1664
|
+
}[]> | undefined;
|
1665
1665
|
}>;
|
1666
1666
|
export type DeclareActionInput = z.infer<typeof DeclareActionInput>;
|
1667
1667
|
export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -1744,7 +1744,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1744
1744
|
province: string;
|
1745
1745
|
urbanOrRural: "RURAL";
|
1746
1746
|
village?: string | null | undefined;
|
1747
|
-
}
|
1747
|
+
}>]>>;
|
1748
1748
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1749
1749
|
filename: z.ZodString;
|
1750
1750
|
originalFilename: z.ZodString;
|
@@ -1822,7 +1822,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1822
1822
|
province: string;
|
1823
1823
|
urbanOrRural: "RURAL";
|
1824
1824
|
village?: string | null | undefined;
|
1825
|
-
}
|
1825
|
+
}>]>>>;
|
1826
1826
|
}, {
|
1827
1827
|
type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
|
1828
1828
|
}>, "strip", z.ZodTypeAny, {
|
@@ -1852,7 +1852,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1852
1852
|
option: string;
|
1853
1853
|
filename: string;
|
1854
1854
|
originalFilename: string;
|
1855
|
-
}[]
|
1855
|
+
}[]>;
|
1856
1856
|
eventId: string;
|
1857
1857
|
transactionId: string;
|
1858
1858
|
metadata?: Record<string, string | number | boolean | {
|
@@ -1880,7 +1880,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1880
1880
|
option: string;
|
1881
1881
|
filename: string;
|
1882
1882
|
originalFilename: string;
|
1883
|
-
}[]
|
1883
|
+
}[]> | undefined;
|
1884
1884
|
}, {
|
1885
1885
|
data: Record<string, string | number | boolean | {
|
1886
1886
|
type: string;
|
@@ -1907,7 +1907,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1907
1907
|
option: string;
|
1908
1908
|
filename: string;
|
1909
1909
|
originalFilename: string;
|
1910
|
-
}[]
|
1910
|
+
}[]>;
|
1911
1911
|
eventId: string;
|
1912
1912
|
transactionId: string;
|
1913
1913
|
type?: "REJECT" | undefined;
|
@@ -1936,7 +1936,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1936
1936
|
option: string;
|
1937
1937
|
filename: string;
|
1938
1938
|
originalFilename: string;
|
1939
|
-
}[]
|
1939
|
+
}[]> | undefined;
|
1940
1940
|
}>;
|
1941
1941
|
export type RejectDeclarationActionInput = z.infer<typeof RejectDeclarationActionInput>;
|
1942
1942
|
export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2019,7 +2019,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2019
2019
|
province: string;
|
2020
2020
|
urbanOrRural: "RURAL";
|
2021
2021
|
village?: string | null | undefined;
|
2022
|
-
}
|
2022
|
+
}>]>>;
|
2023
2023
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2024
2024
|
filename: z.ZodString;
|
2025
2025
|
originalFilename: z.ZodString;
|
@@ -2097,7 +2097,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2097
2097
|
province: string;
|
2098
2098
|
urbanOrRural: "RURAL";
|
2099
2099
|
village?: string | null | undefined;
|
2100
|
-
}
|
2100
|
+
}>]>>>;
|
2101
2101
|
}, {
|
2102
2102
|
type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
|
2103
2103
|
}>, "strip", z.ZodTypeAny, {
|
@@ -2127,7 +2127,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2127
2127
|
option: string;
|
2128
2128
|
filename: string;
|
2129
2129
|
originalFilename: string;
|
2130
|
-
}[]
|
2130
|
+
}[]>;
|
2131
2131
|
eventId: string;
|
2132
2132
|
transactionId: string;
|
2133
2133
|
metadata?: Record<string, string | number | boolean | {
|
@@ -2155,7 +2155,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2155
2155
|
option: string;
|
2156
2156
|
filename: string;
|
2157
2157
|
originalFilename: string;
|
2158
|
-
}[]
|
2158
|
+
}[]> | undefined;
|
2159
2159
|
}, {
|
2160
2160
|
data: Record<string, string | number | boolean | {
|
2161
2161
|
type: string;
|
@@ -2182,7 +2182,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2182
2182
|
option: string;
|
2183
2183
|
filename: string;
|
2184
2184
|
originalFilename: string;
|
2185
|
-
}[]
|
2185
|
+
}[]>;
|
2186
2186
|
eventId: string;
|
2187
2187
|
transactionId: string;
|
2188
2188
|
type?: "MARKED_AS_DUPLICATE" | undefined;
|
@@ -2211,7 +2211,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2211
2211
|
option: string;
|
2212
2212
|
filename: string;
|
2213
2213
|
originalFilename: string;
|
2214
|
-
}[]
|
2214
|
+
}[]> | undefined;
|
2215
2215
|
}>;
|
2216
2216
|
export type MarkedAsDuplicateActionInput = z.infer<typeof MarkedAsDuplicateActionInput>;
|
2217
2217
|
export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2294,7 +2294,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2294
2294
|
province: string;
|
2295
2295
|
urbanOrRural: "RURAL";
|
2296
2296
|
village?: string | null | undefined;
|
2297
|
-
}
|
2297
|
+
}>]>>;
|
2298
2298
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2299
2299
|
filename: z.ZodString;
|
2300
2300
|
originalFilename: z.ZodString;
|
@@ -2372,7 +2372,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2372
2372
|
province: string;
|
2373
2373
|
urbanOrRural: "RURAL";
|
2374
2374
|
village?: string | null | undefined;
|
2375
|
-
}
|
2375
|
+
}>]>>>;
|
2376
2376
|
}, {
|
2377
2377
|
type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
|
2378
2378
|
}>, "strip", z.ZodTypeAny, {
|
@@ -2402,7 +2402,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2402
2402
|
option: string;
|
2403
2403
|
filename: string;
|
2404
2404
|
originalFilename: string;
|
2405
|
-
}[]
|
2405
|
+
}[]>;
|
2406
2406
|
eventId: string;
|
2407
2407
|
transactionId: string;
|
2408
2408
|
metadata?: Record<string, string | number | boolean | {
|
@@ -2430,7 +2430,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2430
2430
|
option: string;
|
2431
2431
|
filename: string;
|
2432
2432
|
originalFilename: string;
|
2433
|
-
}[]
|
2433
|
+
}[]> | undefined;
|
2434
2434
|
}, {
|
2435
2435
|
data: Record<string, string | number | boolean | {
|
2436
2436
|
type: string;
|
@@ -2457,7 +2457,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2457
2457
|
option: string;
|
2458
2458
|
filename: string;
|
2459
2459
|
originalFilename: string;
|
2460
|
-
}[]
|
2460
|
+
}[]>;
|
2461
2461
|
eventId: string;
|
2462
2462
|
transactionId: string;
|
2463
2463
|
type?: "ARCHIVE" | undefined;
|
@@ -2486,7 +2486,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2486
2486
|
option: string;
|
2487
2487
|
filename: string;
|
2488
2488
|
originalFilename: string;
|
2489
|
-
}[]
|
2489
|
+
}[]> | undefined;
|
2490
2490
|
}>;
|
2491
2491
|
export type ArchiveActionInput = z.infer<typeof ArchiveActionInput>;
|
2492
2492
|
export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2569,7 +2569,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2569
2569
|
province: string;
|
2570
2570
|
urbanOrRural: "RURAL";
|
2571
2571
|
village?: string | null | undefined;
|
2572
|
-
}
|
2572
|
+
}>]>>;
|
2573
2573
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2574
2574
|
filename: z.ZodString;
|
2575
2575
|
originalFilename: z.ZodString;
|
@@ -2647,7 +2647,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2647
2647
|
province: string;
|
2648
2648
|
urbanOrRural: "RURAL";
|
2649
2649
|
village?: string | null | undefined;
|
2650
|
-
}
|
2650
|
+
}>]>>>;
|
2651
2651
|
}, {
|
2652
2652
|
type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
|
2653
2653
|
}>, "strip", z.ZodTypeAny, {
|
@@ -2677,7 +2677,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2677
2677
|
option: string;
|
2678
2678
|
filename: string;
|
2679
2679
|
originalFilename: string;
|
2680
|
-
}[]
|
2680
|
+
}[]>;
|
2681
2681
|
eventId: string;
|
2682
2682
|
transactionId: string;
|
2683
2683
|
metadata?: Record<string, string | number | boolean | {
|
@@ -2705,7 +2705,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2705
2705
|
option: string;
|
2706
2706
|
filename: string;
|
2707
2707
|
originalFilename: string;
|
2708
|
-
}[]
|
2708
|
+
}[]> | undefined;
|
2709
2709
|
}, {
|
2710
2710
|
data: Record<string, string | number | boolean | {
|
2711
2711
|
type: string;
|
@@ -2732,7 +2732,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2732
2732
|
option: string;
|
2733
2733
|
filename: string;
|
2734
2734
|
originalFilename: string;
|
2735
|
-
}[]
|
2735
|
+
}[]>;
|
2736
2736
|
eventId: string;
|
2737
2737
|
transactionId: string;
|
2738
2738
|
type?: "REQUEST_CORRECTION" | undefined;
|
@@ -2761,7 +2761,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2761
2761
|
option: string;
|
2762
2762
|
filename: string;
|
2763
2763
|
originalFilename: string;
|
2764
|
-
}[]
|
2764
|
+
}[]> | undefined;
|
2765
2765
|
}>;
|
2766
2766
|
export type RequestCorrectionActionInput = z.infer<typeof RequestCorrectionActionInput>;
|
2767
2767
|
export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2844,7 +2844,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2844
2844
|
province: string;
|
2845
2845
|
urbanOrRural: "RURAL";
|
2846
2846
|
village?: string | null | undefined;
|
2847
|
-
}
|
2847
|
+
}>]>>;
|
2848
2848
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2849
2849
|
filename: z.ZodString;
|
2850
2850
|
originalFilename: z.ZodString;
|
@@ -2922,7 +2922,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2922
2922
|
province: string;
|
2923
2923
|
urbanOrRural: "RURAL";
|
2924
2924
|
village?: string | null | undefined;
|
2925
|
-
}
|
2925
|
+
}>]>>>;
|
2926
2926
|
}, {
|
2927
2927
|
requestId: z.ZodString;
|
2928
2928
|
type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
|
@@ -2953,7 +2953,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2953
2953
|
option: string;
|
2954
2954
|
filename: string;
|
2955
2955
|
originalFilename: string;
|
2956
|
-
}[]
|
2956
|
+
}[]>;
|
2957
2957
|
requestId: string;
|
2958
2958
|
eventId: string;
|
2959
2959
|
transactionId: string;
|
@@ -2982,7 +2982,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2982
2982
|
option: string;
|
2983
2983
|
filename: string;
|
2984
2984
|
originalFilename: string;
|
2985
|
-
}[]
|
2985
|
+
}[]> | undefined;
|
2986
2986
|
}, {
|
2987
2987
|
data: Record<string, string | number | boolean | {
|
2988
2988
|
type: string;
|
@@ -3009,7 +3009,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
3009
3009
|
option: string;
|
3010
3010
|
filename: string;
|
3011
3011
|
originalFilename: string;
|
3012
|
-
}[]
|
3012
|
+
}[]>;
|
3013
3013
|
requestId: string;
|
3014
3014
|
eventId: string;
|
3015
3015
|
transactionId: string;
|
@@ -3039,7 +3039,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
3039
3039
|
option: string;
|
3040
3040
|
filename: string;
|
3041
3041
|
originalFilename: string;
|
3042
|
-
}[]
|
3042
|
+
}[]> | undefined;
|
3043
3043
|
}>;
|
3044
3044
|
export type RejectCorrectionActionInput = z.infer<typeof RejectCorrectionActionInput>;
|
3045
3045
|
export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -3122,7 +3122,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3122
3122
|
province: string;
|
3123
3123
|
urbanOrRural: "RURAL";
|
3124
3124
|
village?: string | null | undefined;
|
3125
|
-
}
|
3125
|
+
}>]>>;
|
3126
3126
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3127
3127
|
filename: z.ZodString;
|
3128
3128
|
originalFilename: z.ZodString;
|
@@ -3200,7 +3200,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3200
3200
|
province: string;
|
3201
3201
|
urbanOrRural: "RURAL";
|
3202
3202
|
village?: string | null | undefined;
|
3203
|
-
}
|
3203
|
+
}>]>>>;
|
3204
3204
|
}, {
|
3205
3205
|
requestId: z.ZodString;
|
3206
3206
|
type: z.ZodDefault<z.ZodLiteral<"APPROVE_CORRECTION">>;
|
@@ -3231,7 +3231,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3231
3231
|
option: string;
|
3232
3232
|
filename: string;
|
3233
3233
|
originalFilename: string;
|
3234
|
-
}[]
|
3234
|
+
}[]>;
|
3235
3235
|
requestId: string;
|
3236
3236
|
eventId: string;
|
3237
3237
|
transactionId: string;
|
@@ -3260,7 +3260,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3260
3260
|
option: string;
|
3261
3261
|
filename: string;
|
3262
3262
|
originalFilename: string;
|
3263
|
-
}[]
|
3263
|
+
}[]> | undefined;
|
3264
3264
|
}, {
|
3265
3265
|
data: Record<string, string | number | boolean | {
|
3266
3266
|
type: string;
|
@@ -3287,7 +3287,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3287
3287
|
option: string;
|
3288
3288
|
filename: string;
|
3289
3289
|
originalFilename: string;
|
3290
|
-
}[]
|
3290
|
+
}[]>;
|
3291
3291
|
requestId: string;
|
3292
3292
|
eventId: string;
|
3293
3293
|
transactionId: string;
|
@@ -3317,7 +3317,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3317
3317
|
option: string;
|
3318
3318
|
filename: string;
|
3319
3319
|
originalFilename: string;
|
3320
|
-
}[]
|
3320
|
+
}[]> | undefined;
|
3321
3321
|
}>;
|
3322
3322
|
export type ApproveCorrectionActionInput = z.infer<typeof ApproveCorrectionActionInput>;
|
3323
3323
|
/**
|
@@ -3408,7 +3408,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3408
3408
|
province: string;
|
3409
3409
|
urbanOrRural: "RURAL";
|
3410
3410
|
village?: string | null | undefined;
|
3411
|
-
}
|
3411
|
+
}>]>>;
|
3412
3412
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3413
3413
|
filename: z.ZodString;
|
3414
3414
|
originalFilename: z.ZodString;
|
@@ -3486,7 +3486,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3486
3486
|
province: string;
|
3487
3487
|
urbanOrRural: "RURAL";
|
3488
3488
|
village?: string | null | undefined;
|
3489
|
-
}
|
3489
|
+
}>]>>>;
|
3490
3490
|
}, {
|
3491
3491
|
type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
|
3492
3492
|
createdAtLocation: z.ZodString;
|
@@ -3517,7 +3517,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3517
3517
|
option: string;
|
3518
3518
|
filename: string;
|
3519
3519
|
originalFilename: string;
|
3520
|
-
}[]
|
3520
|
+
}[]>;
|
3521
3521
|
createdAtLocation: string;
|
3522
3522
|
eventId: string;
|
3523
3523
|
transactionId: string;
|
@@ -3546,7 +3546,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3546
3546
|
option: string;
|
3547
3547
|
filename: string;
|
3548
3548
|
originalFilename: string;
|
3549
|
-
}[]
|
3549
|
+
}[]> | undefined;
|
3550
3550
|
}, {
|
3551
3551
|
data: Record<string, string | number | boolean | {
|
3552
3552
|
type: string;
|
@@ -3573,7 +3573,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3573
3573
|
option: string;
|
3574
3574
|
filename: string;
|
3575
3575
|
originalFilename: string;
|
3576
|
-
}[]
|
3576
|
+
}[]>;
|
3577
3577
|
createdAtLocation: string;
|
3578
3578
|
eventId: string;
|
3579
3579
|
transactionId: string;
|
@@ -3603,7 +3603,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3603
3603
|
option: string;
|
3604
3604
|
filename: string;
|
3605
3605
|
originalFilename: string;
|
3606
|
-
}[]
|
3606
|
+
}[]> | undefined;
|
3607
3607
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3608
3608
|
eventId: z.ZodString;
|
3609
3609
|
transactionId: z.ZodString;
|
@@ -3684,7 +3684,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3684
3684
|
province: string;
|
3685
3685
|
urbanOrRural: "RURAL";
|
3686
3686
|
village?: string | null | undefined;
|
3687
|
-
}
|
3687
|
+
}>]>>;
|
3688
3688
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3689
3689
|
filename: z.ZodString;
|
3690
3690
|
originalFilename: z.ZodString;
|
@@ -3762,7 +3762,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3762
3762
|
province: string;
|
3763
3763
|
urbanOrRural: "RURAL";
|
3764
3764
|
village?: string | null | undefined;
|
3765
|
-
}
|
3765
|
+
}>]>>>;
|
3766
3766
|
}, {
|
3767
3767
|
type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
|
3768
3768
|
duplicates: z.ZodArray<z.ZodString, "many">;
|
@@ -3793,7 +3793,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3793
3793
|
option: string;
|
3794
3794
|
filename: string;
|
3795
3795
|
originalFilename: string;
|
3796
|
-
}[]
|
3796
|
+
}[]>;
|
3797
3797
|
eventId: string;
|
3798
3798
|
transactionId: string;
|
3799
3799
|
duplicates: string[];
|
@@ -3822,7 +3822,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3822
3822
|
option: string;
|
3823
3823
|
filename: string;
|
3824
3824
|
originalFilename: string;
|
3825
|
-
}[]
|
3825
|
+
}[]> | undefined;
|
3826
3826
|
}, {
|
3827
3827
|
data: Record<string, string | number | boolean | {
|
3828
3828
|
type: string;
|
@@ -3849,7 +3849,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3849
3849
|
option: string;
|
3850
3850
|
filename: string;
|
3851
3851
|
originalFilename: string;
|
3852
|
-
}[]
|
3852
|
+
}[]>;
|
3853
3853
|
eventId: string;
|
3854
3854
|
transactionId: string;
|
3855
3855
|
duplicates: string[];
|
@@ -3879,7 +3879,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3879
3879
|
option: string;
|
3880
3880
|
filename: string;
|
3881
3881
|
originalFilename: string;
|
3882
|
-
}[]
|
3882
|
+
}[]> | undefined;
|
3883
3883
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3884
3884
|
eventId: z.ZodString;
|
3885
3885
|
transactionId: z.ZodString;
|
@@ -3960,7 +3960,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3960
3960
|
province: string;
|
3961
3961
|
urbanOrRural: "RURAL";
|
3962
3962
|
village?: string | null | undefined;
|
3963
|
-
}
|
3963
|
+
}>]>>;
|
3964
3964
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3965
3965
|
filename: z.ZodString;
|
3966
3966
|
originalFilename: z.ZodString;
|
@@ -4038,7 +4038,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4038
4038
|
province: string;
|
4039
4039
|
urbanOrRural: "RURAL";
|
4040
4040
|
village?: string | null | undefined;
|
4041
|
-
}
|
4041
|
+
}>]>>>;
|
4042
4042
|
}, {
|
4043
4043
|
type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
|
4044
4044
|
identifiers: z.ZodObject<{
|
@@ -4078,7 +4078,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4078
4078
|
option: string;
|
4079
4079
|
filename: string;
|
4080
4080
|
originalFilename: string;
|
4081
|
-
}[]
|
4081
|
+
}[]>;
|
4082
4082
|
identifiers: {
|
4083
4083
|
trackingId: string;
|
4084
4084
|
registrationNumber: string;
|
@@ -4110,7 +4110,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4110
4110
|
option: string;
|
4111
4111
|
filename: string;
|
4112
4112
|
originalFilename: string;
|
4113
|
-
}[]
|
4113
|
+
}[]> | undefined;
|
4114
4114
|
}, {
|
4115
4115
|
data: Record<string, string | number | boolean | {
|
4116
4116
|
type: string;
|
@@ -4137,7 +4137,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4137
4137
|
option: string;
|
4138
4138
|
filename: string;
|
4139
4139
|
originalFilename: string;
|
4140
|
-
}[]
|
4140
|
+
}[]>;
|
4141
4141
|
identifiers: {
|
4142
4142
|
trackingId: string;
|
4143
4143
|
registrationNumber: string;
|
@@ -4170,7 +4170,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4170
4170
|
option: string;
|
4171
4171
|
filename: string;
|
4172
4172
|
originalFilename: string;
|
4173
|
-
}[]
|
4173
|
+
}[]> | undefined;
|
4174
4174
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4175
4175
|
eventId: z.ZodString;
|
4176
4176
|
transactionId: z.ZodString;
|
@@ -4251,7 +4251,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4251
4251
|
province: string;
|
4252
4252
|
urbanOrRural: "RURAL";
|
4253
4253
|
village?: string | null | undefined;
|
4254
|
-
}
|
4254
|
+
}>]>>;
|
4255
4255
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4256
4256
|
filename: z.ZodString;
|
4257
4257
|
originalFilename: z.ZodString;
|
@@ -4329,7 +4329,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4329
4329
|
province: string;
|
4330
4330
|
urbanOrRural: "RURAL";
|
4331
4331
|
village?: string | null | undefined;
|
4332
|
-
}
|
4332
|
+
}>]>>>;
|
4333
4333
|
}, {
|
4334
4334
|
type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
|
4335
4335
|
}>, "strip", z.ZodTypeAny, {
|
@@ -4359,7 +4359,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4359
4359
|
option: string;
|
4360
4360
|
filename: string;
|
4361
4361
|
originalFilename: string;
|
4362
|
-
}[]
|
4362
|
+
}[]>;
|
4363
4363
|
eventId: string;
|
4364
4364
|
transactionId: string;
|
4365
4365
|
metadata?: Record<string, string | number | boolean | {
|
@@ -4387,7 +4387,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4387
4387
|
option: string;
|
4388
4388
|
filename: string;
|
4389
4389
|
originalFilename: string;
|
4390
|
-
}[]
|
4390
|
+
}[]> | undefined;
|
4391
4391
|
}, {
|
4392
4392
|
data: Record<string, string | number | boolean | {
|
4393
4393
|
type: string;
|
@@ -4414,7 +4414,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4414
4414
|
option: string;
|
4415
4415
|
filename: string;
|
4416
4416
|
originalFilename: string;
|
4417
|
-
}[]
|
4417
|
+
}[]>;
|
4418
4418
|
eventId: string;
|
4419
4419
|
transactionId: string;
|
4420
4420
|
type?: "NOTIFY" | undefined;
|
@@ -4443,7 +4443,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4443
4443
|
option: string;
|
4444
4444
|
filename: string;
|
4445
4445
|
originalFilename: string;
|
4446
|
-
}[]
|
4446
|
+
}[]> | undefined;
|
4447
4447
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4448
4448
|
eventId: z.ZodString;
|
4449
4449
|
transactionId: z.ZodString;
|
@@ -4524,7 +4524,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4524
4524
|
province: string;
|
4525
4525
|
urbanOrRural: "RURAL";
|
4526
4526
|
village?: string | null | undefined;
|
4527
|
-
}
|
4527
|
+
}>]>>;
|
4528
4528
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4529
4529
|
filename: z.ZodString;
|
4530
4530
|
originalFilename: z.ZodString;
|
@@ -4602,7 +4602,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4602
4602
|
province: string;
|
4603
4603
|
urbanOrRural: "RURAL";
|
4604
4604
|
village?: string | null | undefined;
|
4605
|
-
}
|
4605
|
+
}>]>>>;
|
4606
4606
|
}, {
|
4607
4607
|
type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
|
4608
4608
|
}>, "strip", z.ZodTypeAny, {
|
@@ -4632,7 +4632,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4632
4632
|
option: string;
|
4633
4633
|
filename: string;
|
4634
4634
|
originalFilename: string;
|
4635
|
-
}[]
|
4635
|
+
}[]>;
|
4636
4636
|
eventId: string;
|
4637
4637
|
transactionId: string;
|
4638
4638
|
metadata?: Record<string, string | number | boolean | {
|
@@ -4660,7 +4660,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4660
4660
|
option: string;
|
4661
4661
|
filename: string;
|
4662
4662
|
originalFilename: string;
|
4663
|
-
}[]
|
4663
|
+
}[]> | undefined;
|
4664
4664
|
}, {
|
4665
4665
|
data: Record<string, string | number | boolean | {
|
4666
4666
|
type: string;
|
@@ -4687,7 +4687,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4687
4687
|
option: string;
|
4688
4688
|
filename: string;
|
4689
4689
|
originalFilename: string;
|
4690
|
-
}[]
|
4690
|
+
}[]>;
|
4691
4691
|
eventId: string;
|
4692
4692
|
transactionId: string;
|
4693
4693
|
type?: "DECLARE" | undefined;
|
@@ -4716,7 +4716,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4716
4716
|
option: string;
|
4717
4717
|
filename: string;
|
4718
4718
|
originalFilename: string;
|
4719
|
-
}[]
|
4719
|
+
}[]> | undefined;
|
4720
4720
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4721
4721
|
eventId: z.ZodString;
|
4722
4722
|
transactionId: z.ZodString;
|
@@ -4797,7 +4797,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4797
4797
|
province: string;
|
4798
4798
|
urbanOrRural: "RURAL";
|
4799
4799
|
village?: string | null | undefined;
|
4800
|
-
}
|
4800
|
+
}>]>>;
|
4801
4801
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4802
4802
|
filename: z.ZodString;
|
4803
4803
|
originalFilename: z.ZodString;
|
@@ -4875,7 +4875,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4875
4875
|
province: string;
|
4876
4876
|
urbanOrRural: "RURAL";
|
4877
4877
|
village?: string | null | undefined;
|
4878
|
-
}
|
4878
|
+
}>]>>>;
|
4879
4879
|
}, {
|
4880
4880
|
type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
|
4881
4881
|
}>, "strip", z.ZodTypeAny, {
|
@@ -4905,7 +4905,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4905
4905
|
option: string;
|
4906
4906
|
filename: string;
|
4907
4907
|
originalFilename: string;
|
4908
|
-
}[]
|
4908
|
+
}[]>;
|
4909
4909
|
eventId: string;
|
4910
4910
|
transactionId: string;
|
4911
4911
|
metadata?: Record<string, string | number | boolean | {
|
@@ -4933,7 +4933,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4933
4933
|
option: string;
|
4934
4934
|
filename: string;
|
4935
4935
|
originalFilename: string;
|
4936
|
-
}[]
|
4936
|
+
}[]> | undefined;
|
4937
4937
|
}, {
|
4938
4938
|
data: Record<string, string | number | boolean | {
|
4939
4939
|
type: string;
|
@@ -4960,7 +4960,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4960
4960
|
option: string;
|
4961
4961
|
filename: string;
|
4962
4962
|
originalFilename: string;
|
4963
|
-
}[]
|
4963
|
+
}[]>;
|
4964
4964
|
eventId: string;
|
4965
4965
|
transactionId: string;
|
4966
4966
|
type?: "REJECT" | undefined;
|
@@ -4989,7 +4989,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4989
4989
|
option: string;
|
4990
4990
|
filename: string;
|
4991
4991
|
originalFilename: string;
|
4992
|
-
}[]
|
4992
|
+
}[]> | undefined;
|
4993
4993
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4994
4994
|
eventId: z.ZodString;
|
4995
4995
|
transactionId: z.ZodString;
|
@@ -5070,7 +5070,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5070
5070
|
province: string;
|
5071
5071
|
urbanOrRural: "RURAL";
|
5072
5072
|
village?: string | null | undefined;
|
5073
|
-
}
|
5073
|
+
}>]>>;
|
5074
5074
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5075
5075
|
filename: z.ZodString;
|
5076
5076
|
originalFilename: z.ZodString;
|
@@ -5148,7 +5148,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5148
5148
|
province: string;
|
5149
5149
|
urbanOrRural: "RURAL";
|
5150
5150
|
village?: string | null | undefined;
|
5151
|
-
}
|
5151
|
+
}>]>>>;
|
5152
5152
|
}, {
|
5153
5153
|
type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
|
5154
5154
|
}>, "strip", z.ZodTypeAny, {
|
@@ -5178,7 +5178,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5178
5178
|
option: string;
|
5179
5179
|
filename: string;
|
5180
5180
|
originalFilename: string;
|
5181
|
-
}[]
|
5181
|
+
}[]>;
|
5182
5182
|
eventId: string;
|
5183
5183
|
transactionId: string;
|
5184
5184
|
metadata?: Record<string, string | number | boolean | {
|
@@ -5206,7 +5206,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5206
5206
|
option: string;
|
5207
5207
|
filename: string;
|
5208
5208
|
originalFilename: string;
|
5209
|
-
}[]
|
5209
|
+
}[]> | undefined;
|
5210
5210
|
}, {
|
5211
5211
|
data: Record<string, string | number | boolean | {
|
5212
5212
|
type: string;
|
@@ -5233,7 +5233,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5233
5233
|
option: string;
|
5234
5234
|
filename: string;
|
5235
5235
|
originalFilename: string;
|
5236
|
-
}[]
|
5236
|
+
}[]>;
|
5237
5237
|
eventId: string;
|
5238
5238
|
transactionId: string;
|
5239
5239
|
type?: "MARKED_AS_DUPLICATE" | undefined;
|
@@ -5262,7 +5262,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5262
5262
|
option: string;
|
5263
5263
|
filename: string;
|
5264
5264
|
originalFilename: string;
|
5265
|
-
}[]
|
5265
|
+
}[]> | undefined;
|
5266
5266
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5267
5267
|
eventId: z.ZodString;
|
5268
5268
|
transactionId: z.ZodString;
|
@@ -5343,7 +5343,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5343
5343
|
province: string;
|
5344
5344
|
urbanOrRural: "RURAL";
|
5345
5345
|
village?: string | null | undefined;
|
5346
|
-
}
|
5346
|
+
}>]>>;
|
5347
5347
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5348
5348
|
filename: z.ZodString;
|
5349
5349
|
originalFilename: z.ZodString;
|
@@ -5421,7 +5421,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5421
5421
|
province: string;
|
5422
5422
|
urbanOrRural: "RURAL";
|
5423
5423
|
village?: string | null | undefined;
|
5424
|
-
}
|
5424
|
+
}>]>>>;
|
5425
5425
|
}, {
|
5426
5426
|
type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
|
5427
5427
|
}>, "strip", z.ZodTypeAny, {
|
@@ -5451,7 +5451,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5451
5451
|
option: string;
|
5452
5452
|
filename: string;
|
5453
5453
|
originalFilename: string;
|
5454
|
-
}[]
|
5454
|
+
}[]>;
|
5455
5455
|
eventId: string;
|
5456
5456
|
transactionId: string;
|
5457
5457
|
metadata?: Record<string, string | number | boolean | {
|
@@ -5479,7 +5479,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5479
5479
|
option: string;
|
5480
5480
|
filename: string;
|
5481
5481
|
originalFilename: string;
|
5482
|
-
}[]
|
5482
|
+
}[]> | undefined;
|
5483
5483
|
}, {
|
5484
5484
|
data: Record<string, string | number | boolean | {
|
5485
5485
|
type: string;
|
@@ -5506,7 +5506,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5506
5506
|
option: string;
|
5507
5507
|
filename: string;
|
5508
5508
|
originalFilename: string;
|
5509
|
-
}[]
|
5509
|
+
}[]>;
|
5510
5510
|
eventId: string;
|
5511
5511
|
transactionId: string;
|
5512
5512
|
type?: "ARCHIVE" | undefined;
|
@@ -5535,7 +5535,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5535
5535
|
option: string;
|
5536
5536
|
filename: string;
|
5537
5537
|
originalFilename: string;
|
5538
|
-
}[]
|
5538
|
+
}[]> | undefined;
|
5539
5539
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5540
5540
|
eventId: z.ZodString;
|
5541
5541
|
transactionId: z.ZodString;
|
@@ -5616,7 +5616,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5616
5616
|
province: string;
|
5617
5617
|
urbanOrRural: "RURAL";
|
5618
5618
|
village?: string | null | undefined;
|
5619
|
-
}
|
5619
|
+
}>]>>;
|
5620
5620
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5621
5621
|
filename: z.ZodString;
|
5622
5622
|
originalFilename: z.ZodString;
|
@@ -5694,7 +5694,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5694
5694
|
province: string;
|
5695
5695
|
urbanOrRural: "RURAL";
|
5696
5696
|
village?: string | null | undefined;
|
5697
|
-
}
|
5697
|
+
}>]>>>;
|
5698
5698
|
}, {
|
5699
5699
|
type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
|
5700
5700
|
assignedTo: z.ZodString;
|
@@ -5725,7 +5725,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5725
5725
|
option: string;
|
5726
5726
|
filename: string;
|
5727
5727
|
originalFilename: string;
|
5728
|
-
}[]
|
5728
|
+
}[]>;
|
5729
5729
|
assignedTo: string;
|
5730
5730
|
eventId: string;
|
5731
5731
|
transactionId: string;
|
@@ -5754,7 +5754,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5754
5754
|
option: string;
|
5755
5755
|
filename: string;
|
5756
5756
|
originalFilename: string;
|
5757
|
-
}[]
|
5757
|
+
}[]> | undefined;
|
5758
5758
|
}, {
|
5759
5759
|
data: Record<string, string | number | boolean | {
|
5760
5760
|
type: string;
|
@@ -5781,7 +5781,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5781
5781
|
option: string;
|
5782
5782
|
filename: string;
|
5783
5783
|
originalFilename: string;
|
5784
|
-
}[]
|
5784
|
+
}[]>;
|
5785
5785
|
assignedTo: string;
|
5786
5786
|
eventId: string;
|
5787
5787
|
transactionId: string;
|
@@ -5811,7 +5811,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5811
5811
|
option: string;
|
5812
5812
|
filename: string;
|
5813
5813
|
originalFilename: string;
|
5814
|
-
}[]
|
5814
|
+
}[]> | undefined;
|
5815
5815
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5816
5816
|
eventId: z.ZodString;
|
5817
5817
|
transactionId: z.ZodString;
|
@@ -5892,7 +5892,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5892
5892
|
province: string;
|
5893
5893
|
urbanOrRural: "RURAL";
|
5894
5894
|
village?: string | null | undefined;
|
5895
|
-
}
|
5895
|
+
}>]>>;
|
5896
5896
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5897
5897
|
filename: z.ZodString;
|
5898
5898
|
originalFilename: z.ZodString;
|
@@ -5970,7 +5970,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5970
5970
|
province: string;
|
5971
5971
|
urbanOrRural: "RURAL";
|
5972
5972
|
village?: string | null | undefined;
|
5973
|
-
}
|
5973
|
+
}>]>>>;
|
5974
5974
|
}, {
|
5975
5975
|
type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
|
5976
5976
|
}>, "strip", z.ZodTypeAny, {
|
@@ -6000,7 +6000,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6000
6000
|
option: string;
|
6001
6001
|
filename: string;
|
6002
6002
|
originalFilename: string;
|
6003
|
-
}[]
|
6003
|
+
}[]>;
|
6004
6004
|
eventId: string;
|
6005
6005
|
transactionId: string;
|
6006
6006
|
metadata?: Record<string, string | number | boolean | {
|
@@ -6028,7 +6028,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6028
6028
|
option: string;
|
6029
6029
|
filename: string;
|
6030
6030
|
originalFilename: string;
|
6031
|
-
}[]
|
6031
|
+
}[]> | undefined;
|
6032
6032
|
}, {
|
6033
6033
|
data: Record<string, string | number | boolean | {
|
6034
6034
|
type: string;
|
@@ -6055,7 +6055,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6055
6055
|
option: string;
|
6056
6056
|
filename: string;
|
6057
6057
|
originalFilename: string;
|
6058
|
-
}[]
|
6058
|
+
}[]>;
|
6059
6059
|
eventId: string;
|
6060
6060
|
transactionId: string;
|
6061
6061
|
type?: "UNASSIGN" | undefined;
|
@@ -6084,7 +6084,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6084
6084
|
option: string;
|
6085
6085
|
filename: string;
|
6086
6086
|
originalFilename: string;
|
6087
|
-
}[]
|
6087
|
+
}[]> | undefined;
|
6088
6088
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6089
6089
|
eventId: z.ZodString;
|
6090
6090
|
transactionId: z.ZodString;
|
@@ -6165,7 +6165,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6165
6165
|
province: string;
|
6166
6166
|
urbanOrRural: "RURAL";
|
6167
6167
|
village?: string | null | undefined;
|
6168
|
-
}
|
6168
|
+
}>]>>;
|
6169
6169
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6170
6170
|
filename: z.ZodString;
|
6171
6171
|
originalFilename: z.ZodString;
|
@@ -6243,7 +6243,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6243
6243
|
province: string;
|
6244
6244
|
urbanOrRural: "RURAL";
|
6245
6245
|
village?: string | null | undefined;
|
6246
|
-
}
|
6246
|
+
}>]>>>;
|
6247
6247
|
}, {
|
6248
6248
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
6249
6249
|
}>, "strip", z.ZodTypeAny, {
|
@@ -6273,7 +6273,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6273
6273
|
option: string;
|
6274
6274
|
filename: string;
|
6275
6275
|
originalFilename: string;
|
6276
|
-
}[]
|
6276
|
+
}[]>;
|
6277
6277
|
eventId: string;
|
6278
6278
|
transactionId: string;
|
6279
6279
|
metadata?: Record<string, string | number | boolean | {
|
@@ -6301,7 +6301,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6301
6301
|
option: string;
|
6302
6302
|
filename: string;
|
6303
6303
|
originalFilename: string;
|
6304
|
-
}[]
|
6304
|
+
}[]> | undefined;
|
6305
6305
|
}, {
|
6306
6306
|
data: Record<string, string | number | boolean | {
|
6307
6307
|
type: string;
|
@@ -6328,7 +6328,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6328
6328
|
option: string;
|
6329
6329
|
filename: string;
|
6330
6330
|
originalFilename: string;
|
6331
|
-
}[]
|
6331
|
+
}[]>;
|
6332
6332
|
eventId: string;
|
6333
6333
|
transactionId: string;
|
6334
6334
|
type?: "PRINT_CERTIFICATE" | undefined;
|
@@ -6357,7 +6357,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6357
6357
|
option: string;
|
6358
6358
|
filename: string;
|
6359
6359
|
originalFilename: string;
|
6360
|
-
}[]
|
6360
|
+
}[]> | undefined;
|
6361
6361
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6362
6362
|
eventId: z.ZodString;
|
6363
6363
|
transactionId: z.ZodString;
|
@@ -6438,7 +6438,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6438
6438
|
province: string;
|
6439
6439
|
urbanOrRural: "RURAL";
|
6440
6440
|
village?: string | null | undefined;
|
6441
|
-
}
|
6441
|
+
}>]>>;
|
6442
6442
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6443
6443
|
filename: z.ZodString;
|
6444
6444
|
originalFilename: z.ZodString;
|
@@ -6516,7 +6516,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6516
6516
|
province: string;
|
6517
6517
|
urbanOrRural: "RURAL";
|
6518
6518
|
village?: string | null | undefined;
|
6519
|
-
}
|
6519
|
+
}>]>>>;
|
6520
6520
|
}, {
|
6521
6521
|
type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
|
6522
6522
|
}>, "strip", z.ZodTypeAny, {
|
@@ -6546,7 +6546,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6546
6546
|
option: string;
|
6547
6547
|
filename: string;
|
6548
6548
|
originalFilename: string;
|
6549
|
-
}[]
|
6549
|
+
}[]>;
|
6550
6550
|
eventId: string;
|
6551
6551
|
transactionId: string;
|
6552
6552
|
metadata?: Record<string, string | number | boolean | {
|
@@ -6574,7 +6574,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6574
6574
|
option: string;
|
6575
6575
|
filename: string;
|
6576
6576
|
originalFilename: string;
|
6577
|
-
}[]
|
6577
|
+
}[]> | undefined;
|
6578
6578
|
}, {
|
6579
6579
|
data: Record<string, string | number | boolean | {
|
6580
6580
|
type: string;
|
@@ -6601,7 +6601,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6601
6601
|
option: string;
|
6602
6602
|
filename: string;
|
6603
6603
|
originalFilename: string;
|
6604
|
-
}[]
|
6604
|
+
}[]>;
|
6605
6605
|
eventId: string;
|
6606
6606
|
transactionId: string;
|
6607
6607
|
type?: "REQUEST_CORRECTION" | undefined;
|
@@ -6630,7 +6630,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6630
6630
|
option: string;
|
6631
6631
|
filename: string;
|
6632
6632
|
originalFilename: string;
|
6633
|
-
}[]
|
6633
|
+
}[]> | undefined;
|
6634
6634
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6635
6635
|
eventId: z.ZodString;
|
6636
6636
|
transactionId: z.ZodString;
|
@@ -6711,7 +6711,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6711
6711
|
province: string;
|
6712
6712
|
urbanOrRural: "RURAL";
|
6713
6713
|
village?: string | null | undefined;
|
6714
|
-
}
|
6714
|
+
}>]>>;
|
6715
6715
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6716
6716
|
filename: z.ZodString;
|
6717
6717
|
originalFilename: z.ZodString;
|
@@ -6789,7 +6789,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6789
6789
|
province: string;
|
6790
6790
|
urbanOrRural: "RURAL";
|
6791
6791
|
village?: string | null | undefined;
|
6792
|
-
}
|
6792
|
+
}>]>>>;
|
6793
6793
|
}, {
|
6794
6794
|
requestId: z.ZodString;
|
6795
6795
|
type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
|
@@ -6820,7 +6820,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6820
6820
|
option: string;
|
6821
6821
|
filename: string;
|
6822
6822
|
originalFilename: string;
|
6823
|
-
}[]
|
6823
|
+
}[]>;
|
6824
6824
|
requestId: string;
|
6825
6825
|
eventId: string;
|
6826
6826
|
transactionId: string;
|
@@ -6849,7 +6849,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6849
6849
|
option: string;
|
6850
6850
|
filename: string;
|
6851
6851
|
originalFilename: string;
|
6852
|
-
}[]
|
6852
|
+
}[]> | undefined;
|
6853
6853
|
}, {
|
6854
6854
|
data: Record<string, string | number | boolean | {
|
6855
6855
|
type: string;
|
@@ -6876,7 +6876,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6876
6876
|
option: string;
|
6877
6877
|
filename: string;
|
6878
6878
|
originalFilename: string;
|
6879
|
-
}[]
|
6879
|
+
}[]>;
|
6880
6880
|
requestId: string;
|
6881
6881
|
eventId: string;
|
6882
6882
|
transactionId: string;
|
@@ -6906,7 +6906,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6906
6906
|
option: string;
|
6907
6907
|
filename: string;
|
6908
6908
|
originalFilename: string;
|
6909
|
-
}[]
|
6909
|
+
}[]> | undefined;
|
6910
6910
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6911
6911
|
eventId: z.ZodString;
|
6912
6912
|
transactionId: z.ZodString;
|
@@ -6987,7 +6987,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6987
6987
|
province: string;
|
6988
6988
|
urbanOrRural: "RURAL";
|
6989
6989
|
village?: string | null | undefined;
|
6990
|
-
}
|
6990
|
+
}>]>>;
|
6991
6991
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6992
6992
|
filename: z.ZodString;
|
6993
6993
|
originalFilename: z.ZodString;
|
@@ -7065,7 +7065,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7065
7065
|
province: string;
|
7066
7066
|
urbanOrRural: "RURAL";
|
7067
7067
|
village?: string | null | undefined;
|
7068
|
-
}
|
7068
|
+
}>]>>>;
|
7069
7069
|
}, {
|
7070
7070
|
requestId: z.ZodString;
|
7071
7071
|
type: z.ZodDefault<z.ZodLiteral<"APPROVE_CORRECTION">>;
|
@@ -7096,7 +7096,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7096
7096
|
option: string;
|
7097
7097
|
filename: string;
|
7098
7098
|
originalFilename: string;
|
7099
|
-
}[]
|
7099
|
+
}[]>;
|
7100
7100
|
requestId: string;
|
7101
7101
|
eventId: string;
|
7102
7102
|
transactionId: string;
|
@@ -7125,7 +7125,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7125
7125
|
option: string;
|
7126
7126
|
filename: string;
|
7127
7127
|
originalFilename: string;
|
7128
|
-
}[]
|
7128
|
+
}[]> | undefined;
|
7129
7129
|
}, {
|
7130
7130
|
data: Record<string, string | number | boolean | {
|
7131
7131
|
type: string;
|
@@ -7152,7 +7152,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7152
7152
|
option: string;
|
7153
7153
|
filename: string;
|
7154
7154
|
originalFilename: string;
|
7155
|
-
}[]
|
7155
|
+
}[]>;
|
7156
7156
|
requestId: string;
|
7157
7157
|
eventId: string;
|
7158
7158
|
transactionId: string;
|
@@ -7182,7 +7182,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7182
7182
|
option: string;
|
7183
7183
|
filename: string;
|
7184
7184
|
originalFilename: string;
|
7185
|
-
}[]
|
7185
|
+
}[]> | undefined;
|
7186
7186
|
}>]>;
|
7187
7187
|
export type ActionInput = z.input<typeof ActionInput>;
|
7188
7188
|
export type ActionInputWithType = z.infer<typeof ActionInput>;
|