@opencrvs/toolkit 1.9.7-rc.4e5787b → 1.9.7-rc.51d3a8b
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 +239 -223
- package/dist/commons/events/ActionConfig.d.ts +70 -0
- package/dist/commons/events/ActionDocument.d.ts +47 -47
- package/dist/commons/events/Draft.d.ts +1 -1
- package/dist/commons/events/EventConfig.d.ts +56 -0
- package/dist/commons/events/EventDocument.d.ts +19 -19
- package/dist/commons/events/EventIndex.d.ts +3 -3
- package/dist/commons/events/EventMetadata.d.ts +7 -7
- package/dist/commons/events/FieldConfig.d.ts +21 -0
- package/dist/commons/events/FormConfig.d.ts +42 -0
- package/dist/commons/events/PageConfig.d.ts +28 -0
- package/dist/commons/events/defineConfig.d.ts +8 -0
- package/dist/commons/events/state/index.d.ts +3 -3
- package/dist/commons/events/state/utils.d.ts +21 -21
- package/dist/commons/events/utils.d.ts +35 -19
- package/dist/events/index.js +11 -5
- package/dist/notification/index.js +11 -5
- package/dist/scopes/index.d.ts +3 -2
- package/dist/scopes/index.js +3 -1
- package/package.json +1 -1
|
@@ -616,6 +616,13 @@ export declare const DeclarationReviewConfig: z.ZodObject<{
|
|
|
616
616
|
h1: "h1";
|
|
617
617
|
}>>;
|
|
618
618
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
619
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
620
|
+
start: "start";
|
|
621
|
+
end: "end";
|
|
622
|
+
left: "left";
|
|
623
|
+
center: "center";
|
|
624
|
+
right: "right";
|
|
625
|
+
}>>;
|
|
619
626
|
}, z.core.$strip>>;
|
|
620
627
|
}, z.core.$strip>>;
|
|
621
628
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3200,6 +3207,13 @@ declare const CustomActionConfig: z.ZodObject<{
|
|
|
3200
3207
|
h1: "h1";
|
|
3201
3208
|
}>>;
|
|
3202
3209
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
3210
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
3211
|
+
start: "start";
|
|
3212
|
+
end: "end";
|
|
3213
|
+
left: "left";
|
|
3214
|
+
center: "center";
|
|
3215
|
+
right: "right";
|
|
3216
|
+
}>>;
|
|
3203
3217
|
}, z.core.$strip>>;
|
|
3204
3218
|
}, z.core.$strip>>;
|
|
3205
3219
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -5650,6 +5664,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5650
5664
|
h1: "h1";
|
|
5651
5665
|
}>>;
|
|
5652
5666
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
5667
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
5668
|
+
start: "start";
|
|
5669
|
+
end: "end";
|
|
5670
|
+
left: "left";
|
|
5671
|
+
center: "center";
|
|
5672
|
+
right: "right";
|
|
5673
|
+
}>>;
|
|
5653
5674
|
}, z.core.$strip>>;
|
|
5654
5675
|
}, z.core.$strip>>;
|
|
5655
5676
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -8111,6 +8132,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8111
8132
|
h1: "h1";
|
|
8112
8133
|
}>>;
|
|
8113
8134
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
8135
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
8136
|
+
start: "start";
|
|
8137
|
+
end: "end";
|
|
8138
|
+
left: "left";
|
|
8139
|
+
center: "center";
|
|
8140
|
+
right: "right";
|
|
8141
|
+
}>>;
|
|
8114
8142
|
}, z.core.$strip>>;
|
|
8115
8143
|
}, z.core.$strip>>;
|
|
8116
8144
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -10840,6 +10868,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10840
10868
|
h1: "h1";
|
|
10841
10869
|
}>>;
|
|
10842
10870
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
10871
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
10872
|
+
start: "start";
|
|
10873
|
+
end: "end";
|
|
10874
|
+
left: "left";
|
|
10875
|
+
center: "center";
|
|
10876
|
+
right: "right";
|
|
10877
|
+
}>>;
|
|
10843
10878
|
}, z.core.$strip>>;
|
|
10844
10879
|
}, z.core.$strip>>;
|
|
10845
10880
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -13168,6 +13203,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
13168
13203
|
h1: "h1";
|
|
13169
13204
|
}>>;
|
|
13170
13205
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
13206
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
13207
|
+
start: "start";
|
|
13208
|
+
end: "end";
|
|
13209
|
+
left: "left";
|
|
13210
|
+
center: "center";
|
|
13211
|
+
right: "right";
|
|
13212
|
+
}>>;
|
|
13171
13213
|
}, z.core.$strip>>;
|
|
13172
13214
|
}, z.core.$strip>>;
|
|
13173
13215
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -15642,6 +15684,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
15642
15684
|
h1: "h1";
|
|
15643
15685
|
}>>;
|
|
15644
15686
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
15687
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
15688
|
+
start: "start";
|
|
15689
|
+
end: "end";
|
|
15690
|
+
left: "left";
|
|
15691
|
+
center: "center";
|
|
15692
|
+
right: "right";
|
|
15693
|
+
}>>;
|
|
15645
15694
|
}, z.core.$strip>>;
|
|
15646
15695
|
}, z.core.$strip>>;
|
|
15647
15696
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -17970,6 +18019,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17970
18019
|
h1: "h1";
|
|
17971
18020
|
}>>;
|
|
17972
18021
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
18022
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
18023
|
+
start: "start";
|
|
18024
|
+
end: "end";
|
|
18025
|
+
left: "left";
|
|
18026
|
+
center: "center";
|
|
18027
|
+
right: "right";
|
|
18028
|
+
}>>;
|
|
17973
18029
|
}, z.core.$strip>>;
|
|
17974
18030
|
}, z.core.$strip>>;
|
|
17975
18031
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -20704,6 +20760,13 @@ export declare const ActionConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
20704
20760
|
h1: "h1";
|
|
20705
20761
|
}>>;
|
|
20706
20762
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
20763
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
20764
|
+
start: "start";
|
|
20765
|
+
end: "end";
|
|
20766
|
+
left: "left";
|
|
20767
|
+
center: "center";
|
|
20768
|
+
right: "right";
|
|
20769
|
+
}>>;
|
|
20707
20770
|
}, z.core.$strip>>;
|
|
20708
20771
|
}, z.core.$strip>>;
|
|
20709
20772
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -23176,6 +23239,13 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
23176
23239
|
h1: "h1";
|
|
23177
23240
|
}>>;
|
|
23178
23241
|
hint: z.ZodOptional<z.ZodBoolean>;
|
|
23242
|
+
textAlign: z.ZodOptional<z.ZodEnum<{
|
|
23243
|
+
start: "start";
|
|
23244
|
+
end: "end";
|
|
23245
|
+
left: "left";
|
|
23246
|
+
center: "center";
|
|
23247
|
+
right: "right";
|
|
23248
|
+
}>>;
|
|
23179
23249
|
}, z.core.$strip>>;
|
|
23180
23250
|
}, z.core.$strip>>;
|
|
23181
23251
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -25,7 +25,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
|
25
25
|
}>;
|
|
26
26
|
createdAt: z.ZodString;
|
|
27
27
|
createdBy: z.ZodString;
|
|
28
|
-
createdByRole: z.ZodString
|
|
28
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
29
29
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30
30
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
31
31
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -47,7 +47,7 @@ declare const AssignedAction: z.ZodObject<{
|
|
|
47
47
|
}>;
|
|
48
48
|
createdAt: z.ZodString;
|
|
49
49
|
createdBy: z.ZodString;
|
|
50
|
-
createdByRole: z.ZodString
|
|
50
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
51
51
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
52
52
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
53
53
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -70,7 +70,7 @@ export declare const RegisterAction: z.ZodObject<{
|
|
|
70
70
|
}>;
|
|
71
71
|
createdAt: z.ZodString;
|
|
72
72
|
createdBy: z.ZodString;
|
|
73
|
-
createdByRole: z.ZodString
|
|
73
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
74
74
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
75
75
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
76
76
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -102,7 +102,7 @@ export declare const DuplicateDetectedAction: z.ZodObject<{
|
|
|
102
102
|
}>;
|
|
103
103
|
createdAt: z.ZodString;
|
|
104
104
|
createdBy: z.ZodString;
|
|
105
|
-
createdByRole: z.ZodString
|
|
105
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
106
106
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
107
107
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
108
108
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -131,7 +131,7 @@ declare const CreatedAction: z.ZodObject<{
|
|
|
131
131
|
}>;
|
|
132
132
|
createdAt: z.ZodString;
|
|
133
133
|
createdBy: z.ZodString;
|
|
134
|
-
createdByRole: z.ZodString
|
|
134
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
135
135
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
136
136
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
137
137
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -153,7 +153,7 @@ declare const EditAction: z.ZodObject<{
|
|
|
153
153
|
}>;
|
|
154
154
|
createdAt: z.ZodString;
|
|
155
155
|
createdBy: z.ZodString;
|
|
156
|
-
createdByRole: z.ZodString
|
|
156
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
157
157
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
158
158
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
159
159
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -183,7 +183,7 @@ declare const PrintCertificateAction: z.ZodObject<{
|
|
|
183
183
|
}>;
|
|
184
184
|
createdAt: z.ZodString;
|
|
185
185
|
createdBy: z.ZodString;
|
|
186
|
-
createdByRole: z.ZodString
|
|
186
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
187
187
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
188
188
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
189
189
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -209,7 +209,7 @@ declare const RequestedCorrectionAction: z.ZodObject<{
|
|
|
209
209
|
}>;
|
|
210
210
|
createdAt: z.ZodString;
|
|
211
211
|
createdBy: z.ZodString;
|
|
212
|
-
createdByRole: z.ZodString
|
|
212
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
213
213
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
214
214
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
215
215
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -232,7 +232,7 @@ declare const CustomAction: z.ZodObject<{
|
|
|
232
232
|
}>;
|
|
233
233
|
createdAt: z.ZodString;
|
|
234
234
|
createdBy: z.ZodString;
|
|
235
|
-
createdByRole: z.ZodString
|
|
235
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
236
236
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
237
237
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
238
238
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -256,7 +256,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
256
256
|
}>;
|
|
257
257
|
createdAt: z.ZodString;
|
|
258
258
|
createdBy: z.ZodString;
|
|
259
|
-
createdByRole: z.ZodString
|
|
259
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
260
260
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
261
261
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
262
262
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -277,7 +277,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
277
277
|
}>;
|
|
278
278
|
createdAt: z.ZodString;
|
|
279
279
|
createdBy: z.ZodString;
|
|
280
|
-
createdByRole: z.ZodString
|
|
280
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
281
281
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
282
282
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
283
283
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -301,7 +301,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
301
301
|
}>;
|
|
302
302
|
createdAt: z.ZodString;
|
|
303
303
|
createdBy: z.ZodString;
|
|
304
|
-
createdByRole: z.ZodString
|
|
304
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
305
305
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
306
306
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
307
307
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -328,7 +328,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
328
328
|
}>;
|
|
329
329
|
createdAt: z.ZodString;
|
|
330
330
|
createdBy: z.ZodString;
|
|
331
|
-
createdByRole: z.ZodString
|
|
331
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
332
332
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
333
333
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
334
334
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -349,7 +349,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
349
349
|
}>;
|
|
350
350
|
createdAt: z.ZodString;
|
|
351
351
|
createdBy: z.ZodString;
|
|
352
|
-
createdByRole: z.ZodString
|
|
352
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
353
353
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
354
354
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
355
355
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -373,7 +373,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
373
373
|
}>;
|
|
374
374
|
createdAt: z.ZodString;
|
|
375
375
|
createdBy: z.ZodString;
|
|
376
|
-
createdByRole: z.ZodString
|
|
376
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
377
377
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
378
378
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
379
379
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -397,7 +397,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
397
397
|
}>;
|
|
398
398
|
createdAt: z.ZodString;
|
|
399
399
|
createdBy: z.ZodString;
|
|
400
|
-
createdByRole: z.ZodString
|
|
400
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
401
401
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
402
402
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
403
403
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -418,7 +418,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
418
418
|
}>;
|
|
419
419
|
createdAt: z.ZodString;
|
|
420
420
|
createdBy: z.ZodString;
|
|
421
|
-
createdByRole: z.ZodString
|
|
421
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
422
422
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
423
423
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
424
424
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -440,7 +440,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
440
440
|
}>;
|
|
441
441
|
createdAt: z.ZodString;
|
|
442
442
|
createdBy: z.ZodString;
|
|
443
|
-
createdByRole: z.ZodString
|
|
443
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
444
444
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
445
445
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
446
446
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -461,7 +461,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
461
461
|
}>;
|
|
462
462
|
createdAt: z.ZodString;
|
|
463
463
|
createdBy: z.ZodString;
|
|
464
|
-
createdByRole: z.ZodString
|
|
464
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
465
465
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
466
466
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
467
467
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -483,7 +483,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
483
483
|
}>;
|
|
484
484
|
createdAt: z.ZodString;
|
|
485
485
|
createdBy: z.ZodString;
|
|
486
|
-
createdByRole: z.ZodString
|
|
486
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
487
487
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
488
488
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
489
489
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -504,7 +504,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
504
504
|
}>;
|
|
505
505
|
createdAt: z.ZodString;
|
|
506
506
|
createdBy: z.ZodString;
|
|
507
|
-
createdByRole: z.ZodString
|
|
507
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
508
508
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
509
509
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
510
510
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -526,7 +526,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
526
526
|
}>;
|
|
527
527
|
createdAt: z.ZodString;
|
|
528
528
|
createdBy: z.ZodString;
|
|
529
|
-
createdByRole: z.ZodString
|
|
529
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
530
530
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
531
531
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
532
532
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -551,7 +551,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
551
551
|
}>;
|
|
552
552
|
createdAt: z.ZodString;
|
|
553
553
|
createdBy: z.ZodString;
|
|
554
|
-
createdByRole: z.ZodString
|
|
554
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
555
555
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
556
556
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
557
557
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -572,7 +572,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
572
572
|
}>;
|
|
573
573
|
createdAt: z.ZodString;
|
|
574
574
|
createdBy: z.ZodString;
|
|
575
|
-
createdByRole: z.ZodString
|
|
575
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
576
576
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
577
577
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
578
578
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -596,7 +596,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
596
596
|
}>;
|
|
597
597
|
createdAt: z.ZodString;
|
|
598
598
|
createdBy: z.ZodString;
|
|
599
|
-
createdByRole: z.ZodString
|
|
599
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
600
600
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
601
601
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
602
602
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -617,7 +617,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
617
617
|
}>;
|
|
618
618
|
createdAt: z.ZodString;
|
|
619
619
|
createdBy: z.ZodString;
|
|
620
|
-
createdByRole: z.ZodString
|
|
620
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
621
621
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
622
622
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
623
623
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -641,7 +641,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
641
641
|
}>;
|
|
642
642
|
createdAt: z.ZodString;
|
|
643
643
|
createdBy: z.ZodString;
|
|
644
|
-
createdByRole: z.ZodString
|
|
644
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
645
645
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
646
646
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
647
647
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -665,7 +665,7 @@ export declare const AsyncRejectActionDocument: z.ZodObject<{
|
|
|
665
665
|
}>;
|
|
666
666
|
createdAt: z.ZodString;
|
|
667
667
|
createdBy: z.ZodString;
|
|
668
|
-
createdByRole: z.ZodString
|
|
668
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
669
669
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
670
670
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
671
671
|
originalActionId: z.ZodNullable<z.ZodOptional<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
@@ -694,7 +694,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
694
694
|
}>;
|
|
695
695
|
createdAt: z.ZodString;
|
|
696
696
|
createdBy: z.ZodString;
|
|
697
|
-
createdByRole: z.ZodString
|
|
697
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
698
698
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
699
699
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
700
700
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -715,7 +715,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
715
715
|
}>;
|
|
716
716
|
createdAt: z.ZodString;
|
|
717
717
|
createdBy: z.ZodString;
|
|
718
|
-
createdByRole: z.ZodString
|
|
718
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
719
719
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
720
720
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
721
721
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -739,7 +739,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
739
739
|
}>;
|
|
740
740
|
createdAt: z.ZodString;
|
|
741
741
|
createdBy: z.ZodString;
|
|
742
|
-
createdByRole: z.ZodString
|
|
742
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
743
743
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
744
744
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
745
745
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -766,7 +766,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
766
766
|
}>;
|
|
767
767
|
createdAt: z.ZodString;
|
|
768
768
|
createdBy: z.ZodString;
|
|
769
|
-
createdByRole: z.ZodString
|
|
769
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
770
770
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
771
771
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
772
772
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -787,7 +787,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
787
787
|
}>;
|
|
788
788
|
createdAt: z.ZodString;
|
|
789
789
|
createdBy: z.ZodString;
|
|
790
|
-
createdByRole: z.ZodString
|
|
790
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
791
791
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
792
792
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
793
793
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -811,7 +811,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
811
811
|
}>;
|
|
812
812
|
createdAt: z.ZodString;
|
|
813
813
|
createdBy: z.ZodString;
|
|
814
|
-
createdByRole: z.ZodString
|
|
814
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
815
815
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
816
816
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
817
817
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -835,7 +835,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
835
835
|
}>;
|
|
836
836
|
createdAt: z.ZodString;
|
|
837
837
|
createdBy: z.ZodString;
|
|
838
|
-
createdByRole: z.ZodString
|
|
838
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
839
839
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
840
840
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
841
841
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -856,7 +856,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
856
856
|
}>;
|
|
857
857
|
createdAt: z.ZodString;
|
|
858
858
|
createdBy: z.ZodString;
|
|
859
|
-
createdByRole: z.ZodString
|
|
859
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
860
860
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
861
861
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
862
862
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -878,7 +878,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
878
878
|
}>;
|
|
879
879
|
createdAt: z.ZodString;
|
|
880
880
|
createdBy: z.ZodString;
|
|
881
|
-
createdByRole: z.ZodString
|
|
881
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
882
882
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
883
883
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
884
884
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -899,7 +899,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
899
899
|
}>;
|
|
900
900
|
createdAt: z.ZodString;
|
|
901
901
|
createdBy: z.ZodString;
|
|
902
|
-
createdByRole: z.ZodString
|
|
902
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
903
903
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
904
904
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
905
905
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -921,7 +921,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
921
921
|
}>;
|
|
922
922
|
createdAt: z.ZodString;
|
|
923
923
|
createdBy: z.ZodString;
|
|
924
|
-
createdByRole: z.ZodString
|
|
924
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
925
925
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
926
926
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
927
927
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -942,7 +942,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
942
942
|
}>;
|
|
943
943
|
createdAt: z.ZodString;
|
|
944
944
|
createdBy: z.ZodString;
|
|
945
|
-
createdByRole: z.ZodString
|
|
945
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
946
946
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
947
947
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
948
948
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -964,7 +964,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
964
964
|
}>;
|
|
965
965
|
createdAt: z.ZodString;
|
|
966
966
|
createdBy: z.ZodString;
|
|
967
|
-
createdByRole: z.ZodString
|
|
967
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
968
968
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
969
969
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
970
970
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -989,7 +989,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
989
989
|
}>;
|
|
990
990
|
createdAt: z.ZodString;
|
|
991
991
|
createdBy: z.ZodString;
|
|
992
|
-
createdByRole: z.ZodString
|
|
992
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
993
993
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
994
994
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
995
995
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -1010,7 +1010,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1010
1010
|
}>;
|
|
1011
1011
|
createdAt: z.ZodString;
|
|
1012
1012
|
createdBy: z.ZodString;
|
|
1013
|
-
createdByRole: z.ZodString
|
|
1013
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
1014
1014
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1015
1015
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
1016
1016
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -1034,7 +1034,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1034
1034
|
}>;
|
|
1035
1035
|
createdAt: z.ZodString;
|
|
1036
1036
|
createdBy: z.ZodString;
|
|
1037
|
-
createdByRole: z.ZodString
|
|
1037
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
1038
1038
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1039
1039
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
1040
1040
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -1055,7 +1055,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1055
1055
|
}>;
|
|
1056
1056
|
createdAt: z.ZodString;
|
|
1057
1057
|
createdBy: z.ZodString;
|
|
1058
|
-
createdByRole: z.ZodString
|
|
1058
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
1059
1059
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1060
1060
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
1061
1061
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -1079,7 +1079,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1079
1079
|
}>;
|
|
1080
1080
|
createdAt: z.ZodString;
|
|
1081
1081
|
createdBy: z.ZodString;
|
|
1082
|
-
createdByRole: z.ZodString
|
|
1082
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
1083
1083
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1084
1084
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
1085
1085
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<FieldUpdateValue, unknown, z.core.$ZodTypeInternals<FieldUpdateValue, unknown>>>;
|
|
@@ -1101,7 +1101,7 @@ export declare const Action: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1101
1101
|
}>;
|
|
1102
1102
|
createdAt: z.ZodString;
|
|
1103
1103
|
createdBy: z.ZodString;
|
|
1104
|
-
createdByRole: z.ZodString
|
|
1104
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
1105
1105
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1106
1106
|
createdAtLocation: z.ZodOptional<z.ZodNullable<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
1107
1107
|
originalActionId: z.ZodNullable<z.ZodOptional<z.core.$ZodBranded<z.ZodUUID, "UUID">>>;
|
|
@@ -37,7 +37,7 @@ export declare const Draft: z.ZodObject<{
|
|
|
37
37
|
}>;
|
|
38
38
|
createdAt: z.ZodString;
|
|
39
39
|
createdBy: z.ZodString;
|
|
40
|
-
createdByRole: z.ZodString
|
|
40
|
+
createdByRole: z.ZodOptional<z.ZodString>;
|
|
41
41
|
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
42
42
|
declaration: z.ZodRecord<z.ZodString, z.ZodType<import("./FieldValue").FieldUpdateValue, unknown, z.core.$ZodTypeInternals<import("./FieldValue").FieldUpdateValue, unknown>>>;
|
|
43
43
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./FieldValue").FieldUpdateValue, unknown, z.core.$ZodTypeInternals<import("./FieldValue").FieldUpdateValue, unknown>>>>>;
|