@opencrvs/toolkit 1.9.3-rc.da977ad → 1.9.3-rc.e47111c

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.
Files changed (58) hide show
  1. package/dist/commons/api/router.d.ts +2428 -28200
  2. package/dist/commons/conditionals/conditionals.d.ts +1 -10
  3. package/dist/commons/conditionals/validate.d.ts +4 -11
  4. package/dist/commons/events/ActionConfig.d.ts +1547 -23121
  5. package/dist/commons/events/ActionDocument.d.ts +1849 -840
  6. package/dist/commons/events/ActionInput.d.ts +1066 -290
  7. package/dist/commons/events/ActionType.d.ts +8 -91
  8. package/dist/commons/events/AdvancedSearchConfig.d.ts +1244 -222
  9. package/dist/commons/events/CompositeFieldValue.d.ts +198 -25
  10. package/dist/commons/events/Conditional.d.ts +38 -26
  11. package/dist/commons/events/Constants.d.ts +1 -1
  12. package/dist/commons/events/CountryConfigQueryInput.d.ts +4169 -931
  13. package/dist/commons/events/CreatedAtLocation.d.ts +1 -1
  14. package/dist/commons/events/DeduplicationConfig.d.ts +150 -15
  15. package/dist/commons/events/Draft.d.ts +105 -72
  16. package/dist/commons/events/DynamicFieldValue.d.ts +91 -7
  17. package/dist/commons/events/EventConfig.d.ts +2122 -18321
  18. package/dist/commons/events/EventConfigInput.d.ts +1 -1
  19. package/dist/commons/events/EventDocument.d.ts +1326 -336
  20. package/dist/commons/events/EventIndex.d.ts +967 -197
  21. package/dist/commons/events/EventInput.d.ts +8 -2
  22. package/dist/commons/events/EventMetadata.d.ts +346 -106
  23. package/dist/commons/events/FieldConfig.d.ts +12051 -4164
  24. package/dist/commons/events/FieldType.d.ts +5 -9
  25. package/dist/commons/events/FieldTypeMapping.d.ts +896 -172
  26. package/dist/commons/events/FieldValue.d.ts +405 -84
  27. package/dist/commons/events/FormConfig.d.ts +721 -12876
  28. package/dist/commons/events/PageConfig.d.ts +319 -8604
  29. package/dist/commons/events/SummaryConfig.d.ts +161 -14
  30. package/dist/commons/events/TemplateConfig.d.ts +3 -3
  31. package/dist/commons/events/TranslationConfig.d.ts +2 -2
  32. package/dist/commons/events/WorkqueueColumnConfig.d.ts +37 -74
  33. package/dist/commons/events/WorkqueueConfig.d.ts +7080 -1619
  34. package/dist/commons/events/deduplication.d.ts +3 -3
  35. package/dist/commons/events/defineConfig.d.ts +163 -25171
  36. package/dist/commons/events/event.d.ts +4 -4
  37. package/dist/commons/events/index.d.ts +0 -1
  38. package/dist/commons/events/locations.d.ts +19 -15
  39. package/dist/commons/events/scopes.d.ts +1 -3
  40. package/dist/commons/events/state/availableActions.d.ts +1 -2
  41. package/dist/commons/events/state/flags.d.ts +3 -21
  42. package/dist/commons/events/state/index.d.ts +19 -23
  43. package/dist/commons/events/state/utils.d.ts +110 -142
  44. package/dist/commons/events/test.utils.d.ts +6 -23
  45. package/dist/commons/events/transactions.d.ts +1 -1
  46. package/dist/commons/events/utils.d.ts +385 -50384
  47. package/dist/commons/notification/UserNotifications.d.ts +636 -55
  48. package/dist/conditionals/index.d.ts.map +1 -1
  49. package/dist/conditionals/index.js +5 -38
  50. package/dist/events/deduplication.d.ts +3 -3
  51. package/dist/events/index.js +1748 -1811
  52. package/dist/notification/index.d.ts.map +1 -1
  53. package/dist/notification/index.js +1662 -1496
  54. package/dist/scopes/index.d.ts +138 -138
  55. package/dist/scopes/index.d.ts.map +1 -1
  56. package/dist/scopes/index.js +93 -123
  57. package/package.json +5 -5
  58. package/dist/commons/events/Flag.d.ts +0 -70
@@ -7,312 +7,280 @@ import { Action } from '../ActionDocument';
7
7
  *
