@opencrvs/toolkit 2.0.0-rc.fe577a4 → 2.0.0-rc.fea498b
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/application-config/index.js +7 -1
- package/dist/cli.js +5 -5
- package/dist/commons/api/router.d.ts +26 -17
- package/dist/commons/events/ActionConfig.d.ts +37 -2
- package/dist/commons/events/AdvancedSearchConfig.d.ts +342 -0
- package/dist/commons/events/FieldConfig.d.ts +1 -0
- package/dist/commons/events/FieldType.d.ts +1 -0
- package/dist/commons/events/FieldTypeMapping.d.ts +1 -1
- package/dist/commons/events/field.d.ts +6 -0
- package/dist/commons/events/state/utils.d.ts +12 -290
- package/dist/events/index.js +140 -68
- package/dist/migrations/v2.0/index.js +5 -5
- package/dist/notification/index.js +77 -3
- package/dist/scopes/index.d.ts +4 -6
- package/dist/scopes/index.js +5 -5
- package/opencrvs-toolkit-2.0.0-rc.fea498b.tgz +0 -0
- package/package.json +1 -1
- package/opencrvs-toolkit-2.0.0-rc.fe577a4.tgz +0 -0
|
@@ -1,282 +1,17 @@
|
|
|
1
1
|
import { Action } from '../ActionDocument';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* @see EventIndex for the description of the returned object.
|
|
3
|
+
* Returns the creation metadata of the last update action (Requested or Accepted).
|
|
4
|
+
* Requested actions are included so that async flows (202) correctly reflect the
|
|
5
|
+
* metadata of the user who triggered the action before country config accepts it.
|
|
7
6
|
*
|
|
8
|
-
*
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
17
|
-
type: "REGISTER";
|
|
18
|
-
createdByRole?: string | undefined;
|
|
19
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
20
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
21
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
22
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
23
|
-
registrationNumber?: string | undefined;
|
|
24
|
-
} | {
|
|
25
|
-
id: string & import("zod").$brand<"UUID">;
|
|
26
|
-
transactionId: string;
|
|
27
|
-
createdByUserType: "user" | "system";
|
|
28
|
-
createdAt: string;
|
|
29
|
-
createdBy: string;
|
|
30
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
31
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
32
|
-
type: "DUPLICATE_DETECTED";
|
|
33
|
-
content: {
|
|
34
|
-
duplicates: {
|
|
35
|
-
id: string & import("zod").$brand<"UUID">;
|
|
36
|
-
trackingId: string;
|
|
37
|
-
}[];
|
|
38
|
-
};
|
|
39
|
-
createdByRole?: string | undefined;
|
|
40
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
41
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
42
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
43
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
44
|
-
} | {
|
|
45
|
-
id: string & import("zod").$brand<"UUID">;
|
|
46
|
-
transactionId: string;
|
|
47
|
-
createdByUserType: "user" | "system";
|
|
48
|
-
createdAt: string;
|
|
49
|
-
createdBy: string;
|
|
50
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
51
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
52
|
-
type: "EDIT";
|
|
53
|
-
content: {
|
|
54
|
-
comment?: string | undefined;
|
|
55
|
-
};
|
|
56
|
-
createdByRole?: string | undefined;
|
|
57
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
58
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
59
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
60
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
61
|
-
} | {
|
|
62
|
-
id: string & import("zod").$brand<"UUID">;
|
|
63
|
-
transactionId: string;
|
|
64
|
-
createdByUserType: "user" | "system";
|
|
65
|
-
createdAt: string;
|
|
66
|
-
createdBy: string;
|
|
67
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
68
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
69
|
-
type: "PRINT_CERTIFICATE";
|
|
70
|
-
createdByRole?: string | undefined;
|
|
71
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
72
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
73
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
74
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
75
|
-
content?: {
|
|
76
|
-
templateId?: string | undefined;
|
|
77
|
-
} | null | undefined;
|
|
78
|
-
} | {
|
|
79
|
-
id: string & import("zod").$brand<"UUID">;
|
|
80
|
-
transactionId: string;
|
|
81
|
-
createdByUserType: "user" | "system";
|
|
82
|
-
createdAt: string;
|
|
83
|
-
createdBy: string;
|
|
84
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
85
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
86
|
-
type: "REQUEST_CORRECTION";
|
|
87
|
-
createdByRole?: string | undefined;
|
|
88
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
89
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
90
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
91
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
92
|
-
} | {
|
|
93
|
-
id: string & import("zod").$brand<"UUID">;
|
|
94
|
-
transactionId: string;
|
|
95
|
-
createdByUserType: "user" | "system";
|
|
96
|
-
createdAt: string;
|
|
97
|
-
createdBy: string;
|
|
98
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
99
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
100
|
-
type: "CUSTOM";
|
|
101
|
-
customActionType: string;
|
|
102
|
-
createdByRole?: string | undefined;
|
|
103
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
104
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
105
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
106
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
107
|
-
} | {
|
|
108
|
-
id: string & import("zod").$brand<"UUID">;
|
|
109
|
-
transactionId: string;
|
|
110
|
-
createdByUserType: "user" | "system";
|
|
111
|
-
createdAt: string;
|
|
112
|
-
createdBy: string;
|
|
113
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
114
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
115
|
-
type: "CREATE";
|
|
116
|
-
createdByRole?: string | undefined;
|
|
117
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
118
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
119
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
120
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
121
|
-
} | {
|
|
122
|
-
id: string & import("zod").$brand<"UUID">;
|
|
123
|
-
transactionId: string;
|
|
124
|
-
createdByUserType: "user" | "system";
|
|
125
|
-
createdAt: string;
|
|
126
|
-
createdBy: string;
|
|
127
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
128
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
129
|
-
type: "REJECT";
|
|
130
|
-
content: {
|
|
131
|
-
reason: string;
|
|
132
|
-
};
|
|
133
|
-
createdByRole?: string | undefined;
|
|
134
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
135
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
136
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
137
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
138
|
-
} | {
|
|
139
|
-
id: string & import("zod").$brand<"UUID">;
|
|
140
|
-
transactionId: string;
|
|
141
|
-
createdByUserType: "user" | "system";
|
|
142
|
-
createdAt: string;
|
|
143
|
-
createdBy: string;
|
|
144
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
145
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
146
|
-
type: "MARK_AS_NOT_DUPLICATE";
|
|
147
|
-
createdByRole?: string | undefined;
|
|
148
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
149
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
150
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
151
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
152
|
-
} | {
|
|
153
|
-
id: string & import("zod").$brand<"UUID">;
|
|
154
|
-
transactionId: string;
|
|
155
|
-
createdByUserType: "user" | "system";
|
|
156
|
-
createdAt: string;
|
|
157
|
-
createdBy: string;
|
|
158
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
159
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
160
|
-
type: "MARK_AS_DUPLICATE";
|
|
161
|
-
createdByRole?: string | undefined;
|
|
162
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
163
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
164
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
165
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
166
|
-
content?: {
|
|
167
|
-
duplicateOf: string & import("zod").$brand<"UUID">;
|
|
168
|
-
} | undefined;
|
|
169
|
-
} | {
|
|
170
|
-
id: string & import("zod").$brand<"UUID">;
|
|
171
|
-
transactionId: string;
|
|
172
|
-
createdByUserType: "user" | "system";
|
|
173
|
-
createdAt: string;
|
|
174
|
-
createdBy: string;
|
|
175
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
176
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
177
|
-
type: "ARCHIVE";
|
|
178
|
-
content: {
|
|
179
|
-
reason: string;
|
|
180
|
-
};
|
|
181
|
-
createdByRole?: string | undefined;
|
|
182
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
183
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
184
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
185
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
186
|
-
} | {
|
|
187
|
-
id: string & import("zod").$brand<"UUID">;
|
|
188
|
-
transactionId: string;
|
|
189
|
-
createdByUserType: "user" | "system";
|
|
190
|
-
createdAt: string;
|
|
191
|
-
createdBy: string;
|
|
192
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
193
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
194
|
-
type: "NOTIFY";
|
|
195
|
-
createdByRole?: string | undefined;
|
|
196
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
197
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
198
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
199
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
200
|
-
} | {
|
|
201
|
-
id: string & import("zod").$brand<"UUID">;
|
|
202
|
-
transactionId: string;
|
|
203
|
-
createdByUserType: "user" | "system";
|
|
204
|
-
createdAt: string;
|
|
205
|
-
createdBy: string;
|
|
206
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
207
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
208
|
-
type: "DECLARE";
|
|
209
|
-
createdByRole?: string | undefined;
|
|
210
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
211
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
212
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
213
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
214
|
-
} | {
|
|
215
|
-
id: string & import("zod").$brand<"UUID">;
|
|
216
|
-
transactionId: string;
|
|
217
|
-
createdByUserType: "user" | "system";
|
|
218
|
-
createdAt: string;
|
|
219
|
-
createdBy: string;
|
|
220
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
221
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
222
|
-
type: "ASSIGN";
|
|
223
|
-
assignedTo: string;
|
|
224
|
-
createdByRole?: string | undefined;
|
|
225
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
226
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
227
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
228
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
229
|
-
} | {
|
|
230
|
-
id: string & import("zod").$brand<"UUID">;
|
|
231
|
-
transactionId: string;
|
|
232
|
-
createdByUserType: "user" | "system";
|
|
233
|
-
createdAt: string;
|
|
234
|
-
createdBy: string;
|
|
235
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
236
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
237
|
-
type: "APPROVE_CORRECTION";
|
|
238
|
-
requestId: string;
|
|
239
|
-
createdByRole?: string | undefined;
|
|
240
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
241
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
242
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
243
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
244
|
-
content?: {
|
|
245
|
-
immediateCorrection?: boolean | undefined;
|
|
246
|
-
} | undefined;
|
|
247
|
-
} | {
|
|
248
|
-
id: string & import("zod").$brand<"UUID">;
|
|
249
|
-
transactionId: string;
|
|
250
|
-
createdByUserType: "user" | "system";
|
|
251
|
-
createdAt: string;
|
|
252
|
-
createdBy: string;
|
|
253
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
254
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
255
|
-
type: "REJECT_CORRECTION";
|
|
256
|
-
requestId: string;
|
|
257
|
-
content: {
|
|
258
|
-
reason: string;
|
|
259
|
-
};
|
|
260
|
-
createdByRole?: string | undefined;
|
|
261
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
262
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
263
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
264
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
265
|
-
} | {
|
|
266
|
-
id: string & import("zod").$brand<"UUID">;
|
|
267
|
-
transactionId: string;
|
|
268
|
-
createdByUserType: "user" | "system";
|
|
269
|
-
createdAt: string;
|
|
270
|
-
createdBy: string;
|
|
271
|
-
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
272
|
-
status: "Requested" | "Accepted" | "Rejected";
|
|
273
|
-
type: "UNASSIGN";
|
|
274
|
-
createdByRole?: string | undefined;
|
|
275
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
276
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
277
|
-
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
278
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
279
|
-
} | {
|
|
7
|
+
* When an Accepted action carries an originalActionId, its metadata is sourced from
|
|
8
|
+
* the original Requested action (the human who triggered it), not from the system
|
|
9
|
+
* or 3rd party that accepted it.
|
|
10
|
+
*
|
|
11
|
+
* @returns metadata of the last user who triggered a status-changing action.
|
|
12
|
+
* @see EventIndex for the description of the returned object.
|
|
13
|
+
*/
|
|
14
|
+
export declare function getActionUpdateMetadata(actions: Action[]): Pick<{
|
|
280
15
|
id: string & import("zod").$brand<"UUID">;
|
|
281
16
|
transactionId: string;
|
|
282
17
|
createdByUserType: "user" | "system";
|
|
@@ -284,25 +19,12 @@ export declare function getActionUpdateMetadata(actions: Action[]): Partial<{
|
|
|
284
19
|
createdBy: string;
|
|
285
20
|
declaration: Record<string, import("..").FieldUpdateValue>;
|
|
286
21
|
status: "Requested" | "Accepted" | "Rejected";
|
|
287
|
-
type: "READ";
|
|
288
22
|
createdByRole?: string | undefined;
|
|
289
23
|
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
290
24
|
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
291
25
|
annotation?: Record<string, import("..").FieldUpdateValue> | null | undefined;
|
|
292
26
|
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
293
|
-
} |
|
|
294
|
-
id: string & import("zod").$brand<"UUID">;
|
|
295
|
-
transactionId: string;
|
|
296
|
-
createdByUserType: "user" | "system";
|
|
297
|
-
createdAt: string;
|
|
298
|
-
createdBy: string;
|
|
299
|
-
type: "CUSTOM" | "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION";
|
|
300
|
-
status: "Rejected";
|
|
301
|
-
createdByRole?: string | undefined;
|
|
302
|
-
createdBySignature?: (string & import("zod").$brand<"DocumentPath">) | null | undefined;
|
|
303
|
-
createdAtLocation?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
304
|
-
originalActionId?: (string & import("zod").$brand<"UUID">) | null | undefined;
|
|
305
|
-
}>;
|
|
27
|
+
}, "createdByUserType" | "createdAt" | "createdBy" | "createdByRole" | "createdAtLocation">;
|
|
306
28
|
/**
|
|
307
29
|
* @returns the legal statuses of the event. Event is considered legal if it has been accepted.
|
|
308
30
|
* @see EventIndex for the description of the returned object.
|