@opencrvs/toolkit 1.8.0-rc.feef45c → 1.8.0-rc.ff0a1b5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +679 -332
- package/dist/commons/events/ActionConfig.d.ts +4879 -1232
- package/dist/commons/events/ActionDocument.d.ts +433 -413
- package/dist/commons/events/ActionInput.d.ts +180 -180
- package/dist/commons/events/AdvancedSearchConfig.d.ts +34 -36
- package/dist/commons/events/Draft.d.ts +24 -26
- package/dist/commons/events/EventConfig.d.ts +2711 -967
- package/dist/commons/events/EventDocument.d.ts +241 -312
- package/dist/commons/events/EventIndex.d.ts +817 -279
- package/dist/commons/events/EventMetadata.d.ts +263 -11
- package/dist/commons/events/FieldConfig.d.ts +267 -3
- package/dist/commons/events/FieldType.d.ts +3 -2
- package/dist/commons/events/FieldTypeMapping.d.ts +11 -4
- package/dist/commons/events/FieldValue.d.ts +6 -3
- package/dist/commons/events/FormConfig.d.ts +2279 -629
- package/dist/commons/events/PageConfig.d.ts +406 -0
- package/dist/commons/events/SummaryConfig.d.ts +17 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +1222 -8
- package/dist/commons/events/defineConfig.d.ts +283 -2
- package/dist/commons/events/event.d.ts +3 -1
- package/dist/commons/events/field.d.ts +3 -3
- package/dist/commons/events/test.utils.d.ts +7 -7
- package/dist/commons/events/utils.d.ts +193 -21
- package/dist/events/index.js +1141 -774
- package/dist/scopes/index.d.ts +70 -1
- package/dist/scopes/index.js +130 -0
- package/package.json +1 -1
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
2
2
|
export declare const BaseActionInput: z.ZodObject<{
|
3
3
|
eventId: z.ZodString;
|
4
4
|
transactionId: z.ZodString;
|
5
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5
|
+
declaration: z.ZodDefault<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<{
|
6
6
|
filename: z.ZodString;
|
7
7
|
originalFilename: z.ZodString;
|
8
8
|
type: z.ZodString;
|
@@ -116,7 +116,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
116
116
|
addressLine3?: string | null | undefined;
|
117
117
|
postcodeOrZip?: string | null | undefined;
|
118
118
|
}>]>>>;
|
119
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
119
|
+
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<{
|
120
120
|
filename: z.ZodString;
|
121
121
|
originalFilename: z.ZodString;
|
122
122
|
type: z.ZodString;
|
@@ -271,7 +271,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
271
271
|
option: string;
|
272
272
|
filename: string;
|
273
273
|
originalFilename: string;
|
274
|
-
}[] | undefined>;
|
274
|
+
}[] | [string, string] | undefined>;
|
275
275
|
eventId: string;
|
276
276
|
annotation?: Record<string, string | number | boolean | {
|
277
277
|
type: string;
|
@@ -310,7 +310,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
310
310
|
option: string;
|
311
311
|
filename: string;
|
312
312
|
originalFilename: string;
|
313
|
-
}[] | undefined> | undefined;
|
313
|
+
}[] | [string, string] | undefined> | undefined;
|
314
314
|
originalActionId?: string | undefined;
|
315
315
|
keepAssignment?: boolean | undefined;
|
316
316
|
}, {
|
@@ -353,7 +353,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
353
353
|
option: string;
|
354
354
|
filename: string;
|
355
355
|
originalFilename: string;
|
356
|
-
}[] | undefined> | undefined;
|
356
|
+
}[] | [string, string] | undefined> | undefined;
|
357
357
|
annotation?: Record<string, string | number | boolean | {
|
358
358
|
type: string;
|
359
359
|
filename: string;
|
@@ -391,14 +391,14 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
391
391
|
option: string;
|
392
392
|
filename: string;
|
393
393
|
originalFilename: string;
|
394
|
-
}[] | undefined> | undefined;
|
394
|
+
}[] | [string, string] | undefined> | undefined;
|
395
395
|
originalActionId?: string | undefined;
|
396
396
|
keepAssignment?: boolean | undefined;
|
397
397
|
}>;
|
398
398
|
export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
399
399
|
eventId: z.ZodString;
|
400
400
|
transactionId: z.ZodString;
|
401
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
401
|
+
declaration: z.ZodDefault<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<{
|
402
402
|
filename: z.ZodString;
|
403
403
|
originalFilename: z.ZodString;
|
404
404
|
type: z.ZodString;
|
@@ -512,7 +512,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
512
512
|
addressLine3?: string | null | undefined;
|
513
513
|
postcodeOrZip?: string | null | undefined;
|
514
514
|
}>]>>>;
|
515
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
515
|
+
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<{
|
516
516
|
filename: z.ZodString;
|
517
517
|
originalFilename: z.ZodString;
|
518
518
|
type: z.ZodString;
|
@@ -671,7 +671,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
671
671
|
option: string;
|
672
672
|
filename: string;
|
673
673
|
originalFilename: string;
|
674
|
-
}[] | undefined>;
|
674
|
+
}[] | [string, string] | undefined>;
|
675
675
|
eventId: string;
|
676
676
|
annotation?: Record<string, string | number | boolean | {
|
677
677
|
type: string;
|
@@ -710,7 +710,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
710
710
|
option: string;
|
711
711
|
filename: string;
|
712
712
|
originalFilename: string;
|
713
|
-
}[] | undefined> | undefined;
|
713
|
+
}[] | [string, string] | undefined> | undefined;
|
714
714
|
originalActionId?: string | undefined;
|
715
715
|
registrationNumber?: string | undefined;
|
716
716
|
keepAssignment?: boolean | undefined;
|
@@ -755,7 +755,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
755
755
|
option: string;
|
756
756
|
filename: string;
|
757
757
|
originalFilename: string;
|
758
|
-
}[] | undefined> | undefined;
|
758
|
+
}[] | [string, string] | undefined> | undefined;
|
759
759
|
annotation?: Record<string, string | number | boolean | {
|
760
760
|
type: string;
|
761
761
|
filename: string;
|
@@ -793,7 +793,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
793
793
|
option: string;
|
794
794
|
filename: string;
|
795
795
|
originalFilename: string;
|
796
|
-
}[] | undefined> | undefined;
|
796
|
+
}[] | [string, string] | undefined> | undefined;
|
797
797
|
originalActionId?: string | undefined;
|
798
798
|
registrationNumber?: string | undefined;
|
799
799
|
keepAssignment?: boolean | undefined;
|
@@ -802,7 +802,7 @@ export type RegisterActionInput = z.infer<typeof RegisterActionInput>;
|
|
802
802
|
export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
803
803
|
eventId: z.ZodString;
|
804
804
|
transactionId: z.ZodString;
|
805
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
805
|
+
declaration: z.ZodDefault<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<{
|
806
806
|
filename: z.ZodString;
|
807
807
|
originalFilename: z.ZodString;
|
808
808
|
type: z.ZodString;
|
@@ -916,7 +916,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
916
916
|
addressLine3?: string | null | undefined;
|
917
917
|
postcodeOrZip?: string | null | undefined;
|
918
918
|
}>]>>>;
|
919
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
919
|
+
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<{
|
920
920
|
filename: z.ZodString;
|
921
921
|
originalFilename: z.ZodString;
|
922
922
|
type: z.ZodString;
|
@@ -1075,7 +1075,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1075
1075
|
option: string;
|
1076
1076
|
filename: string;
|
1077
1077
|
originalFilename: string;
|
1078
|
-
}[] | undefined>;
|
1078
|
+
}[] | [string, string] | undefined>;
|
1079
1079
|
eventId: string;
|
1080
1080
|
duplicates: string[];
|
1081
1081
|
annotation?: Record<string, string | number | boolean | {
|
@@ -1115,7 +1115,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1115
1115
|
option: string;
|
1116
1116
|
filename: string;
|
1117
1117
|
originalFilename: string;
|
1118
|
-
}[] | undefined> | undefined;
|
1118
|
+
}[] | [string, string] | undefined> | undefined;
|
1119
1119
|
originalActionId?: string | undefined;
|
1120
1120
|
keepAssignment?: boolean | undefined;
|
1121
1121
|
}, {
|
@@ -1160,7 +1160,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1160
1160
|
option: string;
|
1161
1161
|
filename: string;
|
1162
1162
|
originalFilename: string;
|
1163
|
-
}[] | undefined> | undefined;
|
1163
|
+
}[] | [string, string] | undefined> | undefined;
|
1164
1164
|
annotation?: Record<string, string | number | boolean | {
|
1165
1165
|
type: string;
|
1166
1166
|
filename: string;
|
@@ -1198,7 +1198,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1198
1198
|
option: string;
|
1199
1199
|
filename: string;
|
1200
1200
|
originalFilename: string;
|
1201
|
-
}[] | undefined> | undefined;
|
1201
|
+
}[] | [string, string] | undefined> | undefined;
|
1202
1202
|
originalActionId?: string | undefined;
|
1203
1203
|
keepAssignment?: boolean | undefined;
|
1204
1204
|
}>;
|
@@ -1206,7 +1206,7 @@ export type ValidateActionInput = z.infer<typeof ValidateActionInput>;
|
|
1206
1206
|
export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
1207
1207
|
eventId: z.ZodString;
|
1208
1208
|
transactionId: z.ZodString;
|
1209
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1209
|
+
declaration: z.ZodDefault<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<{
|
1210
1210
|
filename: z.ZodString;
|
1211
1211
|
originalFilename: z.ZodString;
|
1212
1212
|
type: z.ZodString;
|
@@ -1320,7 +1320,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1320
1320
|
addressLine3?: string | null | undefined;
|
1321
1321
|
postcodeOrZip?: string | null | undefined;
|
1322
1322
|
}>]>>>;
|
1323
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1323
|
+
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<{
|
1324
1324
|
filename: z.ZodString;
|
1325
1325
|
originalFilename: z.ZodString;
|
1326
1326
|
type: z.ZodString;
|
@@ -1478,7 +1478,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1478
1478
|
option: string;
|
1479
1479
|
filename: string;
|
1480
1480
|
originalFilename: string;
|
1481
|
-
}[] | undefined>;
|
1481
|
+
}[] | [string, string] | undefined>;
|
1482
1482
|
eventId: string;
|
1483
1483
|
annotation?: Record<string, string | number | boolean | {
|
1484
1484
|
type: string;
|
@@ -1517,7 +1517,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1517
1517
|
option: string;
|
1518
1518
|
filename: string;
|
1519
1519
|
originalFilename: string;
|
1520
|
-
}[] | undefined> | undefined;
|
1520
|
+
}[] | [string, string] | undefined> | undefined;
|
1521
1521
|
originalActionId?: string | undefined;
|
1522
1522
|
keepAssignment?: boolean | undefined;
|
1523
1523
|
}, {
|
@@ -1561,7 +1561,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1561
1561
|
option: string;
|
1562
1562
|
filename: string;
|
1563
1563
|
originalFilename: string;
|
1564
|
-
}[] | undefined> | undefined;
|
1564
|
+
}[] | [string, string] | undefined> | undefined;
|
1565
1565
|
annotation?: Record<string, string | number | boolean | {
|
1566
1566
|
type: string;
|
1567
1567
|
filename: string;
|
@@ -1599,7 +1599,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1599
1599
|
option: string;
|
1600
1600
|
filename: string;
|
1601
1601
|
originalFilename: string;
|
1602
|
-
}[] | undefined> | undefined;
|
1602
|
+
}[] | [string, string] | undefined> | undefined;
|
1603
1603
|
originalActionId?: string | undefined;
|
1604
1604
|
keepAssignment?: boolean | undefined;
|
1605
1605
|
}>;
|
@@ -1607,7 +1607,7 @@ export type NotifyActionInput = z.infer<typeof NotifyActionInput>;
|
|
1607
1607
|
export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
1608
1608
|
eventId: z.ZodString;
|
1609
1609
|
transactionId: z.ZodString;
|
1610
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1610
|
+
declaration: z.ZodDefault<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<{
|
1611
1611
|
filename: z.ZodString;
|
1612
1612
|
originalFilename: z.ZodString;
|
1613
1613
|
type: z.ZodString;
|
@@ -1721,7 +1721,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1721
1721
|
addressLine3?: string | null | undefined;
|
1722
1722
|
postcodeOrZip?: string | null | undefined;
|
1723
1723
|
}>]>>>;
|
1724
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1724
|
+
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<{
|
1725
1725
|
filename: z.ZodString;
|
1726
1726
|
originalFilename: z.ZodString;
|
1727
1727
|
type: z.ZodString;
|
@@ -1879,7 +1879,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1879
1879
|
option: string;
|
1880
1880
|
filename: string;
|
1881
1881
|
originalFilename: string;
|
1882
|
-
}[] | undefined>;
|
1882
|
+
}[] | [string, string] | undefined>;
|
1883
1883
|
eventId: string;
|
1884
1884
|
annotation?: Record<string, string | number | boolean | {
|
1885
1885
|
type: string;
|
@@ -1918,7 +1918,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1918
1918
|
option: string;
|
1919
1919
|
filename: string;
|
1920
1920
|
originalFilename: string;
|
1921
|
-
}[] | undefined> | undefined;
|
1921
|
+
}[] | [string, string] | undefined> | undefined;
|
1922
1922
|
originalActionId?: string | undefined;
|
1923
1923
|
keepAssignment?: boolean | undefined;
|
1924
1924
|
}, {
|
@@ -1962,7 +1962,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1962
1962
|
option: string;
|
1963
1963
|
filename: string;
|
1964
1964
|
originalFilename: string;
|
1965
|
-
}[] | undefined> | undefined;
|
1965
|
+
}[] | [string, string] | undefined> | undefined;
|
1966
1966
|
annotation?: Record<string, string | number | boolean | {
|
1967
1967
|
type: string;
|
1968
1968
|
filename: string;
|
@@ -2000,14 +2000,14 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2000
2000
|
option: string;
|
2001
2001
|
filename: string;
|
2002
2002
|
originalFilename: string;
|
2003
|
-
}[] | undefined> | undefined;
|
2003
|
+
}[] | [string, string] | undefined> | undefined;
|
2004
2004
|
originalActionId?: string | undefined;
|
2005
2005
|
keepAssignment?: boolean | undefined;
|
2006
2006
|
}>;
|
2007
2007
|
export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
2008
2008
|
eventId: z.ZodString;
|
2009
2009
|
transactionId: z.ZodString;
|
2010
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2010
|
+
declaration: z.ZodDefault<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<{
|
2011
2011
|
filename: z.ZodString;
|
2012
2012
|
originalFilename: z.ZodString;
|
2013
2013
|
type: z.ZodString;
|
@@ -2121,7 +2121,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2121
2121
|
addressLine3?: string | null | undefined;
|
2122
2122
|
postcodeOrZip?: string | null | undefined;
|
2123
2123
|
}>]>>>;
|
2124
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2124
|
+
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<{
|
2125
2125
|
filename: z.ZodString;
|
2126
2126
|
originalFilename: z.ZodString;
|
2127
2127
|
type: z.ZodString;
|
@@ -2279,7 +2279,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2279
2279
|
option: string;
|
2280
2280
|
filename: string;
|
2281
2281
|
originalFilename: string;
|
2282
|
-
}[] | undefined>;
|
2282
|
+
}[] | [string, string] | undefined>;
|
2283
2283
|
eventId: string;
|
2284
2284
|
annotation?: Record<string, string | number | boolean | {
|
2285
2285
|
type: string;
|
@@ -2318,7 +2318,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2318
2318
|
option: string;
|
2319
2319
|
filename: string;
|
2320
2320
|
originalFilename: string;
|
2321
|
-
}[] | undefined> | undefined;
|
2321
|
+
}[] | [string, string] | undefined> | undefined;
|
2322
2322
|
originalActionId?: string | undefined;
|
2323
2323
|
keepAssignment?: boolean | undefined;
|
2324
2324
|
}, {
|
@@ -2362,7 +2362,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2362
2362
|
option: string;
|
2363
2363
|
filename: string;
|
2364
2364
|
originalFilename: string;
|
2365
|
-
}[] | undefined> | undefined;
|
2365
|
+
}[] | [string, string] | undefined> | undefined;
|
2366
2366
|
annotation?: Record<string, string | number | boolean | {
|
2367
2367
|
type: string;
|
2368
2368
|
filename: string;
|
@@ -2400,7 +2400,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2400
2400
|
option: string;
|
2401
2401
|
filename: string;
|
2402
2402
|
originalFilename: string;
|
2403
|
-
}[] | undefined> | undefined;
|
2403
|
+
}[] | [string, string] | undefined> | undefined;
|
2404
2404
|
originalActionId?: string | undefined;
|
2405
2405
|
keepAssignment?: boolean | undefined;
|
2406
2406
|
}>;
|
@@ -2408,7 +2408,7 @@ export type DeclareActionInput = z.infer<typeof DeclareActionInput>;
|
|
2408
2408
|
export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
2409
2409
|
eventId: z.ZodString;
|
2410
2410
|
transactionId: z.ZodString;
|
2411
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2411
|
+
declaration: z.ZodDefault<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<{
|
2412
2412
|
filename: z.ZodString;
|
2413
2413
|
originalFilename: z.ZodString;
|
2414
2414
|
type: z.ZodString;
|
@@ -2522,7 +2522,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2522
2522
|
addressLine3?: string | null | undefined;
|
2523
2523
|
postcodeOrZip?: string | null | undefined;
|
2524
2524
|
}>]>>>;
|
2525
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2525
|
+
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<{
|
2526
2526
|
filename: z.ZodString;
|
2527
2527
|
originalFilename: z.ZodString;
|
2528
2528
|
type: z.ZodString;
|
@@ -2680,7 +2680,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2680
2680
|
option: string;
|
2681
2681
|
filename: string;
|
2682
2682
|
originalFilename: string;
|
2683
|
-
}[] | undefined>;
|
2683
|
+
}[] | [string, string] | undefined>;
|
2684
2684
|
eventId: string;
|
2685
2685
|
annotation?: Record<string, string | number | boolean | {
|
2686
2686
|
type: string;
|
@@ -2719,7 +2719,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2719
2719
|
option: string;
|
2720
2720
|
filename: string;
|
2721
2721
|
originalFilename: string;
|
2722
|
-
}[] | undefined> | undefined;
|
2722
|
+
}[] | [string, string] | undefined> | undefined;
|
2723
2723
|
originalActionId?: string | undefined;
|
2724
2724
|
keepAssignment?: boolean | undefined;
|
2725
2725
|
}, {
|
@@ -2763,7 +2763,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2763
2763
|
option: string;
|
2764
2764
|
filename: string;
|
2765
2765
|
originalFilename: string;
|
2766
|
-
}[] | undefined> | undefined;
|
2766
|
+
}[] | [string, string] | undefined> | undefined;
|
2767
2767
|
annotation?: Record<string, string | number | boolean | {
|
2768
2768
|
type: string;
|
2769
2769
|
filename: string;
|
@@ -2801,7 +2801,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2801
2801
|
option: string;
|
2802
2802
|
filename: string;
|
2803
2803
|
originalFilename: string;
|
2804
|
-
}[] | undefined> | undefined;
|
2804
|
+
}[] | [string, string] | undefined> | undefined;
|
2805
2805
|
originalActionId?: string | undefined;
|
2806
2806
|
keepAssignment?: boolean | undefined;
|
2807
2807
|
}>;
|
@@ -2809,7 +2809,7 @@ export type RejectDeclarationActionInput = z.infer<typeof RejectDeclarationActio
|
|
2809
2809
|
export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
2810
2810
|
eventId: z.ZodString;
|
2811
2811
|
transactionId: z.ZodString;
|
2812
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2812
|
+
declaration: z.ZodDefault<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<{
|
2813
2813
|
filename: z.ZodString;
|
2814
2814
|
originalFilename: z.ZodString;
|
2815
2815
|
type: z.ZodString;
|
@@ -2923,7 +2923,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2923
2923
|
addressLine3?: string | null | undefined;
|
2924
2924
|
postcodeOrZip?: string | null | undefined;
|
2925
2925
|
}>]>>>;
|
2926
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2926
|
+
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<{
|
2927
2927
|
filename: z.ZodString;
|
2928
2928
|
originalFilename: z.ZodString;
|
2929
2929
|
type: z.ZodString;
|
@@ -3081,7 +3081,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3081
3081
|
option: string;
|
3082
3082
|
filename: string;
|
3083
3083
|
originalFilename: string;
|
3084
|
-
}[] | undefined>;
|
3084
|
+
}[] | [string, string] | undefined>;
|
3085
3085
|
eventId: string;
|
3086
3086
|
annotation?: Record<string, string | number | boolean | {
|
3087
3087
|
type: string;
|
@@ -3120,7 +3120,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3120
3120
|
option: string;
|
3121
3121
|
filename: string;
|
3122
3122
|
originalFilename: string;
|
3123
|
-
}[] | undefined> | undefined;
|
3123
|
+
}[] | [string, string] | undefined> | undefined;
|
3124
3124
|
originalActionId?: string | undefined;
|
3125
3125
|
keepAssignment?: boolean | undefined;
|
3126
3126
|
}, {
|
@@ -3164,7 +3164,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3164
3164
|
option: string;
|
3165
3165
|
filename: string;
|
3166
3166
|
originalFilename: string;
|
3167
|
-
}[] | undefined> | undefined;
|
3167
|
+
}[] | [string, string] | undefined> | undefined;
|
3168
3168
|
annotation?: Record<string, string | number | boolean | {
|
3169
3169
|
type: string;
|
3170
3170
|
filename: string;
|
@@ -3202,7 +3202,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3202
3202
|
option: string;
|
3203
3203
|
filename: string;
|
3204
3204
|
originalFilename: string;
|
3205
|
-
}[] | undefined> | undefined;
|
3205
|
+
}[] | [string, string] | undefined> | undefined;
|
3206
3206
|
originalActionId?: string | undefined;
|
3207
3207
|
keepAssignment?: boolean | undefined;
|
3208
3208
|
}>;
|
@@ -3210,7 +3210,7 @@ export type MarkedAsDuplicateActionInput = z.infer<typeof MarkedAsDuplicateActio
|
|
3210
3210
|
export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
3211
3211
|
eventId: z.ZodString;
|
3212
3212
|
transactionId: z.ZodString;
|
3213
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3213
|
+
declaration: z.ZodDefault<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<{
|
3214
3214
|
filename: z.ZodString;
|
3215
3215
|
originalFilename: z.ZodString;
|
3216
3216
|
type: z.ZodString;
|
@@ -3324,7 +3324,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3324
3324
|
addressLine3?: string | null | undefined;
|
3325
3325
|
postcodeOrZip?: string | null | undefined;
|
3326
3326
|
}>]>>>;
|
3327
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3327
|
+
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<{
|
3328
3328
|
filename: z.ZodString;
|
3329
3329
|
originalFilename: z.ZodString;
|
3330
3330
|
type: z.ZodString;
|
@@ -3482,7 +3482,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3482
3482
|
option: string;
|
3483
3483
|
filename: string;
|
3484
3484
|
originalFilename: string;
|
3485
|
-
}[] | undefined>;
|
3485
|
+
}[] | [string, string] | undefined>;
|
3486
3486
|
eventId: string;
|
3487
3487
|
annotation?: Record<string, string | number | boolean | {
|
3488
3488
|
type: string;
|
@@ -3521,7 +3521,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3521
3521
|
option: string;
|
3522
3522
|
filename: string;
|
3523
3523
|
originalFilename: string;
|
3524
|
-
}[] | undefined> | undefined;
|
3524
|
+
}[] | [string, string] | undefined> | undefined;
|
3525
3525
|
originalActionId?: string | undefined;
|
3526
3526
|
keepAssignment?: boolean | undefined;
|
3527
3527
|
}, {
|
@@ -3565,7 +3565,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3565
3565
|
option: string;
|
3566
3566
|
filename: string;
|
3567
3567
|
originalFilename: string;
|
3568
|
-
}[] | undefined> | undefined;
|
3568
|
+
}[] | [string, string] | undefined> | undefined;
|
3569
3569
|
annotation?: Record<string, string | number | boolean | {
|
3570
3570
|
type: string;
|
3571
3571
|
filename: string;
|
@@ -3603,7 +3603,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3603
3603
|
option: string;
|
3604
3604
|
filename: string;
|
3605
3605
|
originalFilename: string;
|
3606
|
-
}[] | undefined> | undefined;
|
3606
|
+
}[] | [string, string] | undefined> | undefined;
|
3607
3607
|
originalActionId?: string | undefined;
|
3608
3608
|
keepAssignment?: boolean | undefined;
|
3609
3609
|
}>;
|
@@ -3611,7 +3611,7 @@ export type ArchiveActionInput = z.infer<typeof ArchiveActionInput>;
|
|
3611
3611
|
export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
3612
3612
|
eventId: z.ZodString;
|
3613
3613
|
transactionId: z.ZodString;
|
3614
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3614
|
+
declaration: z.ZodDefault<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<{
|
3615
3615
|
filename: z.ZodString;
|
3616
3616
|
originalFilename: z.ZodString;
|
3617
3617
|
type: z.ZodString;
|
@@ -3725,7 +3725,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3725
3725
|
addressLine3?: string | null | undefined;
|
3726
3726
|
postcodeOrZip?: string | null | undefined;
|
3727
3727
|
}>]>>>;
|
3728
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3728
|
+
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<{
|
3729
3729
|
filename: z.ZodString;
|
3730
3730
|
originalFilename: z.ZodString;
|
3731
3731
|
type: z.ZodString;
|
@@ -3884,7 +3884,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3884
3884
|
option: string;
|
3885
3885
|
filename: string;
|
3886
3886
|
originalFilename: string;
|
3887
|
-
}[] | undefined>;
|
3887
|
+
}[] | [string, string] | undefined>;
|
3888
3888
|
assignedTo: string;
|
3889
3889
|
eventId: string;
|
3890
3890
|
annotation?: Record<string, string | number | boolean | {
|
@@ -3924,7 +3924,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3924
3924
|
option: string;
|
3925
3925
|
filename: string;
|
3926
3926
|
originalFilename: string;
|
3927
|
-
}[] | undefined> | undefined;
|
3927
|
+
}[] | [string, string] | undefined> | undefined;
|
3928
3928
|
originalActionId?: string | undefined;
|
3929
3929
|
keepAssignment?: boolean | undefined;
|
3930
3930
|
}, {
|
@@ -3969,7 +3969,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3969
3969
|
option: string;
|
3970
3970
|
filename: string;
|
3971
3971
|
originalFilename: string;
|
3972
|
-
}[] | undefined> | undefined;
|
3972
|
+
}[] | [string, string] | undefined> | undefined;
|
3973
3973
|
annotation?: Record<string, string | number | boolean | {
|
3974
3974
|
type: string;
|
3975
3975
|
filename: string;
|
@@ -4007,7 +4007,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4007
4007
|
option: string;
|
4008
4008
|
filename: string;
|
4009
4009
|
originalFilename: string;
|
4010
|
-
}[] | undefined> | undefined;
|
4010
|
+
}[] | [string, string] | undefined> | undefined;
|
4011
4011
|
originalActionId?: string | undefined;
|
4012
4012
|
keepAssignment?: boolean | undefined;
|
4013
4013
|
}>;
|
@@ -4015,7 +4015,7 @@ export type AssignActionInput = z.infer<typeof AssignActionInput>;
|
|
4015
4015
|
export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
4016
4016
|
eventId: z.ZodString;
|
4017
4017
|
transactionId: z.ZodString;
|
4018
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4018
|
+
declaration: z.ZodDefault<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<{
|
4019
4019
|
filename: z.ZodString;
|
4020
4020
|
originalFilename: z.ZodString;
|
4021
4021
|
type: z.ZodString;
|
@@ -4129,7 +4129,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4129
4129
|
addressLine3?: string | null | undefined;
|
4130
4130
|
postcodeOrZip?: string | null | undefined;
|
4131
4131
|
}>]>>>;
|
4132
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4132
|
+
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<{
|
4133
4133
|
filename: z.ZodString;
|
4134
4134
|
originalFilename: z.ZodString;
|
4135
4135
|
type: z.ZodString;
|
@@ -4288,7 +4288,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4288
4288
|
option: string;
|
4289
4289
|
filename: string;
|
4290
4290
|
originalFilename: string;
|
4291
|
-
}[] | undefined>;
|
4291
|
+
}[] | [string, string] | undefined>;
|
4292
4292
|
assignedTo: null;
|
4293
4293
|
eventId: string;
|
4294
4294
|
annotation?: Record<string, string | number | boolean | {
|
@@ -4328,7 +4328,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4328
4328
|
option: string;
|
4329
4329
|
filename: string;
|
4330
4330
|
originalFilename: string;
|
4331
|
-
}[] | undefined> | undefined;
|
4331
|
+
}[] | [string, string] | undefined> | undefined;
|
4332
4332
|
originalActionId?: string | undefined;
|
4333
4333
|
keepAssignment?: boolean | undefined;
|
4334
4334
|
}, {
|
@@ -4372,7 +4372,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4372
4372
|
option: string;
|
4373
4373
|
filename: string;
|
4374
4374
|
originalFilename: string;
|
4375
|
-
}[] | undefined> | undefined;
|
4375
|
+
}[] | [string, string] | undefined> | undefined;
|
4376
4376
|
annotation?: Record<string, string | number | boolean | {
|
4377
4377
|
type: string;
|
4378
4378
|
filename: string;
|
@@ -4410,7 +4410,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4410
4410
|
option: string;
|
4411
4411
|
filename: string;
|
4412
4412
|
originalFilename: string;
|
4413
|
-
}[] | undefined> | undefined;
|
4413
|
+
}[] | [string, string] | undefined> | undefined;
|
4414
4414
|
originalActionId?: string | undefined;
|
4415
4415
|
assignedTo?: null | undefined;
|
4416
4416
|
keepAssignment?: boolean | undefined;
|
@@ -4419,7 +4419,7 @@ export type UnassignActionInput = z.infer<typeof UnassignActionInput>;
|
|
4419
4419
|
export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
4420
4420
|
eventId: z.ZodString;
|
4421
4421
|
transactionId: z.ZodString;
|
4422
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4422
|
+
declaration: z.ZodDefault<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<{
|
4423
4423
|
filename: z.ZodString;
|
4424
4424
|
originalFilename: z.ZodString;
|
4425
4425
|
type: z.ZodString;
|
@@ -4533,7 +4533,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4533
4533
|
addressLine3?: string | null | undefined;
|
4534
4534
|
postcodeOrZip?: string | null | undefined;
|
4535
4535
|
}>]>>>;
|
4536
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4536
|
+
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<{
|
4537
4537
|
filename: z.ZodString;
|
4538
4538
|
originalFilename: z.ZodString;
|
4539
4539
|
type: z.ZodString;
|
@@ -4691,7 +4691,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4691
4691
|
option: string;
|
4692
4692
|
filename: string;
|
4693
4693
|
originalFilename: string;
|
4694
|
-
}[] | undefined>;
|
4694
|
+
}[] | [string, string] | undefined>;
|
4695
4695
|
eventId: string;
|
4696
4696
|
annotation?: Record<string, string | number | boolean | {
|
4697
4697
|
type: string;
|
@@ -4730,7 +4730,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4730
4730
|
option: string;
|
4731
4731
|
filename: string;
|
4732
4732
|
originalFilename: string;
|
4733
|
-
}[] | undefined> | undefined;
|
4733
|
+
}[] | [string, string] | undefined> | undefined;
|
4734
4734
|
originalActionId?: string | undefined;
|
4735
4735
|
keepAssignment?: boolean | undefined;
|
4736
4736
|
}, {
|
@@ -4774,7 +4774,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4774
4774
|
option: string;
|
4775
4775
|
filename: string;
|
4776
4776
|
originalFilename: string;
|
4777
|
-
}[] | undefined> | undefined;
|
4777
|
+
}[] | [string, string] | undefined> | undefined;
|
4778
4778
|
annotation?: Record<string, string | number | boolean | {
|
4779
4779
|
type: string;
|
4780
4780
|
filename: string;
|
@@ -4812,7 +4812,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4812
4812
|
option: string;
|
4813
4813
|
filename: string;
|
4814
4814
|
originalFilename: string;
|
4815
|
-
}[] | undefined> | undefined;
|
4815
|
+
}[] | [string, string] | undefined> | undefined;
|
4816
4816
|
originalActionId?: string | undefined;
|
4817
4817
|
keepAssignment?: boolean | undefined;
|
4818
4818
|
}>;
|
@@ -4820,7 +4820,7 @@ export type RequestCorrectionActionInput = z.infer<typeof RequestCorrectionActio
|
|
4820
4820
|
export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
4821
4821
|
eventId: z.ZodString;
|
4822
4822
|
transactionId: z.ZodString;
|
4823
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4823
|
+
declaration: z.ZodDefault<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<{
|
4824
4824
|
filename: z.ZodString;
|
4825
4825
|
originalFilename: z.ZodString;
|
4826
4826
|
type: z.ZodString;
|
@@ -4934,7 +4934,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
4934
4934
|
addressLine3?: string | null | undefined;
|
4935
4935
|
postcodeOrZip?: string | null | undefined;
|
4936
4936
|
}>]>>>;
|
4937
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4937
|
+
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<{
|
4938
4938
|
filename: z.ZodString;
|
4939
4939
|
originalFilename: z.ZodString;
|
4940
4940
|
type: z.ZodString;
|
@@ -5093,7 +5093,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5093
5093
|
option: string;
|
5094
5094
|
filename: string;
|
5095
5095
|
originalFilename: string;
|
5096
|
-
}[] | undefined>;
|
5096
|
+
}[] | [string, string] | undefined>;
|
5097
5097
|
requestId: string;
|
5098
5098
|
eventId: string;
|
5099
5099
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5133,7 +5133,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5133
5133
|
option: string;
|
5134
5134
|
filename: string;
|
5135
5135
|
originalFilename: string;
|
5136
|
-
}[] | undefined> | undefined;
|
5136
|
+
}[] | [string, string] | undefined> | undefined;
|
5137
5137
|
originalActionId?: string | undefined;
|
5138
5138
|
keepAssignment?: boolean | undefined;
|
5139
5139
|
}, {
|
@@ -5178,7 +5178,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5178
5178
|
option: string;
|
5179
5179
|
filename: string;
|
5180
5180
|
originalFilename: string;
|
5181
|
-
}[] | undefined> | undefined;
|
5181
|
+
}[] | [string, string] | undefined> | undefined;
|
5182
5182
|
annotation?: Record<string, string | number | boolean | {
|
5183
5183
|
type: string;
|
5184
5184
|
filename: string;
|
@@ -5216,7 +5216,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5216
5216
|
option: string;
|
5217
5217
|
filename: string;
|
5218
5218
|
originalFilename: string;
|
5219
|
-
}[] | undefined> | undefined;
|
5219
|
+
}[] | [string, string] | undefined> | undefined;
|
5220
5220
|
originalActionId?: string | undefined;
|
5221
5221
|
keepAssignment?: boolean | undefined;
|
5222
5222
|
}>;
|
@@ -5224,7 +5224,7 @@ export type RejectCorrectionActionInput = z.infer<typeof RejectCorrectionActionI
|
|
5224
5224
|
export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
5225
5225
|
eventId: z.ZodString;
|
5226
5226
|
transactionId: z.ZodString;
|
5227
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5227
|
+
declaration: z.ZodDefault<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<{
|
5228
5228
|
filename: z.ZodString;
|
5229
5229
|
originalFilename: z.ZodString;
|
5230
5230
|
type: z.ZodString;
|
@@ -5338,7 +5338,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5338
5338
|
addressLine3?: string | null | undefined;
|
5339
5339
|
postcodeOrZip?: string | null | undefined;
|
5340
5340
|
}>]>>>;
|
5341
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5341
|
+
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<{
|
5342
5342
|
filename: z.ZodString;
|
5343
5343
|
originalFilename: z.ZodString;
|
5344
5344
|
type: z.ZodString;
|
@@ -5497,7 +5497,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5497
5497
|
option: string;
|
5498
5498
|
filename: string;
|
5499
5499
|
originalFilename: string;
|
5500
|
-
}[] | undefined>;
|
5500
|
+
}[] | [string, string] | undefined>;
|
5501
5501
|
requestId: string;
|
5502
5502
|
eventId: string;
|
5503
5503
|
annotation?: Record<string, string | number | boolean | {
|
@@ -5537,7 +5537,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5537
5537
|
option: string;
|
5538
5538
|
filename: string;
|
5539
5539
|
originalFilename: string;
|
5540
|
-
}[] | undefined> | undefined;
|
5540
|
+
}[] | [string, string] | undefined> | undefined;
|
5541
5541
|
originalActionId?: string | undefined;
|
5542
5542
|
keepAssignment?: boolean | undefined;
|
5543
5543
|
}, {
|
@@ -5582,7 +5582,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5582
5582
|
option: string;
|
5583
5583
|
filename: string;
|
5584
5584
|
originalFilename: string;
|
5585
|
-
}[] | undefined> | undefined;
|
5585
|
+
}[] | [string, string] | undefined> | undefined;
|
5586
5586
|
annotation?: Record<string, string | number | boolean | {
|
5587
5587
|
type: string;
|
5588
5588
|
filename: string;
|
@@ -5620,7 +5620,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5620
5620
|
option: string;
|
5621
5621
|
filename: string;
|
5622
5622
|
originalFilename: string;
|
5623
|
-
}[] | undefined> | undefined;
|
5623
|
+
}[] | [string, string] | undefined> | undefined;
|
5624
5624
|
originalActionId?: string | undefined;
|
5625
5625
|
keepAssignment?: boolean | undefined;
|
5626
5626
|
}>;
|
@@ -5628,7 +5628,7 @@ export type ApproveCorrectionActionInput = z.infer<typeof ApproveCorrectionActio
|
|
5628
5628
|
export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
5629
5629
|
eventId: z.ZodString;
|
5630
5630
|
transactionId: z.ZodString;
|
5631
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5631
|
+
declaration: z.ZodDefault<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<{
|
5632
5632
|
filename: z.ZodString;
|
5633
5633
|
originalFilename: z.ZodString;
|
5634
5634
|
type: z.ZodString;
|
@@ -5742,7 +5742,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5742
5742
|
addressLine3?: string | null | undefined;
|
5743
5743
|
postcodeOrZip?: string | null | undefined;
|
5744
5744
|
}>]>>>;
|
5745
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5745
|
+
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<{
|
5746
5746
|
filename: z.ZodString;
|
5747
5747
|
originalFilename: z.ZodString;
|
5748
5748
|
type: z.ZodString;
|
@@ -5900,7 +5900,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5900
5900
|
option: string;
|
5901
5901
|
filename: string;
|
5902
5902
|
originalFilename: string;
|
5903
|
-
}[] | undefined>;
|
5903
|
+
}[] | [string, string] | undefined>;
|
5904
5904
|
eventId: string;
|
5905
5905
|
annotation?: Record<string, string | number | boolean | {
|
5906
5906
|
type: string;
|
@@ -5939,7 +5939,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5939
5939
|
option: string;
|
5940
5940
|
filename: string;
|
5941
5941
|
originalFilename: string;
|
5942
|
-
}[] | undefined> | undefined;
|
5942
|
+
}[] | [string, string] | undefined> | undefined;
|
5943
5943
|
originalActionId?: string | undefined;
|
5944
5944
|
keepAssignment?: boolean | undefined;
|
5945
5945
|
}, {
|
@@ -5983,7 +5983,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5983
5983
|
option: string;
|
5984
5984
|
filename: string;
|
5985
5985
|
originalFilename: string;
|
5986
|
-
}[] | undefined> | undefined;
|
5986
|
+
}[] | [string, string] | undefined> | undefined;
|
5987
5987
|
annotation?: Record<string, string | number | boolean | {
|
5988
5988
|
type: string;
|
5989
5989
|
filename: string;
|
@@ -6021,7 +6021,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6021
6021
|
option: string;
|
6022
6022
|
filename: string;
|
6023
6023
|
originalFilename: string;
|
6024
|
-
}[] | undefined> | undefined;
|
6024
|
+
}[] | [string, string] | undefined> | undefined;
|
6025
6025
|
originalActionId?: string | undefined;
|
6026
6026
|
keepAssignment?: boolean | undefined;
|
6027
6027
|
}>;
|
@@ -6045,7 +6045,7 @@ export type DeleteActionInput = z.infer<typeof DeleteActionInput>;
|
|
6045
6045
|
export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
6046
6046
|
eventId: z.ZodString;
|
6047
6047
|
transactionId: z.ZodString;
|
6048
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6048
|
+
declaration: z.ZodDefault<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<{
|
6049
6049
|
filename: z.ZodString;
|
6050
6050
|
originalFilename: z.ZodString;
|
6051
6051
|
type: z.ZodString;
|
@@ -6159,7 +6159,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6159
6159
|
addressLine3?: string | null | undefined;
|
6160
6160
|
postcodeOrZip?: string | null | undefined;
|
6161
6161
|
}>]>>>;
|
6162
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6162
|
+
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<{
|
6163
6163
|
filename: z.ZodString;
|
6164
6164
|
originalFilename: z.ZodString;
|
6165
6165
|
type: z.ZodString;
|
@@ -6318,7 +6318,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6318
6318
|
option: string;
|
6319
6319
|
filename: string;
|
6320
6320
|
originalFilename: string;
|
6321
|
-
}[] | undefined>;
|
6321
|
+
}[] | [string, string] | undefined>;
|
6322
6322
|
createdAtLocation: string;
|
6323
6323
|
eventId: string;
|
6324
6324
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6358,7 +6358,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6358
6358
|
option: string;
|
6359
6359
|
filename: string;
|
6360
6360
|
originalFilename: string;
|
6361
|
-
}[] | undefined> | undefined;
|
6361
|
+
}[] | [string, string] | undefined> | undefined;
|
6362
6362
|
originalActionId?: string | undefined;
|
6363
6363
|
keepAssignment?: boolean | undefined;
|
6364
6364
|
}, {
|
@@ -6403,7 +6403,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6403
6403
|
option: string;
|
6404
6404
|
filename: string;
|
6405
6405
|
originalFilename: string;
|
6406
|
-
}[] | undefined> | undefined;
|
6406
|
+
}[] | [string, string] | undefined> | undefined;
|
6407
6407
|
annotation?: Record<string, string | number | boolean | {
|
6408
6408
|
type: string;
|
6409
6409
|
filename: string;
|
@@ -6441,13 +6441,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6441
6441
|
option: string;
|
6442
6442
|
filename: string;
|
6443
6443
|
originalFilename: string;
|
6444
|
-
}[] | undefined> | undefined;
|
6444
|
+
}[] | [string, string] | undefined> | undefined;
|
6445
6445
|
originalActionId?: string | undefined;
|
6446
6446
|
keepAssignment?: boolean | undefined;
|
6447
6447
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6448
6448
|
eventId: z.ZodString;
|
6449
6449
|
transactionId: z.ZodString;
|
6450
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6450
|
+
declaration: z.ZodDefault<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<{
|
6451
6451
|
filename: z.ZodString;
|
6452
6452
|
originalFilename: z.ZodString;
|
6453
6453
|
type: z.ZodString;
|
@@ -6561,7 +6561,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6561
6561
|
addressLine3?: string | null | undefined;
|
6562
6562
|
postcodeOrZip?: string | null | undefined;
|
6563
6563
|
}>]>>>;
|
6564
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6564
|
+
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<{
|
6565
6565
|
filename: z.ZodString;
|
6566
6566
|
originalFilename: z.ZodString;
|
6567
6567
|
type: z.ZodString;
|
@@ -6720,7 +6720,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6720
6720
|
option: string;
|
6721
6721
|
filename: string;
|
6722
6722
|
originalFilename: string;
|
6723
|
-
}[] | undefined>;
|
6723
|
+
}[] | [string, string] | undefined>;
|
6724
6724
|
eventId: string;
|
6725
6725
|
duplicates: string[];
|
6726
6726
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6760,7 +6760,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6760
6760
|
option: string;
|
6761
6761
|
filename: string;
|
6762
6762
|
originalFilename: string;
|
6763
|
-
}[] | undefined> | undefined;
|
6763
|
+
}[] | [string, string] | undefined> | undefined;
|
6764
6764
|
originalActionId?: string | undefined;
|
6765
6765
|
keepAssignment?: boolean | undefined;
|
6766
6766
|
}, {
|
@@ -6805,7 +6805,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6805
6805
|
option: string;
|
6806
6806
|
filename: string;
|
6807
6807
|
originalFilename: string;
|
6808
|
-
}[] | undefined> | undefined;
|
6808
|
+
}[] | [string, string] | undefined> | undefined;
|
6809
6809
|
annotation?: Record<string, string | number | boolean | {
|
6810
6810
|
type: string;
|
6811
6811
|
filename: string;
|
@@ -6843,13 +6843,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6843
6843
|
option: string;
|
6844
6844
|
filename: string;
|
6845
6845
|
originalFilename: string;
|
6846
|
-
}[] | undefined> | undefined;
|
6846
|
+
}[] | [string, string] | undefined> | undefined;
|
6847
6847
|
originalActionId?: string | undefined;
|
6848
6848
|
keepAssignment?: boolean | undefined;
|
6849
6849
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6850
6850
|
eventId: z.ZodString;
|
6851
6851
|
transactionId: z.ZodString;
|
6852
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6852
|
+
declaration: z.ZodDefault<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<{
|
6853
6853
|
filename: z.ZodString;
|
6854
6854
|
originalFilename: z.ZodString;
|
6855
6855
|
type: z.ZodString;
|
@@ -6963,7 +6963,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6963
6963
|
addressLine3?: string | null | undefined;
|
6964
6964
|
postcodeOrZip?: string | null | undefined;
|
6965
6965
|
}>]>>>;
|
6966
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6966
|
+
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<{
|
6967
6967
|
filename: z.ZodString;
|
6968
6968
|
originalFilename: z.ZodString;
|
6969
6969
|
type: z.ZodString;
|
@@ -7122,7 +7122,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7122
7122
|
option: string;
|
7123
7123
|
filename: string;
|
7124
7124
|
originalFilename: string;
|
7125
|
-
}[] | undefined>;
|
7125
|
+
}[] | [string, string] | undefined>;
|
7126
7126
|
eventId: string;
|
7127
7127
|
annotation?: Record<string, string | number | boolean | {
|
7128
7128
|
type: string;
|
@@ -7161,7 +7161,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7161
7161
|
option: string;
|
7162
7162
|
filename: string;
|
7163
7163
|
originalFilename: string;
|
7164
|
-
}[] | undefined> | undefined;
|
7164
|
+
}[] | [string, string] | undefined> | undefined;
|
7165
7165
|
originalActionId?: string | undefined;
|
7166
7166
|
registrationNumber?: string | undefined;
|
7167
7167
|
keepAssignment?: boolean | undefined;
|
@@ -7206,7 +7206,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7206
7206
|
option: string;
|
7207
7207
|
filename: string;
|
7208
7208
|
originalFilename: string;
|
7209
|
-
}[] | undefined> | undefined;
|
7209
|
+
}[] | [string, string] | undefined> | undefined;
|
7210
7210
|
annotation?: Record<string, string | number | boolean | {
|
7211
7211
|
type: string;
|
7212
7212
|
filename: string;
|
@@ -7244,14 +7244,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7244
7244
|
option: string;
|
7245
7245
|
filename: string;
|
7246
7246
|
originalFilename: string;
|
7247
|
-
}[] | undefined> | undefined;
|
7247
|
+
}[] | [string, string] | undefined> | undefined;
|
7248
7248
|
originalActionId?: string | undefined;
|
7249
7249
|
registrationNumber?: string | undefined;
|
7250
7250
|
keepAssignment?: boolean | undefined;
|
7251
7251
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7252
7252
|
eventId: z.ZodString;
|
7253
7253
|
transactionId: z.ZodString;
|
7254
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7254
|
+
declaration: z.ZodDefault<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<{
|
7255
7255
|
filename: z.ZodString;
|
7256
7256
|
originalFilename: z.ZodString;
|
7257
7257
|
type: z.ZodString;
|
@@ -7365,7 +7365,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7365
7365
|
addressLine3?: string | null | undefined;
|
7366
7366
|
postcodeOrZip?: string | null | undefined;
|
7367
7367
|
}>]>>>;
|
7368
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7368
|
+
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<{
|
7369
7369
|
filename: z.ZodString;
|
7370
7370
|
originalFilename: z.ZodString;
|
7371
7371
|
type: z.ZodString;
|
@@ -7523,7 +7523,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7523
7523
|
option: string;
|
7524
7524
|
filename: string;
|
7525
7525
|
originalFilename: string;
|
7526
|
-
}[] | undefined>;
|
7526
|
+
}[] | [string, string] | undefined>;
|
7527
7527
|
eventId: string;
|
7528
7528
|
annotation?: Record<string, string | number | boolean | {
|
7529
7529
|
type: string;
|
@@ -7562,7 +7562,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7562
7562
|
option: string;
|
7563
7563
|
filename: string;
|
7564
7564
|
originalFilename: string;
|
7565
|
-
}[] | undefined> | undefined;
|
7565
|
+
}[] | [string, string] | undefined> | undefined;
|
7566
7566
|
originalActionId?: string | undefined;
|
7567
7567
|
keepAssignment?: boolean | undefined;
|
7568
7568
|
}, {
|
@@ -7606,7 +7606,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7606
7606
|
option: string;
|
7607
7607
|
filename: string;
|
7608
7608
|
originalFilename: string;
|
7609
|
-
}[] | undefined> | undefined;
|
7609
|
+
}[] | [string, string] | undefined> | undefined;
|
7610
7610
|
annotation?: Record<string, string | number | boolean | {
|
7611
7611
|
type: string;
|
7612
7612
|
filename: string;
|
@@ -7644,13 +7644,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7644
7644
|
option: string;
|
7645
7645
|
filename: string;
|
7646
7646
|
originalFilename: string;
|
7647
|
-
}[] | undefined> | undefined;
|
7647
|
+
}[] | [string, string] | undefined> | undefined;
|
7648
7648
|
originalActionId?: string | undefined;
|
7649
7649
|
keepAssignment?: boolean | undefined;
|
7650
7650
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7651
7651
|
eventId: z.ZodString;
|
7652
7652
|
transactionId: z.ZodString;
|
7653
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7653
|
+
declaration: z.ZodDefault<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<{
|
7654
7654
|
filename: z.ZodString;
|
7655
7655
|
originalFilename: z.ZodString;
|
7656
7656
|
type: z.ZodString;
|
@@ -7764,7 +7764,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7764
7764
|
addressLine3?: string | null | undefined;
|
7765
7765
|
postcodeOrZip?: string | null | undefined;
|
7766
7766
|
}>]>>>;
|
7767
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
7767
|
+
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<{
|
7768
7768
|
filename: z.ZodString;
|
7769
7769
|
originalFilename: z.ZodString;
|
7770
7770
|
type: z.ZodString;
|
@@ -7922,7 +7922,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7922
7922
|
option: string;
|
7923
7923
|
filename: string;
|
7924
7924
|
originalFilename: string;
|
7925
|
-
}[] | undefined>;
|
7925
|
+
}[] | [string, string] | undefined>;
|
7926
7926
|
eventId: string;
|
7927
7927
|
annotation?: Record<string, string | number | boolean | {
|
7928
7928
|
type: string;
|
@@ -7961,7 +7961,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7961
7961
|
option: string;
|
7962
7962
|
filename: string;
|
7963
7963
|
originalFilename: string;
|
7964
|
-
}[] | undefined> | undefined;
|
7964
|
+
}[] | [string, string] | undefined> | undefined;
|
7965
7965
|
originalActionId?: string | undefined;
|
7966
7966
|
keepAssignment?: boolean | undefined;
|
7967
7967
|
}, {
|
@@ -8005,7 +8005,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8005
8005
|
option: string;
|
8006
8006
|
filename: string;
|
8007
8007
|
originalFilename: string;
|
8008
|
-
}[] | undefined> | undefined;
|
8008
|
+
}[] | [string, string] | undefined> | undefined;
|
8009
8009
|
annotation?: Record<string, string | number | boolean | {
|
8010
8010
|
type: string;
|
8011
8011
|
filename: string;
|
@@ -8043,13 +8043,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8043
8043
|
option: string;
|
8044
8044
|
filename: string;
|
8045
8045
|
originalFilename: string;
|
8046
|
-
}[] | undefined> | undefined;
|
8046
|
+
}[] | [string, string] | undefined> | undefined;
|
8047
8047
|
originalActionId?: string | undefined;
|
8048
8048
|
keepAssignment?: boolean | undefined;
|
8049
8049
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8050
8050
|
eventId: z.ZodString;
|
8051
8051
|
transactionId: z.ZodString;
|
8052
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8052
|
+
declaration: z.ZodDefault<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<{
|
8053
8053
|
filename: z.ZodString;
|
8054
8054
|
originalFilename: z.ZodString;
|
8055
8055
|
type: z.ZodString;
|
@@ -8163,7 +8163,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8163
8163
|
addressLine3?: string | null | undefined;
|
8164
8164
|
postcodeOrZip?: string | null | undefined;
|
8165
8165
|
}>]>>>;
|
8166
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8166
|
+
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<{
|
8167
8167
|
filename: z.ZodString;
|
8168
8168
|
originalFilename: z.ZodString;
|
8169
8169
|
type: z.ZodString;
|
@@ -8321,7 +8321,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8321
8321
|
option: string;
|
8322
8322
|
filename: string;
|
8323
8323
|
originalFilename: string;
|
8324
|
-
}[] | undefined>;
|
8324
|
+
}[] | [string, string] | undefined>;
|
8325
8325
|
eventId: string;
|
8326
8326
|
annotation?: Record<string, string | number | boolean | {
|
8327
8327
|
type: string;
|
@@ -8360,7 +8360,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8360
8360
|
option: string;
|
8361
8361
|
filename: string;
|
8362
8362
|
originalFilename: string;
|
8363
|
-
}[] | undefined> | undefined;
|
8363
|
+
}[] | [string, string] | undefined> | undefined;
|
8364
8364
|
originalActionId?: string | undefined;
|
8365
8365
|
keepAssignment?: boolean | undefined;
|
8366
8366
|
}, {
|
@@ -8404,7 +8404,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8404
8404
|
option: string;
|
8405
8405
|
filename: string;
|
8406
8406
|
originalFilename: string;
|
8407
|
-
}[] | undefined> | undefined;
|
8407
|
+
}[] | [string, string] | undefined> | undefined;
|
8408
8408
|
annotation?: Record<string, string | number | boolean | {
|
8409
8409
|
type: string;
|
8410
8410
|
filename: string;
|
@@ -8442,13 +8442,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8442
8442
|
option: string;
|
8443
8443
|
filename: string;
|
8444
8444
|
originalFilename: string;
|
8445
|
-
}[] | undefined> | undefined;
|
8445
|
+
}[] | [string, string] | undefined> | undefined;
|
8446
8446
|
originalActionId?: string | undefined;
|
8447
8447
|
keepAssignment?: boolean | undefined;
|
8448
8448
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8449
8449
|
eventId: z.ZodString;
|
8450
8450
|
transactionId: z.ZodString;
|
8451
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8451
|
+
declaration: z.ZodDefault<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<{
|
8452
8452
|
filename: z.ZodString;
|
8453
8453
|
originalFilename: z.ZodString;
|
8454
8454
|
type: z.ZodString;
|
@@ -8562,7 +8562,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8562
8562
|
addressLine3?: string | null | undefined;
|
8563
8563
|
postcodeOrZip?: string | null | undefined;
|
8564
8564
|
}>]>>>;
|
8565
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8565
|
+
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<{
|
8566
8566
|
filename: z.ZodString;
|
8567
8567
|
originalFilename: z.ZodString;
|
8568
8568
|
type: z.ZodString;
|
@@ -8720,7 +8720,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8720
8720
|
option: string;
|
8721
8721
|
filename: string;
|
8722
8722
|
originalFilename: string;
|
8723
|
-
}[] | undefined>;
|
8723
|
+
}[] | [string, string] | undefined>;
|
8724
8724
|
eventId: string;
|
8725
8725
|
annotation?: Record<string, string | number | boolean | {
|
8726
8726
|
type: string;
|
@@ -8759,7 +8759,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8759
8759
|
option: string;
|
8760
8760
|
filename: string;
|
8761
8761
|
originalFilename: string;
|
8762
|
-
}[] | undefined> | undefined;
|
8762
|
+
}[] | [string, string] | undefined> | undefined;
|
8763
8763
|
originalActionId?: string | undefined;
|
8764
8764
|
keepAssignment?: boolean | undefined;
|
8765
8765
|
}, {
|
@@ -8803,7 +8803,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8803
8803
|
option: string;
|
8804
8804
|
filename: string;
|
8805
8805
|
originalFilename: string;
|
8806
|
-
}[] | undefined> | undefined;
|
8806
|
+
}[] | [string, string] | undefined> | undefined;
|
8807
8807
|
annotation?: Record<string, string | number | boolean | {
|
8808
8808
|
type: string;
|
8809
8809
|
filename: string;
|
@@ -8841,13 +8841,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8841
8841
|
option: string;
|
8842
8842
|
filename: string;
|
8843
8843
|
originalFilename: string;
|
8844
|
-
}[] | undefined> | undefined;
|
8844
|
+
}[] | [string, string] | undefined> | undefined;
|
8845
8845
|
originalActionId?: string | undefined;
|
8846
8846
|
keepAssignment?: boolean | undefined;
|
8847
8847
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8848
8848
|
eventId: z.ZodString;
|
8849
8849
|
transactionId: z.ZodString;
|
8850
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8850
|
+
declaration: z.ZodDefault<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<{
|
8851
8851
|
filename: z.ZodString;
|
8852
8852
|
originalFilename: z.ZodString;
|
8853
8853
|
type: z.ZodString;
|
@@ -8961,7 +8961,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8961
8961
|
addressLine3?: string | null | undefined;
|
8962
8962
|
postcodeOrZip?: string | null | undefined;
|
8963
8963
|
}>]>>>;
|
8964
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
8964
|
+
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<{
|
8965
8965
|
filename: z.ZodString;
|
8966
8966
|
originalFilename: z.ZodString;
|
8967
8967
|
type: z.ZodString;
|
@@ -9119,7 +9119,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9119
9119
|
option: string;
|
9120
9120
|
filename: string;
|
9121
9121
|
originalFilename: string;
|
9122
|
-
}[] | undefined>;
|
9122
|
+
}[] | [string, string] | undefined>;
|
9123
9123
|
eventId: string;
|
9124
9124
|
annotation?: Record<string, string | number | boolean | {
|
9125
9125
|
type: string;
|
@@ -9158,7 +9158,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9158
9158
|
option: string;
|
9159
9159
|
filename: string;
|
9160
9160
|
originalFilename: string;
|
9161
|
-
}[] | undefined> | undefined;
|
9161
|
+
}[] | [string, string] | undefined> | undefined;
|
9162
9162
|
originalActionId?: string | undefined;
|
9163
9163
|
keepAssignment?: boolean | undefined;
|
9164
9164
|
}, {
|
@@ -9202,7 +9202,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9202
9202
|
option: string;
|
9203
9203
|
filename: string;
|
9204
9204
|
originalFilename: string;
|
9205
|
-
}[] | undefined> | undefined;
|
9205
|
+
}[] | [string, string] | undefined> | undefined;
|
9206
9206
|
annotation?: Record<string, string | number | boolean | {
|
9207
9207
|
type: string;
|
9208
9208
|
filename: string;
|
@@ -9240,13 +9240,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9240
9240
|
option: string;
|
9241
9241
|
filename: string;
|
9242
9242
|
originalFilename: string;
|
9243
|
-
}[] | undefined> | undefined;
|
9243
|
+
}[] | [string, string] | undefined> | undefined;
|
9244
9244
|
originalActionId?: string | undefined;
|
9245
9245
|
keepAssignment?: boolean | undefined;
|
9246
9246
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9247
9247
|
eventId: z.ZodString;
|
9248
9248
|
transactionId: z.ZodString;
|
9249
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
9249
|
+
declaration: z.ZodDefault<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<{
|
9250
9250
|
filename: z.ZodString;
|
9251
9251
|
originalFilename: z.ZodString;
|
9252
9252
|
type: z.ZodString;
|
@@ -9360,7 +9360,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9360
9360
|
addressLine3?: string | null | undefined;
|
9361
9361
|
postcodeOrZip?: string | null | undefined;
|
9362
9362
|
}>]>>>;
|
9363
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
9363
|
+
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<{
|
9364
9364
|
filename: z.ZodString;
|
9365
9365
|
originalFilename: z.ZodString;
|
9366
9366
|
type: z.ZodString;
|
@@ -9519,7 +9519,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9519
9519
|
option: string;
|
9520
9520
|
filename: string;
|
9521
9521
|
originalFilename: string;
|
9522
|
-
}[] | undefined>;
|
9522
|
+
}[] | [string, string] | undefined>;
|
9523
9523
|
assignedTo: string;
|
9524
9524
|
eventId: string;
|
9525
9525
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9559,7 +9559,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9559
9559
|
option: string;
|
9560
9560
|
filename: string;
|
9561
9561
|
originalFilename: string;
|
9562
|
-
}[] | undefined> | undefined;
|
9562
|
+
}[] | [string, string] | undefined> | undefined;
|
9563
9563
|
originalActionId?: string | undefined;
|
9564
9564
|
keepAssignment?: boolean | undefined;
|
9565
9565
|
}, {
|
@@ -9604,7 +9604,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9604
9604
|
option: string;
|
9605
9605
|
filename: string;
|
9606
9606
|
originalFilename: string;
|
9607
|
-
}[] | undefined> | undefined;
|
9607
|
+
}[] | [string, string] | undefined> | undefined;
|
9608
9608
|
annotation?: Record<string, string | number | boolean | {
|
9609
9609
|
type: string;
|
9610
9610
|
filename: string;
|
@@ -9642,13 +9642,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9642
9642
|
option: string;
|
9643
9643
|
filename: string;
|
9644
9644
|
originalFilename: string;
|
9645
|
-
}[] | undefined> | undefined;
|
9645
|
+
}[] | [string, string] | undefined> | undefined;
|
9646
9646
|
originalActionId?: string | undefined;
|
9647
9647
|
keepAssignment?: boolean | undefined;
|
9648
9648
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9649
9649
|
eventId: z.ZodString;
|
9650
9650
|
transactionId: z.ZodString;
|
9651
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
9651
|
+
declaration: z.ZodDefault<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<{
|
9652
9652
|
filename: z.ZodString;
|
9653
9653
|
originalFilename: z.ZodString;
|
9654
9654
|
type: z.ZodString;
|
@@ -9762,7 +9762,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9762
9762
|
addressLine3?: string | null | undefined;
|
9763
9763
|
postcodeOrZip?: string | null | undefined;
|
9764
9764
|
}>]>>>;
|
9765
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
9765
|
+
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<{
|
9766
9766
|
filename: z.ZodString;
|
9767
9767
|
originalFilename: z.ZodString;
|
9768
9768
|
type: z.ZodString;
|
@@ -9921,7 +9921,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9921
9921
|
option: string;
|
9922
9922
|
filename: string;
|
9923
9923
|
originalFilename: string;
|
9924
|
-
}[] | undefined>;
|
9924
|
+
}[] | [string, string] | undefined>;
|
9925
9925
|
assignedTo: null;
|
9926
9926
|
eventId: string;
|
9927
9927
|
annotation?: Record<string, string | number | boolean | {
|
@@ -9961,7 +9961,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9961
9961
|
option: string;
|
9962
9962
|
filename: string;
|
9963
9963
|
originalFilename: string;
|
9964
|
-
}[] | undefined> | undefined;
|
9964
|
+
}[] | [string, string] | undefined> | undefined;
|
9965
9965
|
originalActionId?: string | undefined;
|
9966
9966
|
keepAssignment?: boolean | undefined;
|
9967
9967
|
}, {
|
@@ -10005,7 +10005,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10005
10005
|
option: string;
|
10006
10006
|
filename: string;
|
10007
10007
|
originalFilename: string;
|
10008
|
-
}[] | undefined> | undefined;
|
10008
|
+
}[] | [string, string] | undefined> | undefined;
|
10009
10009
|
annotation?: Record<string, string | number | boolean | {
|
10010
10010
|
type: string;
|
10011
10011
|
filename: string;
|
@@ -10043,14 +10043,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10043
10043
|
option: string;
|
10044
10044
|
filename: string;
|
10045
10045
|
originalFilename: string;
|
10046
|
-
}[] | undefined> | undefined;
|
10046
|
+
}[] | [string, string] | undefined> | undefined;
|
10047
10047
|
originalActionId?: string | undefined;
|
10048
10048
|
assignedTo?: null | undefined;
|
10049
10049
|
keepAssignment?: boolean | undefined;
|
10050
10050
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10051
10051
|
eventId: z.ZodString;
|
10052
10052
|
transactionId: z.ZodString;
|
10053
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10053
|
+
declaration: z.ZodDefault<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<{
|
10054
10054
|
filename: z.ZodString;
|
10055
10055
|
originalFilename: z.ZodString;
|
10056
10056
|
type: z.ZodString;
|
@@ -10164,7 +10164,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10164
10164
|
addressLine3?: string | null | undefined;
|
10165
10165
|
postcodeOrZip?: string | null | undefined;
|
10166
10166
|
}>]>>>;
|
10167
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10167
|
+
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<{
|
10168
10168
|
filename: z.ZodString;
|
10169
10169
|
originalFilename: z.ZodString;
|
10170
10170
|
type: z.ZodString;
|
@@ -10322,7 +10322,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10322
10322
|
option: string;
|
10323
10323
|
filename: string;
|
10324
10324
|
originalFilename: string;
|
10325
|
-
}[] | undefined>;
|
10325
|
+
}[] | [string, string] | undefined>;
|
10326
10326
|
eventId: string;
|
10327
10327
|
annotation?: Record<string, string | number | boolean | {
|
10328
10328
|
type: string;
|
@@ -10361,7 +10361,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10361
10361
|
option: string;
|
10362
10362
|
filename: string;
|
10363
10363
|
originalFilename: string;
|
10364
|
-
}[] | undefined> | undefined;
|
10364
|
+
}[] | [string, string] | undefined> | undefined;
|
10365
10365
|
originalActionId?: string | undefined;
|
10366
10366
|
keepAssignment?: boolean | undefined;
|
10367
10367
|
}, {
|
@@ -10405,7 +10405,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10405
10405
|
option: string;
|
10406
10406
|
filename: string;
|
10407
10407
|
originalFilename: string;
|
10408
|
-
}[] | undefined> | undefined;
|
10408
|
+
}[] | [string, string] | undefined> | undefined;
|
10409
10409
|
annotation?: Record<string, string | number | boolean | {
|
10410
10410
|
type: string;
|
10411
10411
|
filename: string;
|
@@ -10443,13 +10443,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10443
10443
|
option: string;
|
10444
10444
|
filename: string;
|
10445
10445
|
originalFilename: string;
|
10446
|
-
}[] | undefined> | undefined;
|
10446
|
+
}[] | [string, string] | undefined> | undefined;
|
10447
10447
|
originalActionId?: string | undefined;
|
10448
10448
|
keepAssignment?: boolean | undefined;
|
10449
10449
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10450
10450
|
eventId: z.ZodString;
|
10451
10451
|
transactionId: z.ZodString;
|
10452
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10452
|
+
declaration: z.ZodDefault<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<{
|
10453
10453
|
filename: z.ZodString;
|
10454
10454
|
originalFilename: z.ZodString;
|
10455
10455
|
type: z.ZodString;
|
@@ -10563,7 +10563,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10563
10563
|
addressLine3?: string | null | undefined;
|
10564
10564
|
postcodeOrZip?: string | null | undefined;
|
10565
10565
|
}>]>>>;
|
10566
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10566
|
+
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<{
|
10567
10567
|
filename: z.ZodString;
|
10568
10568
|
originalFilename: z.ZodString;
|
10569
10569
|
type: z.ZodString;
|
@@ -10721,7 +10721,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10721
10721
|
option: string;
|
10722
10722
|
filename: string;
|
10723
10723
|
originalFilename: string;
|
10724
|
-
}[] | undefined>;
|
10724
|
+
}[] | [string, string] | undefined>;
|
10725
10725
|
eventId: string;
|
10726
10726
|
annotation?: Record<string, string | number | boolean | {
|
10727
10727
|
type: string;
|
@@ -10760,7 +10760,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10760
10760
|
option: string;
|
10761
10761
|
filename: string;
|
10762
10762
|
originalFilename: string;
|
10763
|
-
}[] | undefined> | undefined;
|
10763
|
+
}[] | [string, string] | undefined> | undefined;
|
10764
10764
|
originalActionId?: string | undefined;
|
10765
10765
|
keepAssignment?: boolean | undefined;
|
10766
10766
|
}, {
|
@@ -10804,7 +10804,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10804
10804
|
option: string;
|
10805
10805
|
filename: string;
|
10806
10806
|
originalFilename: string;
|
10807
|
-
}[] | undefined> | undefined;
|
10807
|
+
}[] | [string, string] | undefined> | undefined;
|
10808
10808
|
annotation?: Record<string, string | number | boolean | {
|
10809
10809
|
type: string;
|
10810
10810
|
filename: string;
|
@@ -10842,13 +10842,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10842
10842
|
option: string;
|
10843
10843
|
filename: string;
|
10844
10844
|
originalFilename: string;
|
10845
|
-
}[] | undefined> | undefined;
|
10845
|
+
}[] | [string, string] | undefined> | undefined;
|
10846
10846
|
originalActionId?: string | undefined;
|
10847
10847
|
keepAssignment?: boolean | undefined;
|
10848
10848
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10849
10849
|
eventId: z.ZodString;
|
10850
10850
|
transactionId: z.ZodString;
|
10851
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10851
|
+
declaration: z.ZodDefault<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<{
|
10852
10852
|
filename: z.ZodString;
|
10853
10853
|
originalFilename: z.ZodString;
|
10854
10854
|
type: z.ZodString;
|
@@ -10962,7 +10962,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10962
10962
|
addressLine3?: string | null | undefined;
|
10963
10963
|
postcodeOrZip?: string | null | undefined;
|
10964
10964
|
}>]>>>;
|
10965
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
10965
|
+
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<{
|
10966
10966
|
filename: z.ZodString;
|
10967
10967
|
originalFilename: z.ZodString;
|
10968
10968
|
type: z.ZodString;
|
@@ -11121,7 +11121,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11121
11121
|
option: string;
|
11122
11122
|
filename: string;
|
11123
11123
|
originalFilename: string;
|
11124
|
-
}[] | undefined>;
|
11124
|
+
}[] | [string, string] | undefined>;
|
11125
11125
|
requestId: string;
|
11126
11126
|
eventId: string;
|
11127
11127
|
annotation?: Record<string, string | number | boolean | {
|
@@ -11161,7 +11161,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11161
11161
|
option: string;
|
11162
11162
|
filename: string;
|
11163
11163
|
originalFilename: string;
|
11164
|
-
}[] | undefined> | undefined;
|
11164
|
+
}[] | [string, string] | undefined> | undefined;
|
11165
11165
|
originalActionId?: string | undefined;
|
11166
11166
|
keepAssignment?: boolean | undefined;
|
11167
11167
|
}, {
|
@@ -11206,7 +11206,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11206
11206
|
option: string;
|
11207
11207
|
filename: string;
|
11208
11208
|
originalFilename: string;
|
11209
|
-
}[] | undefined> | undefined;
|
11209
|
+
}[] | [string, string] | undefined> | undefined;
|
11210
11210
|
annotation?: Record<string, string | number | boolean | {
|
11211
11211
|
type: string;
|
11212
11212
|
filename: string;
|
@@ -11244,13 +11244,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11244
11244
|
option: string;
|
11245
11245
|
filename: string;
|
11246
11246
|
originalFilename: string;
|
11247
|
-
}[] | undefined> | undefined;
|
11247
|
+
}[] | [string, string] | undefined> | undefined;
|
11248
11248
|
originalActionId?: string | undefined;
|
11249
11249
|
keepAssignment?: boolean | undefined;
|
11250
11250
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11251
11251
|
eventId: z.ZodString;
|
11252
11252
|
transactionId: z.ZodString;
|
11253
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11253
|
+
declaration: z.ZodDefault<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<{
|
11254
11254
|
filename: z.ZodString;
|
11255
11255
|
originalFilename: z.ZodString;
|
11256
11256
|
type: z.ZodString;
|
@@ -11364,7 +11364,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11364
11364
|
addressLine3?: string | null | undefined;
|
11365
11365
|
postcodeOrZip?: string | null | undefined;
|
11366
11366
|
}>]>>>;
|
11367
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11367
|
+
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<{
|
11368
11368
|
filename: z.ZodString;
|
11369
11369
|
originalFilename: z.ZodString;
|
11370
11370
|
type: z.ZodString;
|
@@ -11523,7 +11523,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11523
11523
|
option: string;
|
11524
11524
|
filename: string;
|
11525
11525
|
originalFilename: string;
|
11526
|
-
}[] | undefined>;
|
11526
|
+
}[] | [string, string] | undefined>;
|
11527
11527
|
requestId: string;
|
11528
11528
|
eventId: string;
|
11529
11529
|
annotation?: Record<string, string | number | boolean | {
|
@@ -11563,7 +11563,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11563
11563
|
option: string;
|
11564
11564
|
filename: string;
|
11565
11565
|
originalFilename: string;
|
11566
|
-
}[] | undefined> | undefined;
|
11566
|
+
}[] | [string, string] | undefined> | undefined;
|
11567
11567
|
originalActionId?: string | undefined;
|
11568
11568
|
keepAssignment?: boolean | undefined;
|
11569
11569
|
}, {
|
@@ -11608,7 +11608,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11608
11608
|
option: string;
|
11609
11609
|
filename: string;
|
11610
11610
|
originalFilename: string;
|
11611
|
-
}[] | undefined> | undefined;
|
11611
|
+
}[] | [string, string] | undefined> | undefined;
|
11612
11612
|
annotation?: Record<string, string | number | boolean | {
|
11613
11613
|
type: string;
|
11614
11614
|
filename: string;
|
@@ -11646,13 +11646,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11646
11646
|
option: string;
|
11647
11647
|
filename: string;
|
11648
11648
|
originalFilename: string;
|
11649
|
-
}[] | undefined> | undefined;
|
11649
|
+
}[] | [string, string] | undefined> | undefined;
|
11650
11650
|
originalActionId?: string | undefined;
|
11651
11651
|
keepAssignment?: boolean | undefined;
|
11652
11652
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11653
11653
|
eventId: z.ZodString;
|
11654
11654
|
transactionId: z.ZodString;
|
11655
|
-
declaration: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11655
|
+
declaration: z.ZodDefault<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<{
|
11656
11656
|
filename: z.ZodString;
|
11657
11657
|
originalFilename: z.ZodString;
|
11658
11658
|
type: z.ZodString;
|
@@ -11766,7 +11766,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11766
11766
|
addressLine3?: string | null | undefined;
|
11767
11767
|
postcodeOrZip?: string | null | undefined;
|
11768
11768
|
}>]>>>;
|
11769
|
-
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
11769
|
+
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<{
|
11770
11770
|
filename: z.ZodString;
|
11771
11771
|
originalFilename: z.ZodString;
|
11772
11772
|
type: z.ZodString;
|
@@ -11924,7 +11924,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11924
11924
|
option: string;
|
11925
11925
|
filename: string;
|
11926
11926
|
originalFilename: string;
|
11927
|
-
}[] | undefined>;
|
11927
|
+
}[] | [string, string] | undefined>;
|
11928
11928
|
eventId: string;
|
11929
11929
|
annotation?: Record<string, string | number | boolean | {
|
11930
11930
|
type: string;
|
@@ -11963,7 +11963,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11963
11963
|
option: string;
|
11964
11964
|
filename: string;
|
11965
11965
|
originalFilename: string;
|
11966
|
-
}[] | undefined> | undefined;
|
11966
|
+
}[] | [string, string] | undefined> | undefined;
|
11967
11967
|
originalActionId?: string | undefined;
|
11968
11968
|
keepAssignment?: boolean | undefined;
|
11969
11969
|
}, {
|
@@ -12007,7 +12007,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12007
12007
|
option: string;
|
12008
12008
|
filename: string;
|
12009
12009
|
originalFilename: string;
|
12010
|
-
}[] | undefined> | undefined;
|
12010
|
+
}[] | [string, string] | undefined> | undefined;
|
12011
12011
|
annotation?: Record<string, string | number | boolean | {
|
12012
12012
|
type: string;
|
12013
12013
|
filename: string;
|
@@ -12045,7 +12045,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12045
12045
|
option: string;
|
12046
12046
|
filename: string;
|
12047
12047
|
originalFilename: string;
|
12048
|
-
}[] | undefined> | undefined;
|
12048
|
+
}[] | [string, string] | undefined> | undefined;
|
12049
12049
|
originalActionId?: string | undefined;
|
12050
12050
|
keepAssignment?: boolean | undefined;
|
12051
12051
|
}>]>;
|