8
8
  * */
9
9
  export declare function getActionUpdateMetadata(actions: Action[]): Partial<{
10
- id: string & import("zod/v4").$brand<"UUID">;
10
+ type: "ASSIGN";
11
+ id: string & import("zod").BRAND<"UUID">;
12
+ status: "Rejected" | "Requested" | "Accepted";
11
13
  transactionId: string;
12
14
  createdByUserType: "system" | "user";
13
15
  createdAt: string;
14
16
  createdBy: string;
15
17
  createdByRole: string;
16
18
  declaration: Record<string, import("..").FieldUpdateValue>;
17
- status: "Rejected" | "Requested" | "Accepted";
18
- type: "REGISTER";
19
+ assignedTo: string;
19
20
  createdBySignature?: string | null | undefined;
20
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
21
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
21
22
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
22
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
23
- registrationNumber?: string | undefined;
23
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
24
24
  } | {
25
- id: string & import("zod/v4").$brand<"UUID">;
25
+ type: "UNASSIGN";
26
+ id: string & import("zod").BRAND<"UUID">;
27
+ status: "Rejected" | "Requested" | "Accepted";
26
28
  transactionId: string;
27
29
  createdByUserType: "system" | "user";
28
30
  createdAt: string;
29
31
  createdBy: string;
30
32
  createdByRole: string;
31
33
  declaration: Record<string, import("..").FieldUpdateValue>;
32
- status: "Rejected" | "Requested" | "Accepted";
33
- type: "DUPLICATE_DETECTED";
34
- content: {
35
- duplicates: {
36
- id: string & import("zod/v4").$brand<"UUID">;
37
- trackingId: string;
38
- }[];
39
- };
40
34
  createdBySignature?: string | null | undefined;
41
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
35
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
42
36
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
43
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
37
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
44
38
  } | {
45
- id: string & import("zod/v4").$brand<"UUID">;
39
+ type: "REGISTER";
40
+ id: string & import("zod").BRAND<"UUID">;
41
+ status: "Rejected" | "Requested" | "Accepted";
46
42
  transactionId: string;
47
43
  createdByUserType: "system" | "user";
48
44
  createdAt: string;
49
45
  createdBy: string;
50
46
  createdByRole: string;
51
47
  declaration: Record<string, import("..").FieldUpdateValue>;
52
- status: "Rejected" | "Requested" | "Accepted";
53
- type: "EDIT";
54
- content: {
55
- comment?: string | undefined;
56
- };
57
48
  createdBySignature?: string | null | undefined;
58
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
49
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
59
50
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
60
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
51
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
52
+ registrationNumber?: string | undefined;
61
53
  } | {
62
- id: string & import("zod/v4").$brand<"UUID">;
54
+ type: "DECLARE";
55
+ id: string & import("zod").BRAND<"UUID">;
56
+ status: "Rejected" | "Requested" | "Accepted";
63
57
  transactionId: string;
64
58
  createdByUserType: "system" | "user";
65
59
  createdAt: string;
66
60
  createdBy: string;
67
61
  createdByRole: string;
68
62
  declaration: Record<string, import("..").FieldUpdateValue>;
69
- status: "Rejected" | "Requested" | "Accepted";
70
- type: "PRINT_CERTIFICATE";
71
63
  createdBySignature?: string | null | undefined;
72
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
64
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
73
65
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
74
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
75
- content?: {
76
- templateId?: string | undefined;
77
- } | null | undefined;
66
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
78
67
  } | {
79
- id: string & import("zod/v4").$brand<"UUID">;
68
+ type: "VALIDATE";
69
+ id: string & import("zod").BRAND<"UUID">;
70
+ status: "Rejected" | "Requested" | "Accepted";
80
71
  transactionId: string;
81
72
  createdByUserType: "system" | "user";
82
73
  createdAt: string;
83
74
  createdBy: string;
84
75
  createdByRole: string;
85
76
  declaration: Record<string, import("..").FieldUpdateValue>;
86
- status: "Rejected" | "Requested" | "Accepted";
87
- type: "REQUEST_CORRECTION";
88
77
  createdBySignature?: string | null | undefined;
89
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
78
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
90
79
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
91
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
80
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
92
81
  } | {
93
- id: string & import("zod/v4").$brand<"UUID">;
82
+ type: "REJECT";
83
+ id: string & import("zod").BRAND<"UUID">;
84
+ status: "Rejected" | "Requested" | "Accepted";
85
+ content: {
86
+ reason: string;
87
+ };
94
88
  transactionId: string;
95
89
  createdByUserType: "system" | "user";
96
90
  createdAt: string;
97
91
  createdBy: string;
98
92
  createdByRole: string;
99
93
  declaration: Record<string, import("..").FieldUpdateValue>;
100
- status: "Rejected" | "Requested" | "Accepted";
101
- type: "CUSTOM";
102
- customActionType: string;
103
94
  createdBySignature?: string | null | undefined;
104
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
95
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
105
96
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
106
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
97
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
107
98
  } | {
108
- id: string & import("zod/v4").$brand<"UUID">;
99
+ type: "DUPLICATE_DETECTED";
100
+ id: string & import("zod").BRAND<"UUID">;
101
+ status: "Rejected" | "Requested" | "Accepted";
102
+ content: {
103
+ duplicates: {
104
+ id: string & import("zod").BRAND<"UUID">;
105
+ trackingId: string;
106
+ }[];
107
+ };
109
108
  transactionId: string;
110
109
  createdByUserType: "system" | "user";
111
110
  createdAt: string;
112
111
  createdBy: string;
113
112
  createdByRole: string;
114
113
  declaration: Record<string, import("..").FieldUpdateValue>;
115
- status: "Rejected" | "Requested" | "Accepted";
116
- type: "CREATE";
117
114
  createdBySignature?: string | null | undefined;
118
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
115
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
119
116
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
120
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
117
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
121
118
  } | {
122
- id: string & import("zod/v4").$brand<"UUID">;
119
+ type: "MARK_AS_NOT_DUPLICATE";
120
+ id: string & import("zod").BRAND<"UUID">;
121
+ status: "Rejected" | "Requested" | "Accepted";
123
122
  transactionId: string;
124
123
  createdByUserType: "system" | "user";
125
124
  createdAt: string;
126
125
  createdBy: string;
127
126
  createdByRole: string;
128
127
  declaration: Record<string, import("..").FieldUpdateValue>;
129
- status: "Rejected" | "Requested" | "Accepted";
130
- type: "VALIDATE";
131
128
  createdBySignature?: string | null | undefined;
132
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
129
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
133
130
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
134
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
131
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
135
132
  } | {
136
- id: string & import("zod/v4").$brand<"UUID">;
133
+ type: "MARK_AS_DUPLICATE";
134
+ id: string & import("zod").BRAND<"UUID">;
135
+ status: "Rejected" | "Requested" | "Accepted";
137
136
  transactionId: string;
138
137
  createdByUserType: "system" | "user";
139
138
  createdAt: string;
140
139
  createdBy: string;
141
140
  createdByRole: string;
142
141
  declaration: Record<string, import("..").FieldUpdateValue>;
142
+ content?: {
143
+ duplicateOf: string & import("zod").BRAND<"UUID">;
144
+ } | undefined;
145
+ createdBySignature?: string | null | undefined;
146
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
147
+ annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
148
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
149
+ } | {
150
+ type: "ARCHIVE";
151
+ id: string & import("zod").BRAND<"UUID">;
143
152
  status: "Rejected" | "Requested" | "Accepted";
144
- type: "REJECT";
145
153
  content: {
146
154
  reason: string;
147
155
  };
148
- createdBySignature?: string | null | undefined;
149
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
150
- annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
151
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
152
- } | {
153
- id: string & import("zod/v4").$brand<"UUID">;
154
156
  transactionId: string;
155
157
  createdByUserType: "system" | "user";
156
158
  createdAt: string;
157
159
  createdBy: string;
158
160
  createdByRole: string;
159
161
  declaration: Record<string, import("..").FieldUpdateValue>;
160
- status: "Rejected" | "Requested" | "Accepted";
161
- type: "MARK_AS_NOT_DUPLICATE";
162
162
  createdBySignature?: string | null | undefined;
163
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
163
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
164
164
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
165
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
165
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
166
166
  } | {
167
- id: string & import("zod/v4").$brand<"UUID">;
168
- transactionId: string;
169
- createdByUserType: "system" | "user";
170
- createdAt: string;
171
- createdBy: string;
172
- createdByRole: string;
173
- declaration: Record<string, import("..").FieldUpdateValue>;
167
+ type: "CREATE";
168
+ id: string & import("zod").BRAND<"UUID">;
174
169
  status: "Rejected" | "Requested" | "Accepted";
175
- type: "MARK_AS_DUPLICATE";
176
- createdBySignature?: string | null | undefined;
177
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
178
- annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
179
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
180
- content?: {
181
- duplicateOf: string & import("zod/v4").$brand<"UUID">;
182
- } | undefined;
183
- } | {
184
- id: string & import("zod/v4").$brand<"UUID">;
185
170
  transactionId: string;
186
171
  createdByUserType: "system" | "user";
187
172
  createdAt: string;
188
173
  createdBy: string;
189
174
  createdByRole: string;
190
175
  declaration: Record<string, import("..").FieldUpdateValue>;
191
- status: "Rejected" | "Requested" | "Accepted";
192
- type: "ARCHIVE";
193
- content: {
194
- reason: string;
195
- };
196
176
  createdBySignature?: string | null | undefined;
197
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
177
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
198
178
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
199
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
179
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
200
180
  } | {
201
- id: string & import("zod/v4").$brand<"UUID">;
181
+ type: "NOTIFY";
182
+ id: string & import("zod").BRAND<"UUID">;
183
+ status: "Rejected" | "Requested" | "Accepted";
202
184
  transactionId: string;
203
185
  createdByUserType: "system" | "user";
204
186
  createdAt: string;
205
187
  createdBy: string;
206
188
  createdByRole: string;
207
189
  declaration: Record<string, import("..").FieldUpdateValue>;
208
- status: "Rejected" | "Requested" | "Accepted";
209
- type: "NOTIFY";
210
190
  createdBySignature?: string | null | undefined;
211
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
191
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
212
192
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
213
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
193
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
214
194
  } | {
215
- id: string & import("zod/v4").$brand<"UUID">;
195
+ type: "PRINT_CERTIFICATE";
196
+ id: string & import("zod").BRAND<"UUID">;
197
+ status: "Rejected" | "Requested" | "Accepted";
216
198
  transactionId: string;
217
199
  createdByUserType: "system" | "user";
218
200
  createdAt: string;
219
201
  createdBy: string;
220
202
  createdByRole: string;
221
203
  declaration: Record<string, import("..").FieldUpdateValue>;
222
- status: "Rejected" | "Requested" | "Accepted";
223
- type: "DECLARE";
204
+ content?: {
205
+ templateId?: string | undefined;
206
+ } | null | undefined;
224
207
  createdBySignature?: string | null | undefined;
225
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
208
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
226
209
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
227
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
210
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
228
211
  } | {
229
- id: string & import("zod/v4").$brand<"UUID">;
212
+ type: "REQUEST_CORRECTION";
213
+ id: string & import("zod").BRAND<"UUID">;
214
+ status: "Rejected" | "Requested" | "Accepted";
230
215
  transactionId: string;
231
216
  createdByUserType: "system" | "user";
232
217
  createdAt: string;
233
218
  createdBy: string;
234
219
  createdByRole: string;
235
220
  declaration: Record<string, import("..").FieldUpdateValue>;
236
- status: "Rejected" | "Requested" | "Accepted";
237
- type: "ASSIGN";
238
- assignedTo: string;
239
221
  createdBySignature?: string | null | undefined;
240
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
222
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
241
223
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
242
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
224
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
243
225
  } | {
244
- id: string & import("zod/v4").$brand<"UUID">;
226
+ type: "APPROVE_CORRECTION";
227
+ id: string & import("zod").BRAND<"UUID">;
228
+ status: "Rejected" | "Requested" | "Accepted";
245
229
  transactionId: string;
246
230
  createdByUserType: "system" | "user";
247
231
  createdAt: string;
248
232
  createdBy: string;
249
233
  createdByRole: string;
250
234
  declaration: Record<string, import("..").FieldUpdateValue>;
251
- status: "Rejected" | "Requested" | "Accepted";
252
- type: "APPROVE_CORRECTION";
253
235
  requestId: string;
254
236
  createdBySignature?: string | null | undefined;
255
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
237
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
256
238
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
257
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
239
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
258
240
  } | {
259
- id: string & import("zod/v4").$brand<"UUID">;
260
- transactionId: string;
261
- createdByUserType: "system" | "user";
262
- createdAt: string;
263
- createdBy: string;
264
- createdByRole: string;
265
- declaration: Record<string, import("..").FieldUpdateValue>;
266
- status: "Rejected" | "Requested" | "Accepted";
267
241
  type: "REJECT_CORRECTION";
268
- requestId: string;
242
+ id: string & import("zod").BRAND<"UUID">;
243
+ status: "Rejected" | "Requested" | "Accepted";
269
244
  content: {
270
245
  reason: string;
271
246
  };
272
- createdBySignature?: string | null | undefined;
273
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
274
- annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
275
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
276
- } | {
277
- id: string & import("zod/v4").$brand<"UUID">;
278
247
  transactionId: string;
279
248
  createdByUserType: "system" | "user";
280
249
  createdAt: string;
281
250
  createdBy: string;
282
251
  createdByRole: string;
283
252
  declaration: Record<string, import("..").FieldUpdateValue>;
284
- status: "Rejected" | "Requested" | "Accepted";
285
- type: "UNASSIGN";
253
+ requestId: string;
286
254
  createdBySignature?: string | null | undefined;
287
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
255
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
288
256
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
289
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
257
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
290
258
  } | {
291
- id: string & import("zod/v4").$brand<"UUID">;
259
+ type: "READ";
260
+ id: string & import("zod").BRAND<"UUID">;
261
+ status: "Rejected" | "Requested" | "Accepted";
292
262
  transactionId: string;
293
263
  createdByUserType: "system" | "user";
294
264
  createdAt: string;
295
265
  createdBy: string;
296
266
  createdByRole: string;
297
267
  declaration: Record<string, import("..").FieldUpdateValue>;
298
- status: "Rejected" | "Requested" | "Accepted";
299
- type: "READ";
300
268
  createdBySignature?: string | null | undefined;
301
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
269
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
302
270
  annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
303
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
271
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
304
272
  } | {
305
- id: string & import("zod/v4").$brand<"UUID">;
273
+ type: "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION";
274
+ id: string & import("zod").BRAND<"UUID">;
275
+ status: "Rejected";
306
276
  transactionId: string;
307
277
  createdByUserType: "system" | "user";
308
278
  createdAt: string;
309
279
  createdBy: string;
310
280
  createdByRole: string;
311
- type: "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
312
- status: "Rejected";
313
281
  createdBySignature?: string | null | undefined;
314
- createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
315
- originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
282
+ createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
283
+ originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
316
284
  }>;
