@opencrvs/toolkit 1.8.0-rc.fb0e687 → 1.8.0-rc.fb2e700
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 +13 -0
- package/dist/commons/conditionals/validate.d.ts +2 -6
- package/dist/commons/events/ActionDocument.d.ts +6 -0
- package/dist/commons/events/ActionInput.d.ts +90 -0
- package/dist/commons/events/ActionType.d.ts +2 -0
- package/dist/commons/events/Draft.d.ts +3 -0
- package/dist/commons/events/EventDocument.d.ts +5 -0
- package/dist/commons/events/TemplateConfig.d.ts +4 -4
- package/dist/commons/events/test.utils.d.ts +2 -2
- package/dist/commons/events/utils.d.ts +49 -41
- package/dist/commons/events/utils.test.d.ts +2 -0
- package/dist/events/index.js +128 -58
- package/dist/scopes/index.d.ts +70 -1
- package/dist/scopes/index.js +130 -0
- package/package.json +1 -1
@@ -231,6 +231,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
231
231
|
postcodeOrZip?: string | null | undefined;
|
232
232
|
}>]>>>;
|
233
233
|
originalActionId: z.ZodOptional<z.ZodString>;
|
234
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
234
235
|
}, "strip", z.ZodTypeAny, {
|
235
236
|
declaration: Record<string, string | number | boolean | {
|
236
237
|
type: string;
|
@@ -311,6 +312,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
311
312
|
originalFilename: string;
|
312
313
|
}[] | undefined> | undefined;
|
313
314
|
originalActionId?: string | undefined;
|
315
|
+
keepAssignment?: boolean | undefined;
|
314
316
|
}, {
|
315
317
|
eventId: string;
|
316
318
|
transactionId: string;
|
@@ -391,6 +393,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
391
393
|
originalFilename: string;
|
392
394
|
}[] | undefined> | undefined;
|
393
395
|
originalActionId?: string | undefined;
|
396
|
+
keepAssignment?: boolean | undefined;
|
394
397
|
}>;
|
395
398
|
export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
396
399
|
eventId: z.ZodString;
|
@@ -624,6 +627,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
624
627
|
postcodeOrZip?: string | null | undefined;
|
625
628
|
}>]>>>;
|
626
629
|
originalActionId: z.ZodOptional<z.ZodString>;
|
630
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
627
631
|
}, {
|
628
632
|
type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
|
629
633
|
registrationNumber: z.ZodOptional<z.ZodString>;
|
@@ -709,6 +713,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
709
713
|
}[] | undefined> | undefined;
|
710
714
|
originalActionId?: string | undefined;
|
711
715
|
registrationNumber?: string | undefined;
|
716
|
+
keepAssignment?: boolean | undefined;
|
712
717
|
}, {
|
713
718
|
eventId: string;
|
714
719
|
transactionId: string;
|
@@ -791,6 +796,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
791
796
|
}[] | undefined> | undefined;
|
792
797
|
originalActionId?: string | undefined;
|
793
798
|
registrationNumber?: string | undefined;
|
799
|
+
keepAssignment?: boolean | undefined;
|
794
800
|
}>;
|
795
801
|
export type RegisterActionInput = z.infer<typeof RegisterActionInput>;
|
796
802
|
export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -1025,6 +1031,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1025
1031
|
postcodeOrZip?: string | null | undefined;
|
1026
1032
|
}>]>>>;
|
1027
1033
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1034
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
1028
1035
|
}, {
|
1029
1036
|
type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
|
1030
1037
|
duplicates: z.ZodArray<z.ZodString, "many">;
|
@@ -1110,6 +1117,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1110
1117
|
originalFilename: string;
|
1111
1118
|
}[] | undefined> | undefined;
|
1112
1119
|
originalActionId?: string | undefined;
|
1120
|
+
keepAssignment?: boolean | undefined;
|
1113
1121
|
}, {
|
1114
1122
|
eventId: string;
|
1115
1123
|
transactionId: string;
|
@@ -1192,6 +1200,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1192
1200
|
originalFilename: string;
|
1193
1201
|
}[] | undefined> | undefined;
|
1194
1202
|
originalActionId?: string | undefined;
|
1203
|
+
keepAssignment?: boolean | undefined;
|
1195
1204
|
}>;
|
1196
1205
|
export type ValidateActionInput = z.infer<typeof ValidateActionInput>;
|
1197
1206
|
export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -1426,6 +1435,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1426
1435
|
postcodeOrZip?: string | null | undefined;
|
1427
1436
|
}>]>>>;
|
1428
1437
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1438
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
1429
1439
|
}, {
|
1430
1440
|
type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
|
1431
1441
|
}>, "strip", z.ZodTypeAny, {
|
@@ -1509,6 +1519,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1509
1519
|
originalFilename: string;
|
1510
1520
|
}[] | undefined> | undefined;
|
1511
1521
|
originalActionId?: string | undefined;
|
1522
|
+
keepAssignment?: boolean | undefined;
|
1512
1523
|
}, {
|
1513
1524
|
eventId: string;
|
1514
1525
|
transactionId: string;
|
@@ -1590,6 +1601,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1590
1601
|
originalFilename: string;
|
1591
1602
|
}[] | undefined> | undefined;
|
1592
1603
|
originalActionId?: string | undefined;
|
1604
|
+
keepAssignment?: boolean | undefined;
|
1593
1605
|
}>;
|
1594
1606
|
export type NotifyActionInput = z.infer<typeof NotifyActionInput>;
|
1595
1607
|
export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -1824,6 +1836,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1824
1836
|
postcodeOrZip?: string | null | undefined;
|
1825
1837
|
}>]>>>;
|
1826
1838
|
originalActionId: z.ZodOptional<z.ZodString>;
|
1839
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
1827
1840
|
}, {
|
1828
1841
|
type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
|
1829
1842
|
}>, "strip", z.ZodTypeAny, {
|
@@ -1907,6 +1920,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1907
1920
|
originalFilename: string;
|
1908
1921
|
}[] | undefined> | undefined;
|
1909
1922
|
originalActionId?: string | undefined;
|
1923
|
+
keepAssignment?: boolean | undefined;
|
1910
1924
|
}, {
|
1911
1925
|
eventId: string;
|
1912
1926
|
transactionId: string;
|
@@ -1988,6 +2002,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1988
2002
|
originalFilename: string;
|
1989
2003
|
}[] | undefined> | undefined;
|
1990
2004
|
originalActionId?: string | undefined;
|
2005
|
+
keepAssignment?: boolean | undefined;
|
1991
2006
|
}>;
|
1992
2007
|
export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
1993
2008
|
eventId: z.ZodString;
|
@@ -2221,6 +2236,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2221
2236
|
postcodeOrZip?: string | null | undefined;
|
2222
2237
|
}>]>>>;
|
2223
2238
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2239
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
2224
2240
|
}, {
|
2225
2241
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
2226
2242
|
}>, "strip", z.ZodTypeAny, {
|
@@ -2304,6 +2320,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2304
2320
|
originalFilename: string;
|
2305
2321
|
}[] | undefined> | undefined;
|
2306
2322
|
originalActionId?: string | undefined;
|
2323
|
+
keepAssignment?: boolean | undefined;
|
2307
2324
|
}, {
|
2308
2325
|
eventId: string;
|
2309
2326
|
transactionId: string;
|
@@ -2385,6 +2402,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2385
2402
|
originalFilename: string;
|
2386
2403
|
}[] | undefined> | undefined;
|
2387
2404
|
originalActionId?: string | undefined;
|
2405
|
+
keepAssignment?: boolean | undefined;
|
2388
2406
|
}>;
|
2389
2407
|
export type DeclareActionInput = z.infer<typeof DeclareActionInput>;
|
2390
2408
|
export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2619,6 +2637,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2619
2637
|
postcodeOrZip?: string | null | undefined;
|
2620
2638
|
}>]>>>;
|
2621
2639
|
originalActionId: z.ZodOptional<z.ZodString>;
|
2640
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
2622
2641
|
}, {
|
2623
2642
|
type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
|
2624
2643
|
}>, "strip", z.ZodTypeAny, {
|
@@ -2702,6 +2721,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2702
2721
|
originalFilename: string;
|
2703
2722
|
}[] | undefined> | undefined;
|
2704
2723
|
originalActionId?: string | undefined;
|
2724
|
+
keepAssignment?: boolean | undefined;
|
2705
2725
|
}, {
|
2706
2726
|
eventId: string;
|
2707
2727
|
transactionId: string;
|
@@ -2783,6 +2803,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2783
2803
|
originalFilename: string;
|
2784
2804
|
}[] | undefined> | undefined;
|
2785
2805
|
originalActionId?: string | undefined;
|
2806
|
+
keepAssignment?: boolean | undefined;
|
2786
2807
|
}>;
|
2787
2808
|
export type RejectDeclarationActionInput = z.infer<typeof RejectDeclarationActionInput>;
|
2788
2809
|
export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -3017,6 +3038,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3017
3038
|
postcodeOrZip?: string | null | undefined;
|
3018
3039
|
}>]>>>;
|
3019
3040
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3041
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
3020
3042
|
}, {
|
3021
3043
|
type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
|
3022
3044
|
}>, "strip", z.ZodTypeAny, {
|
@@ -3100,6 +3122,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3100
3122
|
originalFilename: string;
|
3101
3123
|
}[] | undefined> | undefined;
|
3102
3124
|
originalActionId?: string | undefined;
|
3125
|
+
keepAssignment?: boolean | undefined;
|
3103
3126
|
}, {
|
3104
3127
|
eventId: string;
|
3105
3128
|
transactionId: string;
|
@@ -3181,6 +3204,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3181
3204
|
originalFilename: string;
|
3182
3205
|
}[] | undefined> | undefined;
|
3183
3206
|
originalActionId?: string | undefined;
|
3207
|
+
keepAssignment?: boolean | undefined;
|
3184
3208
|
}>;
|
3185
3209
|
export type MarkedAsDuplicateActionInput = z.infer<typeof MarkedAsDuplicateActionInput>;
|
3186
3210
|
export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -3415,6 +3439,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3415
3439
|
postcodeOrZip?: string | null | undefined;
|
3416
3440
|
}>]>>>;
|
3417
3441
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3442
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
3418
3443
|
}, {
|
3419
3444
|
type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
|
3420
3445
|
}>, "strip", z.ZodTypeAny, {
|
@@ -3498,6 +3523,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3498
3523
|
originalFilename: string;
|
3499
3524
|
}[] | undefined> | undefined;
|
3500
3525
|
originalActionId?: string | undefined;
|
3526
|
+
keepAssignment?: boolean | undefined;
|
3501
3527
|
}, {
|
3502
3528
|
eventId: string;
|
3503
3529
|
transactionId: string;
|
@@ -3579,6 +3605,7 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3579
3605
|
originalFilename: string;
|
3580
3606
|
}[] | undefined> | undefined;
|
3581
3607
|
originalActionId?: string | undefined;
|
3608
|
+
keepAssignment?: boolean | undefined;
|
3582
3609
|
}>;
|
3583
3610
|
export type ArchiveActionInput = z.infer<typeof ArchiveActionInput>;
|
3584
3611
|
export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -3813,6 +3840,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3813
3840
|
postcodeOrZip?: string | null | undefined;
|
3814
3841
|
}>]>>>;
|
3815
3842
|
originalActionId: z.ZodOptional<z.ZodString>;
|
3843
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
3816
3844
|
}, {
|
3817
3845
|
type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
|
3818
3846
|
assignedTo: z.ZodString;
|
@@ -3898,6 +3926,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3898
3926
|
originalFilename: string;
|
3899
3927
|
}[] | undefined> | undefined;
|
3900
3928
|
originalActionId?: string | undefined;
|
3929
|
+
keepAssignment?: boolean | undefined;
|
3901
3930
|
}, {
|
3902
3931
|
assignedTo: string;
|
3903
3932
|
eventId: string;
|
@@ -3980,6 +4009,7 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3980
4009
|
originalFilename: string;
|
3981
4010
|
}[] | undefined> | undefined;
|
3982
4011
|
originalActionId?: string | undefined;
|
4012
|
+
keepAssignment?: boolean | undefined;
|
3983
4013
|
}>;
|
3984
4014
|
export type AssignActionInput = z.infer<typeof AssignActionInput>;
|
3985
4015
|
export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -4214,6 +4244,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4214
4244
|
postcodeOrZip?: string | null | undefined;
|
4215
4245
|
}>]>>>;
|
4216
4246
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4247
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
4217
4248
|
}, {
|
4218
4249
|
type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
|
4219
4250
|
assignedTo: z.ZodDefault<z.ZodLiteral<null>>;
|
@@ -4299,6 +4330,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4299
4330
|
originalFilename: string;
|
4300
4331
|
}[] | undefined> | undefined;
|
4301
4332
|
originalActionId?: string | undefined;
|
4333
|
+
keepAssignment?: boolean | undefined;
|
4302
4334
|
}, {
|
4303
4335
|
eventId: string;
|
4304
4336
|
transactionId: string;
|
@@ -4381,6 +4413,7 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4381
4413
|
}[] | undefined> | undefined;
|
4382
4414
|
originalActionId?: string | undefined;
|
4383
4415
|
assignedTo?: null | undefined;
|
4416
|
+
keepAssignment?: boolean | undefined;
|
4384
4417
|
}>;
|
4385
4418
|
export type UnassignActionInput = z.infer<typeof UnassignActionInput>;
|
4386
4419
|
export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -4615,6 +4648,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4615
4648
|
postcodeOrZip?: string | null | undefined;
|
4616
4649
|
}>]>>>;
|
4617
4650
|
originalActionId: z.ZodOptional<z.ZodString>;
|
4651
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
4618
4652
|
}, {
|
4619
4653
|
type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
|
4620
4654
|
}>, "strip", z.ZodTypeAny, {
|
@@ -4698,6 +4732,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4698
4732
|
originalFilename: string;
|
4699
4733
|
}[] | undefined> | undefined;
|
4700
4734
|
originalActionId?: string | undefined;
|
4735
|
+
keepAssignment?: boolean | undefined;
|
4701
4736
|
}, {
|
4702
4737
|
eventId: string;
|
4703
4738
|
transactionId: string;
|
@@ -4779,6 +4814,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
4779
4814
|
originalFilename: string;
|
4780
4815
|
}[] | undefined> | undefined;
|
4781
4816
|
originalActionId?: string | undefined;
|
4817
|
+
keepAssignment?: boolean | undefined;
|
4782
4818
|
}>;
|
4783
4819
|
export type RequestCorrectionActionInput = z.infer<typeof RequestCorrectionActionInput>;
|
4784
4820
|
export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -5013,6 +5049,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5013
5049
|
postcodeOrZip?: string | null | undefined;
|
5014
5050
|
}>]>>>;
|
5015
5051
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5052
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5016
5053
|
}, {
|
5017
5054
|
requestId: z.ZodString;
|
5018
5055
|
type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
|
@@ -5098,6 +5135,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5098
5135
|
originalFilename: string;
|
5099
5136
|
}[] | undefined> | undefined;
|
5100
5137
|
originalActionId?: string | undefined;
|
5138
|
+
keepAssignment?: boolean | undefined;
|
5101
5139
|
}, {
|
5102
5140
|
requestId: string;
|
5103
5141
|
eventId: string;
|
@@ -5180,6 +5218,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5180
5218
|
originalFilename: string;
|
5181
5219
|
}[] | undefined> | undefined;
|
5182
5220
|
originalActionId?: string | undefined;
|
5221
|
+
keepAssignment?: boolean | undefined;
|
5183
5222
|
}>;
|
5184
5223
|
export type RejectCorrectionActionInput = z.infer<typeof RejectCorrectionActionInput>;
|
5185
5224
|
export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -5414,6 +5453,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5414
5453
|
postcodeOrZip?: string | null | undefined;
|
5415
5454
|
}>]>>>;
|
5416
5455
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5456
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5417
5457
|
}, {
|
5418
5458
|
requestId: z.ZodString;
|
5419
5459
|
type: z.ZodDefault<z.ZodLiteral<"APPROVE_CORRECTION">>;
|
@@ -5499,6 +5539,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5499
5539
|
originalFilename: string;
|
5500
5540
|
}[] | undefined> | undefined;
|
5501
5541
|
originalActionId?: string | undefined;
|
5542
|
+
keepAssignment?: boolean | undefined;
|
5502
5543
|
}, {
|
5503
5544
|
requestId: string;
|
5504
5545
|
eventId: string;
|
@@ -5581,6 +5622,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5581
5622
|
originalFilename: string;
|
5582
5623
|
}[] | undefined> | undefined;
|
5583
5624
|
originalActionId?: string | undefined;
|
5625
|
+
keepAssignment?: boolean | undefined;
|
5584
5626
|
}>;
|
5585
5627
|
export type ApproveCorrectionActionInput = z.infer<typeof ApproveCorrectionActionInput>;
|
5586
5628
|
export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -5815,6 +5857,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5815
5857
|
postcodeOrZip?: string | null | undefined;
|
5816
5858
|
}>]>>>;
|
5817
5859
|
originalActionId: z.ZodOptional<z.ZodString>;
|
5860
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5818
5861
|
}, {
|
5819
5862
|
type: z.ZodDefault<z.ZodLiteral<"READ">>;
|
5820
5863
|
}>, "strip", z.ZodTypeAny, {
|
@@ -5898,6 +5941,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5898
5941
|
originalFilename: string;
|
5899
5942
|
}[] | undefined> | undefined;
|
5900
5943
|
originalActionId?: string | undefined;
|
5944
|
+
keepAssignment?: boolean | undefined;
|
5901
5945
|
}, {
|
5902
5946
|
eventId: string;
|
5903
5947
|
transactionId: string;
|
@@ -5979,6 +6023,7 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5979
6023
|
originalFilename: string;
|
5980
6024
|
}[] | undefined> | undefined;
|
5981
6025
|
originalActionId?: string | undefined;
|
6026
|
+
keepAssignment?: boolean | undefined;
|
5982
6027
|
}>;
|
5983
6028
|
export type ReadActionInput = z.infer<typeof ReadActionInput>;
|
5984
6029
|
/**
|
@@ -6221,6 +6266,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6221
6266
|
postcodeOrZip?: string | null | undefined;
|
6222
6267
|
}>]>>>;
|
6223
6268
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6269
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
6224
6270
|
}, {
|
6225
6271
|
type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
|
6226
6272
|
createdAtLocation: z.ZodString;
|
@@ -6306,6 +6352,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6306
6352
|
originalFilename: string;
|
6307
6353
|
}[] | undefined> | undefined;
|
6308
6354
|
originalActionId?: string | undefined;
|
6355
|
+
keepAssignment?: boolean | undefined;
|
6309
6356
|
}, {
|
6310
6357
|
createdAtLocation: string;
|
6311
6358
|
eventId: string;
|
@@ -6388,6 +6435,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6388
6435
|
originalFilename: string;
|
6389
6436
|
}[] | undefined> | undefined;
|
6390
6437
|
originalActionId?: string | undefined;
|
6438
|
+
keepAssignment?: boolean | undefined;
|
6391
6439
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6392
6440
|
eventId: z.ZodString;
|
6393
6441
|
transactionId: z.ZodString;
|
@@ -6620,6 +6668,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6620
6668
|
postcodeOrZip?: string | null | undefined;
|
6621
6669
|
}>]>>>;
|
6622
6670
|
originalActionId: z.ZodOptional<z.ZodString>;
|
6671
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
6623
6672
|
}, {
|
6624
6673
|
type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
|
6625
6674
|
duplicates: z.ZodArray<z.ZodString, "many">;
|
@@ -6705,6 +6754,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6705
6754
|
originalFilename: string;
|
6706
6755
|
}[] | undefined> | undefined;
|
6707
6756
|
originalActionId?: string | undefined;
|
6757
|
+
keepAssignment?: boolean | undefined;
|
6708
6758
|
}, {
|
6709
6759
|
eventId: string;
|
6710
6760
|
transactionId: string;
|
@@ -6787,6 +6837,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6787
6837
|
originalFilename: string;
|
6788
6838
|
}[] | undefined> | undefined;
|
6789
6839
|
originalActionId?: string | undefined;
|
6840
|
+
keepAssignment?: boolean | undefined;
|
6790
6841
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6791
6842
|
eventId: z.ZodString;
|
6792
6843
|
transactionId: z.ZodString;
|
@@ -7019,6 +7070,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7019
7070
|
postcodeOrZip?: string | null | undefined;
|
7020
7071
|
}>]>>>;
|
7021
7072
|
originalActionId: z.ZodOptional<z.ZodString>;
|
7073
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7022
7074
|
}, {
|
7023
7075
|
type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
|
7024
7076
|
registrationNumber: z.ZodOptional<z.ZodString>;
|
@@ -7104,6 +7156,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7104
7156
|
}[] | undefined> | undefined;
|
7105
7157
|
originalActionId?: string | undefined;
|
7106
7158
|
registrationNumber?: string | undefined;
|
7159
|
+
keepAssignment?: boolean | undefined;
|
7107
7160
|
}, {
|
7108
7161
|
eventId: string;
|
7109
7162
|
transactionId: string;
|
@@ -7186,6 +7239,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7186
7239
|
}[] | undefined> | undefined;
|
7187
7240
|
originalActionId?: string | undefined;
|
7188
7241
|
registrationNumber?: string | undefined;
|
7242
|
+
keepAssignment?: boolean | undefined;
|
7189
7243
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7190
7244
|
eventId: z.ZodString;
|
7191
7245
|
transactionId: z.ZodString;
|
@@ -7418,6 +7472,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7418
7472
|
postcodeOrZip?: string | null | undefined;
|
7419
7473
|
}>]>>>;
|
7420
7474
|
originalActionId: z.ZodOptional<z.ZodString>;
|
7475
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7421
7476
|
}, {
|
7422
7477
|
type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
|
7423
7478
|
}>, "strip", z.ZodTypeAny, {
|
@@ -7501,6 +7556,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7501
7556
|
originalFilename: string;
|
7502
7557
|
}[] | undefined> | undefined;
|
7503
7558
|
originalActionId?: string | undefined;
|
7559
|
+
keepAssignment?: boolean | undefined;
|
7504
7560
|
}, {
|
7505
7561
|
eventId: string;
|
7506
7562
|
transactionId: string;
|
@@ -7582,6 +7638,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7582
7638
|
originalFilename: string;
|
7583
7639
|
}[] | undefined> | undefined;
|
7584
7640
|
originalActionId?: string | undefined;
|
7641
|
+
keepAssignment?: boolean | undefined;
|
7585
7642
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7586
7643
|
eventId: z.ZodString;
|
7587
7644
|
transactionId: z.ZodString;
|
@@ -7814,6 +7871,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7814
7871
|
postcodeOrZip?: string | null | undefined;
|
7815
7872
|
}>]>>>;
|
7816
7873
|
originalActionId: z.ZodOptional<z.ZodString>;
|
7874
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7817
7875
|
}, {
|
7818
7876
|
type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
|
7819
7877
|
}>, "strip", z.ZodTypeAny, {
|
@@ -7897,6 +7955,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7897
7955
|
originalFilename: string;
|
7898
7956
|
}[] | undefined> | undefined;
|
7899
7957
|
originalActionId?: string | undefined;
|
7958
|
+
keepAssignment?: boolean | undefined;
|
7900
7959
|
}, {
|
7901
7960
|
eventId: string;
|
7902
7961
|
transactionId: string;
|
@@ -7978,6 +8037,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7978
8037
|
originalFilename: string;
|
7979
8038
|
}[] | undefined> | undefined;
|
7980
8039
|
originalActionId?: string | undefined;
|
8040
|
+
keepAssignment?: boolean | undefined;
|
7981
8041
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7982
8042
|
eventId: z.ZodString;
|
7983
8043
|
transactionId: z.ZodString;
|
@@ -8210,6 +8270,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8210
8270
|
postcodeOrZip?: string | null | undefined;
|
8211
8271
|
}>]>>>;
|
8212
8272
|
originalActionId: z.ZodOptional<z.ZodString>;
|
8273
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
8213
8274
|
}, {
|
8214
8275
|
type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
|
8215
8276
|
}>, "strip", z.ZodTypeAny, {
|
@@ -8293,6 +8354,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8293
8354
|
originalFilename: string;
|
8294
8355
|
}[] | undefined> | undefined;
|
8295
8356
|
originalActionId?: string | undefined;
|
8357
|
+
keepAssignment?: boolean | undefined;
|
8296
8358
|
}, {
|
8297
8359
|
eventId: string;
|
8298
8360
|
transactionId: string;
|
@@ -8374,6 +8436,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8374
8436
|
originalFilename: string;
|
8375
8437
|
}[] | undefined> | undefined;
|
8376
8438
|
originalActionId?: string | undefined;
|
8439
|
+
keepAssignment?: boolean | undefined;
|
8377
8440
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8378
8441
|
eventId: z.ZodString;
|
8379
8442
|
transactionId: z.ZodString;
|
@@ -8606,6 +8669,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8606
8669
|
postcodeOrZip?: string | null | undefined;
|
8607
8670
|
}>]>>>;
|
8608
8671
|
originalActionId: z.ZodOptional<z.ZodString>;
|
8672
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
8609
8673
|
}, {
|
8610
8674
|
type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
|
8611
8675
|
}>, "strip", z.ZodTypeAny, {
|
@@ -8689,6 +8753,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8689
8753
|
originalFilename: string;
|
8690
8754
|
}[] | undefined> | undefined;
|
8691
8755
|
originalActionId?: string | undefined;
|
8756
|
+
keepAssignment?: boolean | undefined;
|
8692
8757
|
}, {
|
8693
8758
|
eventId: string;
|
8694
8759
|
transactionId: string;
|
@@ -8770,6 +8835,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8770
8835
|
originalFilename: string;
|
8771
8836
|
}[] | undefined> | undefined;
|
8772
8837
|
originalActionId?: string | undefined;
|
8838
|
+
keepAssignment?: boolean | undefined;
|
8773
8839
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8774
8840
|
eventId: z.ZodString;
|
8775
8841
|
transactionId: z.ZodString;
|
@@ -9002,6 +9068,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9002
9068
|
postcodeOrZip?: string | null | undefined;
|
9003
9069
|
}>]>>>;
|
9004
9070
|
originalActionId: z.ZodOptional<z.ZodString>;
|
9071
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9005
9072
|
}, {
|
9006
9073
|
type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
|
9007
9074
|
}>, "strip", z.ZodTypeAny, {
|
@@ -9085,6 +9152,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9085
9152
|
originalFilename: string;
|
9086
9153
|
}[] | undefined> | undefined;
|
9087
9154
|
originalActionId?: string | undefined;
|
9155
|
+
keepAssignment?: boolean | undefined;
|
9088
9156
|
}, {
|
9089
9157
|
eventId: string;
|
9090
9158
|
transactionId: string;
|
@@ -9166,6 +9234,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9166
9234
|
originalFilename: string;
|
9167
9235
|
}[] | undefined> | undefined;
|
9168
9236
|
originalActionId?: string | undefined;
|
9237
|
+
keepAssignment?: boolean | undefined;
|
9169
9238
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9170
9239
|
eventId: z.ZodString;
|
9171
9240
|
transactionId: z.ZodString;
|
@@ -9398,6 +9467,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9398
9467
|
postcodeOrZip?: string | null | undefined;
|
9399
9468
|
}>]>>>;
|
9400
9469
|
originalActionId: z.ZodOptional<z.ZodString>;
|
9470
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9401
9471
|
}, {
|
9402
9472
|
type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
|
9403
9473
|
assignedTo: z.ZodString;
|
@@ -9483,6 +9553,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9483
9553
|
originalFilename: string;
|
9484
9554
|
}[] | undefined> | undefined;
|
9485
9555
|
originalActionId?: string | undefined;
|
9556
|
+
keepAssignment?: boolean | undefined;
|
9486
9557
|
}, {
|
9487
9558
|
assignedTo: string;
|
9488
9559
|
eventId: string;
|
@@ -9565,6 +9636,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9565
9636
|
originalFilename: string;
|
9566
9637
|
}[] | undefined> | undefined;
|
9567
9638
|
originalActionId?: string | undefined;
|
9639
|
+
keepAssignment?: boolean | undefined;
|
9568
9640
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9569
9641
|
eventId: z.ZodString;
|
9570
9642
|
transactionId: z.ZodString;
|
@@ -9797,6 +9869,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9797
9869
|
postcodeOrZip?: string | null | undefined;
|
9798
9870
|
}>]>>>;
|
9799
9871
|
originalActionId: z.ZodOptional<z.ZodString>;
|
9872
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9800
9873
|
}, {
|
9801
9874
|
type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
|
9802
9875
|
assignedTo: z.ZodDefault<z.ZodLiteral<null>>;
|
@@ -9882,6 +9955,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9882
9955
|
originalFilename: string;
|
9883
9956
|
}[] | undefined> | undefined;
|
9884
9957
|
originalActionId?: string | undefined;
|
9958
|
+
keepAssignment?: boolean | undefined;
|
9885
9959
|
}, {
|
9886
9960
|
eventId: string;
|
9887
9961
|
transactionId: string;
|
@@ -9964,6 +10038,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9964
10038
|
}[] | undefined> | undefined;
|
9965
10039
|
originalActionId?: string | undefined;
|
9966
10040
|
assignedTo?: null | undefined;
|
10041
|
+
keepAssignment?: boolean | undefined;
|
9967
10042
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9968
10043
|
eventId: z.ZodString;
|
9969
10044
|
transactionId: z.ZodString;
|
@@ -10196,6 +10271,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10196
10271
|
postcodeOrZip?: string | null | undefined;
|
10197
10272
|
}>]>>>;
|
10198
10273
|
originalActionId: z.ZodOptional<z.ZodString>;
|
10274
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10199
10275
|
}, {
|
10200
10276
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
10201
10277
|
}>, "strip", z.ZodTypeAny, {
|
@@ -10279,6 +10355,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10279
10355
|
originalFilename: string;
|
10280
10356
|
}[] | undefined> | undefined;
|
10281
10357
|
originalActionId?: string | undefined;
|
10358
|
+
keepAssignment?: boolean | undefined;
|
10282
10359
|
}, {
|
10283
10360
|
eventId: string;
|
10284
10361
|
transactionId: string;
|
@@ -10360,6 +10437,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10360
10437
|
originalFilename: string;
|
10361
10438
|
}[] | undefined> | undefined;
|
10362
10439
|
originalActionId?: string | undefined;
|
10440
|
+
keepAssignment?: boolean | undefined;
|
10363
10441
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10364
10442
|
eventId: z.ZodString;
|
10365
10443
|
transactionId: z.ZodString;
|
@@ -10592,6 +10670,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10592
10670
|
postcodeOrZip?: string | null | undefined;
|
10593
10671
|
}>]>>>;
|
10594
10672
|
originalActionId: z.ZodOptional<z.ZodString>;
|
10673
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10595
10674
|
}, {
|
10596
10675
|
type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
|
10597
10676
|
}>, "strip", z.ZodTypeAny, {
|
@@ -10675,6 +10754,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10675
10754
|
originalFilename: string;
|
10676
10755
|
}[] | undefined> | undefined;
|
10677
10756
|
originalActionId?: string | undefined;
|
10757
|
+
keepAssignment?: boolean | undefined;
|
10678
10758
|
}, {
|
10679
10759
|
eventId: string;
|
10680
10760
|
transactionId: string;
|
@@ -10756,6 +10836,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10756
10836
|
originalFilename: string;
|
10757
10837
|
}[] | undefined> | undefined;
|
10758
10838
|
originalActionId?: string | undefined;
|
10839
|
+
keepAssignment?: boolean | undefined;
|
10759
10840
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10760
10841
|
eventId: z.ZodString;
|
10761
10842
|
transactionId: z.ZodString;
|
@@ -10988,6 +11069,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10988
11069
|
postcodeOrZip?: string | null | undefined;
|
10989
11070
|
}>]>>>;
|
10990
11071
|
originalActionId: z.ZodOptional<z.ZodString>;
|
11072
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10991
11073
|
}, {
|
10992
11074
|
requestId: z.ZodString;
|
10993
11075
|
type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
|
@@ -11073,6 +11155,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11073
11155
|
originalFilename: string;
|
11074
11156
|
}[] | undefined> | undefined;
|
11075
11157
|
originalActionId?: string | undefined;
|
11158
|
+
keepAssignment?: boolean | undefined;
|
11076
11159
|
}, {
|
11077
11160
|
requestId: string;
|
11078
11161
|
eventId: string;
|
@@ -11155,6 +11238,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11155
11238
|
originalFilename: string;
|
11156
11239
|
}[] | undefined> | undefined;
|
11157
11240
|
originalActionId?: string | undefined;
|
11241
|
+
keepAssignment?: boolean | undefined;
|
11158
11242
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11159
11243
|
eventId: z.ZodString;
|
11160
11244
|
transactionId: z.ZodString;
|
@@ -11387,6 +11471,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11387
11471
|
postcodeOrZip?: string | null | undefined;
|
11388
11472
|
}>]>>>;
|
11389
11473
|
originalActionId: z.ZodOptional<z.ZodString>;
|
11474
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11390
11475
|
}, {
|
11391
11476
|
requestId: z.ZodString;
|
11392
11477
|
type: z.ZodDefault<z.ZodLiteral<"APPROVE_CORRECTION">>;
|
@@ -11472,6 +11557,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11472
11557
|
originalFilename: string;
|
11473
11558
|
}[] | undefined> | undefined;
|
11474
11559
|
originalActionId?: string | undefined;
|
11560
|
+
keepAssignment?: boolean | undefined;
|
11475
11561
|
}, {
|
11476
11562
|
requestId: string;
|
11477
11563
|
eventId: string;
|
@@ -11554,6 +11640,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11554
11640
|
originalFilename: string;
|
11555
11641
|
}[] | undefined> | undefined;
|
11556
11642
|
originalActionId?: string | undefined;
|
11643
|
+
keepAssignment?: boolean | undefined;
|
11557
11644
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11558
11645
|
eventId: z.ZodString;
|
11559
11646
|
transactionId: z.ZodString;
|
@@ -11786,6 +11873,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11786
11873
|
postcodeOrZip?: string | null | undefined;
|
11787
11874
|
}>]>>>;
|
11788
11875
|
originalActionId: z.ZodOptional<z.ZodString>;
|
11876
|
+
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11789
11877
|
}, {
|
11790
11878
|
type: z.ZodDefault<z.ZodLiteral<"READ">>;
|
11791
11879
|
}>, "strip", z.ZodTypeAny, {
|
@@ -11869,6 +11957,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11869
11957
|
originalFilename: string;
|
11870
11958
|
}[] | undefined> | undefined;
|
11871
11959
|
originalActionId?: string | undefined;
|
11960
|
+
keepAssignment?: boolean | undefined;
|
11872
11961
|
}, {
|
11873
11962
|
eventId: string;
|
11874
11963
|
transactionId: string;
|
@@ -11950,6 +12039,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11950
12039
|
originalFilename: string;
|
11951
12040
|
}[] | undefined> | undefined;
|
11952
12041
|
originalActionId?: string | undefined;
|
12042
|
+
keepAssignment?: boolean | undefined;
|
11953
12043
|
}>]>;
|
11954
12044
|
export type ActionInput = z.input<typeof ActionInput>;
|
11955
12045
|
export type ActionInputWithType = z.infer<typeof ActionInput>;
|