@opencrvs/toolkit 1.8.0-rc.f9d33b7 → 1.8.0-rc.f9fb039
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 +920 -287
- package/dist/commons/events/ActionConfig.d.ts +12137 -1475
- 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 +212 -48
- package/dist/commons/events/Draft.d.ts +24 -26
- package/dist/commons/events/EventConfig.d.ts +6173 -1007
- package/dist/commons/events/EventDocument.d.ts +247 -312
- package/dist/commons/events/EventIndex.d.ts +710 -45
- package/dist/commons/events/EventMetadata.d.ts +263 -11
- package/dist/commons/events/FieldConfig.d.ts +850 -69
- 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 +5749 -925
- package/dist/commons/events/PageConfig.d.ts +1191 -3
- package/dist/commons/events/WorkqueueConfig.d.ts +1362 -8
- package/dist/commons/events/defineConfig.d.ts +533 -3
- package/dist/commons/events/event.d.ts +37 -8
- package/dist/commons/events/field.d.ts +19 -10
- package/dist/commons/events/test.utils.d.ts +7 -7
- package/dist/commons/events/utils.d.ts +308 -21
- package/dist/events/index.js +1016 -724
- package/package.json +1 -1
@@ -11,14 +11,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
11
11
|
}>>;
|
12
12
|
createdAt: z.ZodString;
|
13
13
|
updatedAt: z.ZodString;
|
14
|
-
|
14
|
+
registeredAt: z.ZodOptional<z.ZodString>;
|
15
|
+
registeredAtLocation: z.ZodOptional<z.ZodString>;
|
15
16
|
actions: z.ZodArray<z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
16
17
|
id: z.ZodString;
|
17
18
|
transactionId: z.ZodString;
|
18
19
|
createdAt: z.ZodString;
|
19
20
|
createdBy: z.ZodString;
|
20
21
|
createdByRole: z.ZodString;
|
21
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
22
|
+
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
23
|
filename: z.ZodString;
|
23
24
|
originalFilename: z.ZodString;
|
24
25
|
type: z.ZodString;
|
@@ -132,7 +133,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
132
133
|
addressLine3?: string | null | undefined;
|
133
134
|
postcodeOrZip?: string | null | undefined;
|
134
135
|
}>]>>;
|
135
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
136
|
+
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
137
|
filename: z.ZodString;
|
137
138
|
originalFilename: z.ZodString;
|
138
139
|
type: z.ZodString;
|
@@ -246,8 +247,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
246
247
|
addressLine3?: string | null | undefined;
|
247
248
|
postcodeOrZip?: string | null | undefined;
|
248
249
|
}>]>>>;
|
249
|
-
createdAtLocation: z.
|
250
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
250
|
+
createdAtLocation: z.ZodString;
|
251
251
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
252
252
|
originalActionId: z.ZodOptional<z.ZodString>;
|
253
253
|
}, {
|
@@ -297,7 +297,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
297
297
|
option: string;
|
298
298
|
filename: string;
|
299
299
|
originalFilename: string;
|
300
|
-
}[] | undefined>;
|
300
|
+
}[] | [string, string] | undefined>;
|
301
|
+
createdAtLocation: string;
|
301
302
|
annotation?: Record<string, string | number | boolean | {
|
302
303
|
type: string;
|
303
304
|
filename: string;
|
@@ -335,9 +336,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
335
336
|
option: string;
|
336
337
|
filename: string;
|
337
338
|
originalFilename: string;
|
338
|
-
}[] | undefined> | undefined;
|
339
|
-
createdAtLocation?: string | undefined;
|
340
|
-
updatedAtLocation?: string | undefined;
|
339
|
+
}[] | [string, string] | undefined> | undefined;
|
341
340
|
originalActionId?: string | undefined;
|
342
341
|
}, {
|
343
342
|
type: "CREATE";
|
@@ -384,7 +383,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
384
383
|
option: string;
|
385
384
|
filename: string;
|
386
385
|
originalFilename: string;
|
387
|
-
}[] | undefined>;
|
386
|
+
}[] | [string, string] | undefined>;
|
387
|
+
createdAtLocation: string;
|
388
388
|
annotation?: Record<string, string | number | boolean | {
|
389
389
|
type: string;
|
390
390
|
filename: string;
|
@@ -422,9 +422,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
422
422
|
option: string;
|
423
423
|
filename: string;
|
424
424
|
originalFilename: string;
|
425
|
-
}[] | undefined> | undefined;
|
426
|
-
createdAtLocation?: string | undefined;
|
427
|
-
updatedAtLocation?: string | undefined;
|
425
|
+
}[] | [string, string] | undefined> | undefined;
|
428
426
|
originalActionId?: string | undefined;
|
429
427
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
430
428
|
id: z.ZodString;
|
@@ -432,7 +430,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
432
430
|
createdAt: z.ZodString;
|
433
431
|
createdBy: z.ZodString;
|
434
432
|
createdByRole: z.ZodString;
|
435
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
433
|
+
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
434
|
filename: z.ZodString;
|
437
435
|
originalFilename: z.ZodString;
|
438
436
|
type: z.ZodString;
|
@@ -546,7 +544,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
546
544
|
addressLine3?: string | null | undefined;
|
547
545
|
postcodeOrZip?: string | null | undefined;
|
548
546
|
}>]>>;
|
549
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
547
|
+
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
548
|
filename: z.ZodString;
|
551
549
|
originalFilename: z.ZodString;
|
552
550
|
type: z.ZodString;
|
@@ -660,8 +658,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
660
658
|
addressLine3?: string | null | undefined;
|
661
659
|
postcodeOrZip?: string | null | undefined;
|
662
660
|
}>]>>>;
|
663
|
-
createdAtLocation: z.
|
664
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
661
|
+
createdAtLocation: z.ZodString;
|
665
662
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
666
663
|
originalActionId: z.ZodOptional<z.ZodString>;
|
667
664
|
}, {
|
@@ -711,7 +708,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
711
708
|
option: string;
|
712
709
|
filename: string;
|
713
710
|
originalFilename: string;
|
714
|
-
}[] | undefined>;
|
711
|
+
}[] | [string, string] | undefined>;
|
712
|
+
createdAtLocation: string;
|
715
713
|
annotation?: Record<string, string | number | boolean | {
|
716
714
|
type: string;
|
717
715
|
filename: string;
|
@@ -749,9 +747,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
749
747
|
option: string;
|
750
748
|
filename: string;
|
751
749
|
originalFilename: string;
|
752
|
-
}[] | undefined> | undefined;
|
753
|
-
createdAtLocation?: string | undefined;
|
754
|
-
updatedAtLocation?: string | undefined;
|
750
|
+
}[] | [string, string] | undefined> | undefined;
|
755
751
|
originalActionId?: string | undefined;
|
756
752
|
}, {
|
757
753
|
type: "VALIDATE";
|
@@ -798,7 +794,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
798
794
|
option: string;
|
799
795
|
filename: string;
|
800
796
|
originalFilename: string;
|
801
|
-
}[] | undefined>;
|
797
|
+
}[] | [string, string] | undefined>;
|
798
|
+
createdAtLocation: string;
|
802
799
|
annotation?: Record<string, string | number | boolean | {
|
803
800
|
type: string;
|
804
801
|
filename: string;
|
@@ -836,9 +833,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
836
833
|
option: string;
|
837
834
|
filename: string;
|
838
835
|
originalFilename: string;
|
839
|
-
}[] | undefined> | undefined;
|
840
|
-
createdAtLocation?: string | undefined;
|
841
|
-
updatedAtLocation?: string | undefined;
|
836
|
+
}[] | [string, string] | undefined> | undefined;
|
842
837
|
originalActionId?: string | undefined;
|
843
838
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
844
839
|
id: z.ZodString;
|
@@ -846,7 +841,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
846
841
|
createdAt: z.ZodString;
|
847
842
|
createdBy: z.ZodString;
|
848
843
|
createdByRole: z.ZodString;
|
849
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
844
|
+
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
845
|
filename: z.ZodString;
|
851
846
|
originalFilename: z.ZodString;
|
852
847
|
type: z.ZodString;
|
@@ -960,7 +955,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
960
955
|
addressLine3?: string | null | undefined;
|
961
956
|
postcodeOrZip?: string | null | undefined;
|
962
957
|
}>]>>;
|
963
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
958
|
+
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
959
|
filename: z.ZodString;
|
965
960
|
originalFilename: z.ZodString;
|
966
961
|
type: z.ZodString;
|
@@ -1074,8 +1069,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1074
1069
|
addressLine3?: string | null | undefined;
|
1075
1070
|
postcodeOrZip?: string | null | undefined;
|
1076
1071
|
}>]>>>;
|
1077
|
-
createdAtLocation: z.
|
1078
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1072
|
+
createdAtLocation: z.ZodString;
|
1079
1073
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1080
1074
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1081
1075
|
}, {
|
@@ -1125,7 +1119,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1125
1119
|
option: string;
|
1126
1120
|
filename: string;
|
1127
1121
|
originalFilename: string;
|
1128
|
-
}[] | undefined>;
|
1122
|
+
}[] | [string, string] | undefined>;
|
1123
|
+
createdAtLocation: string;
|
1129
1124
|
annotation?: Record<string, string | number | boolean | {
|
1130
1125
|
type: string;
|
1131
1126
|
filename: string;
|
@@ -1163,9 +1158,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1163
1158
|
option: string;
|
1164
1159
|
filename: string;
|
1165
1160
|
originalFilename: string;
|
1166
|
-
}[] | undefined> | undefined;
|
1167
|
-
createdAtLocation?: string | undefined;
|
1168
|
-
updatedAtLocation?: string | undefined;
|
1161
|
+
}[] | [string, string] | undefined> | undefined;
|
1169
1162
|
originalActionId?: string | undefined;
|
1170
1163
|
}, {
|
1171
1164
|
type: "REJECT";
|
@@ -1212,7 +1205,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1212
1205
|
option: string;
|
1213
1206
|
filename: string;
|
1214
1207
|
originalFilename: string;
|
1215
|
-
}[] | undefined>;
|
1208
|
+
}[] | [string, string] | undefined>;
|
1209
|
+
createdAtLocation: string;
|
1216
1210
|
annotation?: Record<string, string | number | boolean | {
|
1217
1211
|
type: string;
|
1218
1212
|
filename: string;
|
@@ -1250,9 +1244,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1250
1244
|
option: string;
|
1251
1245
|
filename: string;
|
1252
1246
|
originalFilename: string;
|
1253
|
-
}[] | undefined> | undefined;
|
1254
|
-
createdAtLocation?: string | undefined;
|
1255
|
-
updatedAtLocation?: string | undefined;
|
1247
|
+
}[] | [string, string] | undefined> | undefined;
|
1256
1248
|
originalActionId?: string | undefined;
|
1257
1249
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1258
1250
|
id: z.ZodString;
|
@@ -1260,7 +1252,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1260
1252
|
createdAt: z.ZodString;
|
1261
1253
|
createdBy: z.ZodString;
|
1262
1254
|
createdByRole: z.ZodString;
|
1263
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1255
|
+
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
1256
|
filename: z.ZodString;
|
1265
1257
|
originalFilename: z.ZodString;
|
1266
1258
|
type: z.ZodString;
|
@@ -1374,7 +1366,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1374
1366
|
addressLine3?: string | null | undefined;
|
1375
1367
|
postcodeOrZip?: string | null | undefined;
|
1376
1368
|
}>]>>;
|
1377
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1369
|
+
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
1370
|
filename: z.ZodString;
|
1379
1371
|
originalFilename: z.ZodString;
|
1380
1372
|
type: z.ZodString;
|
@@ -1488,8 +1480,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1488
1480
|
addressLine3?: string | null | undefined;
|
1489
1481
|
postcodeOrZip?: string | null | undefined;
|
1490
1482
|
}>]>>>;
|
1491
|
-
createdAtLocation: z.
|
1492
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1483
|
+
createdAtLocation: z.ZodString;
|
1493
1484
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1494
1485
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1495
1486
|
}, {
|
@@ -1539,7 +1530,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1539
1530
|
option: string;
|
1540
1531
|
filename: string;
|
1541
1532
|
originalFilename: string;
|
1542
|
-
}[] | undefined>;
|
1533
|
+
}[] | [string, string] | undefined>;
|
1534
|
+
createdAtLocation: string;
|
1543
1535
|
annotation?: Record<string, string | number | boolean | {
|
1544
1536
|
type: string;
|
1545
1537
|
filename: string;
|
@@ -1577,9 +1569,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1577
1569
|
option: string;
|
1578
1570
|
filename: string;
|
1579
1571
|
originalFilename: string;
|
1580
|
-
}[] | undefined> | undefined;
|
1581
|
-
createdAtLocation?: string | undefined;
|
1582
|
-
updatedAtLocation?: string | undefined;
|
1572
|
+
}[] | [string, string] | undefined> | undefined;
|
1583
1573
|
originalActionId?: string | undefined;
|
1584
1574
|
}, {
|
1585
1575
|
type: "MARKED_AS_DUPLICATE";
|
@@ -1626,7 +1616,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1626
1616
|
option: string;
|
1627
1617
|
filename: string;
|
1628
1618
|
originalFilename: string;
|
1629
|
-
}[] | undefined>;
|
1619
|
+
}[] | [string, string] | undefined>;
|
1620
|
+
createdAtLocation: string;
|
1630
1621
|
annotation?: Record<string, string | number | boolean | {
|
1631
1622
|
type: string;
|
1632
1623
|
filename: string;
|
@@ -1664,9 +1655,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1664
1655
|
option: string;
|
1665
1656
|
filename: string;
|
1666
1657
|
originalFilename: string;
|
1667
|
-
}[] | undefined> | undefined;
|
1668
|
-
createdAtLocation?: string | undefined;
|
1669
|
-
updatedAtLocation?: string | undefined;
|
1658
|
+
}[] | [string, string] | undefined> | undefined;
|
1670
1659
|
originalActionId?: string | undefined;
|
1671
1660
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1672
1661
|
id: z.ZodString;
|
@@ -1674,7 +1663,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1674
1663
|
createdAt: z.ZodString;
|
1675
1664
|
createdBy: z.ZodString;
|
1676
1665
|
createdByRole: z.ZodString;
|
1677
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1666
|
+
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
1667
|
filename: z.ZodString;
|
1679
1668
|
originalFilename: z.ZodString;
|
1680
1669
|
type: z.ZodString;
|
@@ -1788,7 +1777,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1788
1777
|
addressLine3?: string | null | undefined;
|
1789
1778
|
postcodeOrZip?: string | null | undefined;
|
1790
1779
|
}>]>>;
|
1791
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1780
|
+
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
1781
|
filename: z.ZodString;
|
1793
1782
|
originalFilename: z.ZodString;
|
1794
1783
|
type: z.ZodString;
|
@@ -1902,8 +1891,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1902
1891
|
addressLine3?: string | null | undefined;
|
1903
1892
|
postcodeOrZip?: string | null | undefined;
|
1904
1893
|
}>]>>>;
|
1905
|
-
createdAtLocation: z.
|
1906
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
1894
|
+
createdAtLocation: z.ZodString;
|
1907
1895
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1908
1896
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1909
1897
|
}, {
|
@@ -1953,7 +1941,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1953
1941
|
option: string;
|
1954
1942
|
filename: string;
|
1955
1943
|
originalFilename: string;
|
1956
|
-
}[] | undefined>;
|
1944
|
+
}[] | [string, string] | undefined>;
|
1945
|
+
createdAtLocation: string;
|
1957
1946
|
annotation?: Record<string, string | number | boolean | {
|
1958
1947
|
type: string;
|
1959
1948
|
filename: string;
|
@@ -1991,9 +1980,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1991
1980
|
option: string;
|
1992
1981
|
filename: string;
|
1993
1982
|
originalFilename: string;
|
1994
|
-
}[] | undefined> | undefined;
|
1995
|
-
createdAtLocation?: string | undefined;
|
1996
|
-
updatedAtLocation?: string | undefined;
|
1983
|
+
}[] | [string, string] | undefined> | undefined;
|
1997
1984
|
originalActionId?: string | undefined;
|
1998
1985
|
}, {
|
1999
1986
|
type: "ARCHIVE";
|
@@ -2040,7 +2027,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2040
2027
|
option: string;
|
2041
2028
|
filename: string;
|
2042
2029
|
originalFilename: string;
|
2043
|
-
}[] | undefined>;
|
2030
|
+
}[] | [string, string] | undefined>;
|
2031
|
+
createdAtLocation: string;
|
2044
2032
|
annotation?: Record<string, string | number | boolean | {
|
2045
2033
|
type: string;
|
2046
2034
|
filename: string;
|
@@ -2078,9 +2066,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2078
2066
|
option: string;
|
2079
2067
|
filename: string;
|
2080
2068
|
originalFilename: string;
|
2081
|
-
}[] | undefined> | undefined;
|
2082
|
-
createdAtLocation?: string | undefined;
|
2083
|
-
updatedAtLocation?: string | undefined;
|
2069
|
+
}[] | [string, string] | undefined> | undefined;
|
2084
2070
|
originalActionId?: string | undefined;
|
2085
2071
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2086
2072
|
id: z.ZodString;
|
@@ -2088,7 +2074,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2088
2074
|
createdAt: z.ZodString;
|
2089
2075
|
createdBy: z.ZodString;
|
2090
2076
|
createdByRole: z.ZodString;
|
2091
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2077
|
+
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
2078
|
filename: z.ZodString;
|
2093
2079
|
originalFilename: z.ZodString;
|
2094
2080
|
type: z.ZodString;
|
@@ -2202,7 +2188,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2202
2188
|
addressLine3?: string | null | undefined;
|
2203
2189
|
postcodeOrZip?: string | null | undefined;
|
2204
2190
|
}>]>>;
|
2205
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2191
|
+
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
2192
|
filename: z.ZodString;
|
2207
2193
|
originalFilename: z.ZodString;
|
2208
2194
|
type: z.ZodString;
|
@@ -2316,8 +2302,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2316
2302
|
addressLine3?: string | null | undefined;
|
2317
2303
|
postcodeOrZip?: string | null | undefined;
|
2318
2304
|
}>]>>>;
|
2319
|
-
createdAtLocation: z.
|
2320
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
2305
|
+
createdAtLocation: z.ZodString;
|
2321
2306
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2322
2307
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2323
2308
|
}, {
|
@@ -2367,7 +2352,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2367
2352
|
option: string;
|
2368
2353
|
filename: string;
|
2369
2354
|
originalFilename: string;
|
2370
|
-
}[] | undefined>;
|
2355
|
+
}[] | [string, string] | undefined>;
|
2356
|
+
createdAtLocation: string;
|
2371
2357
|
annotation?: Record<string, string | number | boolean | {
|
2372
2358
|
type: string;
|
2373
2359
|
filename: string;
|
@@ -2405,9 +2391,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2405
2391
|
option: string;
|
2406
2392
|
filename: string;
|
2407
2393
|
originalFilename: string;
|
2408
|
-
}[] | undefined> | undefined;
|
2409
|
-
createdAtLocation?: string | undefined;
|
2410
|
-
updatedAtLocation?: string | undefined;
|
2394
|
+
}[] | [string, string] | undefined> | undefined;
|
2411
2395
|
originalActionId?: string | undefined;
|
2412
2396
|
}, {
|
2413
2397
|
type: "NOTIFY";
|
@@ -2454,7 +2438,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2454
2438
|
option: string;
|
2455
2439
|
filename: string;
|
2456
2440
|
originalFilename: string;
|
2457
|
-
}[] | undefined>;
|
2441
|
+
}[] | [string, string] | undefined>;
|
2442
|
+
createdAtLocation: string;
|
2458
2443
|
annotation?: Record<string, string | number | boolean | {
|
2459
2444
|
type: string;
|
2460
2445
|
filename: string;
|
@@ -2492,9 +2477,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2492
2477
|
option: string;
|
2493
2478
|
filename: string;
|
2494
2479
|
originalFilename: string;
|
2495
|
-
}[] | undefined> | undefined;
|
2496
|
-
createdAtLocation?: string | undefined;
|
2497
|
-
updatedAtLocation?: string | undefined;
|
2480
|
+
}[] | [string, string] | undefined> | undefined;
|
2498
2481
|
originalActionId?: string | undefined;
|
2499
2482
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2500
2483
|
id: z.ZodString;
|
@@ -2502,7 +2485,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2502
2485
|
createdAt: z.ZodString;
|
2503
2486
|
createdBy: z.ZodString;
|
2504
2487
|
createdByRole: z.ZodString;
|
2505
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2488
|
+
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
2489
|
filename: z.ZodString;
|
2507
2490
|
originalFilename: z.ZodString;
|
2508
2491
|
type: z.ZodString;
|
@@ -2616,7 +2599,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2616
2599
|
addressLine3?: string | null | undefined;
|
2617
2600
|
postcodeOrZip?: string | null | undefined;
|
2618
2601
|
}>]>>;
|
2619
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2602
|
+
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
2603
|
filename: z.ZodString;
|
2621
2604
|
originalFilename: z.ZodString;
|
2622
2605
|
type: z.ZodString;
|
@@ -2730,8 +2713,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2730
2713
|
addressLine3?: string | null | undefined;
|
2731
2714
|
postcodeOrZip?: string | null | undefined;
|
2732
2715
|
}>]>>>;
|
2733
|
-
createdAtLocation: z.
|
2734
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
2716
|
+
createdAtLocation: z.ZodString;
|
2735
2717
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2736
2718
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2737
2719
|
}, {
|
@@ -2782,7 +2764,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2782
2764
|
option: string;
|
2783
2765
|
filename: string;
|
2784
2766
|
originalFilename: string;
|
2785
|
-
}[] | undefined>;
|
2767
|
+
}[] | [string, string] | undefined>;
|
2768
|
+
createdAtLocation: string;
|
2786
2769
|
annotation?: Record<string, string | number | boolean | {
|
2787
2770
|
type: string;
|
2788
2771
|
filename: string;
|
@@ -2820,9 +2803,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2820
2803
|
option: string;
|
2821
2804
|
filename: string;
|
2822
2805
|
originalFilename: string;
|
2823
|
-
}[] | undefined> | undefined;
|
2824
|
-
createdAtLocation?: string | undefined;
|
2825
|
-
updatedAtLocation?: string | undefined;
|
2806
|
+
}[] | [string, string] | undefined> | undefined;
|
2826
2807
|
originalActionId?: string | undefined;
|
2827
2808
|
registrationNumber?: string | undefined;
|
2828
2809
|
}, {
|
@@ -2870,7 +2851,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2870
2851
|
option: string;
|
2871
2852
|
filename: string;
|
2872
2853
|
originalFilename: string;
|
2873
|
-
}[] | undefined>;
|
2854
|
+
}[] | [string, string] | undefined>;
|
2855
|
+
createdAtLocation: string;
|
2874
2856
|
annotation?: Record<string, string | number | boolean | {
|
2875
2857
|
type: string;
|
2876
2858
|
filename: string;
|
@@ -2908,9 +2890,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2908
2890
|
option: string;
|
2909
2891
|
filename: string;
|
2910
2892
|
originalFilename: string;
|
2911
|
-
}[] | undefined> | undefined;
|
2912
|
-
createdAtLocation?: string | undefined;
|
2913
|
-
updatedAtLocation?: string | undefined;
|
2893
|
+
}[] | [string, string] | undefined> | undefined;
|
2914
2894
|
originalActionId?: string | undefined;
|
2915
2895
|
registrationNumber?: string | undefined;
|
2916
2896
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2919,7 +2899,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2919
2899
|
createdAt: z.ZodString;
|
2920
2900
|
createdBy: z.ZodString;
|
2921
2901
|
createdByRole: z.ZodString;
|
2922
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2902
|
+
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
2903
|
filename: z.ZodString;
|
2924
2904
|
originalFilename: z.ZodString;
|
2925
2905
|
type: z.ZodString;
|
@@ -3033,7 +3013,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3033
3013
|
addressLine3?: string | null | undefined;
|
3034
3014
|
postcodeOrZip?: string | null | undefined;
|
3035
3015
|
}>]>>;
|
3036
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3016
|
+
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
3017
|
filename: z.ZodString;
|
3038
3018
|
originalFilename: z.ZodString;
|
3039
3019
|
type: z.ZodString;
|
@@ -3147,8 +3127,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3147
3127
|
addressLine3?: string | null | undefined;
|
3148
3128
|
postcodeOrZip?: string | null | undefined;
|
3149
3129
|
}>]>>>;
|
3150
|
-
createdAtLocation: z.
|
3151
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3130
|
+
createdAtLocation: z.ZodString;
|
3152
3131
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3153
3132
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3154
3133
|
}, {
|
@@ -3198,7 +3177,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3198
3177
|
option: string;
|
3199
3178
|
filename: string;
|
3200
3179
|
originalFilename: string;
|
3201
|
-
}[] | undefined>;
|
3180
|
+
}[] | [string, string] | undefined>;
|
3181
|
+
createdAtLocation: string;
|
3202
3182
|
annotation?: Record<string, string | number | boolean | {
|
3203
3183
|
type: string;
|
3204
3184
|
filename: string;
|
@@ -3236,9 +3216,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3236
3216
|
option: string;
|
3237
3217
|
filename: string;
|
3238
3218
|
originalFilename: string;
|
3239
|
-
}[] | undefined> | undefined;
|
3240
|
-
createdAtLocation?: string | undefined;
|
3241
|
-
updatedAtLocation?: string | undefined;
|
3219
|
+
}[] | [string, string] | undefined> | undefined;
|
3242
3220
|
originalActionId?: string | undefined;
|
3243
3221
|
}, {
|
3244
3222
|
type: "DECLARE";
|
@@ -3285,7 +3263,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3285
3263
|
option: string;
|
3286
3264
|
filename: string;
|
3287
3265
|
originalFilename: string;
|
3288
|
-
}[] | undefined>;
|
3266
|
+
}[] | [string, string] | undefined>;
|
3267
|
+
createdAtLocation: string;
|
3289
3268
|
annotation?: Record<string, string | number | boolean | {
|
3290
3269
|
type: string;
|
3291
3270
|
filename: string;
|
@@ -3323,9 +3302,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3323
3302
|
option: string;
|
3324
3303
|
filename: string;
|
3325
3304
|
originalFilename: string;
|
3326
|
-
}[] | undefined> | undefined;
|
3327
|
-
createdAtLocation?: string | undefined;
|
3328
|
-
updatedAtLocation?: string | undefined;
|
3305
|
+
}[] | [string, string] | undefined> | undefined;
|
3329
3306
|
originalActionId?: string | undefined;
|
3330
3307
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3331
3308
|
id: z.ZodString;
|
@@ -3333,7 +3310,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3333
3310
|
createdAt: z.ZodString;
|
3334
3311
|
createdBy: z.ZodString;
|
3335
3312
|
createdByRole: z.ZodString;
|
3336
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3313
|
+
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
3314
|
filename: z.ZodString;
|
3338
3315
|
originalFilename: z.ZodString;
|
3339
3316
|
type: z.ZodString;
|
@@ -3447,7 +3424,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3447
3424
|
addressLine3?: string | null | undefined;
|
3448
3425
|
postcodeOrZip?: string | null | undefined;
|
3449
3426
|
}>]>>;
|
3450
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3427
|
+
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
3428
|
filename: z.ZodString;
|
3452
3429
|
originalFilename: z.ZodString;
|
3453
3430
|
type: z.ZodString;
|
@@ -3561,8 +3538,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3561
3538
|
addressLine3?: string | null | undefined;
|
3562
3539
|
postcodeOrZip?: string | null | undefined;
|
3563
3540
|
}>]>>>;
|
3564
|
-
createdAtLocation: z.
|
3565
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3541
|
+
createdAtLocation: z.ZodString;
|
3566
3542
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3567
3543
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3568
3544
|
}, {
|
@@ -3613,7 +3589,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3613
3589
|
option: string;
|
3614
3590
|
filename: string;
|
3615
3591
|
originalFilename: string;
|
3616
|
-
}[] | undefined>;
|
3592
|
+
}[] | [string, string] | undefined>;
|
3593
|
+
createdAtLocation: string;
|
3617
3594
|
assignedTo: string;
|
3618
3595
|
annotation?: Record<string, string | number | boolean | {
|
3619
3596
|
type: string;
|
@@ -3652,9 +3629,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3652
3629
|
option: string;
|
3653
3630
|
filename: string;
|
3654
3631
|
originalFilename: string;
|
3655
|
-
}[] | undefined> | undefined;
|
3656
|
-
createdAtLocation?: string | undefined;
|
3657
|
-
updatedAtLocation?: string | undefined;
|
3632
|
+
}[] | [string, string] | undefined> | undefined;
|
3658
3633
|
originalActionId?: string | undefined;
|
3659
3634
|
}, {
|
3660
3635
|
type: "ASSIGN";
|
@@ -3701,7 +3676,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3701
3676
|
option: string;
|
3702
3677
|
filename: string;
|
3703
3678
|
originalFilename: string;
|
3704
|
-
}[] | undefined>;
|
3679
|
+
}[] | [string, string] | undefined>;
|
3680
|
+
createdAtLocation: string;
|
3705
3681
|
assignedTo: string;
|
3706
3682
|
annotation?: Record<string, string | number | boolean | {
|
3707
3683
|
type: string;
|
@@ -3740,9 +3716,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3740
3716
|
option: string;
|
3741
3717
|
filename: string;
|
3742
3718
|
originalFilename: string;
|
3743
|
-
}[] | undefined> | undefined;
|
3744
|
-
createdAtLocation?: string | undefined;
|
3745
|
-
updatedAtLocation?: string | undefined;
|
3719
|
+
}[] | [string, string] | undefined> | undefined;
|
3746
3720
|
originalActionId?: string | undefined;
|
3747
3721
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3748
3722
|
id: z.ZodString;
|
@@ -3750,7 +3724,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3750
3724
|
createdAt: z.ZodString;
|
3751
3725
|
createdBy: z.ZodString;
|
3752
3726
|
createdByRole: z.ZodString;
|
3753
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3727
|
+
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
3728
|
filename: z.ZodString;
|
3755
3729
|
originalFilename: z.ZodString;
|
3756
3730
|
type: z.ZodString;
|
@@ -3864,7 +3838,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3864
3838
|
addressLine3?: string | null | undefined;
|
3865
3839
|
postcodeOrZip?: string | null | undefined;
|
3866
3840
|
}>]>>;
|
3867
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3841
|
+
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
3842
|
filename: z.ZodString;
|
3869
3843
|
originalFilename: z.ZodString;
|
3870
3844
|
type: z.ZodString;
|
@@ -3978,8 +3952,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3978
3952
|
addressLine3?: string | null | undefined;
|
3979
3953
|
postcodeOrZip?: string | null | undefined;
|
3980
3954
|
}>]>>>;
|
3981
|
-
createdAtLocation: z.
|
3982
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
3955
|
+
createdAtLocation: z.ZodString;
|
3983
3956
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3984
3957
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3985
3958
|
}, {
|
@@ -4029,7 +4002,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4029
4002
|
option: string;
|
4030
4003
|
filename: string;
|
4031
4004
|
originalFilename: string;
|
4032
|
-
}[] | undefined>;
|
4005
|
+
}[] | [string, string] | undefined>;
|
4006
|
+
createdAtLocation: string;
|
4033
4007
|
annotation?: Record<string, string | number | boolean | {
|
4034
4008
|
type: string;
|
4035
4009
|
filename: string;
|
@@ -4067,9 +4041,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4067
4041
|
option: string;
|
4068
4042
|
filename: string;
|
4069
4043
|
originalFilename: string;
|
4070
|
-
}[] | undefined> | undefined;
|
4071
|
-
createdAtLocation?: string | undefined;
|
4072
|
-
updatedAtLocation?: string | undefined;
|
4044
|
+
}[] | [string, string] | undefined> | undefined;
|
4073
4045
|
originalActionId?: string | undefined;
|
4074
4046
|
}, {
|
4075
4047
|
type: "REQUEST_CORRECTION";
|
@@ -4116,7 +4088,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4116
4088
|
option: string;
|
4117
4089
|
filename: string;
|
4118
4090
|
originalFilename: string;
|
4119
|
-
}[] | undefined>;
|
4091
|
+
}[] | [string, string] | undefined>;
|
4092
|
+
createdAtLocation: string;
|
4120
4093
|
annotation?: Record<string, string | number | boolean | {
|
4121
4094
|
type: string;
|
4122
4095
|
filename: string;
|
@@ -4154,9 +4127,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4154
4127
|
option: string;
|
4155
4128
|
filename: string;
|
4156
4129
|
originalFilename: string;
|
4157
|
-
}[] | undefined> | undefined;
|
4158
|
-
createdAtLocation?: string | undefined;
|
4159
|
-
updatedAtLocation?: string | undefined;
|
4130
|
+
}[] | [string, string] | undefined> | undefined;
|
4160
4131
|
originalActionId?: string | undefined;
|
4161
4132
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4162
4133
|
id: z.ZodString;
|
@@ -4164,7 +4135,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4164
4135
|
createdAt: z.ZodString;
|
4165
4136
|
createdBy: z.ZodString;
|
4166
4137
|
createdByRole: z.ZodString;
|
4167
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4138
|
+
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
4139
|
filename: z.ZodString;
|
4169
4140
|
originalFilename: z.ZodString;
|
4170
4141
|
type: z.ZodString;
|
@@ -4278,7 +4249,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4278
4249
|
addressLine3?: string | null | undefined;
|
4279
4250
|
postcodeOrZip?: string | null | undefined;
|
4280
4251
|
}>]>>;
|
4281
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4252
|
+
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
4253
|
filename: z.ZodString;
|
4283
4254
|
originalFilename: z.ZodString;
|
4284
4255
|
type: z.ZodString;
|
@@ -4392,8 +4363,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4392
4363
|
addressLine3?: string | null | undefined;
|
4393
4364
|
postcodeOrZip?: string | null | undefined;
|
4394
4365
|
}>]>>>;
|
4395
|
-
createdAtLocation: z.
|
4396
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
4366
|
+
createdAtLocation: z.ZodString;
|
4397
4367
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4398
4368
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4399
4369
|
}, {
|
@@ -4444,7 +4414,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4444
4414
|
option: string;
|
4445
4415
|
filename: string;
|
4446
4416
|
originalFilename: string;
|
4447
|
-
}[] | undefined>;
|
4417
|
+
}[] | [string, string] | undefined>;
|
4418
|
+
createdAtLocation: string;
|
4448
4419
|
requestId: string;
|
4449
4420
|
annotation?: Record<string, string | number | boolean | {
|
4450
4421
|
type: string;
|
@@ -4483,9 +4454,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4483
4454
|
option: string;
|
4484
4455
|
filename: string;
|
4485
4456
|
originalFilename: string;
|
4486
|
-
}[] | undefined> | undefined;
|
4487
|
-
createdAtLocation?: string | undefined;
|
4488
|
-
updatedAtLocation?: string | undefined;
|
4457
|
+
}[] | [string, string] | undefined> | undefined;
|
4489
4458
|
originalActionId?: string | undefined;
|
4490
4459
|
}, {
|
4491
4460
|
type: "APPROVE_CORRECTION";
|
@@ -4532,7 +4501,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4532
4501
|
option: string;
|
4533
4502
|
filename: string;
|
4534
4503
|
originalFilename: string;
|
4535
|
-
}[] | undefined>;
|
4504
|
+
}[] | [string, string] | undefined>;
|
4505
|
+
createdAtLocation: string;
|
4536
4506
|
requestId: string;
|
4537
4507
|
annotation?: Record<string, string | number | boolean | {
|
4538
4508
|
type: string;
|
@@ -4571,9 +4541,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4571
4541
|
option: string;
|
4572
4542
|
filename: string;
|
4573
4543
|
originalFilename: string;
|
4574
|
-
}[] | undefined> | undefined;
|
4575
|
-
createdAtLocation?: string | undefined;
|
4576
|
-
updatedAtLocation?: string | undefined;
|
4544
|
+
}[] | [string, string] | undefined> | undefined;
|
4577
4545
|
originalActionId?: string | undefined;
|
4578
4546
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4579
4547
|
id: z.ZodString;
|
@@ -4581,7 +4549,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4581
4549
|
createdAt: z.ZodString;
|
4582
4550
|
createdBy: z.ZodString;
|
4583
4551
|
createdByRole: z.ZodString;
|
4584
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4552
|
+
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
4553
|
filename: z.ZodString;
|
4586
4554
|
originalFilename: z.ZodString;
|
4587
4555
|
type: z.ZodString;
|
@@ -4695,7 +4663,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4695
4663
|
addressLine3?: string | null | undefined;
|
4696
4664
|
postcodeOrZip?: string | null | undefined;
|
4697
4665
|
}>]>>;
|
4698
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4666
|
+
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
4667
|
filename: z.ZodString;
|
4700
4668
|
originalFilename: z.ZodString;
|
4701
4669
|
type: z.ZodString;
|
@@ -4809,8 +4777,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4809
4777
|
addressLine3?: string | null | undefined;
|
4810
4778
|
postcodeOrZip?: string | null | undefined;
|
4811
4779
|
}>]>>>;
|
4812
|
-
createdAtLocation: z.
|
4813
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
4780
|
+
createdAtLocation: z.ZodString;
|
4814
4781
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4815
4782
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4816
4783
|
}, {
|
@@ -4861,7 +4828,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4861
4828
|
option: string;
|
4862
4829
|
filename: string;
|
4863
4830
|
originalFilename: string;
|
4864
|
-
}[] | undefined>;
|
4831
|
+
}[] | [string, string] | undefined>;
|
4832
|
+
createdAtLocation: string;
|
4865
4833
|
requestId: string;
|
4866
4834
|
annotation?: Record<string, string | number | boolean | {
|
4867
4835
|
type: string;
|
@@ -4900,9 +4868,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4900
4868
|
option: string;
|
4901
4869
|
filename: string;
|
4902
4870
|
originalFilename: string;
|
4903
|
-
}[] | undefined> | undefined;
|
4904
|
-
createdAtLocation?: string | undefined;
|
4905
|
-
updatedAtLocation?: string | undefined;
|
4871
|
+
}[] | [string, string] | undefined> | undefined;
|
4906
4872
|
originalActionId?: string | undefined;
|
4907
4873
|
}, {
|
4908
4874
|
type: "REJECT_CORRECTION";
|
@@ -4949,7 +4915,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4949
4915
|
option: string;
|
4950
4916
|
filename: string;
|
4951
4917
|
originalFilename: string;
|
4952
|
-
}[] | undefined>;
|
4918
|
+
}[] | [string, string] | undefined>;
|
4919
|
+
createdAtLocation: string;
|
4953
4920
|
requestId: string;
|
4954
4921
|
annotation?: Record<string, string | number | boolean | {
|
4955
4922
|
type: string;
|
@@ -4988,9 +4955,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4988
4955
|
option: string;
|
4989
4956
|
filename: string;
|
4990
4957
|
originalFilename: string;
|
4991
|
-
}[] | undefined> | undefined;
|
4992
|
-
createdAtLocation?: string | undefined;
|
4993
|
-
updatedAtLocation?: string | undefined;
|
4958
|
+
}[] | [string, string] | undefined> | undefined;
|
4994
4959
|
originalActionId?: string | undefined;
|
4995
4960
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4996
4961
|
id: z.ZodString;
|
@@ -4998,7 +4963,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4998
4963
|
createdAt: z.ZodString;
|
4999
4964
|
createdBy: z.ZodString;
|
5000
4965
|
createdByRole: z.ZodString;
|
5001
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4966
|
+
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
4967
|
filename: z.ZodString;
|
5003
4968
|
originalFilename: z.ZodString;
|
5004
4969
|
type: z.ZodString;
|
@@ -5112,7 +5077,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5112
5077
|
addressLine3?: string | null | undefined;
|
5113
5078
|
postcodeOrZip?: string | null | undefined;
|
5114
5079
|
}>]>>;
|
5115
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5080
|
+
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
5081
|
filename: z.ZodString;
|
5117
5082
|
originalFilename: z.ZodString;
|
5118
5083
|
type: z.ZodString;
|
@@ -5226,8 +5191,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5226
5191
|
addressLine3?: string | null | undefined;
|
5227
5192
|
postcodeOrZip?: string | null | undefined;
|
5228
5193
|
}>]>>>;
|
5229
|
-
createdAtLocation: z.
|
5230
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
5194
|
+
createdAtLocation: z.ZodString;
|
5231
5195
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5232
5196
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5233
5197
|
}, {
|
@@ -5278,7 +5242,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5278
5242
|
option: string;
|
5279
5243
|
filename: string;
|
5280
5244
|
originalFilename: string;
|
5281
|
-
}[] | undefined>;
|
5245
|
+
}[] | [string, string] | undefined>;
|
5246
|
+
createdAtLocation: string;
|
5282
5247
|
assignedTo: null;
|
5283
5248
|
annotation?: Record<string, string | number | boolean | {
|
5284
5249
|
type: string;
|
@@ -5317,9 +5282,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5317
5282
|
option: string;
|
5318
5283
|
filename: string;
|
5319
5284
|
originalFilename: string;
|
5320
|
-
}[] | undefined> | undefined;
|
5321
|
-
createdAtLocation?: string | undefined;
|
5322
|
-
updatedAtLocation?: string | undefined;
|
5285
|
+
}[] | [string, string] | undefined> | undefined;
|
5323
5286
|
originalActionId?: string | undefined;
|
5324
5287
|
}, {
|
5325
5288
|
type: "UNASSIGN";
|
@@ -5366,7 +5329,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5366
5329
|
option: string;
|
5367
5330
|
filename: string;
|
5368
5331
|
originalFilename: string;
|
5369
|
-
}[] | undefined>;
|
5332
|
+
}[] | [string, string] | undefined>;
|
5333
|
+
createdAtLocation: string;
|
5370
5334
|
assignedTo: null;
|
5371
5335
|
annotation?: Record<string, string | number | boolean | {
|
5372
5336
|
type: string;
|
@@ -5405,9 +5369,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5405
5369
|
option: string;
|
5406
5370
|
filename: string;
|
5407
5371
|
originalFilename: string;
|
5408
|
-
}[] | undefined> | undefined;
|
5409
|
-
createdAtLocation?: string | undefined;
|
5410
|
-
updatedAtLocation?: string | undefined;
|
5372
|
+
}[] | [string, string] | undefined> | undefined;
|
5411
5373
|
originalActionId?: string | undefined;
|
5412
5374
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5413
5375
|
id: z.ZodString;
|
@@ -5415,7 +5377,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5415
5377
|
createdAt: z.ZodString;
|
5416
5378
|
createdBy: z.ZodString;
|
5417
5379
|
createdByRole: z.ZodString;
|
5418
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5380
|
+
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
5381
|
filename: z.ZodString;
|
5420
5382
|
originalFilename: z.ZodString;
|
5421
5383
|
type: z.ZodString;
|
@@ -5529,7 +5491,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5529
5491
|
addressLine3?: string | null | undefined;
|
5530
5492
|
postcodeOrZip?: string | null | undefined;
|
5531
5493
|
}>]>>;
|
5532
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5494
|
+
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
5495
|
filename: z.ZodString;
|
5534
5496
|
originalFilename: z.ZodString;
|
5535
5497
|
type: z.ZodString;
|
@@ -5643,8 +5605,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5643
5605
|
addressLine3?: string | null | undefined;
|
5644
5606
|
postcodeOrZip?: string | null | undefined;
|
5645
5607
|
}>]>>>;
|
5646
|
-
createdAtLocation: z.
|
5647
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
5608
|
+
createdAtLocation: z.ZodString;
|
5648
5609
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5649
5610
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5650
5611
|
}, {
|
@@ -5694,7 +5655,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5694
5655
|
option: string;
|
5695
5656
|
filename: string;
|
5696
5657
|
originalFilename: string;
|
5697
|
-
}[] | undefined>;
|
5658
|
+
}[] | [string, string] | undefined>;
|
5659
|
+
createdAtLocation: string;
|
5698
5660
|
annotation?: Record<string, string | number | boolean | {
|
5699
5661
|
type: string;
|
5700
5662
|
filename: string;
|
@@ -5732,9 +5694,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5732
5694
|
option: string;
|
5733
5695
|
filename: string;
|
5734
5696
|
originalFilename: string;
|
5735
|
-
}[] | undefined> | undefined;
|
5736
|
-
createdAtLocation?: string | undefined;
|
5737
|
-
updatedAtLocation?: string | undefined;
|
5697
|
+
}[] | [string, string] | undefined> | undefined;
|
5738
5698
|
originalActionId?: string | undefined;
|
5739
5699
|
}, {
|
5740
5700
|
type: "PRINT_CERTIFICATE";
|
@@ -5781,7 +5741,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5781
5741
|
option: string;
|
5782
5742
|
filename: string;
|
5783
5743
|
originalFilename: string;
|
5784
|
-
}[] | undefined>;
|
5744
|
+
}[] | [string, string] | undefined>;
|
5745
|
+
createdAtLocation: string;
|
5785
5746
|
annotation?: Record<string, string | number | boolean | {
|
5786
5747
|
type: string;
|
5787
5748
|
filename: string;
|
@@ -5819,9 +5780,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5819
5780
|
option: string;
|
5820
5781
|
filename: string;
|
5821
5782
|
originalFilename: string;
|
5822
|
-
}[] | undefined> | undefined;
|
5823
|
-
createdAtLocation?: string | undefined;
|
5824
|
-
updatedAtLocation?: string | undefined;
|
5783
|
+
}[] | [string, string] | undefined> | undefined;
|
5825
5784
|
originalActionId?: string | undefined;
|
5826
5785
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5827
5786
|
id: z.ZodString;
|
@@ -5829,7 +5788,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5829
5788
|
createdAt: z.ZodString;
|
5830
5789
|
createdBy: z.ZodString;
|
5831
5790
|
createdByRole: z.ZodString;
|
5832
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5791
|
+
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
5792
|
filename: z.ZodString;
|
5834
5793
|
originalFilename: z.ZodString;
|
5835
5794
|
type: z.ZodString;
|
@@ -5943,7 +5902,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5943
5902
|
addressLine3?: string | null | undefined;
|
5944
5903
|
postcodeOrZip?: string | null | undefined;
|
5945
5904
|
}>]>>;
|
5946
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5905
|
+
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
5906
|
filename: z.ZodString;
|
5948
5907
|
originalFilename: z.ZodString;
|
5949
5908
|
type: z.ZodString;
|
@@ -6057,8 +6016,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6057
6016
|
addressLine3?: string | null | undefined;
|
6058
6017
|
postcodeOrZip?: string | null | undefined;
|
6059
6018
|
}>]>>>;
|
6060
|
-
createdAtLocation: z.
|
6061
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
6019
|
+
createdAtLocation: z.ZodString;
|
6062
6020
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6063
6021
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6064
6022
|
}, {
|
@@ -6108,7 +6066,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6108
6066
|
option: string;
|
6109
6067
|
filename: string;
|
6110
6068
|
originalFilename: string;
|
6111
|
-
}[] | undefined>;
|
6069
|
+
}[] | [string, string] | undefined>;
|
6070
|
+
createdAtLocation: string;
|
6112
6071
|
annotation?: Record<string, string | number | boolean | {
|
6113
6072
|
type: string;
|
6114
6073
|
filename: string;
|
@@ -6146,9 +6105,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6146
6105
|
option: string;
|
6147
6106
|
filename: string;
|
6148
6107
|
originalFilename: string;
|
6149
|
-
}[] | undefined> | undefined;
|
6150
|
-
createdAtLocation?: string | undefined;
|
6151
|
-
updatedAtLocation?: string | undefined;
|
6108
|
+
}[] | [string, string] | undefined> | undefined;
|
6152
6109
|
originalActionId?: string | undefined;
|
6153
6110
|
}, {
|
6154
6111
|
type: "READ";
|
@@ -6195,7 +6152,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6195
6152
|
option: string;
|
6196
6153
|
filename: string;
|
6197
6154
|
originalFilename: string;
|
6198
|
-
}[] | undefined>;
|
6155
|
+
}[] | [string, string] | undefined>;
|
6156
|
+
createdAtLocation: string;
|
6199
6157
|
annotation?: Record<string, string | number | boolean | {
|
6200
6158
|
type: string;
|
6201
6159
|
filename: string;
|
@@ -6233,9 +6191,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6233
6191
|
option: string;
|
6234
6192
|
filename: string;
|
6235
6193
|
originalFilename: string;
|
6236
|
-
}[] | undefined> | undefined;
|
6237
|
-
createdAtLocation?: string | undefined;
|
6238
|
-
updatedAtLocation?: string | undefined;
|
6194
|
+
}[] | [string, string] | undefined> | undefined;
|
6239
6195
|
originalActionId?: string | undefined;
|
6240
6196
|
}>]>, z.ZodObject<z.objectUtil.extendShape<Omit<{
|
6241
6197
|
id: z.ZodString;
|
@@ -6243,7 +6199,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6243
6199
|
createdAt: z.ZodString;
|
6244
6200
|
createdBy: z.ZodString;
|
6245
6201
|
createdByRole: z.ZodString;
|
6246
|
-
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6202
|
+
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
6203
|
filename: z.ZodString;
|
6248
6204
|
originalFilename: z.ZodString;
|
6249
6205
|
type: z.ZodString;
|
@@ -6357,7 +6313,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6357
6313
|
addressLine3?: string | null | undefined;
|
6358
6314
|
postcodeOrZip?: string | null | undefined;
|
6359
6315
|
}>]>>;
|
6360
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6316
|
+
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
6317
|
filename: z.ZodString;
|
6362
6318
|
originalFilename: z.ZodString;
|
6363
6319
|
type: z.ZodString;
|
@@ -6471,11 +6427,10 @@ export declare const EventDocument: z.ZodObject<{
|
|
6471
6427
|
addressLine3?: string | null | undefined;
|
6472
6428
|
postcodeOrZip?: string | null | undefined;
|
6473
6429
|
}>]>>>;
|
6474
|
-
createdAtLocation: z.
|
6475
|
-
updatedAtLocation: z.ZodOptional<z.ZodString>;
|
6430
|
+
createdAtLocation: z.ZodString;
|
6476
6431
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6477
6432
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6478
|
-
}, "
|
6433
|
+
}, "declaration" | "annotation">, {
|
6479
6434
|
type: z.ZodEnum<["NOTIFY", "DECLARE", "VALIDATE", "REGISTER", "REJECT", "ARCHIVE", "PRINT_CERTIFICATE"]>;
|
6480
6435
|
status: z.ZodLiteral<"Rejected">;
|
6481
6436
|
}>, "strip", z.ZodTypeAny, {
|
@@ -6484,7 +6439,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
6484
6439
|
status: "Rejected";
|
6485
6440
|
transactionId: string;
|
6486
6441
|
createdAt: string;
|
6487
|
-
|
6442
|
+
createdBy: string;
|
6443
|
+
createdByRole: string;
|
6444
|
+
createdAtLocation: string;
|
6488
6445
|
originalActionId?: string | undefined;
|
6489
6446
|
}, {
|
6490
6447
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -6492,7 +6449,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
6492
6449
|
status: "Rejected";
|
6493
6450
|
transactionId: string;
|
6494
6451
|
createdAt: string;
|
6495
|
-
|
6452
|
+
createdBy: string;
|
6453
|
+
createdByRole: string;
|
6454
|
+
createdAtLocation: string;
|
6496
6455
|
originalActionId?: string | undefined;
|
6497
6456
|
}>]>, "many">;
|
6498
6457
|
trackingId: z.ZodString;
|
@@ -6500,7 +6459,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6500
6459
|
type: string;
|
6501
6460
|
id: string;
|
6502
6461
|
createdAt: string;
|
6503
|
-
updatedAtLocation: string;
|
6504
6462
|
updatedAt: string;
|
6505
6463
|
actions: ({
|
6506
6464
|
type: "ASSIGN";
|
@@ -6547,7 +6505,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6547
6505
|
option: string;
|
6548
6506
|
filename: string;
|
6549
6507
|
originalFilename: string;
|
6550
|
-
}[] | undefined>;
|
6508
|
+
}[] | [string, string] | undefined>;
|
6509
|
+
createdAtLocation: string;
|
6551
6510
|
assignedTo: string;
|
6552
6511
|
annotation?: Record<string, string | number | boolean | {
|
6553
6512
|
type: string;
|
@@ -6586,9 +6545,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6586
6545
|
option: string;
|
6587
6546
|
filename: string;
|
6588
6547
|
originalFilename: string;
|
6589
|
-
}[] | undefined> | undefined;
|
6590
|
-
createdAtLocation?: string | undefined;
|
6591
|
-
updatedAtLocation?: string | undefined;
|
6548
|
+
}[] | [string, string] | undefined> | undefined;
|
6592
6549
|
originalActionId?: string | undefined;
|
6593
6550
|
} | {
|
6594
6551
|
type: "UNASSIGN";
|
@@ -6635,7 +6592,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6635
6592
|
option: string;
|
6636
6593
|
filename: string;
|
6637
6594
|
originalFilename: string;
|
6638
|
-
}[] | undefined>;
|
6595
|
+
}[] | [string, string] | undefined>;
|
6596
|
+
createdAtLocation: string;
|
6639
6597
|
assignedTo: null;
|
6640
6598
|
annotation?: Record<string, string | number | boolean | {
|
6641
6599
|
type: string;
|
@@ -6674,9 +6632,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6674
6632
|
option: string;
|
6675
6633
|
filename: string;
|
6676
6634
|
originalFilename: string;
|
6677
|
-
}[] | undefined> | undefined;
|
6678
|
-
createdAtLocation?: string | undefined;
|
6679
|
-
updatedAtLocation?: string | undefined;
|
6635
|
+
}[] | [string, string] | undefined> | undefined;
|
6680
6636
|
originalActionId?: string | undefined;
|
6681
6637
|
} | {
|
6682
6638
|
type: "REGISTER";
|
@@ -6723,7 +6679,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6723
6679
|
option: string;
|
6724
6680
|
filename: string;
|
6725
6681
|
originalFilename: string;
|
6726
|
-
}[] | undefined>;
|
6682
|
+
}[] | [string, string] | undefined>;
|
6683
|
+
createdAtLocation: string;
|
6727
6684
|
annotation?: Record<string, string | number | boolean | {
|
6728
6685
|
type: string;
|
6729
6686
|
filename: string;
|
@@ -6761,9 +6718,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6761
6718
|
option: string;
|
6762
6719
|
filename: string;
|
6763
6720
|
originalFilename: string;
|
6764
|
-
}[] | undefined> | undefined;
|
6765
|
-
createdAtLocation?: string | undefined;
|
6766
|
-
updatedAtLocation?: string | undefined;
|
6721
|
+
}[] | [string, string] | undefined> | undefined;
|
6767
6722
|
originalActionId?: string | undefined;
|
6768
6723
|
registrationNumber?: string | undefined;
|
6769
6724
|
} | {
|
@@ -6811,7 +6766,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6811
6766
|
option: string;
|
6812
6767
|
filename: string;
|
6813
6768
|
originalFilename: string;
|
6814
|
-
}[] | undefined>;
|
6769
|
+
}[] | [string, string] | undefined>;
|
6770
|
+
createdAtLocation: string;
|
6815
6771
|
annotation?: Record<string, string | number | boolean | {
|
6816
6772
|
type: string;
|
6817
6773
|
filename: string;
|
@@ -6849,9 +6805,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6849
6805
|
option: string;
|
6850
6806
|
filename: string;
|
6851
6807
|
originalFilename: string;
|
6852
|
-
}[] | undefined> | undefined;
|
6853
|
-
createdAtLocation?: string | undefined;
|
6854
|
-
updatedAtLocation?: string | undefined;
|
6808
|
+
}[] | [string, string] | undefined> | undefined;
|
6855
6809
|
originalActionId?: string | undefined;
|
6856
6810
|
} | {
|
6857
6811
|
type: "VALIDATE";
|
@@ -6898,7 +6852,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6898
6852
|
option: string;
|
6899
6853
|
filename: string;
|
6900
6854
|
originalFilename: string;
|
6901
|
-
}[] | undefined>;
|
6855
|
+
}[] | [string, string] | undefined>;
|
6856
|
+
createdAtLocation: string;
|
6902
6857
|
annotation?: Record<string, string | number | boolean | {
|
6903
6858
|
type: string;
|
6904
6859
|
filename: string;
|
@@ -6936,9 +6891,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
6936
6891
|
option: string;
|
6937
6892
|
filename: string;
|
6938
6893
|
originalFilename: string;
|
6939
|
-
}[] | undefined> | undefined;
|
6940
|
-
createdAtLocation?: string | undefined;
|
6941
|
-
updatedAtLocation?: string | undefined;
|
6894
|
+
}[] | [string, string] | undefined> | undefined;
|
6942
6895
|
originalActionId?: string | undefined;
|
6943
6896
|
} | {
|
6944
6897
|
type: "REJECT";
|
@@ -6985,7 +6938,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6985
6938
|
option: string;
|
6986
6939
|
filename: string;
|
6987
6940
|
originalFilename: string;
|
6988
|
-
}[] | undefined>;
|
6941
|
+
}[] | [string, string] | undefined>;
|
6942
|
+
createdAtLocation: string;
|
6989
6943
|
annotation?: Record<string, string | number | boolean | {
|
6990
6944
|
type: string;
|
6991
6945
|
filename: string;
|
@@ -7023,9 +6977,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7023
6977
|
option: string;
|
7024
6978
|
filename: string;
|
7025
6979
|
originalFilename: string;
|
7026
|
-
}[] | undefined> | undefined;
|
7027
|
-
createdAtLocation?: string | undefined;
|
7028
|
-
updatedAtLocation?: string | undefined;
|
6980
|
+
}[] | [string, string] | undefined> | undefined;
|
7029
6981
|
originalActionId?: string | undefined;
|
7030
6982
|
} | {
|
7031
6983
|
type: "MARKED_AS_DUPLICATE";
|
@@ -7072,7 +7024,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7072
7024
|
option: string;
|
7073
7025
|
filename: string;
|
7074
7026
|
originalFilename: string;
|
7075
|
-
}[] | undefined>;
|
7027
|
+
}[] | [string, string] | undefined>;
|
7028
|
+
createdAtLocation: string;
|
7076
7029
|
annotation?: Record<string, string | number | boolean | {
|
7077
7030
|
type: string;
|
7078
7031
|
filename: string;
|
@@ -7110,9 +7063,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7110
7063
|
option: string;
|
7111
7064
|
filename: string;
|
7112
7065
|
originalFilename: string;
|
7113
|
-
}[] | undefined> | undefined;
|
7114
|
-
createdAtLocation?: string | undefined;
|
7115
|
-
updatedAtLocation?: string | undefined;
|
7066
|
+
}[] | [string, string] | undefined> | undefined;
|
7116
7067
|
originalActionId?: string | undefined;
|
7117
7068
|
} | {
|
7118
7069
|
type: "ARCHIVE";
|
@@ -7159,7 +7110,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7159
7110
|
option: string;
|
7160
7111
|
filename: string;
|
7161
7112
|
originalFilename: string;
|
7162
|
-
}[] | undefined>;
|
7113
|
+
}[] | [string, string] | undefined>;
|
7114
|
+
createdAtLocation: string;
|
7163
7115
|
annotation?: Record<string, string | number | boolean | {
|
7164
7116
|
type: string;
|
7165
7117
|
filename: string;
|
@@ -7197,9 +7149,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7197
7149
|
option: string;
|
7198
7150
|
filename: string;
|
7199
7151
|
originalFilename: string;
|
7200
|
-
}[] | undefined> | undefined;
|
7201
|
-
createdAtLocation?: string | undefined;
|
7202
|
-
updatedAtLocation?: string | undefined;
|
7152
|
+
}[] | [string, string] | undefined> | undefined;
|
7203
7153
|
originalActionId?: string | undefined;
|
7204
7154
|
} | {
|
7205
7155
|
type: "CREATE";
|
@@ -7246,7 +7196,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7246
7196
|
option: string;
|
7247
7197
|
filename: string;
|
7248
7198
|
originalFilename: string;
|
7249
|
-
}[] | undefined>;
|
7199
|
+
}[] | [string, string] | undefined>;
|
7200
|
+
createdAtLocation: string;
|
7250
7201
|
annotation?: Record<string, string | number | boolean | {
|
7251
7202
|
type: string;
|
7252
7203
|
filename: string;
|
@@ -7284,9 +7235,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7284
7235
|
option: string;
|
7285
7236
|
filename: string;
|
7286
7237
|
originalFilename: string;
|
7287
|
-
}[] | undefined> | undefined;
|
7288
|
-
createdAtLocation?: string | undefined;
|
7289
|
-
updatedAtLocation?: string | undefined;
|
7238
|
+
}[] | [string, string] | undefined> | undefined;
|
7290
7239
|
originalActionId?: string | undefined;
|
7291
7240
|
} | {
|
7292
7241
|
type: "NOTIFY";
|
@@ -7333,7 +7282,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7333
7282
|
option: string;
|
7334
7283
|
filename: string;
|
7335
7284
|
originalFilename: string;
|
7336
|
-
}[] | undefined>;
|
7285
|
+
}[] | [string, string] | undefined>;
|
7286
|
+
createdAtLocation: string;
|
7337
7287
|
annotation?: Record<string, string | number | boolean | {
|
7338
7288
|
type: string;
|
7339
7289
|
filename: string;
|
@@ -7371,9 +7321,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7371
7321
|
option: string;
|
7372
7322
|
filename: string;
|
7373
7323
|
originalFilename: string;
|
7374
|
-
}[] | undefined> | undefined;
|
7375
|
-
createdAtLocation?: string | undefined;
|
7376
|
-
updatedAtLocation?: string | undefined;
|
7324
|
+
}[] | [string, string] | undefined> | undefined;
|
7377
7325
|
originalActionId?: string | undefined;
|
7378
7326
|
} | {
|
7379
7327
|
type: "PRINT_CERTIFICATE";
|
@@ -7420,7 +7368,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7420
7368
|
option: string;
|
7421
7369
|
filename: string;
|
7422
7370
|
originalFilename: string;
|
7423
|
-
}[] | undefined>;
|
7371
|
+
}[] | [string, string] | undefined>;
|
7372
|
+
createdAtLocation: string;
|
7424
7373
|
annotation?: Record<string, string | number | boolean | {
|
7425
7374
|
type: string;
|
7426
7375
|
filename: string;
|
@@ -7458,9 +7407,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7458
7407
|
option: string;
|
7459
7408
|
filename: string;
|
7460
7409
|
originalFilename: string;
|
7461
|
-
}[] | undefined> | undefined;
|
7462
|
-
createdAtLocation?: string | undefined;
|
7463
|
-
updatedAtLocation?: string | undefined;
|
7410
|
+
}[] | [string, string] | undefined> | undefined;
|
7464
7411
|
originalActionId?: string | undefined;
|
7465
7412
|
} | {
|
7466
7413
|
type: "REQUEST_CORRECTION";
|
@@ -7507,7 +7454,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7507
7454
|
option: string;
|
7508
7455
|
filename: string;
|
7509
7456
|
originalFilename: string;
|
7510
|
-
}[] | undefined>;
|
7457
|
+
}[] | [string, string] | undefined>;
|
7458
|
+
createdAtLocation: string;
|
7511
7459
|
annotation?: Record<string, string | number | boolean | {
|
7512
7460
|
type: string;
|
7513
7461
|
filename: string;
|
@@ -7545,9 +7493,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7545
7493
|
option: string;
|
7546
7494
|
filename: string;
|
7547
7495
|
originalFilename: string;
|
7548
|
-
}[] | undefined> | undefined;
|
7549
|
-
createdAtLocation?: string | undefined;
|
7550
|
-
updatedAtLocation?: string | undefined;
|
7496
|
+
}[] | [string, string] | undefined> | undefined;
|
7551
7497
|
originalActionId?: string | undefined;
|
7552
7498
|
} | {
|
7553
7499
|
type: "APPROVE_CORRECTION";
|
@@ -7594,7 +7540,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7594
7540
|
option: string;
|
7595
7541
|
filename: string;
|
7596
7542
|
originalFilename: string;
|
7597
|
-
}[] | undefined>;
|
7543
|
+
}[] | [string, string] | undefined>;
|
7544
|
+
createdAtLocation: string;
|
7598
7545
|
requestId: string;
|
7599
7546
|
annotation?: Record<string, string | number | boolean | {
|
7600
7547
|
type: string;
|
@@ -7633,9 +7580,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7633
7580
|
option: string;
|
7634
7581
|
filename: string;
|
7635
7582
|
originalFilename: string;
|
7636
|
-
}[] | undefined> | undefined;
|
7637
|
-
createdAtLocation?: string | undefined;
|
7638
|
-
updatedAtLocation?: string | undefined;
|
7583
|
+
}[] | [string, string] | undefined> | undefined;
|
7639
7584
|
originalActionId?: string | undefined;
|
7640
7585
|
} | {
|
7641
7586
|
type: "REJECT_CORRECTION";
|
@@ -7682,7 +7627,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7682
7627
|
option: string;
|
7683
7628
|
filename: string;
|
7684
7629
|
originalFilename: string;
|
7685
|
-
}[] | undefined>;
|
7630
|
+
}[] | [string, string] | undefined>;
|
7631
|
+
createdAtLocation: string;
|
7686
7632
|
requestId: string;
|
7687
7633
|
annotation?: Record<string, string | number | boolean | {
|
7688
7634
|
type: string;
|
@@ -7721,9 +7667,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7721
7667
|
option: string;
|
7722
7668
|
filename: string;
|
7723
7669
|
originalFilename: string;
|
7724
|
-
}[] | undefined> | undefined;
|
7725
|
-
createdAtLocation?: string | undefined;
|
7726
|
-
updatedAtLocation?: string | undefined;
|
7670
|
+
}[] | [string, string] | undefined> | undefined;
|
7727
7671
|
originalActionId?: string | undefined;
|
7728
7672
|
} | {
|
7729
7673
|
type: "READ";
|
@@ -7770,7 +7714,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7770
7714
|
option: string;
|
7771
7715
|
filename: string;
|
7772
7716
|
originalFilename: string;
|
7773
|
-
}[] | undefined>;
|
7717
|
+
}[] | [string, string] | undefined>;
|
7718
|
+
createdAtLocation: string;
|
7774
7719
|
annotation?: Record<string, string | number | boolean | {
|
7775
7720
|
type: string;
|
7776
7721
|
filename: string;
|
@@ -7808,9 +7753,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7808
7753
|
option: string;
|
7809
7754
|
filename: string;
|
7810
7755
|
originalFilename: string;
|
7811
|
-
}[] | undefined> | undefined;
|
7812
|
-
createdAtLocation?: string | undefined;
|
7813
|
-
updatedAtLocation?: string | undefined;
|
7756
|
+
}[] | [string, string] | undefined> | undefined;
|
7814
7757
|
originalActionId?: string | undefined;
|
7815
7758
|
} | {
|
7816
7759
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -7818,18 +7761,21 @@ export declare const EventDocument: z.ZodObject<{
|
|
7818
7761
|
status: "Rejected";
|
7819
7762
|
transactionId: string;
|
7820
7763
|
createdAt: string;
|
7821
|
-
|
7764
|
+
createdBy: string;
|
7765
|
+
createdByRole: string;
|
7766
|
+
createdAtLocation: string;
|
7822
7767
|
originalActionId?: string | undefined;
|
7823
7768
|
})[];
|
7824
7769
|
trackingId: string;
|
7825
7770
|
dateOfEvent?: {
|
7826
7771
|
fieldId: string;
|
7827
7772
|
} | undefined;
|
7773
|
+
registeredAt?: string | undefined;
|
7774
|
+
registeredAtLocation?: string | undefined;
|
7828
7775
|
}, {
|
7829
7776
|
type: string;
|
7830
7777
|
id: string;
|
7831
7778
|
createdAt: string;
|
7832
|
-
updatedAtLocation: string;
|
7833
7779
|
updatedAt: string;
|
7834
7780
|
actions: ({
|
7835
7781
|
type: "ASSIGN";
|
@@ -7876,7 +7822,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7876
7822
|
option: string;
|
7877
7823
|
filename: string;
|
7878
7824
|
originalFilename: string;
|
7879
|
-
}[] | undefined>;
|
7825
|
+
}[] | [string, string] | undefined>;
|
7826
|
+
createdAtLocation: string;
|
7880
7827
|
assignedTo: string;
|
7881
7828
|
annotation?: Record<string, string | number | boolean | {
|
7882
7829
|
type: string;
|
@@ -7915,9 +7862,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
7915
7862
|
option: string;
|
7916
7863
|
filename: string;
|
7917
7864
|
originalFilename: string;
|
7918
|
-
}[] | undefined> | undefined;
|
7919
|
-
createdAtLocation?: string | undefined;
|
7920
|
-
updatedAtLocation?: string | undefined;
|
7865
|
+
}[] | [string, string] | undefined> | undefined;
|
7921
7866
|
originalActionId?: string | undefined;
|
7922
7867
|
} | {
|
7923
7868
|
type: "UNASSIGN";
|
@@ -7964,7 +7909,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7964
7909
|
option: string;
|
7965
7910
|
filename: string;
|
7966
7911
|
originalFilename: string;
|
7967
|
-
}[] | undefined>;
|
7912
|
+
}[] | [string, string] | undefined>;
|
7913
|
+
createdAtLocation: string;
|
7968
7914
|
assignedTo: null;
|
7969
7915
|
annotation?: Record<string, string | number | boolean | {
|
7970
7916
|
type: string;
|
@@ -8003,9 +7949,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8003
7949
|
option: string;
|
8004
7950
|
filename: string;
|
8005
7951
|
originalFilename: string;
|
8006
|
-
}[] | undefined> | undefined;
|
8007
|
-
createdAtLocation?: string | undefined;
|
8008
|
-
updatedAtLocation?: string | undefined;
|
7952
|
+
}[] | [string, string] | undefined> | undefined;
|
8009
7953
|
originalActionId?: string | undefined;
|
8010
7954
|
} | {
|
8011
7955
|
type: "REGISTER";
|
@@ -8052,7 +7996,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8052
7996
|
option: string;
|
8053
7997
|
filename: string;
|
8054
7998
|
originalFilename: string;
|
8055
|
-
}[] | undefined>;
|
7999
|
+
}[] | [string, string] | undefined>;
|
8000
|
+
createdAtLocation: string;
|
8056
8001
|
annotation?: Record<string, string | number | boolean | {
|
8057
8002
|
type: string;
|
8058
8003
|
filename: string;
|
@@ -8090,9 +8035,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8090
8035
|
option: string;
|
8091
8036
|
filename: string;
|
8092
8037
|
originalFilename: string;
|
8093
|
-
}[] | undefined> | undefined;
|
8094
|
-
createdAtLocation?: string | undefined;
|
8095
|
-
updatedAtLocation?: string | undefined;
|
8038
|
+
}[] | [string, string] | undefined> | undefined;
|
8096
8039
|
originalActionId?: string | undefined;
|
8097
8040
|
registrationNumber?: string | undefined;
|
8098
8041
|
} | {
|
@@ -8140,7 +8083,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8140
8083
|
option: string;
|
8141
8084
|
filename: string;
|
8142
8085
|
originalFilename: string;
|
8143
|
-
}[] | undefined>;
|
8086
|
+
}[] | [string, string] | undefined>;
|
8087
|
+
createdAtLocation: string;
|
8144
8088
|
annotation?: Record<string, string | number | boolean | {
|
8145
8089
|
type: string;
|
8146
8090
|
filename: string;
|
@@ -8178,9 +8122,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8178
8122
|
option: string;
|
8179
8123
|
filename: string;
|
8180
8124
|
originalFilename: string;
|
8181
|
-
}[] | undefined> | undefined;
|
8182
|
-
createdAtLocation?: string | undefined;
|
8183
|
-
updatedAtLocation?: string | undefined;
|
8125
|
+
}[] | [string, string] | undefined> | undefined;
|
8184
8126
|
originalActionId?: string | undefined;
|
8185
8127
|
} | {
|
8186
8128
|
type: "VALIDATE";
|
@@ -8227,7 +8169,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8227
8169
|
option: string;
|
8228
8170
|
filename: string;
|
8229
8171
|
originalFilename: string;
|
8230
|
-
}[] | undefined>;
|
8172
|
+
}[] | [string, string] | undefined>;
|
8173
|
+
createdAtLocation: string;
|
8231
8174
|
annotation?: Record<string, string | number | boolean | {
|
8232
8175
|
type: string;
|
8233
8176
|
filename: string;
|
@@ -8265,9 +8208,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8265
8208
|
option: string;
|
8266
8209
|
filename: string;
|
8267
8210
|
originalFilename: string;
|
8268
|
-
}[] | undefined> | undefined;
|
8269
|
-
createdAtLocation?: string | undefined;
|
8270
|
-
updatedAtLocation?: string | undefined;
|
8211
|
+
}[] | [string, string] | undefined> | undefined;
|
8271
8212
|
originalActionId?: string | undefined;
|
8272
8213
|
} | {
|
8273
8214
|
type: "REJECT";
|
@@ -8314,7 +8255,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8314
8255
|
option: string;
|
8315
8256
|
filename: string;
|
8316
8257
|
originalFilename: string;
|
8317
|
-
}[] | undefined>;
|
8258
|
+
}[] | [string, string] | undefined>;
|
8259
|
+
createdAtLocation: string;
|
8318
8260
|
annotation?: Record<string, string | number | boolean | {
|
8319
8261
|
type: string;
|
8320
8262
|
filename: string;
|
@@ -8352,9 +8294,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8352
8294
|
option: string;
|
8353
8295
|
filename: string;
|
8354
8296
|
originalFilename: string;
|
8355
|
-
}[] | undefined> | undefined;
|
8356
|
-
createdAtLocation?: string | undefined;
|
8357
|
-
updatedAtLocation?: string | undefined;
|
8297
|
+
}[] | [string, string] | undefined> | undefined;
|
8358
8298
|
originalActionId?: string | undefined;
|
8359
8299
|
} | {
|
8360
8300
|
type: "MARKED_AS_DUPLICATE";
|
@@ -8401,7 +8341,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8401
8341
|
option: string;
|
8402
8342
|
filename: string;
|
8403
8343
|
originalFilename: string;
|
8404
|
-
}[] | undefined>;
|
8344
|
+
}[] | [string, string] | undefined>;
|
8345
|
+
createdAtLocation: string;
|
8405
8346
|
annotation?: Record<string, string | number | boolean | {
|
8406
8347
|
type: string;
|
8407
8348
|
filename: string;
|
@@ -8439,9 +8380,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8439
8380
|
option: string;
|
8440
8381
|
filename: string;
|
8441
8382
|
originalFilename: string;
|
8442
|
-
}[] | undefined> | undefined;
|
8443
|
-
createdAtLocation?: string | undefined;
|
8444
|
-
updatedAtLocation?: string | undefined;
|
8383
|
+
}[] | [string, string] | undefined> | undefined;
|
8445
8384
|
originalActionId?: string | undefined;
|
8446
8385
|
} | {
|
8447
8386
|
type: "ARCHIVE";
|
@@ -8488,7 +8427,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8488
8427
|
option: string;
|
8489
8428
|
filename: string;
|
8490
8429
|
originalFilename: string;
|
8491
|
-
}[] | undefined>;
|
8430
|
+
}[] | [string, string] | undefined>;
|
8431
|
+
createdAtLocation: string;
|
8492
8432
|
annotation?: Record<string, string | number | boolean | {
|
8493
8433
|
type: string;
|
8494
8434
|
filename: string;
|
@@ -8526,9 +8466,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8526
8466
|
option: string;
|
8527
8467
|
filename: string;
|
8528
8468
|
originalFilename: string;
|
8529
|
-
}[] | undefined> | undefined;
|
8530
|
-
createdAtLocation?: string | undefined;
|
8531
|
-
updatedAtLocation?: string | undefined;
|
8469
|
+
}[] | [string, string] | undefined> | undefined;
|
8532
8470
|
originalActionId?: string | undefined;
|
8533
8471
|
} | {
|
8534
8472
|
type: "CREATE";
|
@@ -8575,7 +8513,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8575
8513
|
option: string;
|
8576
8514
|
filename: string;
|
8577
8515
|
originalFilename: string;
|
8578
|
-
}[] | undefined>;
|
8516
|
+
}[] | [string, string] | undefined>;
|
8517
|
+
createdAtLocation: string;
|
8579
8518
|
annotation?: Record<string, string | number | boolean | {
|
8580
8519
|
type: string;
|
8581
8520
|
filename: string;
|
@@ -8613,9 +8552,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8613
8552
|
option: string;
|
8614
8553
|
filename: string;
|
8615
8554
|
originalFilename: string;
|
8616
|
-
}[] | undefined> | undefined;
|
8617
|
-
createdAtLocation?: string | undefined;
|
8618
|
-
updatedAtLocation?: string | undefined;
|
8555
|
+
}[] | [string, string] | undefined> | undefined;
|
8619
8556
|
originalActionId?: string | undefined;
|
8620
8557
|
} | {
|
8621
8558
|
type: "NOTIFY";
|
@@ -8662,7 +8599,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8662
8599
|
option: string;
|
8663
8600
|
filename: string;
|
8664
8601
|
originalFilename: string;
|
8665
|
-
}[] | undefined>;
|
8602
|
+
}[] | [string, string] | undefined>;
|
8603
|
+
createdAtLocation: string;
|
8666
8604
|
annotation?: Record<string, string | number | boolean | {
|
8667
8605
|
type: string;
|
8668
8606
|
filename: string;
|
@@ -8700,9 +8638,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8700
8638
|
option: string;
|
8701
8639
|
filename: string;
|
8702
8640
|
originalFilename: string;
|
8703
|
-
}[] | undefined> | undefined;
|
8704
|
-
createdAtLocation?: string | undefined;
|
8705
|
-
updatedAtLocation?: string | undefined;
|
8641
|
+
}[] | [string, string] | undefined> | undefined;
|
8706
8642
|
originalActionId?: string | undefined;
|
8707
8643
|
} | {
|
8708
8644
|
type: "PRINT_CERTIFICATE";
|
@@ -8749,7 +8685,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8749
8685
|
option: string;
|
8750
8686
|
filename: string;
|
8751
8687
|
originalFilename: string;
|
8752
|
-
}[] | undefined>;
|
8688
|
+
}[] | [string, string] | undefined>;
|
8689
|
+
createdAtLocation: string;
|
8753
8690
|
annotation?: Record<string, string | number | boolean | {
|
8754
8691
|
type: string;
|
8755
8692
|
filename: string;
|
@@ -8787,9 +8724,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8787
8724
|
option: string;
|
8788
8725
|
filename: string;
|
8789
8726
|
originalFilename: string;
|
8790
|
-
}[] | undefined> | undefined;
|
8791
|
-
createdAtLocation?: string | undefined;
|
8792
|
-
updatedAtLocation?: string | undefined;
|
8727
|
+
}[] | [string, string] | undefined> | undefined;
|
8793
8728
|
originalActionId?: string | undefined;
|
8794
8729
|
} | {
|
8795
8730
|
type: "REQUEST_CORRECTION";
|
@@ -8836,7 +8771,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8836
8771
|
option: string;
|
8837
8772
|
filename: string;
|
8838
8773
|
originalFilename: string;
|
8839
|
-
}[] | undefined>;
|
8774
|
+
}[] | [string, string] | undefined>;
|
8775
|
+
createdAtLocation: string;
|
8840
8776
|
annotation?: Record<string, string | number | boolean | {
|
8841
8777
|
type: string;
|
8842
8778
|
filename: string;
|
@@ -8874,9 +8810,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8874
8810
|
option: string;
|
8875
8811
|
filename: string;
|
8876
8812
|
originalFilename: string;
|
8877
|
-
}[] | undefined> | undefined;
|
8878
|
-
createdAtLocation?: string | undefined;
|
8879
|
-
updatedAtLocation?: string | undefined;
|
8813
|
+
}[] | [string, string] | undefined> | undefined;
|
8880
8814
|
originalActionId?: string | undefined;
|
8881
8815
|
} | {
|
8882
8816
|
type: "APPROVE_CORRECTION";
|
@@ -8923,7 +8857,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8923
8857
|
option: string;
|
8924
8858
|
filename: string;
|
8925
8859
|
originalFilename: string;
|
8926
|
-
}[] | undefined>;
|
8860
|
+
}[] | [string, string] | undefined>;
|
8861
|
+
createdAtLocation: string;
|
8927
8862
|
requestId: string;
|
8928
8863
|
annotation?: Record<string, string | number | boolean | {
|
8929
8864
|
type: string;
|
@@ -8962,9 +8897,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
8962
8897
|
option: string;
|
8963
8898
|
filename: string;
|
8964
8899
|
originalFilename: string;
|
8965
|
-
}[] | undefined> | undefined;
|
8966
|
-
createdAtLocation?: string | undefined;
|
8967
|
-
updatedAtLocation?: string | undefined;
|
8900
|
+
}[] | [string, string] | undefined> | undefined;
|
8968
8901
|
originalActionId?: string | undefined;
|
8969
8902
|
} | {
|
8970
8903
|
type: "REJECT_CORRECTION";
|
@@ -9011,7 +8944,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9011
8944
|
option: string;
|
9012
8945
|
filename: string;
|
9013
8946
|
originalFilename: string;
|
9014
|
-
}[] | undefined>;
|
8947
|
+
}[] | [string, string] | undefined>;
|
8948
|
+
createdAtLocation: string;
|
9015
8949
|
requestId: string;
|
9016
8950
|
annotation?: Record<string, string | number | boolean | {
|
9017
8951
|
type: string;
|
@@ -9050,9 +8984,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9050
8984
|
option: string;
|
9051
8985
|
filename: string;
|
9052
8986
|
originalFilename: string;
|
9053
|
-
}[] | undefined> | undefined;
|
9054
|
-
createdAtLocation?: string | undefined;
|
9055
|
-
updatedAtLocation?: string | undefined;
|
8987
|
+
}[] | [string, string] | undefined> | undefined;
|
9056
8988
|
originalActionId?: string | undefined;
|
9057
8989
|
} | {
|
9058
8990
|
type: "READ";
|
@@ -9099,7 +9031,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9099
9031
|
option: string;
|
9100
9032
|
filename: string;
|
9101
9033
|
originalFilename: string;
|
9102
|
-
}[] | undefined>;
|
9034
|
+
}[] | [string, string] | undefined>;
|
9035
|
+
createdAtLocation: string;
|
9103
9036
|
annotation?: Record<string, string | number | boolean | {
|
9104
9037
|
type: string;
|
9105
9038
|
filename: string;
|
@@ -9137,9 +9070,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
9137
9070
|
option: string;
|
9138
9071
|
filename: string;
|
9139
9072
|
originalFilename: string;
|
9140
|
-
}[] | undefined> | undefined;
|
9141
|
-
createdAtLocation?: string | undefined;
|
9142
|
-
updatedAtLocation?: string | undefined;
|
9073
|
+
}[] | [string, string] | undefined> | undefined;
|
9143
9074
|
originalActionId?: string | undefined;
|
9144
9075
|
} | {
|
9145
9076
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -9147,13 +9078,17 @@ export declare const EventDocument: z.ZodObject<{
|
|
9147
9078
|
status: "Rejected";
|
9148
9079
|
transactionId: string;
|
9149
9080
|
createdAt: string;
|
9150
|
-
|
9081
|
+
createdBy: string;
|
9082
|
+
createdByRole: string;
|
9083
|
+
createdAtLocation: string;
|
9151
9084
|
originalActionId?: string | undefined;
|
9152
9085
|
})[];
|
9153
9086
|
trackingId: string;
|
9154
9087
|
dateOfEvent?: {
|
9155
9088
|
fieldId: string;
|
9156
9089
|
} | undefined;
|
9090
|
+
registeredAt?: string | undefined;
|
9091
|
+
registeredAtLocation?: string | undefined;
|
9157
9092
|
}>;
|
9158
9093
|
export type EventDocument = z.infer<typeof EventDocument>;
|
9159
9094
|
//# sourceMappingURL=EventDocument.d.ts.map
|