317
285
  /**
318
286
  * @returns the legal statuses of the event. Event is considered legal if it has been accepted.
@@ -323,7 +291,7 @@ export declare function getLegalStatuses(actions: Action[]): {
323
291
  createdAt: string;
324
292
  createdBy: string;
325
293
  createdByUserType: "system" | "user";
326
- createdAtLocation: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
294
+ createdAtLocation: (string & import("zod").BRAND<"UUID">) | null | undefined;
327
295
  acceptedAt: string;
328
296
  createdByRole: string;
329
297
  createdBySignature: string | null | undefined;
@@ -333,7 +301,7 @@ export declare function getLegalStatuses(actions: Action[]): {
333
301
  createdAt: string;
334
302
  createdBy: string;
335
303
  createdByUserType: "system" | "user";
336
- createdAtLocation: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
304
+ createdAtLocation: (string & import("zod").BRAND<"UUID">) | null | undefined;
337
305
  acceptedAt: string;
338
306
  createdByRole: string;
339
307
  createdBySignature: string | null | undefined;
@@ -1,6 +1,6 @@
1
1
  import { UUID } from '../uuid';
2
2
  import { ActionDocument, ActionUpdate } from './ActionDocument';
3
- import { ApproveCorrectionActionInput, ArchiveActionInput, AssignActionInput, DeclareActionInput, EditActionInput, MarkAsDuplicateActionInput, MarkNotDuplicateActionInput, NotifyActionInput, RegisterActionInput, RejectCorrectionActionInput, RejectDeclarationActionInput, RequestCorrectionActionInput, UnassignActionInput, ValidateActionInput } from './ActionInput';
3
+ import { ApproveCorrectionActionInput, ArchiveActionInput, AssignActionInput, DeclareActionInput, MarkAsDuplicateActionInput, MarkNotDuplicateActionInput, NotifyActionInput, RegisterActionInput, RejectCorrectionActionInput, RejectDeclarationActionInput, RequestCorrectionActionInput, UnassignActionInput, ValidateActionInput } from './ActionInput';
4
4
  import { ActionType } from './ActionType';
5
5
  import { Draft } from './Draft';
6
6
  import { EventConfig } from './EventConfig';
@@ -10,7 +10,7 @@ import { EventInput } from './EventInput';
10
10
  import { TranslationConfig } from './TranslationConfig';
11
11
  import { FieldConfig } from './FieldConfig';
12
12
  import { WorkqueueConfig } from './WorkqueueConfig';
13
- import * as z from 'zod/v4';
13
+ import { z } from 'zod';
14
14
  /**
15
15
  * IANA timezone used in testing. Used for queries that expect similar results independent of the users location (e.g. when event was registered.)
16
16
  * Since we query by range, providing UTC offset will result to different results when DST changes during the range.
@@ -20,17 +20,8 @@ export declare const TEST_SYSTEM_IANA_TIMEZONE = "Asia/Dhaka";
20
20
  * In real application, the roles are defined in the countryconfig.
21
21
  * These are just for testing purposes to generate realistic mock data.
22
22
  */
