@opencrvs/toolkit 1.8.0-rc.fc4c805 → 1.8.0-rc.fcd89ec
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 +2961 -195
- package/dist/commons/events/ActionConfig.d.ts +8022 -1007
- package/dist/commons/events/ActionDocument.d.ts +105 -105
- package/dist/commons/events/ActionInput.d.ts +3 -3
- package/dist/commons/events/AdvancedSearchConfig.d.ts +603 -12
- package/dist/commons/events/CreatedAtLocation.d.ts +3 -0
- package/dist/commons/events/Draft.d.ts +5 -5
- package/dist/commons/events/EventConfig.d.ts +3622 -113
- package/dist/commons/events/EventDocument.d.ts +80 -80
- package/dist/commons/events/EventIndex.d.ts +202 -312
- package/dist/commons/events/EventMetadata.d.ts +34 -33
- package/dist/commons/events/FieldConfig.d.ts +517 -0
- package/dist/commons/events/FormConfig.d.ts +3641 -467
- package/dist/commons/events/PageConfig.d.ts +782 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +169 -559
- package/dist/commons/events/defineConfig.d.ts +253 -1
- package/dist/commons/events/event.d.ts +35 -8
- package/dist/commons/events/field.d.ts +21 -7
- package/dist/commons/events/scopes.d.ts +20 -1
- package/dist/commons/events/test.utils.d.ts +3 -3
- package/dist/commons/events/utils.d.ts +116 -1
- package/dist/events/index.js +813 -341
- package/dist/scopes/index.d.ts +158 -1
- package/dist/scopes/index.js +152 -1
- package/package.json +1 -1
@@ -247,6 +247,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
247
247
|
createdAt: z.ZodString;
|
248
248
|
createdBy: z.ZodString;
|
249
249
|
createdByRole: z.ZodString;
|
250
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
250
251
|
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<{
|
251
252
|
filename: z.ZodString;
|
252
253
|
originalFilename: z.ZodString;
|
@@ -475,7 +476,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
475
476
|
addressLine3?: string | null | undefined;
|
476
477
|
postcodeOrZip?: string | null | undefined;
|
477
478
|
}>]>>>;
|
478
|
-
createdAtLocation: z.ZodString;
|
479
479
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
480
480
|
originalActionId: z.ZodOptional<z.ZodString>;
|
481
481
|
}, "strip", z.ZodTypeAny, {
|
@@ -523,7 +523,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
523
523
|
filename: string;
|
524
524
|
originalFilename: string;
|
525
525
|
}[] | [string, string] | undefined>;
|
526
|
-
createdAtLocation
|
526
|
+
createdAtLocation?: string | null | undefined;
|
527
527
|
annotation?: Record<string, string | number | boolean | {
|
528
528
|
type: string;
|
529
529
|
filename: string;
|
@@ -608,7 +608,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
608
608
|
filename: string;
|
609
609
|
originalFilename: string;
|
610
610
|
}[] | [string, string] | undefined>;
|
611
|
-
createdAtLocation
|
611
|
+
createdAtLocation?: string | null | undefined;
|
612
612
|
annotation?: Record<string, string | number | boolean | {
|
613
613
|
type: string;
|
614
614
|
filename: string;
|
@@ -656,6 +656,7 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
656
656
|
createdAt: z.ZodString;
|
657
657
|
createdBy: z.ZodString;
|
658
658
|
createdByRole: z.ZodString;
|
659
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
659
660
|
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<{
|
660
661
|
filename: z.ZodString;
|
661
662
|
originalFilename: z.ZodString;
|
@@ -884,7 +885,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
884
885
|
addressLine3?: string | null | undefined;
|
885
886
|
postcodeOrZip?: string | null | undefined;
|
886
887
|
}>]>>>;
|
887
|
-
createdAtLocation: z.ZodString;
|
888
888
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
889
889
|
originalActionId: z.ZodOptional<z.ZodString>;
|
890
890
|
}, {
|
@@ -936,7 +936,7 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
936
936
|
filename: string;
|
937
937
|
originalFilename: string;
|
938
938
|
}[] | [string, string] | undefined>;
|
939
|
-
createdAtLocation
|
939
|
+
createdAtLocation?: string | null | undefined;
|
940
940
|
annotation?: Record<string, string | number | boolean | {
|
941
941
|
type: string;
|
942
942
|
filename: string;
|
@@ -1023,7 +1023,7 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1023
1023
|
filename: string;
|
1024
1024
|
originalFilename: string;
|
1025
1025
|
}[] | [string, string] | undefined>;
|
1026
|
-
createdAtLocation
|
1026
|
+
createdAtLocation?: string | null | undefined;
|
1027
1027
|
annotation?: Record<string, string | number | boolean | {
|
1028
1028
|
type: string;
|
1029
1029
|
filename: string;
|
@@ -1072,6 +1072,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1072
1072
|
createdAt: z.ZodString;
|
1073
1073
|
createdBy: z.ZodString;
|
1074
1074
|
createdByRole: z.ZodString;
|
1075
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1075
1076
|
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<{
|
1076
1077
|
filename: z.ZodString;
|
1077
1078
|
originalFilename: z.ZodString;
|
@@ -1300,7 +1301,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1300
1301
|
addressLine3?: string | null | undefined;
|
1301
1302
|
postcodeOrZip?: string | null | undefined;
|
1302
1303
|
}>]>>>;
|
1303
|
-
createdAtLocation: z.ZodString;
|
1304
1304
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1305
1305
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1306
1306
|
}, {
|
@@ -1351,7 +1351,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1351
1351
|
filename: string;
|
1352
1352
|
originalFilename: string;
|
1353
1353
|
}[] | [string, string] | undefined>;
|
1354
|
-
createdAtLocation
|
1354
|
+
createdAtLocation?: string | null | undefined;
|
1355
1355
|
annotation?: Record<string, string | number | boolean | {
|
1356
1356
|
type: string;
|
1357
1357
|
filename: string;
|
@@ -1437,7 +1437,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1437
1437
|
filename: string;
|
1438
1438
|
originalFilename: string;
|
1439
1439
|
}[] | [string, string] | undefined>;
|
1440
|
-
createdAtLocation
|
1440
|
+
createdAtLocation?: string | null | undefined;
|
1441
1441
|
annotation?: Record<string, string | number | boolean | {
|
1442
1442
|
type: string;
|
1443
1443
|
filename: string;
|
@@ -1484,6 +1484,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1484
1484
|
createdAt: z.ZodString;
|
1485
1485
|
createdBy: z.ZodString;
|
1486
1486
|
createdByRole: z.ZodString;
|
1487
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1487
1488
|
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<{
|
1488
1489
|
filename: z.ZodString;
|
1489
1490
|
originalFilename: z.ZodString;
|
@@ -1712,7 +1713,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1712
1713
|
addressLine3?: string | null | undefined;
|
1713
1714
|
postcodeOrZip?: string | null | undefined;
|
1714
1715
|
}>]>>>;
|
1715
|
-
createdAtLocation: z.ZodString;
|
1716
1716
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1717
1717
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1718
1718
|
}, {
|
@@ -1763,7 +1763,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1763
1763
|
filename: string;
|
1764
1764
|
originalFilename: string;
|
1765
1765
|
}[] | [string, string] | undefined>;
|
1766
|
-
createdAtLocation
|
1766
|
+
createdAtLocation?: string | null | undefined;
|
1767
1767
|
annotation?: Record<string, string | number | boolean | {
|
1768
1768
|
type: string;
|
1769
1769
|
filename: string;
|
@@ -1849,7 +1849,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1849
1849
|
filename: string;
|
1850
1850
|
originalFilename: string;
|
1851
1851
|
}[] | [string, string] | undefined>;
|
1852
|
-
createdAtLocation
|
1852
|
+
createdAtLocation?: string | null | undefined;
|
1853
1853
|
annotation?: Record<string, string | number | boolean | {
|
1854
1854
|
type: string;
|
1855
1855
|
filename: string;
|
@@ -1895,6 +1895,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1895
1895
|
createdAt: z.ZodString;
|
1896
1896
|
createdBy: z.ZodString;
|
1897
1897
|
createdByRole: z.ZodString;
|
1898
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1898
1899
|
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<{
|
1899
1900
|
filename: z.ZodString;
|
1900
1901
|
originalFilename: z.ZodString;
|
@@ -2123,7 +2124,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2123
2124
|
addressLine3?: string | null | undefined;
|
2124
2125
|
postcodeOrZip?: string | null | undefined;
|
2125
2126
|
}>]>>>;
|
2126
|
-
createdAtLocation: z.ZodString;
|
2127
2127
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2128
2128
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2129
2129
|
}, {
|
@@ -2174,7 +2174,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2174
2174
|
filename: string;
|
2175
2175
|
originalFilename: string;
|
2176
2176
|
}[] | [string, string] | undefined>;
|
2177
|
-
createdAtLocation
|
2177
|
+
createdAtLocation?: string | null | undefined;
|
2178
2178
|
annotation?: Record<string, string | number | boolean | {
|
2179
2179
|
type: string;
|
2180
2180
|
filename: string;
|
@@ -2260,7 +2260,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2260
2260
|
filename: string;
|
2261
2261
|
originalFilename: string;
|
2262
2262
|
}[] | [string, string] | undefined>;
|
2263
|
-
createdAtLocation
|
2263
|
+
createdAtLocation?: string | null | undefined;
|
2264
2264
|
annotation?: Record<string, string | number | boolean | {
|
2265
2265
|
type: string;
|
2266
2266
|
filename: string;
|
@@ -2306,6 +2306,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2306
2306
|
createdAt: z.ZodString;
|
2307
2307
|
createdBy: z.ZodString;
|
2308
2308
|
createdByRole: z.ZodString;
|
2309
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2309
2310
|
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<{
|
2310
2311
|
filename: z.ZodString;
|
2311
2312
|
originalFilename: z.ZodString;
|
@@ -2534,7 +2535,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2534
2535
|
addressLine3?: string | null | undefined;
|
2535
2536
|
postcodeOrZip?: string | null | undefined;
|
2536
2537
|
}>]>>>;
|
2537
|
-
createdAtLocation: z.ZodString;
|
2538
2538
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2539
2539
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2540
2540
|
}, {
|
@@ -2585,7 +2585,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2585
2585
|
filename: string;
|
2586
2586
|
originalFilename: string;
|
2587
2587
|
}[] | [string, string] | undefined>;
|
2588
|
-
createdAtLocation
|
2588
|
+
createdAtLocation?: string | null | undefined;
|
2589
2589
|
annotation?: Record<string, string | number | boolean | {
|
2590
2590
|
type: string;
|
2591
2591
|
filename: string;
|
@@ -2671,7 +2671,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2671
2671
|
filename: string;
|
2672
2672
|
originalFilename: string;
|
2673
2673
|
}[] | [string, string] | undefined>;
|
2674
|
-
createdAtLocation
|
2674
|
+
createdAtLocation?: string | null | undefined;
|
2675
2675
|
annotation?: Record<string, string | number | boolean | {
|
2676
2676
|
type: string;
|
2677
2677
|
filename: string;
|
@@ -2717,6 +2717,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2717
2717
|
createdAt: z.ZodString;
|
2718
2718
|
createdBy: z.ZodString;
|
2719
2719
|
createdByRole: z.ZodString;
|
2720
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2720
2721
|
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<{
|
2721
2722
|
filename: z.ZodString;
|
2722
2723
|
originalFilename: z.ZodString;
|
@@ -2945,7 +2946,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2945
2946
|
addressLine3?: string | null | undefined;
|
2946
2947
|
postcodeOrZip?: string | null | undefined;
|
2947
2948
|
}>]>>>;
|
2948
|
-
createdAtLocation: z.ZodString;
|
2949
2949
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2950
2950
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2951
2951
|
}, {
|
@@ -2996,7 +2996,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2996
2996
|
filename: string;
|
2997
2997
|
originalFilename: string;
|
2998
2998
|
}[] | [string, string] | undefined>;
|
2999
|
-
createdAtLocation
|
2999
|
+
createdAtLocation?: string | null | undefined;
|
3000
3000
|
annotation?: Record<string, string | number | boolean | {
|
3001
3001
|
type: string;
|
3002
3002
|
filename: string;
|
@@ -3082,7 +3082,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3082
3082
|
filename: string;
|
3083
3083
|
originalFilename: string;
|
3084
3084
|
}[] | [string, string] | undefined>;
|
3085
|
-
createdAtLocation
|
3085
|
+
createdAtLocation?: string | null | undefined;
|
3086
3086
|
annotation?: Record<string, string | number | boolean | {
|
3087
3087
|
type: string;
|
3088
3088
|
filename: string;
|
@@ -3128,6 +3128,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3128
3128
|
createdAt: z.ZodString;
|
3129
3129
|
createdBy: z.ZodString;
|
3130
3130
|
createdByRole: z.ZodString;
|
3131
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3131
3132
|
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<{
|
3132
3133
|
filename: z.ZodString;
|
3133
3134
|
originalFilename: z.ZodString;
|
@@ -3356,7 +3357,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3356
3357
|
addressLine3?: string | null | undefined;
|
3357
3358
|
postcodeOrZip?: string | null | undefined;
|
3358
3359
|
}>]>>>;
|
3359
|
-
createdAtLocation: z.ZodString;
|
3360
3360
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3361
3361
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3362
3362
|
}, {
|
@@ -3407,7 +3407,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3407
3407
|
filename: string;
|
3408
3408
|
originalFilename: string;
|
3409
3409
|
}[] | [string, string] | undefined>;
|
3410
|
-
createdAtLocation
|
3410
|
+
createdAtLocation?: string | null | undefined;
|
3411
3411
|
annotation?: Record<string, string | number | boolean | {
|
3412
3412
|
type: string;
|
3413
3413
|
filename: string;
|
@@ -3493,7 +3493,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3493
3493
|
filename: string;
|
3494
3494
|
originalFilename: string;
|
3495
3495
|
}[] | [string, string] | undefined>;
|
3496
|
-
createdAtLocation
|
3496
|
+
createdAtLocation?: string | null | undefined;
|
3497
3497
|
annotation?: Record<string, string | number | boolean | {
|
3498
3498
|
type: string;
|
3499
3499
|
filename: string;
|
@@ -3539,6 +3539,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3539
3539
|
createdAt: z.ZodString;
|
3540
3540
|
createdBy: z.ZodString;
|
3541
3541
|
createdByRole: z.ZodString;
|
3542
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3542
3543
|
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<{
|
3543
3544
|
filename: z.ZodString;
|
3544
3545
|
originalFilename: z.ZodString;
|
@@ -3767,7 +3768,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3767
3768
|
addressLine3?: string | null | undefined;
|
3768
3769
|
postcodeOrZip?: string | null | undefined;
|
3769
3770
|
}>]>>>;
|
3770
|
-
createdAtLocation: z.ZodString;
|
3771
3771
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3772
3772
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3773
3773
|
}, {
|
@@ -3818,7 +3818,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3818
3818
|
filename: string;
|
3819
3819
|
originalFilename: string;
|
3820
3820
|
}[] | [string, string] | undefined>;
|
3821
|
-
createdAtLocation
|
3821
|
+
createdAtLocation?: string | null | undefined;
|
3822
3822
|
annotation?: Record<string, string | number | boolean | {
|
3823
3823
|
type: string;
|
3824
3824
|
filename: string;
|
@@ -3904,7 +3904,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3904
3904
|
filename: string;
|
3905
3905
|
originalFilename: string;
|
3906
3906
|
}[] | [string, string] | undefined>;
|
3907
|
-
createdAtLocation
|
3907
|
+
createdAtLocation?: string | null | undefined;
|
3908
3908
|
annotation?: Record<string, string | number | boolean | {
|
3909
3909
|
type: string;
|
3910
3910
|
filename: string;
|
@@ -3950,6 +3950,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3950
3950
|
createdAt: z.ZodString;
|
3951
3951
|
createdBy: z.ZodString;
|
3952
3952
|
createdByRole: z.ZodString;
|
3953
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3953
3954
|
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<{
|
3954
3955
|
filename: z.ZodString;
|
3955
3956
|
originalFilename: z.ZodString;
|
@@ -4178,7 +4179,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4178
4179
|
addressLine3?: string | null | undefined;
|
4179
4180
|
postcodeOrZip?: string | null | undefined;
|
4180
4181
|
}>]>>>;
|
4181
|
-
createdAtLocation: z.ZodString;
|
4182
4182
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4183
4183
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4184
4184
|
}, {
|
@@ -4230,7 +4230,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4230
4230
|
filename: string;
|
4231
4231
|
originalFilename: string;
|
4232
4232
|
}[] | [string, string] | undefined>;
|
4233
|
-
createdAtLocation
|
4233
|
+
createdAtLocation?: string | null | undefined;
|
4234
4234
|
annotation?: Record<string, string | number | boolean | {
|
4235
4235
|
type: string;
|
4236
4236
|
filename: string;
|
@@ -4317,7 +4317,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4317
4317
|
filename: string;
|
4318
4318
|
originalFilename: string;
|
4319
4319
|
}[] | [string, string] | undefined>;
|
4320
|
-
createdAtLocation
|
4320
|
+
createdAtLocation?: string | null | undefined;
|
4321
4321
|
annotation?: Record<string, string | number | boolean | {
|
4322
4322
|
type: string;
|
4323
4323
|
filename: string;
|
@@ -4364,6 +4364,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4364
4364
|
createdAt: z.ZodString;
|
4365
4365
|
createdBy: z.ZodString;
|
4366
4366
|
createdByRole: z.ZodString;
|
4367
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4367
4368
|
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<{
|
4368
4369
|
filename: z.ZodString;
|
4369
4370
|
originalFilename: z.ZodString;
|
@@ -4592,7 +4593,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4592
4593
|
addressLine3?: string | null | undefined;
|
4593
4594
|
postcodeOrZip?: string | null | undefined;
|
4594
4595
|
}>]>>>;
|
4595
|
-
createdAtLocation: z.ZodString;
|
4596
4596
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4597
4597
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4598
4598
|
}, {
|
@@ -4643,7 +4643,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4643
4643
|
filename: string;
|
4644
4644
|
originalFilename: string;
|
4645
4645
|
}[] | [string, string] | undefined>;
|
4646
|
-
createdAtLocation
|
4646
|
+
createdAtLocation?: string | null | undefined;
|
4647
4647
|
annotation?: Record<string, string | number | boolean | {
|
4648
4648
|
type: string;
|
4649
4649
|
filename: string;
|
@@ -4729,7 +4729,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4729
4729
|
filename: string;
|
4730
4730
|
originalFilename: string;
|
4731
4731
|
}[] | [string, string] | undefined>;
|
4732
|
-
createdAtLocation
|
4732
|
+
createdAtLocation?: string | null | undefined;
|
4733
4733
|
annotation?: Record<string, string | number | boolean | {
|
4734
4734
|
type: string;
|
4735
4735
|
filename: string;
|
@@ -4775,6 +4775,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4775
4775
|
createdAt: z.ZodString;
|
4776
4776
|
createdBy: z.ZodString;
|
4777
4777
|
createdByRole: z.ZodString;
|
4778
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4778
4779
|
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<{
|
4779
4780
|
filename: z.ZodString;
|
4780
4781
|
originalFilename: z.ZodString;
|
@@ -5003,7 +5004,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5003
5004
|
addressLine3?: string | null | undefined;
|
5004
5005
|
postcodeOrZip?: string | null | undefined;
|
5005
5006
|
}>]>>>;
|
5006
|
-
createdAtLocation: z.ZodString;
|
5007
5007
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5008
5008
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5009
5009
|
}, {
|
@@ -5055,8 +5055,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5055
5055
|
filename: string;
|
5056
5056
|
originalFilename: string;
|
5057
5057
|
}[] | [string, string] | undefined>;
|
5058
|
-
createdAtLocation: string;
|
5059
5058
|
assignedTo: string;
|
5059
|
+
createdAtLocation?: string | null | undefined;
|
5060
5060
|
annotation?: Record<string, string | number | boolean | {
|
5061
5061
|
type: string;
|
5062
5062
|
filename: string;
|
@@ -5142,8 +5142,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5142
5142
|
filename: string;
|
5143
5143
|
originalFilename: string;
|
5144
5144
|
}[] | [string, string] | undefined>;
|
5145
|
-
createdAtLocation: string;
|
5146
5145
|
assignedTo: string;
|
5146
|
+
createdAtLocation?: string | null | undefined;
|
5147
5147
|
annotation?: Record<string, string | number | boolean | {
|
5148
5148
|
type: string;
|
5149
5149
|
filename: string;
|
@@ -5189,6 +5189,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5189
5189
|
createdAt: z.ZodString;
|
5190
5190
|
createdBy: z.ZodString;
|
5191
5191
|
createdByRole: z.ZodString;
|
5192
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5192
5193
|
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<{
|
5193
5194
|
filename: z.ZodString;
|
5194
5195
|
originalFilename: z.ZodString;
|
@@ -5417,7 +5418,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5417
5418
|
addressLine3?: string | null | undefined;
|
5418
5419
|
postcodeOrZip?: string | null | undefined;
|
5419
5420
|
}>]>>>;
|
5420
|
-
createdAtLocation: z.ZodString;
|
5421
5421
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5422
5422
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5423
5423
|
}, {
|
@@ -5468,7 +5468,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5468
5468
|
filename: string;
|
5469
5469
|
originalFilename: string;
|
5470
5470
|
}[] | [string, string] | undefined>;
|
5471
|
-
createdAtLocation
|
5471
|
+
createdAtLocation?: string | null | undefined;
|
5472
5472
|
annotation?: Record<string, string | number | boolean | {
|
5473
5473
|
type: string;
|
5474
5474
|
filename: string;
|
@@ -5554,7 +5554,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5554
5554
|
filename: string;
|
5555
5555
|
originalFilename: string;
|
5556
5556
|
}[] | [string, string] | undefined>;
|
5557
|
-
createdAtLocation
|
5557
|
+
createdAtLocation?: string | null | undefined;
|
5558
5558
|
annotation?: Record<string, string | number | boolean | {
|
5559
5559
|
type: string;
|
5560
5560
|
filename: string;
|
@@ -5600,6 +5600,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5600
5600
|
createdAt: z.ZodString;
|
5601
5601
|
createdBy: z.ZodString;
|
5602
5602
|
createdByRole: z.ZodString;
|
5603
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5603
5604
|
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<{
|
5604
5605
|
filename: z.ZodString;
|
5605
5606
|
originalFilename: z.ZodString;
|
@@ -5828,7 +5829,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5828
5829
|
addressLine3?: string | null | undefined;
|
5829
5830
|
postcodeOrZip?: string | null | undefined;
|
5830
5831
|
}>]>>>;
|
5831
|
-
createdAtLocation: z.ZodString;
|
5832
5832
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5833
5833
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5834
5834
|
}, {
|
@@ -5880,8 +5880,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5880
5880
|
filename: string;
|
5881
5881
|
originalFilename: string;
|
5882
5882
|
}[] | [string, string] | undefined>;
|
5883
|
-
createdAtLocation: string;
|
5884
5883
|
requestId: string;
|
5884
|
+
createdAtLocation?: string | null | undefined;
|
5885
5885
|
annotation?: Record<string, string | number | boolean | {
|
5886
5886
|
type: string;
|
5887
5887
|
filename: string;
|
@@ -5967,8 +5967,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5967
5967
|
filename: string;
|
5968
5968
|
originalFilename: string;
|
5969
5969
|
}[] | [string, string] | undefined>;
|
5970
|
-
createdAtLocation: string;
|
5971
5970
|
requestId: string;
|
5971
|
+
createdAtLocation?: string | null | undefined;
|
5972
5972
|
annotation?: Record<string, string | number | boolean | {
|
5973
5973
|
type: string;
|
5974
5974
|
filename: string;
|
@@ -6014,6 +6014,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6014
6014
|
createdAt: z.ZodString;
|
6015
6015
|
createdBy: z.ZodString;
|
6016
6016
|
createdByRole: z.ZodString;
|
6017
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6017
6018
|
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<{
|
6018
6019
|
filename: z.ZodString;
|
6019
6020
|
originalFilename: z.ZodString;
|
@@ -6242,7 +6243,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6242
6243
|
addressLine3?: string | null | undefined;
|
6243
6244
|
postcodeOrZip?: string | null | undefined;
|
6244
6245
|
}>]>>>;
|
6245
|
-
createdAtLocation: z.ZodString;
|
6246
6246
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6247
6247
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6248
6248
|
}, {
|
@@ -6294,8 +6294,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6294
6294
|
filename: string;
|
6295
6295
|
originalFilename: string;
|
6296
6296
|
}[] | [string, string] | undefined>;
|
6297
|
-
createdAtLocation: string;
|
6298
6297
|
requestId: string;
|
6298
|
+
createdAtLocation?: string | null | undefined;
|
6299
6299
|
annotation?: Record<string, string | number | boolean | {
|
6300
6300
|
type: string;
|
6301
6301
|
filename: string;
|
@@ -6381,8 +6381,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6381
6381
|
filename: string;
|
6382
6382
|
originalFilename: string;
|
6383
6383
|
}[] | [string, string] | undefined>;
|
6384
|
-
createdAtLocation: string;
|
6385
6384
|
requestId: string;
|
6385
|
+
createdAtLocation?: string | null | undefined;
|
6386
6386
|
annotation?: Record<string, string | number | boolean | {
|
6387
6387
|
type: string;
|
6388
6388
|
filename: string;
|
@@ -6428,6 +6428,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6428
6428
|
createdAt: z.ZodString;
|
6429
6429
|
createdBy: z.ZodString;
|
6430
6430
|
createdByRole: z.ZodString;
|
6431
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6431
6432
|
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<{
|
6432
6433
|
filename: z.ZodString;
|
6433
6434
|
originalFilename: z.ZodString;
|
@@ -6656,7 +6657,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6656
6657
|
addressLine3?: string | null | undefined;
|
6657
6658
|
postcodeOrZip?: string | null | undefined;
|
6658
6659
|
}>]>>>;
|
6659
|
-
createdAtLocation: z.ZodString;
|
6660
6660
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6661
6661
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6662
6662
|
}, {
|
@@ -6708,8 +6708,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6708
6708
|
filename: string;
|
6709
6709
|
originalFilename: string;
|
6710
6710
|
}[] | [string, string] | undefined>;
|
6711
|
-
createdAtLocation: string;
|
6712
6711
|
assignedTo: null;
|
6712
|
+
createdAtLocation?: string | null | undefined;
|
6713
6713
|
annotation?: Record<string, string | number | boolean | {
|
6714
6714
|
type: string;
|
6715
6715
|
filename: string;
|
@@ -6795,8 +6795,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6795
6795
|
filename: string;
|
6796
6796
|
originalFilename: string;
|
6797
6797
|
}[] | [string, string] | undefined>;
|
6798
|
-
createdAtLocation: string;
|
6799
6798
|
assignedTo: null;
|
6799
|
+
createdAtLocation?: string | null | undefined;
|
6800
6800
|
annotation?: Record<string, string | number | boolean | {
|
6801
6801
|
type: string;
|
6802
6802
|
filename: string;
|
@@ -6842,6 +6842,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6842
6842
|
createdAt: z.ZodString;
|
6843
6843
|
createdBy: z.ZodString;
|
6844
6844
|
createdByRole: z.ZodString;
|
6845
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6845
6846
|
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<{
|
6846
6847
|
filename: z.ZodString;
|
6847
6848
|
originalFilename: z.ZodString;
|
@@ -7070,7 +7071,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7070
7071
|
addressLine3?: string | null | undefined;
|
7071
7072
|
postcodeOrZip?: string | null | undefined;
|
7072
7073
|
}>]>>>;
|
7073
|
-
createdAtLocation: z.ZodString;
|
7074
7074
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7075
7075
|
originalActionId: z.ZodOptional<z.ZodString>;
|
7076
7076
|
}, {
|
@@ -7121,7 +7121,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7121
7121
|
filename: string;
|
7122
7122
|
originalFilename: string;
|
7123
7123
|
}[] | [string, string] | undefined>;
|
7124
|
-
createdAtLocation
|
7124
|
+
createdAtLocation?: string | null | undefined;
|
7125
7125
|
annotation?: Record<string, string | number | boolean | {
|
7126
7126
|
type: string;
|
7127
7127
|
filename: string;
|
@@ -7207,7 +7207,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7207
7207
|
filename: string;
|
7208
7208
|
originalFilename: string;
|
7209
7209
|
}[] | [string, string] | undefined>;
|
7210
|
-
createdAtLocation
|
7210
|
+
createdAtLocation?: string | null | undefined;
|
7211
7211
|
annotation?: Record<string, string | number | boolean | {
|
7212
7212
|
type: string;
|
7213
7213
|
filename: string;
|
@@ -7253,6 +7253,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7253
7253
|
createdAt: z.ZodString;
|
7254
7254
|
createdBy: z.ZodString;
|
7255
7255
|
createdByRole: z.ZodString;
|
7256
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7256
7257
|
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<{
|
7257
7258
|
filename: z.ZodString;
|
7258
7259
|
originalFilename: z.ZodString;
|
@@ -7481,7 +7482,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7481
7482
|
addressLine3?: string | null | undefined;
|
7482
7483
|
postcodeOrZip?: string | null | undefined;
|
7483
7484
|
}>]>>>;
|
7484
|
-
createdAtLocation: z.ZodString;
|
7485
7485
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7486
7486
|
originalActionId: z.ZodOptional<z.ZodString>;
|
7487
7487
|
}, {
|
@@ -7532,7 +7532,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7532
7532
|
filename: string;
|
7533
7533
|
originalFilename: string;
|
7534
7534
|
}[] | [string, string] | undefined>;
|
7535
|
-
createdAtLocation
|
7535
|
+
createdAtLocation?: string | null | undefined;
|
7536
7536
|
annotation?: Record<string, string | number | boolean | {
|
7537
7537
|
type: string;
|
7538
7538
|
filename: string;
|
@@ -7618,7 +7618,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7618
7618
|
filename: string;
|
7619
7619
|
originalFilename: string;
|
7620
7620
|
}[] | [string, string] | undefined>;
|
7621
|
-
createdAtLocation
|
7621
|
+
createdAtLocation?: string | null | undefined;
|
7622
7622
|
annotation?: Record<string, string | number | boolean | {
|
7623
7623
|
type: string;
|
7624
7624
|
filename: string;
|
@@ -7666,6 +7666,7 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
7666
7666
|
createdAt: z.ZodString;
|
7667
7667
|
createdBy: z.ZodString;
|
7668
7668
|
createdByRole: z.ZodString;
|
7669
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7669
7670
|
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<{
|
7670
7671
|
filename: z.ZodString;
|
7671
7672
|
originalFilename: z.ZodString;
|
@@ -7894,7 +7895,6 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
7894
7895
|
addressLine3?: string | null | undefined;
|
7895
7896
|
postcodeOrZip?: string | null | undefined;
|
7896
7897
|
}>]>>>;
|
7897
|
-
createdAtLocation: z.ZodString;
|
7898
7898
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7899
7899
|
originalActionId: z.ZodOptional<z.ZodString>;
|
7900
7900
|
}, "declaration" | "annotation">, {
|
@@ -7908,7 +7908,7 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
7908
7908
|
createdAt: string;
|
7909
7909
|
createdBy: string;
|
7910
7910
|
createdByRole: string;
|
7911
|
-
createdAtLocation
|
7911
|
+
createdAtLocation?: string | null | undefined;
|
7912
7912
|
originalActionId?: string | undefined;
|
7913
7913
|
}, {
|
7914
7914
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -7918,7 +7918,7 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
7918
7918
|
createdAt: string;
|
7919
7919
|
createdBy: string;
|
7920
7920
|
createdByRole: string;
|
7921
|
-
createdAtLocation
|
7921
|
+
createdAtLocation?: string | null | undefined;
|
7922
7922
|
originalActionId?: string | undefined;
|
7923
7923
|
}>;
|
7924
7924
|
export type AsyncRejectActionDocument = z.infer<typeof AsyncRejectActionDocument>;
|
@@ -7928,6 +7928,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
7928
7928
|
createdAt: z.ZodString;
|
7929
7929
|
createdBy: z.ZodString;
|
7930
7930
|
createdByRole: z.ZodString;
|
7931
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7931
7932
|
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<{
|
7932
7933
|
filename: z.ZodString;
|
7933
7934
|
originalFilename: z.ZodString;
|
@@ -8156,7 +8157,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8156
8157
|
addressLine3?: string | null | undefined;
|
8157
8158
|
postcodeOrZip?: string | null | undefined;
|
8158
8159
|
}>]>>>;
|
8159
|
-
createdAtLocation: z.ZodString;
|
8160
8160
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
8161
8161
|
originalActionId: z.ZodOptional<z.ZodString>;
|
8162
8162
|
}, {
|
@@ -8207,7 +8207,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8207
8207
|
filename: string;
|
8208
8208
|
originalFilename: string;
|
8209
8209
|
}[] | [string, string] | undefined>;
|
8210
|
-
createdAtLocation
|
8210
|
+
createdAtLocation?: string | null | undefined;
|
8211
8211
|
annotation?: Record<string, string | number | boolean | {
|
8212
8212
|
type: string;
|
8213
8213
|
filename: string;
|
@@ -8293,7 +8293,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8293
8293
|
filename: string;
|
8294
8294
|
originalFilename: string;
|
8295
8295
|
}[] | [string, string] | undefined>;
|
8296
|
-
createdAtLocation
|
8296
|
+
createdAtLocation?: string | null | undefined;
|
8297
8297
|
annotation?: Record<string, string | number | boolean | {
|
8298
8298
|
type: string;
|
8299
8299
|
filename: string;
|
@@ -8339,6 +8339,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8339
8339
|
createdAt: z.ZodString;
|
8340
8340
|
createdBy: z.ZodString;
|
8341
8341
|
createdByRole: z.ZodString;
|
8342
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8342
8343
|
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<{
|
8343
8344
|
filename: z.ZodString;
|
8344
8345
|
originalFilename: z.ZodString;
|
@@ -8567,7 +8568,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8567
8568
|
addressLine3?: string | null | undefined;
|
8568
8569
|
postcodeOrZip?: string | null | undefined;
|
8569
8570
|
}>]>>>;
|
8570
|
-
createdAtLocation: z.ZodString;
|
8571
8571
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
8572
8572
|
originalActionId: z.ZodOptional<z.ZodString>;
|
8573
8573
|
}, {
|
@@ -8618,7 +8618,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8618
8618
|
filename: string;
|
8619
8619
|
originalFilename: string;
|
8620
8620
|
}[] | [string, string] | undefined>;
|
8621
|
-
createdAtLocation
|
8621
|
+
createdAtLocation?: string | null | undefined;
|
8622
8622
|
annotation?: Record<string, string | number | boolean | {
|
8623
8623
|
type: string;
|
8624
8624
|
filename: string;
|
@@ -8704,7 +8704,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8704
8704
|
filename: string;
|
8705
8705
|
originalFilename: string;
|
8706
8706
|
}[] | [string, string] | undefined>;
|
8707
|
-
createdAtLocation
|
8707
|
+
createdAtLocation?: string | null | undefined;
|
8708
8708
|
annotation?: Record<string, string | number | boolean | {
|
8709
8709
|
type: string;
|
8710
8710
|
filename: string;
|
@@ -8750,6 +8750,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8750
8750
|
createdAt: z.ZodString;
|
8751
8751
|
createdBy: z.ZodString;
|
8752
8752
|
createdByRole: z.ZodString;
|
8753
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8753
8754
|
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<{
|
8754
8755
|
filename: z.ZodString;
|
8755
8756
|
originalFilename: z.ZodString;
|
@@ -8978,7 +8979,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8978
8979
|
addressLine3?: string | null | undefined;
|
8979
8980
|
postcodeOrZip?: string | null | undefined;
|
8980
8981
|
}>]>>>;
|
8981
|
-
createdAtLocation: z.ZodString;
|
8982
8982
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
8983
8983
|
originalActionId: z.ZodOptional<z.ZodString>;
|
8984
8984
|
}, {
|
@@ -9029,7 +9029,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9029
9029
|
filename: string;
|
9030
9030
|
originalFilename: string;
|
9031
9031
|
}[] | [string, string] | undefined>;
|
9032
|
-
createdAtLocation
|
9032
|
+
createdAtLocation?: string | null | undefined;
|
9033
9033
|
annotation?: Record<string, string | number | boolean | {
|
9034
9034
|
type: string;
|
9035
9035
|
filename: string;
|
@@ -9115,7 +9115,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9115
9115
|
filename: string;
|
9116
9116
|
originalFilename: string;
|
9117
9117
|
}[] | [string, string] | undefined>;
|
9118
|
-
createdAtLocation
|
9118
|
+
createdAtLocation?: string | null | undefined;
|
9119
9119
|
annotation?: Record<string, string | number | boolean | {
|
9120
9120
|
type: string;
|
9121
9121
|
filename: string;
|
@@ -9161,6 +9161,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9161
9161
|
createdAt: z.ZodString;
|
9162
9162
|
createdBy: z.ZodString;
|
9163
9163
|
createdByRole: z.ZodString;
|
9164
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9164
9165
|
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<{
|
9165
9166
|
filename: z.ZodString;
|
9166
9167
|
originalFilename: z.ZodString;
|
@@ -9389,7 +9390,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9389
9390
|
addressLine3?: string | null | undefined;
|
9390
9391
|
postcodeOrZip?: string | null | undefined;
|
9391
9392
|
}>]>>>;
|
9392
|
-
createdAtLocation: z.ZodString;
|
9393
9393
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
9394
9394
|
originalActionId: z.ZodOptional<z.ZodString>;
|
9395
9395
|
}, {
|
@@ -9440,7 +9440,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9440
9440
|
filename: string;
|
9441
9441
|
originalFilename: string;
|
9442
9442
|
}[] | [string, string] | undefined>;
|
9443
|
-
createdAtLocation
|
9443
|
+
createdAtLocation?: string | null | undefined;
|
9444
9444
|
annotation?: Record<string, string | number | boolean | {
|
9445
9445
|
type: string;
|
9446
9446
|
filename: string;
|
@@ -9526,7 +9526,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9526
9526
|
filename: string;
|
9527
9527
|
originalFilename: string;
|
9528
9528
|
}[] | [string, string] | undefined>;
|
9529
|
-
createdAtLocation
|
9529
|
+
createdAtLocation?: string | null | undefined;
|
9530
9530
|
annotation?: Record<string, string | number | boolean | {
|
9531
9531
|
type: string;
|
9532
9532
|
filename: string;
|
@@ -9572,6 +9572,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9572
9572
|
createdAt: z.ZodString;
|
9573
9573
|
createdBy: z.ZodString;
|
9574
9574
|
createdByRole: z.ZodString;
|
9575
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9575
9576
|
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<{
|
9576
9577
|
filename: z.ZodString;
|
9577
9578
|
originalFilename: z.ZodString;
|
@@ -9800,7 +9801,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9800
9801
|
addressLine3?: string | null | undefined;
|
9801
9802
|
postcodeOrZip?: string | null | undefined;
|
9802
9803
|
}>]>>>;
|
9803
|
-
createdAtLocation: z.ZodString;
|
9804
9804
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
9805
9805
|
originalActionId: z.ZodOptional<z.ZodString>;
|
9806
9806
|
}, {
|
@@ -9851,7 +9851,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9851
9851
|
filename: string;
|
9852
9852
|
originalFilename: string;
|
9853
9853
|
}[] | [string, string] | undefined>;
|
9854
|
-
createdAtLocation
|
9854
|
+
createdAtLocation?: string | null | undefined;
|
9855
9855
|
annotation?: Record<string, string | number | boolean | {
|
9856
9856
|
type: string;
|
9857
9857
|
filename: string;
|
@@ -9937,7 +9937,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9937
9937
|
filename: string;
|
9938
9938
|
originalFilename: string;
|
9939
9939
|
}[] | [string, string] | undefined>;
|
9940
|
-
createdAtLocation
|
9940
|
+
createdAtLocation?: string | null | undefined;
|
9941
9941
|
annotation?: Record<string, string | number | boolean | {
|
9942
9942
|
type: string;
|
9943
9943
|
filename: string;
|
@@ -9983,6 +9983,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9983
9983
|
createdAt: z.ZodString;
|
9984
9984
|
createdBy: z.ZodString;
|
9985
9985
|
createdByRole: z.ZodString;
|
9986
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9986
9987
|
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<{
|
9987
9988
|
filename: z.ZodString;
|
9988
9989
|
originalFilename: z.ZodString;
|
@@ -10211,7 +10212,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10211
10212
|
addressLine3?: string | null | undefined;
|
10212
10213
|
postcodeOrZip?: string | null | undefined;
|
10213
10214
|
}>]>>>;
|
10214
|
-
createdAtLocation: z.ZodString;
|
10215
10215
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
10216
10216
|
originalActionId: z.ZodOptional<z.ZodString>;
|
10217
10217
|
}, {
|
@@ -10262,7 +10262,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10262
10262
|
filename: string;
|
10263
10263
|
originalFilename: string;
|
10264
10264
|
}[] | [string, string] | undefined>;
|
10265
|
-
createdAtLocation
|
10265
|
+
createdAtLocation?: string | null | undefined;
|
10266
10266
|
annotation?: Record<string, string | number | boolean | {
|
10267
10267
|
type: string;
|
10268
10268
|
filename: string;
|
@@ -10348,7 +10348,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10348
10348
|
filename: string;
|
10349
10349
|
originalFilename: string;
|
10350
10350
|
}[] | [string, string] | undefined>;
|
10351
|
-
createdAtLocation
|
10351
|
+
createdAtLocation?: string | null | undefined;
|
10352
10352
|
annotation?: Record<string, string | number | boolean | {
|
10353
10353
|
type: string;
|
10354
10354
|
filename: string;
|
@@ -10394,6 +10394,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10394
10394
|
createdAt: z.ZodString;
|
10395
10395
|
createdBy: z.ZodString;
|
10396
10396
|
createdByRole: z.ZodString;
|
10397
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10397
10398
|
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<{
|
10398
10399
|
filename: z.ZodString;
|
10399
10400
|
originalFilename: z.ZodString;
|
@@ -10622,7 +10623,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10622
10623
|
addressLine3?: string | null | undefined;
|
10623
10624
|
postcodeOrZip?: string | null | undefined;
|
10624
10625
|
}>]>>>;
|
10625
|
-
createdAtLocation: z.ZodString;
|
10626
10626
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
10627
10627
|
originalActionId: z.ZodOptional<z.ZodString>;
|
10628
10628
|
}, {
|
@@ -10674,7 +10674,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10674
10674
|
filename: string;
|
10675
10675
|
originalFilename: string;
|
10676
10676
|
}[] | [string, string] | undefined>;
|
10677
|
-
createdAtLocation
|
10677
|
+
createdAtLocation?: string | null | undefined;
|
10678
10678
|
annotation?: Record<string, string | number | boolean | {
|
10679
10679
|
type: string;
|
10680
10680
|
filename: string;
|
@@ -10761,7 +10761,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10761
10761
|
filename: string;
|
10762
10762
|
originalFilename: string;
|
10763
10763
|
}[] | [string, string] | undefined>;
|
10764
|
-
createdAtLocation
|
10764
|
+
createdAtLocation?: string | null | undefined;
|
10765
10765
|
annotation?: Record<string, string | number | boolean | {
|
10766
10766
|
type: string;
|
10767
10767
|
filename: string;
|
@@ -10808,6 +10808,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10808
10808
|
createdAt: z.ZodString;
|
10809
10809
|
createdBy: z.ZodString;
|
10810
10810
|
createdByRole: z.ZodString;
|
10811
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10811
10812
|
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<{
|
10812
10813
|
filename: z.ZodString;
|
10813
10814
|
originalFilename: z.ZodString;
|
@@ -11036,7 +11037,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11036
11037
|
addressLine3?: string | null | undefined;
|
11037
11038
|
postcodeOrZip?: string | null | undefined;
|
11038
11039
|
}>]>>>;
|
11039
|
-
createdAtLocation: z.ZodString;
|
11040
11040
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
11041
11041
|
originalActionId: z.ZodOptional<z.ZodString>;
|
11042
11042
|
}, {
|
@@ -11087,7 +11087,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11087
11087
|
filename: string;
|
11088
11088
|
originalFilename: string;
|
11089
11089
|
}[] | [string, string] | undefined>;
|
11090
|
-
createdAtLocation
|
11090
|
+
createdAtLocation?: string | null | undefined;
|
11091
11091
|
annotation?: Record<string, string | number | boolean | {
|
11092
11092
|
type: string;
|
11093
11093
|
filename: string;
|
@@ -11173,7 +11173,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11173
11173
|
filename: string;
|
11174
11174
|
originalFilename: string;
|
11175
11175
|
}[] | [string, string] | undefined>;
|
11176
|
-
createdAtLocation
|
11176
|
+
createdAtLocation?: string | null | undefined;
|
11177
11177
|
annotation?: Record<string, string | number | boolean | {
|
11178
11178
|
type: string;
|
11179
11179
|
filename: string;
|
@@ -11219,6 +11219,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11219
11219
|
createdAt: z.ZodString;
|
11220
11220
|
createdBy: z.ZodString;
|
11221
11221
|
createdByRole: z.ZodString;
|
11222
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11222
11223
|
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<{
|
11223
11224
|
filename: z.ZodString;
|
11224
11225
|
originalFilename: z.ZodString;
|
@@ -11447,7 +11448,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11447
11448
|
addressLine3?: string | null | undefined;
|
11448
11449
|
postcodeOrZip?: string | null | undefined;
|
11449
11450
|
}>]>>>;
|
11450
|
-
createdAtLocation: z.ZodString;
|
11451
11451
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
11452
11452
|
originalActionId: z.ZodOptional<z.ZodString>;
|
11453
11453
|
}, {
|
@@ -11499,8 +11499,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11499
11499
|
filename: string;
|
11500
11500
|
originalFilename: string;
|
11501
11501
|
}[] | [string, string] | undefined>;
|
11502
|
-
createdAtLocation: string;
|
11503
11502
|
assignedTo: string;
|
11503
|
+
createdAtLocation?: string | null | undefined;
|
11504
11504
|
annotation?: Record<string, string | number | boolean | {
|
11505
11505
|
type: string;
|
11506
11506
|
filename: string;
|
@@ -11586,8 +11586,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11586
11586
|
filename: string;
|
11587
11587
|
originalFilename: string;
|
11588
11588
|
}[] | [string, string] | undefined>;
|
11589
|
-
createdAtLocation: string;
|
11590
11589
|
assignedTo: string;
|
11590
|
+
createdAtLocation?: string | null | undefined;
|
11591
11591
|
annotation?: Record<string, string | number | boolean | {
|
11592
11592
|
type: string;
|
11593
11593
|
filename: string;
|
@@ -11633,6 +11633,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11633
11633
|
createdAt: z.ZodString;
|
11634
11634
|
createdBy: z.ZodString;
|
11635
11635
|
createdByRole: z.ZodString;
|
11636
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11636
11637
|
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<{
|
11637
11638
|
filename: z.ZodString;
|
11638
11639
|
originalFilename: z.ZodString;
|
@@ -11861,7 +11862,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11861
11862
|
addressLine3?: string | null | undefined;
|
11862
11863
|
postcodeOrZip?: string | null | undefined;
|
11863
11864
|
}>]>>>;
|
11864
|
-
createdAtLocation: z.ZodString;
|
11865
11865
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
11866
11866
|
originalActionId: z.ZodOptional<z.ZodString>;
|
11867
11867
|
}, {
|
@@ -11912,7 +11912,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11912
11912
|
filename: string;
|
11913
11913
|
originalFilename: string;
|
11914
11914
|
}[] | [string, string] | undefined>;
|
11915
|
-
createdAtLocation
|
11915
|
+
createdAtLocation?: string | null | undefined;
|
11916
11916
|
annotation?: Record<string, string | number | boolean | {
|
11917
11917
|
type: string;
|
11918
11918
|
filename: string;
|
@@ -11998,7 +11998,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11998
11998
|
filename: string;
|
11999
11999
|
originalFilename: string;
|
12000
12000
|
}[] | [string, string] | undefined>;
|
12001
|
-
createdAtLocation
|
12001
|
+
createdAtLocation?: string | null | undefined;
|
12002
12002
|
annotation?: Record<string, string | number | boolean | {
|
12003
12003
|
type: string;
|
12004
12004
|
filename: string;
|
@@ -12044,6 +12044,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12044
12044
|
createdAt: z.ZodString;
|
12045
12045
|
createdBy: z.ZodString;
|
12046
12046
|
createdByRole: z.ZodString;
|
12047
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12047
12048
|
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<{
|
12048
12049
|
filename: z.ZodString;
|
12049
12050
|
originalFilename: z.ZodString;
|
@@ -12272,7 +12273,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12272
12273
|
addressLine3?: string | null | undefined;
|
12273
12274
|
postcodeOrZip?: string | null | undefined;
|
12274
12275
|
}>]>>>;
|
12275
|
-
createdAtLocation: z.ZodString;
|
12276
12276
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
12277
12277
|
originalActionId: z.ZodOptional<z.ZodString>;
|
12278
12278
|
}, {
|
@@ -12324,8 +12324,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12324
12324
|
filename: string;
|
12325
12325
|
originalFilename: string;
|
12326
12326
|
}[] | [string, string] | undefined>;
|
12327
|
-
createdAtLocation: string;
|
12328
12327
|
requestId: string;
|
12328
|
+
createdAtLocation?: string | null | undefined;
|
12329
12329
|
annotation?: Record<string, string | number | boolean | {
|
12330
12330
|
type: string;
|
12331
12331
|
filename: string;
|
@@ -12411,8 +12411,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12411
12411
|
filename: string;
|
12412
12412
|
originalFilename: string;
|
12413
12413
|
}[] | [string, string] | undefined>;
|
12414
|
-
createdAtLocation: string;
|
12415
12414
|
requestId: string;
|
12415
|
+
createdAtLocation?: string | null | undefined;
|
12416
12416
|
annotation?: Record<string, string | number | boolean | {
|
12417
12417
|
type: string;
|
12418
12418
|
filename: string;
|
@@ -12458,6 +12458,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12458
12458
|
createdAt: z.ZodString;
|
12459
12459
|
createdBy: z.ZodString;
|
12460
12460
|
createdByRole: z.ZodString;
|
12461
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12461
12462
|
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<{
|
12462
12463
|
filename: z.ZodString;
|
12463
12464
|
originalFilename: z.ZodString;
|
@@ -12686,7 +12687,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12686
12687
|
addressLine3?: string | null | undefined;
|
12687
12688
|
postcodeOrZip?: string | null | undefined;
|
12688
12689
|
}>]>>>;
|
12689
|
-
createdAtLocation: z.ZodString;
|
12690
12690
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
12691
12691
|
originalActionId: z.ZodOptional<z.ZodString>;
|
12692
12692
|
}, {
|
@@ -12738,8 +12738,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12738
12738
|
filename: string;
|
12739
12739
|
originalFilename: string;
|
12740
12740
|
}[] | [string, string] | undefined>;
|
12741
|
-
createdAtLocation: string;
|
12742
12741
|
requestId: string;
|
12742
|
+
createdAtLocation?: string | null | undefined;
|
12743
12743
|
annotation?: Record<string, string | number | boolean | {
|
12744
12744
|
type: string;
|
12745
12745
|
filename: string;
|
@@ -12825,8 +12825,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12825
12825
|
filename: string;
|
12826
12826
|
originalFilename: string;
|
12827
12827
|
}[] | [string, string] | undefined>;
|
12828
|
-
createdAtLocation: string;
|
12829
12828
|
requestId: string;
|
12829
|
+
createdAtLocation?: string | null | undefined;
|
12830
12830
|
annotation?: Record<string, string | number | boolean | {
|
12831
12831
|
type: string;
|
12832
12832
|
filename: string;
|
@@ -12872,6 +12872,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12872
12872
|
createdAt: z.ZodString;
|
12873
12873
|
createdBy: z.ZodString;
|
12874
12874
|
createdByRole: z.ZodString;
|
12875
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12875
12876
|
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<{
|
12876
12877
|
filename: z.ZodString;
|
12877
12878
|
originalFilename: z.ZodString;
|
@@ -13100,7 +13101,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13100
13101
|
addressLine3?: string | null | undefined;
|
13101
13102
|
postcodeOrZip?: string | null | undefined;
|
13102
13103
|
}>]>>>;
|
13103
|
-
createdAtLocation: z.ZodString;
|
13104
13104
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
13105
13105
|
originalActionId: z.ZodOptional<z.ZodString>;
|
13106
13106
|
}, {
|
@@ -13152,8 +13152,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13152
13152
|
filename: string;
|
13153
13153
|
originalFilename: string;
|
13154
13154
|
}[] | [string, string] | undefined>;
|
13155
|
-
createdAtLocation: string;
|
13156
13155
|
assignedTo: null;
|
13156
|
+
createdAtLocation?: string | null | undefined;
|
13157
13157
|
annotation?: Record<string, string | number | boolean | {
|
13158
13158
|
type: string;
|
13159
13159
|
filename: string;
|
@@ -13239,8 +13239,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13239
13239
|
filename: string;
|
13240
13240
|
originalFilename: string;
|
13241
13241
|
}[] | [string, string] | undefined>;
|
13242
|
-
createdAtLocation: string;
|
13243
13242
|
assignedTo: null;
|
13243
|
+
createdAtLocation?: string | null | undefined;
|
13244
13244
|
annotation?: Record<string, string | number | boolean | {
|
13245
13245
|
type: string;
|
13246
13246
|
filename: string;
|
@@ -13286,6 +13286,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13286
13286
|
createdAt: z.ZodString;
|
13287
13287
|
createdBy: z.ZodString;
|
13288
13288
|
createdByRole: z.ZodString;
|
13289
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13289
13290
|
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<{
|
13290
13291
|
filename: z.ZodString;
|
13291
13292
|
originalFilename: z.ZodString;
|
@@ -13514,7 +13515,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13514
13515
|
addressLine3?: string | null | undefined;
|
13515
13516
|
postcodeOrZip?: string | null | undefined;
|
13516
13517
|
}>]>>>;
|
13517
|
-
createdAtLocation: z.ZodString;
|
13518
13518
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
13519
13519
|
originalActionId: z.ZodOptional<z.ZodString>;
|
13520
13520
|
}, {
|
@@ -13565,7 +13565,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13565
13565
|
filename: string;
|
13566
13566
|
originalFilename: string;
|
13567
13567
|
}[] | [string, string] | undefined>;
|
13568
|
-
createdAtLocation
|
13568
|
+
createdAtLocation?: string | null | undefined;
|
13569
13569
|
annotation?: Record<string, string | number | boolean | {
|
13570
13570
|
type: string;
|
13571
13571
|
filename: string;
|
@@ -13651,7 +13651,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13651
13651
|
filename: string;
|
13652
13652
|
originalFilename: string;
|
13653
13653
|
}[] | [string, string] | undefined>;
|
13654
|
-
createdAtLocation
|
13654
|
+
createdAtLocation?: string | null | undefined;
|
13655
13655
|
annotation?: Record<string, string | number | boolean | {
|
13656
13656
|
type: string;
|
13657
13657
|
filename: string;
|
@@ -13697,6 +13697,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13697
13697
|
createdAt: z.ZodString;
|
13698
13698
|
createdBy: z.ZodString;
|
13699
13699
|
createdByRole: z.ZodString;
|
13700
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13700
13701
|
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<{
|
13701
13702
|
filename: z.ZodString;
|
13702
13703
|
originalFilename: z.ZodString;
|
@@ -13925,7 +13926,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13925
13926
|
addressLine3?: string | null | undefined;
|
13926
13927
|
postcodeOrZip?: string | null | undefined;
|
13927
13928
|
}>]>>>;
|
13928
|
-
createdAtLocation: z.ZodString;
|
13929
13929
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
13930
13930
|
originalActionId: z.ZodOptional<z.ZodString>;
|
13931
13931
|
}, {
|
@@ -13976,7 +13976,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13976
13976
|
filename: string;
|
13977
13977
|
originalFilename: string;
|
13978
13978
|
}[] | [string, string] | undefined>;
|
13979
|
-
createdAtLocation
|
13979
|
+
createdAtLocation?: string | null | undefined;
|
13980
13980
|
annotation?: Record<string, string | number | boolean | {
|
13981
13981
|
type: string;
|
13982
13982
|
filename: string;
|
@@ -14062,7 +14062,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14062
14062
|
filename: string;
|
14063
14063
|
originalFilename: string;
|
14064
14064
|
}[] | [string, string] | undefined>;
|
14065
|
-
createdAtLocation
|
14065
|
+
createdAtLocation?: string | null | undefined;
|
14066
14066
|
annotation?: Record<string, string | number | boolean | {
|
14067
14067
|
type: string;
|
14068
14068
|
filename: string;
|
@@ -14108,6 +14108,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14108
14108
|
createdAt: z.ZodString;
|
14109
14109
|
createdBy: z.ZodString;
|
14110
14110
|
createdByRole: z.ZodString;
|
14111
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14111
14112
|
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<{
|
14112
14113
|
filename: z.ZodString;
|
14113
14114
|
originalFilename: z.ZodString;
|
@@ -14336,7 +14337,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14336
14337
|
addressLine3?: string | null | undefined;
|
14337
14338
|
postcodeOrZip?: string | null | undefined;
|
14338
14339
|
}>]>>>;
|
14339
|
-
createdAtLocation: z.ZodString;
|
14340
14340
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
14341
14341
|
originalActionId: z.ZodOptional<z.ZodString>;
|
14342
14342
|
}, "declaration" | "annotation">, {
|
@@ -14350,7 +14350,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14350
14350
|
createdAt: string;
|
14351
14351
|
createdBy: string;
|
14352
14352
|
createdByRole: string;
|
14353
|
-
createdAtLocation
|
14353
|
+
createdAtLocation?: string | null | undefined;
|
14354
14354
|
originalActionId?: string | undefined;
|
14355
14355
|
}, {
|
14356
14356
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
@@ -14360,7 +14360,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14360
14360
|
createdAt: string;
|
14361
14361
|
createdBy: string;
|
14362
14362
|
createdByRole: string;
|
14363
|
-
createdAtLocation
|
14363
|
+
createdAtLocation?: string | null | undefined;
|
14364
14364
|
originalActionId?: string | undefined;
|
14365
14365
|
}>]>;
|
14366
14366
|
export type Action = ActionDocument | AsyncRejectActionDocument;
|