@opencrvs/toolkit 1.8.0-rc.f876361 → 1.8.0-rc.f8e4107
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 +3159 -158
- package/dist/commons/conditionals/conditionals.d.ts +80 -8
- package/dist/commons/conditionals/validate.d.ts +14 -17
- package/dist/commons/events/ActionDocument.d.ts +212 -101
- package/dist/commons/events/ActionInput.d.ts +1109 -214
- package/dist/commons/events/ActionType.d.ts +5 -3
- package/dist/commons/events/AdvancedSearchConfig.d.ts +107 -14
- package/dist/commons/events/Conditional.d.ts +21 -5
- package/dist/commons/events/Draft.d.ts +24 -12
- package/dist/commons/events/EventConfig.d.ts +132 -66
- package/dist/commons/events/EventDocument.d.ts +161 -76
- package/dist/commons/events/EventIndex.d.ts +746 -4
- package/dist/commons/events/EventMetadata.d.ts +6 -3
- package/dist/commons/events/FieldConfig.d.ts +208 -70
- package/dist/commons/events/PageConfig.d.ts +0 -24
- package/dist/commons/events/TemplateConfig.d.ts +5 -5
- package/dist/commons/events/defineConfig.d.ts +15 -11
- package/dist/commons/events/test.utils.d.ts +20 -112
- package/dist/commons/events/utils.d.ts +60 -54
- package/dist/commons/events/utils.test.d.ts +2 -0
- package/dist/conditionals/index.js +180 -151
- package/dist/events/index.js +1325 -1103
- package/package.json +1 -1
@@ -236,7 +236,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
236
236
|
addressLine3?: string | null | undefined;
|
237
237
|
postcodeOrZip?: string | null | undefined;
|
238
238
|
}>]>>>;
|
239
|
-
createdAtLocation: z.ZodString
|
239
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
240
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
240
241
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
241
242
|
originalActionId: z.ZodOptional<z.ZodString>;
|
242
243
|
}, {
|
@@ -285,7 +286,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
285
286
|
filename: string;
|
286
287
|
originalFilename: string;
|
287
288
|
}[] | undefined>;
|
288
|
-
createdAtLocation: string;
|
289
289
|
annotation?: Record<string, string | number | boolean | {
|
290
290
|
type: string;
|
291
291
|
filename: string;
|
@@ -324,6 +324,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
324
324
|
filename: string;
|
325
325
|
originalFilename: string;
|
326
326
|
}[] | undefined> | undefined;
|
327
|
+
createdAtLocation?: string | undefined;
|
328
|
+
updatedAtLocation?: string | undefined;
|
327
329
|
originalActionId?: string | undefined;
|
328
330
|
}, {
|
329
331
|
type: "CREATE";
|
@@ -369,7 +371,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
369
371
|
filename: string;
|
370
372
|
originalFilename: string;
|
371
373
|
}[] | undefined>;
|
372
|
-
createdAtLocation: string;
|
373
374
|
annotation?: Record<string, string | number | boolean | {
|
374
375
|
type: string;
|
375
376
|
filename: string;
|
@@ -408,6 +409,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
408
409
|
filename: string;
|
409
410
|
originalFilename: string;
|
410
411
|
}[] | undefined> | undefined;
|
412
|
+
createdAtLocation?: string | undefined;
|
413
|
+
updatedAtLocation?: string | undefined;
|
411
414
|
originalActionId?: string | undefined;
|
412
415
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
413
416
|
id: z.ZodString;
|
@@ -641,7 +644,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
641
644
|
addressLine3?: string | null | undefined;
|
642
645
|
postcodeOrZip?: string | null | undefined;
|
643
646
|
}>]>>>;
|
644
|
-
createdAtLocation: z.ZodString
|
647
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
648
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
645
649
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
646
650
|
originalActionId: z.ZodOptional<z.ZodString>;
|
647
651
|
}, {
|
@@ -690,7 +694,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
690
694
|
filename: string;
|
691
695
|
originalFilename: string;
|
692
696
|
}[] | undefined>;
|
693
|
-
createdAtLocation: string;
|
694
697
|
annotation?: Record<string, string | number | boolean | {
|
695
698
|
type: string;
|
696
699
|
filename: string;
|
@@ -729,6 +732,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
729
732
|
filename: string;
|
730
733
|
originalFilename: string;
|
731
734
|
}[] | undefined> | undefined;
|
735
|
+
createdAtLocation?: string | undefined;
|
736
|
+
updatedAtLocation?: string | undefined;
|
732
737
|
originalActionId?: string | undefined;
|
733
738
|
}, {
|
734
739
|
type: "VALIDATE";
|
@@ -774,7 +779,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
774
779
|
filename: string;
|
775
780
|
originalFilename: string;
|
776
781
|
}[] | undefined>;
|
777
|
-
createdAtLocation: string;
|
778
782
|
annotation?: Record<string, string | number | boolean | {
|
779
783
|
type: string;
|
780
784
|
filename: string;
|
@@ -813,6 +817,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
813
817
|
filename: string;
|
814
818
|
originalFilename: string;
|
815
819
|
}[] | undefined> | undefined;
|
820
|
+
createdAtLocation?: string | undefined;
|
821
|
+
updatedAtLocation?: string | undefined;
|
816
822
|
originalActionId?: string | undefined;
|
817
823
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
818
824
|
id: z.ZodString;
|
@@ -1046,7 +1052,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1046
1052
|
addressLine3?: string | null | undefined;
|
1047
1053
|
postcodeOrZip?: string | null | undefined;
|
1048
1054
|
}>]>>>;
|
1049
|
-
createdAtLocation: z.ZodString
|
1055
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
1056
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1050
1057
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1051
1058
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1052
1059
|
}, {
|
@@ -1095,7 +1102,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1095
1102
|
filename: string;
|
1096
1103
|
originalFilename: string;
|
1097
1104
|
}[] | undefined>;
|
1098
|
-
createdAtLocation: string;
|
1099
1105
|
annotation?: Record<string, string | number | boolean | {
|
1100
1106
|
type: string;
|
1101
1107
|
filename: string;
|
@@ -1134,6 +1140,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1134
1140
|
filename: string;
|
1135
1141
|
originalFilename: string;
|
1136
1142
|
}[] | undefined> | undefined;
|
1143
|
+
createdAtLocation?: string | undefined;
|
1144
|
+
updatedAtLocation?: string | undefined;
|
1137
1145
|
originalActionId?: string | undefined;
|
1138
1146
|
}, {
|
1139
1147
|
type: "REJECT";
|
@@ -1179,7 +1187,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1179
1187
|
filename: string;
|
1180
1188
|
originalFilename: string;
|
1181
1189
|
}[] | undefined>;
|
1182
|
-
createdAtLocation: string;
|
1183
1190
|
annotation?: Record<string, string | number | boolean | {
|
1184
1191
|
type: string;
|
1185
1192
|
filename: string;
|
@@ -1218,6 +1225,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1218
1225
|
filename: string;
|
1219
1226
|
originalFilename: string;
|
1220
1227
|
}[] | undefined> | undefined;
|
1228
|
+
createdAtLocation?: string | undefined;
|
1229
|
+
updatedAtLocation?: string | undefined;
|
1221
1230
|
originalActionId?: string | undefined;
|
1222
1231
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1223
1232
|
id: z.ZodString;
|
@@ -1451,7 +1460,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1451
1460
|
addressLine3?: string | null | undefined;
|
1452
1461
|
postcodeOrZip?: string | null | undefined;
|
1453
1462
|
}>]>>>;
|
1454
|
-
createdAtLocation: z.ZodString
|
1463
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
1464
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1455
1465
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1456
1466
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1457
1467
|
}, {
|
@@ -1500,7 +1510,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1500
1510
|
filename: string;
|
1501
1511
|
originalFilename: string;
|
1502
1512
|
}[] | undefined>;
|
1503
|
-
createdAtLocation: string;
|
1504
1513
|
annotation?: Record<string, string | number | boolean | {
|
1505
1514
|
type: string;
|
1506
1515
|
filename: string;
|
@@ -1539,6 +1548,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1539
1548
|
filename: string;
|
1540
1549
|
originalFilename: string;
|
1541
1550
|
}[] | undefined> | undefined;
|
1551
|
+
createdAtLocation?: string | undefined;
|
1552
|
+
updatedAtLocation?: string | undefined;
|
1542
1553
|
originalActionId?: string | undefined;
|
1543
1554
|
}, {
|
1544
1555
|
type: "MARKED_AS_DUPLICATE";
|
@@ -1584,7 +1595,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1584
1595
|
filename: string;
|
1585
1596
|
originalFilename: string;
|
1586
1597
|
}[] | undefined>;
|
1587
|
-
createdAtLocation: string;
|
1588
1598
|
annotation?: Record<string, string | number | boolean | {
|
1589
1599
|
type: string;
|
1590
1600
|
filename: string;
|
@@ -1623,6 +1633,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1623
1633
|
filename: string;
|
1624
1634
|
originalFilename: string;
|
1625
1635
|
}[] | undefined> | undefined;
|
1636
|
+
createdAtLocation?: string | undefined;
|
1637
|
+
updatedAtLocation?: string | undefined;
|
1626
1638
|
originalActionId?: string | undefined;
|
1627
1639
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1628
1640
|
id: z.ZodString;
|
@@ -1856,7 +1868,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1856
1868
|
addressLine3?: string | null | undefined;
|
1857
1869
|
postcodeOrZip?: string | null | undefined;
|
1858
1870
|
}>]>>>;
|
1859
|
-
createdAtLocation: z.ZodString
|
1871
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
1872
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1860
1873
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1861
1874
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1862
1875
|
}, {
|
@@ -1905,7 +1918,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1905
1918
|
filename: string;
|
1906
1919
|
originalFilename: string;
|
1907
1920
|
}[] | undefined>;
|
1908
|
-
createdAtLocation: string;
|
1909
1921
|
annotation?: Record<string, string | number | boolean | {
|
1910
1922
|
type: string;
|
1911
1923
|
filename: string;
|
@@ -1944,6 +1956,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1944
1956
|
filename: string;
|
1945
1957
|
originalFilename: string;
|
1946
1958
|
}[] | undefined> | undefined;
|
1959
|
+
createdAtLocation?: string | undefined;
|
1960
|
+
updatedAtLocation?: string | undefined;
|
1947
1961
|
originalActionId?: string | undefined;
|
1948
1962
|
}, {
|
1949
1963
|
type: "ARCHIVE";
|
@@ -1989,7 +2003,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
1989
2003
|
filename: string;
|
1990
2004
|
originalFilename: string;
|
1991
2005
|
}[] | undefined>;
|
1992
|
-
createdAtLocation: string;
|
1993
2006
|
annotation?: Record<string, string | number | boolean | {
|
1994
2007
|
type: string;
|
1995
2008
|
filename: string;
|
@@ -2028,6 +2041,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2028
2041
|
filename: string;
|
2029
2042
|
originalFilename: string;
|
2030
2043
|
}[] | undefined> | undefined;
|
2044
|
+
createdAtLocation?: string | undefined;
|
2045
|
+
updatedAtLocation?: string | undefined;
|
2031
2046
|
originalActionId?: string | undefined;
|
2032
2047
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2033
2048
|
id: z.ZodString;
|
@@ -2261,7 +2276,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2261
2276
|
addressLine3?: string | null | undefined;
|
2262
2277
|
postcodeOrZip?: string | null | undefined;
|
2263
2278
|
}>]>>>;
|
2264
|
-
createdAtLocation: z.ZodString
|
2279
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
2280
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
2265
2281
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2266
2282
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2267
2283
|
}, {
|
@@ -2310,7 +2326,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2310
2326
|
filename: string;
|
2311
2327
|
originalFilename: string;
|
2312
2328
|
}[] | undefined>;
|
2313
|
-
createdAtLocation: string;
|
2314
2329
|
annotation?: Record<string, string | number | boolean | {
|
2315
2330
|
type: string;
|
2316
2331
|
filename: string;
|
@@ -2349,6 +2364,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2349
2364
|
filename: string;
|
2350
2365
|
originalFilename: string;
|
2351
2366
|
}[] | undefined> | undefined;
|
2367
|
+
createdAtLocation?: string | undefined;
|
2368
|
+
updatedAtLocation?: string | undefined;
|
2352
2369
|
originalActionId?: string | undefined;
|
2353
2370
|
}, {
|
2354
2371
|
type: "NOTIFY";
|
@@ -2394,7 +2411,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2394
2411
|
filename: string;
|
2395
2412
|
originalFilename: string;
|
2396
2413
|
}[] | undefined>;
|
2397
|
-
createdAtLocation: string;
|
2398
2414
|
annotation?: Record<string, string | number | boolean | {
|
2399
2415
|
type: string;
|
2400
2416
|
filename: string;
|
@@ -2433,6 +2449,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2433
2449
|
filename: string;
|
2434
2450
|
originalFilename: string;
|
2435
2451
|
}[] | undefined> | undefined;
|
2452
|
+
createdAtLocation?: string | undefined;
|
2453
|
+
updatedAtLocation?: string | undefined;
|
2436
2454
|
originalActionId?: string | undefined;
|
2437
2455
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2438
2456
|
id: z.ZodString;
|
@@ -2666,7 +2684,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2666
2684
|
addressLine3?: string | null | undefined;
|
2667
2685
|
postcodeOrZip?: string | null | undefined;
|
2668
2686
|
}>]>>>;
|
2669
|
-
createdAtLocation: z.ZodString
|
2687
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
2688
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
2670
2689
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2671
2690
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2672
2691
|
}, {
|
@@ -2716,7 +2735,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2716
2735
|
filename: string;
|
2717
2736
|
originalFilename: string;
|
2718
2737
|
}[] | undefined>;
|
2719
|
-
createdAtLocation: string;
|
2720
2738
|
annotation?: Record<string, string | number | boolean | {
|
2721
2739
|
type: string;
|
2722
2740
|
filename: string;
|
@@ -2755,6 +2773,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2755
2773
|
filename: string;
|
2756
2774
|
originalFilename: string;
|
2757
2775
|
}[] | undefined> | undefined;
|
2776
|
+
createdAtLocation?: string | undefined;
|
2777
|
+
updatedAtLocation?: string | undefined;
|
2758
2778
|
originalActionId?: string | undefined;
|
2759
2779
|
registrationNumber?: string | undefined;
|
2760
2780
|
}, {
|
@@ -2801,7 +2821,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
2801
2821
|
filename: string;
|
2802
2822
|
originalFilename: string;
|
2803
2823
|
}[] | undefined>;
|
2804
|
-
createdAtLocation: string;
|
2805
2824
|
annotation?: Record<string, string | number | boolean | {
|
2806
2825
|
type: string;
|
2807
2826
|
filename: string;
|
@@ -2840,6 +2859,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2840
2859
|
filename: string;
|
2841
2860
|
originalFilename: string;
|
2842
2861
|
}[] | undefined> | undefined;
|
2862
|
+
createdAtLocation?: string | undefined;
|
2863
|
+
updatedAtLocation?: string | undefined;
|
2843
2864
|
originalActionId?: string | undefined;
|
2844
2865
|
registrationNumber?: string | undefined;
|
2845
2866
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -3074,7 +3095,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3074
3095
|
addressLine3?: string | null | undefined;
|
3075
3096
|
postcodeOrZip?: string | null | undefined;
|
3076
3097
|
}>]>>>;
|
3077
|
-
createdAtLocation: z.ZodString
|
3098
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
3099
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3078
3100
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3079
3101
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3080
3102
|
}, {
|
@@ -3123,7 +3145,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3123
3145
|
filename: string;
|
3124
3146
|
originalFilename: string;
|
3125
3147
|
}[] | undefined>;
|
3126
|
-
createdAtLocation: string;
|
3127
3148
|
annotation?: Record<string, string | number | boolean | {
|
3128
3149
|
type: string;
|
3129
3150
|
filename: string;
|
@@ -3162,6 +3183,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3162
3183
|
filename: string;
|
3163
3184
|
originalFilename: string;
|
3164
3185
|
}[] | undefined> | undefined;
|
3186
|
+
createdAtLocation?: string | undefined;
|
3187
|
+
updatedAtLocation?: string | undefined;
|
3165
3188
|
originalActionId?: string | undefined;
|
3166
3189
|
}, {
|
3167
3190
|
type: "DECLARE";
|
@@ -3207,7 +3230,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3207
3230
|
filename: string;
|
3208
3231
|
originalFilename: string;
|
3209
3232
|
}[] | undefined>;
|
3210
|
-
createdAtLocation: string;
|
3211
3233
|
annotation?: Record<string, string | number | boolean | {
|
3212
3234
|
type: string;
|
3213
3235
|
filename: string;
|
@@ -3246,6 +3268,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3246
3268
|
filename: string;
|
3247
3269
|
originalFilename: string;
|
3248
3270
|
}[] | undefined> | undefined;
|
3271
|
+
createdAtLocation?: string | undefined;
|
3272
|
+
updatedAtLocation?: string | undefined;
|
3249
3273
|
originalActionId?: string | undefined;
|
3250
3274
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3251
3275
|
id: z.ZodString;
|
@@ -3479,7 +3503,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3479
3503
|
addressLine3?: string | null | undefined;
|
3480
3504
|
postcodeOrZip?: string | null | undefined;
|
3481
3505
|
}>]>>>;
|
3482
|
-
createdAtLocation: z.ZodString
|
3506
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
3507
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3483
3508
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3484
3509
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3485
3510
|
}, {
|
@@ -3529,7 +3554,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3529
3554
|
filename: string;
|
3530
3555
|
originalFilename: string;
|
3531
3556
|
}[] | undefined>;
|
3532
|
-
createdAtLocation: string;
|
3533
3557
|
assignedTo: string;
|
3534
3558
|
annotation?: Record<string, string | number | boolean | {
|
3535
3559
|
type: string;
|
@@ -3569,6 +3593,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3569
3593
|
filename: string;
|
3570
3594
|
originalFilename: string;
|
3571
3595
|
}[] | undefined> | undefined;
|
3596
|
+
createdAtLocation?: string | undefined;
|
3597
|
+
updatedAtLocation?: string | undefined;
|
3572
3598
|
originalActionId?: string | undefined;
|
3573
3599
|
}, {
|
3574
3600
|
type: "ASSIGN";
|
@@ -3614,7 +3640,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3614
3640
|
filename: string;
|
3615
3641
|
originalFilename: string;
|
3616
3642
|
}[] | undefined>;
|
3617
|
-
createdAtLocation: string;
|
3618
3643
|
assignedTo: string;
|
3619
3644
|
annotation?: Record<string, string | number | boolean | {
|
3620
3645
|
type: string;
|
@@ -3654,6 +3679,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3654
3679
|
filename: string;
|
3655
3680
|
originalFilename: string;
|
3656
3681
|
}[] | undefined> | undefined;
|
3682
|
+
createdAtLocation?: string | undefined;
|
3683
|
+
updatedAtLocation?: string | undefined;
|
3657
3684
|
originalActionId?: string | undefined;
|
3658
3685
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3659
3686
|
id: z.ZodString;
|
@@ -3887,7 +3914,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3887
3914
|
addressLine3?: string | null | undefined;
|
3888
3915
|
postcodeOrZip?: string | null | undefined;
|
3889
3916
|
}>]>>>;
|
3890
|
-
createdAtLocation: z.ZodString
|
3917
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
3918
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3891
3919
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3892
3920
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3893
3921
|
}, {
|
@@ -3936,7 +3964,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
3936
3964
|
filename: string;
|
3937
3965
|
originalFilename: string;
|
3938
3966
|
}[] | undefined>;
|
3939
|
-
createdAtLocation: string;
|
3940
3967
|
annotation?: Record<string, string | number | boolean | {
|
3941
3968
|
type: string;
|
3942
3969
|
filename: string;
|
@@ -3975,6 +4002,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3975
4002
|
filename: string;
|
3976
4003
|
originalFilename: string;
|
3977
4004
|
}[] | undefined> | undefined;
|
4005
|
+
createdAtLocation?: string | undefined;
|
4006
|
+
updatedAtLocation?: string | undefined;
|
3978
4007
|
originalActionId?: string | undefined;
|
3979
4008
|
}, {
|
3980
4009
|
type: "REQUEST_CORRECTION";
|
@@ -4020,7 +4049,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4020
4049
|
filename: string;
|
4021
4050
|
originalFilename: string;
|
4022
4051
|
}[] | undefined>;
|
4023
|
-
createdAtLocation: string;
|
4024
4052
|
annotation?: Record<string, string | number | boolean | {
|
4025
4053
|
type: string;
|
4026
4054
|
filename: string;
|
@@ -4059,6 +4087,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4059
4087
|
filename: string;
|
4060
4088
|
originalFilename: string;
|
4061
4089
|
}[] | undefined> | undefined;
|
4090
|
+
createdAtLocation?: string | undefined;
|
4091
|
+
updatedAtLocation?: string | undefined;
|
4062
4092
|
originalActionId?: string | undefined;
|
4063
4093
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4064
4094
|
id: z.ZodString;
|
@@ -4292,7 +4322,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4292
4322
|
addressLine3?: string | null | undefined;
|
4293
4323
|
postcodeOrZip?: string | null | undefined;
|
4294
4324
|
}>]>>>;
|
4295
|
-
createdAtLocation: z.ZodString
|
4325
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
4326
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
4296
4327
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4297
4328
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4298
4329
|
}, {
|
@@ -4342,7 +4373,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4342
4373
|
filename: string;
|
4343
4374
|
originalFilename: string;
|
4344
4375
|
}[] | undefined>;
|
4345
|
-
createdAtLocation: string;
|
4346
4376
|
requestId: string;
|
4347
4377
|
annotation?: Record<string, string | number | boolean | {
|
4348
4378
|
type: string;
|
@@ -4382,6 +4412,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4382
4412
|
filename: string;
|
4383
4413
|
originalFilename: string;
|
4384
4414
|
}[] | undefined> | undefined;
|
4415
|
+
createdAtLocation?: string | undefined;
|
4416
|
+
updatedAtLocation?: string | undefined;
|
4385
4417
|
originalActionId?: string | undefined;
|
4386
4418
|
}, {
|
4387
4419
|
type: "APPROVE_CORRECTION";
|
@@ -4427,7 +4459,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4427
4459
|
filename: string;
|
4428
4460
|
originalFilename: string;
|
4429
4461
|
}[] | undefined>;
|
4430
|
-
createdAtLocation: string;
|
4431
4462
|
requestId: string;
|
4432
4463
|
annotation?: Record<string, string | number | boolean | {
|
4433
4464
|
type: string;
|
@@ -4467,6 +4498,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4467
4498
|
filename: string;
|
4468
4499
|
originalFilename: string;
|
4469
4500
|
}[] | undefined> | undefined;
|
4501
|
+
createdAtLocation?: string | undefined;
|
4502
|
+
updatedAtLocation?: string | undefined;
|
4470
4503
|
originalActionId?: string | undefined;
|
4471
4504
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4472
4505
|
id: z.ZodString;
|
@@ -4700,7 +4733,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4700
4733
|
addressLine3?: string | null | undefined;
|
4701
4734
|
postcodeOrZip?: string | null | undefined;
|
4702
4735
|
}>]>>>;
|
4703
|
-
createdAtLocation: z.ZodString
|
4736
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
4737
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
4704
4738
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4705
4739
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4706
4740
|
}, {
|
@@ -4750,7 +4784,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4750
4784
|
filename: string;
|
4751
4785
|
originalFilename: string;
|
4752
4786
|
}[] | undefined>;
|
4753
|
-
createdAtLocation: string;
|
4754
4787
|
requestId: string;
|
4755
4788
|
annotation?: Record<string, string | number | boolean | {
|
4756
4789
|
type: string;
|
@@ -4790,6 +4823,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4790
4823
|
filename: string;
|
4791
4824
|
originalFilename: string;
|
4792
4825
|
}[] | undefined> | undefined;
|
4826
|
+
createdAtLocation?: string | undefined;
|
4827
|
+
updatedAtLocation?: string | undefined;
|
4793
4828
|
originalActionId?: string | undefined;
|
4794
4829
|
}, {
|
4795
4830
|
type: "REJECT_CORRECTION";
|
@@ -4835,7 +4870,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
4835
4870
|
filename: string;
|
4836
4871
|
originalFilename: string;
|
4837
4872
|
}[] | undefined>;
|
4838
|
-
createdAtLocation: string;
|
4839
4873
|
requestId: string;
|
4840
4874
|
annotation?: Record<string, string | number | boolean | {
|
4841
4875
|
type: string;
|
@@ -4875,6 +4909,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4875
4909
|
filename: string;
|
4876
4910
|
originalFilename: string;
|
4877
4911
|
}[] | undefined> | undefined;
|
4912
|
+
createdAtLocation?: string | undefined;
|
4913
|
+
updatedAtLocation?: string | undefined;
|
4878
4914
|
originalActionId?: string | undefined;
|
4879
4915
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4880
4916
|
id: z.ZodString;
|
@@ -5108,11 +5144,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
5108
5144
|
addressLine3?: string | null | undefined;
|
5109
5145
|
postcodeOrZip?: string | null | undefined;
|
5110
5146
|
}>]>>>;
|
5111
|
-
createdAtLocation: z.ZodString
|
5147
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
5148
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
5112
5149
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5113
5150
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5114
5151
|
}, {
|
5115
5152
|
type: z.ZodLiteral<"UNASSIGN">;
|
5153
|
+
assignedTo: z.ZodDefault<z.ZodLiteral<null>>;
|
5116
5154
|
}>, "strip", z.ZodTypeAny, {
|
5117
5155
|
type: "UNASSIGN";
|
5118
5156
|
id: string;
|
@@ -5157,7 +5195,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5157
5195
|
filename: string;
|
5158
5196
|
originalFilename: string;
|
5159
5197
|
}[] | undefined>;
|
5160
|
-
|
5198
|
+
assignedTo: null;
|
5161
5199
|
annotation?: Record<string, string | number | boolean | {
|
5162
5200
|
type: string;
|
5163
5201
|
filename: string;
|
@@ -5196,6 +5234,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5196
5234
|
filename: string;
|
5197
5235
|
originalFilename: string;
|
5198
5236
|
}[] | undefined> | undefined;
|
5237
|
+
createdAtLocation?: string | undefined;
|
5238
|
+
updatedAtLocation?: string | undefined;
|
5199
5239
|
originalActionId?: string | undefined;
|
5200
5240
|
}, {
|
5201
5241
|
type: "UNASSIGN";
|
@@ -5241,7 +5281,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5241
5281
|
filename: string;
|
5242
5282
|
originalFilename: string;
|
5243
5283
|
}[] | undefined>;
|
5244
|
-
createdAtLocation: string;
|
5245
5284
|
annotation?: Record<string, string | number | boolean | {
|
5246
5285
|
type: string;
|
5247
5286
|
filename: string;
|
@@ -5280,7 +5319,10 @@ export declare const EventDocument: z.ZodObject<{
|
|
5280
5319
|
filename: string;
|
5281
5320
|
originalFilename: string;
|
5282
5321
|
}[] | undefined> | undefined;
|
5322
|
+
createdAtLocation?: string | undefined;
|
5323
|
+
updatedAtLocation?: string | undefined;
|
5283
5324
|
originalActionId?: string | undefined;
|
5325
|
+
assignedTo?: null | undefined;
|
5284
5326
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5285
5327
|
id: z.ZodString;
|
5286
5328
|
createdAt: z.ZodString;
|
@@ -5513,7 +5555,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5513
5555
|
addressLine3?: string | null | undefined;
|
5514
5556
|
postcodeOrZip?: string | null | undefined;
|
5515
5557
|
}>]>>>;
|
5516
|
-
createdAtLocation: z.ZodString
|
5558
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
5559
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
5517
5560
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5518
5561
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5519
5562
|
}, {
|
@@ -5562,7 +5605,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5562
5605
|
filename: string;
|
5563
5606
|
originalFilename: string;
|
5564
5607
|
}[] | undefined>;
|
5565
|
-
createdAtLocation: string;
|
5566
5608
|
annotation?: Record<string, string | number | boolean | {
|
5567
5609
|
type: string;
|
5568
5610
|
filename: string;
|
@@ -5601,6 +5643,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5601
5643
|
filename: string;
|
5602
5644
|
originalFilename: string;
|
5603
5645
|
}[] | undefined> | undefined;
|
5646
|
+
createdAtLocation?: string | undefined;
|
5647
|
+
updatedAtLocation?: string | undefined;
|
5604
5648
|
originalActionId?: string | undefined;
|
5605
5649
|
}, {
|
5606
5650
|
type: "PRINT_CERTIFICATE";
|
@@ -5646,7 +5690,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5646
5690
|
filename: string;
|
5647
5691
|
originalFilename: string;
|
5648
5692
|
}[] | undefined>;
|
5649
|
-
createdAtLocation: string;
|
5650
5693
|
annotation?: Record<string, string | number | boolean | {
|
5651
5694
|
type: string;
|
5652
5695
|
filename: string;
|
@@ -5685,6 +5728,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5685
5728
|
filename: string;
|
5686
5729
|
originalFilename: string;
|
5687
5730
|
}[] | undefined> | undefined;
|
5731
|
+
createdAtLocation?: string | undefined;
|
5732
|
+
updatedAtLocation?: string | undefined;
|
5688
5733
|
originalActionId?: string | undefined;
|
5689
5734
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5690
5735
|
id: z.ZodString;
|
@@ -5918,7 +5963,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5918
5963
|
addressLine3?: string | null | undefined;
|
5919
5964
|
postcodeOrZip?: string | null | undefined;
|
5920
5965
|
}>]>>>;
|
5921
|
-
createdAtLocation: z.ZodString
|
5966
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
5967
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
5922
5968
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5923
5969
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5924
5970
|
}, {
|
@@ -5967,7 +6013,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
5967
6013
|
filename: string;
|
5968
6014
|
originalFilename: string;
|
5969
6015
|
}[] | undefined>;
|
5970
|
-
createdAtLocation: string;
|
5971
6016
|
annotation?: Record<string, string | number | boolean | {
|
5972
6017
|
type: string;
|
5973
6018
|
filename: string;
|
@@ -6006,6 +6051,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6006
6051
|
filename: string;
|
6007
6052
|
originalFilename: string;
|
6008
6053
|
}[] | undefined> | undefined;
|
6054
|
+
createdAtLocation?: string | undefined;
|
6055
|
+
updatedAtLocation?: string | undefined;
|
6009
6056
|
originalActionId?: string | undefined;
|
6010
6057
|
}, {
|
6011
6058
|
type: "READ";
|
@@ -6051,7 +6098,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6051
6098
|
filename: string;
|
6052
6099
|
originalFilename: string;
|
6053
6100
|
}[] | undefined>;
|
6054
|
-
createdAtLocation: string;
|
6055
6101
|
annotation?: Record<string, string | number | boolean | {
|
6056
6102
|
type: string;
|
6057
6103
|
filename: string;
|
@@ -6090,6 +6136,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6090
6136
|
filename: string;
|
6091
6137
|
originalFilename: string;
|
6092
6138
|
}[] | undefined> | undefined;
|
6139
|
+
createdAtLocation?: string | undefined;
|
6140
|
+
updatedAtLocation?: string | undefined;
|
6093
6141
|
originalActionId?: string | undefined;
|
6094
6142
|
}>]>, z.ZodObject<z.objectUtil.extendShape<Omit<{
|
6095
6143
|
id: z.ZodString;
|
@@ -6323,7 +6371,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6323
6371
|
addressLine3?: string | null | undefined;
|
6324
6372
|
postcodeOrZip?: string | null | undefined;
|
6325
6373
|
}>]>>>;
|
6326
|
-
createdAtLocation: z.ZodString
|
6374
|
+
createdAtLocation: z.ZodOptional<z.ZodString>;
|
6375
|
+
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
6327
6376
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6328
6377
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6329
6378
|
}, "createdBy" | "declaration" | "annotation" | "createdAtLocation">, {
|
@@ -6334,12 +6383,14 @@ export declare const EventDocument: z.ZodObject<{
|
|
6334
6383
|
id: string;
|
6335
6384
|
status: "Rejected";
|
6336
6385
|
createdAt: string;
|
6386
|
+
updatedAtLocation?: string | undefined;
|
6337
6387
|
originalActionId?: string | undefined;
|
6338
6388
|
}, {
|
6339
6389
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
6340
6390
|
id: string;
|
6341
6391
|
status: "Rejected";
|
6342
6392
|
createdAt: string;
|
6393
|
+
updatedAtLocation?: string | undefined;
|
6343
6394
|
originalActionId?: string | undefined;
|
6344
6395
|
}>]>, "many">;
|
6345
6396
|
trackingId: z.ZodString;
|
@@ -6392,7 +6443,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6392
6443
|
filename: string;
|
6393
6444
|
originalFilename: string;
|
6394
6445
|
}[] | undefined>;
|
6395
|
-
createdAtLocation: string;
|
6396
6446
|
assignedTo: string;
|
6397
6447
|
annotation?: Record<string, string | number | boolean | {
|
6398
6448
|
type: string;
|
@@ -6432,6 +6482,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6432
6482
|
filename: string;
|
6433
6483
|
originalFilename: string;
|
6434
6484
|
}[] | undefined> | undefined;
|
6485
|
+
createdAtLocation?: string | undefined;
|
6486
|
+
updatedAtLocation?: string | undefined;
|
6435
6487
|
originalActionId?: string | undefined;
|
6436
6488
|
} | {
|
6437
6489
|
type: "UNASSIGN";
|
@@ -6477,7 +6529,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6477
6529
|
filename: string;
|
6478
6530
|
originalFilename: string;
|
6479
6531
|
}[] | undefined>;
|
6480
|
-
|
6532
|
+
assignedTo: null;
|
6481
6533
|
annotation?: Record<string, string | number | boolean | {
|
6482
6534
|
type: string;
|
6483
6535
|
filename: string;
|
@@ -6516,6 +6568,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6516
6568
|
filename: string;
|
6517
6569
|
originalFilename: string;
|
6518
6570
|
}[] | undefined> | undefined;
|
6571
|
+
createdAtLocation?: string | undefined;
|
6572
|
+
updatedAtLocation?: string | undefined;
|
6519
6573
|
originalActionId?: string | undefined;
|
6520
6574
|
} | {
|
6521
6575
|
type: "REGISTER";
|
@@ -6561,7 +6615,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6561
6615
|
filename: string;
|
6562
6616
|
originalFilename: string;
|
6563
6617
|
}[] | undefined>;
|
6564
|
-
createdAtLocation: string;
|
6565
6618
|
annotation?: Record<string, string | number | boolean | {
|
6566
6619
|
type: string;
|
6567
6620
|
filename: string;
|
@@ -6600,6 +6653,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6600
6653
|
filename: string;
|
6601
6654
|
originalFilename: string;
|
6602
6655
|
}[] | undefined> | undefined;
|
6656
|
+
createdAtLocation?: string | undefined;
|
6657
|
+
updatedAtLocation?: string | undefined;
|
6603
6658
|
originalActionId?: string | undefined;
|
6604
6659
|
registrationNumber?: string | undefined;
|
6605
6660
|
} | {
|
@@ -6646,7 +6701,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6646
6701
|
filename: string;
|
6647
6702
|
originalFilename: string;
|
6648
6703
|
}[] | undefined>;
|
6649
|
-
createdAtLocation: string;
|
6650
6704
|
annotation?: Record<string, string | number | boolean | {
|
6651
6705
|
type: string;
|
6652
6706
|
filename: string;
|
@@ -6685,6 +6739,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6685
6739
|
filename: string;
|
6686
6740
|
originalFilename: string;
|
6687
6741
|
}[] | undefined> | undefined;
|
6742
|
+
createdAtLocation?: string | undefined;
|
6743
|
+
updatedAtLocation?: string | undefined;
|
6688
6744
|
originalActionId?: string | undefined;
|
6689
6745
|
} | {
|
6690
6746
|
type: "VALIDATE";
|
@@ -6730,7 +6786,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6730
6786
|
filename: string;
|
6731
6787
|
originalFilename: string;
|
6732
6788
|
}[] | undefined>;
|
6733
|
-
createdAtLocation: string;
|
6734
6789
|
annotation?: Record<string, string | number | boolean | {
|
6735
6790
|
type: string;
|
6736
6791
|
filename: string;
|
@@ -6769,6 +6824,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6769
6824
|
filename: string;
|
6770
6825
|
originalFilename: string;
|
6771
6826
|
}[] | undefined> | undefined;
|
6827
|
+
createdAtLocation?: string | undefined;
|
6828
|
+
updatedAtLocation?: string | undefined;
|
6772
6829
|
originalActionId?: string | undefined;
|
6773
6830
|
} | {
|
6774
6831
|
type: "REJECT";
|
@@ -6814,7 +6871,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6814
6871
|
filename: string;
|
6815
6872
|
originalFilename: string;
|
6816
6873
|
}[] | undefined>;
|
6817
|
-
createdAtLocation: string;
|
6818
6874
|
annotation?: Record<string, string | number | boolean | {
|
6819
6875
|
type: string;
|
6820
6876
|
filename: string;
|
@@ -6853,6 +6909,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6853
6909
|
filename: string;
|
6854
6910
|
originalFilename: string;
|
6855
6911
|
}[] | undefined> | undefined;
|
6912
|
+
createdAtLocation?: string | undefined;
|
6913
|
+
updatedAtLocation?: string | undefined;
|
6856
6914
|
originalActionId?: string | undefined;
|
6857
6915
|
} | {
|
6858
6916
|
type: "MARKED_AS_DUPLICATE";
|
@@ -6898,7 +6956,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6898
6956
|
filename: string;
|
6899
6957
|
originalFilename: string;
|
6900
6958
|
}[] | undefined>;
|
6901
|
-
createdAtLocation: string;
|
6902
6959
|
annotation?: Record<string, string | number | boolean | {
|
6903
6960
|
type: string;
|
6904
6961
|
filename: string;
|
@@ -6937,6 +6994,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6937
6994
|
filename: string;
|
6938
6995
|
originalFilename: string;
|
6939
6996
|
}[] | undefined> | undefined;
|
6997
|
+
createdAtLocation?: string | undefined;
|
6998
|
+
updatedAtLocation?: string | undefined;
|
6940
6999
|
originalActionId?: string | undefined;
|
6941
7000
|
} | {
|
6942
7001
|
type: "ARCHIVE";
|
@@ -6982,7 +7041,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6982
7041
|
filename: string;
|
6983
7042
|
originalFilename: string;
|
6984
7043
|
}[] | undefined>;
|
6985
|
-
createdAtLocation: string;
|
6986
7044
|
annotation?: Record<string, string | number | boolean | {
|
6987
7045
|
type: string;
|
6988
7046
|
filename: string;
|
@@ -7021,6 +7079,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7021
7079
|
filename: string;
|
7022
7080
|
originalFilename: string;
|
7023
7081
|
}[] | undefined> | undefined;
|
7082
|
+
createdAtLocation?: string | undefined;
|
7083
|
+
updatedAtLocation?: string | undefined;
|
7024
7084
|
originalActionId?: string | undefined;
|
7025
7085
|
} | {
|
7026
7086
|
type: "CREATE";
|
@@ -7066,7 +7126,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7066
7126
|
filename: string;
|
7067
7127
|
originalFilename: string;
|
7068
7128
|
}[] | undefined>;
|
7069
|
-
createdAtLocation: string;
|
7070
7129
|
annotation?: Record<string, string | number | boolean | {
|
7071
7130
|
type: string;
|
7072
7131
|
filename: string;
|
@@ -7105,6 +7164,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7105
7164
|
filename: string;
|
7106
7165
|
originalFilename: string;
|
7107
7166
|
}[] | undefined> | undefined;
|
7167
|
+
createdAtLocation?: string | undefined;
|
7168
|
+
updatedAtLocation?: string | undefined;
|
7108
7169
|
originalActionId?: string | undefined;
|
7109
7170
|
} | {
|
7110
7171
|
type: "NOTIFY";
|
@@ -7150,7 +7211,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7150
7211
|
filename: string;
|
7151
7212
|
originalFilename: string;
|
7152
7213
|
}[] | undefined>;
|
7153
|
-
createdAtLocation: string;
|
7154
7214
|
annotation?: Record<string, string | number | boolean | {
|
7155
7215
|
type: string;
|
7156
7216
|
filename: string;
|
@@ -7189,6 +7249,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7189
7249
|
filename: string;
|
7190
7250
|
originalFilename: string;
|
7191
7251
|
}[] | undefined> | undefined;
|
7252
|
+
createdAtLocation?: string | undefined;
|
7253
|
+
updatedAtLocation?: string | undefined;
|
7192
7254
|
originalActionId?: string | undefined;
|
7193
7255
|
} | {
|
7194
7256
|
type: "PRINT_CERTIFICATE";
|
@@ -7234,7 +7296,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7234
7296
|
filename: string;
|
7235
7297
|
originalFilename: string;
|
7236
7298
|
}[] | undefined>;
|
7237
|
-
createdAtLocation: string;
|
7238
7299
|
annotation?: Record<string, string | number | boolean | {
|
7239
7300
|
type: string;
|
7240
7301
|
filename: string;
|
@@ -7273,6 +7334,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7273
7334
|
filename: string;
|
7274
7335
|
originalFilename: string;
|
7275
7336
|
}[] | undefined> | undefined;
|
7337
|
+
createdAtLocation?: string | undefined;
|
7338
|
+
updatedAtLocation?: string | undefined;
|
7276
7339
|
originalActionId?: string | undefined;
|
7277
7340
|
} | {
|
7278
7341
|
type: "REQUEST_CORRECTION";
|
@@ -7318,7 +7381,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7318
7381
|
filename: string;
|
7319
7382
|
originalFilename: string;
|
7320
7383
|
}[] | undefined>;
|
7321
|
-
createdAtLocation: string;
|
7322
7384
|
annotation?: Record<string, string | number | boolean | {
|
7323
7385
|
type: string;
|
7324
7386
|
filename: string;
|
@@ -7357,6 +7419,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7357
7419
|
filename: string;
|
7358
7420
|
originalFilename: string;
|
7359
7421
|
}[] | undefined> | undefined;
|
7422
|
+
createdAtLocation?: string | undefined;
|
7423
|
+
updatedAtLocation?: string | undefined;
|
7360
7424
|
originalActionId?: string | undefined;
|
7361
7425
|
} | {
|
7362
7426
|
type: "APPROVE_CORRECTION";
|
@@ -7402,7 +7466,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7402
7466
|
filename: string;
|
7403
7467
|
originalFilename: string;
|
7404
7468
|
}[] | undefined>;
|
7405
|
-
createdAtLocation: string;
|
7406
7469
|
requestId: string;
|
7407
7470
|
annotation?: Record<string, string | number | boolean | {
|
7408
7471
|
type: string;
|
@@ -7442,6 +7505,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7442
7505
|
filename: string;
|
7443
7506
|
originalFilename: string;
|
7444
7507
|
}[] | undefined> | undefined;
|
7508
|
+
createdAtLocation?: string | undefined;
|
7509
|
+
updatedAtLocation?: string | undefined;
|
7445
7510
|
originalActionId?: string | undefined;
|
7446
7511
|
} | {
|
7447
7512
|
type: "REJECT_CORRECTION";
|
@@ -7487,7 +7552,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7487
7552
|
filename: string;
|
7488
7553
|
originalFilename: string;
|
7489
7554
|
}[] | undefined>;
|
7490
|
-
createdAtLocation: string;
|
7491
7555
|
requestId: string;
|
7492
7556
|
annotation?: Record<string, string | number | boolean | {
|
7493
7557
|
type: string;
|
@@ -7527,6 +7591,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7527
7591
|
filename: string;
|
7528
7592
|
originalFilename: string;
|
7529
7593
|
}[] | undefined> | undefined;
|
7594
|
+
createdAtLocation?: string | undefined;
|
7595
|
+
updatedAtLocation?: string | undefined;
|
7530
7596
|
originalActionId?: string | undefined;
|
7531
7597
|
} | {
|
7532
7598
|
type: "READ";
|
@@ -7572,7 +7638,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7572
7638
|
filename: string;
|
7573
7639
|
originalFilename: string;
|
7574
7640
|
}[] | undefined>;
|
7575
|
-
createdAtLocation: string;
|
7576
7641
|
annotation?: Record<string, string | number | boolean | {
|
7577
7642
|
type: string;
|
7578
7643
|
filename: string;
|
@@ -7611,12 +7676,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
7611
7676
|
filename: string;
|
7612
7677
|
originalFilename: string;
|
7613
7678
|
}[] | undefined> | undefined;
|
7679
|
+
createdAtLocation?: string | undefined;
|
7680
|
+
updatedAtLocation?: string | undefined;
|
7614
7681
|
originalActionId?: string | undefined;
|
7615
7682
|
} | {
|
7616
7683
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
7617
7684
|
id: string;
|
7618
7685
|
status: "Rejected";
|
7619
7686
|
createdAt: string;
|
7687
|
+
updatedAtLocation?: string | undefined;
|
7620
7688
|
originalActionId?: string | undefined;
|
7621
7689
|
})[];
|
7622
7690
|
trackingId: string;
|
@@ -7669,7 +7737,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7669
7737
|
filename: string;
|
7670
7738
|
originalFilename: string;
|
7671
7739
|
}[] | undefined>;
|
7672
|
-
createdAtLocation: string;
|
7673
7740
|
assignedTo: string;
|
7674
7741
|
annotation?: Record<string, string | number | boolean | {
|
7675
7742
|
type: string;
|
@@ -7709,6 +7776,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7709
7776
|
filename: string;
|
7710
7777
|
originalFilename: string;
|
7711
7778
|
}[] | undefined> | undefined;
|
7779
|
+
createdAtLocation?: string | undefined;
|
7780
|
+
updatedAtLocation?: string | undefined;
|
7712
7781
|
originalActionId?: string | undefined;
|
7713
7782
|
} | {
|
7714
7783
|
type: "UNASSIGN";
|
@@ -7754,7 +7823,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7754
7823
|
filename: string;
|
7755
7824
|
originalFilename: string;
|
7756
7825
|
}[] | undefined>;
|
7757
|
-
createdAtLocation: string;
|
7758
7826
|
annotation?: Record<string, string | number | boolean | {
|
7759
7827
|
type: string;
|
7760
7828
|
filename: string;
|
@@ -7793,7 +7861,10 @@ export declare const EventDocument: z.ZodObject<{
|
|
7793
7861
|
filename: string;
|
7794
7862
|
originalFilename: string;
|
7795
7863
|
}[] | undefined> | undefined;
|
7864
|
+
createdAtLocation?: string | undefined;
|
7865
|
+
updatedAtLocation?: string | undefined;
|
7796
7866
|
originalActionId?: string | undefined;
|
7867
|
+
assignedTo?: null | undefined;
|
7797
7868
|
} | {
|
7798
7869
|
type: "REGISTER";
|
7799
7870
|
id: string;
|
@@ -7838,7 +7909,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7838
7909
|
filename: string;
|
7839
7910
|
originalFilename: string;
|
7840
7911
|
}[] | undefined>;
|
7841
|
-
createdAtLocation: string;
|
7842
7912
|
annotation?: Record<string, string | number | boolean | {
|
7843
7913
|
type: string;
|
7844
7914
|
filename: string;
|
@@ -7877,6 +7947,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7877
7947
|
filename: string;
|
7878
7948
|
originalFilename: string;
|
7879
7949
|
}[] | undefined> | undefined;
|
7950
|
+
createdAtLocation?: string | undefined;
|
7951
|
+
updatedAtLocation?: string | undefined;
|
7880
7952
|
originalActionId?: string | undefined;
|
7881
7953
|
registrationNumber?: string | undefined;
|
7882
7954
|
} | {
|
@@ -7923,7 +7995,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7923
7995
|
filename: string;
|
7924
7996
|
originalFilename: string;
|
7925
7997
|
}[] | undefined>;
|
7926
|
-
createdAtLocation: string;
|
7927
7998
|
annotation?: Record<string, string | number | boolean | {
|
7928
7999
|
type: string;
|
7929
8000
|
filename: string;
|
@@ -7962,6 +8033,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7962
8033
|
filename: string;
|
7963
8034
|
originalFilename: string;
|
7964
8035
|
}[] | undefined> | undefined;
|
8036
|
+
createdAtLocation?: string | undefined;
|
8037
|
+
updatedAtLocation?: string | undefined;
|
7965
8038
|
originalActionId?: string | undefined;
|
7966
8039
|
} | {
|
7967
8040
|
type: "VALIDATE";
|
@@ -8007,7 +8080,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8007
8080
|
filename: string;
|
8008
8081
|
originalFilename: string;
|
8009
8082
|
}[] | undefined>;
|
8010
|
-
createdAtLocation: string;
|
8011
8083
|
annotation?: Record<string, string | number | boolean | {
|
8012
8084
|
type: string;
|
8013
8085
|
filename: string;
|
@@ -8046,6 +8118,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8046
8118
|
filename: string;
|
8047
8119
|
originalFilename: string;
|
8048
8120
|
}[] | undefined> | undefined;
|
8121
|
+
createdAtLocation?: string | undefined;
|
8122
|
+
updatedAtLocation?: string | undefined;
|
8049
8123
|
originalActionId?: string | undefined;
|
8050
8124
|
} | {
|
8051
8125
|
type: "REJECT";
|
@@ -8091,7 +8165,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8091
8165
|
filename: string;
|
8092
8166
|
originalFilename: string;
|
8093
8167
|
}[] | undefined>;
|
8094
|
-
createdAtLocation: string;
|
8095
8168
|
annotation?: Record<string, string | number | boolean | {
|
8096
8169
|
type: string;
|
8097
8170
|
filename: string;
|
@@ -8130,6 +8203,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8130
8203
|
filename: string;
|
8131
8204
|
originalFilename: string;
|
8132
8205
|
}[] | undefined> | undefined;
|
8206
|
+
createdAtLocation?: string | undefined;
|
8207
|
+
updatedAtLocation?: string | undefined;
|
8133
8208
|
originalActionId?: string | undefined;
|
8134
8209
|
} | {
|
8135
8210
|
type: "MARKED_AS_DUPLICATE";
|
@@ -8175,7 +8250,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8175
8250
|
filename: string;
|
8176
8251
|
originalFilename: string;
|
8177
8252
|
}[] | undefined>;
|
8178
|
-
createdAtLocation: string;
|
8179
8253
|
annotation?: Record<string, string | number | boolean | {
|
8180
8254
|
type: string;
|
8181
8255
|
filename: string;
|
@@ -8214,6 +8288,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8214
8288
|
filename: string;
|
8215
8289
|
originalFilename: string;
|
8216
8290
|
}[] | undefined> | undefined;
|
8291
|
+
createdAtLocation?: string | undefined;
|
8292
|
+
updatedAtLocation?: string | undefined;
|
8217
8293
|
originalActionId?: string | undefined;
|
8218
8294
|
} | {
|
8219
8295
|
type: "ARCHIVE";
|
@@ -8259,7 +8335,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8259
8335
|
filename: string;
|
8260
8336
|
originalFilename: string;
|
8261
8337
|
}[] | undefined>;
|
8262
|
-
createdAtLocation: string;
|
8263
8338
|
annotation?: Record<string, string | number | boolean | {
|
8264
8339
|
type: string;
|
8265
8340
|
filename: string;
|
@@ -8298,6 +8373,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8298
8373
|
filename: string;
|
8299
8374
|
originalFilename: string;
|
8300
8375
|
}[] | undefined> | undefined;
|
8376
|
+
createdAtLocation?: string | undefined;
|
8377
|
+
updatedAtLocation?: string | undefined;
|
8301
8378
|
originalActionId?: string | undefined;
|
8302
8379
|
} | {
|
8303
8380
|
type: "CREATE";
|
@@ -8343,7 +8420,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8343
8420
|
filename: string;
|
8344
8421
|
originalFilename: string;
|
8345
8422
|
}[] | undefined>;
|
8346
|
-
createdAtLocation: string;
|
8347
8423
|
annotation?: Record<string, string | number | boolean | {
|
8348
8424
|
type: string;
|
8349
8425
|
filename: string;
|
@@ -8382,6 +8458,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8382
8458
|
filename: string;
|
8383
8459
|
originalFilename: string;
|
8384
8460
|
}[] | undefined> | undefined;
|
8461
|
+
createdAtLocation?: string | undefined;
|
8462
|
+
updatedAtLocation?: string | undefined;
|
8385
8463
|
originalActionId?: string | undefined;
|
8386
8464
|
} | {
|
8387
8465
|
type: "NOTIFY";
|
@@ -8427,7 +8505,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8427
8505
|
filename: string;
|
8428
8506
|
originalFilename: string;
|
8429
8507
|
}[] | undefined>;
|
8430
|
-
createdAtLocation: string;
|
8431
8508
|
annotation?: Record<string, string | number | boolean | {
|
8432
8509
|
type: string;
|
8433
8510
|
filename: string;
|
@@ -8466,6 +8543,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8466
8543
|
filename: string;
|
8467
8544
|
originalFilename: string;
|
8468
8545
|
}[] | undefined> | undefined;
|
8546
|
+
createdAtLocation?: string | undefined;
|
8547
|
+
updatedAtLocation?: string | undefined;
|
8469
8548
|
originalActionId?: string | undefined;
|
8470
8549
|
} | {
|
8471
8550
|
type: "PRINT_CERTIFICATE";
|
@@ -8511,7 +8590,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8511
8590
|
filename: string;
|
8512
8591
|
originalFilename: string;
|
8513
8592
|
}[] | undefined>;
|
8514
|
-
createdAtLocation: string;
|
8515
8593
|
annotation?: Record<string, string | number | boolean | {
|
8516
8594
|
type: string;
|
8517
8595
|
filename: string;
|
@@ -8550,6 +8628,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8550
8628
|
filename: string;
|
8551
8629
|
originalFilename: string;
|
8552
8630
|
}[] | undefined> | undefined;
|
8631
|
+
createdAtLocation?: string | undefined;
|
8632
|
+
updatedAtLocation?: string | undefined;
|
8553
8633
|
originalActionId?: string | undefined;
|
8554
8634
|
} | {
|
8555
8635
|
type: "REQUEST_CORRECTION";
|
@@ -8595,7 +8675,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8595
8675
|
filename: string;
|
8596
8676
|
originalFilename: string;
|
8597
8677
|
}[] | undefined>;
|
8598
|
-
createdAtLocation: string;
|
8599
8678
|
annotation?: Record<string, string | number | boolean | {
|
8600
8679
|
type: string;
|
8601
8680
|
filename: string;
|
@@ -8634,6 +8713,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8634
8713
|
filename: string;
|
8635
8714
|
originalFilename: string;
|
8636
8715
|
}[] | undefined> | undefined;
|
8716
|
+
createdAtLocation?: string | undefined;
|
8717
|
+
updatedAtLocation?: string | undefined;
|
8637
8718
|
originalActionId?: string | undefined;
|
8638
8719
|
} | {
|
8639
8720
|
type: "APPROVE_CORRECTION";
|
@@ -8679,7 +8760,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8679
8760
|
filename: string;
|
8680
8761
|
originalFilename: string;
|
8681
8762
|
}[] | undefined>;
|
8682
|
-
createdAtLocation: string;
|
8683
8763
|
requestId: string;
|
8684
8764
|
annotation?: Record<string, string | number | boolean | {
|
8685
8765
|
type: string;
|
@@ -8719,6 +8799,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8719
8799
|
filename: string;
|
8720
8800
|
originalFilename: string;
|
8721
8801
|
}[] | undefined> | undefined;
|
8802
|
+
createdAtLocation?: string | undefined;
|
8803
|
+
updatedAtLocation?: string | undefined;
|
8722
8804
|
originalActionId?: string | undefined;
|
8723
8805
|
} | {
|
8724
8806
|
type: "REJECT_CORRECTION";
|
@@ -8764,7 +8846,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8764
8846
|
filename: string;
|
8765
8847
|
originalFilename: string;
|
8766
8848
|
}[] | undefined>;
|
8767
|
-
createdAtLocation: string;
|
8768
8849
|
requestId: string;
|
8769
8850
|
annotation?: Record<string, string | number | boolean | {
|
8770
8851
|
type: string;
|
@@ -8804,6 +8885,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8804
8885
|
filename: string;
|
8805
8886
|
originalFilename: string;
|
8806
8887
|
}[] | undefined> | undefined;
|
8888
|
+
createdAtLocation?: string | undefined;
|
8889
|
+
updatedAtLocation?: string | undefined;
|
8807
8890
|
originalActionId?: string | undefined;
|
8808
8891
|
} | {
|
8809
8892
|
type: "READ";
|
@@ -8849,7 +8932,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8849
8932
|
filename: string;
|
8850
8933
|
originalFilename: string;
|
8851
8934
|
}[] | undefined>;
|
8852
|
-
createdAtLocation: string;
|
8853
8935
|
annotation?: Record<string, string | number | boolean | {
|
8854
8936
|
type: string;
|
8855
8937
|
filename: string;
|
@@ -8888,12 +8970,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
8888
8970
|
filename: string;
|
8889
8971
|
originalFilename: string;
|
8890
8972
|
}[] | undefined> | undefined;
|
8973
|
+
createdAtLocation?: string | undefined;
|
8974
|
+
updatedAtLocation?: string | undefined;
|
8891
8975
|
originalActionId?: string | undefined;
|
8892
8976
|
} | {
|
8893
8977
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
8894
8978
|
id: string;
|
8895
8979
|
status: "Rejected";
|
8896
8980
|
createdAt: string;
|
8981
|
+
updatedAtLocation?: string | undefined;
|
8897
8982
|
originalActionId?: string | undefined;
|
8898
8983
|
})[];
|
8899
8984
|
trackingId: string;
|