@opencrvs/toolkit 1.9.5-rc.bc05627 → 1.9.5-rc.c3fc9ec
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 +28697 -2318
- package/dist/commons/conditionals/conditionals.d.ts +10 -1
- package/dist/commons/conditionals/validate.d.ts +11 -4
- package/dist/commons/events/ActionConfig.d.ts +24393 -1552
- package/dist/commons/events/ActionDocument.d.ts +803 -1856
- package/dist/commons/events/ActionInput.d.ts +277 -1073
- package/dist/commons/events/ActionType.d.ts +86 -9
- package/dist/commons/events/AdvancedSearchConfig.d.ts +228 -1238
- package/dist/commons/events/CompositeFieldValue.d.ts +27 -176
- package/dist/commons/events/Conditional.d.ts +26 -38
- package/dist/commons/events/Constants.d.ts +1 -1
- package/dist/commons/events/CountryConfigQueryInput.d.ts +1195 -4223
- package/dist/commons/events/CreatedAtLocation.d.ts +1 -1
- package/dist/commons/events/DeduplicationConfig.d.ts +15 -150
- package/dist/commons/events/Draft.d.ts +70 -105
- package/dist/commons/events/DynamicFieldValue.d.ts +7 -91
- package/dist/commons/events/EventConfig.d.ts +19468 -2120
- package/dist/commons/events/EventConfigInput.d.ts +1 -1
- package/dist/commons/events/EventDocument.d.ts +320 -1332
- package/dist/commons/events/EventIndex.d.ts +193 -980
- package/dist/commons/events/EventInput.d.ts +2 -8
- package/dist/commons/events/EventMetadata.d.ts +106 -347
- package/dist/commons/events/FieldConfig.d.ts +4443 -11854
- package/dist/commons/events/FieldType.d.ts +20 -4
- package/dist/commons/events/FieldTypeMapping.d.ts +182 -814
- package/dist/commons/events/FieldValue.d.ts +83 -356
- package/dist/commons/events/Flag.d.ts +67 -0
- package/dist/commons/events/FormConfig.d.ts +13632 -721
- package/dist/commons/events/PageConfig.d.ts +9108 -319
- package/dist/commons/events/SummaryConfig.d.ts +14 -161
- package/dist/commons/events/TemplateConfig.d.ts +2 -3
- package/dist/commons/events/TranslationConfig.d.ts +2 -2
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +74 -37
- package/dist/commons/events/WorkqueueConfig.d.ts +1867 -7176
- package/dist/commons/events/deduplication.d.ts +3 -3
- package/dist/commons/events/defineConfig.d.ts +25876 -148
- package/dist/commons/events/event.d.ts +4 -4
- package/dist/commons/events/eventConfigValidation.d.ts +8 -0
- package/dist/commons/events/index.d.ts +1 -0
- package/dist/commons/events/locations.d.ts +26 -19
- package/dist/commons/events/scopes.d.ts +5 -4
- package/dist/commons/events/state/availableActions.d.ts +0 -2
- package/dist/commons/events/state/flags.d.ts +21 -3
- package/dist/commons/events/state/index.d.ts +23 -19
- package/dist/commons/events/state/utils.d.ts +130 -112
- package/dist/commons/events/test.utils.d.ts +17 -8
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +51783 -362
- package/dist/commons/notification/UserNotifications.d.ts +55 -636
- package/dist/conditionals/index.d.ts.map +1 -1
- package/dist/conditionals/index.js +42 -8
- package/dist/events/deduplication.d.ts +3 -3
- package/dist/events/index.js +1953 -1676
- package/dist/notification/index.d.ts.map +1 -1
- package/dist/notification/index.js +1615 -1533
- package/dist/scopes/index.d.ts +167 -132
- package/dist/scopes/index.d.ts.map +1 -1
- package/dist/scopes/index.js +133 -94
- package/package.json +5 -5
|
@@ -38,6 +38,7 @@ __export(notification_exports, {
|
|
|
38
38
|
triggerUserEventNotification: () => triggerUserEventNotification
|
|
39
39
|
});
|
|
40
40
|
module.exports = __toCommonJS(notification_exports);
|
|
41
|
+
var z40 = __toESM(require("zod/v4"));
|
|
41
42
|
|
|
42
43
|
// ../commons/src/url.ts
|
|
43
44
|
function joinUrl(base, path) {
|
|
@@ -47,30 +48,28 @@ function joinUrl(base, path) {
|
|
|
47
48
|
|
|
48
49
|
// ../commons/src/events/Constants.ts
|
|
49
50
|
var TENNIS_CLUB_MEMBERSHIP = "tennis-club-membership";
|
|
50
|
-
var
|
|
51
|
+
var CHILD_ONBOARDING_EVENT = "child-onboarding";
|
|
51
52
|
|
|
52
53
|
// ../commons/src/events/ActionConfig.ts
|
|
53
|
-
var
|
|
54
|
+
var z21 = __toESM(require("zod/v4"));
|
|
54
55
|
|
|
55
56
|
// ../commons/src/events/TranslationConfig.ts
|
|
56
|
-
var
|
|
57
|
-
var
|
|
58
|
-
|
|
59
|
-
var TranslationConfig = import_zod.z.object({
|
|
60
|
-
id: import_zod.z.string().describe(
|
|
57
|
+
var z = __toESM(require("zod/v4"));
|
|
58
|
+
var TranslationConfig = z.object({
|
|
59
|
+
id: z.string().describe(
|
|
61
60
|
"The identifier of the translation referred in translation CSV files"
|
|
62
61
|
),
|
|
63
|
-
defaultMessage:
|
|
64
|
-
description:
|
|
62
|
+
defaultMessage: z.string().describe("Default translation message"),
|
|
63
|
+
description: z.string().describe(
|
|
65
64
|
"Describe the translation for a translator to be able to identify it."
|
|
66
65
|
)
|
|
67
|
-
}).
|
|
66
|
+
}).meta({
|
|
68
67
|
description: "Translation configuration",
|
|
69
|
-
|
|
68
|
+
id: "TranslationConfig"
|
|
70
69
|
});
|
|
71
70
|
|
|
72
71
|
// ../commons/src/events/ActionType.ts
|
|
73
|
-
var
|
|
72
|
+
var z2 = __toESM(require("zod/v4"));
|
|
74
73
|
var ActionType = {
|
|
75
74
|
// Pre-declaration actions
|
|
76
75
|
DELETE: "DELETE",
|
|
@@ -78,8 +77,8 @@ var ActionType = {
|
|
|
78
77
|
NOTIFY: "NOTIFY",
|
|
79
78
|
// Declaration actions
|
|
80
79
|
DECLARE: "DECLARE",
|
|
81
|
-
VALIDATE: "VALIDATE",
|
|
82
80
|
REGISTER: "REGISTER",
|
|
81
|
+
EDIT: "EDIT",
|
|
83
82
|
// Declaration system actions. Non-configurable.
|
|
84
83
|
DUPLICATE_DETECTED: "DUPLICATE_DETECTED",
|
|
85
84
|
REJECT: "REJECT",
|
|
@@ -95,26 +94,29 @@ var ActionType = {
|
|
|
95
94
|
// General actions
|
|
96
95
|
READ: "READ",
|
|
97
96
|
ASSIGN: "ASSIGN",
|
|
98
|
-
UNASSIGN: "UNASSIGN"
|
|
97
|
+
UNASSIGN: "UNASSIGN",
|
|
98
|
+
// Custom action
|
|
99
|
+
CUSTOM: "CUSTOM"
|
|
99
100
|
};
|
|
100
101
|
var ConfirmableActions = [
|
|
101
102
|
ActionType.NOTIFY,
|
|
102
103
|
ActionType.DECLARE,
|
|
103
|
-
ActionType.
|
|
104
|
+
ActionType.EDIT,
|
|
104
105
|
ActionType.REGISTER,
|
|
105
106
|
ActionType.REJECT,
|
|
106
107
|
ActionType.ARCHIVE,
|
|
107
108
|
ActionType.PRINT_CERTIFICATE,
|
|
108
109
|
ActionType.REQUEST_CORRECTION,
|
|
109
110
|
ActionType.APPROVE_CORRECTION,
|
|
110
|
-
ActionType.REJECT_CORRECTION
|
|
111
|
+
ActionType.REJECT_CORRECTION,
|
|
112
|
+
ActionType.CUSTOM
|
|
111
113
|
];
|
|
112
|
-
var ActionTypes =
|
|
114
|
+
var ActionTypes = z2.enum([
|
|
113
115
|
"DELETE",
|
|
114
116
|
"CREATE",
|
|
115
117
|
"NOTIFY",
|
|
116
118
|
"DECLARE",
|
|
117
|
-
"
|
|
119
|
+
"EDIT",
|
|
118
120
|
"REGISTER",
|
|
119
121
|
"DUPLICATE_DETECTED",
|
|
120
122
|
"REJECT",
|
|
@@ -127,14 +129,15 @@ var ActionTypes = import_zod2.z.enum([
|
|
|
127
129
|
"APPROVE_CORRECTION",
|
|
128
130
|
"READ",
|
|
129
131
|
"ASSIGN",
|
|
130
|
-
"UNASSIGN"
|
|
132
|
+
"UNASSIGN",
|
|
133
|
+
"CUSTOM"
|
|
131
134
|
]);
|
|
132
135
|
var ClientSpecificAction = {
|
|
133
136
|
REVIEW_CORRECTION_REQUEST: "REVIEW_CORRECTION_REQUEST"
|
|
134
137
|
};
|
|
135
138
|
var declarationActionValues = [
|
|
136
139
|
ActionTypes.enum.DECLARE,
|
|
137
|
-
ActionTypes.enum.
|
|
140
|
+
ActionTypes.enum.EDIT,
|
|
138
141
|
ActionTypes.enum.REGISTER,
|
|
139
142
|
ActionTypes.enum.NOTIFY,
|
|
140
143
|
ActionTypes.enum.DUPLICATE_DETECTED
|
|
@@ -155,13 +158,14 @@ var writeActions = ActionTypes.exclude([
|
|
|
155
158
|
ActionType.UNASSIGN
|
|
156
159
|
]);
|
|
157
160
|
var workqueueActions = ActionTypes.exclude([
|
|
161
|
+
ActionType.READ,
|
|
158
162
|
ActionType.CREATE,
|
|
159
163
|
ActionType.NOTIFY,
|
|
160
164
|
ActionType.DUPLICATE_DETECTED,
|
|
161
|
-
ActionType.REJECT,
|
|
162
165
|
ActionType.MARK_AS_NOT_DUPLICATE,
|
|
163
166
|
ActionType.REJECT_CORRECTION,
|
|
164
|
-
ActionType.APPROVE_CORRECTION
|
|
167
|
+
ActionType.APPROVE_CORRECTION,
|
|
168
|
+
ActionType.CUSTOM
|
|
165
169
|
]);
|
|
166
170
|
var META_ACTIONS = [
|
|
167
171
|
ActionType.ASSIGN,
|
|
@@ -170,59 +174,57 @@ var META_ACTIONS = [
|
|
|
170
174
|
];
|
|
171
175
|
|
|
172
176
|
// ../commons/src/events/FieldConfig.ts
|
|
173
|
-
var
|
|
177
|
+
var z16 = __toESM(require("zod/v4"));
|
|
174
178
|
|
|
175
179
|
// ../commons/src/events/Conditional.ts
|
|
176
|
-
var
|
|
177
|
-
var
|
|
178
|
-
(0, import_zod_openapi2.extendZodWithOpenApi)(import_zod3.z);
|
|
179
|
-
var Conditional = import_zod3.z.custom((val) => typeof val === "object" && val !== null).openapi({
|
|
180
|
+
var z3 = __toESM(require("zod/v4"));
|
|
181
|
+
var Conditional = z3.any().describe("JSONSchema").meta({
|
|
180
182
|
description: "JSON schema conditional configuration",
|
|
181
|
-
|
|
183
|
+
id: "Conditional"
|
|
182
184
|
});
|
|
183
185
|
var ConditionalType = {
|
|
184
186
|
SHOW: "SHOW",
|
|
185
187
|
ENABLE: "ENABLE",
|
|
186
188
|
DISPLAY_ON_REVIEW: "DISPLAY_ON_REVIEW"
|
|
187
189
|
};
|
|
188
|
-
var ShowConditional =
|
|
189
|
-
type:
|
|
190
|
+
var ShowConditional = z3.object({
|
|
191
|
+
type: z3.literal(ConditionalType.SHOW),
|
|
190
192
|
conditional: Conditional
|
|
191
193
|
}).describe(
|
|
192
194
|
"If 'SHOW' conditional is defined, the component is shown to the user only if the condition is met"
|
|
193
195
|
);
|
|
194
|
-
var EnableConditional =
|
|
195
|
-
type:
|
|
196
|
+
var EnableConditional = z3.object({
|
|
197
|
+
type: z3.literal(ConditionalType.ENABLE),
|
|
196
198
|
conditional: Conditional
|
|
197
199
|
}).describe(
|
|
198
200
|
"If 'ENABLE' conditional is defined, the component is enabled only if the condition is met"
|
|
199
201
|
);
|
|
200
|
-
var ActionConditional =
|
|
202
|
+
var ActionConditional = z3.discriminatedUnion("type", [
|
|
201
203
|
// Action can be shown / hidden
|
|
202
204
|
ShowConditional,
|
|
203
205
|
// Action can be shown to the user in the list but as disabled
|
|
204
206
|
EnableConditional
|
|
205
207
|
]);
|
|
206
|
-
var DisplayOnReviewConditional =
|
|
207
|
-
type:
|
|
208
|
+
var DisplayOnReviewConditional = z3.object({
|
|
209
|
+
type: z3.literal(ConditionalType.DISPLAY_ON_REVIEW),
|
|
208
210
|
conditional: Conditional
|
|
209
211
|
}).describe(
|
|
210
212
|
"If 'DISPLAY_ON_REVIEW' conditional is defined, the component is shown on the review page only if both the 'DISPLAY_ON_REVIEW' and 'SHOW' conditions are met. This should only be used for fields within declaration forms, as they are the only ones with review pages."
|
|
211
213
|
);
|
|
212
|
-
var FieldConditional =
|
|
214
|
+
var FieldConditional = z3.discriminatedUnion("type", [
|
|
213
215
|
// Field input can be shown / hidden
|
|
214
216
|
ShowConditional,
|
|
215
217
|
// Field input can be shown to the user but as disabled
|
|
216
218
|
EnableConditional,
|
|
217
219
|
// Field output can be shown / hidden on the review page
|
|
218
220
|
DisplayOnReviewConditional
|
|
219
|
-
]).
|
|
221
|
+
]).meta({
|
|
220
222
|
description: "Field conditional configuration",
|
|
221
|
-
|
|
223
|
+
id: "FieldConditional"
|
|
222
224
|
});
|
|
223
225
|
|
|
224
226
|
// ../commons/src/events/FieldType.ts
|
|
225
|
-
var
|
|
227
|
+
var z4 = __toESM(require("zod/v4"));
|
|
226
228
|
var FieldType = {
|
|
227
229
|
NAME: "NAME",
|
|
228
230
|
PHONE: "PHONE",
|
|
@@ -264,9 +266,21 @@ var FieldType = {
|
|
|
264
266
|
QUERY_PARAM_READER: "QUERY_PARAM_READER",
|
|
265
267
|
QR_READER: "QR_READER",
|
|
266
268
|
ID_READER: "ID_READER",
|
|
267
|
-
LOADER: "LOADER"
|
|
269
|
+
LOADER: "LOADER",
|
|
270
|
+
ALPHA_HIDDEN: "ALPHA_HIDDEN",
|
|
271
|
+
/**
|
|
272
|
+
* @internal
|
|
273
|
+
* @experimental
|
|
274
|
+
*
|
|
275
|
+
* Internal API used by the OpenCRVS core team for experimentation.
|
|
276
|
+
*
|
|
277
|
+
* This component is not part of the public, stable API.
|
|
278
|
+
* Its shape, behavior, or existence may change at any time or be removed
|
|
279
|
+
* entirely without notice.
|
|
280
|
+
*/
|
|
281
|
+
_EXPERIMENTAL_CUSTOM: "CUSTOM"
|
|
268
282
|
};
|
|
269
|
-
var FileFieldType =
|
|
283
|
+
var FileFieldType = z4.enum([
|
|
270
284
|
FieldType.FILE,
|
|
271
285
|
FieldType.FILE_WITH_OPTIONS,
|
|
272
286
|
FieldType.SIGNATURE
|
|
@@ -290,146 +304,147 @@ var FieldTypesToHideInReview = [
|
|
|
290
304
|
FieldType.LOADER,
|
|
291
305
|
FieldType.HTTP,
|
|
292
306
|
FieldType.QUERY_PARAM_READER,
|
|
293
|
-
FieldType.DATA
|
|
307
|
+
FieldType.DATA,
|
|
308
|
+
FieldType.ALPHA_HIDDEN
|
|
294
309
|
];
|
|
295
310
|
|
|
296
311
|
// ../commons/src/events/FieldValue.ts
|
|
297
|
-
var
|
|
312
|
+
var z7 = __toESM(require("zod/v4"));
|
|
298
313
|
|
|
299
314
|
// ../commons/src/documents.ts
|
|
300
|
-
var
|
|
301
|
-
var
|
|
302
|
-
(0, import_zod_openapi3.extendZodWithOpenApi)(import_zod5.z);
|
|
303
|
-
var FullDocumentUrl = import_zod5.z.string().brand("FullDocumentUrl").describe(
|
|
315
|
+
var z5 = __toESM(require("zod/v4"));
|
|
316
|
+
var FullDocumentUrl = z5.string().brand("FullDocumentUrl").describe(
|
|
304
317
|
"A full url with protocol, host, bucket name, starting from the root of the S3 server, https://minio.opencrvs.com/bucket-name/document-id.jpg"
|
|
305
318
|
);
|
|
306
|
-
var FullDocumentPath =
|
|
319
|
+
var FullDocumentPath = z5.string().overwrite((val) => val.startsWith("/") ? val : `/${val}`).meta({ effectType: "input", type: "string" }).describe(
|
|
307
320
|
"A full absolute path with bucket name, starting from the root of the S3 server, /bucket-name/document-id.jpg"
|
|
308
321
|
);
|
|
309
|
-
var DocumentPath =
|
|
322
|
+
var DocumentPath = z5.string().brand("DocumentPath").describe(
|
|
310
323
|
"A full identifier starting from the root of the S3 bucket, e.g. /document-id.jpg or /directory/document-id.jpg but never /bucket-name/document-id.jpg"
|
|
311
324
|
);
|
|
312
325
|
|
|
313
326
|
// ../commons/src/events/CompositeFieldValue.ts
|
|
314
|
-
var
|
|
327
|
+
var z6 = __toESM(require("zod/v4"));
|
|
315
328
|
var AddressType = {
|
|
316
329
|
DOMESTIC: "DOMESTIC",
|
|
317
330
|
INTERNATIONAL: "INTERNATIONAL"
|
|
318
331
|
};
|
|
319
|
-
var FileFieldValue =
|
|
332
|
+
var FileFieldValue = z6.object({
|
|
320
333
|
path: FullDocumentPath,
|
|
321
|
-
originalFilename:
|
|
322
|
-
type:
|
|
334
|
+
originalFilename: z6.string(),
|
|
335
|
+
type: z6.string()
|
|
323
336
|
});
|
|
324
|
-
var NameFieldValue =
|
|
325
|
-
firstname:
|
|
326
|
-
surname:
|
|
327
|
-
middlename:
|
|
337
|
+
var NameFieldValue = z6.object({
|
|
338
|
+
firstname: z6.string(),
|
|
339
|
+
surname: z6.string(),
|
|
340
|
+
middlename: z6.string().optional()
|
|
328
341
|
});
|
|
329
|
-
var NameFieldUpdateValue =
|
|
330
|
-
firstname:
|
|
331
|
-
surname:
|
|
332
|
-
middlename:
|
|
333
|
-
}).or(
|
|
334
|
-
var StreetLevelDetailsValue =
|
|
335
|
-
var StreetLevelDetailsUpdateValue =
|
|
336
|
-
var BaseAddressFieldValue =
|
|
337
|
-
country:
|
|
342
|
+
var NameFieldUpdateValue = z6.object({
|
|
343
|
+
firstname: z6.string().nullish(),
|
|
344
|
+
surname: z6.string().nullish(),
|
|
345
|
+
middlename: z6.string().nullish()
|
|
346
|
+
}).or(z6.null()).or(z6.undefined());
|
|
347
|
+
var StreetLevelDetailsValue = z6.record(z6.string(), z6.string()).optional();
|
|
348
|
+
var StreetLevelDetailsUpdateValue = z6.record(z6.string(), z6.string().nullable()).nullish();
|
|
349
|
+
var BaseAddressFieldValue = z6.object({
|
|
350
|
+
country: z6.string(),
|
|
338
351
|
streetLevelDetails: StreetLevelDetailsValue
|
|
339
352
|
});
|
|
340
|
-
var BaseAddressFieldUpdateValue =
|
|
341
|
-
country:
|
|
353
|
+
var BaseAddressFieldUpdateValue = z6.object({
|
|
354
|
+
country: z6.string().nullish(),
|
|
342
355
|
streetLevelDetails: StreetLevelDetailsUpdateValue
|
|
343
356
|
});
|
|
344
357
|
var DomesticAddressFieldValue = BaseAddressFieldValue.extend({
|
|
345
|
-
addressType:
|
|
346
|
-
administrativeArea:
|
|
358
|
+
addressType: z6.literal(AddressType.DOMESTIC),
|
|
359
|
+
administrativeArea: z6.string().uuid()
|
|
347
360
|
});
|
|
348
361
|
var InternationalAddressFieldValue = BaseAddressFieldValue.extend({
|
|
349
|
-
addressType:
|
|
362
|
+
addressType: z6.literal(AddressType.INTERNATIONAL)
|
|
350
363
|
});
|
|
351
|
-
var AddressFieldValue =
|
|
364
|
+
var AddressFieldValue = z6.discriminatedUnion("addressType", [
|
|
352
365
|
DomesticAddressFieldValue,
|
|
353
366
|
InternationalAddressFieldValue
|
|
354
367
|
]);
|
|
355
368
|
var DomesticAddressUpdateFieldValue = BaseAddressFieldUpdateValue.extend({
|
|
356
|
-
addressType:
|
|
357
|
-
administrativeArea:
|
|
369
|
+
addressType: z6.literal(AddressType.DOMESTIC),
|
|
370
|
+
administrativeArea: z6.string().uuid().nullish()
|
|
358
371
|
/* Leaf level admin structure */
|
|
359
372
|
});
|
|
360
373
|
var InternationalAddressUpdateFieldValue = BaseAddressFieldUpdateValue.extend(
|
|
361
374
|
{
|
|
362
|
-
addressType:
|
|
375
|
+
addressType: z6.literal(AddressType.INTERNATIONAL)
|
|
363
376
|
}
|
|
364
377
|
);
|
|
365
|
-
var AddressFieldUpdateValue =
|
|
378
|
+
var AddressFieldUpdateValue = z6.discriminatedUnion("addressType", [
|
|
366
379
|
DomesticAddressUpdateFieldValue,
|
|
367
380
|
InternationalAddressUpdateFieldValue
|
|
368
381
|
]).nullish();
|
|
369
|
-
var FileFieldValueWithOption =
|
|
382
|
+
var FileFieldValueWithOption = z6.object({
|
|
370
383
|
path: FullDocumentPath,
|
|
371
|
-
originalFilename:
|
|
372
|
-
type:
|
|
373
|
-
option:
|
|
384
|
+
originalFilename: z6.string(),
|
|
385
|
+
type: z6.string(),
|
|
386
|
+
option: z6.string()
|
|
374
387
|
});
|
|
375
|
-
var FileFieldWithOptionValue =
|
|
376
|
-
var HttpFieldValue =
|
|
377
|
-
loading:
|
|
378
|
-
error:
|
|
379
|
-
data:
|
|
388
|
+
var FileFieldWithOptionValue = z6.array(FileFieldValueWithOption);
|
|
389
|
+
var HttpFieldValue = z6.object({
|
|
390
|
+
loading: z6.boolean(),
|
|
391
|
+
error: z6.object({ statusCode: z6.number(), message: z6.string() }).nullish(),
|
|
392
|
+
data: z6.any()
|
|
380
393
|
});
|
|
381
|
-
var HttpFieldUpdateValue =
|
|
382
|
-
loading:
|
|
383
|
-
error:
|
|
384
|
-
data:
|
|
385
|
-
}).or(
|
|
386
|
-
var QueryParamReaderFieldValue =
|
|
387
|
-
data:
|
|
394
|
+
var HttpFieldUpdateValue = z6.object({
|
|
395
|
+
loading: z6.boolean().nullish(),
|
|
396
|
+
error: z6.object({ statusCode: z6.number(), message: z6.string() }).nullish(),
|
|
397
|
+
data: z6.any().nullish()
|
|
398
|
+
}).or(z6.null()).or(z6.undefined());
|
|
399
|
+
var QueryParamReaderFieldValue = z6.object({
|
|
400
|
+
data: z6.record(z6.string(), z6.string())
|
|
388
401
|
}).nullish();
|
|
389
|
-
var QueryParamReaderFieldUpdateValue =
|
|
390
|
-
data:
|
|
402
|
+
var QueryParamReaderFieldUpdateValue = z6.object({
|
|
403
|
+
data: z6.record(z6.string(), z6.string())
|
|
391
404
|
});
|
|
392
|
-
var ReadDataValue =
|
|
393
|
-
data:
|
|
405
|
+
var ReadDataValue = z6.object({
|
|
406
|
+
data: z6.any()
|
|
394
407
|
});
|
|
395
408
|
var QrReaderFieldValue = ReadDataValue;
|
|
396
409
|
var IdReaderFieldValue = ReadDataValue;
|
|
410
|
+
var CustomFieldValue = z6.unknown().brand("CustomFieldValue");
|
|
397
411
|
|
|
398
412
|
// ../commons/src/events/FieldValue.ts
|
|
399
|
-
var TextValue =
|
|
413
|
+
var TextValue = z7.string();
|
|
414
|
+
var HiddenFieldValue = z7.string();
|
|
400
415
|
var NonEmptyTextValue = TextValue.min(1);
|
|
401
|
-
var DateValue =
|
|
402
|
-
var AgeValue =
|
|
403
|
-
age:
|
|
404
|
-
asOfDateRef:
|
|
416
|
+
var DateValue = z7.iso.date().describe("Date in the format YYYY-MM-DD");
|
|
417
|
+
var AgeValue = z7.object({
|
|
418
|
+
age: z7.number(),
|
|
419
|
+
asOfDateRef: z7.string()
|
|
405
420
|
});
|
|
406
421
|
var AgeUpdateValue = AgeValue.optional().nullable();
|
|
407
|
-
var TimeValue =
|
|
408
|
-
var DatetimeValue =
|
|
409
|
-
var SelectDateRangeValue =
|
|
422
|
+
var TimeValue = z7.string().regex(/^([01][0-9]|2[0-3]):[0-5][0-9]$/);
|
|
423
|
+
var DatetimeValue = z7.iso.datetime();
|
|
424
|
+
var SelectDateRangeValue = z7.enum([
|
|
410
425
|
"last7Days",
|
|
411
426
|
"last30Days",
|
|
412
427
|
"last90Days",
|
|
413
428
|
"last365Days"
|
|
414
429
|
]);
|
|
415
|
-
var DateRangeFieldValue =
|
|
430
|
+
var DateRangeFieldValue = z7.object({
|
|
416
431
|
start: DateValue,
|
|
417
432
|
end: DateValue
|
|
418
433
|
}).or(DateValue).describe(
|
|
419
434
|
"Date range with start and end dates in the format YYYY-MM-DD. Inclusive start, exclusive end."
|
|
420
435
|
);
|
|
421
|
-
var EmailValue =
|
|
422
|
-
var CheckboxFieldValue =
|
|
423
|
-
var NumberFieldValue =
|
|
424
|
-
var SignatureFieldValue =
|
|
425
|
-
var ButtonFieldValue =
|
|
426
|
-
var VerificationStatusValue =
|
|
436
|
+
var EmailValue = z7.email();
|
|
437
|
+
var CheckboxFieldValue = z7.boolean();
|
|
438
|
+
var NumberFieldValue = z7.number();
|
|
439
|
+
var SignatureFieldValue = z7.string();
|
|
440
|
+
var ButtonFieldValue = z7.number();
|
|
441
|
+
var VerificationStatusValue = z7.enum([
|
|
427
442
|
"verified",
|
|
428
443
|
"authenticated",
|
|
429
444
|
"failed",
|
|
430
445
|
"pending"
|
|
431
446
|
]);
|
|
432
|
-
var FieldValuesWithoutDataField =
|
|
447
|
+
var FieldValuesWithoutDataField = z7.union([
|
|
433
448
|
AddressFieldValue,
|
|
434
449
|
TextValue,
|
|
435
450
|
DateValue,
|
|
@@ -448,12 +463,13 @@ var FieldValuesWithoutDataField = import_zod7.z.union([
|
|
|
448
463
|
VerificationStatusValue,
|
|
449
464
|
QueryParamReaderFieldValue,
|
|
450
465
|
QrReaderFieldValue,
|
|
451
|
-
IdReaderFieldValue
|
|
466
|
+
IdReaderFieldValue,
|
|
467
|
+
CustomFieldValue
|
|
452
468
|
]);
|
|
453
|
-
var DataFieldValue =
|
|
454
|
-
data:
|
|
469
|
+
var DataFieldValue = z7.object({
|
|
470
|
+
data: z7.record(z7.string(), FieldValuesWithoutDataField)
|
|
455
471
|
}).nullish();
|
|
456
|
-
var FieldValue =
|
|
472
|
+
var FieldValue = z7.union([
|
|
457
473
|
FieldValuesWithoutDataField,
|
|
458
474
|
DataFieldValue
|
|
459
475
|
]);
|
|
@@ -473,22 +489,38 @@ var PRIORITY_ORDER = [
|
|
|
473
489
|
"DataFieldValue"
|
|
474
490
|
];
|
|
475
491
|
function schemaPriority(schema) {
|
|
476
|
-
const name = schema.
|
|
492
|
+
const name = schema.description;
|
|
493
|
+
if (!name) {
|
|
494
|
+
return 9999;
|
|
495
|
+
}
|
|
477
496
|
const idx = PRIORITY_ORDER.indexOf(name);
|
|
478
497
|
return idx === -1 ? 9999 : idx;
|
|
479
498
|
}
|
|
480
499
|
function safeUnion(schemas) {
|
|
481
|
-
return
|
|
500
|
+
return z7.any().superRefine((val, ctx) => {
|
|
482
501
|
const successful = schemas.filter((s) => s.safeParse(val).success);
|
|
483
502
|
if (successful.length === 1) {
|
|
484
|
-
return
|
|
503
|
+
return;
|
|
485
504
|
}
|
|
486
505
|
if (successful.length === 0) {
|
|
487
|
-
|
|
506
|
+
ctx.addIssue({
|
|
507
|
+
code: "invalid_type",
|
|
508
|
+
expected: "custom",
|
|
509
|
+
message: "Value does not match any schema"
|
|
510
|
+
});
|
|
511
|
+
return;
|
|
488
512
|
}
|
|
489
513
|
successful.sort((a, b) => schemaPriority(a) - schemaPriority(b));
|
|
490
514
|
const best = successful[0];
|
|
491
|
-
|
|
515
|
+
if (!best.safeParse(val).success) {
|
|
516
|
+
ctx.addIssue({
|
|
517
|
+
expected: "custom",
|
|
518
|
+
code: "invalid_type",
|
|
519
|
+
message: "Value did not match the best schema"
|
|
520
|
+
});
|
|
521
|
+
}
|
|
522
|
+
}).meta({
|
|
523
|
+
description: "Value that matches exactly one of the possible schema types (TextValue, DateValue, DateRangeFieldValue). The best matching schema is chosen by priority."
|
|
492
524
|
});
|
|
493
525
|
}
|
|
494
526
|
var FieldUpdateValue = safeUnion([
|
|
@@ -506,24 +538,23 @@ var FieldUpdateValue = safeUnion([
|
|
|
506
538
|
DataFieldValue.describe("DataFieldValue"),
|
|
507
539
|
NameFieldUpdateValue.describe("NameFieldUpdateValue"),
|
|
508
540
|
HttpFieldUpdateValue.describe("HttpFieldUpdateValue"),
|
|
509
|
-
QueryParamReaderFieldUpdateValue.describe("QueryParamReaderFieldUpdateValue")
|
|
541
|
+
QueryParamReaderFieldUpdateValue.describe("QueryParamReaderFieldUpdateValue"),
|
|
542
|
+
CustomFieldValue.describe("CustomFieldValue"),
|
|
543
|
+
HiddenFieldValue.describe("HiddenFieldValue")
|
|
510
544
|
]);
|
|
511
545
|
|
|
512
|
-
// ../commons/src/events/FieldConfig.ts
|
|
513
|
-
var import_zod_openapi6 = require("zod-openapi");
|
|
514
|
-
|
|
515
546
|
// ../commons/src/uuid.ts
|
|
516
547
|
var import_uuid = require("uuid");
|
|
517
|
-
var
|
|
518
|
-
var UUID =
|
|
548
|
+
var z8 = __toESM(require("zod/v4"));
|
|
549
|
+
var UUID = z8.uuid().brand("UUID");
|
|
519
550
|
function getUUID() {
|
|
520
551
|
return (0, import_uuid.v4)();
|
|
521
552
|
}
|
|
522
553
|
|
|
523
554
|
// ../commons/src/events/serializers/user/serializer.ts
|
|
524
|
-
var
|
|
525
|
-
var SerializedUserField =
|
|
526
|
-
$userField:
|
|
555
|
+
var z9 = __toESM(require("zod/v4"));
|
|
556
|
+
var SerializedUserField = z9.object({
|
|
557
|
+
$userField: z9.enum([
|
|
527
558
|
"id",
|
|
528
559
|
"name",
|
|
529
560
|
"role",
|
|
@@ -532,11 +563,12 @@ var SerializedUserField = import_zod9.z.object({
|
|
|
532
563
|
"firstname",
|
|
533
564
|
"middlename",
|
|
534
565
|
"surname",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
537
|
-
"primaryOfficeId"
|
|
566
|
+
"signature",
|
|
567
|
+
"avatar",
|
|
568
|
+
"primaryOfficeId",
|
|
569
|
+
"administrativeAreaId"
|
|
538
570
|
]),
|
|
539
|
-
$location:
|
|
571
|
+
$location: z9.string().optional()
|
|
540
572
|
});
|
|
541
573
|
function userSerializer(userField) {
|
|
542
574
|
return {
|
|
@@ -556,24 +588,23 @@ function userSerializer(userField) {
|
|
|
556
588
|
}
|
|
557
589
|
|
|
558
590
|
// ../commons/src/events/EventIndex.ts
|
|
559
|
-
var
|
|
591
|
+
var import_v4 = require("zod/v4");
|
|
560
592
|
|
|
561
593
|
// ../commons/src/events/EventMetadata.ts
|
|
562
|
-
var
|
|
594
|
+
var z14 = __toESM(require("zod/v4"));
|
|
563
595
|
|
|
564
596
|
// ../commons/src/events/ActionDocument.ts
|
|
565
|
-
var
|
|
566
|
-
var import_zod_openapi4 = require("zod-openapi");
|
|
597
|
+
var z12 = __toESM(require("zod/v4"));
|
|
567
598
|
|
|
568
599
|
// ../commons/src/events/CreatedAtLocation.ts
|
|
569
600
|
var CreatedAtLocation = UUID.nullish();
|
|
570
601
|
|
|
571
602
|
// ../commons/src/authentication.ts
|
|
572
603
|
var import_jwt_decode = __toESM(require("jwt-decode"));
|
|
573
|
-
var
|
|
604
|
+
var z11 = __toESM(require("zod/v4"));
|
|
574
605
|
|
|
575
606
|
// ../commons/src/scopes.ts
|
|
576
|
-
var
|
|
607
|
+
var z10 = __toESM(require("zod/v4"));
|
|
577
608
|
var SCOPES = {
|
|
578
609
|
// TODO v1.8 legacy scopes
|
|
579
610
|
BYPASSRATELIMIT: "bypassratelimit",
|
|
@@ -652,91 +683,91 @@ var SCOPES = {
|
|
|
652
683
|
// data seeding
|
|
653
684
|
USER_DATA_SEEDING: "user.data-seeding"
|
|
654
685
|
};
|
|
655
|
-
var LegacyScopes =
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
686
|
+
var LegacyScopes = z10.union([
|
|
687
|
+
z10.literal(SCOPES.BYPASSRATELIMIT),
|
|
688
|
+
z10.literal(SCOPES.REGISTER),
|
|
689
|
+
z10.literal(SCOPES.DEMO),
|
|
690
|
+
z10.literal(SCOPES.CONFIG)
|
|
660
691
|
]);
|
|
661
|
-
var IntegrationScopes =
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
692
|
+
var IntegrationScopes = z10.union([
|
|
693
|
+
z10.literal(SCOPES.WEBHOOK),
|
|
694
|
+
z10.literal(SCOPES.NATIONALID),
|
|
695
|
+
z10.literal(SCOPES.NOTIFICATION_API),
|
|
696
|
+
z10.literal(SCOPES.RECORDSEARCH)
|
|
666
697
|
]);
|
|
667
|
-
var InternalOperationsScopes =
|
|
668
|
-
|
|
669
|
-
|
|
698
|
+
var InternalOperationsScopes = z10.union([
|
|
699
|
+
z10.literal(SCOPES.RECORD_REINDEX),
|
|
700
|
+
z10.literal(SCOPES.RECORD_IMPORT)
|
|
670
701
|
]);
|
|
671
|
-
var DeclareScopes =
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
702
|
+
var DeclareScopes = z10.union([
|
|
703
|
+
z10.literal(SCOPES.RECORD_DECLARE_BIRTH),
|
|
704
|
+
z10.literal(SCOPES.RECORD_DECLARE_BIRTH_MY_JURISDICTION),
|
|
705
|
+
z10.literal(SCOPES.RECORD_DECLARE_DEATH),
|
|
706
|
+
z10.literal(SCOPES.RECORD_DECLARE_DEATH_MY_JURISDICTION),
|
|
707
|
+
z10.literal(SCOPES.RECORD_DECLARE_MARRIAGE),
|
|
708
|
+
z10.literal(SCOPES.RECORD_DECLARE_MARRIAGE_MY_JURISDICTION),
|
|
709
|
+
z10.literal(SCOPES.RECORD_SUBMIT_INCOMPLETE),
|
|
710
|
+
z10.literal(SCOPES.RECORD_SUBMIT_FOR_REVIEW)
|
|
680
711
|
]);
|
|
681
|
-
var UnassignScope =
|
|
682
|
-
var ValidateScopes =
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
712
|
+
var UnassignScope = z10.literal(SCOPES.RECORD_UNASSIGN_OTHERS);
|
|
713
|
+
var ValidateScopes = z10.union([
|
|
714
|
+
z10.literal(SCOPES.RECORD_SUBMIT_FOR_APPROVAL),
|
|
715
|
+
z10.literal(SCOPES.RECORD_SUBMIT_FOR_UPDATES),
|
|
716
|
+
z10.literal(SCOPES.RECORD_DECLARATION_EDIT),
|
|
717
|
+
z10.literal(SCOPES.RECORD_REVIEW_DUPLICATES),
|
|
718
|
+
z10.literal(SCOPES.RECORD_DECLARATION_ARCHIVE),
|
|
719
|
+
z10.literal(SCOPES.RECORD_DECLARATION_REINSTATE)
|
|
689
720
|
]);
|
|
690
|
-
var RegisterScope =
|
|
691
|
-
var CorrectionScopes =
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
721
|
+
var RegisterScope = z10.literal(SCOPES.RECORD_REGISTER);
|
|
722
|
+
var CorrectionScopes = z10.union([
|
|
723
|
+
z10.literal(SCOPES.RECORD_REGISTRATION_REQUEST_CORRECTION),
|
|
724
|
+
z10.literal(SCOPES.RECORD_REGISTRATION_CORRECT),
|
|
725
|
+
z10.literal(SCOPES.RECORD_CONFIRM_REGISTRATION),
|
|
726
|
+
z10.literal(SCOPES.RECORD_REJECT_REGISTRATION)
|
|
696
727
|
]);
|
|
697
|
-
var SearchScopes =
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
728
|
+
var SearchScopes = z10.union([
|
|
729
|
+
z10.literal(SCOPES.SEARCH_BIRTH_MY_JURISDICTION),
|
|
730
|
+
z10.literal(SCOPES.SEARCH_BIRTH),
|
|
731
|
+
z10.literal(SCOPES.SEARCH_DEATH_MY_JURISDICTION),
|
|
732
|
+
z10.literal(SCOPES.SEARCH_DEATH),
|
|
733
|
+
z10.literal(SCOPES.SEARCH_MARRIAGE_MY_JURISDICTION),
|
|
734
|
+
z10.literal(SCOPES.SEARCH_MARRIAGE)
|
|
704
735
|
]);
|
|
705
|
-
var AuditScopes =
|
|
706
|
-
var PerformanceScopes =
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
736
|
+
var AuditScopes = z10.literal(SCOPES.RECORD_READ);
|
|
737
|
+
var PerformanceScopes = z10.union([
|
|
738
|
+
z10.literal(SCOPES.PERFORMANCE_READ),
|
|
739
|
+
z10.literal(SCOPES.PERFORMANCE_READ_DASHBOARDS),
|
|
740
|
+
z10.literal(SCOPES.PERFORMANCE_EXPORT_VITAL_STATISTICS)
|
|
710
741
|
]);
|
|
711
|
-
var OrganisationScopes =
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
742
|
+
var OrganisationScopes = z10.union([
|
|
743
|
+
z10.literal(SCOPES.ORGANISATION_READ_LOCATIONS),
|
|
744
|
+
z10.literal(SCOPES.ORGANISATION_READ_LOCATIONS_MY_OFFICE),
|
|
745
|
+
z10.literal(SCOPES.ORGANISATION_READ_LOCATIONS_MY_JURISDICTION)
|
|
715
746
|
]);
|
|
716
|
-
var UserScopes =
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
747
|
+
var UserScopes = z10.union([
|
|
748
|
+
z10.literal(SCOPES.USER_READ),
|
|
749
|
+
z10.literal(SCOPES.USER_READ_MY_OFFICE),
|
|
750
|
+
z10.literal(SCOPES.USER_READ_MY_JURISDICTION),
|
|
751
|
+
z10.literal(SCOPES.USER_READ_ONLY_MY_AUDIT),
|
|
752
|
+
z10.literal(SCOPES.USER_CREATE),
|
|
753
|
+
z10.literal(SCOPES.USER_CREATE_MY_JURISDICTION),
|
|
754
|
+
z10.literal(SCOPES.USER_UPDATE),
|
|
755
|
+
z10.literal(SCOPES.USER_UPDATE_MY_JURISDICTION)
|
|
725
756
|
]);
|
|
726
|
-
var ConfigScope =
|
|
727
|
-
var DataSeedingScope =
|
|
728
|
-
var LiteralScopes =
|
|
757
|
+
var ConfigScope = z10.literal(SCOPES.CONFIG_UPDATE_ALL);
|
|
758
|
+
var DataSeedingScope = z10.literal(SCOPES.USER_DATA_SEEDING);
|
|
759
|
+
var LiteralScopes = z10.union([
|
|
729
760
|
LegacyScopes,
|
|
730
761
|
IntegrationScopes,
|
|
731
762
|
UnassignScope,
|
|
732
763
|
DeclareScopes,
|
|
733
764
|
ValidateScopes,
|
|
734
765
|
RegisterScope,
|
|
735
|
-
|
|
766
|
+
z10.literal(SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES),
|
|
736
767
|
CorrectionScopes,
|
|
737
768
|
SearchScopes,
|
|
738
769
|
AuditScopes,
|
|
739
|
-
|
|
770
|
+
z10.literal(SCOPES.PROFILE_ELECTRONIC_SIGNATURE),
|
|
740
771
|
PerformanceScopes,
|
|
741
772
|
OrganisationScopes,
|
|
742
773
|
UserScopes,
|
|
@@ -745,38 +776,38 @@ var LiteralScopes = import_zod10.z.union([
|
|
|
745
776
|
InternalOperationsScopes
|
|
746
777
|
]);
|
|
747
778
|
var rawConfigurableScopeRegex = /^([a-zA-Z][a-zA-Z0-9.-]*(?:\.[a-zA-Z0-9.-]+)*)\[((?:\w+=[\w.-]+(?:\|[\w.-]+)*)(?:,[\w]+=[\w.-]+(?:\|[\w.-]+)*)*)\]$/;
|
|
748
|
-
var rawConfigurableScope =
|
|
749
|
-
var CreateUserScope =
|
|
750
|
-
type:
|
|
751
|
-
options:
|
|
752
|
-
role:
|
|
779
|
+
var rawConfigurableScope = z10.string().regex(rawConfigurableScopeRegex);
|
|
780
|
+
var CreateUserScope = z10.object({
|
|
781
|
+
type: z10.literal("user.create"),
|
|
782
|
+
options: z10.object({
|
|
783
|
+
role: z10.array(z10.string())
|
|
753
784
|
})
|
|
754
785
|
});
|
|
755
|
-
var EditUserScope =
|
|
756
|
-
type:
|
|
757
|
-
options:
|
|
758
|
-
role:
|
|
786
|
+
var EditUserScope = z10.object({
|
|
787
|
+
type: z10.literal("user.edit"),
|
|
788
|
+
options: z10.object({
|
|
789
|
+
role: z10.array(z10.string())
|
|
759
790
|
})
|
|
760
791
|
});
|
|
761
|
-
var WorkqueueScope =
|
|
762
|
-
type:
|
|
763
|
-
options:
|
|
764
|
-
id:
|
|
792
|
+
var WorkqueueScope = z10.object({
|
|
793
|
+
type: z10.literal("workqueue"),
|
|
794
|
+
options: z10.object({
|
|
795
|
+
id: z10.array(z10.string())
|
|
765
796
|
})
|
|
766
797
|
});
|
|
767
|
-
var SearchScope =
|
|
768
|
-
type:
|
|
769
|
-
options:
|
|
770
|
-
event:
|
|
771
|
-
access:
|
|
798
|
+
var SearchScope = z10.object({
|
|
799
|
+
type: z10.literal("search"),
|
|
800
|
+
options: z10.object({
|
|
801
|
+
event: z10.array(z10.string()).length(1),
|
|
802
|
+
access: z10.array(z10.enum(["my-jurisdiction", "all"])).length(1)
|
|
772
803
|
})
|
|
773
804
|
});
|
|
774
|
-
var RecordScopeType =
|
|
805
|
+
var RecordScopeType = z10.enum([
|
|
775
806
|
"record.create",
|
|
776
807
|
"record.read",
|
|
777
808
|
"record.declare",
|
|
778
809
|
"record.notify",
|
|
779
|
-
"record.declared.
|
|
810
|
+
"record.declared.edit",
|
|
780
811
|
"record.declared.reject",
|
|
781
812
|
"record.declared.archive",
|
|
782
813
|
"record.declared.review-duplicates",
|
|
@@ -786,27 +817,40 @@ var RecordScopeType = import_zod10.z.enum([
|
|
|
786
817
|
"record.registered.correct",
|
|
787
818
|
"record.unassign-others"
|
|
788
819
|
]);
|
|
789
|
-
var RecordScope =
|
|
820
|
+
var RecordScope = z10.object({
|
|
790
821
|
type: RecordScopeType,
|
|
791
|
-
options:
|
|
792
|
-
event:
|
|
822
|
+
options: z10.object({
|
|
823
|
+
event: z10.array(z10.string()).describe("Event type, e.g. birth, death")
|
|
793
824
|
})
|
|
794
825
|
}).describe(
|
|
795
826
|
"Scopes used to check user's permission to perform actions on a record."
|
|
796
827
|
);
|
|
797
|
-
var
|
|
828
|
+
var CustomActionScope = z10.object({
|
|
829
|
+
type: z10.literal("record.custom-action"),
|
|
830
|
+
options: z10.object({
|
|
831
|
+
event: z10.array(z10.string()).describe("Allowed event type, e.g. birth, death"),
|
|
832
|
+
customActionType: z10.array(z10.string()).describe("Allowed custom action types")
|
|
833
|
+
})
|
|
834
|
+
});
|
|
835
|
+
var ConfigurableRawScopes = z10.discriminatedUnion("type", [
|
|
798
836
|
SearchScope,
|
|
799
837
|
CreateUserScope,
|
|
800
838
|
EditUserScope,
|
|
801
839
|
WorkqueueScope,
|
|
802
|
-
RecordScope
|
|
840
|
+
RecordScope,
|
|
841
|
+
CustomActionScope
|
|
842
|
+
]);
|
|
843
|
+
var ConfigurableActionScopes = z10.discriminatedUnion("type", [
|
|
844
|
+
// @TODO - Record scope holds non-action scopes as well e.g., `record.read`
|
|
845
|
+
RecordScope,
|
|
846
|
+
CustomActionScope
|
|
803
847
|
]);
|
|
804
848
|
var scopes = Object.values(SCOPES);
|
|
805
|
-
var ActionScopes =
|
|
849
|
+
var ActionScopes = z10.union([
|
|
806
850
|
DeclareScopes,
|
|
807
851
|
ValidateScopes,
|
|
808
852
|
RegisterScope,
|
|
809
|
-
|
|
853
|
+
z10.literal(SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES),
|
|
810
854
|
CorrectionScopes
|
|
811
855
|
]);
|
|
812
856
|
|
|
@@ -940,15 +984,14 @@ var DEFAULT_ROLES_DEFINITION = [
|
|
|
940
984
|
]
|
|
941
985
|
}
|
|
942
986
|
];
|
|
943
|
-
var TokenUserType =
|
|
944
|
-
var TokenWithBearer =
|
|
987
|
+
var TokenUserType = z11.enum(["user", "system"]);
|
|
988
|
+
var TokenWithBearer = z11.string().regex(/^Bearer\s/);
|
|
945
989
|
|
|
946
990
|
// ../commons/src/events/ActionDocument.ts
|
|
947
|
-
(
|
|
948
|
-
var ActionUpdate = import_zod12.z.record(import_zod12.z.string(), FieldUpdateValue).describe(
|
|
991
|
+
var ActionUpdate = z12.record(z12.string(), FieldUpdateValue).describe(
|
|
949
992
|
"Record of field-level changes made by an action. Supports partial updates and nullable values."
|
|
950
993
|
);
|
|
951
|
-
var EventState =
|
|
994
|
+
var EventState = z12.record(z12.string(), FieldValue).describe(
|
|
952
995
|
"Aggregate representation of event data after all actions have been applied, with all updates consolidated and null values removed."
|
|
953
996
|
);
|
|
954
997
|
var ActionStatus = {
|
|
@@ -956,16 +999,16 @@ var ActionStatus = {
|
|
|
956
999
|
Accepted: "Accepted",
|
|
957
1000
|
Rejected: "Rejected"
|
|
958
1001
|
};
|
|
959
|
-
var ActionBase =
|
|
1002
|
+
var ActionBase = z12.object({
|
|
960
1003
|
id: UUID.describe("Unique identifier of the action."),
|
|
961
|
-
transactionId:
|
|
1004
|
+
transactionId: z12.string().describe("Unique identifier of the transaction."),
|
|
962
1005
|
createdByUserType: TokenUserType.describe(
|
|
963
1006
|
"Indicates whether the action was created by a human-user or by a system-user."
|
|
964
1007
|
),
|
|
965
|
-
createdAt:
|
|
966
|
-
createdBy:
|
|
967
|
-
createdByRole:
|
|
968
|
-
createdBySignature:
|
|
1008
|
+
createdAt: z12.string().datetime().describe("Timestamp indicating when the action was created."),
|
|
1009
|
+
createdBy: z12.string().describe("Identifier of the user who created the action."),
|
|
1010
|
+
createdByRole: z12.string().describe("Role of the user who created the action."),
|
|
1011
|
+
createdBySignature: z12.string().nullish().describe("Reference to the signature of the user who created the action."),
|
|
969
1012
|
createdAtLocation: CreatedAtLocation.describe(
|
|
970
1013
|
"Reference to the location of the user who created the action."
|
|
971
1014
|
),
|
|
@@ -973,7 +1016,7 @@ var ActionBase = import_zod12.z.object({
|
|
|
973
1016
|
"Declaration data defined by the ActionConfig. Supports partial updates."
|
|
974
1017
|
),
|
|
975
1018
|
annotation: ActionUpdate.optional().nullable().describe("Action-specific metadata used to annotate the event."),
|
|
976
|
-
status:
|
|
1019
|
+
status: z12.enum([
|
|
977
1020
|
ActionStatus.Requested,
|
|
978
1021
|
ActionStatus.Accepted,
|
|
979
1022
|
ActionStatus.Rejected
|
|
@@ -984,172 +1027,181 @@ var ActionBase = import_zod12.z.object({
|
|
|
984
1027
|
"Reference to the original action asynchronously accepted or rejected by a third-party integration."
|
|
985
1028
|
)
|
|
986
1029
|
});
|
|
987
|
-
var AssignedAction = ActionBase.
|
|
988
|
-
|
|
989
|
-
type:
|
|
990
|
-
assignedTo:
|
|
1030
|
+
var AssignedAction = ActionBase.extend(
|
|
1031
|
+
z12.object({
|
|
1032
|
+
type: z12.literal(ActionType.ASSIGN),
|
|
1033
|
+
assignedTo: z12.string().describe("Identifier of the user to whom the action is assigned.")
|
|
991
1034
|
// TODO move into 'content' property
|
|
992
|
-
})
|
|
1035
|
+
}).shape
|
|
993
1036
|
);
|
|
994
|
-
var UnassignedAction = ActionBase.
|
|
995
|
-
|
|
996
|
-
type:
|
|
997
|
-
})
|
|
1037
|
+
var UnassignedAction = ActionBase.extend(
|
|
1038
|
+
z12.object({
|
|
1039
|
+
type: z12.literal(ActionType.UNASSIGN)
|
|
1040
|
+
}).shape
|
|
998
1041
|
);
|
|
999
|
-
var RegisterAction = ActionBase.
|
|
1000
|
-
|
|
1001
|
-
type:
|
|
1002
|
-
registrationNumber:
|
|
1042
|
+
var RegisterAction = ActionBase.extend(
|
|
1043
|
+
z12.object({
|
|
1044
|
+
type: z12.literal(ActionType.REGISTER),
|
|
1045
|
+
registrationNumber: z12.string().optional().describe(
|
|
1003
1046
|
"Registration number of the event. Always present for accepted registrations."
|
|
1004
1047
|
)
|
|
1005
1048
|
// TODO move into 'content' property
|
|
1006
|
-
})
|
|
1049
|
+
}).shape
|
|
1007
1050
|
);
|
|
1008
|
-
var DeclareAction = ActionBase.
|
|
1009
|
-
|
|
1010
|
-
type:
|
|
1011
|
-
})
|
|
1051
|
+
var DeclareAction = ActionBase.extend(
|
|
1052
|
+
z12.object({
|
|
1053
|
+
type: z12.literal(ActionType.DECLARE)
|
|
1054
|
+
}).shape
|
|
1012
1055
|
);
|
|
1013
|
-
var
|
|
1014
|
-
|
|
1015
|
-
type: import_zod12.z.literal(ActionType.VALIDATE)
|
|
1016
|
-
})
|
|
1017
|
-
);
|
|
1018
|
-
var ReasonContent = import_zod12.z.object({
|
|
1019
|
-
reason: import_zod12.z.string().min(1, { message: "Message cannot be empty" }).describe(
|
|
1056
|
+
var ReasonContent = z12.object({
|
|
1057
|
+
reason: z12.string().min(1, { error: "Message cannot be empty" }).describe(
|
|
1020
1058
|
"Message describing the reason for rejecting or archiving the event."
|
|
1021
1059
|
)
|
|
1022
1060
|
});
|
|
1023
|
-
var RejectAction = ActionBase.
|
|
1024
|
-
|
|
1025
|
-
type:
|
|
1061
|
+
var RejectAction = ActionBase.extend(
|
|
1062
|
+
z12.object({
|
|
1063
|
+
type: z12.literal(ActionType.REJECT),
|
|
1026
1064
|
content: ReasonContent
|
|
1027
|
-
})
|
|
1065
|
+
}).shape
|
|
1028
1066
|
);
|
|
1029
|
-
var PotentialDuplicate =
|
|
1067
|
+
var PotentialDuplicate = z12.object({
|
|
1030
1068
|
id: UUID,
|
|
1031
|
-
trackingId:
|
|
1069
|
+
trackingId: z12.string()
|
|
1032
1070
|
});
|
|
1033
|
-
var DuplicateDetectedAction = ActionBase.
|
|
1034
|
-
|
|
1035
|
-
type:
|
|
1036
|
-
content:
|
|
1037
|
-
duplicates:
|
|
1071
|
+
var DuplicateDetectedAction = ActionBase.extend(
|
|
1072
|
+
z12.object({
|
|
1073
|
+
type: z12.literal(ActionType.DUPLICATE_DETECTED),
|
|
1074
|
+
content: z12.object({
|
|
1075
|
+
duplicates: z12.array(PotentialDuplicate)
|
|
1038
1076
|
})
|
|
1039
|
-
})
|
|
1077
|
+
}).shape
|
|
1040
1078
|
);
|
|
1041
|
-
var MarkNotDuplicateAction = ActionBase.
|
|
1042
|
-
|
|
1043
|
-
type:
|
|
1044
|
-
})
|
|
1079
|
+
var MarkNotDuplicateAction = ActionBase.extend(
|
|
1080
|
+
z12.object({
|
|
1081
|
+
type: z12.literal(ActionType.MARK_AS_NOT_DUPLICATE)
|
|
1082
|
+
}).shape
|
|
1045
1083
|
);
|
|
1046
|
-
var MarkAsDuplicateAction = ActionBase.
|
|
1047
|
-
|
|
1048
|
-
type:
|
|
1049
|
-
content:
|
|
1084
|
+
var MarkAsDuplicateAction = ActionBase.extend(
|
|
1085
|
+
z12.object({
|
|
1086
|
+
type: z12.literal(ActionType.MARK_AS_DUPLICATE),
|
|
1087
|
+
content: z12.object({
|
|
1050
1088
|
duplicateOf: UUID
|
|
1051
1089
|
}).optional()
|
|
1052
|
-
})
|
|
1090
|
+
}).shape
|
|
1053
1091
|
);
|
|
1054
|
-
var ArchiveAction = ActionBase.
|
|
1055
|
-
|
|
1056
|
-
type:
|
|
1092
|
+
var ArchiveAction = ActionBase.extend(
|
|
1093
|
+
z12.object({
|
|
1094
|
+
type: z12.literal(ActionType.ARCHIVE),
|
|
1057
1095
|
content: ReasonContent
|
|
1058
|
-
})
|
|
1096
|
+
}).shape
|
|
1059
1097
|
);
|
|
1060
|
-
var CreatedAction = ActionBase.
|
|
1061
|
-
|
|
1062
|
-
type:
|
|
1063
|
-
})
|
|
1098
|
+
var CreatedAction = ActionBase.extend(
|
|
1099
|
+
z12.object({
|
|
1100
|
+
type: z12.literal(ActionType.CREATE)
|
|
1101
|
+
}).shape
|
|
1064
1102
|
);
|
|
1065
|
-
var NotifiedAction = ActionBase.
|
|
1066
|
-
|
|
1067
|
-
type:
|
|
1068
|
-
})
|
|
1103
|
+
var NotifiedAction = ActionBase.extend(
|
|
1104
|
+
z12.object({
|
|
1105
|
+
type: z12.literal(ActionType.NOTIFY)
|
|
1106
|
+
}).shape
|
|
1107
|
+
);
|
|
1108
|
+
var EditAction = ActionBase.extend(
|
|
1109
|
+
z12.object({
|
|
1110
|
+
type: z12.literal(ActionType.EDIT),
|
|
1111
|
+
content: z12.object({
|
|
1112
|
+
comment: z12.string().describe("Comment for the edit action.").optional()
|
|
1113
|
+
})
|
|
1114
|
+
}).shape
|
|
1069
1115
|
);
|
|
1070
|
-
var PrintContent =
|
|
1071
|
-
templateId:
|
|
1116
|
+
var PrintContent = z12.object({
|
|
1117
|
+
templateId: z12.string().optional()
|
|
1072
1118
|
});
|
|
1073
|
-
var PrintCertificateAction = ActionBase.
|
|
1074
|
-
|
|
1075
|
-
type:
|
|
1119
|
+
var PrintCertificateAction = ActionBase.extend(
|
|
1120
|
+
z12.object({
|
|
1121
|
+
type: z12.literal(ActionType.PRINT_CERTIFICATE),
|
|
1076
1122
|
content: PrintContent.optional().nullable()
|
|
1077
|
-
})
|
|
1123
|
+
}).shape
|
|
1078
1124
|
);
|
|
1079
|
-
var RequestedCorrectionAction = ActionBase.
|
|
1080
|
-
|
|
1081
|
-
type:
|
|
1082
|
-
})
|
|
1125
|
+
var RequestedCorrectionAction = ActionBase.extend(
|
|
1126
|
+
z12.object({
|
|
1127
|
+
type: z12.literal(ActionType.REQUEST_CORRECTION)
|
|
1128
|
+
}).shape
|
|
1083
1129
|
);
|
|
1084
|
-
var ApprovedCorrectionAction = ActionBase.
|
|
1085
|
-
|
|
1086
|
-
type:
|
|
1087
|
-
requestId:
|
|
1130
|
+
var ApprovedCorrectionAction = ActionBase.extend(
|
|
1131
|
+
z12.object({
|
|
1132
|
+
type: z12.literal(ActionType.APPROVE_CORRECTION),
|
|
1133
|
+
requestId: z12.string()
|
|
1088
1134
|
// TODO move into 'content' property
|
|
1089
|
-
})
|
|
1135
|
+
}).shape
|
|
1090
1136
|
);
|
|
1091
|
-
var RejectedCorrectionAction = ActionBase.
|
|
1092
|
-
|
|
1093
|
-
type:
|
|
1094
|
-
requestId:
|
|
1137
|
+
var RejectedCorrectionAction = ActionBase.extend(
|
|
1138
|
+
z12.object({
|
|
1139
|
+
type: z12.literal(ActionType.REJECT_CORRECTION),
|
|
1140
|
+
requestId: z12.string(),
|
|
1095
1141
|
// TODO move into 'content' property
|
|
1096
1142
|
content: ReasonContent
|
|
1097
|
-
})
|
|
1143
|
+
}).shape
|
|
1144
|
+
);
|
|
1145
|
+
var ReadAction = ActionBase.extend(
|
|
1146
|
+
z12.object({
|
|
1147
|
+
type: z12.literal(ActionType.READ)
|
|
1148
|
+
}).shape
|
|
1098
1149
|
);
|
|
1099
|
-
var
|
|
1100
|
-
|
|
1101
|
-
type:
|
|
1150
|
+
var CustomAction = ActionBase.merge(
|
|
1151
|
+
z12.object({
|
|
1152
|
+
type: z12.literal(ActionType.CUSTOM),
|
|
1153
|
+
customActionType: z12.string()
|
|
1102
1154
|
})
|
|
1103
1155
|
);
|
|
1104
|
-
var ActionDocument =
|
|
1105
|
-
CreatedAction.
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1156
|
+
var ActionDocument = z12.discriminatedUnion("type", [
|
|
1157
|
+
CreatedAction.meta({ id: "CreatedAction" }),
|
|
1158
|
+
RejectAction.meta({ id: "RejectAction" }),
|
|
1159
|
+
DuplicateDetectedAction.meta({ id: "DuplicateDetectedAction" }),
|
|
1160
|
+
MarkNotDuplicateAction.meta({ id: "MarkNotDuplicateAction" }),
|
|
1161
|
+
MarkAsDuplicateAction.meta({ id: "MarkAsDuplicateAction" }),
|
|
1162
|
+
ArchiveAction.meta({ id: "ArchiveAction" }),
|
|
1163
|
+
NotifiedAction.meta({ id: "NotifiedAction" }),
|
|
1164
|
+
RegisterAction.meta({ id: "RegisterAction" }),
|
|
1165
|
+
DeclareAction.meta({ id: "DeclareAction" }),
|
|
1166
|
+
AssignedAction.meta({ id: "AssignedAction" }),
|
|
1167
|
+
RequestedCorrectionAction.meta({ id: "RequestedCorrectionAction" }),
|
|
1168
|
+
ApprovedCorrectionAction.meta({ id: "ApprovedCorrectionAction" }),
|
|
1169
|
+
RejectedCorrectionAction.meta({ id: "RejectedCorrectionAction" }),
|
|
1170
|
+
UnassignedAction.meta({ id: "UnassignedAction" }),
|
|
1171
|
+
PrintCertificateAction.meta({ id: "PrintCertificateAction" }),
|
|
1172
|
+
ReadAction.meta({ id: "ReadAction" }),
|
|
1173
|
+
EditAction.meta({ id: "EditAction" }),
|
|
1174
|
+
CustomAction.meta({ id: "CustomAction" })
|
|
1175
|
+
]).meta({
|
|
1176
|
+
id: "ActionDocument"
|
|
1124
1177
|
});
|
|
1125
1178
|
var AsyncRejectActionDocument = ActionBase.omit({
|
|
1126
1179
|
declaration: true,
|
|
1127
1180
|
annotation: true
|
|
1128
|
-
}).
|
|
1129
|
-
|
|
1130
|
-
type:
|
|
1131
|
-
status:
|
|
1132
|
-
})
|
|
1181
|
+
}).extend(
|
|
1182
|
+
z12.object({
|
|
1183
|
+
type: z12.enum(ConfirmableActions),
|
|
1184
|
+
status: z12.literal(ActionStatus.Rejected)
|
|
1185
|
+
}).shape
|
|
1133
1186
|
);
|
|
1134
|
-
var Action =
|
|
1187
|
+
var Action = z12.union([ActionDocument, AsyncRejectActionDocument]);
|
|
1135
1188
|
|
|
1136
|
-
// ../commons/src/events/
|
|
1137
|
-
var
|
|
1138
|
-
"CREATED",
|
|
1139
|
-
"NOTIFIED",
|
|
1140
|
-
"DECLARED",
|
|
1141
|
-
"VALIDATED",
|
|
1142
|
-
"REGISTERED",
|
|
1143
|
-
"ARCHIVED"
|
|
1144
|
-
]);
|
|
1189
|
+
// ../commons/src/events/Flag.ts
|
|
1190
|
+
var z13 = __toESM(require("zod/v4"));
|
|
1145
1191
|
var InherentFlags = {
|
|
1146
|
-
PENDING_CERTIFICATION: "pending-certification",
|
|
1147
1192
|
INCOMPLETE: "incomplete",
|
|
1148
1193
|
REJECTED: "rejected",
|
|
1149
1194
|
CORRECTION_REQUESTED: "correction-requested",
|
|
1150
|
-
POTENTIAL_DUPLICATE: "potential-duplicate"
|
|
1195
|
+
POTENTIAL_DUPLICATE: "potential-duplicate",
|
|
1196
|
+
/**
|
|
1197
|
+
* This flag is set by the Edit-action and removed after the declaration or registration.
|
|
1198
|
+
* A record should never stay with the EDIT_IN_PROGRESS flag, since it should always be declared or registered right after.
|
|
1199
|
+
*
|
|
1200
|
+
* We only use this flag to determine that a NOTIFY, DECLARE or REGISTER action is allowed next.
|
|
1201
|
+
*/
|
|
1202
|
+
EDIT_IN_PROGRESS: "edit-in-progress"
|
|
1151
1203
|
};
|
|
1152
|
-
var ActionFlag =
|
|
1204
|
+
var ActionFlag = z13.string().regex(
|
|
1153
1205
|
new RegExp(
|
|
1154
1206
|
`^(${Object.values(ActionType).join("|").toLowerCase()}):(${Object.values(
|
|
1155
1207
|
ActionStatus
|
|
@@ -1157,59 +1209,90 @@ var ActionFlag = import_zod13.z.string().regex(
|
|
|
1157
1209
|
),
|
|
1158
1210
|
"Flag must be in the format ActionType:ActionStatus (lowerCase)"
|
|
1159
1211
|
);
|
|
1160
|
-
var
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1212
|
+
var CustomFlag = z13.string().refine((val) => !Object.values(InherentFlags).includes(val), {
|
|
1213
|
+
message: `Custom flag cannot be one of the inherent flags: ${Object.values(
|
|
1214
|
+
InherentFlags
|
|
1215
|
+
).join(", ")}`
|
|
1216
|
+
}).refine((val) => !ActionFlag.safeParse(val).success, {
|
|
1217
|
+
message: "Custom flag cannot match the ActionFlag pattern (ActionType:ActionStatus)."
|
|
1218
|
+
}).describe("Custom flag identifier defined by the country config.");
|
|
1219
|
+
var Flag = ActionFlag.or(z13.enum(InherentFlags)).or(CustomFlag);
|
|
1220
|
+
var FlagConfig = z13.object({
|
|
1221
|
+
id: CustomFlag,
|
|
1222
|
+
requiresAction: z13.boolean().describe(
|
|
1223
|
+
"Indicates if this flag expects an action to be performed to be cleared."
|
|
1224
|
+
),
|
|
1225
|
+
label: TranslationConfig.describe("Human readable label of the flag.")
|
|
1226
|
+
});
|
|
1227
|
+
var ActionFlagConfig = z13.object({
|
|
1228
|
+
id: Flag,
|
|
1229
|
+
operation: z13.enum(["add", "remove"]).describe("Operation to perform on the flag."),
|
|
1230
|
+
conditional: Conditional.optional().describe(
|
|
1231
|
+
"When conditional is met, the operation is performed on the flag. If not provided, the operation is performed unconditionally."
|
|
1232
|
+
)
|
|
1233
|
+
});
|
|
1234
|
+
|
|
1235
|
+
// ../commons/src/events/EventMetadata.ts
|
|
1236
|
+
var EventStatus = z14.enum([
|
|
1237
|
+
"CREATED",
|
|
1238
|
+
"NOTIFIED",
|
|
1239
|
+
"DECLARED",
|
|
1240
|
+
"REGISTERED",
|
|
1241
|
+
"ARCHIVED"
|
|
1242
|
+
]);
|
|
1243
|
+
var ZodDate = z14.iso.date();
|
|
1244
|
+
var ActionCreationMetadata = z14.object({
|
|
1245
|
+
createdAt: z14.iso.datetime().describe("The timestamp when the action request was created."),
|
|
1246
|
+
createdBy: z14.string().describe("ID of the user who created the action request."),
|
|
1165
1247
|
createdAtLocation: CreatedAtLocation.describe(
|
|
1166
1248
|
"Location of the user who created the action request."
|
|
1167
1249
|
),
|
|
1168
|
-
createdByUserType:
|
|
1169
|
-
acceptedAt:
|
|
1170
|
-
createdByRole:
|
|
1171
|
-
createdBySignature:
|
|
1250
|
+
createdByUserType: z14.enum(["user", "system"]).nullish().describe("Whether the user is a normal user or a system."),
|
|
1251
|
+
acceptedAt: z14.iso.datetime().describe("Timestamp when the action request was accepted."),
|
|
1252
|
+
createdByRole: z14.string().describe("Role of the user at the time of action request creation."),
|
|
1253
|
+
createdBySignature: z14.string().nullish().describe("Signature of the user who created the action request.")
|
|
1172
1254
|
});
|
|
1173
1255
|
var RegistrationCreationMetadata = ActionCreationMetadata.extend({
|
|
1174
|
-
registrationNumber:
|
|
1256
|
+
registrationNumber: z14.string().describe(
|
|
1175
1257
|
"Registration number of the event. Always present for accepted registrations."
|
|
1176
1258
|
)
|
|
1177
1259
|
});
|
|
1178
|
-
var LegalStatuses =
|
|
1260
|
+
var LegalStatuses = z14.object({
|
|
1179
1261
|
[EventStatus.enum.DECLARED]: ActionCreationMetadata.nullish(),
|
|
1180
1262
|
[EventStatus.enum.REGISTERED]: RegistrationCreationMetadata.nullish()
|
|
1181
1263
|
});
|
|
1182
|
-
var EventMetadata =
|
|
1264
|
+
var EventMetadata = z14.object({
|
|
1183
1265
|
id: UUID,
|
|
1184
|
-
type:
|
|
1266
|
+
type: z14.string().describe("The type of event, such as birth, death, or marriage."),
|
|
1185
1267
|
status: EventStatus,
|
|
1186
1268
|
legalStatuses: LegalStatuses.describe(
|
|
1187
1269
|
"Metadata related to the legal registration of the event, such as who registered it and when."
|
|
1188
1270
|
),
|
|
1189
|
-
createdAt:
|
|
1271
|
+
createdAt: z14.iso.datetime().describe("The timestamp when the event was first created and saved."),
|
|
1190
1272
|
dateOfEvent: ZodDate.nullish(),
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1273
|
+
placeOfEvent: CreatedAtLocation,
|
|
1274
|
+
createdBy: z14.string().describe("ID of the user who created the event."),
|
|
1275
|
+
createdByUserType: z14.enum(["user", "system"]).nullish().describe("Whether the user is a normal user or a system."),
|
|
1276
|
+
updatedByUserRole: z14.string().describe("Role of the user who last changed the status."),
|
|
1194
1277
|
createdAtLocation: CreatedAtLocation.describe(
|
|
1195
1278
|
"Location of the user who created the event."
|
|
1196
1279
|
),
|
|
1197
|
-
createdBySignature:
|
|
1280
|
+
createdBySignature: z14.string().nullish().describe("Signature of the user who created the event."),
|
|
1198
1281
|
updatedAtLocation: UUID.nullish().describe(
|
|
1199
1282
|
"Location of the user who last changed the status."
|
|
1200
1283
|
),
|
|
1201
|
-
updatedAt:
|
|
1284
|
+
updatedAt: z14.iso.datetime().describe(
|
|
1202
1285
|
"Timestamp of the most recent *accepted* status change. Possibly 3rd party update, if action is validation asynchronously."
|
|
1203
1286
|
),
|
|
1204
|
-
assignedTo:
|
|
1205
|
-
updatedBy:
|
|
1206
|
-
trackingId:
|
|
1287
|
+
assignedTo: z14.string().nullish().describe("ID of the user currently assigned to the event."),
|
|
1288
|
+
updatedBy: z14.string().nullish().describe("ID of the user who last changed the status."),
|
|
1289
|
+
trackingId: z14.string().describe(
|
|
1207
1290
|
"System-generated tracking ID used by informants or registrars to look up the event."
|
|
1208
1291
|
),
|
|
1209
|
-
potentialDuplicates:
|
|
1292
|
+
potentialDuplicates: z14.array(PotentialDuplicate).describe(
|
|
1210
1293
|
"List of event IDs and their tracking IDs that this event could be a duplicate of."
|
|
1211
1294
|
),
|
|
1212
|
-
flags:
|
|
1295
|
+
flags: z14.array(Flag)
|
|
1213
1296
|
});
|
|
1214
1297
|
var EventMetadataKeysArray = [
|
|
1215
1298
|
"id",
|
|
@@ -1217,6 +1300,7 @@ var EventMetadataKeysArray = [
|
|
|
1217
1300
|
"status",
|
|
1218
1301
|
"createdAt",
|
|
1219
1302
|
"dateOfEvent",
|
|
1303
|
+
"placeOfEvent",
|
|
1220
1304
|
"createdBy",
|
|
1221
1305
|
"createdByUserType",
|
|
1222
1306
|
"updatedByUserRole",
|
|
@@ -1229,130 +1313,124 @@ var EventMetadataKeysArray = [
|
|
|
1229
1313
|
"legalStatuses",
|
|
1230
1314
|
"flags"
|
|
1231
1315
|
];
|
|
1232
|
-
var EventMetadataKeys =
|
|
1316
|
+
var EventMetadataKeys = z14.enum(EventMetadataKeysArray);
|
|
1233
1317
|
|
|
1234
1318
|
// ../commons/src/events/EventIndex.ts
|
|
1235
|
-
var import_zod_openapi5 = require("zod-openapi");
|
|
1236
|
-
(0, import_zod_openapi5.extendZodWithOpenApi)(import_zod14.z);
|
|
1237
1319
|
var EventIndex = EventMetadata.extend({
|
|
1238
1320
|
declaration: EventState
|
|
1239
|
-
}).
|
|
1240
|
-
|
|
1321
|
+
}).meta({
|
|
1322
|
+
id: "EventIndex"
|
|
1241
1323
|
});
|
|
1242
|
-
var EventSearchIndex =
|
|
1243
|
-
|
|
1244
|
-
type:
|
|
1324
|
+
var EventSearchIndex = import_v4.z.record(import_v4.z.string(), import_v4.z.any()).and(
|
|
1325
|
+
import_v4.z.object({
|
|
1326
|
+
type: import_v4.z.string()
|
|
1245
1327
|
// Ensures "type" (event-id) exists and is a string
|
|
1246
1328
|
})
|
|
1247
|
-
).
|
|
1248
|
-
|
|
1329
|
+
).meta({
|
|
1330
|
+
id: "EventSearchIndex"
|
|
1249
1331
|
});
|
|
1250
|
-
var Fuzzy =
|
|
1251
|
-
|
|
1332
|
+
var Fuzzy = import_v4.z.object({ type: import_v4.z.literal("fuzzy"), term: import_v4.z.string() }).meta({
|
|
1333
|
+
id: "Fuzzy"
|
|
1252
1334
|
});
|
|
1253
|
-
var Exact =
|
|
1254
|
-
|
|
1335
|
+
var Exact = import_v4.z.object({ type: import_v4.z.literal("exact"), term: import_v4.z.string() }).meta({
|
|
1336
|
+
id: "Exact"
|
|
1255
1337
|
});
|
|
1256
|
-
var ExactStatus =
|
|
1257
|
-
type:
|
|
1338
|
+
var ExactStatus = import_v4.z.object({
|
|
1339
|
+
type: import_v4.z.literal("exact"),
|
|
1258
1340
|
term: EventStatus
|
|
1259
|
-
}).
|
|
1260
|
-
|
|
1341
|
+
}).meta({
|
|
1342
|
+
id: "ExactStatus"
|
|
1261
1343
|
});
|
|
1262
|
-
var ExactUserType =
|
|
1263
|
-
type:
|
|
1344
|
+
var ExactUserType = import_v4.z.object({
|
|
1345
|
+
type: import_v4.z.literal("exact"),
|
|
1264
1346
|
term: TokenUserType
|
|
1265
|
-
}).
|
|
1266
|
-
|
|
1347
|
+
}).meta({
|
|
1348
|
+
id: "ExactUserType"
|
|
1267
1349
|
});
|
|
1268
|
-
var AnyOf =
|
|
1269
|
-
type:
|
|
1270
|
-
terms:
|
|
1271
|
-
}).
|
|
1272
|
-
|
|
1350
|
+
var AnyOf = import_v4.z.object({
|
|
1351
|
+
type: import_v4.z.literal("anyOf"),
|
|
1352
|
+
terms: import_v4.z.array(import_v4.z.string())
|
|
1353
|
+
}).meta({
|
|
1354
|
+
id: "AnyOf"
|
|
1273
1355
|
});
|
|
1274
|
-
var AnyOfStatus =
|
|
1275
|
-
type:
|
|
1276
|
-
terms:
|
|
1277
|
-
}).
|
|
1278
|
-
|
|
1356
|
+
var AnyOfStatus = import_v4.z.object({
|
|
1357
|
+
type: import_v4.z.literal("anyOf"),
|
|
1358
|
+
terms: import_v4.z.array(EventStatus)
|
|
1359
|
+
}).meta({
|
|
1360
|
+
id: "AnyOfStatus"
|
|
1279
1361
|
});
|
|
1280
|
-
var Range =
|
|
1281
|
-
type:
|
|
1282
|
-
gte:
|
|
1283
|
-
lte:
|
|
1284
|
-
}).
|
|
1285
|
-
|
|
1362
|
+
var Range = import_v4.z.object({
|
|
1363
|
+
type: import_v4.z.literal("range"),
|
|
1364
|
+
gte: import_v4.z.string(),
|
|
1365
|
+
lte: import_v4.z.string()
|
|
1366
|
+
}).meta({
|
|
1367
|
+
id: "Range"
|
|
1286
1368
|
});
|
|
1287
|
-
var ContainsFlags =
|
|
1288
|
-
anyOf:
|
|
1289
|
-
noneOf:
|
|
1290
|
-
}).
|
|
1291
|
-
|
|
1369
|
+
var ContainsFlags = import_v4.z.object({
|
|
1370
|
+
anyOf: import_v4.z.array(Flag).optional(),
|
|
1371
|
+
noneOf: import_v4.z.array(Flag).optional()
|
|
1372
|
+
}).meta({
|
|
1373
|
+
id: "ContainsFlags"
|
|
1292
1374
|
});
|
|
1293
|
-
var Within =
|
|
1294
|
-
|
|
1375
|
+
var Within = import_v4.z.object({ type: import_v4.z.literal("within"), location: import_v4.z.string() }).meta({
|
|
1376
|
+
id: "Within"
|
|
1295
1377
|
});
|
|
1296
|
-
var RangeDate =
|
|
1297
|
-
type:
|
|
1298
|
-
gte:
|
|
1299
|
-
lte:
|
|
1300
|
-
}).
|
|
1378
|
+
var RangeDate = import_v4.z.object({
|
|
1379
|
+
type: import_v4.z.literal("range"),
|
|
1380
|
+
gte: import_v4.z.iso.date().or(import_v4.z.iso.datetime()),
|
|
1381
|
+
lte: import_v4.z.iso.date().or(import_v4.z.iso.datetime())
|
|
1382
|
+
}).meta({ id: "RangeDate" });
|
|
1301
1383
|
var ExactDate = Exact.extend({
|
|
1302
|
-
term:
|
|
1303
|
-
}).
|
|
1304
|
-
|
|
1384
|
+
term: import_v4.z.iso.date().or(import_v4.z.iso.datetime())
|
|
1385
|
+
}).meta({
|
|
1386
|
+
id: "ExactDate"
|
|
1305
1387
|
});
|
|
1306
|
-
var TimePeriod =
|
|
1307
|
-
type:
|
|
1388
|
+
var TimePeriod = import_v4.z.object({
|
|
1389
|
+
type: import_v4.z.literal("timePeriod"),
|
|
1308
1390
|
term: SelectDateRangeValue
|
|
1309
|
-
}).
|
|
1310
|
-
|
|
1391
|
+
}).meta({
|
|
1392
|
+
id: "TimePeriod"
|
|
1311
1393
|
});
|
|
1312
|
-
var DateCondition =
|
|
1313
|
-
|
|
1394
|
+
var DateCondition = import_v4.z.union([ExactDate, RangeDate, TimePeriod]).meta({
|
|
1395
|
+
id: "DateCondition"
|
|
1314
1396
|
});
|
|
1315
|
-
var QueryInput =
|
|
1316
|
-
() =>
|
|
1317
|
-
|
|
1318
|
-
|
|
1397
|
+
var QueryInput = import_v4.z.lazy(
|
|
1398
|
+
() => import_v4.z.union([
|
|
1399
|
+
import_v4.z.discriminatedUnion("type", [Fuzzy, Exact, Range, Within, AnyOf]),
|
|
1400
|
+
import_v4.z.record(import_v4.z.string(), QueryInput)
|
|
1319
1401
|
])
|
|
1320
|
-
).
|
|
1321
|
-
|
|
1402
|
+
).meta({
|
|
1403
|
+
id: "QueryInput"
|
|
1322
1404
|
});
|
|
1323
|
-
var QueryExpression =
|
|
1324
|
-
id:
|
|
1325
|
-
eventType:
|
|
1326
|
-
status:
|
|
1327
|
-
createdAt:
|
|
1328
|
-
updatedAt:
|
|
1329
|
-
"legalStatuses.REGISTERED.acceptedAt":
|
|
1330
|
-
"legalStatuses.DECLARED.createdAtLocation":
|
|
1331
|
-
|
|
1332
|
-
),
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
),
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
createdBy: import_zod14.z.optional(Exact),
|
|
1342
|
-
updatedBy: import_zod14.z.optional(Exact),
|
|
1343
|
-
trackingId: import_zod14.z.optional(Exact),
|
|
1344
|
-
flags: import_zod14.z.optional(ContainsFlags),
|
|
1405
|
+
var QueryExpression = import_v4.z.object({
|
|
1406
|
+
id: import_v4.z.optional(import_v4.z.string()),
|
|
1407
|
+
eventType: import_v4.z.string(),
|
|
1408
|
+
status: import_v4.z.optional(import_v4.z.union([AnyOfStatus, ExactStatus])),
|
|
1409
|
+
createdAt: import_v4.z.optional(DateCondition),
|
|
1410
|
+
updatedAt: import_v4.z.optional(DateCondition),
|
|
1411
|
+
"legalStatuses.REGISTERED.acceptedAt": import_v4.z.optional(DateCondition),
|
|
1412
|
+
"legalStatuses.DECLARED.createdAtLocation": import_v4.z.optional(Within).nullable(),
|
|
1413
|
+
"legalStatuses.REGISTERED.createdAtLocation": import_v4.z.optional(Within).nullable(),
|
|
1414
|
+
"legalStatuses.REGISTERED.registrationNumber": import_v4.z.optional(Exact),
|
|
1415
|
+
createdAtLocation: import_v4.z.optional(Within),
|
|
1416
|
+
updatedAtLocation: import_v4.z.optional(Within),
|
|
1417
|
+
assignedTo: import_v4.z.optional(Exact),
|
|
1418
|
+
createdByUserType: import_v4.z.optional(ExactUserType),
|
|
1419
|
+
createdBy: import_v4.z.optional(Exact),
|
|
1420
|
+
updatedBy: import_v4.z.optional(Exact),
|
|
1421
|
+
trackingId: import_v4.z.optional(Exact),
|
|
1422
|
+
flags: import_v4.z.optional(ContainsFlags),
|
|
1345
1423
|
// @todo: The type for this comes out as "any"
|
|
1346
1424
|
data: QueryInput
|
|
1347
1425
|
}).partial().refine((obj) => Object.values(obj).some((val) => val !== void 0), {
|
|
1348
|
-
|
|
1349
|
-
}).
|
|
1350
|
-
|
|
1426
|
+
error: "At least one query field must be specified."
|
|
1427
|
+
}).meta({
|
|
1428
|
+
id: "QueryExpression"
|
|
1351
1429
|
});
|
|
1352
|
-
var QueryType =
|
|
1353
|
-
() =>
|
|
1354
|
-
type:
|
|
1355
|
-
clauses:
|
|
1430
|
+
var QueryType = import_v4.z.lazy(
|
|
1431
|
+
() => import_v4.z.object({
|
|
1432
|
+
type: import_v4.z.literal("and").or(import_v4.z.literal("or")).meta({ default: "and" }),
|
|
1433
|
+
clauses: import_v4.z.array(import_v4.z.union([QueryExpression, QueryType])).nonempty("At least one clause is required.").meta({
|
|
1356
1434
|
default: [
|
|
1357
1435
|
{
|
|
1358
1436
|
eventType: TENNIS_CLUB_MEMBERSHIP,
|
|
@@ -1370,8 +1448,8 @@ var QueryType = import_zod14.z.lazy(
|
|
|
1370
1448
|
]
|
|
1371
1449
|
})
|
|
1372
1450
|
})
|
|
1373
|
-
).
|
|
1374
|
-
|
|
1451
|
+
).meta({
|
|
1452
|
+
id: "QueryType"
|
|
1375
1453
|
});
|
|
1376
1454
|
function parseStringifiedQueryField(val) {
|
|
1377
1455
|
if (typeof val === "string") {
|
|
@@ -1379,8 +1457,8 @@ function parseStringifiedQueryField(val) {
|
|
|
1379
1457
|
}
|
|
1380
1458
|
return val;
|
|
1381
1459
|
}
|
|
1382
|
-
var SearchQuery =
|
|
1383
|
-
query:
|
|
1460
|
+
var SearchQuery = import_v4.z.object({
|
|
1461
|
+
query: import_v4.z.preprocess(parseStringifiedQueryField, QueryType).meta({
|
|
1384
1462
|
default: {
|
|
1385
1463
|
type: "and",
|
|
1386
1464
|
clauses: [
|
|
@@ -1400,190 +1478,184 @@ var SearchQuery = import_zod14.z.object({
|
|
|
1400
1478
|
]
|
|
1401
1479
|
}
|
|
1402
1480
|
}),
|
|
1403
|
-
limit:
|
|
1404
|
-
offset:
|
|
1405
|
-
sort:
|
|
1481
|
+
limit: import_v4.z.number().optional().default(100),
|
|
1482
|
+
offset: import_v4.z.number().optional().default(0),
|
|
1483
|
+
sort: import_v4.z.preprocess(
|
|
1406
1484
|
parseStringifiedQueryField,
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
field:
|
|
1410
|
-
direction:
|
|
1485
|
+
import_v4.z.array(
|
|
1486
|
+
import_v4.z.object({
|
|
1487
|
+
field: import_v4.z.string(),
|
|
1488
|
+
direction: import_v4.z.enum(["asc", "desc"]).default("asc")
|
|
1411
1489
|
})
|
|
1412
1490
|
)
|
|
1413
1491
|
).optional()
|
|
1414
|
-
}).
|
|
1415
|
-
|
|
1492
|
+
}).meta({
|
|
1493
|
+
id: "SearchQuery"
|
|
1416
1494
|
});
|
|
1417
1495
|
|
|
1418
1496
|
// ../commons/src/events/FieldConfig.ts
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
(val) => !val.includes("_"),
|
|
1429
|
-
(val) => ({
|
|
1430
|
-
message: `id: '${val}' must not contain underscores '_'`
|
|
1431
|
-
})
|
|
1432
|
-
).describe("Unique identifier for the field");
|
|
1433
|
-
var FieldReference = import_zod15.z.object({
|
|
1497
|
+
var FieldId = z16.string().superRefine((val, ctx) => {
|
|
1498
|
+
if (val.includes("_")) {
|
|
1499
|
+
ctx.addIssue({
|
|
1500
|
+
code: z16.ZodIssueCode.custom,
|
|
1501
|
+
message: `id: '${val}' must not contain underscores '_'`
|
|
1502
|
+
});
|
|
1503
|
+
}
|
|
1504
|
+
}).describe("Unique identifier for the field");
|
|
1505
|
+
var FieldReference = z16.object({
|
|
1434
1506
|
$$field: FieldId,
|
|
1435
|
-
$$subfield:
|
|
1507
|
+
$$subfield: z16.array(z16.string()).optional().describe(
|
|
1436
1508
|
'If the FieldValue is an object, subfield can be used to refer to e.g. `["foo", "bar"]` in `{ foo: { bar: 3 } }`'
|
|
1437
1509
|
)
|
|
1438
1510
|
}).describe("Reference to a field by its ID");
|
|
1439
|
-
var ValidationConfig =
|
|
1511
|
+
var ValidationConfig = z16.object({
|
|
1440
1512
|
validator: Conditional,
|
|
1441
1513
|
message: TranslationConfig
|
|
1442
1514
|
});
|
|
1443
|
-
var requiredSchema =
|
|
1444
|
-
|
|
1445
|
-
|
|
1515
|
+
var requiredSchema = z16.union([
|
|
1516
|
+
z16.boolean(),
|
|
1517
|
+
z16.object({
|
|
1446
1518
|
message: TranslationConfig.describe("Custom required validation message")
|
|
1447
1519
|
})
|
|
1448
1520
|
]).default(false).optional();
|
|
1449
|
-
var BaseField =
|
|
1521
|
+
var BaseField = z16.object({
|
|
1450
1522
|
id: FieldId.describe("Unique identifier of the field."),
|
|
1451
1523
|
label: TranslationConfig.describe("Human-readable label of the field."),
|
|
1452
|
-
parent: FieldReference.or(
|
|
1524
|
+
parent: FieldReference.or(z16.array(FieldReference)).optional().describe(
|
|
1453
1525
|
"Reference to the parent field or fields. When a parent field changes, this field is reset."
|
|
1454
1526
|
),
|
|
1455
1527
|
required: requiredSchema.describe(
|
|
1456
1528
|
"Indicates whether the field is mandatory."
|
|
1457
1529
|
),
|
|
1458
|
-
conditionals:
|
|
1530
|
+
conditionals: z16.array(FieldConditional).default([]).optional().describe(
|
|
1459
1531
|
"Conditions determining when the field is shown or enabled. By default, the field is always shown and enabled."
|
|
1460
1532
|
),
|
|
1461
|
-
secured:
|
|
1533
|
+
secured: z16.boolean().default(false).optional().describe(
|
|
1462
1534
|
"Indicates whether the field is secured. Secured fields are not indexed for search and are only visible when explicitly assigned."
|
|
1463
1535
|
),
|
|
1464
1536
|
placeholder: TranslationConfig.optional(),
|
|
1465
|
-
validation:
|
|
1537
|
+
validation: z16.array(ValidationConfig).default([]).optional().describe("Additional validation rules applied to the field."),
|
|
1466
1538
|
helperText: TranslationConfig.optional(),
|
|
1467
|
-
hideLabel:
|
|
1468
|
-
uncorrectable:
|
|
1539
|
+
hideLabel: z16.boolean().default(false).optional(),
|
|
1540
|
+
uncorrectable: z16.boolean().default(false).optional().describe(
|
|
1469
1541
|
"Indicates whether the field can be modified during record correction."
|
|
1470
1542
|
),
|
|
1471
|
-
value: FieldReference.or(
|
|
1543
|
+
value: FieldReference.or(z16.array(FieldReference)).optional().describe(
|
|
1472
1544
|
"Reference to the source field or fields. When a value is defined, it is copied from the parent field when changed. If multiple references are provided, the first truthy value is used."
|
|
1473
1545
|
),
|
|
1474
|
-
analytics:
|
|
1546
|
+
analytics: z16.boolean().default(false).optional().describe(
|
|
1475
1547
|
"Indicates whether the field is included in analytics. When enabled, its value becomes available in the analytics dashboard."
|
|
1476
1548
|
)
|
|
1477
1549
|
}).describe("Common properties shared across all field types.");
|
|
1478
1550
|
var Divider = BaseField.extend({
|
|
1479
|
-
type:
|
|
1551
|
+
type: z16.literal(FieldType.DIVIDER)
|
|
1480
1552
|
});
|
|
1481
1553
|
var TextField = BaseField.extend({
|
|
1482
|
-
type:
|
|
1483
|
-
defaultValue:
|
|
1484
|
-
configuration:
|
|
1485
|
-
maxLength:
|
|
1486
|
-
type:
|
|
1554
|
+
type: z16.literal(FieldType.TEXT),
|
|
1555
|
+
defaultValue: z16.union([NonEmptyTextValue, SerializedUserField]).optional(),
|
|
1556
|
+
configuration: z16.object({
|
|
1557
|
+
maxLength: z16.number().optional().describe("Maximum length of the text"),
|
|
1558
|
+
type: z16.enum(["text", "password"]).optional(),
|
|
1487
1559
|
prefix: TranslationConfig.optional(),
|
|
1488
1560
|
postfix: TranslationConfig.optional()
|
|
1489
1561
|
}).default({ type: "text" }).optional()
|
|
1490
1562
|
}).describe("Text input");
|
|
1491
1563
|
var NumberField = BaseField.extend({
|
|
1492
|
-
type:
|
|
1564
|
+
type: z16.literal(FieldType.NUMBER),
|
|
1493
1565
|
defaultValue: NumberFieldValue.optional(),
|
|
1494
|
-
configuration:
|
|
1495
|
-
min:
|
|
1496
|
-
max:
|
|
1566
|
+
configuration: z16.object({
|
|
1567
|
+
min: z16.number().optional().describe("Minimum value"),
|
|
1568
|
+
max: z16.number().optional().describe("Maximum value"),
|
|
1497
1569
|
prefix: TranslationConfig.optional(),
|
|
1498
1570
|
postfix: TranslationConfig.optional()
|
|
1499
1571
|
}).optional()
|
|
1500
1572
|
}).describe("Number input");
|
|
1501
1573
|
var TextAreaField = BaseField.extend({
|
|
1502
|
-
type:
|
|
1574
|
+
type: z16.literal(FieldType.TEXTAREA),
|
|
1503
1575
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1504
|
-
configuration:
|
|
1505
|
-
maxLength:
|
|
1506
|
-
rows:
|
|
1507
|
-
cols:
|
|
1576
|
+
configuration: z16.object({
|
|
1577
|
+
maxLength: z16.number().optional().describe("Maximum length of the text"),
|
|
1578
|
+
rows: z16.number().optional().describe("Number of visible text lines"),
|
|
1579
|
+
cols: z16.number().optional().describe("Number of visible columns"),
|
|
1508
1580
|
prefix: TranslationConfig.optional(),
|
|
1509
1581
|
postfix: TranslationConfig.optional()
|
|
1510
1582
|
}).default({ rows: 4 }).optional()
|
|
1511
1583
|
}).describe("Multiline text input");
|
|
1512
|
-
var ImageMimeType =
|
|
1584
|
+
var ImageMimeType = z16.enum([
|
|
1513
1585
|
"image/png",
|
|
1514
1586
|
"image/jpg",
|
|
1515
1587
|
"image/jpeg",
|
|
1516
1588
|
"image/svg+xml"
|
|
1517
1589
|
]);
|
|
1518
|
-
var DocumentMimeType =
|
|
1590
|
+
var DocumentMimeType = z16.enum([
|
|
1519
1591
|
"application/pdf",
|
|
1520
1592
|
"application/msword",
|
|
1521
1593
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
1522
1594
|
"application/vnd.oasis.opendocument.text"
|
|
1523
1595
|
]);
|
|
1524
|
-
var MimeType =
|
|
1596
|
+
var MimeType = z16.enum([
|
|
1525
1597
|
...ImageMimeType.options,
|
|
1526
1598
|
...DocumentMimeType.options
|
|
1527
1599
|
]);
|
|
1528
1600
|
var DEFAULT_MAX_FILE_SIZE_BYTES = 5 * 1024 * 1024;
|
|
1529
1601
|
var SignatureField = BaseField.extend({
|
|
1530
|
-
type:
|
|
1602
|
+
type: z16.literal(FieldType.SIGNATURE),
|
|
1531
1603
|
signaturePromptLabel: TranslationConfig.describe(
|
|
1532
1604
|
"Title of the signature modal"
|
|
1533
1605
|
),
|
|
1534
1606
|
defaultValue: SignatureFieldValue.optional(),
|
|
1535
|
-
configuration:
|
|
1536
|
-
maxFileSize:
|
|
1607
|
+
configuration: z16.object({
|
|
1608
|
+
maxFileSize: z16.number().describe("Maximum file size in bytes").default(DEFAULT_MAX_FILE_SIZE_BYTES),
|
|
1537
1609
|
acceptedFileTypes: MimeType.array().optional().describe("List of allowed file formats for the signature")
|
|
1538
1610
|
}).default({
|
|
1539
1611
|
maxFileSize: DEFAULT_MAX_FILE_SIZE_BYTES
|
|
1540
1612
|
})
|
|
1541
1613
|
}).describe("Signature input field");
|
|
1542
1614
|
var EmailField = BaseField.extend({
|
|
1543
|
-
type:
|
|
1544
|
-
configuration:
|
|
1545
|
-
maxLength:
|
|
1546
|
-
}).default({ maxLength:
|
|
1615
|
+
type: z16.literal(FieldType.EMAIL),
|
|
1616
|
+
configuration: z16.object({
|
|
1617
|
+
maxLength: z16.number().optional().describe("Maximum length of the text")
|
|
1618
|
+
}).default({ maxLength: 255 }).optional(),
|
|
1547
1619
|
defaultValue: NonEmptyTextValue.optional()
|
|
1548
1620
|
});
|
|
1549
1621
|
var DateField = BaseField.extend({
|
|
1550
|
-
type:
|
|
1622
|
+
type: z16.literal(FieldType.DATE),
|
|
1551
1623
|
defaultValue: DateValue.optional(),
|
|
1552
|
-
configuration:
|
|
1624
|
+
configuration: z16.object({
|
|
1553
1625
|
notice: TranslationConfig.describe(
|
|
1554
1626
|
"Text to display above the date input"
|
|
1555
1627
|
).optional()
|
|
1556
1628
|
}).optional()
|
|
1557
1629
|
}).describe("A single date input (yyyy-MM-dd)");
|
|
1558
1630
|
var AgeField = BaseField.extend({
|
|
1559
|
-
type:
|
|
1631
|
+
type: z16.literal(FieldType.AGE),
|
|
1560
1632
|
defaultValue: NumberFieldValue.optional(),
|
|
1561
|
-
configuration:
|
|
1633
|
+
configuration: z16.object({
|
|
1562
1634
|
asOfDate: FieldReference,
|
|
1563
1635
|
prefix: TranslationConfig.optional(),
|
|
1564
1636
|
postfix: TranslationConfig.optional()
|
|
1565
1637
|
})
|
|
1566
1638
|
}).describe("An age input field which uses the current date as the asOfDate");
|
|
1567
1639
|
var TimeField = BaseField.extend({
|
|
1568
|
-
type:
|
|
1640
|
+
type: z16.literal(FieldType.TIME),
|
|
1569
1641
|
defaultValue: TimeValue.optional(),
|
|
1570
|
-
configuration:
|
|
1571
|
-
use12HourFormat:
|
|
1642
|
+
configuration: z16.object({
|
|
1643
|
+
use12HourFormat: z16.boolean().optional().describe("Whether to use 12-hour format"),
|
|
1572
1644
|
notice: TranslationConfig.describe(
|
|
1573
1645
|
"Text to display above the time input"
|
|
1574
1646
|
).optional()
|
|
1575
1647
|
}).optional()
|
|
1576
1648
|
}).describe("A single date input (HH-mm)");
|
|
1577
1649
|
var DateRangeField = BaseField.extend({
|
|
1578
|
-
type:
|
|
1650
|
+
type: z16.literal(FieldType.DATE_RANGE),
|
|
1579
1651
|
defaultValue: DateRangeFieldValue.optional(),
|
|
1580
|
-
configuration:
|
|
1652
|
+
configuration: z16.object({
|
|
1581
1653
|
notice: TranslationConfig.describe(
|
|
1582
1654
|
"Text to display above the date input"
|
|
1583
1655
|
).optional()
|
|
1584
1656
|
}).optional()
|
|
1585
1657
|
}).describe("A date range input ({ start: yyyy-MM-dd, end: yyyy-MM-dd })");
|
|
1586
|
-
var HtmlFontVariant =
|
|
1658
|
+
var HtmlFontVariant = z16.enum([
|
|
1587
1659
|
"reg12",
|
|
1588
1660
|
"reg14",
|
|
1589
1661
|
"reg16",
|
|
@@ -1593,31 +1665,34 @@ var HtmlFontVariant = import_zod15.z.enum([
|
|
|
1593
1665
|
"h2",
|
|
1594
1666
|
"h1"
|
|
1595
1667
|
]);
|
|
1596
|
-
var ParagraphConfiguration =
|
|
1597
|
-
styles:
|
|
1668
|
+
var ParagraphConfiguration = z16.object({
|
|
1669
|
+
styles: z16.object({
|
|
1598
1670
|
fontVariant: HtmlFontVariant.optional().describe(
|
|
1599
1671
|
"Font variant to use for the paragraph text"
|
|
1600
1672
|
),
|
|
1601
|
-
hint:
|
|
1673
|
+
hint: z16.boolean().optional().describe("When true, paragraph is styled as a hint with grey color")
|
|
1602
1674
|
}).optional()
|
|
1603
1675
|
}).default({});
|
|
1604
1676
|
var Paragraph = BaseField.extend({
|
|
1605
|
-
type:
|
|
1677
|
+
type: z16.literal(FieldType.PARAGRAPH),
|
|
1606
1678
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1607
1679
|
configuration: ParagraphConfiguration
|
|
1608
1680
|
}).describe("A read-only HTML <p> paragraph");
|
|
1609
1681
|
var PageHeader = BaseField.extend({
|
|
1610
|
-
type:
|
|
1682
|
+
type: z16.literal(FieldType.PAGE_HEADER),
|
|
1611
1683
|
defaultValue: NonEmptyTextValue.optional()
|
|
1612
1684
|
}).describe("A read-only header component for form pages");
|
|
1613
1685
|
var File = BaseField.extend({
|
|
1614
|
-
type:
|
|
1686
|
+
type: z16.literal(FieldType.FILE),
|
|
1615
1687
|
defaultValue: FileFieldValue.optional(),
|
|
1616
|
-
configuration:
|
|
1617
|
-
maxFileSize:
|
|
1688
|
+
configuration: z16.object({
|
|
1689
|
+
maxFileSize: z16.number().describe("Maximum file size in bytes").default(DEFAULT_MAX_FILE_SIZE_BYTES),
|
|
1618
1690
|
acceptedFileTypes: MimeType.array().optional().describe("List of allowed file formats for the signature"),
|
|
1619
|
-
|
|
1620
|
-
width:
|
|
1691
|
+
maxImageSize: z16.object({
|
|
1692
|
+
targetSize: z16.object({ width: z16.number(), height: z16.number() })
|
|
1693
|
+
}).optional(),
|
|
1694
|
+
style: z16.object({
|
|
1695
|
+
width: z16.enum(["full", "auto"]).optional().describe(
|
|
1621
1696
|
"Whether the file upload button should take the full width of the container or not"
|
|
1622
1697
|
)
|
|
1623
1698
|
}).optional(),
|
|
@@ -1626,34 +1701,34 @@ var File = BaseField.extend({
|
|
|
1626
1701
|
maxFileSize: DEFAULT_MAX_FILE_SIZE_BYTES
|
|
1627
1702
|
})
|
|
1628
1703
|
}).describe("File upload");
|
|
1629
|
-
var SelectOption =
|
|
1630
|
-
value:
|
|
1631
|
-
label:
|
|
1704
|
+
var SelectOption = z16.object({
|
|
1705
|
+
value: z16.string().describe("The value of the option"),
|
|
1706
|
+
label: z16.union([z16.string(), TranslationConfig]).describe("The label of the option")
|
|
1632
1707
|
});
|
|
1633
1708
|
var RadioGroup = BaseField.extend({
|
|
1634
|
-
type:
|
|
1709
|
+
type: z16.literal(FieldType.RADIO_GROUP),
|
|
1635
1710
|
defaultValue: TextValue.optional(),
|
|
1636
|
-
options:
|
|
1637
|
-
configuration:
|
|
1638
|
-
styles:
|
|
1639
|
-
size:
|
|
1711
|
+
options: z16.array(SelectOption).describe("A list of options"),
|
|
1712
|
+
configuration: z16.object({
|
|
1713
|
+
styles: z16.object({
|
|
1714
|
+
size: z16.enum(["NORMAL", "LARGE"]).optional()
|
|
1640
1715
|
}).optional()
|
|
1641
1716
|
}).optional()
|
|
1642
1717
|
}).describe("Grouped radio options");
|
|
1643
1718
|
var BulletList = BaseField.extend({
|
|
1644
|
-
type:
|
|
1719
|
+
type: z16.literal(FieldType.BULLET_LIST),
|
|
1645
1720
|
defaultValue: TextValue.optional(),
|
|
1646
|
-
items:
|
|
1647
|
-
configuration:
|
|
1648
|
-
styles:
|
|
1721
|
+
items: z16.array(TranslationConfig).describe("A list of items"),
|
|
1722
|
+
configuration: z16.object({
|
|
1723
|
+
styles: z16.object({
|
|
1649
1724
|
fontVariant: HtmlFontVariant.optional()
|
|
1650
1725
|
}).optional()
|
|
1651
1726
|
}).default({})
|
|
1652
1727
|
}).describe("A list of bullet points");
|
|
1653
1728
|
var Select = BaseField.extend({
|
|
1654
|
-
type:
|
|
1729
|
+
type: z16.literal(FieldType.SELECT),
|
|
1655
1730
|
defaultValue: TextValue.optional(),
|
|
1656
|
-
options:
|
|
1731
|
+
options: z16.array(SelectOption).describe("A list of options"),
|
|
1657
1732
|
noOptionsMessage: TranslationConfig.optional().describe(
|
|
1658
1733
|
`
|
|
1659
1734
|
A translation configuration object used to display a message when no options are available.
|
|
@@ -1665,34 +1740,34 @@ var Select = BaseField.extend({
|
|
|
1665
1740
|
`
|
|
1666
1741
|
)
|
|
1667
1742
|
}).describe("Select input");
|
|
1668
|
-
var SelectDateRangeOption =
|
|
1743
|
+
var SelectDateRangeOption = z16.object({
|
|
1669
1744
|
value: SelectDateRangeValue.describe("The value of the option"),
|
|
1670
1745
|
label: TranslationConfig.describe("The label of the option")
|
|
1671
1746
|
});
|
|
1672
1747
|
var SelectDateRangeField = BaseField.extend({
|
|
1673
|
-
type:
|
|
1748
|
+
type: z16.literal(FieldType.SELECT_DATE_RANGE),
|
|
1674
1749
|
defaultValue: SelectDateRangeValue.optional(),
|
|
1675
|
-
options:
|
|
1750
|
+
options: z16.array(SelectDateRangeOption).describe("A list of options")
|
|
1676
1751
|
}).describe("Select input with date range options");
|
|
1677
|
-
var NameConfig =
|
|
1678
|
-
firstname:
|
|
1679
|
-
middlename:
|
|
1680
|
-
surname:
|
|
1752
|
+
var NameConfig = z16.object({
|
|
1753
|
+
firstname: z16.object({ required: requiredSchema, label: TranslationConfig.optional() }).optional(),
|
|
1754
|
+
middlename: z16.object({ required: requiredSchema, label: TranslationConfig.optional() }).optional(),
|
|
1755
|
+
surname: z16.object({ required: requiredSchema, label: TranslationConfig.optional() }).optional()
|
|
1681
1756
|
});
|
|
1682
1757
|
var NameField = BaseField.extend({
|
|
1683
|
-
type:
|
|
1684
|
-
defaultValue:
|
|
1758
|
+
type: z16.literal(FieldType.NAME),
|
|
1759
|
+
defaultValue: z16.object({
|
|
1685
1760
|
firstname: SerializedUserField.or(NonEmptyTextValue).optional(),
|
|
1686
1761
|
middlename: SerializedUserField.or(NonEmptyTextValue).optional(),
|
|
1687
1762
|
surname: SerializedUserField.or(NonEmptyTextValue).optional()
|
|
1688
1763
|
}).optional(),
|
|
1689
|
-
configuration:
|
|
1764
|
+
configuration: z16.object({
|
|
1690
1765
|
name: NameConfig.default({
|
|
1691
1766
|
firstname: { required: true },
|
|
1692
1767
|
surname: { required: true }
|
|
1693
1768
|
}).optional(),
|
|
1694
|
-
order:
|
|
1695
|
-
maxLength:
|
|
1769
|
+
order: z16.array(z16.enum(["firstname", "middlename", "surname"])).optional(),
|
|
1770
|
+
maxLength: z16.number().optional().describe("Maximum length of the text"),
|
|
1696
1771
|
prefix: TranslationConfig.optional(),
|
|
1697
1772
|
postfix: TranslationConfig.optional()
|
|
1698
1773
|
}).default({
|
|
@@ -1704,142 +1779,145 @@ var NameField = BaseField.extend({
|
|
|
1704
1779
|
}).describe("Name input field");
|
|
1705
1780
|
var PhoneField = BaseField.extend({
|
|
1706
1781
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1707
|
-
type:
|
|
1782
|
+
type: z16.literal(FieldType.PHONE)
|
|
1708
1783
|
}).describe("Phone input field");
|
|
1709
1784
|
var IdField = BaseField.extend({
|
|
1710
1785
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1711
|
-
type:
|
|
1786
|
+
type: z16.literal(FieldType.ID)
|
|
1712
1787
|
}).describe("ID input field");
|
|
1713
1788
|
var Checkbox = BaseField.extend({
|
|
1714
|
-
type:
|
|
1789
|
+
type: z16.literal(FieldType.CHECKBOX),
|
|
1715
1790
|
defaultValue: CheckboxFieldValue.default(false)
|
|
1716
1791
|
}).describe("Boolean checkbox field");
|
|
1717
1792
|
var Country = BaseField.extend({
|
|
1718
|
-
type:
|
|
1793
|
+
type: z16.literal(FieldType.COUNTRY),
|
|
1719
1794
|
defaultValue: NonEmptyTextValue.optional()
|
|
1720
1795
|
}).describe("Country select field");
|
|
1721
|
-
var AdministrativeAreas =
|
|
1796
|
+
var AdministrativeAreas = z16.enum([
|
|
1722
1797
|
"ADMIN_STRUCTURE",
|
|
1723
1798
|
"HEALTH_FACILITY",
|
|
1724
1799
|
"CRVS_OFFICE"
|
|
1725
1800
|
]);
|
|
1726
|
-
var AdministrativeAreaConfiguration =
|
|
1727
|
-
partOf:
|
|
1728
|
-
$declaration:
|
|
1801
|
+
var AdministrativeAreaConfiguration = z16.object({
|
|
1802
|
+
partOf: z16.object({
|
|
1803
|
+
$declaration: z16.string()
|
|
1729
1804
|
}).optional().describe("Parent location"),
|
|
1730
1805
|
type: AdministrativeAreas
|
|
1731
1806
|
}).describe("Administrative area options");
|
|
1732
|
-
var
|
|
1733
|
-
type:
|
|
1807
|
+
var AdministrativeAreaField = BaseField.extend({
|
|
1808
|
+
type: z16.literal(FieldType.ADMINISTRATIVE_AREA),
|
|
1734
1809
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1735
1810
|
configuration: AdministrativeAreaConfiguration
|
|
1736
1811
|
}).describe("Administrative area input field e.g. facility, office");
|
|
1737
1812
|
var LocationInput = BaseField.extend({
|
|
1738
|
-
type:
|
|
1813
|
+
type: z16.literal(FieldType.LOCATION),
|
|
1739
1814
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1740
|
-
configuration:
|
|
1741
|
-
searchableResource:
|
|
1815
|
+
configuration: z16.object({
|
|
1816
|
+
searchableResource: z16.array(z16.enum(["locations", "facilities", "offices"]))
|
|
1742
1817
|
})
|
|
1743
1818
|
}).describe("Input field for a location");
|
|
1744
1819
|
var FileUploadWithOptions = BaseField.extend({
|
|
1745
|
-
type:
|
|
1746
|
-
options:
|
|
1820
|
+
type: z16.literal(FieldType.FILE_WITH_OPTIONS),
|
|
1821
|
+
options: z16.array(SelectOption).describe("A list of options"),
|
|
1747
1822
|
defaultValue: FileFieldWithOptionValue.optional(),
|
|
1748
|
-
configuration:
|
|
1749
|
-
maxFileSize:
|
|
1823
|
+
configuration: z16.object({
|
|
1824
|
+
maxFileSize: z16.number().describe("Maximum file size in bytes").default(DEFAULT_MAX_FILE_SIZE_BYTES),
|
|
1825
|
+
maxImageSize: z16.object({
|
|
1826
|
+
targetSize: z16.object({ width: z16.number(), height: z16.number() })
|
|
1827
|
+
}).optional(),
|
|
1750
1828
|
acceptedFileTypes: MimeType.array().optional().describe("List of allowed file formats for the signature")
|
|
1751
1829
|
}).default({
|
|
1752
1830
|
maxFileSize: DEFAULT_MAX_FILE_SIZE_BYTES
|
|
1753
1831
|
})
|
|
1754
1832
|
});
|
|
1755
1833
|
var Facility = BaseField.extend({
|
|
1756
|
-
type:
|
|
1834
|
+
type: z16.literal(FieldType.FACILITY),
|
|
1757
1835
|
defaultValue: NonEmptyTextValue.optional()
|
|
1758
1836
|
}).describe("Input field for a facility");
|
|
1759
1837
|
var Office = BaseField.extend({
|
|
1760
|
-
type:
|
|
1838
|
+
type: z16.literal(FieldType.OFFICE),
|
|
1761
1839
|
defaultValue: NonEmptyTextValue.optional()
|
|
1762
1840
|
}).describe("Input field for an office");
|
|
1763
1841
|
var DefaultAddressFieldValue = DomesticAddressFieldValue.extend({
|
|
1764
|
-
administrativeArea:
|
|
1842
|
+
administrativeArea: z16.union([UUID, SerializedUserField]).optional()
|
|
1765
1843
|
});
|
|
1766
1844
|
var Address = BaseField.extend({
|
|
1767
|
-
type:
|
|
1768
|
-
configuration:
|
|
1769
|
-
lineSeparator:
|
|
1770
|
-
fields:
|
|
1771
|
-
administrativeLevels:
|
|
1772
|
-
streetAddressForm:
|
|
1773
|
-
|
|
1774
|
-
id:
|
|
1845
|
+
type: z16.literal(FieldType.ADDRESS),
|
|
1846
|
+
configuration: z16.object({
|
|
1847
|
+
lineSeparator: z16.string().optional(),
|
|
1848
|
+
fields: z16.array(z16.enum(["country", "administrativeArea"])).optional(),
|
|
1849
|
+
administrativeLevels: z16.array(z16.string()).optional(),
|
|
1850
|
+
streetAddressForm: z16.array(
|
|
1851
|
+
z16.object({
|
|
1852
|
+
id: z16.string(),
|
|
1775
1853
|
required: requiredSchema,
|
|
1776
1854
|
label: TranslationConfig,
|
|
1777
|
-
type:
|
|
1778
|
-
conditionals:
|
|
1855
|
+
type: z16.literal(FieldType.TEXT),
|
|
1856
|
+
conditionals: z16.array(FieldConditional).default([]).optional(),
|
|
1779
1857
|
parent: FieldReference.optional()
|
|
1780
1858
|
})
|
|
1781
1859
|
).optional()
|
|
1782
1860
|
}).optional(),
|
|
1783
1861
|
defaultValue: DefaultAddressFieldValue.optional()
|
|
1784
1862
|
}).describe("Address input field \u2013 a combination of location and text fields");
|
|
1785
|
-
var StaticDataEntry =
|
|
1786
|
-
id:
|
|
1863
|
+
var StaticDataEntry = z16.object({
|
|
1864
|
+
id: z16.string().describe("ID for the data entry."),
|
|
1787
1865
|
label: TranslationConfig,
|
|
1788
|
-
value: TranslationConfig.or(
|
|
1866
|
+
value: TranslationConfig.or(z16.string()).or(FieldReference)
|
|
1789
1867
|
}).describe("Static data entry");
|
|
1790
|
-
var DataEntry =
|
|
1868
|
+
var DataEntry = z16.union([StaticDataEntry, z16.object({ fieldId: z16.string() })]).describe(
|
|
1791
1869
|
"Data entry can be either a static data entry, or a reference to another field in the current form or the declaration."
|
|
1792
1870
|
);
|
|
1793
1871
|
var DataField = BaseField.extend({
|
|
1794
|
-
type:
|
|
1795
|
-
configuration:
|
|
1872
|
+
type: z16.literal(FieldType.DATA),
|
|
1873
|
+
configuration: z16.object({
|
|
1796
1874
|
subtitle: TranslationConfig.optional(),
|
|
1797
|
-
data:
|
|
1875
|
+
data: z16.array(DataEntry)
|
|
1798
1876
|
})
|
|
1799
1877
|
}).describe("Data field for displaying read-only data");
|
|
1800
1878
|
var ButtonField = BaseField.extend({
|
|
1801
|
-
type:
|
|
1879
|
+
type: z16.literal(FieldType.BUTTON),
|
|
1802
1880
|
defaultValue: ButtonFieldValue.optional(),
|
|
1803
|
-
configuration:
|
|
1804
|
-
icon:
|
|
1881
|
+
configuration: z16.object({
|
|
1882
|
+
icon: z16.string().optional().describe(
|
|
1805
1883
|
"Icon for the button. You can find icons from OpenCRVS UI-Kit."
|
|
1806
1884
|
),
|
|
1807
|
-
loading:
|
|
1885
|
+
loading: z16.boolean().optional().describe("Whether the button is in a loading state and shows a spinner"),
|
|
1808
1886
|
text: TranslationConfig.describe("Text to display on the button")
|
|
1809
1887
|
})
|
|
1810
1888
|
}).describe("Generic button without any built-in functionality");
|
|
1811
1889
|
var AlphaPrintButton = BaseField.extend({
|
|
1812
|
-
type:
|
|
1813
|
-
configuration:
|
|
1814
|
-
template:
|
|
1890
|
+
type: z16.literal(FieldType.ALPHA_PRINT_BUTTON),
|
|
1891
|
+
configuration: z16.object({
|
|
1892
|
+
template: z16.string().describe("Template ID from countryconfig templates to use for printing"),
|
|
1815
1893
|
buttonLabel: TranslationConfig.optional().describe(
|
|
1816
1894
|
"Label for the print button"
|
|
1817
1895
|
)
|
|
1818
1896
|
})
|
|
1819
1897
|
}).describe("Print button field for printing certificates");
|
|
1820
1898
|
var HttpField = BaseField.extend({
|
|
1821
|
-
type:
|
|
1899
|
+
type: z16.literal(FieldType.HTTP),
|
|
1822
1900
|
defaultValue: HttpFieldValue.optional(),
|
|
1823
|
-
configuration:
|
|
1901
|
+
configuration: z16.object({
|
|
1824
1902
|
trigger: FieldReference,
|
|
1825
|
-
url:
|
|
1826
|
-
method:
|
|
1827
|
-
headers:
|
|
1828
|
-
body:
|
|
1829
|
-
errorValue:
|
|
1830
|
-
params:
|
|
1831
|
-
timeout:
|
|
1903
|
+
url: z16.string().describe("URL to send the HTTP request to"),
|
|
1904
|
+
method: z16.enum(["GET", "POST", "PUT", "DELETE"]),
|
|
1905
|
+
headers: z16.record(z16.string(), z16.string()).optional(),
|
|
1906
|
+
body: z16.record(z16.string(), z16.any()).optional(),
|
|
1907
|
+
errorValue: z16.any().optional().describe("Value to set if the request fails"),
|
|
1908
|
+
params: z16.record(z16.string(), z16.union([z16.string(), FieldReference])).optional(),
|
|
1909
|
+
timeout: z16.number().default(15e3).describe("Request timeout in milliseconds")
|
|
1832
1910
|
})
|
|
1833
1911
|
}).describe("HTTP request function triggered by a button click or other event");
|
|
1834
1912
|
var SearchField = HttpField.extend({
|
|
1835
|
-
type:
|
|
1913
|
+
type: z16.literal(FieldType.SEARCH),
|
|
1836
1914
|
configuration: SearchQuery.pick({
|
|
1837
1915
|
query: true,
|
|
1838
1916
|
limit: true,
|
|
1839
1917
|
offset: true
|
|
1840
1918
|
}).extend({
|
|
1841
1919
|
validation: ValidationConfig,
|
|
1842
|
-
indicators:
|
|
1920
|
+
indicators: z16.object({
|
|
1843
1921
|
loading: TranslationConfig.optional().describe(
|
|
1844
1922
|
"Text to display while the search is in progress"
|
|
1845
1923
|
),
|
|
@@ -1854,7 +1932,7 @@ var SearchField = HttpField.extend({
|
|
|
1854
1932
|
),
|
|
1855
1933
|
confirmButton: TranslationConfig.optional(),
|
|
1856
1934
|
clearButton: TranslationConfig.optional(),
|
|
1857
|
-
clearModal:
|
|
1935
|
+
clearModal: z16.object({
|
|
1858
1936
|
title: TranslationConfig.optional(),
|
|
1859
1937
|
description: TranslationConfig.optional(),
|
|
1860
1938
|
cancel: TranslationConfig.optional(),
|
|
@@ -1865,17 +1943,17 @@ var SearchField = HttpField.extend({
|
|
|
1865
1943
|
})
|
|
1866
1944
|
});
|
|
1867
1945
|
var LinkButtonField = BaseField.extend({
|
|
1868
|
-
type:
|
|
1869
|
-
configuration:
|
|
1870
|
-
url:
|
|
1946
|
+
type: z16.literal(FieldType.LINK_BUTTON),
|
|
1947
|
+
configuration: z16.object({
|
|
1948
|
+
url: z16.string().describe("URL to open"),
|
|
1871
1949
|
text: TranslationConfig.describe("Text to display on the button"),
|
|
1872
|
-
icon:
|
|
1950
|
+
icon: z16.string().optional().describe("Icon for the button. You can find icons from OpenCRVS UI-Kit.")
|
|
1873
1951
|
})
|
|
1874
1952
|
}).describe("Button that opens a link");
|
|
1875
1953
|
var VerificationStatus = BaseField.extend({
|
|
1876
|
-
type:
|
|
1954
|
+
type: z16.literal(FieldType.VERIFICATION_STATUS),
|
|
1877
1955
|
defaultValue: VerificationStatusValue.optional(),
|
|
1878
|
-
configuration:
|
|
1956
|
+
configuration: z16.object({
|
|
1879
1957
|
status: TranslationConfig.describe("Text to display on the status pill."),
|
|
1880
1958
|
description: TranslationConfig.describe(
|
|
1881
1959
|
"Explaining text on the banner in form."
|
|
@@ -1883,38 +1961,55 @@ var VerificationStatus = BaseField.extend({
|
|
|
1883
1961
|
})
|
|
1884
1962
|
});
|
|
1885
1963
|
var QueryParamReaderField = BaseField.extend({
|
|
1886
|
-
type:
|
|
1887
|
-
configuration:
|
|
1888
|
-
pickParams:
|
|
1964
|
+
type: z16.literal(FieldType.QUERY_PARAM_READER),
|
|
1965
|
+
configuration: z16.object({
|
|
1966
|
+
pickParams: z16.array(z16.string()).describe("List of query parameters to read from the URL")
|
|
1889
1967
|
})
|
|
1890
1968
|
}).describe(
|
|
1891
1969
|
"A field that maps URL query params into form values and clears them afterward"
|
|
1892
1970
|
);
|
|
1893
1971
|
var QrReaderField = BaseField.extend({
|
|
1894
|
-
type:
|
|
1972
|
+
type: z16.literal(FieldType.QR_READER),
|
|
1895
1973
|
defaultValue: QrReaderFieldValue.optional(),
|
|
1896
|
-
configuration:
|
|
1897
|
-
validator:
|
|
1898
|
-
|
|
1899
|
-
|
|
1974
|
+
configuration: z16.object({
|
|
1975
|
+
validator: z16.any().meta({
|
|
1976
|
+
description: "JSON Schema to validate the scanned QR code data against before populating the form fields.",
|
|
1977
|
+
id: "QrReaderFieldValidator"
|
|
1978
|
+
})
|
|
1900
1979
|
}).optional()
|
|
1980
|
+
}).meta({
|
|
1981
|
+
description: "Configuration for QR code reader field, including optional JSON Schema validator.",
|
|
1982
|
+
id: "QrReaderField"
|
|
1901
1983
|
});
|
|
1902
1984
|
var IdReaderField = BaseField.extend({
|
|
1903
|
-
type:
|
|
1985
|
+
type: z16.literal(FieldType.ID_READER),
|
|
1904
1986
|
defaultValue: IdReaderFieldValue.optional(),
|
|
1905
|
-
methods:
|
|
1906
|
-
|
|
1987
|
+
methods: z16.array(
|
|
1988
|
+
z16.union([QrReaderField, LinkButtonField]).describe("Methods for reading an ID")
|
|
1907
1989
|
)
|
|
1908
1990
|
});
|
|
1991
|
+
var CustomField = BaseField.extend({
|
|
1992
|
+
type: z16.literal(FieldType._EXPERIMENTAL_CUSTOM),
|
|
1993
|
+
defaultValue: CustomFieldValue.optional(),
|
|
1994
|
+
src: z16.string().describe("Module source path for the custom field component"),
|
|
1995
|
+
configuration: z16.unknown().optional()
|
|
1996
|
+
});
|
|
1909
1997
|
var LoaderField = BaseField.extend({
|
|
1910
|
-
type:
|
|
1911
|
-
configuration:
|
|
1998
|
+
type: z16.literal(FieldType.LOADER),
|
|
1999
|
+
configuration: z16.object({
|
|
1912
2000
|
text: TranslationConfig.describe("Display text above the loading spinner")
|
|
1913
2001
|
})
|
|
1914
2002
|
}).describe(
|
|
1915
2003
|
"A non-interactive field that indicates an in progress operation in form"
|
|
1916
2004
|
);
|
|
1917
|
-
var
|
|
2005
|
+
var HiddenField = BaseField.extend({
|
|
2006
|
+
type: z16.literal(FieldType.ALPHA_HIDDEN),
|
|
2007
|
+
required: z16.boolean().default(false).optional(),
|
|
2008
|
+
defaultValue: TextValue.optional()
|
|
2009
|
+
}).describe(
|
|
2010
|
+
"A non-interactive, hidden field that only hold a value in the form"
|
|
2011
|
+
);
|
|
2012
|
+
var FieldConfig = z16.discriminatedUnion("type", [
|
|
1918
2013
|
Address,
|
|
1919
2014
|
TextField,
|
|
1920
2015
|
NumberField,
|
|
@@ -1935,7 +2030,7 @@ var FieldConfig = import_zod15.z.discriminatedUnion("type", [
|
|
|
1935
2030
|
Checkbox,
|
|
1936
2031
|
File,
|
|
1937
2032
|
Country,
|
|
1938
|
-
|
|
2033
|
+
AdministrativeAreaField,
|
|
1939
2034
|
Divider,
|
|
1940
2035
|
LocationInput,
|
|
1941
2036
|
Facility,
|
|
@@ -1953,83 +2048,81 @@ var FieldConfig = import_zod15.z.discriminatedUnion("type", [
|
|
|
1953
2048
|
IdReaderField,
|
|
1954
2049
|
QueryParamReaderField,
|
|
1955
2050
|
LoaderField,
|
|
1956
|
-
SearchField
|
|
1957
|
-
|
|
2051
|
+
SearchField,
|
|
2052
|
+
CustomField,
|
|
2053
|
+
HiddenField
|
|
2054
|
+
]).meta({
|
|
1958
2055
|
description: "Form field configuration",
|
|
1959
|
-
|
|
2056
|
+
id: "FieldConfig"
|
|
1960
2057
|
});
|
|
1961
|
-
var AnyFileField =
|
|
2058
|
+
var AnyFileField = z16.discriminatedUnion("type", [
|
|
1962
2059
|
SignatureField,
|
|
1963
2060
|
File,
|
|
1964
2061
|
FileUploadWithOptions
|
|
1965
2062
|
]);
|
|
1966
2063
|
|
|
1967
2064
|
// ../commons/src/events/FormConfig.ts
|
|
1968
|
-
var
|
|
2065
|
+
var z18 = __toESM(require("zod/v4"));
|
|
1969
2066
|
|
|
1970
2067
|
// ../commons/src/events/PageConfig.ts
|
|
1971
|
-
var
|
|
1972
|
-
var
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
var PageConfigBase = import_zod16.z.object({
|
|
1976
|
-
id: import_zod16.z.string().describe("Unique identifier for the page"),
|
|
2068
|
+
var z17 = __toESM(require("zod/v4"));
|
|
2069
|
+
var PageTypes = z17.enum(["FORM", "VERIFICATION"]);
|
|
2070
|
+
var PageConfigBase = z17.object({
|
|
2071
|
+
id: z17.string().describe("Unique identifier for the page"),
|
|
1977
2072
|
title: TranslationConfig.describe("Header title of the page"),
|
|
1978
|
-
requireCompletionToContinue:
|
|
2073
|
+
requireCompletionToContinue: z17.boolean().default(false).describe(
|
|
1979
2074
|
"If true, all required fields must be filled before continuing to the next page"
|
|
1980
2075
|
),
|
|
1981
|
-
fields:
|
|
2076
|
+
fields: z17.array(FieldConfig).describe("Fields to be rendered on the page"),
|
|
1982
2077
|
conditional: Conditional.optional().describe(
|
|
1983
2078
|
"Page will be shown if condition is met. If conditional is not defined, the page will be always shown."
|
|
1984
2079
|
)
|
|
1985
|
-
}).
|
|
2080
|
+
}).meta({
|
|
1986
2081
|
description: "Form page configuration",
|
|
1987
|
-
|
|
2082
|
+
id: "FormPageConfig"
|
|
1988
2083
|
});
|
|
1989
2084
|
var FormPageConfig = PageConfigBase.extend({
|
|
1990
|
-
type:
|
|
2085
|
+
type: z17.literal(PageTypes.enum.FORM).default(PageTypes.enum.FORM)
|
|
1991
2086
|
});
|
|
1992
|
-
var VerificationActionConfig =
|
|
1993
|
-
verify:
|
|
1994
|
-
cancel:
|
|
2087
|
+
var VerificationActionConfig = z17.object({
|
|
2088
|
+
verify: z17.object({ label: TranslationConfig }),
|
|
2089
|
+
cancel: z17.object({
|
|
1995
2090
|
label: TranslationConfig,
|
|
1996
|
-
confirmation:
|
|
2091
|
+
confirmation: z17.object({
|
|
1997
2092
|
title: TranslationConfig,
|
|
1998
2093
|
body: TranslationConfig
|
|
1999
2094
|
})
|
|
2000
2095
|
})
|
|
2001
|
-
}).describe("Actions available on the verification page").
|
|
2096
|
+
}).describe("Actions available on the verification page").meta({
|
|
2002
2097
|
description: "Verification action configuration",
|
|
2003
|
-
|
|
2098
|
+
id: "VerificationActionConfig"
|
|
2004
2099
|
});
|
|
2005
2100
|
var VerificationPageConfig = FormPageConfig.extend({
|
|
2006
|
-
type:
|
|
2101
|
+
type: z17.literal(PageTypes.enum.VERIFICATION),
|
|
2007
2102
|
actions: VerificationActionConfig
|
|
2008
2103
|
});
|
|
2009
|
-
var PageConfig =
|
|
2104
|
+
var PageConfig = z17.discriminatedUnion("type", [
|
|
2010
2105
|
FormPageConfig,
|
|
2011
2106
|
VerificationPageConfig
|
|
2012
2107
|
]);
|
|
2013
2108
|
|
|
2014
2109
|
// ../commons/src/events/FormConfig.ts
|
|
2015
|
-
var DeclarationFormConfig =
|
|
2110
|
+
var DeclarationFormConfig = z18.object({
|
|
2016
2111
|
label: TranslationConfig.describe("Human readable description of the form"),
|
|
2017
|
-
pages:
|
|
2112
|
+
pages: z18.array(FormPageConfig)
|
|
2018
2113
|
}).describe("Configuration of the declaration form.");
|
|
2019
|
-
var ActionFormConfig =
|
|
2114
|
+
var ActionFormConfig = z18.object({
|
|
2020
2115
|
label: TranslationConfig.describe("Human readable description of the form"),
|
|
2021
|
-
pages:
|
|
2116
|
+
pages: z18.array(PageConfig)
|
|
2022
2117
|
}).describe(
|
|
2023
2118
|
"Configuration of the form used for system actions beyond declaration, supporting a wider range of page types."
|
|
2024
2119
|
);
|
|
2025
|
-
var FormConfig =
|
|
2120
|
+
var FormConfig = z18.union([DeclarationFormConfig, ActionFormConfig]);
|
|
2026
2121
|
|
|
2027
2122
|
// ../commons/src/events/DeduplicationConfig.ts
|
|
2028
|
-
var
|
|
2029
|
-
var
|
|
2030
|
-
|
|
2031
|
-
var FieldReference2 = import_zod18.z.string();
|
|
2032
|
-
var Matcher = import_zod18.z.object({
|
|
2123
|
+
var z19 = __toESM(require("zod/v4"));
|
|
2124
|
+
var FieldReference2 = z19.string();
|
|
2125
|
+
var Matcher = z19.object({
|
|
2033
2126
|
/**
|
|
2034
2127
|
* Reference to the field used in matching.
|
|
2035
2128
|
*
|
|
@@ -2037,68 +2130,68 @@ var Matcher = import_zod18.z.object({
|
|
|
2037
2130
|
* be used as the origin date to calculate the distance from.
|
|
2038
2131
|
*/
|
|
2039
2132
|
fieldId: FieldReference2,
|
|
2040
|
-
options:
|
|
2041
|
-
boost:
|
|
2133
|
+
options: z19.object({
|
|
2134
|
+
boost: z19.number().optional()
|
|
2042
2135
|
}).optional().default({
|
|
2043
2136
|
boost: 1
|
|
2044
2137
|
})
|
|
2045
2138
|
});
|
|
2046
2139
|
var FuzzyMatcher = Matcher.extend({
|
|
2047
|
-
type:
|
|
2048
|
-
options:
|
|
2140
|
+
type: z19.literal("fuzzy"),
|
|
2141
|
+
options: z19.object({
|
|
2049
2142
|
/**
|
|
2050
2143
|
* Names of length 3 or less characters = 0 edits allowed
|
|
2051
2144
|
* Names of length 4 - 6 characters = 1 edit allowed
|
|
2052
2145
|
* Names of length >7 characters = 2 edits allowed
|
|
2053
2146
|
*/
|
|
2054
|
-
fuzziness:
|
|
2055
|
-
boost:
|
|
2147
|
+
fuzziness: z19.union([z19.string(), z19.number()]).optional().default("AUTO:4,7"),
|
|
2148
|
+
boost: z19.number().optional().default(1)
|
|
2056
2149
|
}).optional().default({
|
|
2057
2150
|
fuzziness: "AUTO:4,7",
|
|
2058
2151
|
boost: 1
|
|
2059
2152
|
})
|
|
2060
2153
|
});
|
|
2061
2154
|
var StrictMatcher = Matcher.extend({
|
|
2062
|
-
type:
|
|
2063
|
-
options:
|
|
2064
|
-
boost:
|
|
2155
|
+
type: z19.literal("strict"),
|
|
2156
|
+
options: z19.object({
|
|
2157
|
+
boost: z19.number().optional().default(1),
|
|
2065
2158
|
/**
|
|
2066
2159
|
* The constant value to be present in the field for both records
|
|
2067
2160
|
*/
|
|
2068
|
-
value:
|
|
2161
|
+
value: z19.string().optional()
|
|
2069
2162
|
}).optional().default({
|
|
2070
2163
|
boost: 1
|
|
2071
2164
|
})
|
|
2072
2165
|
});
|
|
2073
2166
|
var DateRangeMatcher = Matcher.extend({
|
|
2074
|
-
type:
|
|
2075
|
-
options:
|
|
2167
|
+
type: z19.literal("dateRange"),
|
|
2168
|
+
options: z19.object({
|
|
2076
2169
|
/**
|
|
2077
2170
|
* The distance pivot in days. Distance from the origin (the value of
|
|
2078
2171
|
* fieldId) at which relevance scores receive half of the boost value
|
|
2079
2172
|
*/
|
|
2080
|
-
pivot:
|
|
2081
|
-
days:
|
|
2082
|
-
boost:
|
|
2173
|
+
pivot: z19.number().optional(),
|
|
2174
|
+
days: z19.number(),
|
|
2175
|
+
boost: z19.number().optional().default(1)
|
|
2083
2176
|
})
|
|
2084
2177
|
});
|
|
2085
|
-
var Not =
|
|
2086
|
-
type:
|
|
2178
|
+
var Not = z19.object({
|
|
2179
|
+
type: z19.literal("not"),
|
|
2087
2180
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
2088
|
-
clause:
|
|
2181
|
+
clause: z19.lazy(() => Clause)
|
|
2089
2182
|
});
|
|
2090
|
-
var And =
|
|
2091
|
-
type:
|
|
2183
|
+
var And = z19.object({
|
|
2184
|
+
type: z19.literal("and"),
|
|
2092
2185
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
2093
|
-
clauses:
|
|
2186
|
+
clauses: z19.lazy(() => Clause.array())
|
|
2094
2187
|
});
|
|
2095
|
-
var Or =
|
|
2096
|
-
type:
|
|
2188
|
+
var Or = z19.object({
|
|
2189
|
+
type: z19.literal("or"),
|
|
2097
2190
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
2098
|
-
clauses:
|
|
2191
|
+
clauses: z19.lazy(() => Clause.array())
|
|
2099
2192
|
});
|
|
2100
|
-
var Clause =
|
|
2101
|
-
() =>
|
|
2193
|
+
var Clause = z19.lazy(
|
|
2194
|
+
() => z19.discriminatedUnion("type", [
|
|
2102
2195
|
Not,
|
|
2103
2196
|
And,
|
|
2104
2197
|
Or,
|
|
@@ -2106,193 +2199,328 @@ var Clause = import_zod18.z.lazy(
|
|
|
2106
2199
|
StrictMatcher,
|
|
2107
2200
|
DateRangeMatcher
|
|
2108
2201
|
])
|
|
2109
|
-
).
|
|
2110
|
-
|
|
2202
|
+
).meta({
|
|
2203
|
+
id: "Clause"
|
|
2111
2204
|
});
|
|
2112
|
-
var DeduplicationConfig =
|
|
2113
|
-
id:
|
|
2205
|
+
var DeduplicationConfig = z19.object({
|
|
2206
|
+
id: z19.string(),
|
|
2114
2207
|
label: TranslationConfig,
|
|
2115
2208
|
query: Clause
|
|
2116
2209
|
});
|
|
2117
2210
|
|
|
2211
|
+
// ../commons/src/icons.ts
|
|
2212
|
+
var z20 = __toESM(require("zod/v4"));
|
|
2213
|
+
var AvailableIcons = z20.enum([
|
|
2214
|
+
"Archived",
|
|
2215
|
+
"Assigned",
|
|
2216
|
+
"Briefcase",
|
|
2217
|
+
"Certified",
|
|
2218
|
+
"Close",
|
|
2219
|
+
"Collapse",
|
|
2220
|
+
"Draft",
|
|
2221
|
+
"DuplicateYellow",
|
|
2222
|
+
"Expand",
|
|
2223
|
+
"ExternalValidate",
|
|
2224
|
+
"FilledCheck",
|
|
2225
|
+
"InReview",
|
|
2226
|
+
"Offline",
|
|
2227
|
+
"Registered",
|
|
2228
|
+
"RequiresUpdates",
|
|
2229
|
+
"Sent",
|
|
2230
|
+
"Validated",
|
|
2231
|
+
"WaitingApproval",
|
|
2232
|
+
"ChartActivity",
|
|
2233
|
+
"Activity",
|
|
2234
|
+
"Archive",
|
|
2235
|
+
"ArchiveTray",
|
|
2236
|
+
"ArrowLeft",
|
|
2237
|
+
"ArrowRight",
|
|
2238
|
+
"Buildings",
|
|
2239
|
+
"Circle",
|
|
2240
|
+
"CaretDown",
|
|
2241
|
+
"CaretLeft",
|
|
2242
|
+
"CaretRight",
|
|
2243
|
+
"ChartBar",
|
|
2244
|
+
"ChartLine",
|
|
2245
|
+
"ChatCircle",
|
|
2246
|
+
"CheckSquare",
|
|
2247
|
+
"Compass",
|
|
2248
|
+
"Check",
|
|
2249
|
+
"Copy",
|
|
2250
|
+
"Database",
|
|
2251
|
+
"DotsThreeVertical",
|
|
2252
|
+
"ArrowCounterClockwise",
|
|
2253
|
+
"MagnifyingGlassMinus",
|
|
2254
|
+
"MagnifyingGlassPlus",
|
|
2255
|
+
"Export",
|
|
2256
|
+
"Eye",
|
|
2257
|
+
"EyeSlash",
|
|
2258
|
+
"Envelope",
|
|
2259
|
+
"File",
|
|
2260
|
+
"FileSearch",
|
|
2261
|
+
"FileMinus",
|
|
2262
|
+
"FilePlus",
|
|
2263
|
+
"FileText",
|
|
2264
|
+
"FileX",
|
|
2265
|
+
"Handshake",
|
|
2266
|
+
"Gear",
|
|
2267
|
+
"GitBranch",
|
|
2268
|
+
"IdentificationCard",
|
|
2269
|
+
"List",
|
|
2270
|
+
"ListBullets",
|
|
2271
|
+
"Lock",
|
|
2272
|
+
"MagnifyingGlass",
|
|
2273
|
+
"MapPin",
|
|
2274
|
+
"Medal",
|
|
2275
|
+
"NotePencil",
|
|
2276
|
+
"Paperclip",
|
|
2277
|
+
"PaperPlaneTilt",
|
|
2278
|
+
"Pen",
|
|
2279
|
+
"PenNib",
|
|
2280
|
+
"Pencil",
|
|
2281
|
+
"PencilSimpleLine",
|
|
2282
|
+
"Phone",
|
|
2283
|
+
"Plus",
|
|
2284
|
+
"Printer",
|
|
2285
|
+
"SignOut",
|
|
2286
|
+
"Stamp",
|
|
2287
|
+
"Star",
|
|
2288
|
+
"Target",
|
|
2289
|
+
"TextT",
|
|
2290
|
+
"Trash",
|
|
2291
|
+
"UploadSimple",
|
|
2292
|
+
"User",
|
|
2293
|
+
"UserPlus",
|
|
2294
|
+
"Users",
|
|
2295
|
+
"WarningCircle",
|
|
2296
|
+
"X",
|
|
2297
|
+
"ChatText",
|
|
2298
|
+
"CircleWavyCheck",
|
|
2299
|
+
"CircleWavyQuestion",
|
|
2300
|
+
"ArchiveBox",
|
|
2301
|
+
"ArrowCircleDown",
|
|
2302
|
+
"FileArrowUp",
|
|
2303
|
+
"FileDotted",
|
|
2304
|
+
"Files",
|
|
2305
|
+
"PencilLine",
|
|
2306
|
+
"PencilCircle",
|
|
2307
|
+
"UserCircle",
|
|
2308
|
+
"Clock",
|
|
2309
|
+
"QrCode",
|
|
2310
|
+
"Webcam",
|
|
2311
|
+
"Sun",
|
|
2312
|
+
"DeviceTabletCamera",
|
|
2313
|
+
"Globe",
|
|
2314
|
+
"Fingerprint",
|
|
2315
|
+
"PushPin",
|
|
2316
|
+
"Timer"
|
|
2317
|
+
]);
|
|
2318
|
+
|
|
2118
2319
|
// ../commons/src/events/ActionConfig.ts
|
|
2119
|
-
var
|
|
2120
|
-
(0, import_zod_openapi9.extendZodWithOpenApi)(import_zod19.z);
|
|
2121
|
-
var DeclarationReviewConfig = import_zod19.z.object({
|
|
2320
|
+
var DeclarationReviewConfig = z21.object({
|
|
2122
2321
|
title: TranslationConfig.describe("Title of the review page"),
|
|
2123
|
-
fields:
|
|
2322
|
+
fields: z21.array(FieldConfig).describe("Fields displayed on the review page for annotations.")
|
|
2124
2323
|
}).describe(
|
|
2125
2324
|
"Configuration of the declaration review page for collecting event-related metadata."
|
|
2126
2325
|
);
|
|
2127
|
-
var ActionConfigBase =
|
|
2128
|
-
label: TranslationConfig.describe("Human readable description of the action")
|
|
2326
|
+
var ActionConfigBase = z21.object({
|
|
2327
|
+
label: TranslationConfig.describe("Human readable description of the action"),
|
|
2328
|
+
flags: z21.array(ActionFlagConfig).optional().default([]).describe("Flag actions which are executed when the action is performed."),
|
|
2329
|
+
supportingCopy: TranslationConfig.optional().describe(
|
|
2330
|
+
"Text displayed on the confirmation dialog"
|
|
2331
|
+
),
|
|
2332
|
+
icon: AvailableIcons.describe("Icon representing the action").optional(),
|
|
2333
|
+
conditionals: z21.array(ActionConditional).optional().describe("Conditionals which can disable or hide actions.")
|
|
2129
2334
|
});
|
|
2130
2335
|
var DeclarationActionBase = ActionConfigBase.extend({
|
|
2131
|
-
review: DeclarationReviewConfig,
|
|
2132
2336
|
deduplication: DeduplicationConfig.optional()
|
|
2133
2337
|
});
|
|
2134
|
-
var ReadActionConfig = ActionConfigBase.
|
|
2135
|
-
|
|
2136
|
-
type:
|
|
2338
|
+
var ReadActionConfig = ActionConfigBase.extend(
|
|
2339
|
+
z21.object({
|
|
2340
|
+
type: z21.literal(ActionType.READ),
|
|
2137
2341
|
review: DeclarationReviewConfig.describe(
|
|
2138
2342
|
"Configuration of the review page for read-only view."
|
|
2139
|
-
)
|
|
2140
|
-
|
|
2141
|
-
)
|
|
2142
|
-
var DeclareConfig = DeclarationActionBase.merge(
|
|
2143
|
-
import_zod19.z.object({
|
|
2144
|
-
type: import_zod19.z.literal(ActionType.DECLARE)
|
|
2145
|
-
})
|
|
2343
|
+
),
|
|
2344
|
+
conditionals: z21.never().optional().describe("Read-action can not be disabled or hidden with conditionals.")
|
|
2345
|
+
}).shape
|
|
2146
2346
|
);
|
|
2147
|
-
var
|
|
2148
|
-
|
|
2149
|
-
type:
|
|
2150
|
-
|
|
2347
|
+
var DeclareConfig = DeclarationActionBase.extend(
|
|
2348
|
+
z21.object({
|
|
2349
|
+
type: z21.literal(ActionType.DECLARE),
|
|
2350
|
+
review: DeclarationReviewConfig.describe(
|
|
2351
|
+
"Configuration of the review page fields."
|
|
2352
|
+
),
|
|
2353
|
+
dialogCopy: z21.object({
|
|
2354
|
+
notify: TranslationConfig.describe(
|
|
2355
|
+
"Confirmation text for the notify action"
|
|
2356
|
+
),
|
|
2357
|
+
declare: TranslationConfig.describe(
|
|
2358
|
+
"Confirmation text for the declare action"
|
|
2359
|
+
),
|
|
2360
|
+
register: TranslationConfig.describe(
|
|
2361
|
+
"Confirmation text for the register action"
|
|
2362
|
+
)
|
|
2363
|
+
}).optional()
|
|
2364
|
+
}).shape
|
|
2151
2365
|
);
|
|
2152
|
-
var
|
|
2153
|
-
|
|
2154
|
-
type:
|
|
2155
|
-
})
|
|
2366
|
+
var ArchiveConfig = ActionConfigBase.extend(
|
|
2367
|
+
z21.object({
|
|
2368
|
+
type: z21.literal(ActionType.ARCHIVE)
|
|
2369
|
+
}).shape
|
|
2156
2370
|
);
|
|
2157
|
-
var
|
|
2158
|
-
|
|
2159
|
-
type:
|
|
2160
|
-
|
|
2371
|
+
var EditActionConfig = ActionConfigBase.extend(
|
|
2372
|
+
z21.object({
|
|
2373
|
+
type: z21.literal(ActionType.EDIT),
|
|
2374
|
+
dialogCopy: z21.object({
|
|
2375
|
+
notify: TranslationConfig.describe(
|
|
2376
|
+
"Confirmation text for the notify with edits action"
|
|
2377
|
+
),
|
|
2378
|
+
declare: TranslationConfig.describe(
|
|
2379
|
+
"Confirmation text for the declare with edits action"
|
|
2380
|
+
),
|
|
2381
|
+
register: TranslationConfig.describe(
|
|
2382
|
+
"Confirmation text for the register with edits action"
|
|
2383
|
+
)
|
|
2384
|
+
})
|
|
2385
|
+
}).shape
|
|
2161
2386
|
);
|
|
2162
|
-
var
|
|
2163
|
-
|
|
2164
|
-
type:
|
|
2165
|
-
})
|
|
2387
|
+
var RejectConfig = ActionConfigBase.extend(
|
|
2388
|
+
z21.object({
|
|
2389
|
+
type: z21.literal(ActionType.REJECT)
|
|
2390
|
+
}).shape
|
|
2166
2391
|
);
|
|
2167
|
-
var
|
|
2168
|
-
|
|
2169
|
-
type:
|
|
2170
|
-
})
|
|
2392
|
+
var RegisterConfig = DeclarationActionBase.extend(
|
|
2393
|
+
z21.object({
|
|
2394
|
+
type: z21.literal(ActionType.REGISTER)
|
|
2395
|
+
}).shape
|
|
2171
2396
|
);
|
|
2172
|
-
var PrintCertificateActionConfig = ActionConfigBase.
|
|
2173
|
-
|
|
2174
|
-
type:
|
|
2397
|
+
var PrintCertificateActionConfig = ActionConfigBase.extend(
|
|
2398
|
+
z21.object({
|
|
2399
|
+
type: z21.literal(ActionType.PRINT_CERTIFICATE),
|
|
2175
2400
|
printForm: ActionFormConfig
|
|
2176
|
-
})
|
|
2401
|
+
}).shape
|
|
2177
2402
|
);
|
|
2178
|
-
var RequestCorrectionConfig = ActionConfigBase.
|
|
2179
|
-
|
|
2180
|
-
type:
|
|
2403
|
+
var RequestCorrectionConfig = ActionConfigBase.extend(
|
|
2404
|
+
z21.object({
|
|
2405
|
+
type: z21.literal(ActionType.REQUEST_CORRECTION),
|
|
2181
2406
|
correctionForm: ActionFormConfig
|
|
2182
|
-
})
|
|
2183
|
-
);
|
|
2184
|
-
var RejectCorrectionConfig = ActionConfigBase.merge(
|
|
2185
|
-
import_zod19.z.object({
|
|
2186
|
-
type: import_zod19.z.literal(ActionType.REJECT_CORRECTION)
|
|
2187
|
-
})
|
|
2407
|
+
}).shape
|
|
2188
2408
|
);
|
|
2189
|
-
var
|
|
2190
|
-
|
|
2191
|
-
type:
|
|
2409
|
+
var CustomActionConfig = ActionConfigBase.merge(
|
|
2410
|
+
z21.object({
|
|
2411
|
+
type: z21.literal(ActionType.CUSTOM),
|
|
2412
|
+
customActionType: z21.string().describe("Type identifier of the custom action."),
|
|
2413
|
+
/** Custom action form configuration supports a simple array of field configs, which should be rendered on the action modal. In the future, we might add support for pages etc. */
|
|
2414
|
+
form: z21.array(FieldConfig).describe(
|
|
2415
|
+
"Form configuration for the custom action. The form configured here will be used on the custom action confirmation modal."
|
|
2416
|
+
),
|
|
2417
|
+
auditHistoryLabel: TranslationConfig.describe(
|
|
2418
|
+
'The label to show in audit history for this action. For example "Approved".'
|
|
2419
|
+
)
|
|
2192
2420
|
})
|
|
2193
2421
|
);
|
|
2194
|
-
var ActionConfig =
|
|
2422
|
+
var ActionConfig = z21.discriminatedUnion("type", [
|
|
2195
2423
|
/*
|
|
2196
2424
|
* OpenAPI references are defined here so our generated OpenAPI spec knows to reuse the models
|
|
2197
2425
|
* and treat them as "models" instead of duplicating the data structure in each endpoint.
|
|
2198
2426
|
*/
|
|
2199
|
-
ReadActionConfig.
|
|
2200
|
-
DeclareConfig.
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
DeleteConfig.openapi({ ref: "DeleteActionConfig" }),
|
|
2206
|
-
PrintCertificateActionConfig.openapi({
|
|
2207
|
-
ref: "PrintCertificateActionConfig"
|
|
2427
|
+
ReadActionConfig.meta({ id: "ReadActionConfig" }),
|
|
2428
|
+
DeclareConfig.meta({ id: "DeclareActionConfig" }),
|
|
2429
|
+
RejectConfig.meta({ id: "RejectActionConfig" }),
|
|
2430
|
+
RegisterConfig.meta({ id: "RegisterActionConfig" }),
|
|
2431
|
+
PrintCertificateActionConfig.meta({
|
|
2432
|
+
id: "PrintCertificateActionConfig"
|
|
2208
2433
|
}),
|
|
2209
|
-
RequestCorrectionConfig.
|
|
2210
|
-
|
|
2211
|
-
|
|
2434
|
+
RequestCorrectionConfig.meta({ id: "RequestCorrectionActionConfig" }),
|
|
2435
|
+
EditActionConfig.meta({ id: "EditActionConfig" }),
|
|
2436
|
+
ArchiveConfig.meta({ id: "ArchiveActionConfig" }),
|
|
2437
|
+
CustomActionConfig.meta({ id: "CustomActionConfig" })
|
|
2212
2438
|
]).describe(
|
|
2213
2439
|
"Configuration of an action available for an event. Data collected depends on the action type and is accessible through the annotation property in ActionDocument."
|
|
2214
|
-
).
|
|
2215
|
-
var
|
|
2440
|
+
).meta({ id: "ActionConfig" });
|
|
2441
|
+
var actionConfigTypes = new Set(
|
|
2442
|
+
ActionConfig.options.map((opt) => opt.shape.type.value)
|
|
2443
|
+
);
|
|
2444
|
+
var DeclarationActionConfig = z21.discriminatedUnion("type", [
|
|
2216
2445
|
DeclareConfig,
|
|
2217
|
-
ValidateConfig,
|
|
2218
2446
|
RegisterConfig
|
|
2219
2447
|
]);
|
|
2220
2448
|
|
|
2221
2449
|
// ../commons/src/events/offline/CertificateConfig.ts
|
|
2222
|
-
var
|
|
2223
|
-
var FontFamily =
|
|
2224
|
-
normal:
|
|
2225
|
-
bold:
|
|
2226
|
-
italics:
|
|
2227
|
-
bolditalics:
|
|
2450
|
+
var z22 = __toESM(require("zod/v4"));
|
|
2451
|
+
var FontFamily = z22.object({
|
|
2452
|
+
normal: z22.string(),
|
|
2453
|
+
bold: z22.string(),
|
|
2454
|
+
italics: z22.string(),
|
|
2455
|
+
bolditalics: z22.string()
|
|
2228
2456
|
});
|
|
2229
|
-
var CertificateConfig =
|
|
2230
|
-
id:
|
|
2231
|
-
event:
|
|
2232
|
-
isV2Template:
|
|
2457
|
+
var CertificateConfig = z22.object({
|
|
2458
|
+
id: z22.string(),
|
|
2459
|
+
event: z22.string(),
|
|
2460
|
+
isV2Template: z22.boolean().optional(),
|
|
2233
2461
|
label: TranslationConfig,
|
|
2234
|
-
isDefault:
|
|
2235
|
-
fee:
|
|
2236
|
-
onTime:
|
|
2237
|
-
late:
|
|
2238
|
-
delayed:
|
|
2462
|
+
isDefault: z22.boolean(),
|
|
2463
|
+
fee: z22.object({
|
|
2464
|
+
onTime: z22.number(),
|
|
2465
|
+
late: z22.number(),
|
|
2466
|
+
delayed: z22.number()
|
|
2239
2467
|
}),
|
|
2240
|
-
svgUrl:
|
|
2241
|
-
fonts:
|
|
2242
|
-
conditionals:
|
|
2468
|
+
svgUrl: z22.string(),
|
|
2469
|
+
fonts: z22.record(z22.string(), FontFamily).optional(),
|
|
2470
|
+
conditionals: z22.array(ShowConditional).optional()
|
|
2243
2471
|
});
|
|
2244
2472
|
var CertificateTemplateConfig = CertificateConfig.extend({
|
|
2245
|
-
hash:
|
|
2246
|
-
svg:
|
|
2473
|
+
hash: z22.string().optional(),
|
|
2474
|
+
svg: z22.string()
|
|
2247
2475
|
});
|
|
2248
2476
|
|
|
2249
2477
|
// ../commons/src/events/offline/LanguageConfig.ts
|
|
2250
|
-
var
|
|
2251
|
-
var LanguageConfig =
|
|
2252
|
-
lang:
|
|
2478
|
+
var z23 = __toESM(require("zod/v4"));
|
|
2479
|
+
var LanguageConfig = z23.object({
|
|
2480
|
+
lang: z23.string(),
|
|
2253
2481
|
/**
|
|
2254
2482
|
* client.csv contents
|
|
2255
2483
|
*/
|
|
2256
|
-
messages:
|
|
2484
|
+
messages: z23.record(z23.string(), z23.string())
|
|
2257
2485
|
});
|
|
2258
2486
|
|
|
2259
2487
|
// ../commons/src/events/EventConfig.ts
|
|
2260
|
-
var
|
|
2488
|
+
var z29 = __toESM(require("zod/v4"));
|
|
2261
2489
|
|
|
2262
2490
|
// ../commons/src/events/SummaryConfig.ts
|
|
2263
|
-
var
|
|
2264
|
-
var BaseField2 =
|
|
2491
|
+
var z24 = __toESM(require("zod/v4"));
|
|
2492
|
+
var BaseField2 = z24.object({
|
|
2265
2493
|
emptyValueMessage: TranslationConfig.optional().describe(
|
|
2266
2494
|
"Default message displayed when the field value is empty."
|
|
2267
2495
|
),
|
|
2268
|
-
conditionals:
|
|
2496
|
+
conditionals: z24.array(ShowConditional).default([]).optional()
|
|
2269
2497
|
});
|
|
2270
2498
|
var ReferenceField = BaseField2.extend({
|
|
2271
|
-
fieldId:
|
|
2499
|
+
fieldId: z24.string(),
|
|
2272
2500
|
label: TranslationConfig.optional().describe(
|
|
2273
2501
|
"Overrides the default label from the referenced field when provided."
|
|
2274
2502
|
)
|
|
2275
2503
|
}).describe("Field referencing existing event data by field ID.");
|
|
2276
2504
|
var Field = BaseField2.extend({
|
|
2277
|
-
id:
|
|
2505
|
+
id: z24.string().describe("Identifier of the summary field."),
|
|
2278
2506
|
value: TranslationConfig.describe(
|
|
2279
2507
|
'Field value template supporting variables from configuration and EventMetadata (e.g. "{informant.phoneNo} {informant.email}").'
|
|
2280
2508
|
),
|
|
2281
2509
|
label: TranslationConfig
|
|
2282
2510
|
}).describe("Custom field defined for the summary view.");
|
|
2283
|
-
var SummaryConfig =
|
|
2284
|
-
fields:
|
|
2511
|
+
var SummaryConfig = z24.object({
|
|
2512
|
+
fields: z24.array(z24.union([Field, ReferenceField])).describe("Fields displayed in the event summary view.")
|
|
2285
2513
|
}).describe("Configuration of the event summary section.");
|
|
2286
2514
|
|
|
2287
2515
|
// ../commons/src/events/AdvancedSearchConfig.ts
|
|
2288
|
-
var
|
|
2289
|
-
var MatchType =
|
|
2290
|
-
var BaseField3 =
|
|
2291
|
-
config:
|
|
2516
|
+
var z25 = __toESM(require("zod/v4"));
|
|
2517
|
+
var MatchType = z25.enum(["fuzzy", "exact", "range", "within"]);
|
|
2518
|
+
var BaseField3 = z25.object({
|
|
2519
|
+
config: z25.object({
|
|
2292
2520
|
type: MatchType.describe(
|
|
2293
2521
|
"Determines the search type of field. How to match value."
|
|
2294
2522
|
),
|
|
2295
|
-
searchFields:
|
|
2523
|
+
searchFields: z25.array(z25.string()).optional().describe(
|
|
2296
2524
|
`
|
|
2297
2525
|
Defines multiple form fields that should be searched when this field has a value.
|
|
2298
2526
|
All specified fields will be combined using OR logic.
|
|
@@ -2302,7 +2530,7 @@ var BaseField3 = import_zod23.z.object({
|
|
|
2302
2530
|
`
|
|
2303
2531
|
)
|
|
2304
2532
|
}),
|
|
2305
|
-
type:
|
|
2533
|
+
type: z25.nativeEnum(FieldType).optional().describe(
|
|
2306
2534
|
`
|
|
2307
2535
|
Explicitly specify the field type for searchFields.
|
|
2308
2536
|
This is required when searchFields is defined, to show the correct control in the UI.
|
|
@@ -2316,7 +2544,7 @@ var BaseField3 = import_zod23.z.object({
|
|
|
2316
2544
|
This is required when searchFields is defined.
|
|
2317
2545
|
`
|
|
2318
2546
|
),
|
|
2319
|
-
options:
|
|
2547
|
+
options: z25.array(SelectOption).optional(),
|
|
2320
2548
|
searchCriteriaLabelPrefix: TranslationConfig.optional().describe(
|
|
2321
2549
|
`
|
|
2322
2550
|
This property determines whether to add a prefix (such as "Child" or "Applicant") before the field label
|
|
@@ -2337,7 +2565,7 @@ var BaseField3 = import_zod23.z.object({
|
|
|
2337
2565
|
in the country-config > event.advancedSearch configuration. For example: field("child.dob", { searchCriteriaLabelPrefix: TranslationConfig }).
|
|
2338
2566
|
`
|
|
2339
2567
|
),
|
|
2340
|
-
conditionals:
|
|
2568
|
+
conditionals: z25.array(FieldConditional).optional().describe(
|
|
2341
2569
|
`
|
|
2342
2570
|
In advanced search, we sometimes need to override the default field visibility conditionals.
|
|
2343
2571
|
|
|
@@ -2351,59 +2579,61 @@ var BaseField3 = import_zod23.z.object({
|
|
|
2351
2579
|
are always rendered in the advanced search form.
|
|
2352
2580
|
`
|
|
2353
2581
|
),
|
|
2354
|
-
validations:
|
|
2582
|
+
validations: z25.array(ValidationConfig).optional().describe(
|
|
2355
2583
|
`Option for overriding the field validations specifically for advanced search form.`
|
|
2356
2584
|
)
|
|
2357
2585
|
});
|
|
2358
|
-
var SearchQueryParams =
|
|
2359
|
-
eventType:
|
|
2586
|
+
var SearchQueryParams = z25.object({
|
|
2587
|
+
eventType: z25.string().optional().describe(
|
|
2360
2588
|
"Defines type of event so that when redirecting to Advanced Search page, appropriate tab can be selected"
|
|
2361
2589
|
)
|
|
2362
2590
|
}).catchall(FieldValue);
|
|
2363
2591
|
var FieldConfigSchema = BaseField3.extend({
|
|
2364
|
-
fieldId:
|
|
2365
|
-
fieldType:
|
|
2592
|
+
fieldId: z25.string(),
|
|
2593
|
+
fieldType: z25.literal("field")
|
|
2366
2594
|
});
|
|
2367
|
-
var EventFieldIdInput =
|
|
2595
|
+
var EventFieldIdInput = z25.enum([
|
|
2368
2596
|
"trackingId",
|
|
2369
2597
|
"status",
|
|
2370
2598
|
"legalStatuses.REGISTERED.acceptedAt",
|
|
2371
2599
|
"legalStatuses.REGISTERED.createdAtLocation",
|
|
2600
|
+
"legalStatuses.REGISTERED.registrationNumber",
|
|
2372
2601
|
"updatedAt"
|
|
2373
2602
|
]);
|
|
2374
2603
|
var METADATA_FIELD_PREFIX = "event.";
|
|
2375
|
-
var EventFieldId =
|
|
2604
|
+
var EventFieldId = z25.enum([
|
|
2376
2605
|
`${METADATA_FIELD_PREFIX}trackingId`,
|
|
2377
2606
|
`${METADATA_FIELD_PREFIX}status`,
|
|
2378
2607
|
`${METADATA_FIELD_PREFIX}legalStatuses.REGISTERED.acceptedAt`,
|
|
2379
2608
|
`${METADATA_FIELD_PREFIX}legalStatuses.REGISTERED.createdAtLocation`,
|
|
2609
|
+
`${METADATA_FIELD_PREFIX}legalStatuses.REGISTERED.registrationNumber`,
|
|
2380
2610
|
`${METADATA_FIELD_PREFIX}updatedAt`
|
|
2381
2611
|
]);
|
|
2382
2612
|
var EventFieldConfigSchema = BaseField3.extend({
|
|
2383
2613
|
fieldId: EventFieldId,
|
|
2384
|
-
fieldType:
|
|
2614
|
+
fieldType: z25.literal("event")
|
|
2385
2615
|
});
|
|
2386
|
-
var AdvancedSearchField =
|
|
2616
|
+
var AdvancedSearchField = z25.discriminatedUnion("fieldType", [FieldConfigSchema, EventFieldConfigSchema]).superRefine((data, ctx) => {
|
|
2387
2617
|
if (data.config.searchFields && data.config.searchFields.length > 0) {
|
|
2388
2618
|
if (!data.label) {
|
|
2389
2619
|
ctx.addIssue({
|
|
2390
|
-
code:
|
|
2620
|
+
code: z25.ZodIssueCode.custom,
|
|
2391
2621
|
message: "label is required when config.searchFields is defined.",
|
|
2392
2622
|
path: ["label"]
|
|
2393
2623
|
});
|
|
2394
2624
|
}
|
|
2395
2625
|
if (!data.type) {
|
|
2396
2626
|
ctx.addIssue({
|
|
2397
|
-
code:
|
|
2627
|
+
code: z25.ZodIssueCode.custom,
|
|
2398
2628
|
message: "type is required when config.searchFields is defined.",
|
|
2399
2629
|
path: ["type"]
|
|
2400
2630
|
});
|
|
2401
2631
|
}
|
|
2402
2632
|
}
|
|
2403
2633
|
});
|
|
2404
|
-
var AdvancedSearchConfig =
|
|
2634
|
+
var AdvancedSearchConfig = z25.object({
|
|
2405
2635
|
title: TranslationConfig.describe("Advanced search tab title"),
|
|
2406
|
-
fields:
|
|
2636
|
+
fields: z25.array(AdvancedSearchField).describe("Advanced search fields within the tab.")
|
|
2407
2637
|
});
|
|
2408
2638
|
|
|
2409
2639
|
// ../commons/src/events/utils.ts
|
|
@@ -2412,11 +2642,11 @@ var import_lodash = require("lodash");
|
|
|
2412
2642
|
// ../commons/src/conditionals/validate.ts
|
|
2413
2643
|
var import__ = __toESM(require("ajv/dist/2019"));
|
|
2414
2644
|
var import_ajv_formats = __toESM(require("ajv-formats"));
|
|
2415
|
-
var
|
|
2645
|
+
var z27 = __toESM(require("zod/v4"));
|
|
2416
2646
|
var import_date_fns = require("date-fns");
|
|
2417
2647
|
|
|
2418
2648
|
// ../commons/src/events/DynamicFieldValue.ts
|
|
2419
|
-
var
|
|
2649
|
+
var z26 = __toESM(require("zod/v4"));
|
|
2420
2650
|
|
|
2421
2651
|
// ../commons/src/conditionals/validate.ts
|
|
2422
2652
|
var ajv = new import__.default({
|
|
@@ -2425,9 +2655,9 @@ var ajv = new import__.default({
|
|
|
2425
2655
|
strict: false
|
|
2426
2656
|
// Allow minContains and other newer features
|
|
2427
2657
|
});
|
|
2428
|
-
var DataContext =
|
|
2429
|
-
rootData:
|
|
2430
|
-
$leafAdminStructureLocationIds:
|
|
2658
|
+
var DataContext = z27.object({
|
|
2659
|
+
rootData: z27.object({
|
|
2660
|
+
$leafAdminStructureLocationIds: z27.array(z27.object({ id: UUID }))
|
|
2431
2661
|
})
|
|
2432
2662
|
});
|
|
2433
2663
|
function resolveDataPath(rootData, dataPath, instancePath) {
|
|
@@ -2504,12 +2734,12 @@ ajv.addKeyword({
|
|
|
2504
2734
|
});
|
|
2505
2735
|
|
|
2506
2736
|
// ../commons/src/utils.ts
|
|
2507
|
-
var
|
|
2508
|
-
var FullNameV1 =
|
|
2509
|
-
|
|
2510
|
-
use:
|
|
2511
|
-
family:
|
|
2512
|
-
given:
|
|
2737
|
+
var z28 = __toESM(require("zod/v4"));
|
|
2738
|
+
var FullNameV1 = z28.array(
|
|
2739
|
+
z28.object({
|
|
2740
|
+
use: z28.string(),
|
|
2741
|
+
family: z28.string(),
|
|
2742
|
+
given: z28.array(z28.string())
|
|
2513
2743
|
})
|
|
2514
2744
|
);
|
|
2515
2745
|
function omitKeyDeep(obj, keyToRemove) {
|
|
@@ -2530,9 +2760,6 @@ function omitKeyDeep(obj, keyToRemove) {
|
|
|
2530
2760
|
|
|
2531
2761
|
// ../commons/src/events/utils.ts
|
|
2532
2762
|
var import_date_fns2 = require("date-fns");
|
|
2533
|
-
function isDeclarationActionConfig(action) {
|
|
2534
|
-
return DeclarationActions.safeParse(action.type).success;
|
|
2535
|
-
}
|
|
2536
2763
|
function getDeclarationFields(configuration) {
|
|
2537
2764
|
return configuration.declaration.pages.flatMap(({ fields }) => fields);
|
|
2538
2765
|
}
|
|
@@ -2543,7 +2770,7 @@ var getActionAnnotationFields = (actionConfig) => {
|
|
|
2543
2770
|
if (actionConfig.type === ActionType.PRINT_CERTIFICATE) {
|
|
2544
2771
|
return actionConfig.printForm.pages.flatMap(({ fields }) => fields);
|
|
2545
2772
|
}
|
|
2546
|
-
if (
|
|
2773
|
+
if ("review" in actionConfig) {
|
|
2547
2774
|
return actionConfig.review.fields;
|
|
2548
2775
|
}
|
|
2549
2776
|
return [];
|
|
@@ -2563,38 +2790,8 @@ var EXCLUDED_ACTIONS = [
|
|
|
2563
2790
|
ActionType.REJECT_CORRECTION
|
|
2564
2791
|
];
|
|
2565
2792
|
|
|
2566
|
-
// ../commons/src/events/
|
|
2567
|
-
|
|
2568
|
-
(0, import_zod_openapi10.extendZodWithOpenApi)(import_zod26.z);
|
|
2569
|
-
var EventConfig = import_zod26.z.object({
|
|
2570
|
-
id: import_zod26.z.string().describe(
|
|
2571
|
-
'Machine-readable identifier of the event (e.g. "birth", "death").'
|
|
2572
|
-
),
|
|
2573
|
-
dateOfEvent: FieldReference.optional().describe(
|
|
2574
|
-
"Reference to the field capturing the date of the event (e.g. date of birth). Defaults to the event creation date if unspecified."
|
|
2575
|
-
),
|
|
2576
|
-
title: TranslationConfig.describe(
|
|
2577
|
-
'Title template for the singular event, supporting variables (e.g. "{applicant.name.firstname} {applicant.name.surname}").'
|
|
2578
|
-
),
|
|
2579
|
-
fallbackTitle: TranslationConfig.optional().describe(
|
|
2580
|
-
"Fallback title shown when the main title resolves to an empty value."
|
|
2581
|
-
),
|
|
2582
|
-
summary: SummaryConfig.describe(
|
|
2583
|
-
"Summary information displayed in the event overview."
|
|
2584
|
-
),
|
|
2585
|
-
label: TranslationConfig.describe(
|
|
2586
|
-
"Human-readable label for the event type."
|
|
2587
|
-
),
|
|
2588
|
-
actions: import_zod26.z.array(ActionConfig).describe(
|
|
2589
|
-
"Configuration of system-defined actions associated with the event."
|
|
2590
|
-
),
|
|
2591
|
-
declaration: DeclarationFormConfig.describe(
|
|
2592
|
-
"Configuration of the form used to gather event data."
|
|
2593
|
-
),
|
|
2594
|
-
advancedSearch: import_zod26.z.array(AdvancedSearchConfig).optional().default([]).describe(
|
|
2595
|
-
"Configuration of fields available in the advanced search feature."
|
|
2596
|
-
)
|
|
2597
|
-
}).superRefine((event2, ctx) => {
|
|
2793
|
+
// ../commons/src/events/eventConfigValidation.ts
|
|
2794
|
+
function validateAdvancedSearchConfig(event2, ctx) {
|
|
2598
2795
|
const allFields = findAllFields(event2);
|
|
2599
2796
|
const fieldIds = allFields.map((field3) => field3.id);
|
|
2600
2797
|
const advancedSearchFields = event2.advancedSearch.flatMap(
|
|
@@ -2621,10 +2818,12 @@ var EventConfig = import_zod26.z.object({
|
|
|
2621
2818
|
ctx.addIssue({
|
|
2622
2819
|
code: "custom",
|
|
2623
2820
|
message: `Advanced search id must match a field id of form fields or pre-defined metadata fields.
|
|
2624
|
-
|
|
2821
|
+
Invalid AdvancedSearch field IDs for event ${event2.id}: ${invalidFields.map((f) => f.fieldId).join(", ")}`,
|
|
2625
2822
|
path: ["advancedSearch"]
|
|
2626
2823
|
});
|
|
2627
2824
|
}
|
|
2825
|
+
}
|
|
2826
|
+
function validateDateOfEvent(event2, ctx) {
|
|
2628
2827
|
if (event2.dateOfEvent) {
|
|
2629
2828
|
const eventDateFieldId = getDeclarationFields(event2).find(
|
|
2630
2829
|
({ id }) => id === event2.dateOfEvent?.$$field
|
|
@@ -2633,7 +2832,7 @@ var EventConfig = import_zod26.z.object({
|
|
|
2633
2832
|
ctx.addIssue({
|
|
2634
2833
|
code: "custom",
|
|
2635
2834
|
message: `Date of event field id must match a field id in fields array.
|
|
2636
|
-
|
|
2835
|
+
Invalid date of event field ID for event ${event2.id}: ${event2.dateOfEvent.$$field}`,
|
|
2637
2836
|
path: ["dateOfEvent"]
|
|
2638
2837
|
});
|
|
2639
2838
|
} else if (eventDateFieldId.type !== FieldType.DATE) {
|
|
@@ -2644,8 +2843,105 @@ var EventConfig = import_zod26.z.object({
|
|
|
2644
2843
|
});
|
|
2645
2844
|
}
|
|
2646
2845
|
}
|
|
2647
|
-
}
|
|
2648
|
-
|
|
2846
|
+
}
|
|
2847
|
+
function validatePlaceOfEvent(event2, ctx) {
|
|
2848
|
+
if (event2.placeOfEvent) {
|
|
2849
|
+
const eventPlaceFieldId = getDeclarationFields(event2).find(
|
|
2850
|
+
({ id }) => id === event2.placeOfEvent?.$$field
|
|
2851
|
+
);
|
|
2852
|
+
if (!eventPlaceFieldId) {
|
|
2853
|
+
ctx.addIssue({
|
|
2854
|
+
code: "custom",
|
|
2855
|
+
message: `Place of event field id must match a field id in the event.declaration fields.
|
|
2856
|
+
Invalid place of event field ID for event ${event2.id}: ${event2.placeOfEvent.$$field}`,
|
|
2857
|
+
path: ["placeOfEvent"]
|
|
2858
|
+
});
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2861
|
+
}
|
|
2862
|
+
function validateActionFlags(event2, ctx) {
|
|
2863
|
+
const isInherentFlag = (value) => Object.values(InherentFlags).includes(value);
|
|
2864
|
+
const configuredFlagIds = event2.flags.map((flag) => flag.id);
|
|
2865
|
+
const actionFlagIds = event2.actions.flatMap(
|
|
2866
|
+
(action) => action.flags.map((flag) => flag.id)
|
|
2867
|
+
);
|
|
2868
|
+
for (const actionFlagId of actionFlagIds) {
|
|
2869
|
+
const isConfigured = configuredFlagIds.includes(actionFlagId);
|
|
2870
|
+
const isInherent = isInherentFlag(actionFlagId);
|
|
2871
|
+
if (!isConfigured && !isInherent) {
|
|
2872
|
+
ctx.addIssue({
|
|
2873
|
+
code: "custom",
|
|
2874
|
+
message: `Action flag id must match an inherent flag or a configured flag in the flags array. Invalid action flag ID for event '${event2.id}': '${actionFlagId}'`,
|
|
2875
|
+
path: ["actions"]
|
|
2876
|
+
});
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2879
|
+
}
|
|
2880
|
+
function validateActionOrder(event2, ctx) {
|
|
2881
|
+
if (event2.actionOrder) {
|
|
2882
|
+
const customActionTypes = event2.actions.filter((action) => action.type === ActionType.CUSTOM).map((action) => action.customActionType);
|
|
2883
|
+
const validActionTypes = [
|
|
2884
|
+
...workqueueActions.options,
|
|
2885
|
+
...customActionTypes
|
|
2886
|
+
];
|
|
2887
|
+
for (const actionType of event2.actionOrder) {
|
|
2888
|
+
if (!validActionTypes.includes(actionType)) {
|
|
2889
|
+
ctx.addIssue({
|
|
2890
|
+
code: "custom",
|
|
2891
|
+
message: `Invalid action type in action order: ${actionType}`,
|
|
2892
|
+
path: ["actionOrder"]
|
|
2893
|
+
});
|
|
2894
|
+
}
|
|
2895
|
+
}
|
|
2896
|
+
}
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
// ../commons/src/events/EventConfig.ts
|
|
2900
|
+
var EventConfig = z29.object({
|
|
2901
|
+
id: z29.string().describe(
|
|
2902
|
+
'Machine-readable identifier of the event (e.g. "birth", "death").'
|
|
2903
|
+
),
|
|
2904
|
+
dateOfEvent: FieldReference.optional().describe(
|
|
2905
|
+
"Reference to the field capturing the date of the event (e.g. date of birth). Defaults to the event creation date if unspecified."
|
|
2906
|
+
),
|
|
2907
|
+
placeOfEvent: FieldReference.optional().describe(
|
|
2908
|
+
"Reference to the field capturing the place of the event (e.g. place of birth). Defaults to the meta.createdAtLocation if unspecified."
|
|
2909
|
+
),
|
|
2910
|
+
title: TranslationConfig.describe(
|
|
2911
|
+
'Title template for the singular event, supporting variables (e.g. "{applicant.name.firstname} {applicant.name.surname}").'
|
|
2912
|
+
),
|
|
2913
|
+
fallbackTitle: TranslationConfig.optional().describe(
|
|
2914
|
+
"Fallback title shown when the main title resolves to an empty value."
|
|
2915
|
+
),
|
|
2916
|
+
summary: SummaryConfig.describe(
|
|
2917
|
+
"Summary information displayed in the event overview."
|
|
2918
|
+
),
|
|
2919
|
+
label: TranslationConfig.describe(
|
|
2920
|
+
"Human-readable label for the event type."
|
|
2921
|
+
),
|
|
2922
|
+
actions: z29.array(ActionConfig).describe(
|
|
2923
|
+
"Configuration of system-defined actions associated with the event."
|
|
2924
|
+
),
|
|
2925
|
+
actionOrder: z29.array(z29.string()).optional().describe(
|
|
2926
|
+
"Order of actions in the action menu. Use either the action type for core actions or the customActionType for custom actions."
|
|
2927
|
+
),
|
|
2928
|
+
declaration: DeclarationFormConfig.describe(
|
|
2929
|
+
"Configuration of the form used to gather event data."
|
|
2930
|
+
),
|
|
2931
|
+
advancedSearch: z29.array(AdvancedSearchConfig).optional().default([]).describe(
|
|
2932
|
+
"Configuration of fields available in the advanced search feature."
|
|
2933
|
+
),
|
|
2934
|
+
flags: z29.array(FlagConfig).optional().default([]).describe(
|
|
2935
|
+
"Configuration of flags associated with the actions of this event type."
|
|
2936
|
+
)
|
|
2937
|
+
}).superRefine((event2, ctx) => {
|
|
2938
|
+
validateAdvancedSearchConfig(event2, ctx);
|
|
2939
|
+
validateDateOfEvent(event2, ctx);
|
|
2940
|
+
validatePlaceOfEvent(event2, ctx);
|
|
2941
|
+
validateActionFlags(event2, ctx);
|
|
2942
|
+
validateActionOrder(event2, ctx);
|
|
2943
|
+
}).meta({
|
|
2944
|
+
id: "EventConfig"
|
|
2649
2945
|
}).describe("Configuration defining an event type.");
|
|
2650
2946
|
|
|
2651
2947
|
// ../commons/src/events/EventConfigInput.ts
|
|
@@ -2654,7 +2950,7 @@ var defineActionForm = (actionForm) => ActionFormConfig.parse(actionForm);
|
|
|
2654
2950
|
var defineFormPage = (formPage) => FormPageConfig.parse(formPage);
|
|
2655
2951
|
|
|
2656
2952
|
// ../commons/src/events/WorkqueueConfig.ts
|
|
2657
|
-
var
|
|
2953
|
+
var z32 = __toESM(require("zod/v4"));
|
|
2658
2954
|
|
|
2659
2955
|
// ../commons/src/conditionals/conditionals.ts
|
|
2660
2956
|
var objectHash = __toESM(require("object-hash"));
|
|
@@ -2692,7 +2988,7 @@ function not(condition) {
|
|
|
2692
2988
|
required: []
|
|
2693
2989
|
});
|
|
2694
2990
|
}
|
|
2695
|
-
function
|
|
2991
|
+
function never2() {
|
|
2696
2992
|
return not(alwaysTrue());
|
|
2697
2993
|
}
|
|
2698
2994
|
function jsonFieldPath(field3) {
|
|
@@ -3354,224 +3650,115 @@ var event = Object.assign(eventFn, {
|
|
|
3354
3650
|
required: ["actions"]
|
|
3355
3651
|
}
|
|
3356
3652
|
},
|
|
3357
|
-
required: ["$event"]
|
|
3358
|
-
});
|
|
3359
|
-
};
|
|
3360
|
-
const withMinMax = (additionalFields) => {
|
|
3361
|
-
return {
|
|
3362
|
-
/**
|
|
3363
|
-
* Creates a conditional that checks if the event contains a specific action type
|
|
3364
|
-
* with a minimum count of occurrences.
|
|
3365
|
-
*
|
|
3366
|
-
* @param minCount - The minimum number of actions required.
|
|
3367
|
-
*/
|
|
3368
|
-
minCount: (minCount) => createCountConditional("minContains", minCount, additionalFields),
|
|
3369
|
-
/**
|
|
3370
|
-
* Builds a conditional that sets a maximum count for the number of actions.
|
|
3371
|
-
* This is useful for limiting the number of actions of a specific type in a single event.
|
|
3372
|
-
*/
|
|
3373
|
-
maxCount: (maxCount) => createCountConditional("maxContains", maxCount, additionalFields)
|
|
3374
|
-
};
|
|
3375
|
-
};
|
|
3376
|
-
const chainableMethods = {
|
|
3377
|
-
/**
|
|
3378
|
-
* Adds additional field constraints to the action matching.
|
|
3379
|
-
*
|
|
3380
|
-
* @param fields - Object containing additional fields to match on the action.
|
|
3381
|
-
*/
|
|
3382
|
-
withFields: (fields) => withMinMax(fields),
|
|
3383
|
-
/**
|
|
3384
|
-
* Adds template ID constraint to the action matching.
|
|
3385
|
-
* This is a convenience method that adds content.templateId to the fields.
|
|
3386
|
-
*
|
|
3387
|
-
* @param id - The template ID to match against.
|
|
3388
|
-
*/
|
|
3389
|
-
withTemplate: (id) => withMinMax({
|
|
3390
|
-
content: { templateId: id }
|
|
3391
|
-
}),
|
|
3392
|
-
...withMinMax()
|
|
3393
|
-
};
|
|
3394
|
-
return { ...basicConditional, ...chainableMethods };
|
|
3395
|
-
},
|
|
3396
|
-
field(field3) {
|
|
3397
|
-
return {
|
|
3398
|
-
$event: field3
|
|
3399
|
-
};
|
|
3400
|
-
}
|
|
3401
|
-
});
|
|
3402
|
-
|
|
3403
|
-
// ../commons/src/events/WorkqueueColumnConfig.ts
|
|
3404
|
-
var
|
|
3405
|
-
var WorkqueueColumnKeysArray = [
|
|
3406
|
-
...EventMetadataKeysArray,
|
|
3407
|
-
"title",
|
|
3408
|
-
"outbox"
|
|
3409
|
-
];
|
|
3410
|
-
var WorkqueueColumnKeys =
|
|
3411
|
-
var WorkqueueColumnValue =
|
|
3412
|
-
$event: WorkqueueColumnKeys
|
|
3413
|
-
});
|
|
3414
|
-
var WorkqueueColumn =
|
|
3415
|
-
label: TranslationConfig,
|
|
3416
|
-
value: WorkqueueColumnValue
|
|
3417
|
-
});
|
|
3418
|
-
function defineWorkqueuesColumns(workqueueColumns) {
|
|
3419
|
-
return workqueueColumns.map(
|
|
3420
|
-
(workqueueColumn) => WorkqueueColumn.parse(workqueueColumn)
|
|
3421
|
-
);
|
|
3422
|
-
}
|
|
3423
|
-
|
|
3424
|
-
// ../commons/src/events/CountryConfigQueryInput.ts
|
|
3425
|
-
var
|
|
3426
|
-
var SerializableExact =
|
|
3427
|
-
type:
|
|
3428
|
-
term:
|
|
3429
|
-
});
|
|
3430
|
-
var SerializableWithin =
|
|
3431
|
-
type:
|
|
3432
|
-
location:
|
|
3433
|
-
});
|
|
3434
|
-
var SerializedQueryExpression =
|
|
3435
|
-
eventType:
|
|
3436
|
-
status:
|
|
3437
|
-
createdAt:
|
|
3438
|
-
updatedAt:
|
|
3439
|
-
"legalStatuses.REGISTERED.createdAt":
|
|
3440
|
-
"legalStatuses.
|
|
3441
|
-
|
|
3442
|
-
),
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
),
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
),
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
var
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
var CountryConfigQueryType = import_zod28.z.discriminatedUnion("type", [And2, Or2]);
|
|
3467
|
-
var CountryConfigQueryInputType = import_zod28.z.union([
|
|
3468
|
-
SerializedQueryExpression,
|
|
3469
|
-
And2,
|
|
3470
|
-
Or2
|
|
3471
|
-
]);
|
|
3472
|
-
|
|
3473
|
-
// ../commons/src/icons.ts
|
|
3474
|
-
var import_zod29 = require("zod");
|
|
3475
|
-
var AvailableIcons = import_zod29.z.enum([
|
|
3476
|
-
"Archived",
|
|
3477
|
-
"Assigned",
|
|
3478
|
-
"Certified",
|
|
3479
|
-
"Close",
|
|
3480
|
-
"Collapse",
|
|
3481
|
-
"Draft",
|
|
3482
|
-
"DuplicateYellow",
|
|
3483
|
-
"Expand",
|
|
3484
|
-
"ExternalValidate",
|
|
3485
|
-
"FilledCheck",
|
|
3486
|
-
"InReview",
|
|
3487
|
-
"Offline",
|
|
3488
|
-
"Registered",
|
|
3489
|
-
"RequiresUpdates",
|
|
3490
|
-
"Sent",
|
|
3491
|
-
"Validated",
|
|
3492
|
-
"WaitingApproval",
|
|
3493
|
-
"ChartActivity",
|
|
3494
|
-
"Activity",
|
|
3495
|
-
"Archive",
|
|
3496
|
-
"ArchiveTray",
|
|
3497
|
-
"ArrowLeft",
|
|
3498
|
-
"ArrowRight",
|
|
3499
|
-
"Buildings",
|
|
3500
|
-
"Circle",
|
|
3501
|
-
"CaretDown",
|
|
3502
|
-
"CaretLeft",
|
|
3503
|
-
"CaretRight",
|
|
3504
|
-
"ChartBar",
|
|
3505
|
-
"ChartLine",
|
|
3506
|
-
"ChatCircle",
|
|
3507
|
-
"CheckSquare",
|
|
3508
|
-
"Compass",
|
|
3509
|
-
"Check",
|
|
3510
|
-
"Copy",
|
|
3511
|
-
"Database",
|
|
3512
|
-
"DotsThreeVertical",
|
|
3513
|
-
"ArrowCounterClockwise",
|
|
3514
|
-
"MagnifyingGlassMinus",
|
|
3515
|
-
"MagnifyingGlassPlus",
|
|
3516
|
-
"Export",
|
|
3517
|
-
"Eye",
|
|
3518
|
-
"EyeSlash",
|
|
3519
|
-
"Envelope",
|
|
3520
|
-
"File",
|
|
3521
|
-
"FileSearch",
|
|
3522
|
-
"FileMinus",
|
|
3523
|
-
"FilePlus",
|
|
3524
|
-
"FileText",
|
|
3525
|
-
"FileX",
|
|
3526
|
-
"Handshake",
|
|
3527
|
-
"Gear",
|
|
3528
|
-
"GitBranch",
|
|
3529
|
-
"IdentificationCard",
|
|
3530
|
-
"List",
|
|
3531
|
-
"ListBullets",
|
|
3532
|
-
"Lock",
|
|
3533
|
-
"MagnifyingGlass",
|
|
3534
|
-
"MapPin",
|
|
3535
|
-
"Medal",
|
|
3536
|
-
"NotePencil",
|
|
3537
|
-
"Paperclip",
|
|
3538
|
-
"PaperPlaneTilt",
|
|
3539
|
-
"Pen",
|
|
3540
|
-
"Pencil",
|
|
3541
|
-
"PencilSimpleLine",
|
|
3542
|
-
"Phone",
|
|
3543
|
-
"Plus",
|
|
3544
|
-
"Printer",
|
|
3545
|
-
"SignOut",
|
|
3546
|
-
"Star",
|
|
3547
|
-
"Target",
|
|
3548
|
-
"TextT",
|
|
3549
|
-
"Trash",
|
|
3550
|
-
"UploadSimple",
|
|
3551
|
-
"User",
|
|
3552
|
-
"UserPlus",
|
|
3553
|
-
"Users",
|
|
3554
|
-
"WarningCircle",
|
|
3555
|
-
"X",
|
|
3556
|
-
"CircleWavyCheck",
|
|
3557
|
-
"CircleWavyQuestion",
|
|
3558
|
-
"ArchiveBox",
|
|
3559
|
-
"ArrowCircleDown",
|
|
3560
|
-
"FileArrowUp",
|
|
3561
|
-
"FileDotted",
|
|
3562
|
-
"Files",
|
|
3563
|
-
"PencilLine",
|
|
3564
|
-
"PencilCircle",
|
|
3565
|
-
"UserCircle",
|
|
3566
|
-
"Clock",
|
|
3567
|
-
"QrCode",
|
|
3568
|
-
"Webcam",
|
|
3569
|
-
"Sun",
|
|
3570
|
-
"DeviceTabletCamera",
|
|
3571
|
-
"Globe",
|
|
3572
|
-
"Fingerprint",
|
|
3573
|
-
"PushPin",
|
|
3574
|
-
"Timer"
|
|
3653
|
+
required: ["$event"]
|
|
3654
|
+
});
|
|
3655
|
+
};
|
|
3656
|
+
const withMinMax = (additionalFields) => {
|
|
3657
|
+
return {
|
|
3658
|
+
/**
|
|
3659
|
+
* Creates a conditional that checks if the event contains a specific action type
|
|
3660
|
+
* with a minimum count of occurrences.
|
|
3661
|
+
*
|
|
3662
|
+
* @param minCount - The minimum number of actions required.
|
|
3663
|
+
*/
|
|
3664
|
+
minCount: (minCount) => createCountConditional("minContains", minCount, additionalFields),
|
|
3665
|
+
/**
|
|
3666
|
+
* Builds a conditional that sets a maximum count for the number of actions.
|
|
3667
|
+
* This is useful for limiting the number of actions of a specific type in a single event.
|
|
3668
|
+
*/
|
|
3669
|
+
maxCount: (maxCount) => createCountConditional("maxContains", maxCount, additionalFields)
|
|
3670
|
+
};
|
|
3671
|
+
};
|
|
3672
|
+
const chainableMethods = {
|
|
3673
|
+
/**
|
|
3674
|
+
* Adds additional field constraints to the action matching.
|
|
3675
|
+
*
|
|
3676
|
+
* @param fields - Object containing additional fields to match on the action.
|
|
3677
|
+
*/
|
|
3678
|
+
withFields: (fields) => withMinMax(fields),
|
|
3679
|
+
/**
|
|
3680
|
+
* Adds template ID constraint to the action matching.
|
|
3681
|
+
* This is a convenience method that adds content.templateId to the fields.
|
|
3682
|
+
*
|
|
3683
|
+
* @param id - The template ID to match against.
|
|
3684
|
+
*/
|
|
3685
|
+
withTemplate: (id) => withMinMax({
|
|
3686
|
+
content: { templateId: id }
|
|
3687
|
+
}),
|
|
3688
|
+
...withMinMax()
|
|
3689
|
+
};
|
|
3690
|
+
return { ...basicConditional, ...chainableMethods };
|
|
3691
|
+
},
|
|
3692
|
+
field(field3) {
|
|
3693
|
+
return {
|
|
3694
|
+
$event: field3
|
|
3695
|
+
};
|
|
3696
|
+
}
|
|
3697
|
+
});
|
|
3698
|
+
|
|
3699
|
+
// ../commons/src/events/WorkqueueColumnConfig.ts
|
|
3700
|
+
var z30 = __toESM(require("zod/v4"));
|
|
3701
|
+
var WorkqueueColumnKeysArray = [
|
|
3702
|
+
...EventMetadataKeysArray,
|
|
3703
|
+
"title",
|
|
3704
|
+
"outbox"
|
|
3705
|
+
];
|
|
3706
|
+
var WorkqueueColumnKeys = z30.enum(WorkqueueColumnKeysArray);
|
|
3707
|
+
var WorkqueueColumnValue = z30.object({
|
|
3708
|
+
$event: WorkqueueColumnKeys
|
|
3709
|
+
});
|
|
3710
|
+
var WorkqueueColumn = z30.object({
|
|
3711
|
+
label: TranslationConfig,
|
|
3712
|
+
value: WorkqueueColumnValue
|
|
3713
|
+
});
|
|
3714
|
+
function defineWorkqueuesColumns(workqueueColumns) {
|
|
3715
|
+
return workqueueColumns.map(
|
|
3716
|
+
(workqueueColumn) => WorkqueueColumn.parse(workqueueColumn)
|
|
3717
|
+
);
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
// ../commons/src/events/CountryConfigQueryInput.ts
|
|
3721
|
+
var z31 = __toESM(require("zod/v4"));
|
|
3722
|
+
var SerializableExact = z31.object({
|
|
3723
|
+
type: z31.literal("exact"),
|
|
3724
|
+
term: z31.union([z31.string(), SerializedUserField])
|
|
3725
|
+
});
|
|
3726
|
+
var SerializableWithin = z31.object({
|
|
3727
|
+
type: z31.literal("within"),
|
|
3728
|
+
location: z31.union([z31.string(), SerializedUserField])
|
|
3729
|
+
});
|
|
3730
|
+
var SerializedQueryExpression = z31.object({
|
|
3731
|
+
eventType: z31.string(),
|
|
3732
|
+
status: z31.optional(z31.union([AnyOfStatus, ExactStatus])),
|
|
3733
|
+
createdAt: z31.optional(DateCondition),
|
|
3734
|
+
updatedAt: z31.optional(DateCondition),
|
|
3735
|
+
"legalStatuses.REGISTERED.createdAt": z31.optional(DateCondition),
|
|
3736
|
+
"legalStatuses.DECLARED.createdAtLocation": z31.optional(SerializableWithin),
|
|
3737
|
+
"legalStatuses.REGISTERED.createdAtLocation": z31.optional(SerializableWithin),
|
|
3738
|
+
"legalStatuses.REGISTERED.registrationNumber": z31.optional(Exact),
|
|
3739
|
+
createdAtLocation: z31.optional(SerializableWithin),
|
|
3740
|
+
updatedAtLocation: z31.optional(SerializableWithin),
|
|
3741
|
+
assignedTo: z31.optional(SerializableExact),
|
|
3742
|
+
createdBy: z31.optional(SerializableExact),
|
|
3743
|
+
createdByUserType: ExactUserType,
|
|
3744
|
+
updatedBy: z31.optional(SerializableExact),
|
|
3745
|
+
trackingId: z31.optional(Exact),
|
|
3746
|
+
flags: z31.optional(ContainsFlags),
|
|
3747
|
+
data: QueryInput
|
|
3748
|
+
}).partial();
|
|
3749
|
+
var Or2 = z31.object({
|
|
3750
|
+
type: z31.literal("or"),
|
|
3751
|
+
clauses: z31.array(SerializedQueryExpression)
|
|
3752
|
+
});
|
|
3753
|
+
var And2 = z31.object({
|
|
3754
|
+
type: z31.literal("and"),
|
|
3755
|
+
clauses: z31.array(SerializedQueryExpression)
|
|
3756
|
+
});
|
|
3757
|
+
var CountryConfigQueryType = z31.discriminatedUnion("type", [And2, Or2]);
|
|
3758
|
+
var CountryConfigQueryInputType = z31.union([
|
|
3759
|
+
SerializedQueryExpression,
|
|
3760
|
+
And2,
|
|
3761
|
+
Or2
|
|
3575
3762
|
]);
|
|
3576
3763
|
|
|
3577
3764
|
// ../commons/src/events/WorkqueueConfig.ts
|
|
@@ -3593,23 +3780,21 @@ var mandatoryColumns = defineWorkqueuesColumns([
|
|
|
3593
3780
|
value: event.field("updatedAt")
|
|
3594
3781
|
}
|
|
3595
3782
|
]);
|
|
3596
|
-
var WorkqueueActionsWithDefault =
|
|
3783
|
+
var WorkqueueActionsWithDefault = z32.enum([
|
|
3597
3784
|
...workqueueActions.options,
|
|
3598
|
-
"DEFAULT"
|
|
3785
|
+
"DEFAULT",
|
|
3786
|
+
ActionType.READ
|
|
3599
3787
|
]);
|
|
3600
|
-
var WorkqueueConfig =
|
|
3601
|
-
slug:
|
|
3788
|
+
var WorkqueueConfig = z32.object({
|
|
3789
|
+
slug: z32.string().describe("Determines the url of the workqueue."),
|
|
3602
3790
|
name: TranslationConfig.describe(
|
|
3603
3791
|
"Title of the workflow (both in navigation and on the page)"
|
|
3604
3792
|
),
|
|
3605
3793
|
query: CountryConfigQueryType,
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
})
|
|
3611
|
-
),
|
|
3612
|
-
columns: import_zod30.z.array(WorkqueueColumn).default(mandatoryColumns),
|
|
3794
|
+
/** This action object used to contain a conditionals option, but it was not used anywhere.
|
|
3795
|
+
* It's also debatable whether it should be an array, or just a single action. */
|
|
3796
|
+
actions: z32.array(z32.object({ type: WorkqueueActionsWithDefault })).describe("Workqueue call-to-action button configuration."),
|
|
3797
|
+
columns: z32.array(WorkqueueColumn).default(mandatoryColumns),
|
|
3613
3798
|
icon: AvailableIcons,
|
|
3614
3799
|
emptyMessage: TranslationConfig.optional()
|
|
3615
3800
|
}).describe("Configuration for workqueue.");
|
|
@@ -3617,26 +3802,21 @@ var WorkqueueConfigWithoutQuery = WorkqueueConfig.omit({
|
|
|
3617
3802
|
query: true,
|
|
3618
3803
|
columns: true
|
|
3619
3804
|
});
|
|
3620
|
-
var WorkqueueConfigInput =
|
|
3621
|
-
slug:
|
|
3805
|
+
var WorkqueueConfigInput = z32.object({
|
|
3806
|
+
slug: z32.string().describe("Determines the url of the workqueue."),
|
|
3622
3807
|
name: TranslationConfig.describe(
|
|
3623
3808
|
"Title of the workflow (both in navigation and on the page)"
|
|
3624
3809
|
),
|
|
3625
3810
|
query: CountryConfigQueryInputType,
|
|
3626
|
-
actions:
|
|
3627
|
-
|
|
3628
|
-
type: WorkqueueActionsWithDefault,
|
|
3629
|
-
conditionals: import_zod30.z.array(Conditional).optional()
|
|
3630
|
-
})
|
|
3631
|
-
),
|
|
3632
|
-
columns: import_zod30.z.array(WorkqueueColumn).default(mandatoryColumns),
|
|
3811
|
+
actions: z32.array(z32.object({ type: WorkqueueActionsWithDefault })).describe("Workqueue call-to-action button configuration."),
|
|
3812
|
+
columns: z32.array(WorkqueueColumn).default(mandatoryColumns),
|
|
3633
3813
|
icon: AvailableIcons,
|
|
3634
3814
|
emptyMessage: TranslationConfig.optional()
|
|
3635
3815
|
});
|
|
3636
|
-
var WorkqueueCountInput =
|
|
3637
|
-
|
|
3816
|
+
var WorkqueueCountInput = z32.array(
|
|
3817
|
+
z32.object({ slug: z32.string(), query: QueryType })
|
|
3638
3818
|
);
|
|
3639
|
-
var WorkqueueCountOutput =
|
|
3819
|
+
var WorkqueueCountOutput = z32.record(z32.string(), z32.number());
|
|
3640
3820
|
|
|
3641
3821
|
// ../commons/src/events/workqueueDefaultColumns.ts
|
|
3642
3822
|
var defaultWorkqueueColumns = [
|
|
@@ -3659,47 +3839,40 @@ var defaultWorkqueueColumns = [
|
|
|
3659
3839
|
];
|
|
3660
3840
|
|
|
3661
3841
|
// ../commons/src/events/Draft.ts
|
|
3662
|
-
var
|
|
3842
|
+
var z34 = __toESM(require("zod/v4"));
|
|
3663
3843
|
|
|
3664
3844
|
// ../commons/src/events/ActionInput.ts
|
|
3665
|
-
var
|
|
3666
|
-
var
|
|
3667
|
-
(0, import_zod_openapi11.extendZodWithOpenApi)(import_zod31.z);
|
|
3668
|
-
var BaseActionInput = import_zod31.z.object({
|
|
3845
|
+
var z33 = __toESM(require("zod/v4"));
|
|
3846
|
+
var BaseActionInput = z33.object({
|
|
3669
3847
|
eventId: UUID,
|
|
3670
|
-
transactionId:
|
|
3848
|
+
transactionId: z33.string(),
|
|
3671
3849
|
declaration: ActionUpdate.default({}),
|
|
3672
3850
|
annotation: ActionUpdate.optional(),
|
|
3673
3851
|
originalActionId: UUID.optional(),
|
|
3674
3852
|
// should not be part of base action.
|
|
3675
|
-
keepAssignment:
|
|
3853
|
+
keepAssignment: z33.boolean().optional(),
|
|
3676
3854
|
// For normal users, the createdAtLocation is resolved on the backend from the user's primaryOfficeId.
|
|
3677
3855
|
createdAtLocation: CreatedAtLocation.describe(
|
|
3678
3856
|
"A valid office location ID. This is required for system users performing actions. The provided location must be a leaf-location, i.e. it must not have any children locations."
|
|
3679
3857
|
)
|
|
3680
3858
|
});
|
|
3681
|
-
var CreateActionInput = BaseActionInput.
|
|
3682
|
-
|
|
3683
|
-
type:
|
|
3859
|
+
var CreateActionInput = BaseActionInput.extend(
|
|
3860
|
+
z33.object({
|
|
3861
|
+
type: z33.literal(ActionType.CREATE).default(ActionType.CREATE),
|
|
3684
3862
|
createdAtLocation: CreatedAtLocation
|
|
3685
|
-
})
|
|
3863
|
+
}).shape
|
|
3686
3864
|
);
|
|
3687
|
-
var RegisterActionInput = BaseActionInput.
|
|
3688
|
-
|
|
3689
|
-
type:
|
|
3690
|
-
registrationNumber:
|
|
3691
|
-
})
|
|
3692
|
-
).strict();
|
|
3693
|
-
var ValidateActionInput = BaseActionInput.merge(
|
|
3694
|
-
import_zod31.z.object({
|
|
3695
|
-
type: import_zod31.z.literal(ActionType.VALIDATE).default(ActionType.VALIDATE)
|
|
3696
|
-
})
|
|
3865
|
+
var RegisterActionInput = BaseActionInput.extend(
|
|
3866
|
+
z33.strictObject({
|
|
3867
|
+
type: z33.literal(ActionType.REGISTER).default(ActionType.REGISTER),
|
|
3868
|
+
registrationNumber: z33.string().optional()
|
|
3869
|
+
}).shape
|
|
3697
3870
|
);
|
|
3698
|
-
var NotifyActionInput = BaseActionInput.
|
|
3699
|
-
|
|
3700
|
-
type:
|
|
3701
|
-
})
|
|
3702
|
-
).
|
|
3871
|
+
var NotifyActionInput = BaseActionInput.extend(
|
|
3872
|
+
z33.object({
|
|
3873
|
+
type: z33.literal(ActionType.NOTIFY).default(ActionType.NOTIFY)
|
|
3874
|
+
}).shape
|
|
3875
|
+
).meta({
|
|
3703
3876
|
default: {
|
|
3704
3877
|
eventId: "<event-id-here>",
|
|
3705
3878
|
transactionId: getUUID(),
|
|
@@ -3708,135 +3881,150 @@ var NotifyActionInput = BaseActionInput.merge(
|
|
|
3708
3881
|
type: ActionType.NOTIFY
|
|
3709
3882
|
}
|
|
3710
3883
|
});
|
|
3711
|
-
var DeclareActionInput = BaseActionInput.
|
|
3712
|
-
|
|
3713
|
-
type:
|
|
3714
|
-
})
|
|
3884
|
+
var DeclareActionInput = BaseActionInput.extend(
|
|
3885
|
+
z33.object({
|
|
3886
|
+
type: z33.literal(ActionType.DECLARE).default(ActionType.DECLARE)
|
|
3887
|
+
}).shape
|
|
3715
3888
|
);
|
|
3716
|
-
var
|
|
3717
|
-
|
|
3718
|
-
type:
|
|
3889
|
+
var EditActionInput = BaseActionInput.extend(
|
|
3890
|
+
z33.object({
|
|
3891
|
+
type: z33.literal(ActionType.EDIT).default(ActionType.EDIT),
|
|
3892
|
+
content: z33.object({
|
|
3893
|
+
comment: z33.string().describe("Comment for the edit action.").optional()
|
|
3894
|
+
})
|
|
3895
|
+
}).shape
|
|
3896
|
+
);
|
|
3897
|
+
var PrintCertificateActionInput = BaseActionInput.extend(
|
|
3898
|
+
z33.object({
|
|
3899
|
+
type: z33.literal(ActionType.PRINT_CERTIFICATE).default(ActionType.PRINT_CERTIFICATE),
|
|
3719
3900
|
content: PrintContent.optional()
|
|
3720
|
-
})
|
|
3901
|
+
}).shape
|
|
3721
3902
|
);
|
|
3722
|
-
var RejectDeclarationActionInput = BaseActionInput.
|
|
3723
|
-
|
|
3724
|
-
type:
|
|
3903
|
+
var RejectDeclarationActionInput = BaseActionInput.extend(
|
|
3904
|
+
z33.object({
|
|
3905
|
+
type: z33.literal(ActionType.REJECT).default(ActionType.REJECT),
|
|
3725
3906
|
content: ReasonContent
|
|
3726
|
-
})
|
|
3907
|
+
}).shape
|
|
3727
3908
|
);
|
|
3728
|
-
var DuplicateDetectedActionInput = BaseActionInput.
|
|
3729
|
-
|
|
3730
|
-
type:
|
|
3731
|
-
content:
|
|
3732
|
-
duplicates:
|
|
3909
|
+
var DuplicateDetectedActionInput = BaseActionInput.extend(
|
|
3910
|
+
z33.object({
|
|
3911
|
+
type: z33.literal(ActionType.DUPLICATE_DETECTED).default(ActionType.DUPLICATE_DETECTED),
|
|
3912
|
+
content: z33.object({
|
|
3913
|
+
duplicates: z33.array(PotentialDuplicate)
|
|
3733
3914
|
})
|
|
3734
|
-
})
|
|
3915
|
+
}).shape
|
|
3735
3916
|
);
|
|
3736
|
-
var MarkAsDuplicateActionInput = BaseActionInput.
|
|
3737
|
-
|
|
3738
|
-
type:
|
|
3739
|
-
content:
|
|
3917
|
+
var MarkAsDuplicateActionInput = BaseActionInput.extend(
|
|
3918
|
+
z33.object({
|
|
3919
|
+
type: z33.literal(ActionType.MARK_AS_DUPLICATE).default(ActionType.MARK_AS_DUPLICATE),
|
|
3920
|
+
content: z33.object({
|
|
3740
3921
|
duplicateOf: UUID
|
|
3741
3922
|
}).optional()
|
|
3742
|
-
})
|
|
3923
|
+
}).shape
|
|
3743
3924
|
);
|
|
3744
|
-
var MarkNotDuplicateActionInput = BaseActionInput.
|
|
3745
|
-
|
|
3746
|
-
type:
|
|
3747
|
-
})
|
|
3925
|
+
var MarkNotDuplicateActionInput = BaseActionInput.extend(
|
|
3926
|
+
z33.object({
|
|
3927
|
+
type: z33.literal(ActionType.MARK_AS_NOT_DUPLICATE).default(ActionType.MARK_AS_NOT_DUPLICATE)
|
|
3928
|
+
}).shape
|
|
3748
3929
|
);
|
|
3749
|
-
var ArchiveActionInput = BaseActionInput.
|
|
3750
|
-
|
|
3751
|
-
type:
|
|
3930
|
+
var ArchiveActionInput = BaseActionInput.extend(
|
|
3931
|
+
z33.object({
|
|
3932
|
+
type: z33.literal(ActionType.ARCHIVE).default(ActionType.ARCHIVE),
|
|
3752
3933
|
content: ReasonContent
|
|
3753
|
-
})
|
|
3934
|
+
}).shape
|
|
3754
3935
|
);
|
|
3755
|
-
var AssignActionInput = BaseActionInput.
|
|
3756
|
-
|
|
3757
|
-
type:
|
|
3758
|
-
assignedTo:
|
|
3759
|
-
})
|
|
3936
|
+
var AssignActionInput = BaseActionInput.extend(
|
|
3937
|
+
z33.object({
|
|
3938
|
+
type: z33.literal(ActionType.ASSIGN),
|
|
3939
|
+
assignedTo: z33.string()
|
|
3940
|
+
}).shape
|
|
3760
3941
|
);
|
|
3761
|
-
var UnassignActionInput = BaseActionInput.
|
|
3762
|
-
|
|
3763
|
-
type:
|
|
3764
|
-
assignedTo:
|
|
3765
|
-
})
|
|
3942
|
+
var UnassignActionInput = BaseActionInput.extend(
|
|
3943
|
+
z33.object({
|
|
3944
|
+
type: z33.literal(ActionType.UNASSIGN).default(ActionType.UNASSIGN),
|
|
3945
|
+
assignedTo: z33.literal(null).default(null)
|
|
3946
|
+
}).shape
|
|
3766
3947
|
);
|
|
3767
|
-
var RequestCorrectionActionInput = BaseActionInput.
|
|
3768
|
-
|
|
3769
|
-
type:
|
|
3770
|
-
})
|
|
3948
|
+
var RequestCorrectionActionInput = BaseActionInput.extend(
|
|
3949
|
+
z33.object({
|
|
3950
|
+
type: z33.literal(ActionType.REQUEST_CORRECTION).default(ActionType.REQUEST_CORRECTION)
|
|
3951
|
+
}).shape
|
|
3771
3952
|
);
|
|
3772
|
-
var RejectCorrectionActionInput = BaseActionInput.
|
|
3773
|
-
|
|
3774
|
-
requestId:
|
|
3775
|
-
type:
|
|
3953
|
+
var RejectCorrectionActionInput = BaseActionInput.extend(
|
|
3954
|
+
z33.object({
|
|
3955
|
+
requestId: z33.string(),
|
|
3956
|
+
type: z33.literal(ActionType.REJECT_CORRECTION).default(ActionType.REJECT_CORRECTION),
|
|
3776
3957
|
content: ReasonContent
|
|
3777
|
-
})
|
|
3958
|
+
}).shape
|
|
3778
3959
|
);
|
|
3779
|
-
var ApproveCorrectionActionInput = BaseActionInput.
|
|
3780
|
-
|
|
3781
|
-
requestId:
|
|
3782
|
-
type:
|
|
3783
|
-
})
|
|
3960
|
+
var ApproveCorrectionActionInput = BaseActionInput.extend(
|
|
3961
|
+
z33.object({
|
|
3962
|
+
requestId: z33.string(),
|
|
3963
|
+
type: z33.literal(ActionType.APPROVE_CORRECTION).default(ActionType.APPROVE_CORRECTION)
|
|
3964
|
+
}).shape
|
|
3784
3965
|
);
|
|
3785
|
-
var ReadActionInput = BaseActionInput.
|
|
3786
|
-
|
|
3787
|
-
type:
|
|
3788
|
-
})
|
|
3966
|
+
var ReadActionInput = BaseActionInput.extend(
|
|
3967
|
+
z33.object({
|
|
3968
|
+
type: z33.literal(ActionType.READ).default(ActionType.READ)
|
|
3969
|
+
}).shape
|
|
3789
3970
|
);
|
|
3790
|
-
var DeleteActionInput =
|
|
3791
|
-
var
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3971
|
+
var DeleteActionInput = z33.object({ eventId: UUID });
|
|
3972
|
+
var CustomActionInput = BaseActionInput.extend(
|
|
3973
|
+
z33.object({
|
|
3974
|
+
type: z33.literal(ActionType.CUSTOM).default(ActionType.CUSTOM),
|
|
3975
|
+
customActionType: z33.string().describe("Name of the custom action.")
|
|
3976
|
+
}).shape
|
|
3977
|
+
);
|
|
3978
|
+
var ActionInput = z33.discriminatedUnion("type", [
|
|
3979
|
+
CreateActionInput.meta({ id: "CreateActionInput" }),
|
|
3980
|
+
RegisterActionInput.meta({ id: "RegisterActionInput" }),
|
|
3981
|
+
NotifyActionInput.meta({ id: "NotifyActionInput" }),
|
|
3982
|
+
DeclareActionInput.meta({ id: "DeclareActionInput" }),
|
|
3983
|
+
RejectDeclarationActionInput.meta({
|
|
3984
|
+
id: "RejectDeclarationActionInput"
|
|
3799
3985
|
}),
|
|
3800
|
-
DuplicateDetectedActionInput.
|
|
3801
|
-
|
|
3986
|
+
DuplicateDetectedActionInput.meta({
|
|
3987
|
+
id: "DuplicateDetectedActionInput"
|
|
3802
3988
|
}),
|
|
3803
|
-
MarkAsDuplicateActionInput.
|
|
3804
|
-
|
|
3989
|
+
MarkAsDuplicateActionInput.meta({
|
|
3990
|
+
id: "MarkAsDuplicateActionInput"
|
|
3805
3991
|
}),
|
|
3806
|
-
MarkNotDuplicateActionInput.
|
|
3807
|
-
|
|
3992
|
+
MarkNotDuplicateActionInput.meta({
|
|
3993
|
+
id: "MarkNotDuplicateActionInput"
|
|
3808
3994
|
}),
|
|
3809
|
-
ArchiveActionInput.
|
|
3810
|
-
AssignActionInput.
|
|
3811
|
-
UnassignActionInput.
|
|
3812
|
-
PrintCertificateActionInput.
|
|
3813
|
-
RequestCorrectionActionInput.
|
|
3814
|
-
|
|
3995
|
+
ArchiveActionInput.meta({ id: "ArchiveActionInput" }),
|
|
3996
|
+
AssignActionInput.meta({ id: "AssignActionInput" }),
|
|
3997
|
+
UnassignActionInput.meta({ id: "UnassignActionInput" }),
|
|
3998
|
+
PrintCertificateActionInput.meta({ id: "PrintCertificateActionInput" }),
|
|
3999
|
+
RequestCorrectionActionInput.meta({
|
|
4000
|
+
id: "RequestCorrectionActionInput"
|
|
3815
4001
|
}),
|
|
3816
|
-
RejectCorrectionActionInput.
|
|
3817
|
-
ApproveCorrectionActionInput.
|
|
3818
|
-
|
|
4002
|
+
RejectCorrectionActionInput.meta({ id: "RejectCorrectionActionInput" }),
|
|
4003
|
+
ApproveCorrectionActionInput.meta({
|
|
4004
|
+
id: "ApproveCorrectionActionInput"
|
|
3819
4005
|
}),
|
|
3820
|
-
ReadActionInput.
|
|
3821
|
-
|
|
3822
|
-
|
|
4006
|
+
ReadActionInput.meta({ id: "ReadActionInput" }),
|
|
4007
|
+
CustomActionInput.meta({ id: "CustomActionInput" }),
|
|
4008
|
+
EditActionInput.meta({ id: "EditActionInput" })
|
|
4009
|
+
]).meta({
|
|
4010
|
+
id: "ActionInput"
|
|
3823
4011
|
});
|
|
3824
4012
|
|
|
3825
4013
|
// ../commons/src/events/Draft.ts
|
|
3826
|
-
var Draft =
|
|
4014
|
+
var Draft = z34.object({
|
|
3827
4015
|
id: UUID,
|
|
3828
4016
|
eventId: UUID,
|
|
3829
|
-
transactionId:
|
|
3830
|
-
createdAt:
|
|
4017
|
+
transactionId: z34.string(),
|
|
4018
|
+
createdAt: z34.string().datetime(),
|
|
3831
4019
|
action: ActionBase.extend({
|
|
3832
|
-
type: ActionTypes.exclude([ActionTypes.
|
|
4020
|
+
type: ActionTypes.exclude([ActionTypes.enum.DELETE])
|
|
3833
4021
|
}).omit({ id: true, createdAtLocation: true })
|
|
3834
4022
|
}).describe(
|
|
3835
4023
|
"A temporary storage for an action. Stored with details of the event, creator and creation time."
|
|
3836
4024
|
);
|
|
3837
4025
|
var DraftInput = BaseActionInput.extend({
|
|
3838
|
-
type: ActionTypes.exclude([ActionTypes.
|
|
3839
|
-
status:
|
|
4026
|
+
type: ActionTypes.exclude([ActionTypes.enum.DELETE]),
|
|
4027
|
+
status: z34.enum([
|
|
3840
4028
|
ActionStatus.Requested,
|
|
3841
4029
|
ActionStatus.Accepted,
|
|
3842
4030
|
ActionStatus.Rejected
|
|
@@ -3844,32 +4032,30 @@ var DraftInput = BaseActionInput.extend({
|
|
|
3844
4032
|
});
|
|
3845
4033
|
|
|
3846
4034
|
// ../commons/src/events/EventInput.ts
|
|
3847
|
-
var
|
|
4035
|
+
var z35 = __toESM(require("zod/v4"));
|
|
3848
4036
|
var import_uuid10 = require("uuid");
|
|
3849
|
-
var EventInput =
|
|
3850
|
-
transactionId:
|
|
3851
|
-
type:
|
|
3852
|
-
}).
|
|
4037
|
+
var EventInput = z35.object({
|
|
4038
|
+
transactionId: z35.string(),
|
|
4039
|
+
type: z35.string()
|
|
4040
|
+
}).meta({ default: { transactionId: (0, import_uuid10.v4)(), type: "birth" } });
|
|
3853
4041
|
|
|
3854
4042
|
// ../commons/src/events/EventDocument.ts
|
|
3855
|
-
var
|
|
3856
|
-
var
|
|
3857
|
-
(0, import_zod_openapi12.extendZodWithOpenApi)(import_zod34.z);
|
|
3858
|
-
var EventDocument = import_zod34.z.object({
|
|
4043
|
+
var z36 = __toESM(require("zod/v4"));
|
|
4044
|
+
var EventDocument = z36.object({
|
|
3859
4045
|
id: UUID.describe("Unique identifier of the event."),
|
|
3860
|
-
type:
|
|
3861
|
-
createdAt:
|
|
3862
|
-
updatedAt:
|
|
4046
|
+
type: z36.string().describe("Type of the event (e.g. birth, death, marriage)."),
|
|
4047
|
+
createdAt: z36.string().datetime().describe("Timestamp indicating when the event was created."),
|
|
4048
|
+
updatedAt: z36.string().datetime().describe(
|
|
3863
4049
|
"Timestamp of the last update, excluding changes from actions."
|
|
3864
4050
|
),
|
|
3865
|
-
actions:
|
|
3866
|
-
trackingId:
|
|
4051
|
+
actions: z36.array(Action).describe("Ordered list of actions associated with the event."),
|
|
4052
|
+
trackingId: z36.string().describe(
|
|
3867
4053
|
"System-generated tracking identifier used to look up the event."
|
|
3868
4054
|
)
|
|
3869
|
-
}).
|
|
4055
|
+
}).meta({ id: "EventDocument" });
|
|
3870
4056
|
|
|
3871
4057
|
// ../commons/src/events/state/index.ts
|
|
3872
|
-
var
|
|
4058
|
+
var import_lodash4 = require("lodash");
|
|
3873
4059
|
|
|
3874
4060
|
// ../commons/src/events/state/utils.ts
|
|
3875
4061
|
var import_lodash2 = require("lodash");
|
|
@@ -3877,14 +4063,18 @@ var updateActions = ActionTypes.extract([
|
|
|
3877
4063
|
ActionType.CREATE,
|
|
3878
4064
|
ActionType.NOTIFY,
|
|
3879
4065
|
ActionType.DECLARE,
|
|
3880
|
-
ActionType.VALIDATE,
|
|
3881
4066
|
ActionType.REGISTER,
|
|
3882
4067
|
ActionType.REJECT,
|
|
3883
4068
|
ActionType.ARCHIVE,
|
|
3884
4069
|
ActionType.PRINT_CERTIFICATE,
|
|
3885
|
-
ActionType.REQUEST_CORRECTION
|
|
4070
|
+
ActionType.REQUEST_CORRECTION,
|
|
4071
|
+
ActionType.CUSTOM
|
|
3886
4072
|
]);
|
|
3887
4073
|
|
|
4074
|
+
// ../commons/src/events/state/flags.ts
|
|
4075
|
+
var import_lodash3 = require("lodash");
|
|
4076
|
+
var import_date_fns3 = require("date-fns");
|
|
4077
|
+
|
|
3888
4078
|
// ../commons/src/events/defineConfig.ts
|
|
3889
4079
|
var defineConfig = (config) => {
|
|
3890
4080
|
const input = EventConfig.parse(config);
|
|
@@ -3892,7 +4082,7 @@ var defineConfig = (config) => {
|
|
|
3892
4082
|
};
|
|
3893
4083
|
|
|
3894
4084
|
// ../commons/src/events/test.utils.ts
|
|
3895
|
-
var
|
|
4085
|
+
var import_lodash5 = require("lodash");
|
|
3896
4086
|
var import_date_fns4 = require("date-fns");
|
|
3897
4087
|
|
|
3898
4088
|
// ../commons/src/field-config/field-configuration.ts
|
|
@@ -3914,7 +4104,6 @@ function field(fieldId, options = {}) {
|
|
|
3914
4104
|
}
|
|
3915
4105
|
|
|
3916
4106
|
// ../commons/src/fixtures/forms.ts
|
|
3917
|
-
var import_date_fns3 = require("date-fns");
|
|
3918
4107
|
var PRINT_CERTIFICATE_FORM = defineActionForm({
|
|
3919
4108
|
label: {
|
|
3920
4109
|
id: "event.tennis-club-membership.action.certificate.form.label",
|
|
@@ -4714,7 +4903,7 @@ var TENNIS_CLUB_DECLARATION_FORM = defineDeclarationForm({
|
|
|
4714
4903
|
conditionals: [
|
|
4715
4904
|
{
|
|
4716
4905
|
type: ConditionalType.DISPLAY_ON_REVIEW,
|
|
4717
|
-
conditional:
|
|
4906
|
+
conditional: never2()
|
|
4718
4907
|
}
|
|
4719
4908
|
]
|
|
4720
4909
|
},
|
|
@@ -5097,119 +5286,16 @@ var TENNIS_CLUB_DECLARATION_FORM = defineDeclarationForm({
|
|
|
5097
5286
|
}
|
|
5098
5287
|
}
|
|
5099
5288
|
],
|
|
5100
|
-
conditional: not(
|
|
5289
|
+
conditional: not(never2())
|
|
5101
5290
|
// Intentional always-true page conditional to exercise interactions between page-level and field-level conditionals in tests
|
|
5102
5291
|
}
|
|
5103
5292
|
]
|
|
5104
5293
|
});
|
|
5105
|
-
var statusOptions = [
|
|
5106
|
-
{
|
|
5107
|
-
value: "ALL",
|
|
5108
|
-
label: {
|
|
5109
|
-
defaultMessage: "Any status",
|
|
5110
|
-
description: "Option for form field: status of record",
|
|
5111
|
-
id: "advancedSearch.form.recordStatusAny"
|
|
5112
|
-
}
|
|
5113
|
-
},
|
|
5114
|
-
{
|
|
5115
|
-
value: EventStatus.enum.CREATED,
|
|
5116
|
-
label: {
|
|
5117
|
-
defaultMessage: "Draft",
|
|
5118
|
-
description: "Option for form field: status of record",
|
|
5119
|
-
id: "advancedSearch.form.recordStatusCreated"
|
|
5120
|
-
}
|
|
5121
|
-
},
|
|
5122
|
-
{
|
|
5123
|
-
value: EventStatus.enum.NOTIFIED,
|
|
5124
|
-
label: {
|
|
5125
|
-
defaultMessage: "Notified",
|
|
5126
|
-
description: "Option for form field: status of record",
|
|
5127
|
-
id: "advancedSearch.form.recordStatusNotified"
|
|
5128
|
-
}
|
|
5129
|
-
},
|
|
5130
|
-
{
|
|
5131
|
-
value: EventStatus.enum.DECLARED,
|
|
5132
|
-
label: {
|
|
5133
|
-
defaultMessage: "Declared",
|
|
5134
|
-
description: "Option for form field: status of record",
|
|
5135
|
-
id: "advancedSearch.form.recordStatusDeclared"
|
|
5136
|
-
}
|
|
5137
|
-
},
|
|
5138
|
-
{
|
|
5139
|
-
value: EventStatus.enum.VALIDATED,
|
|
5140
|
-
label: {
|
|
5141
|
-
defaultMessage: "Validated",
|
|
5142
|
-
description: "Option for form field: status of record",
|
|
5143
|
-
id: "advancedSearch.form.recordStatusValidated"
|
|
5144
|
-
}
|
|
5145
|
-
},
|
|
5146
|
-
{
|
|
5147
|
-
value: EventStatus.enum.REGISTERED,
|
|
5148
|
-
label: {
|
|
5149
|
-
defaultMessage: "Registered",
|
|
5150
|
-
description: "Option for form field: status of record",
|
|
5151
|
-
id: "advancedSearch.form.recordStatusRegistered"
|
|
5152
|
-
}
|
|
5153
|
-
},
|
|
5154
|
-
{
|
|
5155
|
-
value: EventStatus.enum.ARCHIVED,
|
|
5156
|
-
label: {
|
|
5157
|
-
defaultMessage: "Archived",
|
|
5158
|
-
description: "Option for form field: status of record",
|
|
5159
|
-
id: "advancedSearch.form.recordStatusArchived"
|
|
5160
|
-
}
|
|
5161
|
-
}
|
|
5162
|
-
];
|
|
5163
|
-
var timePeriodOptions = [
|
|
5164
|
-
{
|
|
5165
|
-
label: {
|
|
5166
|
-
defaultMessage: "Last 7 days",
|
|
5167
|
-
description: "Label for option of time period select: last 7 days",
|
|
5168
|
-
id: "form.section.label.timePeriodLast7Days"
|
|
5169
|
-
},
|
|
5170
|
-
value: `${(0, import_date_fns3.format)((0, import_date_fns3.subDays)(/* @__PURE__ */ new Date(), 7), "yyyy-MM-dd")},${(0, import_date_fns3.format)(
|
|
5171
|
-
/* @__PURE__ */ new Date(),
|
|
5172
|
-
"yyyy-MM-dd"
|
|
5173
|
-
)}`
|
|
5174
|
-
},
|
|
5175
|
-
{
|
|
5176
|
-
label: {
|
|
5177
|
-
defaultMessage: "Last 30 days",
|
|
5178
|
-
description: "Label for option of time period select: last 30 days",
|
|
5179
|
-
id: "form.section.label.timePeriodLast30Days"
|
|
5180
|
-
},
|
|
5181
|
-
value: `${(0, import_date_fns3.format)((0, import_date_fns3.subMonths)(/* @__PURE__ */ new Date(), 1), "yyyy-MM-dd")},${(0, import_date_fns3.format)(
|
|
5182
|
-
/* @__PURE__ */ new Date(),
|
|
5183
|
-
"yyyy-MM-dd"
|
|
5184
|
-
)}`
|
|
5185
|
-
},
|
|
5186
|
-
{
|
|
5187
|
-
label: {
|
|
5188
|
-
defaultMessage: "Last 90 days",
|
|
5189
|
-
description: "Label for option of time period select: last 90 days",
|
|
5190
|
-
id: "form.section.label.timePeriodLast90Days"
|
|
5191
|
-
},
|
|
5192
|
-
value: `${(0, import_date_fns3.format)((0, import_date_fns3.subQuarters)(/* @__PURE__ */ new Date(), 1), "yyyy-MM-dd")},${(0, import_date_fns3.format)(
|
|
5193
|
-
/* @__PURE__ */ new Date(),
|
|
5194
|
-
"yyyy-MM-dd"
|
|
5195
|
-
)}`
|
|
5196
|
-
},
|
|
5197
|
-
{
|
|
5198
|
-
label: {
|
|
5199
|
-
defaultMessage: "Last year",
|
|
5200
|
-
description: "Label for option of time period select: last year",
|
|
5201
|
-
id: "form.section.label.timePeriodLastYear"
|
|
5202
|
-
},
|
|
5203
|
-
value: `${(0, import_date_fns3.format)((0, import_date_fns3.subYears)(/* @__PURE__ */ new Date(), 1), "yyyy-MM-dd")},${(0, import_date_fns3.format)(
|
|
5204
|
-
/* @__PURE__ */ new Date(),
|
|
5205
|
-
"yyyy-MM-dd"
|
|
5206
|
-
)}`
|
|
5207
|
-
}
|
|
5208
|
-
];
|
|
5209
5294
|
|
|
5210
5295
|
// ../commons/src/fixtures/tennis-club-membership-event.ts
|
|
5211
5296
|
var tennisClubMembershipEvent = defineConfig({
|
|
5212
5297
|
id: TENNIS_CLUB_MEMBERSHIP,
|
|
5298
|
+
declaration: TENNIS_CLUB_DECLARATION_FORM,
|
|
5213
5299
|
label: {
|
|
5214
5300
|
defaultMessage: "Tennis club membership application",
|
|
5215
5301
|
description: "This is what this event is referred as in the system",
|
|
@@ -5260,13 +5346,12 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5260
5346
|
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5261
5347
|
},
|
|
5262
5348
|
{
|
|
5263
|
-
type: ActionType.
|
|
5349
|
+
type: ActionType.REJECT,
|
|
5264
5350
|
label: {
|
|
5265
|
-
defaultMessage: "
|
|
5351
|
+
defaultMessage: "Reject",
|
|
5266
5352
|
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5267
|
-
id: "event.tennis-club-membership.action.
|
|
5268
|
-
}
|
|
5269
|
-
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5353
|
+
id: "event.tennis-club-membership.action.reject.label"
|
|
5354
|
+
}
|
|
5270
5355
|
},
|
|
5271
5356
|
{
|
|
5272
5357
|
type: ActionType.REGISTER,
|
|
@@ -5274,8 +5359,7 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5274
5359
|
defaultMessage: "Register",
|
|
5275
5360
|
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5276
5361
|
id: "event.tennis-club-membership.action.register.label"
|
|
5277
|
-
}
|
|
5278
|
-
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5362
|
+
}
|
|
5279
5363
|
},
|
|
5280
5364
|
{
|
|
5281
5365
|
type: ActionType.REQUEST_CORRECTION,
|
|
@@ -5478,14 +5562,6 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5478
5562
|
]
|
|
5479
5563
|
}
|
|
5480
5564
|
},
|
|
5481
|
-
{
|
|
5482
|
-
type: ActionType.APPROVE_CORRECTION,
|
|
5483
|
-
label: {
|
|
5484
|
-
defaultMessage: "Approve correction",
|
|
5485
|
-
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5486
|
-
id: "event.tennis-club-membership.action.correction.approve.label"
|
|
5487
|
-
}
|
|
5488
|
-
},
|
|
5489
5565
|
{
|
|
5490
5566
|
type: ActionType.PRINT_CERTIFICATE,
|
|
5491
5567
|
label: {
|
|
@@ -5494,22 +5570,6 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5494
5570
|
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5495
5571
|
},
|
|
5496
5572
|
printForm: PRINT_CERTIFICATE_FORM
|
|
5497
|
-
},
|
|
5498
|
-
{
|
|
5499
|
-
type: ActionType.ARCHIVE,
|
|
5500
|
-
label: {
|
|
5501
|
-
id: "event.tennis-club-membership.action.archive.label",
|
|
5502
|
-
defaultMessage: "Archive",
|
|
5503
|
-
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5504
|
-
}
|
|
5505
|
-
},
|
|
5506
|
-
{
|
|
5507
|
-
type: ActionType.REJECT,
|
|
5508
|
-
label: {
|
|
5509
|
-
id: "event.tennis-club-membership.action.reject.label",
|
|
5510
|
-
defaultMessage: "Reject",
|
|
5511
|
-
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5512
|
-
}
|
|
5513
5573
|
}
|
|
5514
5574
|
],
|
|
5515
5575
|
advancedSearch: [
|
|
@@ -5546,8 +5606,7 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5546
5606
|
},
|
|
5547
5607
|
fields: [field("recommender.name").fuzzy()]
|
|
5548
5608
|
}
|
|
5549
|
-
]
|
|
5550
|
-
declaration: TENNIS_CLUB_DECLARATION_FORM
|
|
5609
|
+
]
|
|
5551
5610
|
});
|
|
5552
5611
|
|
|
5553
5612
|
// ../commons/src/fixtures/football-club-membership-event.ts
|
|
@@ -5615,23 +5674,13 @@ var footballClubMembershipEvent = defineConfig({
|
|
|
5615
5674
|
},
|
|
5616
5675
|
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5617
5676
|
},
|
|
5618
|
-
{
|
|
5619
|
-
type: ActionType.VALIDATE,
|
|
5620
|
-
label: {
|
|
5621
|
-
defaultMessage: "Validate",
|
|
5622
|
-
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5623
|
-
id: "event.football-club-membership.action.validate.label"
|
|
5624
|
-
},
|
|
5625
|
-
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5626
|
-
},
|
|
5627
5677
|
{
|
|
5628
5678
|
type: ActionType.REGISTER,
|
|
5629
5679
|
label: {
|
|
5630
5680
|
defaultMessage: "Register",
|
|
5631
5681
|
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5632
5682
|
id: "event.football-club-membership.action.register.label"
|
|
5633
|
-
}
|
|
5634
|
-
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5683
|
+
}
|
|
5635
5684
|
},
|
|
5636
5685
|
{
|
|
5637
5686
|
type: ActionType.REQUEST_CORRECTION,
|
|
@@ -5837,14 +5886,6 @@ var footballClubMembershipEvent = defineConfig({
|
|
|
5837
5886
|
]
|
|
5838
5887
|
}
|
|
5839
5888
|
},
|
|
5840
|
-
{
|
|
5841
|
-
type: ActionType.APPROVE_CORRECTION,
|
|
5842
|
-
label: {
|
|
5843
|
-
defaultMessage: "Approve correction",
|
|
5844
|
-
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5845
|
-
id: "event.football-club-membership.action.correction.approve.label"
|
|
5846
|
-
}
|
|
5847
|
-
},
|
|
5848
5889
|
{
|
|
5849
5890
|
type: ActionType.PRINT_CERTIFICATE,
|
|
5850
5891
|
label: {
|
|
@@ -5853,22 +5894,6 @@ var footballClubMembershipEvent = defineConfig({
|
|
|
5853
5894
|
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5854
5895
|
},
|
|
5855
5896
|
printForm: PRINT_CERTIFICATE_FORM
|
|
5856
|
-
},
|
|
5857
|
-
{
|
|
5858
|
-
type: ActionType.ARCHIVE,
|
|
5859
|
-
label: {
|
|
5860
|
-
id: "event.football-club-membership.action.archive.label",
|
|
5861
|
-
defaultMessage: "Archive",
|
|
5862
|
-
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5863
|
-
}
|
|
5864
|
-
},
|
|
5865
|
-
{
|
|
5866
|
-
type: ActionType.REJECT,
|
|
5867
|
-
label: {
|
|
5868
|
-
id: "event.football-club-membership.action.reject.label",
|
|
5869
|
-
defaultMessage: "Reject",
|
|
5870
|
-
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5871
|
-
}
|
|
5872
5897
|
}
|
|
5873
5898
|
],
|
|
5874
5899
|
advancedSearch: [
|
|
@@ -5968,7 +5993,7 @@ var libraryMembershipEvent = defineConfig({
|
|
|
5968
5993
|
declaration: libraryMembershipForm
|
|
5969
5994
|
});
|
|
5970
5995
|
|
|
5971
|
-
// ../commons/src/fixtures/
|
|
5996
|
+
// ../commons/src/fixtures/child-onboarding-event.ts
|
|
5972
5997
|
function generateTranslationConfig(message) {
|
|
5973
5998
|
return {
|
|
5974
5999
|
defaultMessage: message,
|
|
@@ -5997,6 +6022,61 @@ var child = defineFormPage({
|
|
|
5997
6022
|
secured: true,
|
|
5998
6023
|
validation: [],
|
|
5999
6024
|
label: generateTranslationConfig("Date of birth")
|
|
6025
|
+
},
|
|
6026
|
+
{
|
|
6027
|
+
id: "child.placeOfBirth",
|
|
6028
|
+
analytics: true,
|
|
6029
|
+
type: FieldType.SELECT,
|
|
6030
|
+
required: true,
|
|
6031
|
+
secured: true,
|
|
6032
|
+
label: {
|
|
6033
|
+
defaultMessage: "Place of delivery",
|
|
6034
|
+
description: "This is the label for the field",
|
|
6035
|
+
id: "event.birth.action.declare.form.section.child.field.placeOfBirth.label"
|
|
6036
|
+
},
|
|
6037
|
+
options: [
|
|
6038
|
+
{
|
|
6039
|
+
value: "child.placeOfBirth-SELECT-2",
|
|
6040
|
+
label: generateTranslationConfig("Health Institution")
|
|
6041
|
+
},
|
|
6042
|
+
{
|
|
6043
|
+
value: "PRIVATE_HOME",
|
|
6044
|
+
label: generateTranslationConfig("Residential address")
|
|
6045
|
+
}
|
|
6046
|
+
]
|
|
6047
|
+
},
|
|
6048
|
+
{
|
|
6049
|
+
id: "child.birthLocation",
|
|
6050
|
+
analytics: true,
|
|
6051
|
+
type: "FACILITY",
|
|
6052
|
+
required: true,
|
|
6053
|
+
secured: true,
|
|
6054
|
+
label: generateTranslationConfig("Health Institution"),
|
|
6055
|
+
conditionals: [
|
|
6056
|
+
{
|
|
6057
|
+
type: "SHOW",
|
|
6058
|
+
conditional: field("child.placeOfBirth").isEqualTo(
|
|
6059
|
+
"child.placeOfBirth-SELECT-2"
|
|
6060
|
+
)
|
|
6061
|
+
}
|
|
6062
|
+
]
|
|
6063
|
+
},
|
|
6064
|
+
{
|
|
6065
|
+
id: "child.birthLocation.privateHome",
|
|
6066
|
+
analytics: true,
|
|
6067
|
+
type: FieldType.ADDRESS,
|
|
6068
|
+
secured: true,
|
|
6069
|
+
hideLabel: true,
|
|
6070
|
+
label: generateTranslationConfig("Child's address"),
|
|
6071
|
+
conditionals: [
|
|
6072
|
+
{
|
|
6073
|
+
type: "SHOW",
|
|
6074
|
+
conditional: field("child.placeOfBirth").isEqualTo("PRIVATE_HOME")
|
|
6075
|
+
}
|
|
6076
|
+
],
|
|
6077
|
+
configuration: {
|
|
6078
|
+
streetAddressForm: []
|
|
6079
|
+
}
|
|
6000
6080
|
}
|
|
6001
6081
|
]
|
|
6002
6082
|
});
|
|
@@ -6073,7 +6153,7 @@ var mother = defineFormPage({
|
|
|
6073
6153
|
}
|
|
6074
6154
|
]
|
|
6075
6155
|
});
|
|
6076
|
-
var
|
|
6156
|
+
var CHILD_ONBOARDING_DECLARATION_REVIEW = {
|
|
6077
6157
|
title: generateTranslationConfig(
|
|
6078
6158
|
"{child.name.firstname, select, __EMPTY__ {Birth declaration} other {{child.name.surname, select, __EMPTY__ {Birth declaration for {child.name.firstname}} other {Birth declaration for {child.name.firstname} {child.name.surname}}}}}"
|
|
6079
6159
|
),
|
|
@@ -6093,12 +6173,12 @@ var BIRTH_DECLARATION_REVIEW = {
|
|
|
6093
6173
|
}
|
|
6094
6174
|
]
|
|
6095
6175
|
};
|
|
6096
|
-
var
|
|
6176
|
+
var CHILD_ONBOARDING_DECLARATION_FORM = defineDeclarationForm({
|
|
6097
6177
|
label: generateTranslationConfig("Birth decalration form"),
|
|
6098
6178
|
pages: [child, mother]
|
|
6099
6179
|
});
|
|
6100
|
-
var
|
|
6101
|
-
id:
|
|
6180
|
+
var ChildOnboardingEvent = defineConfig({
|
|
6181
|
+
id: CHILD_ONBOARDING_EVENT,
|
|
6102
6182
|
title: generateTranslationConfig(
|
|
6103
6183
|
"{child.name.firstname} {child.name.surname}"
|
|
6104
6184
|
),
|
|
@@ -6106,27 +6186,21 @@ var v2BirthEvent = defineConfig({
|
|
|
6106
6186
|
summary: {
|
|
6107
6187
|
fields: []
|
|
6108
6188
|
},
|
|
6109
|
-
declaration:
|
|
6189
|
+
declaration: CHILD_ONBOARDING_DECLARATION_FORM,
|
|
6110
6190
|
actions: [
|
|
6111
6191
|
{
|
|
6112
6192
|
type: ActionType.READ,
|
|
6113
6193
|
label: generateTranslationConfig("Read"),
|
|
6114
|
-
review:
|
|
6194
|
+
review: CHILD_ONBOARDING_DECLARATION_REVIEW
|
|
6115
6195
|
},
|
|
6116
6196
|
{
|
|
6117
6197
|
type: ActionType.DECLARE,
|
|
6118
6198
|
label: generateTranslationConfig("Declare"),
|
|
6119
|
-
review:
|
|
6120
|
-
},
|
|
6121
|
-
{
|
|
6122
|
-
type: ActionType.VALIDATE,
|
|
6123
|
-
label: generateTranslationConfig("Validate"),
|
|
6124
|
-
review: BIRTH_DECLARATION_REVIEW
|
|
6199
|
+
review: CHILD_ONBOARDING_DECLARATION_REVIEW
|
|
6125
6200
|
},
|
|
6126
6201
|
{
|
|
6127
6202
|
type: ActionType.REGISTER,
|
|
6128
|
-
label: generateTranslationConfig("Register")
|
|
6129
|
-
review: BIRTH_DECLARATION_REVIEW
|
|
6203
|
+
label: generateTranslationConfig("Register")
|
|
6130
6204
|
}
|
|
6131
6205
|
],
|
|
6132
6206
|
advancedSearch: []
|
|
@@ -6214,7 +6288,7 @@ var PRINT_DIGITAL_ID_CERTIFICATE_FORM = defineActionForm({
|
|
|
6214
6288
|
conditionals: [
|
|
6215
6289
|
{
|
|
6216
6290
|
type: ConditionalType.ENABLE,
|
|
6217
|
-
conditional:
|
|
6291
|
+
conditional: never2()
|
|
6218
6292
|
},
|
|
6219
6293
|
{
|
|
6220
6294
|
type: ConditionalType.SHOW,
|
|
@@ -6241,7 +6315,7 @@ var PRINT_DIGITAL_ID_CERTIFICATE_FORM = defineActionForm({
|
|
|
6241
6315
|
conditionals: [
|
|
6242
6316
|
{
|
|
6243
6317
|
type: ConditionalType.ENABLE,
|
|
6244
|
-
conditional:
|
|
6318
|
+
conditional: never2()
|
|
6245
6319
|
},
|
|
6246
6320
|
{
|
|
6247
6321
|
type: ConditionalType.SHOW,
|
|
@@ -6269,7 +6343,7 @@ var PRINT_DIGITAL_ID_CERTIFICATE_FORM = defineActionForm({
|
|
|
6269
6343
|
conditionals: [
|
|
6270
6344
|
{
|
|
6271
6345
|
type: ConditionalType.ENABLE,
|
|
6272
|
-
conditional:
|
|
6346
|
+
conditional: never2()
|
|
6273
6347
|
}
|
|
6274
6348
|
],
|
|
6275
6349
|
value: field("identity.http-fetch").get("data.certificateId")
|
|
@@ -6347,8 +6421,8 @@ var digitalIdentityEvent = defineConfig({
|
|
|
6347
6421
|
});
|
|
6348
6422
|
|
|
6349
6423
|
// ../commons/src/events/test.utils.ts
|
|
6350
|
-
var
|
|
6351
|
-
var TestUserRole =
|
|
6424
|
+
var z37 = __toESM(require("zod/v4"));
|
|
6425
|
+
var TestUserRole = z37.enum([
|
|
6352
6426
|
"FIELD_AGENT",
|
|
6353
6427
|
"LOCAL_REGISTRAR",
|
|
6354
6428
|
"LOCAL_SYSTEM_ADMIN",
|
|
@@ -6359,18 +6433,14 @@ var TestUserRole = import_zod35.z.enum([
|
|
|
6359
6433
|
]);
|
|
6360
6434
|
|
|
6361
6435
|
// ../commons/src/events/scopes.ts
|
|
6362
|
-
var
|
|
6436
|
+
var import_lodash6 = require("lodash");
|
|
6363
6437
|
var ACTION_SCOPE_MAP = {
|
|
6364
6438
|
[ActionType.READ]: ["record.read"],
|
|
6365
6439
|
[ActionType.CREATE]: ["record.create"],
|
|
6366
6440
|
[ActionType.NOTIFY]: ["record.notify"],
|
|
6367
|
-
[ActionType.DECLARE]: [
|
|
6368
|
-
|
|
6369
|
-
"record.declared.validate",
|
|
6370
|
-
"record.register"
|
|
6371
|
-
],
|
|
6441
|
+
[ActionType.DECLARE]: ["record.declare", "record.register"],
|
|
6442
|
+
[ActionType.EDIT]: ["record.declared.edit"],
|
|
6372
6443
|
[ActionType.DELETE]: ["record.declare"],
|
|
6373
|
-
[ActionType.VALIDATE]: ["record.declared.validate", "record.register"],
|
|
6374
6444
|
[ActionType.REGISTER]: ["record.register"],
|
|
6375
6445
|
[ActionType.PRINT_CERTIFICATE]: ["record.registered.print-certified-copies"],
|
|
6376
6446
|
[ActionType.REQUEST_CORRECTION]: [
|
|
@@ -6388,7 +6458,8 @@ var ACTION_SCOPE_MAP = {
|
|
|
6388
6458
|
[ActionType.REJECT]: ["record.declared.reject"],
|
|
6389
6459
|
[ActionType.ASSIGN]: null,
|
|
6390
6460
|
[ActionType.UNASSIGN]: null,
|
|
6391
|
-
[ActionType.DUPLICATE_DETECTED]: []
|
|
6461
|
+
[ActionType.DUPLICATE_DETECTED]: [],
|
|
6462
|
+
[ActionType.CUSTOM]: []
|
|
6392
6463
|
};
|
|
6393
6464
|
|
|
6394
6465
|
// ../commons/src/events/state/availableActions.ts
|
|
@@ -6397,28 +6468,25 @@ var AVAILABLE_ACTIONS_BY_EVENT_STATUS = {
|
|
|
6397
6468
|
ActionType.READ,
|
|
6398
6469
|
ActionType.DECLARE,
|
|
6399
6470
|
ActionType.NOTIFY,
|
|
6400
|
-
ActionType.DELETE
|
|
6471
|
+
ActionType.DELETE,
|
|
6472
|
+
ActionType.CUSTOM
|
|
6401
6473
|
],
|
|
6402
6474
|
[EventStatus.enum.NOTIFIED]: [
|
|
6403
6475
|
ActionType.READ,
|
|
6404
|
-
ActionType.
|
|
6476
|
+
ActionType.EDIT,
|
|
6405
6477
|
ActionType.MARK_AS_DUPLICATE,
|
|
6406
6478
|
ActionType.ARCHIVE,
|
|
6407
|
-
ActionType.REJECT
|
|
6479
|
+
ActionType.REJECT,
|
|
6480
|
+
ActionType.CUSTOM
|
|
6408
6481
|
],
|
|
6409
6482
|
[EventStatus.enum.DECLARED]: [
|
|
6410
|
-
ActionType.READ,
|
|
6411
|
-
ActionType.VALIDATE,
|
|
6412
|
-
ActionType.MARK_AS_DUPLICATE,
|
|
6413
|
-
ActionType.ARCHIVE,
|
|
6414
|
-
ActionType.REJECT
|
|
6415
|
-
],
|
|
6416
|
-
[EventStatus.enum.VALIDATED]: [
|
|
6417
6483
|
ActionType.READ,
|
|
6418
6484
|
ActionType.REGISTER,
|
|
6419
6485
|
ActionType.MARK_AS_DUPLICATE,
|
|
6420
6486
|
ActionType.ARCHIVE,
|
|
6421
|
-
ActionType.REJECT
|
|
6487
|
+
ActionType.REJECT,
|
|
6488
|
+
ActionType.CUSTOM,
|
|
6489
|
+
ActionType.EDIT
|
|
6422
6490
|
],
|
|
6423
6491
|
[EventStatus.enum.REGISTERED]: [
|
|
6424
6492
|
ActionType.READ,
|
|
@@ -6426,12 +6494,14 @@ var AVAILABLE_ACTIONS_BY_EVENT_STATUS = {
|
|
|
6426
6494
|
ActionType.REQUEST_CORRECTION,
|
|
6427
6495
|
ActionType.APPROVE_CORRECTION,
|
|
6428
6496
|
ActionType.REJECT_CORRECTION,
|
|
6497
|
+
ActionType.CUSTOM,
|
|
6429
6498
|
ClientSpecificAction.REVIEW_CORRECTION_REQUEST
|
|
6430
6499
|
],
|
|
6431
6500
|
[EventStatus.enum.ARCHIVED]: [
|
|
6432
6501
|
ActionType.READ,
|
|
6433
6502
|
ActionType.ASSIGN,
|
|
6434
|
-
ActionType.UNASSIGN
|
|
6503
|
+
ActionType.UNASSIGN,
|
|
6504
|
+
ActionType.CUSTOM
|
|
6435
6505
|
]
|
|
6436
6506
|
};
|
|
6437
6507
|
var ACTION_FILTERS = {
|
|
@@ -6441,32 +6511,41 @@ var ACTION_FILTERS = {
|
|
|
6441
6511
|
[ActionType.APPROVE_CORRECTION]: (flags) => flags.includes(InherentFlags.CORRECTION_REQUESTED) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6442
6512
|
[ActionType.REJECT_CORRECTION]: (flags) => flags.includes(InherentFlags.CORRECTION_REQUESTED) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6443
6513
|
[ActionType.MARK_AS_DUPLICATE]: (flags) => flags.includes(InherentFlags.POTENTIAL_DUPLICATE) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6444
|
-
[ActionType.
|
|
6514
|
+
[ActionType.EDIT]: (flags) => !flags.includes(InherentFlags.POTENTIAL_DUPLICATE) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6445
6515
|
[ActionType.REGISTER]: (flags) => !flags.includes(InherentFlags.POTENTIAL_DUPLICATE) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6446
6516
|
[ActionType.REJECT]: (flags) => !flags.includes(InherentFlags.REJECTED) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6447
6517
|
[ActionType.ARCHIVE]: (flags) => !flags.some((flag) => flag.endsWith(":requested"))
|
|
6448
6518
|
};
|
|
6449
6519
|
|
|
6450
6520
|
// ../commons/src/events/FileUtils.ts
|
|
6451
|
-
var
|
|
6521
|
+
var import_lodash7 = require("lodash");
|
|
6452
6522
|
|
|
6453
6523
|
// ../commons/src/events/locations.ts
|
|
6454
|
-
var
|
|
6455
|
-
var
|
|
6524
|
+
var z38 = __toESM(require("zod/v4"));
|
|
6525
|
+
var LocationTypeV1 = z38.enum([
|
|
6456
6526
|
"ADMIN_STRUCTURE",
|
|
6457
6527
|
"CRVS_OFFICE",
|
|
6458
6528
|
"HEALTH_FACILITY"
|
|
6459
6529
|
]);
|
|
6460
|
-
var
|
|
6530
|
+
var LocationType = z38.enum(["CRVS_OFFICE", "HEALTH_FACILITY"]);
|
|
6531
|
+
var AdministrativeArea = z38.object({
|
|
6461
6532
|
id: UUID,
|
|
6462
|
-
name:
|
|
6533
|
+
name: z38.string(),
|
|
6534
|
+
externalId: z38.string().nullish(),
|
|
6463
6535
|
parentId: UUID.nullable(),
|
|
6464
|
-
validUntil:
|
|
6465
|
-
|
|
6536
|
+
validUntil: z38.iso.datetime().nullable()
|
|
6537
|
+
});
|
|
6538
|
+
var Location = z38.object({
|
|
6539
|
+
id: UUID,
|
|
6540
|
+
name: z38.string(),
|
|
6541
|
+
externalId: z38.string().nullish(),
|
|
6542
|
+
administrativeAreaId: UUID.nullable(),
|
|
6543
|
+
validUntil: z38.iso.datetime().nullable(),
|
|
6544
|
+
locationType: z38.string().nullable()
|
|
6466
6545
|
});
|
|
6467
6546
|
|
|
6468
6547
|
// ../commons/src/notification/UserNotifications.ts
|
|
6469
|
-
var
|
|
6548
|
+
var z39 = __toESM(require("zod/v4"));
|
|
6470
6549
|
var TriggerEvent = {
|
|
6471
6550
|
USER_CREATED: "user-created",
|
|
6472
6551
|
USER_UPDATED: "user-updated",
|
|
@@ -6478,50 +6557,50 @@ var TriggerEvent = {
|
|
|
6478
6557
|
CHANGE_PHONE_NUMBER: "change-phone-number",
|
|
6479
6558
|
CHANGE_EMAIL_ADDRESS: "change-email-address"
|
|
6480
6559
|
};
|
|
6481
|
-
var Recipient =
|
|
6560
|
+
var Recipient = z39.object({
|
|
6482
6561
|
name: NameFieldValue.optional(),
|
|
6483
|
-
mobile:
|
|
6484
|
-
email:
|
|
6485
|
-
bcc:
|
|
6562
|
+
mobile: z39.string().optional(),
|
|
6563
|
+
email: z39.string().optional(),
|
|
6564
|
+
bcc: z39.array(z39.string()).optional()
|
|
6486
6565
|
});
|
|
6487
|
-
var BasePayload =
|
|
6566
|
+
var BasePayload = z39.object({
|
|
6488
6567
|
recipient: Recipient
|
|
6489
6568
|
});
|
|
6490
6569
|
var TriggerPayload = {
|
|
6491
6570
|
[TriggerEvent.USER_CREATED]: BasePayload.extend({
|
|
6492
|
-
username:
|
|
6493
|
-
temporaryPassword:
|
|
6571
|
+
username: z39.string(),
|
|
6572
|
+
temporaryPassword: z39.string()
|
|
6494
6573
|
}),
|
|
6495
6574
|
[TriggerEvent.USER_UPDATED]: BasePayload.extend({
|
|
6496
|
-
oldUsername:
|
|
6497
|
-
newUsername:
|
|
6575
|
+
oldUsername: z39.string(),
|
|
6576
|
+
newUsername: z39.string()
|
|
6498
6577
|
}),
|
|
6499
6578
|
[TriggerEvent.USERNAME_REMINDER]: BasePayload.extend({
|
|
6500
|
-
username:
|
|
6579
|
+
username: z39.string()
|
|
6501
6580
|
}),
|
|
6502
6581
|
[TriggerEvent.RESET_PASSWORD]: BasePayload.extend({
|
|
6503
|
-
code:
|
|
6582
|
+
code: z39.string()
|
|
6504
6583
|
}),
|
|
6505
6584
|
[TriggerEvent.RESET_PASSWORD_BY_ADMIN]: BasePayload.extend({
|
|
6506
|
-
temporaryPassword:
|
|
6507
|
-
admin:
|
|
6508
|
-
id:
|
|
6585
|
+
temporaryPassword: z39.string(),
|
|
6586
|
+
admin: z39.object({
|
|
6587
|
+
id: z39.string(),
|
|
6509
6588
|
name: NameFieldValue,
|
|
6510
|
-
role:
|
|
6589
|
+
role: z39.string()
|
|
6511
6590
|
})
|
|
6512
6591
|
}),
|
|
6513
6592
|
[TriggerEvent.TWO_FA]: BasePayload.extend({
|
|
6514
|
-
code:
|
|
6593
|
+
code: z39.string()
|
|
6515
6594
|
}),
|
|
6516
6595
|
[TriggerEvent.ALL_USER_NOTIFICATION]: BasePayload.extend({
|
|
6517
|
-
subject:
|
|
6518
|
-
body:
|
|
6596
|
+
subject: z39.string(),
|
|
6597
|
+
body: z39.string()
|
|
6519
6598
|
}),
|
|
6520
6599
|
[TriggerEvent.CHANGE_PHONE_NUMBER]: BasePayload.extend({
|
|
6521
|
-
code:
|
|
6600
|
+
code: z39.string()
|
|
6522
6601
|
}),
|
|
6523
6602
|
[TriggerEvent.CHANGE_EMAIL_ADDRESS]: BasePayload.extend({
|
|
6524
|
-
code:
|
|
6603
|
+
code: z39.string()
|
|
6525
6604
|
})
|
|
6526
6605
|
};
|
|
6527
6606
|
async function triggerUserEventNotification({
|
|
@@ -6543,3 +6622,6 @@ function parseUserEventTrigger(event2, body) {
|
|
|
6543
6622
|
const schema = TriggerPayload[event2];
|
|
6544
6623
|
return schema.parse(body);
|
|
6545
6624
|
}
|
|
6625
|
+
|
|
6626
|
+
// src/notification/index.ts
|
|
6627
|
+
z40.globalRegistry.clear();
|