@opencrvs/toolkit 1.8.0-rc.f9f9d64 → 1.8.0-rc.fa49ae3

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.
@@ -280,6 +280,7 @@ export type ActionStatus = keyof typeof ActionStatus;
280
280
  export declare const ActionBase: z.ZodObject<{
281
281
  id: z.ZodString;
282
282
  transactionId: z.ZodString;
283
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
283
284
  createdAt: z.ZodString;
284
285
  createdBy: z.ZodString;
285
286
  createdByRole: z.ZodString;
@@ -588,6 +589,7 @@ export declare const ActionBase: z.ZodObject<{
588
589
  filename: string;
589
590
  originalFilename: string;
590
591
  }[] | [string, string] | null | undefined>;
592
+ creator?: "system" | "user" | undefined;
591
593
  createdBySignature?: string | null | undefined;
592
594
  createdAtLocation?: string | null | undefined;
593
595
  annotation?: Record<string, string | number | boolean | {
@@ -682,6 +684,7 @@ export declare const ActionBase: z.ZodObject<{
682
684
  filename: string;
683
685
  originalFilename: string;
684
686
  }[] | [string, string] | null | undefined>;
687
+ creator?: "system" | "user" | undefined;
685
688
  createdBySignature?: string | null | undefined;
686
689
  createdAtLocation?: string | null | undefined;
687
690
  annotation?: Record<string, string | number | boolean | {
@@ -732,6 +735,7 @@ export type ActionBase = z.infer<typeof ActionBase>;
732
735
  export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
733
736
  id: z.ZodString;
734
737
  transactionId: z.ZodString;
738
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
735
739
  createdAt: z.ZodString;
736
740
  createdBy: z.ZodString;
737
741
  createdByRole: z.ZodString;
@@ -1044,6 +1048,7 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
1044
1048
  filename: string;
1045
1049
  originalFilename: string;
1046
1050
  }[] | [string, string] | null | undefined>;
1051
+ creator?: "system" | "user" | undefined;
1047
1052
  createdBySignature?: string | null | undefined;
1048
1053
  createdAtLocation?: string | null | undefined;
1049
1054
  annotation?: Record<string, string | number | boolean | {
@@ -1140,6 +1145,7 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
1140
1145
  filename: string;
1141
1146
  originalFilename: string;
1142
1147
  }[] | [string, string] | null | undefined>;
1148
+ creator?: "system" | "user" | undefined;
1143
1149
  createdBySignature?: string | null | undefined;
1144
1150
  createdAtLocation?: string | null | undefined;
1145
1151
  annotation?: Record<string, string | number | boolean | {
@@ -1201,6 +1207,7 @@ export declare const RejectionReason: z.ZodObject<{
1201
1207
  declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1202
1208
  id: z.ZodString;
1203
1209
  transactionId: z.ZodString;
1210
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
1204
1211
  createdAt: z.ZodString;
1205
1212
  createdBy: z.ZodString;
1206
1213
  createdByRole: z.ZodString;
@@ -1512,6 +1519,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1512
1519
  filename: string;
1513
1520
  originalFilename: string;
1514
1521
  }[] | [string, string] | null | undefined>;
1522
+ creator?: "system" | "user" | undefined;
1515
1523
  createdBySignature?: string | null | undefined;
1516
1524
  createdAtLocation?: string | null | undefined;
1517
1525
  annotation?: Record<string, string | number | boolean | {
@@ -1607,6 +1615,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1607
1615
  filename: string;
1608
1616
  originalFilename: string;
1609
1617
  }[] | [string, string] | null | undefined>;
1618
+ creator?: "system" | "user" | undefined;
1610
1619
  createdBySignature?: string | null | undefined;
1611
1620
  createdAtLocation?: string | null | undefined;
1612
1621
  annotation?: Record<string, string | number | boolean | {
@@ -1656,6 +1665,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1656
1665
  export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
1657
1666
  id: z.ZodString;
1658
1667
  transactionId: z.ZodString;
1668
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
1659
1669
  createdAt: z.ZodString;
1660
1670
  createdBy: z.ZodString;
1661
1671
  createdByRole: z.ZodString;
@@ -1967,6 +1977,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1967
1977
  filename: string;
1968
1978
  originalFilename: string;
1969
1979
  }[] | [string, string] | null | undefined>;
1980
+ creator?: "system" | "user" | undefined;
1970
1981
  createdBySignature?: string | null | undefined;
1971
1982
  createdAtLocation?: string | null | undefined;
1972
1983
  annotation?: Record<string, string | number | boolean | {
@@ -2062,6 +2073,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2062
2073
  filename: string;
2063
2074
  originalFilename: string;
2064
2075
  }[] | [string, string] | null | undefined>;
2076
+ creator?: "system" | "user" | undefined;
2065
2077
  createdBySignature?: string | null | undefined;
2066
2078
  createdAtLocation?: string | null | undefined;
2067
2079
  annotation?: Record<string, string | number | boolean | {
@@ -2110,6 +2122,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2110
2122
  }>, z.ZodObject<z.objectUtil.extendShape<{
2111
2123
  id: z.ZodString;
2112
2124
  transactionId: z.ZodString;
2125
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
2113
2126
  createdAt: z.ZodString;
2114
2127
  createdBy: z.ZodString;
2115
2128
  createdByRole: z.ZodString;
@@ -2421,6 +2434,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2421
2434
  filename: string;
2422
2435
  originalFilename: string;
2423
2436
  }[] | [string, string] | null | undefined>;
2437
+ creator?: "system" | "user" | undefined;
2424
2438
  createdBySignature?: string | null | undefined;
2425
2439
  createdAtLocation?: string | null | undefined;
2426
2440
  annotation?: Record<string, string | number | boolean | {
@@ -2516,6 +2530,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2516
2530
  filename: string;
2517
2531
  originalFilename: string;
2518
2532
  }[] | [string, string] | null | undefined>;
2533
+ creator?: "system" | "user" | undefined;
2519
2534
  createdBySignature?: string | null | undefined;
2520
2535
  createdAtLocation?: string | null | undefined;
2521
2536
  annotation?: Record<string, string | number | boolean | {
@@ -2564,6 +2579,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2564
2579
  }>, z.ZodObject<z.objectUtil.extendShape<{
2565
2580
  id: z.ZodString;
2566
2581
  transactionId: z.ZodString;
2582
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
2567
2583
  createdAt: z.ZodString;
2568
2584
  createdBy: z.ZodString;
2569
2585
  createdByRole: z.ZodString;
@@ -2889,6 +2905,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2889
2905
  filename: string;
2890
2906
  originalFilename: string;
2891
2907
  }[] | [string, string] | null | undefined>;
2908
+ creator?: "system" | "user" | undefined;
2892
2909
  createdBySignature?: string | null | undefined;
2893
2910
  createdAtLocation?: string | null | undefined;
2894
2911
  annotation?: Record<string, string | number | boolean | {
@@ -2988,6 +3005,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2988
3005
  filename: string;
2989
3006
  originalFilename: string;
2990
3007
  }[] | [string, string] | null | undefined>;
3008
+ creator?: "system" | "user" | undefined;
2991
3009
  createdBySignature?: string | null | undefined;
2992
3010
  createdAtLocation?: string | null | undefined;
2993
3011
  annotation?: Record<string, string | number | boolean | {
@@ -3036,6 +3054,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3036
3054
  }>, z.ZodObject<z.objectUtil.extendShape<{
3037
3055
  id: z.ZodString;
3038
3056
  transactionId: z.ZodString;
3057
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
3039
3058
  createdAt: z.ZodString;
3040
3059
  createdBy: z.ZodString;
3041
3060
  createdByRole: z.ZodString;
@@ -3347,6 +3366,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3347
3366
  filename: string;
3348
3367
  originalFilename: string;
3349
3368
  }[] | [string, string] | null | undefined>;
3369
+ creator?: "system" | "user" | undefined;
3350
3370
  createdBySignature?: string | null | undefined;
3351
3371
  createdAtLocation?: string | null | undefined;
3352
3372
  annotation?: Record<string, string | number | boolean | {
@@ -3442,6 +3462,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3442
3462
  filename: string;
3443
3463
  originalFilename: string;
3444
3464
  }[] | [string, string] | null | undefined>;
3465
+ creator?: "system" | "user" | undefined;
3445
3466
  createdBySignature?: string | null | undefined;
3446
3467
  createdAtLocation?: string | null | undefined;
3447
3468
  annotation?: Record<string, string | number | boolean | {
@@ -3490,6 +3511,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3490
3511
  }>, z.ZodObject<z.objectUtil.extendShape<{
3491
3512
  id: z.ZodString;
3492
3513
  transactionId: z.ZodString;
3514
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
3493
3515
  createdAt: z.ZodString;
3494
3516
  createdBy: z.ZodString;
3495
3517
  createdByRole: z.ZodString;
@@ -3815,6 +3837,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3815
3837
  filename: string;
3816
3838
  originalFilename: string;
3817
3839
  }[] | [string, string] | null | undefined>;
3840
+ creator?: "system" | "user" | undefined;
3818
3841
  createdBySignature?: string | null | undefined;
3819
3842
  createdAtLocation?: string | null | undefined;
3820
3843
  annotation?: Record<string, string | number | boolean | {
@@ -3914,6 +3937,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3914
3937
  filename: string;
3915
3938
  originalFilename: string;
3916
3939
  }[] | [string, string] | null | undefined>;
3940
+ creator?: "system" | "user" | undefined;
3917
3941
  createdBySignature?: string | null | undefined;
3918
3942
  createdAtLocation?: string | null | undefined;
3919
3943
  annotation?: Record<string, string | number | boolean | {
@@ -3962,6 +3986,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3962
3986
  }>, z.ZodObject<z.objectUtil.extendShape<{
3963
3987
  id: z.ZodString;
3964
3988
  transactionId: z.ZodString;
3989
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
3965
3990
  createdAt: z.ZodString;
3966
3991
  createdBy: z.ZodString;
3967
3992
  createdByRole: z.ZodString;
@@ -4273,6 +4298,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4273
4298
  filename: string;
4274
4299
  originalFilename: string;
4275
4300
  }[] | [string, string] | null | undefined>;
4301
+ creator?: "system" | "user" | undefined;
4276
4302
  createdBySignature?: string | null | undefined;
4277
4303
  createdAtLocation?: string | null | undefined;
4278
4304
  annotation?: Record<string, string | number | boolean | {
@@ -4368,6 +4394,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4368
4394
  filename: string;
4369
4395
  originalFilename: string;
4370
4396
  }[] | [string, string] | null | undefined>;
4397
+ creator?: "system" | "user" | undefined;
4371
4398
  createdBySignature?: string | null | undefined;
4372
4399
  createdAtLocation?: string | null | undefined;
4373
4400
  annotation?: Record<string, string | number | boolean | {
@@ -4416,6 +4443,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4416
4443
  }>, z.ZodObject<z.objectUtil.extendShape<{
4417
4444
  id: z.ZodString;
4418
4445
  transactionId: z.ZodString;
4446
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
4419
4447
  createdAt: z.ZodString;
4420
4448
  createdBy: z.ZodString;
4421
4449
  createdByRole: z.ZodString;
@@ -4728,6 +4756,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4728
4756
  filename: string;
4729
4757
  originalFilename: string;
4730
4758
  }[] | [string, string] | null | undefined>;
4759
+ creator?: "system" | "user" | undefined;
4731
4760
  createdBySignature?: string | null | undefined;
4732
4761
  createdAtLocation?: string | null | undefined;
4733
4762
  annotation?: Record<string, string | number | boolean | {
@@ -4824,6 +4853,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4824
4853
  filename: string;
4825
4854
  originalFilename: string;
4826
4855
  }[] | [string, string] | null | undefined>;
4856
+ creator?: "system" | "user" | undefined;
4827
4857
  createdBySignature?: string | null | undefined;
4828
4858
  createdAtLocation?: string | null | undefined;
4829
4859
  annotation?: Record<string, string | number | boolean | {
@@ -4873,6 +4903,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4873
4903
  }>, z.ZodObject<z.objectUtil.extendShape<{
4874
4904
  id: z.ZodString;
4875
4905
  transactionId: z.ZodString;
4906
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
4876
4907
  createdAt: z.ZodString;
4877
4908
  createdBy: z.ZodString;
4878
4909
  createdByRole: z.ZodString;
@@ -5184,6 +5215,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5184
5215
  filename: string;
5185
5216
  originalFilename: string;
5186
5217
  }[] | [string, string] | null | undefined>;
5218
+ creator?: "system" | "user" | undefined;
5187
5219
  createdBySignature?: string | null | undefined;
5188
5220
  createdAtLocation?: string | null | undefined;
5189
5221
  annotation?: Record<string, string | number | boolean | {
@@ -5279,6 +5311,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5279
5311
  filename: string;
5280
5312
  originalFilename: string;
5281
5313
  }[] | [string, string] | null | undefined>;
5314
+ creator?: "system" | "user" | undefined;
5282
5315
  createdBySignature?: string | null | undefined;
5283
5316
  createdAtLocation?: string | null | undefined;
5284
5317
  annotation?: Record<string, string | number | boolean | {
@@ -5327,6 +5360,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5327
5360
  }>, z.ZodObject<z.objectUtil.extendShape<{
5328
5361
  id: z.ZodString;
5329
5362
  transactionId: z.ZodString;
5363
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
5330
5364
  createdAt: z.ZodString;
5331
5365
  createdBy: z.ZodString;
5332
5366
  createdByRole: z.ZodString;
@@ -5640,6 +5674,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5640
5674
  originalFilename: string;
5641
5675
  }[] | [string, string] | null | undefined>;
5642
5676
  assignedTo: string;
5677
+ creator?: "system" | "user" | undefined;
5643
5678
  createdBySignature?: string | null | undefined;
5644
5679
  createdAtLocation?: string | null | undefined;
5645
5680
  annotation?: Record<string, string | number | boolean | {
@@ -5736,6 +5771,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5736
5771
  originalFilename: string;
5737
5772
  }[] | [string, string] | null | undefined>;
5738
5773
  assignedTo: string;
5774
+ creator?: "system" | "user" | undefined;
5739
5775
  createdBySignature?: string | null | undefined;
5740
5776
  createdAtLocation?: string | null | undefined;
5741
5777
  annotation?: Record<string, string | number | boolean | {
@@ -5784,6 +5820,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5784
5820
  }>, z.ZodObject<z.objectUtil.extendShape<{
5785
5821
  id: z.ZodString;
5786
5822
  transactionId: z.ZodString;
5823
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
5787
5824
  createdAt: z.ZodString;
5788
5825
  createdBy: z.ZodString;
5789
5826
  createdByRole: z.ZodString;
@@ -6095,6 +6132,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6095
6132
  filename: string;
6096
6133
  originalFilename: string;
6097
6134
  }[] | [string, string] | null | undefined>;
6135
+ creator?: "system" | "user" | undefined;
6098
6136
  createdBySignature?: string | null | undefined;
6099
6137
  createdAtLocation?: string | null | undefined;
6100
6138
  annotation?: Record<string, string | number | boolean | {
@@ -6190,6 +6228,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6190
6228
  filename: string;
6191
6229
  originalFilename: string;
6192
6230
  }[] | [string, string] | null | undefined>;
6231
+ creator?: "system" | "user" | undefined;
6193
6232
  createdBySignature?: string | null | undefined;
6194
6233
  createdAtLocation?: string | null | undefined;
6195
6234
  annotation?: Record<string, string | number | boolean | {
@@ -6238,6 +6277,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6238
6277
  }>, z.ZodObject<z.objectUtil.extendShape<{
6239
6278
  id: z.ZodString;
6240
6279
  transactionId: z.ZodString;
6280
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
6241
6281
  createdAt: z.ZodString;
6242
6282
  createdBy: z.ZodString;
6243
6283
  createdByRole: z.ZodString;
@@ -6551,6 +6591,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6551
6591
  originalFilename: string;
6552
6592
  }[] | [string, string] | null | undefined>;
6553
6593
  requestId: string;
6594
+ creator?: "system" | "user" | undefined;
6554
6595
  createdBySignature?: string | null | undefined;
6555
6596
  createdAtLocation?: string | null | undefined;
6556
6597
  annotation?: Record<string, string | number | boolean | {
@@ -6647,6 +6688,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6647
6688
  originalFilename: string;
6648
6689
  }[] | [string, string] | null | undefined>;
6649
6690
  requestId: string;
6691
+ creator?: "system" | "user" | undefined;
6650
6692
  createdBySignature?: string | null | undefined;
6651
6693
  createdAtLocation?: string | null | undefined;
6652
6694
  annotation?: Record<string, string | number | boolean | {
@@ -6695,6 +6737,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6695
6737
  }>, z.ZodObject<z.objectUtil.extendShape<{
6696
6738
  id: z.ZodString;
6697
6739
  transactionId: z.ZodString;
6740
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
6698
6741
  createdAt: z.ZodString;
6699
6742
  createdBy: z.ZodString;
6700
6743
  createdByRole: z.ZodString;
@@ -7008,6 +7051,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7008
7051
  originalFilename: string;
7009
7052
  }[] | [string, string] | null | undefined>;
7010
7053
  requestId: string;
7054
+ creator?: "system" | "user" | undefined;
7011
7055
  createdBySignature?: string | null | undefined;
7012
7056
  createdAtLocation?: string | null | undefined;
7013
7057
  annotation?: Record<string, string | number | boolean | {
@@ -7104,6 +7148,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7104
7148
  originalFilename: string;
7105
7149
  }[] | [string, string] | null | undefined>;
7106
7150
  requestId: string;
7151
+ creator?: "system" | "user" | undefined;
7107
7152
  createdBySignature?: string | null | undefined;
7108
7153
  createdAtLocation?: string | null | undefined;
7109
7154
  annotation?: Record<string, string | number | boolean | {
@@ -7152,6 +7197,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7152
7197
  }>, z.ZodObject<z.objectUtil.extendShape<{
7153
7198
  id: z.ZodString;
7154
7199
  transactionId: z.ZodString;
7200
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
7155
7201
  createdAt: z.ZodString;
7156
7202
  createdBy: z.ZodString;
7157
7203
  createdByRole: z.ZodString;
@@ -7465,6 +7511,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7465
7511
  originalFilename: string;
7466
7512
  }[] | [string, string] | null | undefined>;
7467
7513
  assignedTo: null;
7514
+ creator?: "system" | "user" | undefined;
7468
7515
  createdBySignature?: string | null | undefined;
7469
7516
  createdAtLocation?: string | null | undefined;
7470
7517
  annotation?: Record<string, string | number | boolean | {
@@ -7561,6 +7608,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7561
7608
  originalFilename: string;
7562
7609
  }[] | [string, string] | null | undefined>;
7563
7610
  assignedTo: null;
7611
+ creator?: "system" | "user" | undefined;
7564
7612
  createdBySignature?: string | null | undefined;
7565
7613
  createdAtLocation?: string | null | undefined;
7566
7614
  annotation?: Record<string, string | number | boolean | {
@@ -7609,6 +7657,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7609
7657
  }>, z.ZodObject<z.objectUtil.extendShape<{
7610
7658
  id: z.ZodString;
7611
7659
  transactionId: z.ZodString;
7660
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
7612
7661
  createdAt: z.ZodString;
7613
7662
  createdBy: z.ZodString;
7614
7663
  createdByRole: z.ZodString;
@@ -7920,6 +7969,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7920
7969
  filename: string;
7921
7970
  originalFilename: string;
7922
7971
  }[] | [string, string] | null | undefined>;
7972
+ creator?: "system" | "user" | undefined;
7923
7973
  createdBySignature?: string | null | undefined;
7924
7974
  createdAtLocation?: string | null | undefined;
7925
7975
  annotation?: Record<string, string | number | boolean | {
@@ -8015,6 +8065,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8015
8065
  filename: string;
8016
8066
  originalFilename: string;
8017
8067
  }[] | [string, string] | null | undefined>;
8068
+ creator?: "system" | "user" | undefined;
8018
8069
  createdBySignature?: string | null | undefined;
8019
8070
  createdAtLocation?: string | null | undefined;
8020
8071
  annotation?: Record<string, string | number | boolean | {
@@ -8063,6 +8114,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8063
8114
  }>, z.ZodObject<z.objectUtil.extendShape<{
8064
8115
  id: z.ZodString;
8065
8116
  transactionId: z.ZodString;
8117
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
8066
8118
  createdAt: z.ZodString;
8067
8119
  createdBy: z.ZodString;
8068
8120
  createdByRole: z.ZodString;
@@ -8374,6 +8426,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8374
8426
  filename: string;
8375
8427
  originalFilename: string;
8376
8428
  }[] | [string, string] | null | undefined>;
8429
+ creator?: "system" | "user" | undefined;
8377
8430
  createdBySignature?: string | null | undefined;
8378
8431
  createdAtLocation?: string | null | undefined;
8379
8432
  annotation?: Record<string, string | number | boolean | {
@@ -8469,6 +8522,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8469
8522
  filename: string;
8470
8523
  originalFilename: string;
8471
8524
  }[] | [string, string] | null | undefined>;
8525
+ creator?: "system" | "user" | undefined;
8472
8526
  createdBySignature?: string | null | undefined;
8473
8527
  createdAtLocation?: string | null | undefined;
8474
8528
  annotation?: Record<string, string | number | boolean | {
@@ -8519,6 +8573,7 @@ export type ActionDocument = z.infer<typeof ActionDocument>;
8519
8573
  export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendShape<Omit<{
8520
8574
  id: z.ZodString;
8521
8575
  transactionId: z.ZodString;
8576
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
8522
8577
  createdAt: z.ZodString;
8523
8578
  createdBy: z.ZodString;
8524
8579
  createdByRole: z.ZodString;
@@ -8789,6 +8844,7 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
8789
8844
  createdAt: string;
8790
8845
  createdBy: string;
8791
8846
  createdByRole: string;
8847
+ creator?: "system" | "user" | undefined;
8792
8848
  createdBySignature?: string | null | undefined;
8793
8849
  createdAtLocation?: string | null | undefined;
8794
8850
  originalActionId?: string | undefined;
@@ -8800,6 +8856,7 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
8800
8856
  createdAt: string;
8801
8857
  createdBy: string;
8802
8858
  createdByRole: string;
8859
+ creator?: "system" | "user" | undefined;
8803
8860
  createdBySignature?: string | null | undefined;
8804
8861
  createdAtLocation?: string | null | undefined;
8805
8862
  originalActionId?: string | undefined;
@@ -8808,6 +8865,7 @@ export type AsyncRejectActionDocument = z.infer<typeof AsyncRejectActionDocument
8808
8865
  export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
8809
8866
  id: z.ZodString;
8810
8867
  transactionId: z.ZodString;
8868
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
8811
8869
  createdAt: z.ZodString;
8812
8870
  createdBy: z.ZodString;
8813
8871
  createdByRole: z.ZodString;
@@ -9119,6 +9177,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
9119
9177
  filename: string;
9120
9178
  originalFilename: string;
9121
9179
  }[] | [string, string] | null | undefined>;
9180
+ creator?: "system" | "user" | undefined;
9122
9181
  createdBySignature?: string | null | undefined;
9123
9182
  createdAtLocation?: string | null | undefined;
9124
9183
  annotation?: Record<string, string | number | boolean | {
@@ -9214,6 +9273,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
9214
9273
  filename: string;
9215
9274
  originalFilename: string;
9216
9275
  }[] | [string, string] | null | undefined>;
9276
+ creator?: "system" | "user" | undefined;
9217
9277
  createdBySignature?: string | null | undefined;
9218
9278
  createdAtLocation?: string | null | undefined;
9219
9279
  annotation?: Record<string, string | number | boolean | {
@@ -9262,6 +9322,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
9262
9322
  }>, z.ZodObject<z.objectUtil.extendShape<{
9263
9323
  id: z.ZodString;
9264
9324
  transactionId: z.ZodString;
9325
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
9265
9326
  createdAt: z.ZodString;
9266
9327
  createdBy: z.ZodString;
9267
9328
  createdByRole: z.ZodString;
@@ -9573,6 +9634,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
9573
9634
  filename: string;
9574
9635
  originalFilename: string;
9575
9636
  }[] | [string, string] | null | undefined>;
9637
+ creator?: "system" | "user" | undefined;
9576
9638
  createdBySignature?: string | null | undefined;
9577
9639
  createdAtLocation?: string | null | undefined;
9578
9640
  annotation?: Record<string, string | number | boolean | {
@@ -9668,6 +9730,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
9668
9730
  filename: string;
9669
9731
  originalFilename: string;
9670
9732
  }[] | [string, string] | null | undefined>;
9733
+ creator?: "system" | "user" | undefined;
9671
9734
  createdBySignature?: string | null | undefined;
9672
9735
  createdAtLocation?: string | null | undefined;
9673
9736
  annotation?: Record<string, string | number | boolean | {
@@ -9716,6 +9779,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
9716
9779
  }>, z.ZodObject<z.objectUtil.extendShape<{
9717
9780
  id: z.ZodString;
9718
9781
  transactionId: z.ZodString;
9782
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
9719
9783
  createdAt: z.ZodString;
9720
9784
  createdBy: z.ZodString;
9721
9785
  createdByRole: z.ZodString;
@@ -10041,6 +10105,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10041
10105
  filename: string;
10042
10106
  originalFilename: string;
10043
10107
  }[] | [string, string] | null | undefined>;
10108
+ creator?: "system" | "user" | undefined;
10044
10109
  createdBySignature?: string | null | undefined;
10045
10110
  createdAtLocation?: string | null | undefined;
10046
10111
  annotation?: Record<string, string | number | boolean | {
@@ -10140,6 +10205,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10140
10205
  filename: string;
10141
10206
  originalFilename: string;
10142
10207
  }[] | [string, string] | null | undefined>;
10208
+ creator?: "system" | "user" | undefined;
10143
10209
  createdBySignature?: string | null | undefined;
10144
10210
  createdAtLocation?: string | null | undefined;
10145
10211
  annotation?: Record<string, string | number | boolean | {
@@ -10188,6 +10254,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10188
10254
  }>, z.ZodObject<z.objectUtil.extendShape<{
10189
10255
  id: z.ZodString;
10190
10256
  transactionId: z.ZodString;
10257
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
10191
10258
  createdAt: z.ZodString;
10192
10259
  createdBy: z.ZodString;
10193
10260
  createdByRole: z.ZodString;
@@ -10499,6 +10566,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10499
10566
  filename: string;
10500
10567
  originalFilename: string;
10501
10568
  }[] | [string, string] | null | undefined>;
10569
+ creator?: "system" | "user" | undefined;
10502
10570
  createdBySignature?: string | null | undefined;
10503
10571
  createdAtLocation?: string | null | undefined;
10504
10572
  annotation?: Record<string, string | number | boolean | {
@@ -10594,6 +10662,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10594
10662
  filename: string;
10595
10663
  originalFilename: string;
10596
10664
  }[] | [string, string] | null | undefined>;
10665
+ creator?: "system" | "user" | undefined;
10597
10666
  createdBySignature?: string | null | undefined;
10598
10667
  createdAtLocation?: string | null | undefined;
10599
10668
  annotation?: Record<string, string | number | boolean | {
@@ -10642,6 +10711,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10642
10711
  }>, z.ZodObject<z.objectUtil.extendShape<{
10643
10712
  id: z.ZodString;
10644
10713
  transactionId: z.ZodString;
10714
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
10645
10715
  createdAt: z.ZodString;
10646
10716
  createdBy: z.ZodString;
10647
10717
  createdByRole: z.ZodString;
@@ -10967,6 +11037,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10967
11037
  filename: string;
10968
11038
  originalFilename: string;
10969
11039
  }[] | [string, string] | null | undefined>;
11040
+ creator?: "system" | "user" | undefined;
10970
11041
  createdBySignature?: string | null | undefined;
10971
11042
  createdAtLocation?: string | null | undefined;
10972
11043
  annotation?: Record<string, string | number | boolean | {
@@ -11066,6 +11137,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11066
11137
  filename: string;
11067
11138
  originalFilename: string;
11068
11139
  }[] | [string, string] | null | undefined>;
11140
+ creator?: "system" | "user" | undefined;
11069
11141
  createdBySignature?: string | null | undefined;
11070
11142
  createdAtLocation?: string | null | undefined;
11071
11143
  annotation?: Record<string, string | number | boolean | {
@@ -11114,6 +11186,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11114
11186
  }>, z.ZodObject<z.objectUtil.extendShape<{
11115
11187
  id: z.ZodString;
11116
11188
  transactionId: z.ZodString;
11189
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
11117
11190
  createdAt: z.ZodString;
11118
11191
  createdBy: z.ZodString;
11119
11192
  createdByRole: z.ZodString;
@@ -11425,6 +11498,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11425
11498
  filename: string;
11426
11499
  originalFilename: string;
11427
11500
  }[] | [string, string] | null | undefined>;
11501
+ creator?: "system" | "user" | undefined;
11428
11502
  createdBySignature?: string | null | undefined;
11429
11503
  createdAtLocation?: string | null | undefined;
11430
11504
  annotation?: Record<string, string | number | boolean | {
@@ -11520,6 +11594,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11520
11594
  filename: string;
11521
11595
  originalFilename: string;
11522
11596
  }[] | [string, string] | null | undefined>;
11597
+ creator?: "system" | "user" | undefined;
11523
11598
  createdBySignature?: string | null | undefined;
11524
11599
  createdAtLocation?: string | null | undefined;
11525
11600
  annotation?: Record<string, string | number | boolean | {
@@ -11568,6 +11643,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11568
11643
  }>, z.ZodObject<z.objectUtil.extendShape<{
11569
11644
  id: z.ZodString;
11570
11645
  transactionId: z.ZodString;
11646
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
11571
11647
  createdAt: z.ZodString;
11572
11648
  createdBy: z.ZodString;
11573
11649
  createdByRole: z.ZodString;
@@ -11880,6 +11956,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11880
11956
  filename: string;
11881
11957
  originalFilename: string;
11882
11958
  }[] | [string, string] | null | undefined>;
11959
+ creator?: "system" | "user" | undefined;
11883
11960
  createdBySignature?: string | null | undefined;
11884
11961
  createdAtLocation?: string | null | undefined;
11885
11962
  annotation?: Record<string, string | number | boolean | {
@@ -11976,6 +12053,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11976
12053
  filename: string;
11977
12054
  originalFilename: string;
11978
12055
  }[] | [string, string] | null | undefined>;
12056
+ creator?: "system" | "user" | undefined;
11979
12057
  createdBySignature?: string | null | undefined;
11980
12058
  createdAtLocation?: string | null | undefined;
11981
12059
  annotation?: Record<string, string | number | boolean | {
@@ -12025,6 +12103,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12025
12103
  }>, z.ZodObject<z.objectUtil.extendShape<{
12026
12104
  id: z.ZodString;
12027
12105
  transactionId: z.ZodString;
12106
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
12028
12107
  createdAt: z.ZodString;
12029
12108
  createdBy: z.ZodString;
12030
12109
  createdByRole: z.ZodString;
@@ -12336,6 +12415,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12336
12415
  filename: string;
12337
12416
  originalFilename: string;
12338
12417
  }[] | [string, string] | null | undefined>;
12418
+ creator?: "system" | "user" | undefined;
12339
12419
  createdBySignature?: string | null | undefined;
12340
12420
  createdAtLocation?: string | null | undefined;
12341
12421
  annotation?: Record<string, string | number | boolean | {
@@ -12431,6 +12511,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12431
12511
  filename: string;
12432
12512
  originalFilename: string;
12433
12513
  }[] | [string, string] | null | undefined>;
12514
+ creator?: "system" | "user" | undefined;
12434
12515
  createdBySignature?: string | null | undefined;
12435
12516
  createdAtLocation?: string | null | undefined;
12436
12517
  annotation?: Record<string, string | number | boolean | {
@@ -12479,6 +12560,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12479
12560
  }>, z.ZodObject<z.objectUtil.extendShape<{
12480
12561
  id: z.ZodString;
12481
12562
  transactionId: z.ZodString;
12563
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
12482
12564
  createdAt: z.ZodString;
12483
12565
  createdBy: z.ZodString;
12484
12566
  createdByRole: z.ZodString;
@@ -12792,6 +12874,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12792
12874
  originalFilename: string;
12793
12875
  }[] | [string, string] | null | undefined>;
12794
12876
  assignedTo: string;
12877
+ creator?: "system" | "user" | undefined;
12795
12878
  createdBySignature?: string | null | undefined;
12796
12879
  createdAtLocation?: string | null | undefined;
12797
12880
  annotation?: Record<string, string | number | boolean | {
@@ -12888,6 +12971,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12888
12971
  originalFilename: string;
12889
12972
  }[] | [string, string] | null | undefined>;
12890
12973
  assignedTo: string;
12974
+ creator?: "system" | "user" | undefined;
12891
12975
  createdBySignature?: string | null | undefined;
12892
12976
  createdAtLocation?: string | null | undefined;
12893
12977
  annotation?: Record<string, string | number | boolean | {
@@ -12936,6 +13020,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12936
13020
  }>, z.ZodObject<z.objectUtil.extendShape<{
12937
13021
  id: z.ZodString;
12938
13022
  transactionId: z.ZodString;
13023
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
12939
13024
  createdAt: z.ZodString;
12940
13025
  createdBy: z.ZodString;
12941
13026
  createdByRole: z.ZodString;
@@ -13247,6 +13332,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13247
13332
  filename: string;
13248
13333
  originalFilename: string;
13249
13334
  }[] | [string, string] | null | undefined>;
13335
+ creator?: "system" | "user" | undefined;
13250
13336
  createdBySignature?: string | null | undefined;
13251
13337
  createdAtLocation?: string | null | undefined;
13252
13338
  annotation?: Record<string, string | number | boolean | {
@@ -13342,6 +13428,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13342
13428
  filename: string;
13343
13429
  originalFilename: string;
13344
13430
  }[] | [string, string] | null | undefined>;
13431
+ creator?: "system" | "user" | undefined;
13345
13432
  createdBySignature?: string | null | undefined;
13346
13433
  createdAtLocation?: string | null | undefined;
13347
13434
  annotation?: Record<string, string | number | boolean | {
@@ -13390,6 +13477,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13390
13477
  }>, z.ZodObject<z.objectUtil.extendShape<{
13391
13478
  id: z.ZodString;
13392
13479
  transactionId: z.ZodString;
13480
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
13393
13481
  createdAt: z.ZodString;
13394
13482
  createdBy: z.ZodString;
13395
13483
  createdByRole: z.ZodString;
@@ -13703,6 +13791,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13703
13791
  originalFilename: string;
13704
13792
  }[] | [string, string] | null | undefined>;
13705
13793
  requestId: string;
13794
+ creator?: "system" | "user" | undefined;
13706
13795
  createdBySignature?: string | null | undefined;
13707
13796
  createdAtLocation?: string | null | undefined;
13708
13797
  annotation?: Record<string, string | number | boolean | {
@@ -13799,6 +13888,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13799
13888
  originalFilename: string;
13800
13889
  }[] | [string, string] | null | undefined>;
13801
13890
  requestId: string;
13891
+ creator?: "system" | "user" | undefined;
13802
13892
  createdBySignature?: string | null | undefined;
13803
13893
  createdAtLocation?: string | null | undefined;
13804
13894
  annotation?: Record<string, string | number | boolean | {
@@ -13847,6 +13937,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13847
13937
  }>, z.ZodObject<z.objectUtil.extendShape<{
13848
13938
  id: z.ZodString;
13849
13939
  transactionId: z.ZodString;
13940
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
13850
13941
  createdAt: z.ZodString;
13851
13942
  createdBy: z.ZodString;
13852
13943
  createdByRole: z.ZodString;
@@ -14160,6 +14251,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14160
14251
  originalFilename: string;
14161
14252
  }[] | [string, string] | null | undefined>;
14162
14253
  requestId: string;
14254
+ creator?: "system" | "user" | undefined;
14163
14255
  createdBySignature?: string | null | undefined;
14164
14256
  createdAtLocation?: string | null | undefined;
14165
14257
  annotation?: Record<string, string | number | boolean | {
@@ -14256,6 +14348,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14256
14348
  originalFilename: string;
14257
14349
  }[] | [string, string] | null | undefined>;
14258
14350
  requestId: string;
14351
+ creator?: "system" | "user" | undefined;
14259
14352
  createdBySignature?: string | null | undefined;
14260
14353
  createdAtLocation?: string | null | undefined;
14261
14354
  annotation?: Record<string, string | number | boolean | {
@@ -14304,6 +14397,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14304
14397
  }>, z.ZodObject<z.objectUtil.extendShape<{
14305
14398
  id: z.ZodString;
14306
14399
  transactionId: z.ZodString;
14400
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
14307
14401
  createdAt: z.ZodString;
14308
14402
  createdBy: z.ZodString;
14309
14403
  createdByRole: z.ZodString;
@@ -14617,6 +14711,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14617
14711
  originalFilename: string;
14618
14712
  }[] | [string, string] | null | undefined>;
14619
14713
  assignedTo: null;
14714
+ creator?: "system" | "user" | undefined;
14620
14715
  createdBySignature?: string | null | undefined;
14621
14716
  createdAtLocation?: string | null | undefined;
14622
14717
  annotation?: Record<string, string | number | boolean | {
@@ -14713,6 +14808,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14713
14808
  originalFilename: string;
14714
14809
  }[] | [string, string] | null | undefined>;
14715
14810
  assignedTo: null;
14811
+ creator?: "system" | "user" | undefined;
14716
14812
  createdBySignature?: string | null | undefined;
14717
14813
  createdAtLocation?: string | null | undefined;
14718
14814
  annotation?: Record<string, string | number | boolean | {
@@ -14761,6 +14857,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14761
14857
  }>, z.ZodObject<z.objectUtil.extendShape<{
14762
14858
  id: z.ZodString;
14763
14859
  transactionId: z.ZodString;
14860
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
14764
14861
  createdAt: z.ZodString;
14765
14862
  createdBy: z.ZodString;
14766
14863
  createdByRole: z.ZodString;
@@ -15072,6 +15169,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15072
15169
  filename: string;
15073
15170
  originalFilename: string;
15074
15171
  }[] | [string, string] | null | undefined>;
15172
+ creator?: "system" | "user" | undefined;
15075
15173
  createdBySignature?: string | null | undefined;
15076
15174
  createdAtLocation?: string | null | undefined;
15077
15175
  annotation?: Record<string, string | number | boolean | {
@@ -15167,6 +15265,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15167
15265
  filename: string;
15168
15266
  originalFilename: string;
15169
15267
  }[] | [string, string] | null | undefined>;
15268
+ creator?: "system" | "user" | undefined;
15170
15269
  createdBySignature?: string | null | undefined;
15171
15270
  createdAtLocation?: string | null | undefined;
15172
15271
  annotation?: Record<string, string | number | boolean | {
@@ -15215,6 +15314,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15215
15314
  }>, z.ZodObject<z.objectUtil.extendShape<{
15216
15315
  id: z.ZodString;
15217
15316
  transactionId: z.ZodString;
15317
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
15218
15318
  createdAt: z.ZodString;
15219
15319
  createdBy: z.ZodString;
15220
15320
  createdByRole: z.ZodString;
@@ -15526,6 +15626,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15526
15626
  filename: string;
15527
15627
  originalFilename: string;
15528
15628
  }[] | [string, string] | null | undefined>;
15629
+ creator?: "system" | "user" | undefined;
15529
15630
  createdBySignature?: string | null | undefined;
15530
15631
  createdAtLocation?: string | null | undefined;
15531
15632
  annotation?: Record<string, string | number | boolean | {
@@ -15621,6 +15722,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15621
15722
  filename: string;
15622
15723
  originalFilename: string;
15623
15724
  }[] | [string, string] | null | undefined>;
15725
+ creator?: "system" | "user" | undefined;
15624
15726
  createdBySignature?: string | null | undefined;
15625
15727
  createdAtLocation?: string | null | undefined;
15626
15728
  annotation?: Record<string, string | number | boolean | {
@@ -15669,6 +15771,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15669
15771
  }>]>, z.ZodObject<z.objectUtil.extendShape<Omit<{
15670
15772
  id: z.ZodString;
15671
15773
  transactionId: z.ZodString;
15774
+ creator: z.ZodOptional<z.ZodEnum<["user", "system"]>>;
15672
15775
  createdAt: z.ZodString;
15673
15776
  createdBy: z.ZodString;
15674
15777
  createdByRole: z.ZodString;
@@ -15939,6 +16042,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15939
16042
  createdAt: string;
15940
16043
  createdBy: string;
15941
16044
  createdByRole: string;
16045
+ creator?: "system" | "user" | undefined;
15942
16046
  createdBySignature?: string | null | undefined;
15943
16047
  createdAtLocation?: string | null | undefined;
15944
16048
  originalActionId?: string | undefined;
@@ -15950,6 +16054,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15950
16054
  createdAt: string;
15951
16055
  createdBy: string;
15952
16056
  createdByRole: string;
16057
+ creator?: "system" | "user" | undefined;
15953
16058
  createdBySignature?: string | null | undefined;
15954
16059
  createdAtLocation?: string | null | undefined;
15955
16060
  originalActionId?: string | undefined;