@opencrvs/toolkit 1.8.1-rc.5530ede → 1.8.1-rc.5c415ba
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 +432 -0
- package/dist/commons/conditionals/validate.d.ts +3 -2
- package/dist/commons/events/ActionDocument.d.ts +695 -0
- package/dist/commons/events/ActionInput.d.ts +576 -0
- package/dist/commons/events/Draft.d.ts +44 -0
- package/dist/commons/events/EventDocument.d.ts +442 -0
- package/dist/commons/events/EventIndex.d.ts +6 -0
- package/dist/commons/events/EventMetadata.d.ts +6 -0
- package/dist/commons/events/event.d.ts +55 -1
- package/dist/commons/events/test.utils.d.ts +5 -1
- package/dist/commons/events/utils.d.ts +4 -0
- package/dist/events/index.js +133 -34
- 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,13 +6182,37 @@ 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">>;
|
6200
|
+
reason: z.ZodObject<{
|
6201
|
+
message: z.ZodString;
|
6202
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
6203
|
+
}, "strip", z.ZodTypeAny, {
|
6204
|
+
message: string;
|
6205
|
+
isDuplicate?: boolean | undefined;
|
6206
|
+
}, {
|
6207
|
+
message: string;
|
6208
|
+
isDuplicate?: boolean | undefined;
|
6209
|
+
}>;
|
5974
6210
|
}>, "strip", z.ZodTypeAny, {
|
5975
6211
|
type: "REJECT_CORRECTION";
|
6212
|
+
reason: {
|
6213
|
+
message: string;
|
6214
|
+
isDuplicate?: boolean | undefined;
|
6215
|
+
};
|
5976
6216
|
transactionId: string;
|
5977
6217
|
declaration: Record<string, string | number | boolean | {
|
5978
6218
|
type: string;
|
@@ -6066,9 +6306,17 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6066
6306
|
start: string;
|
6067
6307
|
end: string;
|
6068
6308
|
} | null | undefined> | undefined;
|
6309
|
+
actionDetails?: {
|
6310
|
+
templateId?: string | undefined;
|
6311
|
+
isImmediateCorrection?: boolean | undefined;
|
6312
|
+
} | undefined;
|
6069
6313
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
6070
6314
|
keepAssignment?: boolean | undefined;
|
6071
6315
|
}, {
|
6316
|
+
reason: {
|
6317
|
+
message: string;
|
6318
|
+
isDuplicate?: boolean | undefined;
|
6319
|
+
};
|
6072
6320
|
transactionId: string;
|
6073
6321
|
requestId: string;
|
6074
6322
|
eventId: string;
|
@@ -6163,6 +6411,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6163
6411
|
start: string;
|
6164
6412
|
end: string;
|
6165
6413
|
} | null | undefined> | undefined;
|
6414
|
+
actionDetails?: {
|
6415
|
+
templateId?: string | undefined;
|
6416
|
+
isImmediateCorrection?: boolean | undefined;
|
6417
|
+
} | undefined;
|
6166
6418
|
originalActionId?: string | undefined;
|
6167
6419
|
keepAssignment?: boolean | undefined;
|
6168
6420
|
}>;
|
@@ -6440,6 +6692,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6440
6692
|
surname?: string | null | undefined;
|
6441
6693
|
middlename?: string | null | undefined;
|
6442
6694
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6695
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
6696
|
+
templateId: z.ZodOptional<z.ZodString>;
|
6697
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
6698
|
+
}, "strip", z.ZodTypeAny, {
|
6699
|
+
templateId?: string | undefined;
|
6700
|
+
isImmediateCorrection?: boolean | undefined;
|
6701
|
+
}, {
|
6702
|
+
templateId?: string | undefined;
|
6703
|
+
isImmediateCorrection?: boolean | undefined;
|
6704
|
+
}>>;
|
6443
6705
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
6444
6706
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
6445
6707
|
}, {
|
@@ -6540,6 +6802,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6540
6802
|
start: string;
|
6541
6803
|
end: string;
|
6542
6804
|
} | null | undefined> | undefined;
|
6805
|
+
actionDetails?: {
|
6806
|
+
templateId?: string | undefined;
|
6807
|
+
isImmediateCorrection?: boolean | undefined;
|
6808
|
+
} | undefined;
|
6543
6809
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
6544
6810
|
keepAssignment?: boolean | undefined;
|
6545
6811
|
}, {
|
@@ -6637,6 +6903,10 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6637
6903
|
start: string;
|
6638
6904
|
end: string;
|
6639
6905
|
} | null | undefined> | undefined;
|
6906
|
+
actionDetails?: {
|
6907
|
+
templateId?: string | undefined;
|
6908
|
+
isImmediateCorrection?: boolean | undefined;
|
6909
|
+
} | undefined;
|
6640
6910
|
originalActionId?: string | undefined;
|
6641
6911
|
keepAssignment?: boolean | undefined;
|
6642
6912
|
}>;
|
@@ -6914,6 +7184,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6914
7184
|
surname?: string | null | undefined;
|
6915
7185
|
middlename?: string | null | undefined;
|
6916
7186
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7187
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
7188
|
+
templateId: z.ZodOptional<z.ZodString>;
|
7189
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
7190
|
+
}, "strip", z.ZodTypeAny, {
|
7191
|
+
templateId?: string | undefined;
|
7192
|
+
isImmediateCorrection?: boolean | undefined;
|
7193
|
+
}, {
|
7194
|
+
templateId?: string | undefined;
|
7195
|
+
isImmediateCorrection?: boolean | undefined;
|
7196
|
+
}>>;
|
6917
7197
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
6918
7198
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
6919
7199
|
}, {
|
@@ -7012,6 +7292,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7012
7292
|
start: string;
|
7013
7293
|
end: string;
|
7014
7294
|
} | null | undefined> | undefined;
|
7295
|
+
actionDetails?: {
|
7296
|
+
templateId?: string | undefined;
|
7297
|
+
isImmediateCorrection?: boolean | undefined;
|
7298
|
+
} | undefined;
|
7015
7299
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7016
7300
|
keepAssignment?: boolean | undefined;
|
7017
7301
|
}, {
|
@@ -7108,6 +7392,10 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7108
7392
|
start: string;
|
7109
7393
|
end: string;
|
7110
7394
|
} | null | undefined> | undefined;
|
7395
|
+
actionDetails?: {
|
7396
|
+
templateId?: string | undefined;
|
7397
|
+
isImmediateCorrection?: boolean | undefined;
|
7398
|
+
} | undefined;
|
7111
7399
|
originalActionId?: string | undefined;
|
7112
7400
|
keepAssignment?: boolean | undefined;
|
7113
7401
|
}>;
|
@@ -7401,6 +7689,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7401
7689
|
surname?: string | null | undefined;
|
7402
7690
|
middlename?: string | null | undefined;
|
7403
7691
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7692
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
7693
|
+
templateId: z.ZodOptional<z.ZodString>;
|
7694
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
7695
|
+
}, "strip", z.ZodTypeAny, {
|
7696
|
+
templateId?: string | undefined;
|
7697
|
+
isImmediateCorrection?: boolean | undefined;
|
7698
|
+
}, {
|
7699
|
+
templateId?: string | undefined;
|
7700
|
+
isImmediateCorrection?: boolean | undefined;
|
7701
|
+
}>>;
|
7404
7702
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7405
7703
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7406
7704
|
}, {
|
@@ -7501,6 +7799,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7501
7799
|
start: string;
|
7502
7800
|
end: string;
|
7503
7801
|
} | null | undefined> | undefined;
|
7802
|
+
actionDetails?: {
|
7803
|
+
templateId?: string | undefined;
|
7804
|
+
isImmediateCorrection?: boolean | undefined;
|
7805
|
+
} | undefined;
|
7504
7806
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7505
7807
|
keepAssignment?: boolean | undefined;
|
7506
7808
|
}, {
|
@@ -7598,6 +7900,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7598
7900
|
start: string;
|
7599
7901
|
end: string;
|
7600
7902
|
} | null | undefined> | undefined;
|
7903
|
+
actionDetails?: {
|
7904
|
+
templateId?: string | undefined;
|
7905
|
+
isImmediateCorrection?: boolean | undefined;
|
7906
|
+
} | undefined;
|
7601
7907
|
originalActionId?: string | undefined;
|
7602
7908
|
keepAssignment?: boolean | undefined;
|
7603
7909
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -7873,6 +8179,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7873
8179
|
surname?: string | null | undefined;
|
7874
8180
|
middlename?: string | null | undefined;
|
7875
8181
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8182
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
8183
|
+
templateId: z.ZodOptional<z.ZodString>;
|
8184
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
8185
|
+
}, "strip", z.ZodTypeAny, {
|
8186
|
+
templateId?: string | undefined;
|
8187
|
+
isImmediateCorrection?: boolean | undefined;
|
8188
|
+
}, {
|
8189
|
+
templateId?: string | undefined;
|
8190
|
+
isImmediateCorrection?: boolean | undefined;
|
8191
|
+
}>>;
|
7876
8192
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7877
8193
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
7878
8194
|
}, {
|
@@ -7973,6 +8289,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7973
8289
|
start: string;
|
7974
8290
|
end: string;
|
7975
8291
|
} | null | undefined> | undefined;
|
8292
|
+
actionDetails?: {
|
8293
|
+
templateId?: string | undefined;
|
8294
|
+
isImmediateCorrection?: boolean | undefined;
|
8295
|
+
} | undefined;
|
7976
8296
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
7977
8297
|
keepAssignment?: boolean | undefined;
|
7978
8298
|
}, {
|
@@ -8070,6 +8390,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8070
8390
|
start: string;
|
8071
8391
|
end: string;
|
8072
8392
|
} | null | undefined> | undefined;
|
8393
|
+
actionDetails?: {
|
8394
|
+
templateId?: string | undefined;
|
8395
|
+
isImmediateCorrection?: boolean | undefined;
|
8396
|
+
} | undefined;
|
8073
8397
|
originalActionId?: string | undefined;
|
8074
8398
|
keepAssignment?: boolean | undefined;
|
8075
8399
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -8345,6 +8669,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8345
8669
|
surname?: string | null | undefined;
|
8346
8670
|
middlename?: string | null | undefined;
|
8347
8671
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8672
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
8673
|
+
templateId: z.ZodOptional<z.ZodString>;
|
8674
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
8675
|
+
}, "strip", z.ZodTypeAny, {
|
8676
|
+
templateId?: string | undefined;
|
8677
|
+
isImmediateCorrection?: boolean | undefined;
|
8678
|
+
}, {
|
8679
|
+
templateId?: string | undefined;
|
8680
|
+
isImmediateCorrection?: boolean | undefined;
|
8681
|
+
}>>;
|
8348
8682
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
8349
8683
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
8350
8684
|
}, {
|
@@ -8444,6 +8778,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8444
8778
|
start: string;
|
8445
8779
|
end: string;
|
8446
8780
|
} | null | undefined> | undefined;
|
8781
|
+
actionDetails?: {
|
8782
|
+
templateId?: string | undefined;
|
8783
|
+
isImmediateCorrection?: boolean | undefined;
|
8784
|
+
} | undefined;
|
8447
8785
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
8448
8786
|
registrationNumber?: string | undefined;
|
8449
8787
|
keepAssignment?: boolean | undefined;
|
@@ -8541,6 +8879,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8541
8879
|
start: string;
|
8542
8880
|
end: string;
|
8543
8881
|
} | null | undefined> | undefined;
|
8882
|
+
actionDetails?: {
|
8883
|
+
templateId?: string | undefined;
|
8884
|
+
isImmediateCorrection?: boolean | undefined;
|
8885
|
+
} | undefined;
|
8544
8886
|
originalActionId?: string | undefined;
|
8545
8887
|
registrationNumber?: string | undefined;
|
8546
8888
|
keepAssignment?: boolean | undefined;
|
@@ -8817,6 +9159,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8817
9159
|
surname?: string | null | undefined;
|
8818
9160
|
middlename?: string | null | undefined;
|
8819
9161
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9162
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
9163
|
+
templateId: z.ZodOptional<z.ZodString>;
|
9164
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
9165
|
+
}, "strip", z.ZodTypeAny, {
|
9166
|
+
templateId?: string | undefined;
|
9167
|
+
isImmediateCorrection?: boolean | undefined;
|
9168
|
+
}, {
|
9169
|
+
templateId?: string | undefined;
|
9170
|
+
isImmediateCorrection?: boolean | undefined;
|
9171
|
+
}>>;
|
8820
9172
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
8821
9173
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
8822
9174
|
}, {
|
@@ -8915,6 +9267,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8915
9267
|
start: string;
|
8916
9268
|
end: string;
|
8917
9269
|
} | null | undefined> | undefined;
|
9270
|
+
actionDetails?: {
|
9271
|
+
templateId?: string | undefined;
|
9272
|
+
isImmediateCorrection?: boolean | undefined;
|
9273
|
+
} | undefined;
|
8918
9274
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
8919
9275
|
keepAssignment?: boolean | undefined;
|
8920
9276
|
}, {
|
@@ -9011,6 +9367,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9011
9367
|
start: string;
|
9012
9368
|
end: string;
|
9013
9369
|
} | null | undefined> | undefined;
|
9370
|
+
actionDetails?: {
|
9371
|
+
templateId?: string | undefined;
|
9372
|
+
isImmediateCorrection?: boolean | undefined;
|
9373
|
+
} | undefined;
|
9014
9374
|
originalActionId?: string | undefined;
|
9015
9375
|
keepAssignment?: boolean | undefined;
|
9016
9376
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -9286,6 +9646,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9286
9646
|
surname?: string | null | undefined;
|
9287
9647
|
middlename?: string | null | undefined;
|
9288
9648
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9649
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
9650
|
+
templateId: z.ZodOptional<z.ZodString>;
|
9651
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
9652
|
+
}, "strip", z.ZodTypeAny, {
|
9653
|
+
templateId?: string | undefined;
|
9654
|
+
isImmediateCorrection?: boolean | undefined;
|
9655
|
+
}, {
|
9656
|
+
templateId?: string | undefined;
|
9657
|
+
isImmediateCorrection?: boolean | undefined;
|
9658
|
+
}>>;
|
9289
9659
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9290
9660
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9291
9661
|
}, {
|
@@ -9384,6 +9754,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9384
9754
|
start: string;
|
9385
9755
|
end: string;
|
9386
9756
|
} | null | undefined> | undefined;
|
9757
|
+
actionDetails?: {
|
9758
|
+
templateId?: string | undefined;
|
9759
|
+
isImmediateCorrection?: boolean | undefined;
|
9760
|
+
} | undefined;
|
9387
9761
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
9388
9762
|
keepAssignment?: boolean | undefined;
|
9389
9763
|
}, {
|
@@ -9480,6 +9854,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9480
9854
|
start: string;
|
9481
9855
|
end: string;
|
9482
9856
|
} | null | undefined> | undefined;
|
9857
|
+
actionDetails?: {
|
9858
|
+
templateId?: string | undefined;
|
9859
|
+
isImmediateCorrection?: boolean | undefined;
|
9860
|
+
} | undefined;
|
9483
9861
|
originalActionId?: string | undefined;
|
9484
9862
|
keepAssignment?: boolean | undefined;
|
9485
9863
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -9755,6 +10133,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9755
10133
|
surname?: string | null | undefined;
|
9756
10134
|
middlename?: string | null | undefined;
|
9757
10135
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10136
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
10137
|
+
templateId: z.ZodOptional<z.ZodString>;
|
10138
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
10139
|
+
}, "strip", z.ZodTypeAny, {
|
10140
|
+
templateId?: string | undefined;
|
10141
|
+
isImmediateCorrection?: boolean | undefined;
|
10142
|
+
}, {
|
10143
|
+
templateId?: string | undefined;
|
10144
|
+
isImmediateCorrection?: boolean | undefined;
|
10145
|
+
}>>;
|
9758
10146
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9759
10147
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
9760
10148
|
}, {
|
@@ -9867,6 +10255,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9867
10255
|
start: string;
|
9868
10256
|
end: string;
|
9869
10257
|
} | null | undefined> | undefined;
|
10258
|
+
actionDetails?: {
|
10259
|
+
templateId?: string | undefined;
|
10260
|
+
isImmediateCorrection?: boolean | undefined;
|
10261
|
+
} | undefined;
|
9870
10262
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
9871
10263
|
keepAssignment?: boolean | undefined;
|
9872
10264
|
}, {
|
@@ -9967,6 +10359,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9967
10359
|
start: string;
|
9968
10360
|
end: string;
|
9969
10361
|
} | null | undefined> | undefined;
|
10362
|
+
actionDetails?: {
|
10363
|
+
templateId?: string | undefined;
|
10364
|
+
isImmediateCorrection?: boolean | undefined;
|
10365
|
+
} | undefined;
|
9970
10366
|
originalActionId?: string | undefined;
|
9971
10367
|
keepAssignment?: boolean | undefined;
|
9972
10368
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -10242,6 +10638,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10242
10638
|
surname?: string | null | undefined;
|
10243
10639
|
middlename?: string | null | undefined;
|
10244
10640
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10641
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
10642
|
+
templateId: z.ZodOptional<z.ZodString>;
|
10643
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
10644
|
+
}, "strip", z.ZodTypeAny, {
|
10645
|
+
templateId?: string | undefined;
|
10646
|
+
isImmediateCorrection?: boolean | undefined;
|
10647
|
+
}, {
|
10648
|
+
templateId?: string | undefined;
|
10649
|
+
isImmediateCorrection?: boolean | undefined;
|
10650
|
+
}>>;
|
10245
10651
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
10246
10652
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10247
10653
|
}, {
|
@@ -10340,6 +10746,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10340
10746
|
start: string;
|
10341
10747
|
end: string;
|
10342
10748
|
} | null | undefined> | undefined;
|
10749
|
+
actionDetails?: {
|
10750
|
+
templateId?: string | undefined;
|
10751
|
+
isImmediateCorrection?: boolean | undefined;
|
10752
|
+
} | undefined;
|
10343
10753
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
10344
10754
|
keepAssignment?: boolean | undefined;
|
10345
10755
|
}, {
|
@@ -10436,6 +10846,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10436
10846
|
start: string;
|
10437
10847
|
end: string;
|
10438
10848
|
} | null | undefined> | undefined;
|
10849
|
+
actionDetails?: {
|
10850
|
+
templateId?: string | undefined;
|
10851
|
+
isImmediateCorrection?: boolean | undefined;
|
10852
|
+
} | undefined;
|
10439
10853
|
originalActionId?: string | undefined;
|
10440
10854
|
keepAssignment?: boolean | undefined;
|
10441
10855
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -10711,6 +11125,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10711
11125
|
surname?: string | null | undefined;
|
10712
11126
|
middlename?: string | null | undefined;
|
10713
11127
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11128
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
11129
|
+
templateId: z.ZodOptional<z.ZodString>;
|
11130
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
11131
|
+
}, "strip", z.ZodTypeAny, {
|
11132
|
+
templateId?: string | undefined;
|
11133
|
+
isImmediateCorrection?: boolean | undefined;
|
11134
|
+
}, {
|
11135
|
+
templateId?: string | undefined;
|
11136
|
+
isImmediateCorrection?: boolean | undefined;
|
11137
|
+
}>>;
|
10714
11138
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
10715
11139
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
10716
11140
|
}, {
|
@@ -10823,6 +11247,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10823
11247
|
start: string;
|
10824
11248
|
end: string;
|
10825
11249
|
} | null | undefined> | undefined;
|
11250
|
+
actionDetails?: {
|
11251
|
+
templateId?: string | undefined;
|
11252
|
+
isImmediateCorrection?: boolean | undefined;
|
11253
|
+
} | undefined;
|
10826
11254
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
10827
11255
|
keepAssignment?: boolean | undefined;
|
10828
11256
|
}, {
|
@@ -10923,6 +11351,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10923
11351
|
start: string;
|
10924
11352
|
end: string;
|
10925
11353
|
} | null | undefined> | undefined;
|
11354
|
+
actionDetails?: {
|
11355
|
+
templateId?: string | undefined;
|
11356
|
+
isImmediateCorrection?: boolean | undefined;
|
11357
|
+
} | undefined;
|
10926
11358
|
originalActionId?: string | undefined;
|
10927
11359
|
keepAssignment?: boolean | undefined;
|
10928
11360
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -11198,6 +11630,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11198
11630
|
surname?: string | null | undefined;
|
11199
11631
|
middlename?: string | null | undefined;
|
11200
11632
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11633
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
11634
|
+
templateId: z.ZodOptional<z.ZodString>;
|
11635
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
11636
|
+
}, "strip", z.ZodTypeAny, {
|
11637
|
+
templateId?: string | undefined;
|
11638
|
+
isImmediateCorrection?: boolean | undefined;
|
11639
|
+
}, {
|
11640
|
+
templateId?: string | undefined;
|
11641
|
+
isImmediateCorrection?: boolean | undefined;
|
11642
|
+
}>>;
|
11201
11643
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11202
11644
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11203
11645
|
}, {
|
@@ -11298,6 +11740,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11298
11740
|
start: string;
|
11299
11741
|
end: string;
|
11300
11742
|
} | null | undefined> | undefined;
|
11743
|
+
actionDetails?: {
|
11744
|
+
templateId?: string | undefined;
|
11745
|
+
isImmediateCorrection?: boolean | undefined;
|
11746
|
+
} | undefined;
|
11301
11747
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
11302
11748
|
keepAssignment?: boolean | undefined;
|
11303
11749
|
}, {
|
@@ -11395,6 +11841,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11395
11841
|
start: string;
|
11396
11842
|
end: string;
|
11397
11843
|
} | null | undefined> | undefined;
|
11844
|
+
actionDetails?: {
|
11845
|
+
templateId?: string | undefined;
|
11846
|
+
isImmediateCorrection?: boolean | undefined;
|
11847
|
+
} | undefined;
|
11398
11848
|
originalActionId?: string | undefined;
|
11399
11849
|
keepAssignment?: boolean | undefined;
|
11400
11850
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -11670,6 +12120,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11670
12120
|
surname?: string | null | undefined;
|
11671
12121
|
middlename?: string | null | undefined;
|
11672
12122
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12123
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
12124
|
+
templateId: z.ZodOptional<z.ZodString>;
|
12125
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
12126
|
+
}, "strip", z.ZodTypeAny, {
|
12127
|
+
templateId?: string | undefined;
|
12128
|
+
isImmediateCorrection?: boolean | undefined;
|
12129
|
+
}, {
|
12130
|
+
templateId?: string | undefined;
|
12131
|
+
isImmediateCorrection?: boolean | undefined;
|
12132
|
+
}>>;
|
11673
12133
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11674
12134
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
11675
12135
|
}, {
|
@@ -11770,6 +12230,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11770
12230
|
start: string;
|
11771
12231
|
end: string;
|
11772
12232
|
} | null | undefined> | undefined;
|
12233
|
+
actionDetails?: {
|
12234
|
+
templateId?: string | undefined;
|
12235
|
+
isImmediateCorrection?: boolean | undefined;
|
12236
|
+
} | undefined;
|
11773
12237
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
11774
12238
|
keepAssignment?: boolean | undefined;
|
11775
12239
|
}, {
|
@@ -11866,6 +12330,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11866
12330
|
start: string;
|
11867
12331
|
end: string;
|
11868
12332
|
} | null | undefined> | undefined;
|
12333
|
+
actionDetails?: {
|
12334
|
+
templateId?: string | undefined;
|
12335
|
+
isImmediateCorrection?: boolean | undefined;
|
12336
|
+
} | undefined;
|
11869
12337
|
originalActionId?: string | undefined;
|
11870
12338
|
assignedTo?: null | undefined;
|
11871
12339
|
keepAssignment?: boolean | undefined;
|
@@ -12142,6 +12610,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12142
12610
|
surname?: string | null | undefined;
|
12143
12611
|
middlename?: string | null | undefined;
|
12144
12612
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12613
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
12614
|
+
templateId: z.ZodOptional<z.ZodString>;
|
12615
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
12616
|
+
}, "strip", z.ZodTypeAny, {
|
12617
|
+
templateId?: string | undefined;
|
12618
|
+
isImmediateCorrection?: boolean | undefined;
|
12619
|
+
}, {
|
12620
|
+
templateId?: string | undefined;
|
12621
|
+
isImmediateCorrection?: boolean | undefined;
|
12622
|
+
}>>;
|
12145
12623
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
12146
12624
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
12147
12625
|
}, {
|
@@ -12240,6 +12718,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12240
12718
|
start: string;
|
12241
12719
|
end: string;
|
12242
12720
|
} | null | undefined> | undefined;
|
12721
|
+
actionDetails?: {
|
12722
|
+
templateId?: string | undefined;
|
12723
|
+
isImmediateCorrection?: boolean | undefined;
|
12724
|
+
} | undefined;
|
12243
12725
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
12244
12726
|
keepAssignment?: boolean | undefined;
|
12245
12727
|
}, {
|
@@ -12336,6 +12818,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12336
12818
|
start: string;
|
12337
12819
|
end: string;
|
12338
12820
|
} | null | undefined> | undefined;
|
12821
|
+
actionDetails?: {
|
12822
|
+
templateId?: string | undefined;
|
12823
|
+
isImmediateCorrection?: boolean | undefined;
|
12824
|
+
} | undefined;
|
12339
12825
|
originalActionId?: string | undefined;
|
12340
12826
|
keepAssignment?: boolean | undefined;
|
12341
12827
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -12611,6 +13097,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12611
13097
|
surname?: string | null | undefined;
|
12612
13098
|
middlename?: string | null | undefined;
|
12613
13099
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13100
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
13101
|
+
templateId: z.ZodOptional<z.ZodString>;
|
13102
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
13103
|
+
}, "strip", z.ZodTypeAny, {
|
13104
|
+
templateId?: string | undefined;
|
13105
|
+
isImmediateCorrection?: boolean | undefined;
|
13106
|
+
}, {
|
13107
|
+
templateId?: string | undefined;
|
13108
|
+
isImmediateCorrection?: boolean | undefined;
|
13109
|
+
}>>;
|
12614
13110
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
12615
13111
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
12616
13112
|
}, {
|
@@ -12709,6 +13205,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12709
13205
|
start: string;
|
12710
13206
|
end: string;
|
12711
13207
|
} | null | undefined> | undefined;
|
13208
|
+
actionDetails?: {
|
13209
|
+
templateId?: string | undefined;
|
13210
|
+
isImmediateCorrection?: boolean | undefined;
|
13211
|
+
} | undefined;
|
12712
13212
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
12713
13213
|
keepAssignment?: boolean | undefined;
|
12714
13214
|
}, {
|
@@ -12805,6 +13305,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12805
13305
|
start: string;
|
12806
13306
|
end: string;
|
12807
13307
|
} | null | undefined> | undefined;
|
13308
|
+
actionDetails?: {
|
13309
|
+
templateId?: string | undefined;
|
13310
|
+
isImmediateCorrection?: boolean | undefined;
|
13311
|
+
} | undefined;
|
12808
13312
|
originalActionId?: string | undefined;
|
12809
13313
|
keepAssignment?: boolean | undefined;
|
12810
13314
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -13080,13 +13584,37 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13080
13584
|
surname?: string | null | undefined;
|
13081
13585
|
middlename?: string | null | undefined;
|
13082
13586
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13587
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
13588
|
+
templateId: z.ZodOptional<z.ZodString>;
|
13589
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
13590
|
+
}, "strip", z.ZodTypeAny, {
|
13591
|
+
templateId?: string | undefined;
|
13592
|
+
isImmediateCorrection?: boolean | undefined;
|
13593
|
+
}, {
|
13594
|
+
templateId?: string | undefined;
|
13595
|
+
isImmediateCorrection?: boolean | undefined;
|
13596
|
+
}>>;
|
13083
13597
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
13084
13598
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
13085
13599
|
}, {
|
13086
13600
|
requestId: z.ZodString;
|
13087
13601
|
type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
|
13602
|
+
reason: z.ZodObject<{
|
13603
|
+
message: z.ZodString;
|
13604
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
13605
|
+
}, "strip", z.ZodTypeAny, {
|
13606
|
+
message: string;
|
13607
|
+
isDuplicate?: boolean | undefined;
|
13608
|
+
}, {
|
13609
|
+
message: string;
|
13610
|
+
isDuplicate?: boolean | undefined;
|
13611
|
+
}>;
|
13088
13612
|
}>, "strip", z.ZodTypeAny, {
|
13089
13613
|
type: "REJECT_CORRECTION";
|
13614
|
+
reason: {
|
13615
|
+
message: string;
|
13616
|
+
isDuplicate?: boolean | undefined;
|
13617
|
+
};
|
13090
13618
|
transactionId: string;
|
13091
13619
|
declaration: Record<string, string | number | boolean | {
|
13092
13620
|
type: string;
|
@@ -13180,9 +13708,17 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13180
13708
|
start: string;
|
13181
13709
|
end: string;
|
13182
13710
|
} | null | undefined> | undefined;
|
13711
|
+
actionDetails?: {
|
13712
|
+
templateId?: string | undefined;
|
13713
|
+
isImmediateCorrection?: boolean | undefined;
|
13714
|
+
} | undefined;
|
13183
13715
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
13184
13716
|
keepAssignment?: boolean | undefined;
|
13185
13717
|
}, {
|
13718
|
+
reason: {
|
13719
|
+
message: string;
|
13720
|
+
isDuplicate?: boolean | undefined;
|
13721
|
+
};
|
13186
13722
|
transactionId: string;
|
13187
13723
|
requestId: string;
|
13188
13724
|
eventId: string;
|
@@ -13277,6 +13813,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13277
13813
|
start: string;
|
13278
13814
|
end: string;
|
13279
13815
|
} | null | undefined> | undefined;
|
13816
|
+
actionDetails?: {
|
13817
|
+
templateId?: string | undefined;
|
13818
|
+
isImmediateCorrection?: boolean | undefined;
|
13819
|
+
} | undefined;
|
13280
13820
|
originalActionId?: string | undefined;
|
13281
13821
|
keepAssignment?: boolean | undefined;
|
13282
13822
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -13552,6 +14092,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13552
14092
|
surname?: string | null | undefined;
|
13553
14093
|
middlename?: string | null | undefined;
|
13554
14094
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
14095
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
14096
|
+
templateId: z.ZodOptional<z.ZodString>;
|
14097
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
14098
|
+
}, "strip", z.ZodTypeAny, {
|
14099
|
+
templateId?: string | undefined;
|
14100
|
+
isImmediateCorrection?: boolean | undefined;
|
14101
|
+
}, {
|
14102
|
+
templateId?: string | undefined;
|
14103
|
+
isImmediateCorrection?: boolean | undefined;
|
14104
|
+
}>>;
|
13555
14105
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
13556
14106
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
13557
14107
|
}, {
|
@@ -13652,6 +14202,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13652
14202
|
start: string;
|
13653
14203
|
end: string;
|
13654
14204
|
} | null | undefined> | undefined;
|
14205
|
+
actionDetails?: {
|
14206
|
+
templateId?: string | undefined;
|
14207
|
+
isImmediateCorrection?: boolean | undefined;
|
14208
|
+
} | undefined;
|
13655
14209
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
13656
14210
|
keepAssignment?: boolean | undefined;
|
13657
14211
|
}, {
|
@@ -13749,6 +14303,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13749
14303
|
start: string;
|
13750
14304
|
end: string;
|
13751
14305
|
} | null | undefined> | undefined;
|
14306
|
+
actionDetails?: {
|
14307
|
+
templateId?: string | undefined;
|
14308
|
+
isImmediateCorrection?: boolean | undefined;
|
14309
|
+
} | undefined;
|
13752
14310
|
originalActionId?: string | undefined;
|
13753
14311
|
keepAssignment?: boolean | undefined;
|
13754
14312
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -14024,6 +14582,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14024
14582
|
surname?: string | null | undefined;
|
14025
14583
|
middlename?: string | null | undefined;
|
14026
14584
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
14585
|
+
actionDetails: z.ZodOptional<z.ZodObject<{
|
14586
|
+
templateId: z.ZodOptional<z.ZodString>;
|
14587
|
+
isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
|
14588
|
+
}, "strip", z.ZodTypeAny, {
|
14589
|
+
templateId?: string | undefined;
|
14590
|
+
isImmediateCorrection?: boolean | undefined;
|
14591
|
+
}, {
|
14592
|
+
templateId?: string | undefined;
|
14593
|
+
isImmediateCorrection?: boolean | undefined;
|
14594
|
+
}>>;
|
14027
14595
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
14028
14596
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
14029
14597
|
}, {
|
@@ -14122,6 +14690,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14122
14690
|
start: string;
|
14123
14691
|
end: string;
|
14124
14692
|
} | null | undefined> | undefined;
|
14693
|
+
actionDetails?: {
|
14694
|
+
templateId?: string | undefined;
|
14695
|
+
isImmediateCorrection?: boolean | undefined;
|
14696
|
+
} | undefined;
|
14125
14697
|
originalActionId?: (string & z.BRAND<"UUID">) | undefined;
|
14126
14698
|
keepAssignment?: boolean | undefined;
|
14127
14699
|
}, {
|
@@ -14218,6 +14790,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14218
14790
|
start: string;
|
14219
14791
|
end: string;
|
14220
14792
|
} | null | undefined> | undefined;
|
14793
|
+
actionDetails?: {
|
14794
|
+
templateId?: string | undefined;
|
14795
|
+
isImmediateCorrection?: boolean | undefined;
|
14796
|
+
} | undefined;
|
14221
14797
|
originalActionId?: string | undefined;
|
14222
14798
|
keepAssignment?: boolean | undefined;
|
14223
14799
|
}>]>;
|