@opencrvs/toolkit 1.8.1-rc.be16155 → 1.8.1-rc.e32d7b8
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 +404 -24
- package/dist/commons/events/ActionDocument.d.ts +659 -36
- package/dist/commons/events/ActionInput.d.ts +540 -36
- package/dist/commons/events/Draft.d.ts +44 -0
- package/dist/commons/events/EventDocument.d.ts +416 -26
- package/dist/commons/events/test.utils.d.ts +1 -5
- package/dist/commons/events/utils.d.ts +4 -0
- package/dist/events/index.js +12 -9
- package/package.json +1 -1
@@ -272,6 +272,16 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
272
272
|
surname?: string | null | undefined;
|
273
273
|
middlename?: string | null | undefined;
|
274
274
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
275
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
276
|
+
templateId: z.ZodOptional<z.ZodString>;
|
277
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
278
|
+
}, "strip", z.ZodTypeAny, {
|
279
|
+
templateId?: string | undefined;
|
280
|
+
isImmediateCorrection?: boolean | undefined;
|
281
|
+
}, {
|
282
|
+
templateId?: string | undefined;
|
283
|
+
isImmediateCorrection?: boolean | undefined;
|
284
|
+
}>>;
|
275
285
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
276
286
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
277
287
|
}, "strip", z.ZodTypeAny, {
|
@@ -367,6 +377,10 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
367
377
|
start: string;
|
368
378
|
end: string;
|
369
379
|
} | null | undefined> | undefined;
|
380
|
+
actionDetails?: {
|
381
|
+
templateId?: string | undefined;
|
382
|
+
isImmediateCorrection?: boolean | undefined;
|
383
|
+
} | undefined;
|
370
384
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
371
385
|
keepAssignment?: boolean | undefined;
|
372
386
|
}, {
|
@@ -462,6 +476,10 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
462
476
|
start: string;
|
463
477
|
end: string;
|
464
478
|
} | null | undefined> | undefined;
|
479
|
+
actionDetails?: {
|
480
|
+
templateId?: string | undefined;
|
481
|
+
isImmediateCorrection?: boolean | undefined;
|
482
|
+
} | undefined;
|
465
483
|
originalActionId?: string | undefined;
|
466
484
|
keepAssignment?: boolean | undefined;
|
467
485
|
}>;
|
@@ -738,6 +756,16 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
738
756
|
surname?: string | null | undefined;
|
739
757
|
middlename?: string | null | undefined;
|
740
758
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
759
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
760
|
+
templateId: z.ZodOptional<z.ZodString>;
|
761
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
762
|
+
}, "strip", z.ZodTypeAny, {
|
763
|
+
templateId?: string | undefined;
|
764
|
+
isImmediateCorrection?: boolean | undefined;
|
765
|
+
}, {
|
766
|
+
templateId?: string | undefined;
|
767
|
+
isImmediateCorrection?: boolean | undefined;
|
768
|
+
}>>;
|
741
769
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
742
770
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
743
771
|
}, {
|
@@ -837,6 +865,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
837
865
|
start: string;
|
838
866
|
end: string;
|
839
867
|
} | null | undefined> | undefined;
|
868
|
+
actionDetails?: {
|
869
|
+
templateId?: string | undefined;
|
870
|
+
isImmediateCorrection?: boolean | undefined;
|
871
|
+
} | undefined;
|
840
872
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
841
873
|
registrationNumber?: string | undefined;
|
842
874
|
keepAssignment?: boolean | undefined;
|
@@ -934,6 +966,10 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
934
966
|
start: string;
|
935
967
|
end: string;
|
936
968
|
} | null | undefined> | undefined;
|
969
|
+
actionDetails?: {
|
970
|
+
templateId?: string | undefined;
|
971
|
+
isImmediateCorrection?: boolean | undefined;
|
972
|
+
} | undefined;
|
937
973
|
originalActionId?: string | undefined;
|
938
974
|
registrationNumber?: string | undefined;
|
939
975
|
keepAssignment?: boolean | undefined;
|
@@ -1212,6 +1248,16 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1212
1248
|
surname?: string | null | undefined;
|
1213
1249
|
middlename?: string | null | undefined;
|
1214
1250
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1251
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
1252
|
+
templateId: z.ZodOptional<z.ZodString>;
|
1253
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
1254
|
+
}, "strip", z.ZodTypeAny, {
|
1255
|
+
templateId?: string | undefined;
|
1256
|
+
isImmediateCorrection?: boolean | undefined;
|
1257
|
+
}, {
|
1258
|
+
templateId?: string | undefined;
|
1259
|
+
isImmediateCorrection?: boolean | undefined;
|
1260
|
+
}>>;
|
1215
1261
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
1216
1262
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
1217
1263
|
}, {
|
@@ -1312,6 +1358,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1312
1358
|
start: string;
|
1313
1359
|
end: string;
|
1314
1360
|
} | null | undefined> | undefined;
|
1361
|
+
actionDetails?: {
|
1362
|
+
templateId?: string | undefined;
|
1363
|
+
isImmediateCorrection?: boolean | undefined;
|
1364
|
+
} | undefined;
|
1315
1365
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
1316
1366
|
keepAssignment?: boolean | undefined;
|
1317
1367
|
}, {
|
@@ -1409,6 +1459,10 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1409
1459
|
start: string;
|
1410
1460
|
end: string;
|
1411
1461
|
} | null | undefined> | undefined;
|
1462
|
+
actionDetails?: {
|
1463
|
+
templateId?: string | undefined;
|
1464
|
+
isImmediateCorrection?: boolean | undefined;
|
1465
|
+
} | undefined;
|
1412
1466
|
originalActionId?: string | undefined;
|
1413
1467
|
keepAssignment?: boolean | undefined;
|
1414
1468
|
}>;
|
@@ -1686,6 +1740,16 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1686
1740
|
surname?: string | null | undefined;
|
1687
1741
|
middlename?: string | null | undefined;
|
1688
1742
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1743
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
1744
|
+
templateId: z.ZodOptional<z.ZodString>;
|
1745
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
1746
|
+
}, "strip", z.ZodTypeAny, {
|
1747
|
+
templateId?: string | undefined;
|
1748
|
+
isImmediateCorrection?: boolean | undefined;
|
1749
|
+
}, {
|
1750
|
+
templateId?: string | undefined;
|
1751
|
+
isImmediateCorrection?: boolean | undefined;
|
1752
|
+
}>>;
|
1689
1753
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
1690
1754
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
1691
1755
|
}, {
|
@@ -1784,6 +1848,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1784
1848
|
start: string;
|
1785
1849
|
end: string;
|
1786
1850
|
} | null | undefined> | undefined;
|
1851
|
+
actionDetails?: {
|
1852
|
+
templateId?: string | undefined;
|
1853
|
+
isImmediateCorrection?: boolean | undefined;
|
1854
|
+
} | undefined;
|
1787
1855
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
1788
1856
|
keepAssignment?: boolean | undefined;
|
1789
1857
|
}, {
|
@@ -1880,6 +1948,10 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1880
1948
|
start: string;
|
1881
1949
|
end: string;
|
1882
1950
|
} | null | undefined> | undefined;
|
1951
|
+
actionDetails?: {
|
1952
|
+
templateId?: string | undefined;
|
1953
|
+
isImmediateCorrection?: boolean | undefined;
|
1954
|
+
} | undefined;
|
1883
1955
|
originalActionId?: string | undefined;
|
1884
1956
|
keepAssignment?: boolean | undefined;
|
1885
1957
|
}>;
|
@@ -2157,6 +2229,16 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2157
2229
|
surname?: string | null | undefined;
|
2158
2230
|
middlename?: string | null | undefined;
|
2159
2231
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2232
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
2233
|
+
templateId: z.ZodOptional<z.ZodString>;
|
2234
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
2235
|
+
}, "strip", z.ZodTypeAny, {
|
2236
|
+
templateId?: string | undefined;
|
2237
|
+
isImmediateCorrection?: boolean | undefined;
|
2238
|
+
}, {
|
2239
|
+
templateId?: string | undefined;
|
2240
|
+
isImmediateCorrection?: boolean | undefined;
|
2241
|
+
}>>;
|
2160
2242
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
2161
2243
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
2162
2244
|
}, {
|
@@ -2255,6 +2337,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2255
2337
|
start: string;
|
2256
2338
|
end: string;
|
2257
2339
|
} | null | undefined> | undefined;
|
2340
|
+
actionDetails?: {
|
2341
|
+
templateId?: string | undefined;
|
2342
|
+
isImmediateCorrection?: boolean | undefined;
|
2343
|
+
} | undefined;
|
2258
2344
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
2259
2345
|
keepAssignment?: boolean | undefined;
|
2260
2346
|
}, {
|
@@ -2351,6 +2437,10 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2351
2437
|
start: string;
|
2352
2438
|
end: string;
|
2353
2439
|
} | null | undefined> | undefined;
|
2440
|
+
actionDetails?: {
|
2441
|
+
templateId?: string | undefined;
|
2442
|
+
isImmediateCorrection?: boolean | undefined;
|
2443
|
+
} | undefined;
|
2354
2444
|
originalActionId?: string | undefined;
|
2355
2445
|
keepAssignment?: boolean | undefined;
|
2356
2446
|
}>;
|
@@ -2627,6 +2717,16 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2627
2717
|
surname?: string | null | undefined;
|
2628
2718
|
middlename?: string | null | undefined;
|
2629
2719
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2720
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
2721
|
+
templateId: z.ZodOptional<z.ZodString>;
|
2722
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
2723
|
+
}, "strip", z.ZodTypeAny, {
|
2724
|
+
templateId?: string | undefined;
|
2725
|
+
isImmediateCorrection?: boolean | undefined;
|
2726
|
+
}, {
|
2727
|
+
templateId?: string | undefined;
|
2728
|
+
isImmediateCorrection?: boolean | undefined;
|
2729
|
+
}>>;
|
2630
2730
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
2631
2731
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
2632
2732
|
}, {
|
@@ -2725,6 +2825,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2725
2825
|
start: string;
|
2726
2826
|
end: string;
|
2727
2827
|
} | null | undefined> | undefined;
|
2828
|
+
actionDetails?: {
|
2829
|
+
templateId?: string | undefined;
|
2830
|
+
isImmediateCorrection?: boolean | undefined;
|
2831
|
+
} | undefined;
|
2728
2832
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
2729
2833
|
keepAssignment?: boolean | undefined;
|
2730
2834
|
}, {
|
@@ -2821,6 +2925,10 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2821
2925
|
start: string;
|
2822
2926
|
end: string;
|
2823
2927
|
} | null | undefined> | undefined;
|
2928
|
+
actionDetails?: {
|
2929
|
+
templateId?: string | undefined;
|
2930
|
+
isImmediateCorrection?: boolean | undefined;
|
2931
|
+
} | undefined;
|
2824
2932
|
originalActionId?: string | undefined;
|
2825
2933
|
keepAssignment?: boolean | undefined;
|
2826
2934
|
}>;
|
@@ -3098,6 +3206,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3098
3206
|
surname?: string | null | undefined;
|
3099
3207
|
middlename?: string | null | undefined;
|
3100
3208
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3209
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
3210
|
+
templateId: z.ZodOptional<z.ZodString>;
|
3211
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
3212
|
+
}, "strip", z.ZodTypeAny, {
|
3213
|
+
templateId?: string | undefined;
|
3214
|
+
isImmediateCorrection?: boolean | undefined;
|
3215
|
+
}, {
|
3216
|
+
templateId?: string | undefined;
|
3217
|
+
isImmediateCorrection?: boolean | undefined;
|
3218
|
+
}>>;
|
3101
3219
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
3102
3220
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
3103
3221
|
}, {
|
@@ -3210,6 +3328,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3210
3328
|
start: string;
|
3211
3329
|
end: string;
|
3212
3330
|
} | null | undefined> | undefined;
|
3331
|
+
actionDetails?: {
|
3332
|
+
templateId?: string | undefined;
|
3333
|
+
isImmediateCorrection?: boolean | undefined;
|
3334
|
+
} | undefined;
|
3213
3335
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
3214
3336
|
keepAssignment?: boolean | undefined;
|
3215
3337
|
}, {
|
@@ -3310,6 +3432,10 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3310
3432
|
start: string;
|
3311
3433
|
end: string;
|
3312
3434
|
} | null | undefined> | undefined;
|
3435
|
+
actionDetails?: {
|
3436
|
+
templateId?: string | undefined;
|
3437
|
+
isImmediateCorrection?: boolean | undefined;
|
3438
|
+
} | undefined;
|
3313
3439
|
originalActionId?: string | undefined;
|
3314
3440
|
keepAssignment?: boolean | undefined;
|
3315
3441
|
}>;
|
@@ -3587,6 +3713,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3587
3713
|
surname?: string | null | undefined;
|
3588
3714
|
middlename?: string | null | undefined;
|
3589
3715
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3716
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
3717
|
+
templateId: z.ZodOptional<z.ZodString>;
|
3718
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
3719
|
+
}, "strip", z.ZodTypeAny, {
|
3720
|
+
templateId?: string | undefined;
|
3721
|
+
isImmediateCorrection?: boolean | undefined;
|
3722
|
+
}, {
|
3723
|
+
templateId?: string | undefined;
|
3724
|
+
isImmediateCorrection?: boolean | undefined;
|
3725
|
+
}>>;
|
3590
3726
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
3591
3727
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
3592
3728
|
}, {
|
@@ -3685,6 +3821,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3685
3821
|
start: string;
|
3686
3822
|
end: string;
|
3687
3823
|
} | null | undefined> | undefined;
|
3824
|
+
actionDetails?: {
|
3825
|
+
templateId?: string | undefined;
|
3826
|
+
isImmediateCorrection?: boolean | undefined;
|
3827
|
+
} | undefined;
|
3688
3828
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
3689
3829
|
keepAssignment?: boolean | undefined;
|
3690
3830
|
}, {
|
@@ -3781,6 +3921,10 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3781
3921
|
start: string;
|
3782
3922
|
end: string;
|
3783
3923
|
} | null | undefined> | undefined;
|
3924
|
+
actionDetails?: {
|
3925
|
+
templateId?: string | undefined;
|
3926
|
+
isImmediateCorrection?: boolean | undefined;
|
3927
|
+
} | undefined;
|
3784
3928
|
originalActionId?: string | undefined;
|
3785
3929
|
keepAssignment?: boolean | undefined;
|
3786
3930
|
}>;
|
@@ -4058,6 +4202,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4058
4202
|
surname?: string | null | undefined;
|
4059
4203
|
middlename?: string | null | undefined;
|
4060
4204
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4205
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
4206
|
+
templateId: z.ZodOptional<z.ZodString>;
|
4207
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
4208
|
+
}, "strip", z.ZodTypeAny, {
|
4209
|
+
templateId?: string | undefined;
|
4210
|
+
isImmediateCorrection?: boolean | undefined;
|
4211
|
+
}, {
|
4212
|
+
templateId?: string | undefined;
|
4213
|
+
isImmediateCorrection?: boolean | undefined;
|
4214
|
+
}>>;
|
4061
4215
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
4062
4216
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
4063
4217
|
}, {
|
@@ -4170,6 +4324,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4170
4324
|
start: string;
|
4171
4325
|
end: string;
|
4172
4326
|
} | null | undefined> | undefined;
|
4327
|
+
actionDetails?: {
|
4328
|
+
templateId?: string | undefined;
|
4329
|
+
isImmediateCorrection?: boolean | undefined;
|
4330
|
+
} | undefined;
|
4173
4331
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
4174
4332
|
keepAssignment?: boolean | undefined;
|
4175
4333
|
}, {
|
@@ -4270,6 +4428,10 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4270
4428
|
start: string;
|
4271
4429
|
end: string;
|
4272
4430
|
} | null | undefined> | undefined;
|
4431
|
+
actionDetails?: {
|
4432
|
+
templateId?: string | undefined;
|
4433
|
+
isImmediateCorrection?: boolean | undefined;
|
4434
|
+
} | undefined;
|
4273
4435
|
originalActionId?: string | undefined;
|
4274
4436
|
keepAssignment?: boolean | undefined;
|
4275
4437
|
}>;
|
@@ -4547,6 +4709,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4547
4709
|
surname?: string | null | undefined;
|
4548
4710
|
middlename?: string | null | undefined;
|
4549
4711
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4712
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
4713
|
+
templateId: z.ZodOptional<z.ZodString>;
|
4714
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
4715
|
+
}, "strip", z.ZodTypeAny, {
|
4716
|
+
templateId?: string | undefined;
|
4717
|
+
isImmediateCorrection?: boolean | undefined;
|
4718
|
+
}, {
|
4719
|
+
templateId?: string | undefined;
|
4720
|
+
isImmediateCorrection?: boolean | undefined;
|
4721
|
+
}>>;
|
4550
4722
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
4551
4723
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
4552
4724
|
}, {
|
@@ -4647,6 +4819,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4647
4819
|
start: string;
|
4648
4820
|
end: string;
|
4649
4821
|
} | null | undefined> | undefined;
|
4822
|
+
actionDetails?: {
|
4823
|
+
templateId?: string | undefined;
|
4824
|
+
isImmediateCorrection?: boolean | undefined;
|
4825
|
+
} | undefined;
|
4650
4826
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
4651
4827
|
keepAssignment?: boolean | undefined;
|
4652
4828
|
}, {
|
@@ -4744,6 +4920,10 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4744
4920
|
start: string;
|
4745
4921
|
end: string;
|
4746
4922
|
} | null | undefined> | undefined;
|
4923
|
+
actionDetails?: {
|
4924
|
+
templateId?: string | undefined;
|
4925
|
+
isImmediateCorrection?: boolean | undefined;
|
4926
|
+
} | undefined;
|
4747
4927
|
originalActionId?: string | undefined;
|
4748
4928
|
keepAssignment?: boolean | undefined;
|
4749
4929
|
}>;
|
@@ -5021,6 +5201,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5021
5201
|
surname?: string | null | undefined;
|
5022
5202
|
middlename?: string | null | undefined;
|
5023
5203
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5204
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
5205
|
+
templateId: z.ZodOptional<z.ZodString>;
|
5206
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
5207
|
+
}, "strip", z.ZodTypeAny, {
|
5208
|
+
templateId?: string | undefined;
|
5209
|
+
isImmediateCorrection?: boolean | undefined;
|
5210
|
+
}, {
|
5211
|
+
templateId?: string | undefined;
|
5212
|
+
isImmediateCorrection?: boolean | undefined;
|
5213
|
+
}>>;
|
5024
5214
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5025
5215
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5026
5216
|
}, {
|
@@ -5121,6 +5311,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5121
5311
|
start: string;
|
5122
5312
|
end: string;
|
5123
5313
|
} | null | undefined> | undefined;
|
5314
|
+
actionDetails?: {
|
5315
|
+
templateId?: string | undefined;
|
5316
|
+
isImmediateCorrection?: boolean | undefined;
|
5317
|
+
} | undefined;
|
5124
5318
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
5125
5319
|
keepAssignment?: boolean | undefined;
|
5126
5320
|
}, {
|
@@ -5217,6 +5411,10 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5217
5411
|
start: string;
|
5218
5412
|
end: string;
|
5219
5413
|
} | null | undefined> | undefined;
|
5414
|
+
actionDetails?: {
|
5415
|
+
templateId?: string | undefined;
|
5416
|
+
isImmediateCorrection?: boolean | undefined;
|
5417
|
+
} | undefined;
|
5220
5418
|
originalActionId?: string | undefined;
|
5221
5419
|
assignedTo?: null | undefined;
|
5222
5420
|
keepAssignment?: boolean | undefined;
|
@@ -5495,6 +5693,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5495
5693
|
surname?: string | null | undefined;
|
5496
5694
|
middlename?: string | null | undefined;
|
5497
5695
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5696
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
5697
|
+
templateId: z.ZodOptional<z.ZodString>;
|
5698
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
5699
|
+
}, "strip", z.ZodTypeAny, {
|
5700
|
+
templateId?: string | undefined;
|
5701
|
+
isImmediateCorrection?: boolean | undefined;
|
5702
|
+
}, {
|
5703
|
+
templateId?: string | undefined;
|
5704
|
+
isImmediateCorrection?: boolean | undefined;
|
5705
|
+
}>>;
|
5498
5706
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5499
5707
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5500
5708
|
}, {
|
@@ -5593,6 +5801,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5593
5801
|
start: string;
|
5594
5802
|
end: string;
|
5595
5803
|
} | null | undefined> | undefined;
|
5804
|
+
actionDetails?: {
|
5805
|
+
templateId?: string | undefined;
|
5806
|
+
isImmediateCorrection?: boolean | undefined;
|
5807
|
+
} | undefined;
|
5596
5808
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
5597
5809
|
keepAssignment?: boolean | undefined;
|
5598
5810
|
}, {
|
@@ -5689,6 +5901,10 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5689
5901
|
start: string;
|
5690
5902
|
end: string;
|
5691
5903
|
} | null | undefined> | undefined;
|
5904
|
+
actionDetails?: {
|
5905
|
+
templateId?: string | undefined;
|
5906
|
+
isImmediateCorrection?: boolean | undefined;
|
5907
|
+
} | undefined;
|
5692
5908
|
originalActionId?: string | undefined;
|
5693
5909
|
keepAssignment?: boolean | undefined;
|
5694
5910
|
}>;
|
@@ -5966,27 +6182,23 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5966
6182
|
surname?: string | null | undefined;
|
5967
6183
|
middlename?: string | null | undefined;
|
5968
6184
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6185
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
6186
|
+
templateId: z.ZodOptional<z.ZodString>;
|
6187
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
6188
|
+
}, "strip", z.ZodTypeAny, {
|
6189
|
+
templateId?: string | undefined;
|
6190
|
+
isImmediateCorrection?: boolean | undefined;
|
6191
|
+
}, {
|
6192
|
+
templateId?: string | undefined;
|
6193
|
+
isImmediateCorrection?: boolean | undefined;
|
6194
|
+
}>>;
|
5969
6195
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5970
6196
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
5971
6197
|
}, {
|
5972
6198
|
requestId: z.ZodString;
|
5973
6199
|
type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
|
5974
|
-
reason: z.ZodObject<{
|
5975
|
-
message: z.ZodString;
|
5976
|
-
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
5977
|
-
}, "strip", z.ZodTypeAny, {
|
5978
|
-
message: string;
|
5979
|
-
isDuplicate?: boolean | undefined;
|
5980
|
-
}, {
|
5981
|
-
message: string;
|
5982
|
-
isDuplicate?: boolean | undefined;
|
5983
|
-
}>;
|
5984
6200
|
}>, "strip", z.ZodTypeAny, {
|
5985
6201
|
type: "REJECT_CORRECTION";
|
5986
|
-
reason: {
|
5987
|
-
message: string;
|
5988
|
-
isDuplicate?: boolean | undefined;
|
5989
|
-
};
|
5990
6202
|
transactionId: string;
|
5991
6203
|
declaration: Record<string, string | number | boolean | {
|
5992
6204
|
type: string;
|
@@ -6080,13 +6292,13 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6080
6292
|
start: string;
|
6081
6293
|
end: string;
|
6082
6294
|
} | null | undefined> | undefined;
|
6295
|
+
actionDetails?: {
|
6296
|
+
templateId?: string | undefined;
|
6297
|
+
isImmediateCorrection?: boolean | undefined;
|
6298
|
+
} | undefined;
|
6083
6299
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
6084
6300
|
keepAssignment?: boolean | undefined;
|
6085
6301
|
}, {
|
6086
|
-
reason: {
|
6087
|
-
message: string;
|
6088
|
-
isDuplicate?: boolean | undefined;
|
6089
|
-
};
|
6090
6302
|
transactionId: string;
|
6091
6303
|
requestId: string;
|
6092
6304
|
eventId: string;
|
@@ -6181,6 +6393,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6181
6393
|
start: string;
|
6182
6394
|
end: string;
|
6183
6395
|
} | null | undefined> | undefined;
|
6396
|
+
actionDetails?: {
|
6397
|
+
templateId?: string | undefined;
|
6398
|
+
isImmediateCorrection?: boolean | undefined;
|
6399
|
+
} | undefined;
|
6184
6400
|
originalActionId?: string | undefined;
|
6185
6401
|
keepAssignment?: boolean | undefined;
|
6186
6402
|
}>;
|
@@ -6458,6 +6674,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6458
6674
|
surname?: string | null | undefined;
|
6459
6675
|
middlename?: string | null | undefined;
|
6460
6676
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6677
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
6678
|
+
templateId: z.ZodOptional<z.ZodString>;
|
6679
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
6680
|
+
}, "strip", z.ZodTypeAny, {
|
6681
|
+
templateId?: string | undefined;
|
6682
|
+
isImmediateCorrection?: boolean | undefined;
|
6683
|
+
}, {
|
6684
|
+
templateId?: string | undefined;
|
6685
|
+
isImmediateCorrection?: boolean | undefined;
|
6686
|
+
}>>;
|
6461
6687
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
6462
6688
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
6463
6689
|
}, {
|
@@ -6558,6 +6784,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6558
6784
|
start: string;
|
6559
6785
|
end: string;
|
6560
6786
|
} | null | undefined> | undefined;
|
6787
|
+
actionDetails?: {
|
6788
|
+
templateId?: string | undefined;
|
6789
|
+
isImmediateCorrection?: boolean | undefined;
|
6790
|
+
} | undefined;
|
6561
6791
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
6562
6792
|
keepAssignment?: boolean | undefined;
|
6563
6793
|
}, {
|
@@ -6655,6 +6885,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6655
6885
|
start: string;
|
6656
6886
|
end: string;
|
6657
6887
|
} | null | undefined> | undefined;
|
6888
|
+
actionDetails?: {
|
6889
|
+
templateId?: string | undefined;
|
6890
|
+
isImmediateCorrection?: boolean | undefined;
|
6891
|
+
} | undefined;
|
6658
6892
|
originalActionId?: string | undefined;
|
6659
6893
|
keepAssignment?: boolean | undefined;
|
6660
6894
|
}>;
|
@@ -6932,6 +7166,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6932
7166
|
surname?: string | null | undefined;
|
6933
7167
|
middlename?: string | null | undefined;
|
6934
7168
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7169
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
7170
|
+
templateId: z.ZodOptional<z.ZodString>;
|
7171
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
7172
|
+
}, "strip", z.ZodTypeAny, {
|
7173
|
+
templateId?: string | undefined;
|
7174
|
+
isImmediateCorrection?: boolean | undefined;
|
7175
|
+
}, {
|
7176
|
+
templateId?: string | undefined;
|
7177
|
+
isImmediateCorrection?: boolean | undefined;
|
7178
|
+
}>>;
|
6935
7179
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
6936
7180
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
6937
7181
|
}, {
|
@@ -7030,6 +7274,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7030
7274
|
start: string;
|
7031
7275
|
end: string;
|
7032
7276
|
} | null | undefined> | undefined;
|
7277
|
+
actionDetails?: {
|
7278
|
+
templateId?: string | undefined;
|
7279
|
+
isImmediateCorrection?: boolean | undefined;
|
7280
|
+
} | undefined;
|
7033
7281
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7034
7282
|
keepAssignment?: boolean | undefined;
|
7035
7283
|
}, {
|
@@ -7126,6 +7374,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7126
7374
|
start: string;
|
7127
7375
|
end: string;
|
7128
7376
|
} | null | undefined> | undefined;
|
7377
|
+
actionDetails?: {
|
7378
|
+
templateId?: string | undefined;
|
7379
|
+
isImmediateCorrection?: boolean | undefined;
|
7380
|
+
} | undefined;
|
7129
7381
|
originalActionId?: string | undefined;
|
7130
7382
|
keepAssignment?: boolean | undefined;
|
7131
7383
|
}>;
|
@@ -7419,6 +7671,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7419
7671
|
surname?: string | null | undefined;
|
7420
7672
|
middlename?: string | null | undefined;
|
7421
7673
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7674
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
7675
|
+
templateId: z.ZodOptional<z.ZodString>;
|
7676
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
7677
|
+
}, "strip", z.ZodTypeAny, {
|
7678
|
+
templateId?: string | undefined;
|
7679
|
+
isImmediateCorrection?: boolean | undefined;
|
7680
|
+
}, {
|
7681
|
+
templateId?: string | undefined;
|
7682
|
+
isImmediateCorrection?: boolean | undefined;
|
7683
|
+
}>>;
|
7422
7684
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7423
7685
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7424
7686
|
}, {
|
@@ -7519,6 +7781,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7519
7781
|
start: string;
|
7520
7782
|
end: string;
|
7521
7783
|
} | null | undefined> | undefined;
|
7784
|
+
actionDetails?: {
|
7785
|
+
templateId?: string | undefined;
|
7786
|
+
isImmediateCorrection?: boolean | undefined;
|
7787
|
+
} | undefined;
|
7522
7788
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7523
7789
|
keepAssignment?: boolean | undefined;
|
7524
7790
|
}, {
|
@@ -7616,6 +7882,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7616
7882
|
start: string;
|
7617
7883
|
end: string;
|
7618
7884
|
} | null | undefined> | undefined;
|
7885
|
+
actionDetails?: {
|
7886
|
+
templateId?: string | undefined;
|
7887
|
+
isImmediateCorrection?: boolean | undefined;
|
7888
|
+
} | undefined;
|
7619
7889
|
originalActionId?: string | undefined;
|
7620
7890
|
keepAssignment?: boolean | undefined;
|
7621
7891
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -7891,6 +8161,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7891
8161
|
surname?: string | null | undefined;
|
7892
8162
|
middlename?: string | null | undefined;
|
7893
8163
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8164
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
8165
|
+
templateId: z.ZodOptional<z.ZodString>;
|
8166
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
8167
|
+
}, "strip", z.ZodTypeAny, {
|
8168
|
+
templateId?: string | undefined;
|
8169
|
+
isImmediateCorrection?: boolean | undefined;
|
8170
|
+
}, {
|
8171
|
+
templateId?: string | undefined;
|
8172
|
+
isImmediateCorrection?: boolean | undefined;
|
8173
|
+
}>>;
|
7894
8174
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7895
8175
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7896
8176
|
}, {
|
@@ -7991,6 +8271,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7991
8271
|
start: string;
|
7992
8272
|
end: string;
|
7993
8273
|
} | null | undefined> | undefined;
|
8274
|
+
actionDetails?: {
|
8275
|
+
templateId?: string | undefined;
|
8276
|
+
isImmediateCorrection?: boolean | undefined;
|
8277
|
+
} | undefined;
|
7994
8278
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7995
8279
|
keepAssignment?: boolean | undefined;
|
7996
8280
|
}, {
|
@@ -8088,6 +8372,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8088
8372
|
start: string;
|
8089
8373
|
end: string;
|
8090
8374
|
} | null | undefined> | undefined;
|
8375
|
+
actionDetails?: {
|
8376
|
+
templateId?: string | undefined;
|
8377
|
+
isImmediateCorrection?: boolean | undefined;
|
8378
|
+
} | undefined;
|
8091
8379
|
originalActionId?: string | undefined;
|
8092
8380
|
keepAssignment?: boolean | undefined;
|
8093
8381
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -8363,6 +8651,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8363
8651
|
surname?: string | null | undefined;
|
8364
8652
|
middlename?: string | null | undefined;
|
8365
8653
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8654
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
8655
|
+
templateId: z.ZodOptional<z.ZodString>;
|
8656
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
8657
|
+
}, "strip", z.ZodTypeAny, {
|
8658
|
+
templateId?: string | undefined;
|
8659
|
+
isImmediateCorrection?: boolean | undefined;
|
8660
|
+
}, {
|
8661
|
+
templateId?: string | undefined;
|
8662
|
+
isImmediateCorrection?: boolean | undefined;
|
8663
|
+
}>>;
|
8366
8664
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
8367
8665
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
8368
8666
|
}, {
|
@@ -8462,6 +8760,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8462
8760
|
start: string;
|
8463
8761
|
end: string;
|
8464
8762
|
} | null | undefined> | undefined;
|
8763
|
+
actionDetails?: {
|
8764
|
+
templateId?: string | undefined;
|
8765
|
+
isImmediateCorrection?: boolean | undefined;
|
8766
|
+
} | undefined;
|
8465
8767
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
8466
8768
|
registrationNumber?: string | undefined;
|
8467
8769
|
keepAssignment?: boolean | undefined;
|
@@ -8559,6 +8861,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8559
8861
|
start: string;
|
8560
8862
|
end: string;
|
8561
8863
|
} | null | undefined> | undefined;
|
8864
|
+
actionDetails?: {
|
8865
|
+
templateId?: string | undefined;
|
8866
|
+
isImmediateCorrection?: boolean | undefined;
|
8867
|
+
} | undefined;
|
8562
8868
|
originalActionId?: string | undefined;
|
8563
8869
|
registrationNumber?: string | undefined;
|
8564
8870
|
keepAssignment?: boolean | undefined;
|
@@ -8835,6 +9141,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8835
9141
|
surname?: string | null | undefined;
|
8836
9142
|
middlename?: string | null | undefined;
|
8837
9143
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9144
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
9145
|
+
templateId: z.ZodOptional<z.ZodString>;
|
9146
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
9147
|
+
}, "strip", z.ZodTypeAny, {
|
9148
|
+
templateId?: string | undefined;
|
9149
|
+
isImmediateCorrection?: boolean | undefined;
|
9150
|
+
}, {
|
9151
|
+
templateId?: string | undefined;
|
9152
|
+
isImmediateCorrection?: boolean | undefined;
|
9153
|
+
}>>;
|
8838
9154
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
8839
9155
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
8840
9156
|
}, {
|
@@ -8933,6 +9249,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8933
9249
|
start: string;
|
8934
9250
|
end: string;
|
8935
9251
|
} | null | undefined> | undefined;
|
9252
|
+
actionDetails?: {
|
9253
|
+
templateId?: string | undefined;
|
9254
|
+
isImmediateCorrection?: boolean | undefined;
|
9255
|
+
} | undefined;
|
8936
9256
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
8937
9257
|
keepAssignment?: boolean | undefined;
|
8938
9258
|
}, {
|
@@ -9029,6 +9349,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9029
9349
|
start: string;
|
9030
9350
|
end: string;
|
9031
9351
|
} | null | undefined> | undefined;
|
9352
|
+
actionDetails?: {
|
9353
|
+
templateId?: string | undefined;
|
9354
|
+
isImmediateCorrection?: boolean | undefined;
|
9355
|
+
} | undefined;
|
9032
9356
|
originalActionId?: string | undefined;
|
9033
9357
|
keepAssignment?: boolean | undefined;
|
9034
9358
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -9304,6 +9628,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9304
9628
|
surname?: string | null | undefined;
|
9305
9629
|
middlename?: string | null | undefined;
|
9306
9630
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9631
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
9632
|
+
templateId: z.ZodOptional<z.ZodString>;
|
9633
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
9634
|
+
}, "strip", z.ZodTypeAny, {
|
9635
|
+
templateId?: string | undefined;
|
9636
|
+
isImmediateCorrection?: boolean | undefined;
|
9637
|
+
}, {
|
9638
|
+
templateId?: string | undefined;
|
9639
|
+
isImmediateCorrection?: boolean | undefined;
|
9640
|
+
}>>;
|
9307
9641
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9308
9642
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9309
9643
|
}, {
|
@@ -9402,6 +9736,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9402
9736
|
start: string;
|
9403
9737
|
end: string;
|
9404
9738
|
} | null | undefined> | undefined;
|
9739
|
+
actionDetails?: {
|
9740
|
+
templateId?: string | undefined;
|
9741
|
+
isImmediateCorrection?: boolean | undefined;
|
9742
|
+
} | undefined;
|
9405
9743
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
9406
9744
|
keepAssignment?: boolean | undefined;
|
9407
9745
|
}, {
|
@@ -9498,6 +9836,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9498
9836
|
start: string;
|
9499
9837
|
end: string;
|
9500
9838
|
} | null | undefined> | undefined;
|
9839
|
+
actionDetails?: {
|
9840
|
+
templateId?: string | undefined;
|
9841
|
+
isImmediateCorrection?: boolean | undefined;
|
9842
|
+
} | undefined;
|
9501
9843
|
originalActionId?: string | undefined;
|
9502
9844
|
keepAssignment?: boolean | undefined;
|
9503
9845
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -9773,6 +10115,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9773
10115
|
surname?: string | null | undefined;
|
9774
10116
|
middlename?: string | null | undefined;
|
9775
10117
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10118
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
10119
|
+
templateId: z.ZodOptional<z.ZodString>;
|
10120
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
10121
|
+
}, "strip", z.ZodTypeAny, {
|
10122
|
+
templateId?: string | undefined;
|
10123
|
+
isImmediateCorrection?: boolean | undefined;
|
10124
|
+
}, {
|
10125
|
+
templateId?: string | undefined;
|
10126
|
+
isImmediateCorrection?: boolean | undefined;
|
10127
|
+
}>>;
|
9776
10128
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9777
10129
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9778
10130
|
}, {
|
@@ -9885,6 +10237,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9885
10237
|
start: string;
|
9886
10238
|
end: string;
|
9887
10239
|
} | null | undefined> | undefined;
|
10240
|
+
actionDetails?: {
|
10241
|
+
templateId?: string | undefined;
|
10242
|
+
isImmediateCorrection?: boolean | undefined;
|
10243
|
+
} | undefined;
|
9888
10244
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
9889
10245
|
keepAssignment?: boolean | undefined;
|
9890
10246
|
}, {
|
@@ -9985,6 +10341,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9985
10341
|
start: string;
|
9986
10342
|
end: string;
|
9987
10343
|
} | null | undefined> | undefined;
|
10344
|
+
actionDetails?: {
|
10345
|
+
templateId?: string | undefined;
|
10346
|
+
isImmediateCorrection?: boolean | undefined;
|
10347
|
+
} | undefined;
|
9988
10348
|
originalActionId?: string | undefined;
|
9989
10349
|
keepAssignment?: boolean | undefined;
|
9990
10350
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -10260,6 +10620,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10260
10620
|
surname?: string | null | undefined;
|
10261
10621
|
middlename?: string | null | undefined;
|
10262
10622
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10623
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
10624
|
+
templateId: z.ZodOptional<z.ZodString>;
|
10625
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
10626
|
+
}, "strip", z.ZodTypeAny, {
|
10627
|
+
templateId?: string | undefined;
|
10628
|
+
isImmediateCorrection?: boolean | undefined;
|
10629
|
+
}, {
|
10630
|
+
templateId?: string | undefined;
|
10631
|
+
isImmediateCorrection?: boolean | undefined;
|
10632
|
+
}>>;
|
10263
10633
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
10264
10634
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10265
10635
|
}, {
|
@@ -10358,6 +10728,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10358
10728
|
start: string;
|
10359
10729
|
end: string;
|
10360
10730
|
} | null | undefined> | undefined;
|
10731
|
+
actionDetails?: {
|
10732
|
+
templateId?: string | undefined;
|
10733
|
+
isImmediateCorrection?: boolean | undefined;
|
10734
|
+
} | undefined;
|
10361
10735
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
10362
10736
|
keepAssignment?: boolean | undefined;
|
10363
10737
|
}, {
|
@@ -10454,6 +10828,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10454
10828
|
start: string;
|
10455
10829
|
end: string;
|
10456
10830
|
} | null | undefined> | undefined;
|
10831
|
+
actionDetails?: {
|
10832
|
+
templateId?: string | undefined;
|
10833
|
+
isImmediateCorrection?: boolean | undefined;
|
10834
|
+
} | undefined;
|
10457
10835
|
originalActionId?: string | undefined;
|
10458
10836
|
keepAssignment?: boolean | undefined;
|
10459
10837
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -10729,6 +11107,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10729
11107
|
surname?: string | null | undefined;
|
10730
11108
|
middlename?: string | null | undefined;
|
10731
11109
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11110
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
11111
|
+
templateId: z.ZodOptional<z.ZodString>;
|
11112
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
11113
|
+
}, "strip", z.ZodTypeAny, {
|
11114
|
+
templateId?: string | undefined;
|
11115
|
+
isImmediateCorrection?: boolean | undefined;
|
11116
|
+
}, {
|
11117
|
+
templateId?: string | undefined;
|
11118
|
+
isImmediateCorrection?: boolean | undefined;
|
11119
|
+
}>>;
|
10732
11120
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
10733
11121
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10734
11122
|
}, {
|
@@ -10841,6 +11229,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10841
11229
|
start: string;
|
10842
11230
|
end: string;
|
10843
11231
|
} | null | undefined> | undefined;
|
11232
|
+
actionDetails?: {
|
11233
|
+
templateId?: string | undefined;
|
11234
|
+
isImmediateCorrection?: boolean | undefined;
|
11235
|
+
} | undefined;
|
10844
11236
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
10845
11237
|
keepAssignment?: boolean | undefined;
|
10846
11238
|
}, {
|
@@ -10941,6 +11333,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10941
11333
|
start: string;
|
10942
11334
|
end: string;
|
10943
11335
|
} | null | undefined> | undefined;
|
11336
|
+
actionDetails?: {
|
11337
|
+
templateId?: string | undefined;
|
11338
|
+
isImmediateCorrection?: boolean | undefined;
|
11339
|
+
} | undefined;
|
10944
11340
|
originalActionId?: string | undefined;
|
10945
11341
|
keepAssignment?: boolean | undefined;
|
10946
11342
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -11216,6 +11612,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11216
11612
|
surname?: string | null | undefined;
|
11217
11613
|
middlename?: string | null | undefined;
|
11218
11614
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11615
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
11616
|
+
templateId: z.ZodOptional<z.ZodString>;
|
11617
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
11618
|
+
}, "strip", z.ZodTypeAny, {
|
11619
|
+
templateId?: string | undefined;
|
11620
|
+
isImmediateCorrection?: boolean | undefined;
|
11621
|
+
}, {
|
11622
|
+
templateId?: string | undefined;
|
11623
|
+
isImmediateCorrection?: boolean | undefined;
|
11624
|
+
}>>;
|
11219
11625
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11220
11626
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11221
11627
|
}, {
|
@@ -11316,6 +11722,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11316
11722
|
start: string;
|
11317
11723
|
end: string;
|
11318
11724
|
} | null | undefined> | undefined;
|
11725
|
+
actionDetails?: {
|
11726
|
+
templateId?: string | undefined;
|
11727
|
+
isImmediateCorrection?: boolean | undefined;
|
11728
|
+
} | undefined;
|
11319
11729
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
11320
11730
|
keepAssignment?: boolean | undefined;
|
11321
11731
|
}, {
|
@@ -11413,6 +11823,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11413
11823
|
start: string;
|
11414
11824
|
end: string;
|
11415
11825
|
} | null | undefined> | undefined;
|
11826
|
+
actionDetails?: {
|
11827
|
+
templateId?: string | undefined;
|
11828
|
+
isImmediateCorrection?: boolean | undefined;
|
11829
|
+
} | undefined;
|
11416
11830
|
originalActionId?: string | undefined;
|
11417
11831
|
keepAssignment?: boolean | undefined;
|
11418
11832
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -11688,6 +12102,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11688
12102
|
surname?: string | null | undefined;
|
11689
12103
|
middlename?: string | null | undefined;
|
11690
12104
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12105
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
12106
|
+
templateId: z.ZodOptional<z.ZodString>;
|
12107
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
12108
|
+
}, "strip", z.ZodTypeAny, {
|
12109
|
+
templateId?: string | undefined;
|
12110
|
+
isImmediateCorrection?: boolean | undefined;
|
12111
|
+
}, {
|
12112
|
+
templateId?: string | undefined;
|
12113
|
+
isImmediateCorrection?: boolean | undefined;
|
12114
|
+
}>>;
|
11691
12115
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11692
12116
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11693
12117
|
}, {
|
@@ -11788,6 +12212,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11788
12212
|
start: string;
|
11789
12213
|
end: string;
|
11790
12214
|
} | null | undefined> | undefined;
|
12215
|
+
actionDetails?: {
|
12216
|
+
templateId?: string | undefined;
|
12217
|
+
isImmediateCorrection?: boolean | undefined;
|
12218
|
+
} | undefined;
|
11791
12219
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
11792
12220
|
keepAssignment?: boolean | undefined;
|
11793
12221
|
}, {
|
@@ -11884,6 +12312,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11884
12312
|
start: string;
|
11885
12313
|
end: string;
|
11886
12314
|
} | null | undefined> | undefined;
|
12315
|
+
actionDetails?: {
|
12316
|
+
templateId?: string | undefined;
|
12317
|
+
isImmediateCorrection?: boolean | undefined;
|
12318
|
+
} | undefined;
|
11887
12319
|
originalActionId?: string | undefined;
|
11888
12320
|
assignedTo?: null | undefined;
|
11889
12321
|
keepAssignment?: boolean | undefined;
|
@@ -12160,6 +12592,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12160
12592
|
surname?: string | null | undefined;
|
12161
12593
|
middlename?: string | null | undefined;
|
12162
12594
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12595
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
12596
|
+
templateId: z.ZodOptional<z.ZodString>;
|
12597
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
12598
|
+
}, "strip", z.ZodTypeAny, {
|
12599
|
+
templateId?: string | undefined;
|
12600
|
+
isImmediateCorrection?: boolean | undefined;
|
12601
|
+
}, {
|
12602
|
+
templateId?: string | undefined;
|
12603
|
+
isImmediateCorrection?: boolean | undefined;
|
12604
|
+
}>>;
|
12163
12605
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
12164
12606
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
12165
12607
|
}, {
|
@@ -12258,6 +12700,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12258
12700
|
start: string;
|
12259
12701
|
end: string;
|
12260
12702
|
} | null | undefined> | undefined;
|
12703
|
+
actionDetails?: {
|
12704
|
+
templateId?: string | undefined;
|
12705
|
+
isImmediateCorrection?: boolean | undefined;
|
12706
|
+
} | undefined;
|
12261
12707
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
12262
12708
|
keepAssignment?: boolean | undefined;
|
12263
12709
|
}, {
|
@@ -12354,6 +12800,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12354
12800
|
start: string;
|
12355
12801
|
end: string;
|
12356
12802
|
} | null | undefined> | undefined;
|
12803
|
+
actionDetails?: {
|
12804
|
+
templateId?: string | undefined;
|
12805
|
+
isImmediateCorrection?: boolean | undefined;
|
12806
|
+
} | undefined;
|
12357
12807
|
originalActionId?: string | undefined;
|
12358
12808
|
keepAssignment?: boolean | undefined;
|
12359
12809
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -12629,6 +13079,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12629
13079
|
surname?: string | null | undefined;
|
12630
13080
|
middlename?: string | null | undefined;
|
12631
13081
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13082
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
13083
|
+
templateId: z.ZodOptional<z.ZodString>;
|
13084
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
13085
|
+
}, "strip", z.ZodTypeAny, {
|
13086
|
+
templateId?: string | undefined;
|
13087
|
+
isImmediateCorrection?: boolean | undefined;
|
13088
|
+
}, {
|
13089
|
+
templateId?: string | undefined;
|
13090
|
+
isImmediateCorrection?: boolean | undefined;
|
13091
|
+
}>>;
|
12632
13092
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
12633
13093
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
12634
13094
|
}, {
|
@@ -12727,6 +13187,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12727
13187
|
start: string;
|
12728
13188
|
end: string;
|
12729
13189
|
} | null | undefined> | undefined;
|
13190
|
+
actionDetails?: {
|
13191
|
+
templateId?: string | undefined;
|
13192
|
+
isImmediateCorrection?: boolean | undefined;
|
13193
|
+
} | undefined;
|
12730
13194
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
12731
13195
|
keepAssignment?: boolean | undefined;
|
12732
13196
|
}, {
|
@@ -12823,6 +13287,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12823
13287
|
start: string;
|
12824
13288
|
end: string;
|
12825
13289
|
} | null | undefined> | undefined;
|
13290
|
+
actionDetails?: {
|
13291
|
+
templateId?: string | undefined;
|
13292
|
+
isImmediateCorrection?: boolean | undefined;
|
13293
|
+
} | undefined;
|
12826
13294
|
originalActionId?: string | undefined;
|
12827
13295
|
keepAssignment?: boolean | undefined;
|
12828
13296
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -13098,27 +13566,23 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13098
13566
|
surname?: string | null | undefined;
|
13099
13567
|
middlename?: string | null | undefined;
|
13100
13568
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13569
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
13570
|
+
templateId: z.ZodOptional<z.ZodString>;
|
13571
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
13572
|
+
}, "strip", z.ZodTypeAny, {
|
13573
|
+
templateId?: string | undefined;
|
13574
|
+
isImmediateCorrection?: boolean | undefined;
|
13575
|
+
}, {
|
13576
|
+
templateId?: string | undefined;
|
13577
|
+
isImmediateCorrection?: boolean | undefined;
|
13578
|
+
}>>;
|
13101
13579
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
13102
13580
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
13103
13581
|
}, {
|
13104
13582
|
requestId: z.ZodString;
|
13105
13583
|
type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
|
13106
|
-
reason: z.ZodObject<{
|
13107
|
-
message: z.ZodString;
|
13108
|
-
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
13109
|
-
}, "strip", z.ZodTypeAny, {
|
13110
|
-
message: string;
|
13111
|
-
isDuplicate?: boolean | undefined;
|
13112
|
-
}, {
|
13113
|
-
message: string;
|
13114
|
-
isDuplicate?: boolean | undefined;
|
13115
|
-
}>;
|
13116
13584
|
}>, "strip", z.ZodTypeAny, {
|
13117
13585
|
type: "REJECT_CORRECTION";
|
13118
|
-
reason: {
|
13119
|
-
message: string;
|
13120
|
-
isDuplicate?: boolean | undefined;
|
13121
|
-
};
|
13122
13586
|
transactionId: string;
|
13123
13587
|
declaration: Record<string, string | number | boolean | {
|
13124
13588
|
type: string;
|
@@ -13212,13 +13676,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13212
13676
|
start: string;
|
13213
13677
|
end: string;
|
13214
13678
|
} | null | undefined> | undefined;
|
13679
|
+
actionDetails?: {
|
13680
|
+
templateId?: string | undefined;
|
13681
|
+
isImmediateCorrection?: boolean | undefined;
|
13682
|
+
} | undefined;
|
13215
13683
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
13216
13684
|
keepAssignment?: boolean | undefined;
|
13217
13685
|
}, {
|
13218
|
-
reason: {
|
13219
|
-
message: string;
|
13220
|
-
isDuplicate?: boolean | undefined;
|
13221
|
-
};
|
13222
13686
|
transactionId: string;
|
13223
13687
|
requestId: string;
|
13224
13688
|
eventId: string;
|
@@ -13313,6 +13777,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13313
13777
|
start: string;
|
13314
13778
|
end: string;
|
13315
13779
|
} | null | undefined> | undefined;
|
13780
|
+
actionDetails?: {
|
13781
|
+
templateId?: string | undefined;
|
13782
|
+
isImmediateCorrection?: boolean | undefined;
|
13783
|
+
} | undefined;
|
13316
13784
|
originalActionId?: string | undefined;
|
13317
13785
|
keepAssignment?: boolean | undefined;
|
13318
13786
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -13588,6 +14056,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13588
14056
|
surname?: string | null | undefined;
|
13589
14057
|
middlename?: string | null | undefined;
|
13590
14058
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
14059
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
14060
|
+
templateId: z.ZodOptional<z.ZodString>;
|
14061
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
14062
|
+
}, "strip", z.ZodTypeAny, {
|
14063
|
+
templateId?: string | undefined;
|
14064
|
+
isImmediateCorrection?: boolean | undefined;
|
14065
|
+
}, {
|
14066
|
+
templateId?: string | undefined;
|
14067
|
+
isImmediateCorrection?: boolean | undefined;
|
14068
|
+
}>>;
|
13591
14069
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
13592
14070
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
13593
14071
|
}, {
|
@@ -13688,6 +14166,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13688
14166
|
start: string;
|
13689
14167
|
end: string;
|
13690
14168
|
} | null | undefined> | undefined;
|
14169
|
+
actionDetails?: {
|
14170
|
+
templateId?: string | undefined;
|
14171
|
+
isImmediateCorrection?: boolean | undefined;
|
14172
|
+
} | undefined;
|
13691
14173
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
13692
14174
|
keepAssignment?: boolean | undefined;
|
13693
14175
|
}, {
|
@@ -13785,6 +14267,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13785
14267
|
start: string;
|
13786
14268
|
end: string;
|
13787
14269
|
} | null | undefined> | undefined;
|
14270
|
+
actionDetails?: {
|
14271
|
+
templateId?: string | undefined;
|
14272
|
+
isImmediateCorrection?: boolean | undefined;
|
14273
|
+
} | undefined;
|
13788
14274
|
originalActionId?: string | undefined;
|
13789
14275
|
keepAssignment?: boolean | undefined;
|
13790
14276
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -14060,6 +14546,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14060
14546
|
surname?: string | null | undefined;
|
14061
14547
|
middlename?: string | null | undefined;
|
14062
14548
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
14549
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
14550
|
+
templateId: z.ZodOptional<z.ZodString>;
|
14551
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
14552
|
+
}, "strip", z.ZodTypeAny, {
|
14553
|
+
templateId?: string | undefined;
|
14554
|
+
isImmediateCorrection?: boolean | undefined;
|
14555
|
+
}, {
|
14556
|
+
templateId?: string | undefined;
|
14557
|
+
isImmediateCorrection?: boolean | undefined;
|
14558
|
+
}>>;
|
14063
14559
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
14064
14560
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
14065
14561
|
}, {
|
@@ -14158,6 +14654,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14158
14654
|
start: string;
|
14159
14655
|
end: string;
|
14160
14656
|
} | null | undefined> | undefined;
|
14657
|
+
actionDetails?: {
|
14658
|
+
templateId?: string | undefined;
|
14659
|
+
isImmediateCorrection?: boolean | undefined;
|
14660
|
+
} | undefined;
|
14161
14661
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
14162
14662
|
keepAssignment?: boolean | undefined;
|
14163
14663
|
}, {
|
@@ -14254,6 +14754,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14254
14754
|
start: string;
|
14255
14755
|
end: string;
|
14256
14756
|
} | null | undefined> | undefined;
|
14757
|
+
actionDetails?: {
|
14758
|
+
templateId?: string | undefined;
|
14759
|
+
isImmediateCorrection?: boolean | undefined;
|
14760
|
+
} | undefined;
|
14257
14761
|
originalActionId?: string | undefined;
|
14258
14762
|
keepAssignment?: boolean | undefined;
|
14259
14763
|
}>]>;
|