23
- export declare const TestUserRole: z.ZodEnum<{
24
- FIELD_AGENT: "FIELD_AGENT";
25
- REGISTRATION_AGENT: "REGISTRATION_AGENT";
26
- LOCAL_REGISTRAR: "LOCAL_REGISTRAR";
27
- LOCAL_SYSTEM_ADMIN: "LOCAL_SYSTEM_ADMIN";
28
- NATIONAL_SYSTEM_ADMIN: "NATIONAL_SYSTEM_ADMIN";
29
- NATIONAL_REGISTRAR: "NATIONAL_REGISTRAR";
30
- SOCIAL_WORKER: "SOCIAL_WORKER";
31
- }>;
23
+ export declare const TestUserRole: z.ZodEnum<["FIELD_AGENT", "LOCAL_REGISTRAR", "LOCAL_SYSTEM_ADMIN", "NATIONAL_REGISTRAR", "REGISTRATION_AGENT", "NATIONAL_SYSTEM_ADMIN", "SOCIAL_WORKER"]>;
32
24
  export type TestUserRole = z.infer<typeof TestUserRole>;
33
- export declare function pickRandom<T>(rng: () => number, items: T[]): T;
34
25
  export declare function generateRandomName(rng: () => number): {
35
26
  firstname: string;
36
27
  surname: string;
@@ -77,23 +68,13 @@ export declare function eventPayloadGenerator(rng: () => number, configuration?:
77
68
  eventId: string;
78
69
  keepAssignment: boolean | undefined;
79
70
  };
80
- edit: (eventId: string, input?: Partial<Pick<EditActionInput, "transactionId" | "declaration" | "annotation" | "keepAssignment">>) => {
81
- transactionId: string;
82
- declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
83
- annotation: {};
84
- keepAssignment?: boolean | undefined;
85
- type: "EDIT";
86
- content: {
87
- comment: string;
88
- };
89
- eventId: string;
90
- };
91
71
  validate: (eventId: string, input?: Partial<Pick<ValidateActionInput, "transactionId" | "declaration" | "annotation" | "keepAssignment">>) => {
92
72
  transactionId: string;
93
73
  declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
94
74
  annotation: {};
95
75
  keepAssignment?: boolean | undefined;
96
76
  type: "VALIDATE";
77
+ duplicates: never[];
97
78
  eventId: string;
98
79
  };
99
80
  assign: (eventId: string, input?: Partial<Pick<AssignActionInput, "transactionId" | "assignedTo">>) => {
@@ -116,6 +97,7 @@ export declare function eventPayloadGenerator(rng: () => number, configuration?:
116
97
  keepAssignment?: boolean | undefined;
117
98
  type: "ARCHIVE";
118
99
  annotation: {};
100
+ duplicates: never[];
119
101
  eventId: string;
120
102
  content: {
121
103
  reason: string;
@@ -127,6 +109,7 @@ export declare function eventPayloadGenerator(rng: () => number, configuration?:
127
109
  keepAssignment?: boolean | undefined;
128
110
  type: "REJECT";
129
111
  declaration: {};
112
+ duplicates: never[];
130
113
  eventId: string;
131
114
  content: {
132
115
  reason: string;
@@ -1,2 +1,2 @@
1
- export declare function generateTransactionId(): string & import("zod/v4").$brand<"UUID">;
1
+ export declare function generateTransactionId(): string & import("zod").BRAND<"UUID">;
2
2
  //# sourceMappingURL=transactions.d.ts.map