@opencrvs/toolkit 1.8.0-rc.feef45c → 1.8.0-rc.ff0a1b5
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 +679 -332
- package/dist/commons/events/ActionConfig.d.ts +4879 -1232
- package/dist/commons/events/ActionDocument.d.ts +433 -413
- package/dist/commons/events/ActionInput.d.ts +180 -180
- package/dist/commons/events/AdvancedSearchConfig.d.ts +34 -36
- package/dist/commons/events/Draft.d.ts +24 -26
- package/dist/commons/events/EventConfig.d.ts +2711 -967
- package/dist/commons/events/EventDocument.d.ts +241 -312
- package/dist/commons/events/EventIndex.d.ts +817 -279
- package/dist/commons/events/EventMetadata.d.ts +263 -11
- package/dist/commons/events/FieldConfig.d.ts +267 -3
- package/dist/commons/events/FieldType.d.ts +3 -2
- package/dist/commons/events/FieldTypeMapping.d.ts +11 -4
- package/dist/commons/events/FieldValue.d.ts +6 -3
- package/dist/commons/events/FormConfig.d.ts +2279 -629
- package/dist/commons/events/PageConfig.d.ts +406 -0
- package/dist/commons/events/SummaryConfig.d.ts +17 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +1222 -8
- package/dist/commons/events/defineConfig.d.ts +283 -2
- package/dist/commons/events/event.d.ts +3 -1
- package/dist/commons/events/field.d.ts +3 -3
- package/dist/commons/events/test.utils.d.ts +7 -7
- package/dist/commons/events/utils.d.ts +193 -21
- package/dist/events/index.js +1141 -774
- package/dist/scopes/index.d.ts +70 -1
- package/dist/scopes/index.js +130 -0
- package/package.json +1 -1
@@ -11,14 +11,13 @@ export declare const EventDocument: z.ZodObject<{
|
|
11
11
|
}>>;
|
12
12
|
createdAt: z.ZodString;
|
13
13
|
updatedAt: z.ZodString;
|
14
|
-
updatedAtLocation: z.ZodString;
|
15
14
|
actions: z.ZodArray<z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
16
15
|
id: z.ZodString;
|
17
16
|
transactionId: z.ZodString;
|
18
17
|
createdAt: z.ZodString;
|
19
18
|
createdBy: z.ZodString;
|
20
19
|
createdByRole: z.ZodString;
|
21
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
20
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
22
21
|
filename: z.ZodString;
|
23
22
|
originalFilename: z.ZodString;
|
24
23
|
type: z.ZodString;
|
@@ -132,7 +131,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
132
131
|
addressLine3?: string | null | undefined;
|
133
132
|
postcodeOrZip?: string | null | undefined;
|
134
133
|
}>]>>;
|
135
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
134
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
136
135
|
filename: z.ZodString;
|
137
136
|
originalFilename: z.ZodString;
|
138
137
|
type: z.ZodString;
|
@@ -246,8 +245,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
246
245
|
addressLine3?: string | null | undefined;
|
247
246
|
postcodeOrZip?: string | null | undefined;
|
248
247
|
}>]>>>;
|
249
|
-
createdAtLocation: z.
|
250
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
248
|
+
createdAtLocation: z.ZodString;
|
251
249
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
252
250
|
originalActionId: z.ZodOptional<z.ZodString>;
|
253
251
|
}, {
|
@@ -297,7 +295,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
297
295
|
option: string;
|
298
296
|
filename: string;
|
299
297
|
originalFilename: string;
|
300
|
-
}[] | undefined>;
|
298
|
+
}[] | [string, string] | undefined>;
|
299
|
+
createdAtLocation: string;
|
301
300
|
annotation?: Record<string, string | number | boolean | {
|
302
301
|
type: string;
|
303
302
|
filename: string;
|
@@ -335,9 +334,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
335
334
|
option: string;
|
336
335
|
filename: string;
|
337
336
|
originalFilename: string;
|
338
|
-
}[] | undefined> | undefined;
|
339
|
-
createdAtLocation?: string | undefined;
|
340
|
-
updatedAtLocation?: string | undefined;
|
337
|
+
}[] | [string, string] | undefined> | undefined;
|
341
338
|
originalActionId?: string | undefined;
|
342
339
|
}, {
|
343
340
|
type: "CREATE";
|
@@ -384,7 +381,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
384
381
|
option: string;
|
385
382
|
filename: string;
|
386
383
|
originalFilename: string;
|
387
|
-
}[] | undefined>;
|
384
|
+
}[] | [string, string] | undefined>;
|
385
|
+
createdAtLocation: string;
|
388
386
|
annotation?: Record<string, string | number | boolean | {
|
389
387
|
type: string;
|
390
388
|
filename: string;
|
@@ -422,9 +420,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
422
420
|
option: string;
|
423
421
|
filename: string;
|
424
422
|
originalFilename: string;
|
425
|
-
}[] | undefined> | undefined;
|
426
|
-
createdAtLocation?: string | undefined;
|
427
|
-
updatedAtLocation?: string | undefined;
|
423
|
+
}[] | [string, string] | undefined> | undefined;
|
428
424
|
originalActionId?: string | undefined;
|
429
425
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
430
426
|
id: z.ZodString;
|
@@ -432,7 +428,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
432
428
|
createdAt: z.ZodString;
|
433
429
|
createdBy: z.ZodString;
|
434
430
|
createdByRole: z.ZodString;
|
435
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
431
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
436
432
|
filename: z.ZodString;
|
437
433
|
originalFilename: z.ZodString;
|
438
434
|
type: z.ZodString;
|
@@ -546,7 +542,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
546
542
|
addressLine3?: string | null | undefined;
|
547
543
|
postcodeOrZip?: string | null | undefined;
|
548
544
|
}>]>>;
|
549
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
545
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
550
546
|
filename: z.ZodString;
|
551
547
|
originalFilename: z.ZodString;
|
552
548
|
type: z.ZodString;
|
@@ -660,8 +656,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
660
656
|
addressLine3?: string | null | undefined;
|
661
657
|
postcodeOrZip?: string | null | undefined;
|
662
658
|
}>]>>>;
|
663
|
-
createdAtLocation: z.
|
664
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
659
|
+
createdAtLocation: z.ZodString;
|
665
660
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
666
661
|
originalActionId: z.ZodOptional<z.ZodString>;
|
667
662
|
}, {
|
@@ -711,7 +706,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
711
706
|
option: string;
|
712
707
|
filename: string;
|
713
708
|
originalFilename: string;
|
714
|
-
}[] | undefined>;
|
709
|
+
}[] | [string, string] | undefined>;
|
710
|
+
createdAtLocation: string;
|
715
711
|
annotation?: Record<string, string | number | boolean | {
|
716
712
|
type: string;
|
717
713
|
filename: string;
|
@@ -749,9 +745,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
749
745
|
option: string;
|
750
746
|
filename: string;
|
751
747
|
originalFilename: string;
|
752
|
-
}[] | undefined> | undefined;
|
753
|
-
createdAtLocation?: string | undefined;
|
754
|
-
updatedAtLocation?: string | undefined;
|
748
|
+
}[] | [string, string] | undefined> | undefined;
|
755
749
|
originalActionId?: string | undefined;
|
756
750
|
}, {
|
757
751
|
type: "VALIDATE";
|
@@ -798,7 +792,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
798
792
|
option: string;
|
799
793
|
filename: string;
|
800
794
|
originalFilename: string;
|
801
|
-
}[] | undefined>;
|
795
|
+
}[] | [string, string] | undefined>;
|
796
|
+
createdAtLocation: string;
|
802
797
|
annotation?: Record<string, string | number | boolean | {
|
803
798
|
type: string;
|
804
799
|
filename: string;
|
@@ -836,9 +831,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
836
831
|
option: string;
|
837
832
|
filename: string;
|
838
833
|
originalFilename: string;
|
839
|
-
}[] | undefined> | undefined;
|
840
|
-
createdAtLocation?: string | undefined;
|
841
|
-
updatedAtLocation?: string | undefined;
|
834
|
+
}[] | [string, string] | undefined> | undefined;
|
842
835
|
originalActionId?: string | undefined;
|
843
836
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
844
837
|
id: z.ZodString;
|
@@ -846,7 +839,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
846
839
|
createdAt: z.ZodString;
|
847
840
|
createdBy: z.ZodString;
|
848
841
|
createdByRole: z.ZodString;
|
849
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
842
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
850
843
|
filename: z.ZodString;
|
851
844
|
originalFilename: z.ZodString;
|
852
845
|
type: z.ZodString;
|
@@ -960,7 +953,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
960
953
|
addressLine3?: string | null | undefined;
|
961
954
|
postcodeOrZip?: string | null | undefined;
|
962
955
|
}>]>>;
|
963
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
956
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
964
957
|
filename: z.ZodString;
|
965
958
|
originalFilename: z.ZodString;
|
966
959
|
type: z.ZodString;
|
@@ -1074,8 +1067,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1074
1067
|
addressLine3?: string | null | undefined;
|
1075
1068
|
postcodeOrZip?: string | null | undefined;
|
1076
1069
|
}>]>>>;
|
1077
|
-
createdAtLocation: z.
|
1078
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1070
|
+
createdAtLocation: z.ZodString;
|
1079
1071
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1080
1072
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1081
1073
|
}, {
|
@@ -1125,7 +1117,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1125
1117
|
option: string;
|
1126
1118
|
filename: string;
|
1127
1119
|
originalFilename: string;
|
1128
|
-
}[] | undefined>;
|
1120
|
+
}[] | [string, string] | undefined>;
|
1121
|
+
createdAtLocation: string;
|
1129
1122
|
annotation?: Record<string, string | number | boolean | {
|
1130
1123
|
type: string;
|
1131
1124
|
filename: string;
|
@@ -1163,9 +1156,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1163
1156
|
option: string;
|
1164
1157
|
filename: string;
|
1165
1158
|
originalFilename: string;
|
1166
|
-
}[] | undefined> | undefined;
|
1167
|
-
createdAtLocation?: string | undefined;
|
1168
|
-
updatedAtLocation?: string | undefined;
|
1159
|
+
}[] | [string, string] | undefined> | undefined;
|
1169
1160
|
originalActionId?: string | undefined;
|
1170
1161
|
}, {
|
1171
1162
|
type: "REJECT";
|
@@ -1212,7 +1203,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1212
1203
|
option: string;
|
1213
1204
|
filename: string;
|
1214
1205
|
originalFilename: string;
|
1215
|
-
}[] | undefined>;
|
1206
|
+
}[] | [string, string] | undefined>;
|
1207
|
+
createdAtLocation: string;
|
1216
1208
|
annotation?: Record<string, string | number | boolean | {
|
1217
1209
|
type: string;
|
1218
1210
|
filename: string;
|
@@ -1250,9 +1242,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1250
1242
|
option: string;
|
1251
1243
|
filename: string;
|
1252
1244
|
originalFilename: string;
|
1253
|
-
}[] | undefined> | undefined;
|
1254
|
-
createdAtLocation?: string | undefined;
|
1255
|
-
updatedAtLocation?: string | undefined;
|
1245
|
+
}[] | [string, string] | undefined> | undefined;
|
1256
1246
|
originalActionId?: string | undefined;
|
1257
1247
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1258
1248
|
id: z.ZodString;
|
@@ -1260,7 +1250,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1260
1250
|
createdAt: z.ZodString;
|
1261
1251
|
createdBy: z.ZodString;
|
1262
1252
|
createdByRole: z.ZodString;
|
1263
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1253
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1264
1254
|
filename: z.ZodString;
|
1265
1255
|
originalFilename: z.ZodString;
|
1266
1256
|
type: z.ZodString;
|
@@ -1374,7 +1364,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1374
1364
|
addressLine3?: string | null | undefined;
|
1375
1365
|
postcodeOrZip?: string | null | undefined;
|
1376
1366
|
}>]>>;
|
1377
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1367
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1378
1368
|
filename: z.ZodString;
|
1379
1369
|
originalFilename: z.ZodString;
|
1380
1370
|
type: z.ZodString;
|
@@ -1488,8 +1478,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1488
1478
|
addressLine3?: string | null | undefined;
|
1489
1479
|
postcodeOrZip?: string | null | undefined;
|
1490
1480
|
}>]>>>;
|
1491
|
-
createdAtLocation: z.
|
1492
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1481
|
+
createdAtLocation: z.ZodString;
|
1493
1482
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1494
1483
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1495
1484
|
}, {
|
@@ -1539,7 +1528,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1539
1528
|
option: string;
|
1540
1529
|
filename: string;
|
1541
1530
|
originalFilename: string;
|
1542
|
-
}[] | undefined>;
|
1531
|
+
}[] | [string, string] | undefined>;
|
1532
|
+
createdAtLocation: string;
|
1543
1533
|
annotation?: Record<string, string | number | boolean | {
|
1544
1534
|
type: string;
|
1545
1535
|
filename: string;
|
@@ -1577,9 +1567,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1577
1567
|
option: string;
|
1578
1568
|
filename: string;
|
1579
1569
|
originalFilename: string;
|
1580
|
-
}[] | undefined> | undefined;
|
1581
|
-
createdAtLocation?: string | undefined;
|
1582
|
-
updatedAtLocation?: string | undefined;
|
1570
|
+
}[] | [string, string] | undefined> | undefined;
|
1583
1571
|
originalActionId?: string | undefined;
|
1584
1572
|
}, {
|
1585
1573
|
type: "MARKED_AS_DUPLICATE";
|
@@ -1626,7 +1614,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1626
1614
|
option: string;
|
1627
1615
|
filename: string;
|
1628
1616
|
originalFilename: string;
|
1629
|
-
}[] | undefined>;
|
1617
|
+
}[] | [string, string] | undefined>;
|
1618
|
+
createdAtLocation: string;
|
1630
1619
|
annotation?: Record<string, string | number | boolean | {
|
1631
1620
|
type: string;
|
1632
1621
|
filename: string;
|
@@ -1664,9 +1653,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1664
1653
|
option: string;
|
1665
1654
|
filename: string;
|
1666
1655
|
originalFilename: string;
|
1667
|
-
}[] | undefined> | undefined;
|
1668
|
-
createdAtLocation?: string | undefined;
|
1669
|
-
updatedAtLocation?: string | undefined;
|
1656
|
+
}[] | [string, string] | undefined> | undefined;
|
1670
1657
|
originalActionId?: string | undefined;
|
1671
1658
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1672
1659
|
id: z.ZodString;
|
@@ -1674,7 +1661,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1674
1661
|
createdAt: z.ZodString;
|
1675
1662
|
createdBy: z.ZodString;
|
1676
1663
|
createdByRole: z.ZodString;
|
1677
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1664
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1678
1665
|
filename: z.ZodString;
|
1679
1666
|
originalFilename: z.ZodString;
|
1680
1667
|
type: z.ZodString;
|
@@ -1788,7 +1775,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1788
1775
|
addressLine3?: string | null | undefined;
|
1789
1776
|
postcodeOrZip?: string | null | undefined;
|
1790
1777
|
}>]>>;
|
1791
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1778
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1792
1779
|
filename: z.ZodString;
|
1793
1780
|
originalFilename: z.ZodString;
|
1794
1781
|
type: z.ZodString;
|
@@ -1902,8 +1889,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1902
1889
|
addressLine3?: string | null | undefined;
|
1903
1890
|
postcodeOrZip?: string | null | undefined;
|
1904
1891
|
}>]>>>;
|
1905
|
-
createdAtLocation: z.
|
1906
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1892
|
+
createdAtLocation: z.ZodString;
|
1907
1893
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1908
1894
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1909
1895
|
}, {
|
@@ -1953,7 +1939,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1953
1939
|
option: string;
|
1954
1940
|
filename: string;
|
1955
1941
|
originalFilename: string;
|
1956
|
-
}[] | undefined>;
|
1942
|
+
}[] | [string, string] | undefined>;
|
1943
|
+
createdAtLocation: string;
|
1957
1944
|
annotation?: Record<string, string | number | boolean | {
|
1958
1945
|
type: string;
|
1959
1946
|
filename: string;
|
@@ -1991,9 +1978,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1991
1978
|
option: string;
|
1992
1979
|
filename: string;
|
1993
1980
|
originalFilename: string;
|
1994
|
-
}[] | undefined> | undefined;
|
1995
|
-
createdAtLocation?: string | undefined;
|
1996
|
-
updatedAtLocation?: string | undefined;
|
1981
|
+
}[] | [string, string] | undefined> | undefined;
|
1997
1982
|
originalActionId?: string | undefined;
|
1998
1983
|
}, {
|
1999
1984
|
type: "ARCHIVE";
|
@@ -2040,7 +2025,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2040
2025
|
option: string;
|
2041
2026
|
filename: string;
|
2042
2027
|
originalFilename: string;
|
2043
|
-
}[] | undefined>;
|
2028
|
+
}[] | [string, string] | undefined>;
|
2029
|
+
createdAtLocation: string;
|
2044
2030
|
annotation?: Record<string, string | number | boolean | {
|
2045
2031
|
type: string;
|
2046
2032
|
filename: string;
|
@@ -2078,9 +2064,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2078
2064
|
option: string;
|
2079
2065
|
filename: string;
|
2080
2066
|
originalFilename: string;
|
2081
|
-
}[] | undefined> | undefined;
|
2082
|
-
createdAtLocation?: string | undefined;
|
2083
|
-
updatedAtLocation?: string | undefined;
|
2067
|
+
}[] | [string, string] | undefined> | undefined;
|
2084
2068
|
originalActionId?: string | undefined;
|
2085
2069
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2086
2070
|
id: z.ZodString;
|
@@ -2088,7 +2072,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2088
2072
|
createdAt: z.ZodString;
|
2089
2073
|
createdBy: z.ZodString;
|
2090
2074
|
createdByRole: z.ZodString;
|
2091
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2075
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2092
2076
|
filename: z.ZodString;
|
2093
2077
|
originalFilename: z.ZodString;
|
2094
2078
|
type: z.ZodString;
|
@@ -2202,7 +2186,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2202
2186
|
addressLine3?: string | null | undefined;
|
2203
2187
|
postcodeOrZip?: string | null | undefined;
|
2204
2188
|
}>]>>;
|
2205
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2189
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2206
2190
|
filename: z.ZodString;
|
2207
2191
|
originalFilename: z.ZodString;
|
2208
2192
|
type: z.ZodString;
|
@@ -2316,8 +2300,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2316
2300
|
addressLine3?: string | null | undefined;
|
2317
2301
|
postcodeOrZip?: string | null | undefined;
|
2318
2302
|
}>]>>>;
|
2319
|
-
createdAtLocation: z.
|
2320
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
2303
|
+
createdAtLocation: z.ZodString;
|
2321
2304
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2322
2305
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2323
2306
|
}, {
|
@@ -2367,7 +2350,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2367
2350
|
option: string;
|
2368
2351
|
filename: string;
|
2369
2352
|
originalFilename: string;
|
2370
|
-
}[] | undefined>;
|
2353
|
+
}[] | [string, string] | undefined>;
|
2354
|
+
createdAtLocation: string;
|
2371
2355
|
annotation?: Record<string, string | number | boolean | {
|
2372
2356
|
type: string;
|
2373
2357
|
filename: string;
|
@@ -2405,9 +2389,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2405
2389
|
option: string;
|
2406
2390
|
filename: string;
|
2407
2391
|
originalFilename: string;
|
2408
|
-
}[] | undefined> | undefined;
|
2409
|
-
createdAtLocation?: string | undefined;
|
2410
|
-
updatedAtLocation?: string | undefined;
|
2392
|
+
}[] | [string, string] | undefined> | undefined;
|
2411
2393
|
originalActionId?: string | undefined;
|
2412
2394
|
}, {
|
2413
2395
|
type: "NOTIFY";
|
@@ -2454,7 +2436,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2454
2436
|
option: string;
|
2455
2437
|
filename: string;
|
2456
2438
|
originalFilename: string;
|
2457
|
-
}[] | undefined>;
|
2439
|
+
}[] | [string, string] | undefined>;
|
2440
|
+
createdAtLocation: string;
|
2458
2441
|
annotation?: Record<string, string | number | boolean | {
|
2459
2442
|
type: string;
|
2460
2443
|
filename: string;
|
@@ -2492,9 +2475,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2492
2475
|
option: string;
|
2493
2476
|
filename: string;
|
2494
2477
|
originalFilename: string;
|
2495
|
-
}[] | undefined> | undefined;
|
2496
|
-
createdAtLocation?: string | undefined;
|
2497
|
-
updatedAtLocation?: string | undefined;
|
2478
|
+
}[] | [string, string] | undefined> | undefined;
|
2498
2479
|
originalActionId?: string | undefined;
|
2499
2480
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2500
2481
|
id: z.ZodString;
|
@@ -2502,7 +2483,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2502
2483
|
createdAt: z.ZodString;
|
2503
2484
|
createdBy: z.ZodString;
|
2504
2485
|
createdByRole: z.ZodString;
|
2505
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2486
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2506
2487
|
filename: z.ZodString;
|
2507
2488
|
originalFilename: z.ZodString;
|
2508
2489
|
type: z.ZodString;
|
@@ -2616,7 +2597,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2616
2597
|
addressLine3?: string | null | undefined;
|
2617
2598
|
postcodeOrZip?: string | null | undefined;
|
2618
2599
|
}>]>>;
|
2619
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2600
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2620
2601
|
filename: z.ZodString;
|
2621
2602
|
originalFilename: z.ZodString;
|
2622
2603
|
type: z.ZodString;
|
@@ -2730,8 +2711,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2730
2711
|
addressLine3?: string | null | undefined;
|
2731
2712
|
postcodeOrZip?: string | null | undefined;
|
2732
2713
|
}>]>>>;
|
2733
|
-
createdAtLocation: z.
|
2734
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
2714
|
+
createdAtLocation: z.ZodString;
|
2735
2715
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2736
2716
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2737
2717
|
}, {
|
@@ -2782,7 +2762,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2782
2762
|
option: string;
|
2783
2763
|
filename: string;
|
2784
2764
|
originalFilename: string;
|
2785
|
-
}[] | undefined>;
|
2765
|
+
}[] | [string, string] | undefined>;
|
2766
|
+
createdAtLocation: string;
|
2786
2767
|
annotation?: Record<string, string | number | boolean | {
|
2787
2768
|
type: string;
|
2788
2769
|
filename: string;
|
@@ -2820,9 +2801,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2820
2801
|
option: string;
|
2821
2802
|
filename: string;
|
2822
2803
|
originalFilename: string;
|
2823
|
-
}[] | undefined> | undefined;
|
2824
|
-
createdAtLocation?: string | undefined;
|
2825
|
-
updatedAtLocation?: string | undefined;
|
2804
|
+
}[] | [string, string] | undefined> | undefined;
|
2826
2805
|
originalActionId?: string | undefined;
|
2827
2806
|
registrationNumber?: string | undefined;
|
2828
2807
|
}, {
|
@@ -2870,7 +2849,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2870
2849
|
option: string;
|
2871
2850
|
filename: string;
|
2872
2851
|
originalFilename: string;
|
2873
|
-
}[] | undefined>;
|
2852
|
+
}[] | [string, string] | undefined>;
|
2853
|
+
createdAtLocation: string;
|
2874
2854
|
annotation?: Record<string, string | number | boolean | {
|
2875
2855
|
type: string;
|
2876
2856
|
filename: string;
|
@@ -2908,9 +2888,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2908
2888
|
option: string;
|
2909
2889
|
filename: string;
|
2910
2890
|
originalFilename: string;
|
2911
|
-
}[] | undefined> | undefined;
|
2912
|
-
createdAtLocation?: string | undefined;
|
2913
|
-
updatedAtLocation?: string | undefined;
|
2891
|
+
}[] | [string, string] | undefined> | undefined;
|
2914
2892
|
originalActionId?: string | undefined;
|
2915
2893
|
registrationNumber?: string | undefined;
|
2916
2894
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2919,7 +2897,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2919
2897
|
createdAt: z.ZodString;
|
2920
2898
|
createdBy: z.ZodString;
|
2921
2899
|
createdByRole: z.ZodString;
|
2922
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2900
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2923
2901
|
filename: z.ZodString;
|
2924
2902
|
originalFilename: z.ZodString;
|
2925
2903
|
type: z.ZodString;
|
@@ -3033,7 +3011,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3033
3011
|
addressLine3?: string | null | undefined;
|
3034
3012
|
postcodeOrZip?: string | null | undefined;
|
3035
3013
|
}>]>>;
|
3036
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3014
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3037
3015
|
filename: z.ZodString;
|
3038
3016
|
originalFilename: z.ZodString;
|
3039
3017
|
type: z.ZodString;
|
@@ -3147,8 +3125,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3147
3125
|
addressLine3?: string | null | undefined;
|
3148
3126
|
postcodeOrZip?: string | null | undefined;
|
3149
3127
|
}>]>>>;
|
3150
|
-
createdAtLocation: z.
|
3151
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3128
|
+
createdAtLocation: z.ZodString;
|
3152
3129
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3153
3130
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3154
3131
|
}, {
|
@@ -3198,7 +3175,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3198
3175
|
option: string;
|
3199
3176
|
filename: string;
|
3200
3177
|
originalFilename: string;
|
3201
|
-
}[] | undefined>;
|
3178
|
+
}[] | [string, string] | undefined>;
|
3179
|
+
createdAtLocation: string;
|
3202
3180
|
annotation?: Record<string, string | number | boolean | {
|
3203
3181
|
type: string;
|
3204
3182
|
filename: string;
|
@@ -3236,9 +3214,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3236
3214
|
option: string;
|
3237
3215
|
filename: string;
|
3238
3216
|
originalFilename: string;
|
3239
|
-
}[] | undefined> | undefined;
|
3240
|
-
createdAtLocation?: string | undefined;
|
3241
|
-
updatedAtLocation?: string | undefined;
|
3217
|
+
}[] | [string, string] | undefined> | undefined;
|
3242
3218
|
originalActionId?: string | undefined;
|
3243
3219
|
}, {
|
3244
3220
|
type: "DECLARE";
|
@@ -3285,7 +3261,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3285
3261
|
option: string;
|
3286
3262
|
filename: string;
|
3287
3263
|
originalFilename: string;
|
3288
|
-
}[] | undefined>;
|
3264
|
+
}[] | [string, string] | undefined>;
|
3265
|
+
createdAtLocation: string;
|
3289
3266
|
annotation?: Record<string, string | number | boolean | {
|
3290
3267
|
type: string;
|
3291
3268
|
filename: string;
|
@@ -3323,9 +3300,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3323
3300
|
option: string;
|
3324
3301
|
filename: string;
|
3325
3302
|
originalFilename: string;
|
3326
|
-
}[] | undefined> | undefined;
|
3327
|
-
createdAtLocation?: string | undefined;
|
3328
|
-
updatedAtLocation?: string | undefined;
|
3303
|
+
}[] | [string, string] | undefined> | undefined;
|
3329
3304
|
originalActionId?: string | undefined;
|
3330
3305
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3331
3306
|
id: z.ZodString;
|
@@ -3333,7 +3308,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3333
3308
|
createdAt: z.ZodString;
|
3334
3309
|
createdBy: z.ZodString;
|
3335
3310
|
createdByRole: z.ZodString;
|
3336
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3311
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3337
3312
|
filename: z.ZodString;
|
3338
3313
|
originalFilename: z.ZodString;
|
3339
3314
|
type: z.ZodString;
|
@@ -3447,7 +3422,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3447
3422
|
addressLine3?: string | null | undefined;
|
3448
3423
|
postcodeOrZip?: string | null | undefined;
|
3449
3424
|
}>]>>;
|
3450
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3425
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3451
3426
|
filename: z.ZodString;
|
3452
3427
|
originalFilename: z.ZodString;
|
3453
3428
|
type: z.ZodString;
|
@@ -3561,8 +3536,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3561
3536
|
addressLine3?: string | null | undefined;
|
3562
3537
|
postcodeOrZip?: string | null | undefined;
|
3563
3538
|
}>]>>>;
|
3564
|
-
createdAtLocation: z.
|
3565
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3539
|
+
createdAtLocation: z.ZodString;
|
3566
3540
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3567
3541
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3568
3542
|
}, {
|
@@ -3613,7 +3587,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3613
3587
|
option: string;
|
3614
3588
|
filename: string;
|
3615
3589
|
originalFilename: string;
|
3616
|
-
}[] | undefined>;
|
3590
|
+
}[] | [string, string] | undefined>;
|
3591
|
+
createdAtLocation: string;
|
3617
3592
|
assignedTo: string;
|
3618
3593
|
annotation?: Record<string, string | number | boolean | {
|
3619
3594
|
type: string;
|
@@ -3652,9 +3627,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3652
3627
|
option: string;
|
3653
3628
|
filename: string;
|
3654
3629
|
originalFilename: string;
|
3655
|
-
}[] | undefined> | undefined;
|
3656
|
-
createdAtLocation?: string | undefined;
|
3657
|
-
updatedAtLocation?: string | undefined;
|
3630
|
+
}[] | [string, string] | undefined> | undefined;
|
3658
3631
|
originalActionId?: string | undefined;
|
3659
3632
|
}, {
|
3660
3633
|
type: "ASSIGN";
|
@@ -3701,7 +3674,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3701
3674
|
option: string;
|
3702
3675
|
filename: string;
|
3703
3676
|
originalFilename: string;
|
3704
|
-
}[] | undefined>;
|
3677
|
+
}[] | [string, string] | undefined>;
|
3678
|
+
createdAtLocation: string;
|
3705
3679
|
assignedTo: string;
|
3706
3680
|
annotation?: Record<string, string | number | boolean | {
|
3707
3681
|
type: string;
|
@@ -3740,9 +3714,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3740
3714
|
option: string;
|
3741
3715
|
filename: string;
|
3742
3716
|
originalFilename: string;
|
3743
|
-
}[] | undefined> | undefined;
|
3744
|
-
createdAtLocation?: string | undefined;
|
3745
|
-
updatedAtLocation?: string | undefined;
|
3717
|
+
}[] | [string, string] | undefined> | undefined;
|
3746
3718
|
originalActionId?: string | undefined;
|
3747
3719
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3748
3720
|
id: z.ZodString;
|
@@ -3750,7 +3722,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3750
3722
|
createdAt: z.ZodString;
|
3751
3723
|
createdBy: z.ZodString;
|
3752
3724
|
createdByRole: z.ZodString;
|
3753
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3725
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3754
3726
|
filename: z.ZodString;
|
3755
3727
|
originalFilename: z.ZodString;
|
3756
3728
|
type: z.ZodString;
|
@@ -3864,7 +3836,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3864
3836
|
addressLine3?: string | null | undefined;
|
3865
3837
|
postcodeOrZip?: string | null | undefined;
|
3866
3838
|
}>]>>;
|
3867
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3839
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3868
3840
|
filename: z.ZodString;
|
3869
3841
|
originalFilename: z.ZodString;
|
3870
3842
|
type: z.ZodString;
|
@@ -3978,8 +3950,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3978
3950
|
addressLine3?: string | null | undefined;
|
3979
3951
|
postcodeOrZip?: string | null | undefined;
|
3980
3952
|
}>]>>>;
|
3981
|
-
createdAtLocation: z.
|
3982
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3953
|
+
createdAtLocation: z.ZodString;
|
3983
3954
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3984
3955
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3985
3956
|
}, {
|
@@ -4029,7 +4000,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4029
4000
|
option: string;
|
4030
4001
|
filename: string;
|
4031
4002
|
originalFilename: string;
|
4032
|
-
}[] | undefined>;
|
4003
|
+
}[] | [string, string] | undefined>;
|
4004
|
+
createdAtLocation: string;
|
4033
4005
|
annotation?: Record<string, string | number | boolean | {
|
4034
4006
|
type: string;
|
4035
4007
|
filename: string;
|
@@ -4067,9 +4039,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4067
4039
|
option: string;
|
4068
4040
|
filename: string;
|
4069
4041
|
originalFilename: string;
|
4070
|
-
}[] | undefined> | undefined;
|
4071
|
-
createdAtLocation?: string | undefined;
|
4072
|
-
updatedAtLocation?: string | undefined;
|
4042
|
+
}[] | [string, string] | undefined> | undefined;
|
4073
4043
|
originalActionId?: string | undefined;
|
4074
4044
|
}, {
|
4075
4045
|
type: "REQUEST_CORRECTION";
|
@@ -4116,7 +4086,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4116
4086
|
option: string;
|
4117
4087
|
filename: string;
|
4118
4088
|
originalFilename: string;
|
4119
|
-
}[] | undefined>;
|
4089
|
+
}[] | [string, string] | undefined>;
|
4090
|
+
createdAtLocation: string;
|
4120
4091
|
annotation?: Record<string, string | number | boolean | {
|
4121
4092
|
type: string;
|
4122
4093
|
filename: string;
|
@@ -4154,9 +4125,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4154
4125
|
option: string;
|
4155
4126
|
filename: string;
|
4156
4127
|
originalFilename: string;
|
4157
|
-
}[] | undefined> | undefined;
|
4158
|
-
createdAtLocation?: string | undefined;
|
4159
|
-
updatedAtLocation?: string | undefined;
|
4128
|
+
}[] | [string, string] | undefined> | undefined;
|
4160
4129
|
originalActionId?: string | undefined;
|
4161
4130
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4162
4131
|
id: z.ZodString;
|
@@ -4164,7 +4133,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4164
4133
|
createdAt: z.ZodString;
|
4165
4134
|
createdBy: z.ZodString;
|
4166
4135
|
createdByRole: z.ZodString;
|
4167
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4136
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4168
4137
|
filename: z.ZodString;
|
4169
4138
|
originalFilename: z.ZodString;
|
4170
4139
|
type: z.ZodString;
|
@@ -4278,7 +4247,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4278
4247
|
addressLine3?: string | null | undefined;
|
4279
4248
|
postcodeOrZip?: string | null | undefined;
|
4280
4249
|
}>]>>;
|
4281
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4250
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4282
4251
|
filename: z.ZodString;
|
4283
4252
|
originalFilename: z.ZodString;
|
4284
4253
|
type: z.ZodString;
|
@@ -4392,8 +4361,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4392
4361
|
addressLine3?: string | null | undefined;
|
4393
4362
|
postcodeOrZip?: string | null | undefined;
|
4394
4363
|
}>]>>>;
|
4395
|
-
createdAtLocation: z.
|
4396
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
4364
|
+
createdAtLocation: z.ZodString;
|
4397
4365
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4398
4366
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4399
4367
|
}, {
|
@@ -4444,7 +4412,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4444
4412
|
option: string;
|
4445
4413
|
filename: string;
|
4446
4414
|
originalFilename: string;
|
4447
|
-
}[] | undefined>;
|
4415
|
+
}[] | [string, string] | undefined>;
|
4416
|
+
createdAtLocation: string;
|
4448
4417
|
requestId: string;
|
4449
4418
|
annotation?: Record<string, string | number | boolean | {
|
4450
4419
|
type: string;
|
@@ -4483,9 +4452,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4483
4452
|
option: string;
|
4484
4453
|
filename: string;
|
4485
4454
|
originalFilename: string;
|
4486
|
-
}[] | undefined> | undefined;
|
4487
|
-
createdAtLocation?: string | undefined;
|
4488
|
-
updatedAtLocation?: string | undefined;
|
4455
|
+
}[] | [string, string] | undefined> | undefined;
|
4489
4456
|
originalActionId?: string | undefined;
|
4490
4457
|
}, {
|
4491
4458
|
type: "APPROVE_CORRECTION";
|
@@ -4532,7 +4499,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4532
4499
|
option: string;
|
4533
4500
|
filename: string;
|
4534
4501
|
originalFilename: string;
|
4535
|
-
}[] | undefined>;
|
4502
|
+
}[] | [string, string] | undefined>;
|
4503
|
+
createdAtLocation: string;
|
4536
4504
|
requestId: string;
|
4537
4505
|
annotation?: Record<string, string | number | boolean | {
|
4538
4506
|
type: string;
|
@@ -4571,9 +4539,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4571
4539
|
option: string;
|
4572
4540
|
filename: string;
|
4573
4541
|
originalFilename: string;
|
4574
|
-
}[] | undefined> | undefined;
|
4575
|
-
createdAtLocation?: string | undefined;
|
4576
|
-
updatedAtLocation?: string | undefined;
|
4542
|
+
}[] | [string, string] | undefined> | undefined;
|
4577
4543
|
originalActionId?: string | undefined;
|
4578
4544
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4579
4545
|
id: z.ZodString;
|
@@ -4581,7 +4547,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4581
4547
|
createdAt: z.ZodString;
|
4582
4548
|
createdBy: z.ZodString;
|
4583
4549
|
createdByRole: z.ZodString;
|
4584
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4550
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4585
4551
|
filename: z.ZodString;
|
4586
4552
|
originalFilename: z.ZodString;
|
4587
4553
|
type: z.ZodString;
|
@@ -4695,7 +4661,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4695
4661
|
addressLine3?: string | null | undefined;
|
4696
4662
|
postcodeOrZip?: string | null | undefined;
|
4697
4663
|
}>]>>;
|
4698
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4664
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4699
4665
|
filename: z.ZodString;
|
4700
4666
|
originalFilename: z.ZodString;
|
4701
4667
|
type: z.ZodString;
|
@@ -4809,8 +4775,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4809
4775
|
addressLine3?: string | null | undefined;
|
4810
4776
|
postcodeOrZip?: string | null | undefined;
|
4811
4777
|
}>]>>>;
|
4812
|
-
createdAtLocation: z.
|
4813
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
4778
|
+
createdAtLocation: z.ZodString;
|
4814
4779
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4815
4780
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4816
4781
|
}, {
|
@@ -4861,7 +4826,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4861
4826
|
option: string;
|
4862
4827
|
filename: string;
|
4863
4828
|
originalFilename: string;
|
4864
|
-
}[] | undefined>;
|
4829
|
+
}[] | [string, string] | undefined>;
|
4830
|
+
createdAtLocation: string;
|
4865
4831
|
requestId: string;
|
4866
4832
|
annotation?: Record<string, string | number | boolean | {
|
4867
4833
|
type: string;
|
@@ -4900,9 +4866,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4900
4866
|
option: string;
|
4901
4867
|
filename: string;
|
4902
4868
|
originalFilename: string;
|
4903
|
-
}[] | undefined> | undefined;
|
4904
|
-
createdAtLocation?: string | undefined;
|
4905
|
-
updatedAtLocation?: string | undefined;
|
4869
|
+
}[] | [string, string] | undefined> | undefined;
|
4906
4870
|
originalActionId?: string | undefined;
|
4907
4871
|
}, {
|
4908
4872
|
type: "REJECT_CORRECTION";
|
@@ -4949,7 +4913,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4949
4913
|
option: string;
|
4950
4914
|
filename: string;
|
4951
4915
|
originalFilename: string;
|
4952
|
-
}[] | undefined>;
|
4916
|
+
}[] | [string, string] | undefined>;
|
4917
|
+
createdAtLocation: string;
|
4953
4918
|
requestId: string;
|
4954
4919
|
annotation?: Record<string, string | number | boolean | {
|
4955
4920
|
type: string;
|
@@ -4988,9 +4953,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4988
4953
|
option: string;
|
4989
4954
|
filename: string;
|
4990
4955
|
originalFilename: string;
|
4991
|
-
}[] | undefined> | undefined;
|
4992
|
-
createdAtLocation?: string | undefined;
|
4993
|
-
updatedAtLocation?: string | undefined;
|
4956
|
+
}[] | [string, string] | undefined> | undefined;
|
4994
4957
|
originalActionId?: string | undefined;
|
4995
4958
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4996
4959
|
id: z.ZodString;
|
@@ -4998,7 +4961,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4998
4961
|
createdAt: z.ZodString;
|
4999
4962
|
createdBy: z.ZodString;
|
5000
4963
|
createdByRole: z.ZodString;
|
5001
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4964
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5002
4965
|
filename: z.ZodString;
|
5003
4966
|
originalFilename: z.ZodString;
|
5004
4967
|
type: z.ZodString;
|
@@ -5112,7 +5075,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5112
5075
|
addressLine3?: string | null | undefined;
|
5113
5076
|
postcodeOrZip?: string | null | undefined;
|
5114
5077
|
}>]>>;
|
5115
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5078
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5116
5079
|
filename: z.ZodString;
|
5117
5080
|
originalFilename: z.ZodString;
|
5118
5081
|
type: z.ZodString;
|
@@ -5226,8 +5189,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5226
5189
|
addressLine3?: string | null | undefined;
|
5227
5190
|
postcodeOrZip?: string | null | undefined;
|
5228
5191
|
}>]>>>;
|
5229
|
-
createdAtLocation: z.
|
5230
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
5192
|
+
createdAtLocation: z.ZodString;
|
5231
5193
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5232
5194
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5233
5195
|
}, {
|
@@ -5278,7 +5240,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5278
5240
|
option: string;
|
5279
5241
|
filename: string;
|
5280
5242
|
originalFilename: string;
|
5281
|
-
}[] | undefined>;
|
5243
|
+
}[] | [string, string] | undefined>;
|
5244
|
+
createdAtLocation: string;
|
5282
5245
|
assignedTo: null;
|
5283
5246
|
annotation?: Record<string, string | number | boolean | {
|
5284
5247
|
type: string;
|
@@ -5317,9 +5280,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5317
5280
|
option: string;
|
5318
5281
|
filename: string;
|
5319
5282
|
originalFilename: string;
|
5320
|
-
}[] | undefined> | undefined;
|
5321
|
-
createdAtLocation?: string | undefined;
|
5322
|
-
updatedAtLocation?: string | undefined;
|
5283
|
+
}[] | [string, string] | undefined> | undefined;
|
5323
5284
|
originalActionId?: string | undefined;
|
5324
5285
|
}, {
|
5325
5286
|
type: "UNASSIGN";
|
@@ -5366,7 +5327,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5366
5327
|
option: string;
|
5367
5328
|
filename: string;
|
5368
5329
|
originalFilename: string;
|
5369
|
-
}[] | undefined>;
|
5330
|
+
}[] | [string, string] | undefined>;
|
5331
|
+
createdAtLocation: string;
|
5370
5332
|
assignedTo: null;
|
5371
5333
|
annotation?: Record<string, string | number | boolean | {
|
5372
5334
|
type: string;
|
@@ -5405,9 +5367,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5405
5367
|
option: string;
|
5406
5368
|
filename: string;
|
5407
5369
|
originalFilename: string;
|
5408
|
-
}[] | undefined> | undefined;
|
5409
|
-
createdAtLocation?: string | undefined;
|
5410
|
-
updatedAtLocation?: string | undefined;
|
5370
|
+
}[] | [string, string] | undefined> | undefined;
|
5411
5371
|
originalActionId?: string | undefined;
|
5412
5372
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5413
5373
|
id: z.ZodString;
|
@@ -5415,7 +5375,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5415
5375
|
createdAt: z.ZodString;
|
5416
5376
|
createdBy: z.ZodString;
|
5417
5377
|
createdByRole: z.ZodString;
|
5418
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5378
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5419
5379
|
filename: z.ZodString;
|
5420
5380
|
originalFilename: z.ZodString;
|
5421
5381
|
type: z.ZodString;
|
@@ -5529,7 +5489,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5529
5489
|
addressLine3?: string | null | undefined;
|
5530
5490
|
postcodeOrZip?: string | null | undefined;
|
5531
5491
|
}>]>>;
|
5532
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5492
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5533
5493
|
filename: z.ZodString;
|
5534
5494
|
originalFilename: z.ZodString;
|
5535
5495
|
type: z.ZodString;
|
@@ -5643,8 +5603,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5643
5603
|
addressLine3?: string | null | undefined;
|
5644
5604
|
postcodeOrZip?: string | null | undefined;
|
5645
5605
|
}>]>>>;
|
5646
|
-
createdAtLocation: z.
|
5647
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
5606
|
+
createdAtLocation: z.ZodString;
|
5648
5607
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5649
5608
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5650
5609
|
}, {
|
@@ -5694,7 +5653,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5694
5653
|
option: string;
|
5695
5654
|
filename: string;
|
5696
5655
|
originalFilename: string;
|
5697
|
-
}[] | undefined>;
|
5656
|
+
}[] | [string, string] | undefined>;
|
5657
|
+
createdAtLocation: string;
|
5698
5658
|
annotation?: Record<string, string | number | boolean | {
|
5699
5659
|
type: string;
|
5700
5660
|
filename: string;
|
@@ -5732,9 +5692,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5732
5692
|
option: string;
|
5733
5693
|
filename: string;
|
5734
5694
|
originalFilename: string;
|
5735
|
-
}[] | undefined> | undefined;
|
5736
|
-
createdAtLocation?: string | undefined;
|
5737
|
-
updatedAtLocation?: string | undefined;
|
5695
|
+
}[] | [string, string] | undefined> | undefined;
|
5738
5696
|
originalActionId?: string | undefined;
|
5739
5697
|
}, {
|
5740
5698
|
type: "PRINT_CERTIFICATE";
|
@@ -5781,7 +5739,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5781
5739
|
option: string;
|
5782
5740
|
filename: string;
|
5783
5741
|
originalFilename: string;
|
5784
|
-
}[] | undefined>;
|
5742
|
+
}[] | [string, string] | undefined>;
|
5743
|
+
createdAtLocation: string;
|
5785
5744
|
annotation?: Record<string, string | number | boolean | {
|
5786
5745
|
type: string;
|
5787
5746
|
filename: string;
|
@@ -5819,9 +5778,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5819
5778
|
option: string;
|
5820
5779
|
filename: string;
|
5821
5780
|
originalFilename: string;
|
5822
|
-
}[] | undefined> | undefined;
|
5823
|
-
createdAtLocation?: string | undefined;
|
5824
|
-
updatedAtLocation?: string | undefined;
|
5781
|
+
}[] | [string, string] | undefined> | undefined;
|
5825
5782
|
originalActionId?: string | undefined;
|
5826
5783
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5827
5784
|
id: z.ZodString;
|
@@ -5829,7 +5786,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5829
5786
|
createdAt: z.ZodString;
|
5830
5787
|
createdBy: z.ZodString;
|
5831
5788
|
createdByRole: z.ZodString;
|
5832
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5789
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5833
5790
|
filename: z.ZodString;
|
5834
5791
|
originalFilename: z.ZodString;
|
5835
5792
|
type: z.ZodString;
|
@@ -5943,7 +5900,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5943
5900
|
addressLine3?: string | null | undefined;
|
5944
5901
|
postcodeOrZip?: string | null | undefined;
|
5945
5902
|
}>]>>;
|
5946
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5903
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5947
5904
|
filename: z.ZodString;
|
5948
5905
|
originalFilename: z.ZodString;
|
5949
5906
|
type: z.ZodString;
|
@@ -6057,8 +6014,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6057
6014
|
addressLine3?: string | null | undefined;
|
6058
6015
|
postcodeOrZip?: string | null | undefined;
|
6059
6016
|
}>]>>>;
|
6060
|
-
createdAtLocation: z.
|
6061
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
6017
|
+
createdAtLocation: z.ZodString;
|
6062
6018
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6063
6019
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6064
6020
|
}, {
|
@@ -6108,7 +6064,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6108
6064
|
option: string;
|
6109
6065
|
filename: string;
|
6110
6066
|
originalFilename: string;
|
6111
|
-
}[] | undefined>;
|
6067
|
+
}[] | [string, string] | undefined>;
|
6068
|
+
createdAtLocation: string;
|
6112
6069
|
annotation?: Record<string, string | number | boolean | {
|
6113
6070
|
type: string;
|
6114
6071
|
filename: string;
|
@@ -6146,9 +6103,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6146
6103
|
option: string;
|
6147
6104
|
filename: string;
|
6148
6105
|
originalFilename: string;
|
6149
|
-
}[] | undefined> | undefined;
|
6150
|
-
createdAtLocation?: string | undefined;
|
6151
|
-
updatedAtLocation?: string | undefined;
|
6106
|
+
}[] | [string, string] | undefined> | undefined;
|
6152
6107
|
originalActionId?: string | undefined;
|
6153
6108
|
}, {
|
6154
6109
|
type: "READ";
|
@@ -6195,7 +6150,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6195
6150
|
option: string;
|
6196
6151
|
filename: string;
|
6197
6152
|
originalFilename: string;
|
6198
|
-
}[] | undefined>;
|
6153
|
+
}[] | [string, string] | undefined>;
|
6154
|
+
createdAtLocation: string;
|
6199
6155
|
annotation?: Record<string, string | number | boolean | {
|
6200
6156
|
type: string;
|
6201
6157
|
filename: string;
|
@@ -6233,9 +6189,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6233
6189
|
option: string;
|
6234
6190
|
filename: string;
|
6235
6191
|
originalFilename: string;
|
6236
|
-
}[] | undefined> | undefined;
|
6237
|
-
createdAtLocation?: string | undefined;
|
6238
|
-
updatedAtLocation?: string | undefined;
|
6192
|
+
}[] | [string, string] | undefined> | undefined;
|
6239
6193
|
originalActionId?: string | undefined;
|
6240
6194
|
}>]>, z.ZodObject<z.objectUtil.extendShape<Omit<{
|
6241
6195
|
id: z.ZodString;
|
@@ -6243,7 +6197,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6243
6197
|
createdAt: z.ZodString;
|
6244
6198
|
createdBy: z.ZodString;
|
6245
6199
|
createdByRole: z.ZodString;
|
6246
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6200
|
+
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6247
6201
|
filename: z.ZodString;
|
6248
6202
|
originalFilename: z.ZodString;
|
6249
6203
|
type: z.ZodString;
|
@@ -6357,7 +6311,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6357
6311
|
addressLine3?: string | null | undefined;
|
6358
6312
|
postcodeOrZip?: string | null | undefined;
|
6359
6313
|
}>]>>;
|
6360
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6314
|
+
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6361
6315
|
filename: z.ZodString;
|
6362
6316
|
originalFilename: z.ZodString;
|
6363
6317
|
type: z.ZodString;
|
@@ -6471,11 +6425,10 @@ export declare const EventDocument: z.ZodObject<{
|
|
6471
6425
|
addressLine3?: string | null | undefined;
|
6472
6426
|
postcodeOrZip?: string | null | undefined;
|
6473
6427
|
}>]>>>;
|
6474
|
-
createdAtLocation: z.
|
6475
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
6428
|
+
createdAtLocation: z.ZodString;
|
6476
6429
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6477
6430
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6478
|
-
}, "
|
6431
|
+
}, "declaration" | "annotation">, {
|
6479
6432
|
type: z.ZodEnum<["NOTIFY", "DECLARE", "VALIDATE", "REGISTER", "REJECT", "ARCHIVE", "PRINT_CERTIFICATE"]>;
|
6480
6433
|
status: z.ZodLiteral<"Rejected">;
|
6481
6434
|
}>, "strip", z.ZodTypeAny, {
|
@@ -6484,7 +6437,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
6484
6437
|
status: "Rejected";
|
6485
6438
|
transactionId: string;
|
6486
6439
|
createdAt: string;
|
6487
|
-
|
6440
|
+
createdBy: string;
|
6441
|
+
createdByRole: string;
|
6442
|
+
createdAtLocation: string;
|
6488
6443
|
originalActionId?: string | undefined;
|
6489
6444
|
}, {
|
6490
6445
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -6492,7 +6447,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
6492
6447
|
status: "Rejected";
|
6493
6448
|
transactionId: string;
|
6494
6449
|
createdAt: string;
|
6495
|
-
|
6450
|
+
createdBy: string;
|
6451
|
+
createdByRole: string;
|
6452
|
+
createdAtLocation: string;
|
6496
6453
|
originalActionId?: string | undefined;
|
6497
6454
|
}>]>, "many">;
|
6498
6455
|
trackingId: z.ZodString;
|
@@ -6500,7 +6457,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6500
6457
|
type: string;
|
6501
6458
|
id: string;
|
6502
6459
|
createdAt: string;
|
6503
|
-
updatedAtLocation: string;
|
6504
6460
|
updatedAt: string;
|
6505
6461
|
actions: ({
|
6506
6462
|
type: "ASSIGN";
|
@@ -6547,7 +6503,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6547
6503
|
option: string;
|
6548
6504
|
filename: string;
|
6549
6505
|
originalFilename: string;
|
6550
|
-
}[] | undefined>;
|
6506
|
+
}[] | [string, string] | undefined>;
|
6507
|
+
createdAtLocation: string;
|
6551
6508
|
assignedTo: string;
|
6552
6509
|
annotation?: Record<string, string | number | boolean | {
|
6553
6510
|
type: string;
|
@@ -6586,9 +6543,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6586
6543
|
option: string;
|
6587
6544
|
filename: string;
|
6588
6545
|
originalFilename: string;
|
6589
|
-
}[] | undefined> | undefined;
|
6590
|
-
createdAtLocation?: string | undefined;
|
6591
|
-
updatedAtLocation?: string | undefined;
|
6546
|
+
}[] | [string, string] | undefined> | undefined;
|
6592
6547
|
originalActionId?: string | undefined;
|
6593
6548
|
} | {
|
6594
6549
|
type: "UNASSIGN";
|
@@ -6635,7 +6590,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6635
6590
|
option: string;
|
6636
6591
|
filename: string;
|
6637
6592
|
originalFilename: string;
|
6638
|
-
}[] | undefined>;
|
6593
|
+
}[] | [string, string] | undefined>;
|
6594
|
+
createdAtLocation: string;
|
6639
6595
|
assignedTo: null;
|
6640
6596
|
annotation?: Record<string, string | number | boolean | {
|
6641
6597
|
type: string;
|
@@ -6674,9 +6630,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6674
6630
|
option: string;
|
6675
6631
|
filename: string;
|
6676
6632
|
originalFilename: string;
|
6677
|
-
}[] | undefined> | undefined;
|
6678
|
-
createdAtLocation?: string | undefined;
|
6679
|
-
updatedAtLocation?: string | undefined;
|
6633
|
+
}[] | [string, string] | undefined> | undefined;
|
6680
6634
|
originalActionId?: string | undefined;
|
6681
6635
|
} | {
|
6682
6636
|
type: "REGISTER";
|
@@ -6723,7 +6677,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6723
6677
|
option: string;
|
6724
6678
|
filename: string;
|
6725
6679
|
originalFilename: string;
|
6726
|
-
}[] | undefined>;
|
6680
|
+
}[] | [string, string] | undefined>;
|
6681
|
+
createdAtLocation: string;
|
6727
6682
|
annotation?: Record<string, string | number | boolean | {
|
6728
6683
|
type: string;
|
6729
6684
|
filename: string;
|
@@ -6761,9 +6716,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6761
6716
|
option: string;
|
6762
6717
|
filename: string;
|
6763
6718
|
originalFilename: string;
|
6764
|
-
}[] | undefined> | undefined;
|
6765
|
-
createdAtLocation?: string | undefined;
|
6766
|
-
updatedAtLocation?: string | undefined;
|
6719
|
+
}[] | [string, string] | undefined> | undefined;
|
6767
6720
|
originalActionId?: string | undefined;
|
6768
6721
|
registrationNumber?: string | undefined;
|
6769
6722
|
} | {
|
@@ -6811,7 +6764,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6811
6764
|
option: string;
|
6812
6765
|
filename: string;
|
6813
6766
|
originalFilename: string;
|
6814
|
-
}[] | undefined>;
|
6767
|
+
}[] | [string, string] | undefined>;
|
6768
|
+
createdAtLocation: string;
|
6815
6769
|
annotation?: Record<string, string | number | boolean | {
|
6816
6770
|
type: string;
|
6817
6771
|
filename: string;
|
@@ -6849,9 +6803,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6849
6803
|
option: string;
|
6850
6804
|
filename: string;
|
6851
6805
|
originalFilename: string;
|
6852
|
-
}[] | undefined> | undefined;
|
6853
|
-
createdAtLocation?: string | undefined;
|
6854
|
-
updatedAtLocation?: string | undefined;
|
6806
|
+
}[] | [string, string] | undefined> | undefined;
|
6855
6807
|
originalActionId?: string | undefined;
|
6856
6808
|
} | {
|
6857
6809
|
type: "VALIDATE";
|
@@ -6898,7 +6850,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6898
6850
|
option: string;
|
6899
6851
|
filename: string;
|
6900
6852
|
originalFilename: string;
|
6901
|
-
}[] | undefined>;
|
6853
|
+
}[] | [string, string] | undefined>;
|
6854
|
+
createdAtLocation: string;
|
6902
6855
|
annotation?: Record<string, string | number | boolean | {
|
6903
6856
|
type: string;
|
6904
6857
|
filename: string;
|
@@ -6936,9 +6889,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6936
6889
|
option: string;
|
6937
6890
|
filename: string;
|
6938
6891
|
originalFilename: string;
|
6939
|
-
}[] | undefined> | undefined;
|
6940
|
-
createdAtLocation?: string | undefined;
|
6941
|
-
updatedAtLocation?: string | undefined;
|
6892
|
+
}[] | [string, string] | undefined> | undefined;
|
6942
6893
|
originalActionId?: string | undefined;
|
6943
6894
|
} | {
|
6944
6895
|
type: "REJECT";
|
@@ -6985,7 +6936,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6985
6936
|
option: string;
|
6986
6937
|
filename: string;
|
6987
6938
|
originalFilename: string;
|
6988
|
-
}[] | undefined>;
|
6939
|
+
}[] | [string, string] | undefined>;
|
6940
|
+
createdAtLocation: string;
|
6989
6941
|
annotation?: Record<string, string | number | boolean | {
|
6990
6942
|
type: string;
|
6991
6943
|
filename: string;
|
@@ -7023,9 +6975,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7023
6975
|
option: string;
|
7024
6976
|
filename: string;
|
7025
6977
|
originalFilename: string;
|
7026
|
-
}[] | undefined> | undefined;
|
7027
|
-
createdAtLocation?: string | undefined;
|
7028
|
-
updatedAtLocation?: string | undefined;
|
6978
|
+
}[] | [string, string] | undefined> | undefined;
|
7029
6979
|
originalActionId?: string | undefined;
|
7030
6980
|
} | {
|
7031
6981
|
type: "MARKED_AS_DUPLICATE";
|
@@ -7072,7 +7022,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7072
7022
|
option: string;
|
7073
7023
|
filename: string;
|
7074
7024
|
originalFilename: string;
|
7075
|
-
}[] | undefined>;
|
7025
|
+
}[] | [string, string] | undefined>;
|
7026
|
+
createdAtLocation: string;
|
7076
7027
|
annotation?: Record<string, string | number | boolean | {
|
7077
7028
|
type: string;
|
7078
7029
|
filename: string;
|
@@ -7110,9 +7061,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7110
7061
|
option: string;
|
7111
7062
|
filename: string;
|
7112
7063
|
originalFilename: string;
|
7113
|
-
}[] | undefined> | undefined;
|
7114
|
-
createdAtLocation?: string | undefined;
|
7115
|
-
updatedAtLocation?: string | undefined;
|
7064
|
+
}[] | [string, string] | undefined> | undefined;
|
7116
7065
|
originalActionId?: string | undefined;
|
7117
7066
|
} | {
|
7118
7067
|
type: "ARCHIVE";
|
@@ -7159,7 +7108,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7159
7108
|
option: string;
|
7160
7109
|
filename: string;
|
7161
7110
|
originalFilename: string;
|
7162
|
-
}[] | undefined>;
|
7111
|
+
}[] | [string, string] | undefined>;
|
7112
|
+
createdAtLocation: string;
|
7163
7113
|
annotation?: Record<string, string | number | boolean | {
|
7164
7114
|
type: string;
|
7165
7115
|
filename: string;
|
@@ -7197,9 +7147,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7197
7147
|
option: string;
|
7198
7148
|
filename: string;
|
7199
7149
|
originalFilename: string;
|
7200
|
-
}[] | undefined> | undefined;
|
7201
|
-
createdAtLocation?: string | undefined;
|
7202
|
-
updatedAtLocation?: string | undefined;
|
7150
|
+
}[] | [string, string] | undefined> | undefined;
|
7203
7151
|
originalActionId?: string | undefined;
|
7204
7152
|
} | {
|
7205
7153
|
type: "CREATE";
|
@@ -7246,7 +7194,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7246
7194
|
option: string;
|
7247
7195
|
filename: string;
|
7248
7196
|
originalFilename: string;
|
7249
|
-
}[] | undefined>;
|
7197
|
+
}[] | [string, string] | undefined>;
|
7198
|
+
createdAtLocation: string;
|
7250
7199
|
annotation?: Record<string, string | number | boolean | {
|
7251
7200
|
type: string;
|
7252
7201
|
filename: string;
|
@@ -7284,9 +7233,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7284
7233
|
option: string;
|
7285
7234
|
filename: string;
|
7286
7235
|
originalFilename: string;
|
7287
|
-
}[] | undefined> | undefined;
|
7288
|
-
createdAtLocation?: string | undefined;
|
7289
|
-
updatedAtLocation?: string | undefined;
|
7236
|
+
}[] | [string, string] | undefined> | undefined;
|
7290
7237
|
originalActionId?: string | undefined;
|
7291
7238
|
} | {
|
7292
7239
|
type: "NOTIFY";
|
@@ -7333,7 +7280,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7333
7280
|
option: string;
|
7334
7281
|
filename: string;
|
7335
7282
|
originalFilename: string;
|
7336
|
-
}[] | undefined>;
|
7283
|
+
}[] | [string, string] | undefined>;
|
7284
|
+
createdAtLocation: string;
|
7337
7285
|
annotation?: Record<string, string | number | boolean | {
|
7338
7286
|
type: string;
|
7339
7287
|
filename: string;
|
@@ -7371,9 +7319,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7371
7319
|
option: string;
|
7372
7320
|
filename: string;
|
7373
7321
|
originalFilename: string;
|
7374
|
-
}[] | undefined> | undefined;
|
7375
|
-
createdAtLocation?: string | undefined;
|
7376
|
-
updatedAtLocation?: string | undefined;
|
7322
|
+
}[] | [string, string] | undefined> | undefined;
|
7377
7323
|
originalActionId?: string | undefined;
|
7378
7324
|
} | {
|
7379
7325
|
type: "PRINT_CERTIFICATE";
|
@@ -7420,7 +7366,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7420
7366
|
option: string;
|
7421
7367
|
filename: string;
|
7422
7368
|
originalFilename: string;
|
7423
|
-
}[] | undefined>;
|
7369
|
+
}[] | [string, string] | undefined>;
|
7370
|
+
createdAtLocation: string;
|
7424
7371
|
annotation?: Record<string, string | number | boolean | {
|
7425
7372
|
type: string;
|
7426
7373
|
filename: string;
|
@@ -7458,9 +7405,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7458
7405
|
option: string;
|
7459
7406
|
filename: string;
|
7460
7407
|
originalFilename: string;
|
7461
|
-
}[] | undefined> | undefined;
|
7462
|
-
createdAtLocation?: string | undefined;
|
7463
|
-
updatedAtLocation?: string | undefined;
|
7408
|
+
}[] | [string, string] | undefined> | undefined;
|
7464
7409
|
originalActionId?: string | undefined;
|
7465
7410
|
} | {
|
7466
7411
|
type: "REQUEST_CORRECTION";
|
@@ -7507,7 +7452,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7507
7452
|
option: string;
|
7508
7453
|
filename: string;
|
7509
7454
|
originalFilename: string;
|
7510
|
-
}[] | undefined>;
|
7455
|
+
}[] | [string, string] | undefined>;
|
7456
|
+
createdAtLocation: string;
|
7511
7457
|
annotation?: Record<string, string | number | boolean | {
|
7512
7458
|
type: string;
|
7513
7459
|
filename: string;
|
@@ -7545,9 +7491,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7545
7491
|
option: string;
|
7546
7492
|
filename: string;
|
7547
7493
|
originalFilename: string;
|
7548
|
-
}[] | undefined> | undefined;
|
7549
|
-
createdAtLocation?: string | undefined;
|
7550
|
-
updatedAtLocation?: string | undefined;
|
7494
|
+
}[] | [string, string] | undefined> | undefined;
|
7551
7495
|
originalActionId?: string | undefined;
|
7552
7496
|
} | {
|
7553
7497
|
type: "APPROVE_CORRECTION";
|
@@ -7594,7 +7538,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7594
7538
|
option: string;
|
7595
7539
|
filename: string;
|
7596
7540
|
originalFilename: string;
|
7597
|
-
}[] | undefined>;
|
7541
|
+
}[] | [string, string] | undefined>;
|
7542
|
+
createdAtLocation: string;
|
7598
7543
|
requestId: string;
|
7599
7544
|
annotation?: Record<string, string | number | boolean | {
|
7600
7545
|
type: string;
|
@@ -7633,9 +7578,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7633
7578
|
option: string;
|
7634
7579
|
filename: string;
|
7635
7580
|
originalFilename: string;
|
7636
|
-
}[] | undefined> | undefined;
|
7637
|
-
createdAtLocation?: string | undefined;
|
7638
|
-
updatedAtLocation?: string | undefined;
|
7581
|
+
}[] | [string, string] | undefined> | undefined;
|
7639
7582
|
originalActionId?: string | undefined;
|
7640
7583
|
} | {
|
7641
7584
|
type: "REJECT_CORRECTION";
|
@@ -7682,7 +7625,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7682
7625
|
option: string;
|
7683
7626
|
filename: string;
|
7684
7627
|
originalFilename: string;
|
7685
|
-
}[] | undefined>;
|
7628
|
+
}[] | [string, string] | undefined>;
|
7629
|
+
createdAtLocation: string;
|
7686
7630
|
requestId: string;
|
7687
7631
|
annotation?: Record<string, string | number | boolean | {
|
7688
7632
|
type: string;
|
@@ -7721,9 +7665,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7721
7665
|
option: string;
|
7722
7666
|
filename: string;
|
7723
7667
|
originalFilename: string;
|
7724
|
-
}[] | undefined> | undefined;
|
7725
|
-
createdAtLocation?: string | undefined;
|
7726
|
-
updatedAtLocation?: string | undefined;
|
7668
|
+
}[] | [string, string] | undefined> | undefined;
|
7727
7669
|
originalActionId?: string | undefined;
|
7728
7670
|
} | {
|
7729
7671
|
type: "READ";
|
@@ -7770,7 +7712,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7770
7712
|
option: string;
|
7771
7713
|
filename: string;
|
7772
7714
|
originalFilename: string;
|
7773
|
-
}[] | undefined>;
|
7715
|
+
}[] | [string, string] | undefined>;
|
7716
|
+
createdAtLocation: string;
|
7774
7717
|
annotation?: Record<string, string | number | boolean | {
|
7775
7718
|
type: string;
|
7776
7719
|
filename: string;
|
@@ -7808,9 +7751,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7808
7751
|
option: string;
|
7809
7752
|
filename: string;
|
7810
7753
|
originalFilename: string;
|
7811
|
-
}[] | undefined> | undefined;
|
7812
|
-
createdAtLocation?: string | undefined;
|
7813
|
-
updatedAtLocation?: string | undefined;
|
7754
|
+
}[] | [string, string] | undefined> | undefined;
|
7814
7755
|
originalActionId?: string | undefined;
|
7815
7756
|
} | {
|
7816
7757
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -7818,7 +7759,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
7818
7759
|
status: "Rejected";
|
7819
7760
|
transactionId: string;
|
7820
7761
|
createdAt: string;
|
7821
|
-
|
7762
|
+
createdBy: string;
|
7763
|
+
createdByRole: string;
|
7764
|
+
createdAtLocation: string;
|
7822
7765
|
originalActionId?: string | undefined;
|
7823
7766
|
})[];
|
7824
7767
|
trackingId: string;
|
@@ -7829,7 +7772,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
7829
7772
|
type: string;
|
7830
7773
|
id: string;
|
7831
7774
|
createdAt: string;
|
7832
|
-
updatedAtLocation: string;
|
7833
7775
|
updatedAt: string;
|
7834
7776
|
actions: ({
|
7835
7777
|
type: "ASSIGN";
|
@@ -7876,7 +7818,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7876
7818
|
option: string;
|
7877
7819
|
filename: string;
|
7878
7820
|
originalFilename: string;
|
7879
|
-
}[] | undefined>;
|
7821
|
+
}[] | [string, string] | undefined>;
|
7822
|
+
createdAtLocation: string;
|
7880
7823
|
assignedTo: string;
|
7881
7824
|
annotation?: Record<string, string | number | boolean | {
|
7882
7825
|
type: string;
|
@@ -7915,9 +7858,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7915
7858
|
option: string;
|
7916
7859
|
filename: string;
|
7917
7860
|
originalFilename: string;
|
7918
|
-
}[] | undefined> | undefined;
|
7919
|
-
createdAtLocation?: string | undefined;
|
7920
|
-
updatedAtLocation?: string | undefined;
|
7861
|
+
}[] | [string, string] | undefined> | undefined;
|
7921
7862
|
originalActionId?: string | undefined;
|
7922
7863
|
} | {
|
7923
7864
|
type: "UNASSIGN";
|
@@ -7964,7 +7905,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7964
7905
|
option: string;
|
7965
7906
|
filename: string;
|
7966
7907
|
originalFilename: string;
|
7967
|
-
}[] | undefined>;
|
7908
|
+
}[] | [string, string] | undefined>;
|
7909
|
+
createdAtLocation: string;
|
7968
7910
|
assignedTo: null;
|
7969
7911
|
annotation?: Record<string, string | number | boolean | {
|
7970
7912
|
type: string;
|
@@ -8003,9 +7945,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8003
7945
|
option: string;
|
8004
7946
|
filename: string;
|
8005
7947
|
originalFilename: string;
|
8006
|
-
}[] | undefined> | undefined;
|
8007
|
-
createdAtLocation?: string | undefined;
|
8008
|
-
updatedAtLocation?: string | undefined;
|
7948
|
+
}[] | [string, string] | undefined> | undefined;
|
8009
7949
|
originalActionId?: string | undefined;
|
8010
7950
|
} | {
|
8011
7951
|
type: "REGISTER";
|
@@ -8052,7 +7992,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8052
7992
|
option: string;
|
8053
7993
|
filename: string;
|
8054
7994
|
originalFilename: string;
|
8055
|
-
}[] | undefined>;
|
7995
|
+
}[] | [string, string] | undefined>;
|
7996
|
+
createdAtLocation: string;
|
8056
7997
|
annotation?: Record<string, string | number | boolean | {
|
8057
7998
|
type: string;
|
8058
7999
|
filename: string;
|
@@ -8090,9 +8031,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8090
8031
|
option: string;
|
8091
8032
|
filename: string;
|
8092
8033
|
originalFilename: string;
|
8093
|
-
}[] | undefined> | undefined;
|
8094
|
-
createdAtLocation?: string | undefined;
|
8095
|
-
updatedAtLocation?: string | undefined;
|
8034
|
+
}[] | [string, string] | undefined> | undefined;
|
8096
8035
|
originalActionId?: string | undefined;
|
8097
8036
|
registrationNumber?: string | undefined;
|
8098
8037
|
} | {
|
@@ -8140,7 +8079,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8140
8079
|
option: string;
|
8141
8080
|
filename: string;
|
8142
8081
|
originalFilename: string;
|
8143
|
-
}[] | undefined>;
|
8082
|
+
}[] | [string, string] | undefined>;
|
8083
|
+
createdAtLocation: string;
|
8144
8084
|
annotation?: Record<string, string | number | boolean | {
|
8145
8085
|
type: string;
|
8146
8086
|
filename: string;
|
@@ -8178,9 +8118,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8178
8118
|
option: string;
|
8179
8119
|
filename: string;
|
8180
8120
|
originalFilename: string;
|
8181
|
-
}[] | undefined> | undefined;
|
8182
|
-
createdAtLocation?: string | undefined;
|
8183
|
-
updatedAtLocation?: string | undefined;
|
8121
|
+
}[] | [string, string] | undefined> | undefined;
|
8184
8122
|
originalActionId?: string | undefined;
|
8185
8123
|
} | {
|
8186
8124
|
type: "VALIDATE";
|
@@ -8227,7 +8165,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8227
8165
|
option: string;
|
8228
8166
|
filename: string;
|
8229
8167
|
originalFilename: string;
|
8230
|
-
}[] | undefined>;
|
8168
|
+
}[] | [string, string] | undefined>;
|
8169
|
+
createdAtLocation: string;
|
8231
8170
|
annotation?: Record<string, string | number | boolean | {
|
8232
8171
|
type: string;
|
8233
8172
|
filename: string;
|
@@ -8265,9 +8204,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8265
8204
|
option: string;
|
8266
8205
|
filename: string;
|
8267
8206
|
originalFilename: string;
|
8268
|
-
}[] | undefined> | undefined;
|
8269
|
-
createdAtLocation?: string | undefined;
|
8270
|
-
updatedAtLocation?: string | undefined;
|
8207
|
+
}[] | [string, string] | undefined> | undefined;
|
8271
8208
|
originalActionId?: string | undefined;
|
8272
8209
|
} | {
|
8273
8210
|
type: "REJECT";
|
@@ -8314,7 +8251,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8314
8251
|
option: string;
|
8315
8252
|
filename: string;
|
8316
8253
|
originalFilename: string;
|
8317
|
-
}[] | undefined>;
|
8254
|
+
}[] | [string, string] | undefined>;
|
8255
|
+
createdAtLocation: string;
|
8318
8256
|
annotation?: Record<string, string | number | boolean | {
|
8319
8257
|
type: string;
|
8320
8258
|
filename: string;
|
@@ -8352,9 +8290,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8352
8290
|
option: string;
|
8353
8291
|
filename: string;
|
8354
8292
|
originalFilename: string;
|
8355
|
-
}[] | undefined> | undefined;
|
8356
|
-
createdAtLocation?: string | undefined;
|
8357
|
-
updatedAtLocation?: string | undefined;
|
8293
|
+
}[] | [string, string] | undefined> | undefined;
|
8358
8294
|
originalActionId?: string | undefined;
|
8359
8295
|
} | {
|
8360
8296
|
type: "MARKED_AS_DUPLICATE";
|
@@ -8401,7 +8337,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8401
8337
|
option: string;
|
8402
8338
|
filename: string;
|
8403
8339
|
originalFilename: string;
|
8404
|
-
}[] | undefined>;
|
8340
|
+
}[] | [string, string] | undefined>;
|
8341
|
+
createdAtLocation: string;
|
8405
8342
|
annotation?: Record<string, string | number | boolean | {
|
8406
8343
|
type: string;
|
8407
8344
|
filename: string;
|
@@ -8439,9 +8376,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8439
8376
|
option: string;
|
8440
8377
|
filename: string;
|
8441
8378
|
originalFilename: string;
|
8442
|
-
}[] | undefined> | undefined;
|
8443
|
-
createdAtLocation?: string | undefined;
|
8444
|
-
updatedAtLocation?: string | undefined;
|
8379
|
+
}[] | [string, string] | undefined> | undefined;
|
8445
8380
|
originalActionId?: string | undefined;
|
8446
8381
|
} | {
|
8447
8382
|
type: "ARCHIVE";
|
@@ -8488,7 +8423,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8488
8423
|
option: string;
|
8489
8424
|
filename: string;
|
8490
8425
|
originalFilename: string;
|
8491
|
-
}[] | undefined>;
|
8426
|
+
}[] | [string, string] | undefined>;
|
8427
|
+
createdAtLocation: string;
|
8492
8428
|
annotation?: Record<string, string | number | boolean | {
|
8493
8429
|
type: string;
|
8494
8430
|
filename: string;
|
@@ -8526,9 +8462,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8526
8462
|
option: string;
|
8527
8463
|
filename: string;
|
8528
8464
|
originalFilename: string;
|
8529
|
-
}[] | undefined> | undefined;
|
8530
|
-
createdAtLocation?: string | undefined;
|
8531
|
-
updatedAtLocation?: string | undefined;
|
8465
|
+
}[] | [string, string] | undefined> | undefined;
|
8532
8466
|
originalActionId?: string | undefined;
|
8533
8467
|
} | {
|
8534
8468
|
type: "CREATE";
|
@@ -8575,7 +8509,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8575
8509
|
option: string;
|
8576
8510
|
filename: string;
|
8577
8511
|
originalFilename: string;
|
8578
|
-
}[] | undefined>;
|
8512
|
+
}[] | [string, string] | undefined>;
|
8513
|
+
createdAtLocation: string;
|
8579
8514
|
annotation?: Record<string, string | number | boolean | {
|
8580
8515
|
type: string;
|
8581
8516
|
filename: string;
|
@@ -8613,9 +8548,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8613
8548
|
option: string;
|
8614
8549
|
filename: string;
|
8615
8550
|
originalFilename: string;
|
8616
|
-
}[] | undefined> | undefined;
|
8617
|
-
createdAtLocation?: string | undefined;
|
8618
|
-
updatedAtLocation?: string | undefined;
|
8551
|
+
}[] | [string, string] | undefined> | undefined;
|
8619
8552
|
originalActionId?: string | undefined;
|
8620
8553
|
} | {
|
8621
8554
|
type: "NOTIFY";
|
@@ -8662,7 +8595,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8662
8595
|
option: string;
|
8663
8596
|
filename: string;
|
8664
8597
|
originalFilename: string;
|
8665
|
-
}[] | undefined>;
|
8598
|
+
}[] | [string, string] | undefined>;
|
8599
|
+
createdAtLocation: string;
|
8666
8600
|
annotation?: Record<string, string | number | boolean | {
|
8667
8601
|
type: string;
|
8668
8602
|
filename: string;
|
@@ -8700,9 +8634,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8700
8634
|
option: string;
|
8701
8635
|
filename: string;
|
8702
8636
|
originalFilename: string;
|
8703
|
-
}[] | undefined> | undefined;
|
8704
|
-
createdAtLocation?: string | undefined;
|
8705
|
-
updatedAtLocation?: string | undefined;
|
8637
|
+
}[] | [string, string] | undefined> | undefined;
|
8706
8638
|
originalActionId?: string | undefined;
|
8707
8639
|
} | {
|
8708
8640
|
type: "PRINT_CERTIFICATE";
|
@@ -8749,7 +8681,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8749
8681
|
option: string;
|
8750
8682
|
filename: string;
|
8751
8683
|
originalFilename: string;
|
8752
|
-
}[] | undefined>;
|
8684
|
+
}[] | [string, string] | undefined>;
|
8685
|
+
createdAtLocation: string;
|
8753
8686
|
annotation?: Record<string, string | number | boolean | {
|
8754
8687
|
type: string;
|
8755
8688
|
filename: string;
|
@@ -8787,9 +8720,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8787
8720
|
option: string;
|
8788
8721
|
filename: string;
|
8789
8722
|
originalFilename: string;
|
8790
|
-
}[] | undefined> | undefined;
|
8791
|
-
createdAtLocation?: string | undefined;
|
8792
|
-
updatedAtLocation?: string | undefined;
|
8723
|
+
}[] | [string, string] | undefined> | undefined;
|
8793
8724
|
originalActionId?: string | undefined;
|
8794
8725
|
} | {
|
8795
8726
|
type: "REQUEST_CORRECTION";
|
@@ -8836,7 +8767,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8836
8767
|
option: string;
|
8837
8768
|
filename: string;
|
8838
8769
|
originalFilename: string;
|
8839
|
-
}[] | undefined>;
|
8770
|
+
}[] | [string, string] | undefined>;
|
8771
|
+
createdAtLocation: string;
|
8840
8772
|
annotation?: Record<string, string | number | boolean | {
|
8841
8773
|
type: string;
|
8842
8774
|
filename: string;
|
@@ -8874,9 +8806,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8874
8806
|
option: string;
|
8875
8807
|
filename: string;
|
8876
8808
|
originalFilename: string;
|
8877
|
-
}[] | undefined> | undefined;
|
8878
|
-
createdAtLocation?: string | undefined;
|
8879
|
-
updatedAtLocation?: string | undefined;
|
8809
|
+
}[] | [string, string] | undefined> | undefined;
|
8880
8810
|
originalActionId?: string | undefined;
|
8881
8811
|
} | {
|
8882
8812
|
type: "APPROVE_CORRECTION";
|
@@ -8923,7 +8853,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8923
8853
|
option: string;
|
8924
8854
|
filename: string;
|
8925
8855
|
originalFilename: string;
|
8926
|
-
}[] | undefined>;
|
8856
|
+
}[] | [string, string] | undefined>;
|
8857
|
+
createdAtLocation: string;
|
8927
8858
|
requestId: string;
|
8928
8859
|
annotation?: Record<string, string | number | boolean | {
|
8929
8860
|
type: string;
|
@@ -8962,9 +8893,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8962
8893
|
option: string;
|
8963
8894
|
filename: string;
|
8964
8895
|
originalFilename: string;
|
8965
|
-
}[] | undefined> | undefined;
|
8966
|
-
createdAtLocation?: string | undefined;
|
8967
|
-
updatedAtLocation?: string | undefined;
|
8896
|
+
}[] | [string, string] | undefined> | undefined;
|
8968
8897
|
originalActionId?: string | undefined;
|
8969
8898
|
} | {
|
8970
8899
|
type: "REJECT_CORRECTION";
|
@@ -9011,7 +8940,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9011
8940
|
option: string;
|
9012
8941
|
filename: string;
|
9013
8942
|
originalFilename: string;
|
9014
|
-
}[] | undefined>;
|
8943
|
+
}[] | [string, string] | undefined>;
|
8944
|
+
createdAtLocation: string;
|
9015
8945
|
requestId: string;
|
9016
8946
|
annotation?: Record<string, string | number | boolean | {
|
9017
8947
|
type: string;
|
@@ -9050,9 +8980,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9050
8980
|
option: string;
|
9051
8981
|
filename: string;
|
9052
8982
|
originalFilename: string;
|
9053
|
-
}[] | undefined> | undefined;
|
9054
|
-
createdAtLocation?: string | undefined;
|
9055
|
-
updatedAtLocation?: string | undefined;
|
8983
|
+
}[] | [string, string] | undefined> | undefined;
|
9056
8984
|
originalActionId?: string | undefined;
|
9057
8985
|
} | {
|
9058
8986
|
type: "READ";
|
@@ -9099,7 +9027,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9099
9027
|
option: string;
|
9100
9028
|
filename: string;
|
9101
9029
|
originalFilename: string;
|
9102
|
-
}[] | undefined>;
|
9030
|
+
}[] | [string, string] | undefined>;
|
9031
|
+
createdAtLocation: string;
|
9103
9032
|
annotation?: Record<string, string | number | boolean | {
|
9104
9033
|
type: string;
|
9105
9034
|
filename: string;
|
@@ -9137,9 +9066,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9137
9066
|
option: string;
|
9138
9067
|
filename: string;
|
9139
9068
|
originalFilename: string;
|
9140
|
-
}[] | undefined> | undefined;
|
9141
|
-
createdAtLocation?: string | undefined;
|
9142
|
-
updatedAtLocation?: string | undefined;
|
9069
|
+
}[] | [string, string] | undefined> | undefined;
|
9143
9070
|
originalActionId?: string | undefined;
|
9144
9071
|
} | {
|
9145
9072
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -9147,7 +9074,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
9147
9074
|
status: "Rejected";
|
9148
9075
|
transactionId: string;
|
9149
9076
|
createdAt: string;
|
9150
|
-
|
9077
|
+
createdBy: string;
|
9078
|
+
createdByRole: string;
|
9079
|
+
createdAtLocation: string;
|
9151
9080
|
originalActionId?: string | undefined;
|
9152
9081
|
})[];
|
9153
9082
|
trackingId: string;
|