@opencrvs/toolkit 1.9.7-rc.4fcf515 → 1.9.7-rc.529518b
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 +2459 -29537
- package/dist/commons/conditionals/conditionals.d.ts +1 -10
- package/dist/commons/conditionals/validate.d.ts +15 -13
- package/dist/commons/events/ActionConfig.d.ts +1552 -25043
- package/dist/commons/events/ActionDocument.d.ts +1856 -803
- package/dist/commons/events/ActionInput.d.ts +1073 -277
- package/dist/commons/events/ActionType.d.ts +9 -86
- package/dist/commons/events/AdvancedSearchConfig.d.ts +1238 -228
- package/dist/commons/events/CompositeFieldValue.d.ts +190 -29
- package/dist/commons/events/Conditional.d.ts +38 -26
- package/dist/commons/events/Constants.d.ts +1 -1
- package/dist/commons/events/CountryConfigQueryInput.d.ts +4223 -1195
- package/dist/commons/events/CreatedAtLocation.d.ts +2 -0
- package/dist/commons/events/DeduplicationConfig.d.ts +171 -15
- package/dist/commons/events/Draft.d.ts +105 -70
- package/dist/commons/events/DynamicFieldValue.d.ts +91 -7
- package/dist/commons/events/EventConfig.d.ts +2120 -19988
- package/dist/commons/events/EventConfigInput.d.ts +1 -1
- package/dist/commons/events/EventDocument.d.ts +1332 -320
- package/dist/commons/events/EventIndex.d.ts +980 -193
- package/dist/commons/events/EventInput.d.ts +8 -3
- package/dist/commons/events/EventMetadata.d.ts +347 -106
- package/dist/commons/events/FieldConfig.d.ts +12589 -4538
- package/dist/commons/events/FieldType.d.ts +4 -20
- package/dist/commons/events/FieldTypeMapping.d.ts +897 -193
- package/dist/commons/events/FieldValue.d.ts +396 -87
- package/dist/commons/events/FormConfig.d.ts +721 -14022
- package/dist/commons/events/PageConfig.d.ts +319 -9368
- package/dist/commons/events/SummaryConfig.d.ts +161 -14
- package/dist/commons/events/TemplateConfig.d.ts +3 -2
- package/dist/commons/events/TranslationConfig.d.ts +2 -2
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +37 -74
- package/dist/commons/events/WorkqueueConfig.d.ts +7131 -1819
- package/dist/commons/events/deduplication.d.ts +3 -3
- package/dist/commons/events/defineConfig.d.ts +162 -26586
- package/dist/commons/events/index.d.ts +0 -1
- package/dist/commons/events/locations.d.ts +19 -26
- package/dist/commons/events/scopes.d.ts +4 -5
- package/dist/commons/events/state/availableActions.d.ts +2 -0
- package/dist/commons/events/state/flags.d.ts +3 -21
- package/dist/commons/events/state/index.d.ts +19 -22
- package/dist/commons/events/state/utils.d.ts +112 -130
- package/dist/commons/events/test.utils.d.ts +8 -31
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +381 -53194
- package/dist/commons/notification/UserNotifications.d.ts +636 -55
- package/dist/conditionals/index.d.ts.map +1 -1
- package/dist/conditionals/index.js +11 -45
- package/dist/events/deduplication.d.ts +3 -3
- package/dist/events/index.js +1772 -2049
- package/dist/notification/index.d.ts.map +1 -1
- package/dist/notification/index.js +1525 -1598
- package/dist/scopes/index.d.ts +132 -167
- package/dist/scopes/index.d.ts.map +1 -1
- package/dist/scopes/index.js +94 -133
- package/package.json +5 -5
- package/dist/commons/events/Flag.d.ts +0 -67
- package/dist/commons/events/eventConfigValidation.d.ts +0 -8
|
@@ -38,7 +38,6 @@ __export(notification_exports, {
|
|
|
38
38
|
triggerUserEventNotification: () => triggerUserEventNotification
|
|
39
39
|
});
|
|
40
40
|
module.exports = __toCommonJS(notification_exports);
|
|
41
|
-
var z41 = __toESM(require("zod/v4"));
|
|
42
41
|
|
|
43
42
|
// ../commons/src/url.ts
|
|
44
43
|
function joinUrl(base, path) {
|
|
@@ -48,28 +47,30 @@ function joinUrl(base, path) {
|
|
|
48
47
|
|
|
49
48
|
// ../commons/src/events/Constants.ts
|
|
50
49
|
var TENNIS_CLUB_MEMBERSHIP = "tennis-club-membership";
|
|
51
|
-
var
|
|
50
|
+
var BIRTH_EVENT = "birth";
|
|
52
51
|
|
|
53
52
|
// ../commons/src/events/ActionConfig.ts
|
|
54
|
-
var
|
|
53
|
+
var import_zod20 = require("zod");
|
|
55
54
|
|
|
56
55
|
// ../commons/src/events/TranslationConfig.ts
|
|
57
|
-
var
|
|
58
|
-
var
|
|
59
|
-
|
|
56
|
+
var import_zod = require("zod");
|
|
57
|
+
var import_zod_openapi = require("zod-openapi");
|
|
58
|
+
(0, import_zod_openapi.extendZodWithOpenApi)(import_zod.z);
|
|
59
|
+
var TranslationConfig = import_zod.z.object({
|
|
60
|
+
id: import_zod.z.string().describe(
|
|
60
61
|
"The identifier of the translation referred in translation CSV files"
|
|
61
62
|
),
|
|
62
|
-
defaultMessage: z.string().describe("Default translation message"),
|
|
63
|
-
description: z.string().describe(
|
|
63
|
+
defaultMessage: import_zod.z.string().describe("Default translation message"),
|
|
64
|
+
description: import_zod.z.string().describe(
|
|
64
65
|
"Describe the translation for a translator to be able to identify it."
|
|
65
66
|
)
|
|
66
|
-
}).
|
|
67
|
+
}).openapi({
|
|
67
68
|
description: "Translation configuration",
|
|
68
|
-
|
|
69
|
+
ref: "TranslationConfig"
|
|
69
70
|
});
|
|
70
71
|
|
|
71
72
|
// ../commons/src/events/ActionType.ts
|
|
72
|
-
var
|
|
73
|
+
var import_zod2 = require("zod");
|
|
73
74
|
var ActionType = {
|
|
74
75
|
// Pre-declaration actions
|
|
75
76
|
DELETE: "DELETE",
|
|
@@ -77,8 +78,8 @@ var ActionType = {
|
|
|
77
78
|
NOTIFY: "NOTIFY",
|
|
78
79
|
// Declaration actions
|
|
79
80
|
DECLARE: "DECLARE",
|
|
81
|
+
VALIDATE: "VALIDATE",
|
|
80
82
|
REGISTER: "REGISTER",
|
|
81
|
-
EDIT: "EDIT",
|
|
82
83
|
// Declaration system actions. Non-configurable.
|
|
83
84
|
DUPLICATE_DETECTED: "DUPLICATE_DETECTED",
|
|
84
85
|
REJECT: "REJECT",
|
|
@@ -94,29 +95,26 @@ var ActionType = {
|
|
|
94
95
|
// General actions
|
|
95
96
|
READ: "READ",
|
|
96
97
|
ASSIGN: "ASSIGN",
|
|
97
|
-
UNASSIGN: "UNASSIGN"
|
|
98
|
-
// Custom action
|
|
99
|
-
CUSTOM: "CUSTOM"
|
|
98
|
+
UNASSIGN: "UNASSIGN"
|
|
100
99
|
};
|
|
101
100
|
var ConfirmableActions = [
|
|
102
101
|
ActionType.NOTIFY,
|
|
103
102
|
ActionType.DECLARE,
|
|
104
|
-
ActionType.
|
|
103
|
+
ActionType.VALIDATE,
|
|
105
104
|
ActionType.REGISTER,
|
|
106
105
|
ActionType.REJECT,
|
|
107
106
|
ActionType.ARCHIVE,
|
|
108
107
|
ActionType.PRINT_CERTIFICATE,
|
|
109
108
|
ActionType.REQUEST_CORRECTION,
|
|
110
109
|
ActionType.APPROVE_CORRECTION,
|
|
111
|
-
ActionType.REJECT_CORRECTION
|
|
112
|
-
ActionType.CUSTOM
|
|
110
|
+
ActionType.REJECT_CORRECTION
|
|
113
111
|
];
|
|
114
|
-
var ActionTypes =
|
|
112
|
+
var ActionTypes = import_zod2.z.enum([
|
|
115
113
|
"DELETE",
|
|
116
114
|
"CREATE",
|
|
117
115
|
"NOTIFY",
|
|
118
116
|
"DECLARE",
|
|
119
|
-
"
|
|
117
|
+
"VALIDATE",
|
|
120
118
|
"REGISTER",
|
|
121
119
|
"DUPLICATE_DETECTED",
|
|
122
120
|
"REJECT",
|
|
@@ -129,15 +127,14 @@ var ActionTypes = z2.enum([
|
|
|
129
127
|
"APPROVE_CORRECTION",
|
|
130
128
|
"READ",
|
|
131
129
|
"ASSIGN",
|
|
132
|
-
"UNASSIGN"
|
|
133
|
-
"CUSTOM"
|
|
130
|
+
"UNASSIGN"
|
|
134
131
|
]);
|
|
135
132
|
var ClientSpecificAction = {
|
|
136
133
|
REVIEW_CORRECTION_REQUEST: "REVIEW_CORRECTION_REQUEST"
|
|
137
134
|
};
|
|
138
135
|
var declarationActionValues = [
|
|
139
136
|
ActionTypes.enum.DECLARE,
|
|
140
|
-
ActionTypes.enum.
|
|
137
|
+
ActionTypes.enum.VALIDATE,
|
|
141
138
|
ActionTypes.enum.REGISTER,
|
|
142
139
|
ActionTypes.enum.NOTIFY,
|
|
143
140
|
ActionTypes.enum.DUPLICATE_DETECTED
|
|
@@ -158,14 +155,13 @@ var writeActions = ActionTypes.exclude([
|
|
|
158
155
|
ActionType.UNASSIGN
|
|
159
156
|
]);
|
|
160
157
|
var workqueueActions = ActionTypes.exclude([
|
|
161
|
-
ActionType.READ,
|
|
162
158
|
ActionType.CREATE,
|
|
163
159
|
ActionType.NOTIFY,
|
|
164
160
|
ActionType.DUPLICATE_DETECTED,
|
|
161
|
+
ActionType.REJECT,
|
|
165
162
|
ActionType.MARK_AS_NOT_DUPLICATE,
|
|
166
163
|
ActionType.REJECT_CORRECTION,
|
|
167
|
-
ActionType.APPROVE_CORRECTION
|
|
168
|
-
ActionType.CUSTOM
|
|
164
|
+
ActionType.APPROVE_CORRECTION
|
|
169
165
|
]);
|
|
170
166
|
var META_ACTIONS = [
|
|
171
167
|
ActionType.ASSIGN,
|
|
@@ -174,57 +170,59 @@ var META_ACTIONS = [
|
|
|
174
170
|
];
|
|
175
171
|
|
|
176
172
|
// ../commons/src/events/FieldConfig.ts
|
|
177
|
-
var
|
|
173
|
+
var import_zod16 = require("zod");
|
|
178
174
|
|
|
179
175
|
// ../commons/src/events/Conditional.ts
|
|
180
|
-
var
|
|
181
|
-
var
|
|
176
|
+
var import_zod3 = require("zod");
|
|
177
|
+
var import_zod_openapi2 = require("zod-openapi");
|
|
178
|
+
(0, import_zod_openapi2.extendZodWithOpenApi)(import_zod3.z);
|
|
179
|
+
var Conditional = import_zod3.z.custom((val) => typeof val === "object" && val !== null).openapi({
|
|
182
180
|
description: "JSON schema conditional configuration",
|
|
183
|
-
|
|
181
|
+
ref: "Conditional"
|
|
184
182
|
});
|
|
185
183
|
var ConditionalType = {
|
|
186
184
|
SHOW: "SHOW",
|
|
187
185
|
ENABLE: "ENABLE",
|
|
188
186
|
DISPLAY_ON_REVIEW: "DISPLAY_ON_REVIEW"
|
|
189
187
|
};
|
|
190
|
-
var ShowConditional =
|
|
191
|
-
type:
|
|
188
|
+
var ShowConditional = import_zod3.z.object({
|
|
189
|
+
type: import_zod3.z.literal(ConditionalType.SHOW),
|
|
192
190
|
conditional: Conditional
|
|
193
191
|
}).describe(
|
|
194
192
|
"If 'SHOW' conditional is defined, the component is shown to the user only if the condition is met"
|
|
195
193
|
);
|
|
196
|
-
var EnableConditional =
|
|
197
|
-
type:
|
|
194
|
+
var EnableConditional = import_zod3.z.object({
|
|
195
|
+
type: import_zod3.z.literal(ConditionalType.ENABLE),
|
|
198
196
|
conditional: Conditional
|
|
199
197
|
}).describe(
|
|
200
198
|
"If 'ENABLE' conditional is defined, the component is enabled only if the condition is met"
|
|
201
199
|
);
|
|
202
|
-
var ActionConditional =
|
|
200
|
+
var ActionConditional = import_zod3.z.discriminatedUnion("type", [
|
|
203
201
|
// Action can be shown / hidden
|
|
204
202
|
ShowConditional,
|
|
205
203
|
// Action can be shown to the user in the list but as disabled
|
|
206
204
|
EnableConditional
|
|
207
205
|
]);
|
|
208
|
-
var DisplayOnReviewConditional =
|
|
209
|
-
type:
|
|
206
|
+
var DisplayOnReviewConditional = import_zod3.z.object({
|
|
207
|
+
type: import_zod3.z.literal(ConditionalType.DISPLAY_ON_REVIEW),
|
|
210
208
|
conditional: Conditional
|
|
211
209
|
}).describe(
|
|
212
210
|
"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."
|
|
213
211
|
);
|
|
214
|
-
var FieldConditional =
|
|
212
|
+
var FieldConditional = import_zod3.z.discriminatedUnion("type", [
|
|
215
213
|
// Field input can be shown / hidden
|
|
216
214
|
ShowConditional,
|
|
217
215
|
// Field input can be shown to the user but as disabled
|
|
218
216
|
EnableConditional,
|
|
219
217
|
// Field output can be shown / hidden on the review page
|
|
220
218
|
DisplayOnReviewConditional
|
|
221
|
-
]).
|
|
219
|
+
]).openapi({
|
|
222
220
|
description: "Field conditional configuration",
|
|
223
|
-
|
|
221
|
+
ref: "FieldConditional"
|
|
224
222
|
});
|
|
225
223
|
|
|
226
224
|
// ../commons/src/events/FieldType.ts
|
|
227
|
-
var
|
|
225
|
+
var import_zod4 = require("zod");
|
|
228
226
|
var FieldType = {
|
|
229
227
|
NAME: "NAME",
|
|
230
228
|
PHONE: "PHONE",
|
|
@@ -267,21 +265,9 @@ var FieldType = {
|
|
|
267
265
|
QUERY_PARAM_READER: "QUERY_PARAM_READER",
|
|
268
266
|
QR_READER: "QR_READER",
|
|
269
267
|
ID_READER: "ID_READER",
|
|
270
|
-
LOADER: "LOADER"
|
|
271
|
-
ALPHA_HIDDEN: "ALPHA_HIDDEN",
|
|
272
|
-
/**
|
|
273
|
-
* @internal
|
|
274
|
-
* @experimental
|
|
275
|
-
*
|
|
276
|
-
* Internal API used by the OpenCRVS core team for experimentation.
|
|
277
|
-
*
|
|
278
|
-
* This component is not part of the public, stable API.
|
|
279
|
-
* Its shape, behavior, or existence may change at any time or be removed
|
|
280
|
-
* entirely without notice.
|
|
281
|
-
*/
|
|
282
|
-
_EXPERIMENTAL_CUSTOM: "CUSTOM"
|
|
268
|
+
LOADER: "LOADER"
|
|
283
269
|
};
|
|
284
|
-
var FileFieldType =
|
|
270
|
+
var FileFieldType = import_zod4.z.enum([
|
|
285
271
|
FieldType.FILE,
|
|
286
272
|
FieldType.FILE_WITH_OPTIONS,
|
|
287
273
|
FieldType.SIGNATURE
|
|
@@ -305,155 +291,154 @@ var FieldTypesToHideInReview = [
|
|
|
305
291
|
FieldType.LOADER,
|
|
306
292
|
FieldType.HTTP,
|
|
307
293
|
FieldType.QUERY_PARAM_READER,
|
|
308
|
-
FieldType.DATA
|
|
309
|
-
FieldType.ALPHA_HIDDEN
|
|
294
|
+
FieldType.DATA
|
|
310
295
|
];
|
|
311
296
|
|
|
312
297
|
// ../commons/src/events/FieldValue.ts
|
|
313
|
-
var
|
|
298
|
+
var import_zod7 = require("zod");
|
|
314
299
|
|
|
315
300
|
// ../commons/src/documents.ts
|
|
316
|
-
var
|
|
317
|
-
var
|
|
301
|
+
var import_zod5 = require("zod");
|
|
302
|
+
var import_zod_openapi3 = require("zod-openapi");
|
|
303
|
+
(0, import_zod_openapi3.extendZodWithOpenApi)(import_zod5.z);
|
|
304
|
+
var FullDocumentUrl = import_zod5.z.string().brand("FullDocumentUrl").describe(
|
|
318
305
|
"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"
|
|
319
306
|
);
|
|
320
|
-
var FullDocumentPath =
|
|
307
|
+
var FullDocumentPath = import_zod5.z.string().transform((val) => val.startsWith("/") ? val : `/${val}`).openapi({ effectType: "input", type: "string" }).describe(
|
|
321
308
|
"A full absolute path with bucket name, starting from the root of the S3 server, /bucket-name/document-id.jpg"
|
|
322
309
|
);
|
|
323
|
-
var DocumentPath =
|
|
310
|
+
var DocumentPath = import_zod5.z.string().brand("DocumentPath").describe(
|
|
324
311
|
"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"
|
|
325
312
|
);
|
|
326
313
|
|
|
327
314
|
// ../commons/src/events/CompositeFieldValue.ts
|
|
328
|
-
var
|
|
315
|
+
var import_zod6 = require("zod");
|
|
329
316
|
var AddressType = {
|
|
330
317
|
DOMESTIC: "DOMESTIC",
|
|
331
318
|
INTERNATIONAL: "INTERNATIONAL"
|
|
332
319
|
};
|
|
333
|
-
var FileFieldValue =
|
|
320
|
+
var FileFieldValue = import_zod6.z.object({
|
|
334
321
|
path: FullDocumentPath,
|
|
335
|
-
originalFilename:
|
|
336
|
-
type:
|
|
337
|
-
});
|
|
338
|
-
var NameFieldValue =
|
|
339
|
-
firstname:
|
|
340
|
-
surname:
|
|
341
|
-
middlename:
|
|
342
|
-
});
|
|
343
|
-
var NameFieldUpdateValue =
|
|
344
|
-
firstname:
|
|
345
|
-
surname:
|
|
346
|
-
middlename:
|
|
347
|
-
}).or(
|
|
348
|
-
var StreetLevelDetailsValue =
|
|
349
|
-
var StreetLevelDetailsUpdateValue =
|
|
350
|
-
var BaseAddressFieldValue =
|
|
351
|
-
country:
|
|
322
|
+
originalFilename: import_zod6.z.string(),
|
|
323
|
+
type: import_zod6.z.string()
|
|
324
|
+
});
|
|
325
|
+
var NameFieldValue = import_zod6.z.object({
|
|
326
|
+
firstname: import_zod6.z.string(),
|
|
327
|
+
surname: import_zod6.z.string(),
|
|
328
|
+
middlename: import_zod6.z.string().optional()
|
|
329
|
+
});
|
|
330
|
+
var NameFieldUpdateValue = import_zod6.z.object({
|
|
331
|
+
firstname: import_zod6.z.string().nullish(),
|
|
332
|
+
surname: import_zod6.z.string().nullish(),
|
|
333
|
+
middlename: import_zod6.z.string().nullish()
|
|
334
|
+
}).or(import_zod6.z.null()).or(import_zod6.z.undefined());
|
|
335
|
+
var StreetLevelDetailsValue = import_zod6.z.record(import_zod6.z.string(), import_zod6.z.string()).optional();
|
|
336
|
+
var StreetLevelDetailsUpdateValue = import_zod6.z.record(import_zod6.z.string(), import_zod6.z.string().nullable()).nullish();
|
|
337
|
+
var BaseAddressFieldValue = import_zod6.z.object({
|
|
338
|
+
country: import_zod6.z.string(),
|
|
352
339
|
streetLevelDetails: StreetLevelDetailsValue
|
|
353
340
|
});
|
|
354
|
-
var BaseAddressFieldUpdateValue =
|
|
355
|
-
country:
|
|
341
|
+
var BaseAddressFieldUpdateValue = import_zod6.z.object({
|
|
342
|
+
country: import_zod6.z.string().nullish(),
|
|
356
343
|
streetLevelDetails: StreetLevelDetailsUpdateValue
|
|
357
344
|
});
|
|
358
345
|
var DomesticAddressFieldValue = BaseAddressFieldValue.extend({
|
|
359
|
-
addressType:
|
|
360
|
-
administrativeArea:
|
|
346
|
+
addressType: import_zod6.z.literal(AddressType.DOMESTIC),
|
|
347
|
+
administrativeArea: import_zod6.z.string().uuid()
|
|
361
348
|
});
|
|
362
349
|
var InternationalAddressFieldValue = BaseAddressFieldValue.extend({
|
|
363
|
-
addressType:
|
|
350
|
+
addressType: import_zod6.z.literal(AddressType.INTERNATIONAL)
|
|
364
351
|
});
|
|
365
|
-
var AddressFieldValue =
|
|
352
|
+
var AddressFieldValue = import_zod6.z.discriminatedUnion("addressType", [
|
|
366
353
|
DomesticAddressFieldValue,
|
|
367
354
|
InternationalAddressFieldValue
|
|
368
355
|
]);
|
|
369
356
|
var DomesticAddressUpdateFieldValue = BaseAddressFieldUpdateValue.extend({
|
|
370
|
-
addressType:
|
|
371
|
-
administrativeArea:
|
|
357
|
+
addressType: import_zod6.z.literal(AddressType.DOMESTIC),
|
|
358
|
+
administrativeArea: import_zod6.z.string().uuid().nullish()
|
|
372
359
|
/* Leaf level admin structure */
|
|
373
360
|
});
|
|
374
361
|
var InternationalAddressUpdateFieldValue = BaseAddressFieldUpdateValue.extend(
|
|
375
362
|
{
|
|
376
|
-
addressType:
|
|
363
|
+
addressType: import_zod6.z.literal(AddressType.INTERNATIONAL)
|
|
377
364
|
}
|
|
378
365
|
);
|
|
379
|
-
var AddressFieldUpdateValue =
|
|
366
|
+
var AddressFieldUpdateValue = import_zod6.z.discriminatedUnion("addressType", [
|
|
380
367
|
DomesticAddressUpdateFieldValue,
|
|
381
368
|
InternationalAddressUpdateFieldValue
|
|
382
369
|
]).nullish();
|
|
383
|
-
var FileFieldValueWithOption =
|
|
370
|
+
var FileFieldValueWithOption = import_zod6.z.object({
|
|
384
371
|
path: FullDocumentPath,
|
|
385
|
-
originalFilename:
|
|
386
|
-
type:
|
|
387
|
-
option:
|
|
388
|
-
});
|
|
389
|
-
var FileFieldWithOptionValue =
|
|
390
|
-
var HttpFieldValue =
|
|
391
|
-
loading:
|
|
392
|
-
error:
|
|
393
|
-
data:
|
|
394
|
-
});
|
|
395
|
-
var HttpFieldUpdateValue =
|
|
396
|
-
loading:
|
|
397
|
-
error:
|
|
398
|
-
data:
|
|
399
|
-
}).or(
|
|
400
|
-
var QueryParamReaderFieldValue =
|
|
401
|
-
data:
|
|
372
|
+
originalFilename: import_zod6.z.string(),
|
|
373
|
+
type: import_zod6.z.string(),
|
|
374
|
+
option: import_zod6.z.string()
|
|
375
|
+
});
|
|
376
|
+
var FileFieldWithOptionValue = import_zod6.z.array(FileFieldValueWithOption);
|
|
377
|
+
var HttpFieldValue = import_zod6.z.object({
|
|
378
|
+
loading: import_zod6.z.boolean(),
|
|
379
|
+
error: import_zod6.z.object({ statusCode: import_zod6.z.number(), message: import_zod6.z.string() }).nullish(),
|
|
380
|
+
data: import_zod6.z.any()
|
|
381
|
+
});
|
|
382
|
+
var HttpFieldUpdateValue = import_zod6.z.object({
|
|
383
|
+
loading: import_zod6.z.boolean().nullish(),
|
|
384
|
+
error: import_zod6.z.object({ statusCode: import_zod6.z.number(), message: import_zod6.z.string() }).nullish(),
|
|
385
|
+
data: import_zod6.z.any().nullish()
|
|
386
|
+
}).or(import_zod6.z.null()).or(import_zod6.z.undefined());
|
|
387
|
+
var QueryParamReaderFieldValue = import_zod6.z.object({
|
|
388
|
+
data: import_zod6.z.record(import_zod6.z.string(), import_zod6.z.string())
|
|
402
389
|
}).nullish();
|
|
403
|
-
var QueryParamReaderFieldUpdateValue =
|
|
404
|
-
data:
|
|
390
|
+
var QueryParamReaderFieldUpdateValue = import_zod6.z.object({
|
|
391
|
+
data: import_zod6.z.record(import_zod6.z.string(), import_zod6.z.string())
|
|
405
392
|
});
|
|
406
|
-
var ReadDataValue =
|
|
407
|
-
data:
|
|
393
|
+
var ReadDataValue = import_zod6.z.object({
|
|
394
|
+
data: import_zod6.z.any()
|
|
408
395
|
});
|
|
409
396
|
var QrReaderFieldValue = ReadDataValue;
|
|
410
397
|
var IdReaderFieldValue = ReadDataValue;
|
|
411
|
-
var NumberWithUnitFieldValue =
|
|
412
|
-
numericValue:
|
|
413
|
-
unit:
|
|
398
|
+
var NumberWithUnitFieldValue = import_zod6.z.object({
|
|
399
|
+
numericValue: import_zod6.z.number(),
|
|
400
|
+
unit: import_zod6.z.string()
|
|
414
401
|
});
|
|
415
|
-
var NumberWithUnitFieldUpdateValue =
|
|
416
|
-
numericValue:
|
|
417
|
-
unit:
|
|
402
|
+
var NumberWithUnitFieldUpdateValue = import_zod6.z.object({
|
|
403
|
+
numericValue: import_zod6.z.number().optional(),
|
|
404
|
+
unit: import_zod6.z.string().optional()
|
|
418
405
|
});
|
|
419
|
-
var CustomFieldValue = z6.unknown().brand("CustomFieldValue");
|
|
420
406
|
|
|
421
407
|
// ../commons/src/events/FieldValue.ts
|
|
422
|
-
var TextValue =
|
|
423
|
-
var HiddenFieldValue = z7.string();
|
|
408
|
+
var TextValue = import_zod7.z.string();
|
|
424
409
|
var NonEmptyTextValue = TextValue.min(1);
|
|
425
|
-
var DateValue =
|
|
426
|
-
var AgeValue =
|
|
427
|
-
age:
|
|
428
|
-
asOfDateRef:
|
|
410
|
+
var DateValue = import_zod7.z.string().date().describe("Date in the format YYYY-MM-DD");
|
|
411
|
+
var AgeValue = import_zod7.z.object({
|
|
412
|
+
age: import_zod7.z.number(),
|
|
413
|
+
asOfDateRef: import_zod7.z.string()
|
|
429
414
|
});
|
|
430
415
|
var AgeUpdateValue = AgeValue.optional().nullable();
|
|
431
|
-
var TimeValue =
|
|
432
|
-
var DatetimeValue =
|
|
433
|
-
var SelectDateRangeValue =
|
|
416
|
+
var TimeValue = import_zod7.z.string().regex(/^([01][0-9]|2[0-3]):[0-5][0-9]$/);
|
|
417
|
+
var DatetimeValue = import_zod7.z.string().datetime();
|
|
418
|
+
var SelectDateRangeValue = import_zod7.z.enum([
|
|
434
419
|
"last7Days",
|
|
435
420
|
"last30Days",
|
|
436
421
|
"last90Days",
|
|
437
422
|
"last365Days"
|
|
438
423
|
]);
|
|
439
|
-
var DateRangeFieldValue =
|
|
424
|
+
var DateRangeFieldValue = import_zod7.z.object({
|
|
440
425
|
start: DateValue,
|
|
441
426
|
end: DateValue
|
|
442
427
|
}).or(DateValue).describe(
|
|
443
428
|
"Date range with start and end dates in the format YYYY-MM-DD. Inclusive start, exclusive end."
|
|
444
429
|
);
|
|
445
|
-
var EmailValue =
|
|
446
|
-
var CheckboxFieldValue =
|
|
447
|
-
var NumberFieldValue =
|
|
448
|
-
var SignatureFieldValue =
|
|
449
|
-
var ButtonFieldValue =
|
|
450
|
-
var VerificationStatusValue =
|
|
430
|
+
var EmailValue = import_zod7.z.string().email();
|
|
431
|
+
var CheckboxFieldValue = import_zod7.z.boolean();
|
|
432
|
+
var NumberFieldValue = import_zod7.z.number();
|
|
433
|
+
var SignatureFieldValue = import_zod7.z.string();
|
|
434
|
+
var ButtonFieldValue = import_zod7.z.number();
|
|
435
|
+
var VerificationStatusValue = import_zod7.z.enum([
|
|
451
436
|
"verified",
|
|
452
437
|
"authenticated",
|
|
453
438
|
"failed",
|
|
454
439
|
"pending"
|
|
455
440
|
]);
|
|
456
|
-
var FieldValuesWithoutDataField =
|
|
441
|
+
var FieldValuesWithoutDataField = import_zod7.z.union([
|
|
457
442
|
AddressFieldValue,
|
|
458
443
|
TextValue,
|
|
459
444
|
DateValue,
|
|
@@ -474,13 +459,12 @@ var FieldValuesWithoutDataField = z7.union([
|
|
|
474
459
|
QrReaderFieldValue,
|
|
475
460
|
IdReaderFieldValue,
|
|
476
461
|
NumberWithUnitFieldValue,
|
|
477
|
-
NumberWithUnitFieldUpdateValue
|
|
478
|
-
CustomFieldValue
|
|
462
|
+
NumberWithUnitFieldUpdateValue
|
|
479
463
|
]);
|
|
480
|
-
var DataFieldValue =
|
|
481
|
-
data:
|
|
464
|
+
var DataFieldValue = import_zod7.z.object({
|
|
465
|
+
data: import_zod7.z.record(import_zod7.z.string(), FieldValuesWithoutDataField)
|
|
482
466
|
}).nullish();
|
|
483
|
-
var FieldValue =
|
|
467
|
+
var FieldValue = import_zod7.z.union([
|
|
484
468
|
FieldValuesWithoutDataField,
|
|
485
469
|
DataFieldValue
|
|
486
470
|
]);
|
|
@@ -501,38 +485,22 @@ var PRIORITY_ORDER = [
|
|
|
501
485
|
"DataFieldValue"
|
|
502
486
|
];
|
|
503
487
|
function schemaPriority(schema) {
|
|
504
|
-
const name = schema.description;
|
|
505
|
-
if (!name) {
|
|
506
|
-
return 9999;
|
|
507
|
-
}
|
|
488
|
+
const name = schema._def?.description;
|
|
508
489
|
const idx = PRIORITY_ORDER.indexOf(name);
|
|
509
490
|
return idx === -1 ? 9999 : idx;
|
|
510
491
|
}
|
|
511
492
|
function safeUnion(schemas) {
|
|
512
|
-
return
|
|
493
|
+
return import_zod7.z.custom((val) => {
|
|
513
494
|
const successful = schemas.filter((s) => s.safeParse(val).success);
|
|
514
495
|
if (successful.length === 1) {
|
|
515
|
-
return;
|
|
496
|
+
return true;
|
|
516
497
|
}
|
|
517
498
|
if (successful.length === 0) {
|
|
518
|
-
|
|
519
|
-
code: "invalid_type",
|
|
520
|
-
expected: "custom",
|
|
521
|
-
message: "Value does not match any schema"
|
|
522
|
-
});
|
|
523
|
-
return;
|
|
499
|
+
return false;
|
|
524
500
|
}
|
|
525
501
|
successful.sort((a, b) => schemaPriority(a) - schemaPriority(b));
|
|
526
502
|
const best = successful[0];
|
|
527
|
-
|
|
528
|
-
ctx.addIssue({
|
|
529
|
-
expected: "custom",
|
|
530
|
-
code: "invalid_type",
|
|
531
|
-
message: "Value did not match the best schema"
|
|
532
|
-
});
|
|
533
|
-
}
|
|
534
|
-
}).meta({
|
|
535
|
-
description: "Value that matches exactly one of the possible schema types (TextValue, DateValue, DateRangeFieldValue). The best matching schema is chosen by priority."
|
|
503
|
+
return best.safeParse(val).success;
|
|
536
504
|
});
|
|
537
505
|
}
|
|
538
506
|
var FieldUpdateValue = safeUnion([
|
|
@@ -551,23 +519,24 @@ var FieldUpdateValue = safeUnion([
|
|
|
551
519
|
DataFieldValue.describe("DataFieldValue"),
|
|
552
520
|
NameFieldUpdateValue.describe("NameFieldUpdateValue"),
|
|
553
521
|
HttpFieldUpdateValue.describe("HttpFieldUpdateValue"),
|
|
554
|
-
QueryParamReaderFieldUpdateValue.describe("QueryParamReaderFieldUpdateValue")
|
|
555
|
-
CustomFieldValue.describe("CustomFieldValue"),
|
|
556
|
-
HiddenFieldValue.describe("HiddenFieldValue")
|
|
522
|
+
QueryParamReaderFieldUpdateValue.describe("QueryParamReaderFieldUpdateValue")
|
|
557
523
|
]);
|
|
558
524
|
|
|
525
|
+
// ../commons/src/events/FieldConfig.ts
|
|
526
|
+
var import_zod_openapi6 = require("zod-openapi");
|
|
527
|
+
|
|
559
528
|
// ../commons/src/uuid.ts
|
|
560
529
|
var import_uuid = require("uuid");
|
|
561
|
-
var
|
|
562
|
-
var UUID =
|
|
530
|
+
var import_zod8 = require("zod");
|
|
531
|
+
var UUID = import_zod8.z.string().uuid().brand("UUID");
|
|
563
532
|
function getUUID() {
|
|
564
533
|
return (0, import_uuid.v4)();
|
|
565
534
|
}
|
|
566
535
|
|
|
567
536
|
// ../commons/src/events/serializers/user/serializer.ts
|
|
568
|
-
var
|
|
569
|
-
var SerializedUserField =
|
|
570
|
-
$userField:
|
|
537
|
+
var import_zod9 = require("zod");
|
|
538
|
+
var SerializedUserField = import_zod9.z.object({
|
|
539
|
+
$userField: import_zod9.z.enum([
|
|
571
540
|
"id",
|
|
572
541
|
"name",
|
|
573
542
|
"role",
|
|
@@ -576,12 +545,11 @@ var SerializedUserField = z9.object({
|
|
|
576
545
|
"firstname",
|
|
577
546
|
"middlename",
|
|
578
547
|
"surname",
|
|
579
|
-
"
|
|
580
|
-
"
|
|
581
|
-
"primaryOfficeId"
|
|
582
|
-
"administrativeAreaId"
|
|
548
|
+
"district",
|
|
549
|
+
"province",
|
|
550
|
+
"primaryOfficeId"
|
|
583
551
|
]),
|
|
584
|
-
$location:
|
|
552
|
+
$location: import_zod9.z.string().optional()
|
|
585
553
|
});
|
|
586
554
|
function userSerializer(userField) {
|
|
587
555
|
return {
|
|
@@ -601,20 +569,24 @@ function userSerializer(userField) {
|
|
|
601
569
|
}
|
|
602
570
|
|
|
603
571
|
// ../commons/src/events/EventIndex.ts
|
|
604
|
-
var
|
|
572
|
+
var import_zod14 = require("zod");
|
|
605
573
|
|
|
606
574
|
// ../commons/src/events/EventMetadata.ts
|
|
607
|
-
var
|
|
575
|
+
var import_zod13 = require("zod");
|
|
608
576
|
|
|
609
577
|
// ../commons/src/events/ActionDocument.ts
|
|
610
|
-
var
|
|
578
|
+
var import_zod12 = require("zod");
|
|
579
|
+
var import_zod_openapi4 = require("zod-openapi");
|
|
580
|
+
|
|
581
|
+
// ../commons/src/events/CreatedAtLocation.ts
|
|
582
|
+
var CreatedAtLocation = UUID.nullish();
|
|
611
583
|
|
|
612
584
|
// ../commons/src/authentication.ts
|
|
613
585
|
var import_jwt_decode = __toESM(require("jwt-decode"));
|
|
614
|
-
var
|
|
586
|
+
var import_zod11 = require("zod");
|
|
615
587
|
|
|
616
588
|
// ../commons/src/scopes.ts
|
|
617
|
-
var
|
|
589
|
+
var import_zod10 = require("zod");
|
|
618
590
|
var SCOPES = {
|
|
619
591
|
// TODO v1.8 legacy scopes
|
|
620
592
|
BYPASSRATELIMIT: "bypassratelimit",
|
|
@@ -693,91 +665,91 @@ var SCOPES = {
|
|
|
693
665
|
// data seeding
|
|
694
666
|
USER_DATA_SEEDING: "user.data-seeding"
|
|
695
667
|
};
|
|
696
|
-
var LegacyScopes =
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
668
|
+
var LegacyScopes = import_zod10.z.union([
|
|
669
|
+
import_zod10.z.literal(SCOPES.BYPASSRATELIMIT),
|
|
670
|
+
import_zod10.z.literal(SCOPES.REGISTER),
|
|
671
|
+
import_zod10.z.literal(SCOPES.DEMO),
|
|
672
|
+
import_zod10.z.literal(SCOPES.CONFIG)
|
|
701
673
|
]);
|
|
702
|
-
var IntegrationScopes =
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
674
|
+
var IntegrationScopes = import_zod10.z.union([
|
|
675
|
+
import_zod10.z.literal(SCOPES.WEBHOOK),
|
|
676
|
+
import_zod10.z.literal(SCOPES.NATIONALID),
|
|
677
|
+
import_zod10.z.literal(SCOPES.NOTIFICATION_API),
|
|
678
|
+
import_zod10.z.literal(SCOPES.RECORDSEARCH)
|
|
707
679
|
]);
|
|
708
|
-
var InternalOperationsScopes =
|
|
709
|
-
|
|
710
|
-
|
|
680
|
+
var InternalOperationsScopes = import_zod10.z.union([
|
|
681
|
+
import_zod10.z.literal(SCOPES.RECORD_REINDEX),
|
|
682
|
+
import_zod10.z.literal(SCOPES.RECORD_IMPORT)
|
|
711
683
|
]);
|
|
712
|
-
var DeclareScopes =
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
684
|
+
var DeclareScopes = import_zod10.z.union([
|
|
685
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARE_BIRTH),
|
|
686
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARE_BIRTH_MY_JURISDICTION),
|
|
687
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARE_DEATH),
|
|
688
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARE_DEATH_MY_JURISDICTION),
|
|
689
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARE_MARRIAGE),
|
|
690
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARE_MARRIAGE_MY_JURISDICTION),
|
|
691
|
+
import_zod10.z.literal(SCOPES.RECORD_SUBMIT_INCOMPLETE),
|
|
692
|
+
import_zod10.z.literal(SCOPES.RECORD_SUBMIT_FOR_REVIEW)
|
|
721
693
|
]);
|
|
722
|
-
var UnassignScope =
|
|
723
|
-
var ValidateScopes =
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
694
|
+
var UnassignScope = import_zod10.z.literal(SCOPES.RECORD_UNASSIGN_OTHERS);
|
|
695
|
+
var ValidateScopes = import_zod10.z.union([
|
|
696
|
+
import_zod10.z.literal(SCOPES.RECORD_SUBMIT_FOR_APPROVAL),
|
|
697
|
+
import_zod10.z.literal(SCOPES.RECORD_SUBMIT_FOR_UPDATES),
|
|
698
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARATION_EDIT),
|
|
699
|
+
import_zod10.z.literal(SCOPES.RECORD_REVIEW_DUPLICATES),
|
|
700
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARATION_ARCHIVE),
|
|
701
|
+
import_zod10.z.literal(SCOPES.RECORD_DECLARATION_REINSTATE)
|
|
730
702
|
]);
|
|
731
|
-
var RegisterScope =
|
|
732
|
-
var CorrectionScopes =
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
703
|
+
var RegisterScope = import_zod10.z.literal(SCOPES.RECORD_REGISTER);
|
|
704
|
+
var CorrectionScopes = import_zod10.z.union([
|
|
705
|
+
import_zod10.z.literal(SCOPES.RECORD_REGISTRATION_REQUEST_CORRECTION),
|
|
706
|
+
import_zod10.z.literal(SCOPES.RECORD_REGISTRATION_CORRECT),
|
|
707
|
+
import_zod10.z.literal(SCOPES.RECORD_CONFIRM_REGISTRATION),
|
|
708
|
+
import_zod10.z.literal(SCOPES.RECORD_REJECT_REGISTRATION)
|
|
737
709
|
]);
|
|
738
|
-
var SearchScopes =
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
710
|
+
var SearchScopes = import_zod10.z.union([
|
|
711
|
+
import_zod10.z.literal(SCOPES.SEARCH_BIRTH_MY_JURISDICTION),
|
|
712
|
+
import_zod10.z.literal(SCOPES.SEARCH_BIRTH),
|
|
713
|
+
import_zod10.z.literal(SCOPES.SEARCH_DEATH_MY_JURISDICTION),
|
|
714
|
+
import_zod10.z.literal(SCOPES.SEARCH_DEATH),
|
|
715
|
+
import_zod10.z.literal(SCOPES.SEARCH_MARRIAGE_MY_JURISDICTION),
|
|
716
|
+
import_zod10.z.literal(SCOPES.SEARCH_MARRIAGE)
|
|
745
717
|
]);
|
|
746
|
-
var AuditScopes =
|
|
747
|
-
var PerformanceScopes =
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
718
|
+
var AuditScopes = import_zod10.z.literal(SCOPES.RECORD_READ);
|
|
719
|
+
var PerformanceScopes = import_zod10.z.union([
|
|
720
|
+
import_zod10.z.literal(SCOPES.PERFORMANCE_READ),
|
|
721
|
+
import_zod10.z.literal(SCOPES.PERFORMANCE_READ_DASHBOARDS),
|
|
722
|
+
import_zod10.z.literal(SCOPES.PERFORMANCE_EXPORT_VITAL_STATISTICS)
|
|
751
723
|
]);
|
|
752
|
-
var OrganisationScopes =
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
724
|
+
var OrganisationScopes = import_zod10.z.union([
|
|
725
|
+
import_zod10.z.literal(SCOPES.ORGANISATION_READ_LOCATIONS),
|
|
726
|
+
import_zod10.z.literal(SCOPES.ORGANISATION_READ_LOCATIONS_MY_OFFICE),
|
|
727
|
+
import_zod10.z.literal(SCOPES.ORGANISATION_READ_LOCATIONS_MY_JURISDICTION)
|
|
756
728
|
]);
|
|
757
|
-
var UserScopes =
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
729
|
+
var UserScopes = import_zod10.z.union([
|
|
730
|
+
import_zod10.z.literal(SCOPES.USER_READ),
|
|
731
|
+
import_zod10.z.literal(SCOPES.USER_READ_MY_OFFICE),
|
|
732
|
+
import_zod10.z.literal(SCOPES.USER_READ_MY_JURISDICTION),
|
|
733
|
+
import_zod10.z.literal(SCOPES.USER_READ_ONLY_MY_AUDIT),
|
|
734
|
+
import_zod10.z.literal(SCOPES.USER_CREATE),
|
|
735
|
+
import_zod10.z.literal(SCOPES.USER_CREATE_MY_JURISDICTION),
|
|
736
|
+
import_zod10.z.literal(SCOPES.USER_UPDATE),
|
|
737
|
+
import_zod10.z.literal(SCOPES.USER_UPDATE_MY_JURISDICTION)
|
|
766
738
|
]);
|
|
767
|
-
var ConfigScope =
|
|
768
|
-
var DataSeedingScope =
|
|
769
|
-
var LiteralScopes =
|
|
739
|
+
var ConfigScope = import_zod10.z.literal(SCOPES.CONFIG_UPDATE_ALL);
|
|
740
|
+
var DataSeedingScope = import_zod10.z.literal(SCOPES.USER_DATA_SEEDING);
|
|
741
|
+
var LiteralScopes = import_zod10.z.union([
|
|
770
742
|
LegacyScopes,
|
|
771
743
|
IntegrationScopes,
|
|
772
744
|
UnassignScope,
|
|
773
745
|
DeclareScopes,
|
|
774
746
|
ValidateScopes,
|
|
775
747
|
RegisterScope,
|
|
776
|
-
|
|
748
|
+
import_zod10.z.literal(SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES),
|
|
777
749
|
CorrectionScopes,
|
|
778
750
|
SearchScopes,
|
|
779
751
|
AuditScopes,
|
|
780
|
-
|
|
752
|
+
import_zod10.z.literal(SCOPES.PROFILE_ELECTRONIC_SIGNATURE),
|
|
781
753
|
PerformanceScopes,
|
|
782
754
|
OrganisationScopes,
|
|
783
755
|
UserScopes,
|
|
@@ -786,38 +758,38 @@ var LiteralScopes = z10.union([
|
|
|
786
758
|
InternalOperationsScopes
|
|
787
759
|
]);
|
|
788
760
|
var rawConfigurableScopeRegex = /^([a-zA-Z][a-zA-Z0-9.-]*(?:\.[a-zA-Z0-9.-]+)*)\[((?:\w+=[\w.-]+(?:\|[\w.-]+)*)(?:,[\w]+=[\w.-]+(?:\|[\w.-]+)*)*)\]$/;
|
|
789
|
-
var rawConfigurableScope =
|
|
790
|
-
var CreateUserScope =
|
|
791
|
-
type:
|
|
792
|
-
options:
|
|
793
|
-
role:
|
|
761
|
+
var rawConfigurableScope = import_zod10.z.string().regex(rawConfigurableScopeRegex);
|
|
762
|
+
var CreateUserScope = import_zod10.z.object({
|
|
763
|
+
type: import_zod10.z.literal("user.create"),
|
|
764
|
+
options: import_zod10.z.object({
|
|
765
|
+
role: import_zod10.z.array(import_zod10.z.string())
|
|
794
766
|
})
|
|
795
767
|
});
|
|
796
|
-
var EditUserScope =
|
|
797
|
-
type:
|
|
798
|
-
options:
|
|
799
|
-
role:
|
|
768
|
+
var EditUserScope = import_zod10.z.object({
|
|
769
|
+
type: import_zod10.z.literal("user.edit"),
|
|
770
|
+
options: import_zod10.z.object({
|
|
771
|
+
role: import_zod10.z.array(import_zod10.z.string())
|
|
800
772
|
})
|
|
801
773
|
});
|
|
802
|
-
var WorkqueueScope =
|
|
803
|
-
type:
|
|
804
|
-
options:
|
|
805
|
-
id:
|
|
774
|
+
var WorkqueueScope = import_zod10.z.object({
|
|
775
|
+
type: import_zod10.z.literal("workqueue"),
|
|
776
|
+
options: import_zod10.z.object({
|
|
777
|
+
id: import_zod10.z.array(import_zod10.z.string())
|
|
806
778
|
})
|
|
807
779
|
});
|
|
808
|
-
var SearchScope =
|
|
809
|
-
type:
|
|
810
|
-
options:
|
|
811
|
-
event:
|
|
812
|
-
access:
|
|
780
|
+
var SearchScope = import_zod10.z.object({
|
|
781
|
+
type: import_zod10.z.literal("search"),
|
|
782
|
+
options: import_zod10.z.object({
|
|
783
|
+
event: import_zod10.z.array(import_zod10.z.string()).length(1),
|
|
784
|
+
access: import_zod10.z.array(import_zod10.z.enum(["my-jurisdiction", "all"])).length(1)
|
|
813
785
|
})
|
|
814
786
|
});
|
|
815
|
-
var RecordScopeType =
|
|
787
|
+
var RecordScopeType = import_zod10.z.enum([
|
|
816
788
|
"record.create",
|
|
817
789
|
"record.read",
|
|
818
790
|
"record.declare",
|
|
819
791
|
"record.notify",
|
|
820
|
-
"record.declared.
|
|
792
|
+
"record.declared.validate",
|
|
821
793
|
"record.declared.reject",
|
|
822
794
|
"record.declared.archive",
|
|
823
795
|
"record.declared.review-duplicates",
|
|
@@ -827,40 +799,27 @@ var RecordScopeType = z10.enum([
|
|
|
827
799
|
"record.registered.correct",
|
|
828
800
|
"record.unassign-others"
|
|
829
801
|
]);
|
|
830
|
-
var RecordScope =
|
|
802
|
+
var RecordScope = import_zod10.z.object({
|
|
831
803
|
type: RecordScopeType,
|
|
832
|
-
options:
|
|
833
|
-
event:
|
|
804
|
+
options: import_zod10.z.object({
|
|
805
|
+
event: import_zod10.z.array(import_zod10.z.string()).describe("Event type, e.g. birth, death")
|
|
834
806
|
})
|
|
835
807
|
}).describe(
|
|
836
808
|
"Scopes used to check user's permission to perform actions on a record."
|
|
837
809
|
);
|
|
838
|
-
var
|
|
839
|
-
type: z10.literal("record.custom-action"),
|
|
840
|
-
options: z10.object({
|
|
841
|
-
event: z10.array(z10.string()).describe("Allowed event type, e.g. birth, death"),
|
|
842
|
-
customActionType: z10.array(z10.string()).describe("Allowed custom action types")
|
|
843
|
-
})
|
|
844
|
-
});
|
|
845
|
-
var ConfigurableRawScopes = z10.discriminatedUnion("type", [
|
|
810
|
+
var ConfigurableRawScopes = import_zod10.z.discriminatedUnion("type", [
|
|
846
811
|
SearchScope,
|
|
847
812
|
CreateUserScope,
|
|
848
813
|
EditUserScope,
|
|
849
814
|
WorkqueueScope,
|
|
850
|
-
RecordScope
|
|
851
|
-
CustomActionScope
|
|
852
|
-
]);
|
|
853
|
-
var ConfigurableActionScopes = z10.discriminatedUnion("type", [
|
|
854
|
-
// @TODO - Record scope holds non-action scopes as well e.g., `record.read`
|
|
855
|
-
RecordScope,
|
|
856
|
-
CustomActionScope
|
|
815
|
+
RecordScope
|
|
857
816
|
]);
|
|
858
817
|
var scopes = Object.values(SCOPES);
|
|
859
|
-
var ActionScopes =
|
|
818
|
+
var ActionScopes = import_zod10.z.union([
|
|
860
819
|
DeclareScopes,
|
|
861
820
|
ValidateScopes,
|
|
862
821
|
RegisterScope,
|
|
863
|
-
|
|
822
|
+
import_zod10.z.literal(SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES),
|
|
864
823
|
CorrectionScopes
|
|
865
824
|
]);
|
|
866
825
|
|
|
@@ -994,14 +953,15 @@ var DEFAULT_ROLES_DEFINITION = [
|
|
|
994
953
|
]
|
|
995
954
|
}
|
|
996
955
|
];
|
|
997
|
-
var TokenUserType =
|
|
998
|
-
var TokenWithBearer =
|
|
956
|
+
var TokenUserType = import_zod11.z.enum(["user", "system"]);
|
|
957
|
+
var TokenWithBearer = import_zod11.z.string().regex(/^Bearer\s/);
|
|
999
958
|
|
|
1000
959
|
// ../commons/src/events/ActionDocument.ts
|
|
1001
|
-
|
|
960
|
+
(0, import_zod_openapi4.extendZodWithOpenApi)(import_zod12.z);
|
|
961
|
+
var ActionUpdate = import_zod12.z.record(import_zod12.z.string(), FieldUpdateValue).describe(
|
|
1002
962
|
"Record of field-level changes made by an action. Supports partial updates and nullable values."
|
|
1003
963
|
);
|
|
1004
|
-
var EventState =
|
|
964
|
+
var EventState = import_zod12.z.record(import_zod12.z.string(), FieldValue).describe(
|
|
1005
965
|
"Aggregate representation of event data after all actions have been applied, with all updates consolidated and null values removed."
|
|
1006
966
|
);
|
|
1007
967
|
var ActionStatus = {
|
|
@@ -1009,25 +969,24 @@ var ActionStatus = {
|
|
|
1009
969
|
Accepted: "Accepted",
|
|
1010
970
|
Rejected: "Rejected"
|
|
1011
971
|
};
|
|
1012
|
-
var ActionBase =
|
|
972
|
+
var ActionBase = import_zod12.z.object({
|
|
1013
973
|
id: UUID.describe("Unique identifier of the action."),
|
|
1014
|
-
transactionId:
|
|
974
|
+
transactionId: import_zod12.z.string().describe("Unique identifier of the transaction."),
|
|
1015
975
|
createdByUserType: TokenUserType.describe(
|
|
1016
976
|
"Indicates whether the action was created by a human-user or by a system-user."
|
|
1017
977
|
),
|
|
1018
|
-
createdAt:
|
|
1019
|
-
createdBy:
|
|
1020
|
-
createdByRole:
|
|
1021
|
-
createdBySignature:
|
|
1022
|
-
|
|
1023
|
-
createdAtLocation: UUID.nullish().describe(
|
|
978
|
+
createdAt: import_zod12.z.string().datetime().describe("Timestamp indicating when the action was created."),
|
|
979
|
+
createdBy: import_zod12.z.string().describe("Identifier of the user who created the action."),
|
|
980
|
+
createdByRole: import_zod12.z.string().describe("Role of the user who created the action."),
|
|
981
|
+
createdBySignature: import_zod12.z.string().nullish().describe("Reference to the signature of the user who created the action."),
|
|
982
|
+
createdAtLocation: CreatedAtLocation.describe(
|
|
1024
983
|
"Reference to the location of the user who created the action."
|
|
1025
984
|
),
|
|
1026
985
|
declaration: ActionUpdate.describe(
|
|
1027
986
|
"Declaration data defined by the ActionConfig. Supports partial updates."
|
|
1028
987
|
),
|
|
1029
988
|
annotation: ActionUpdate.optional().nullable().describe("Action-specific metadata used to annotate the event."),
|
|
1030
|
-
status:
|
|
989
|
+
status: import_zod12.z.enum([
|
|
1031
990
|
ActionStatus.Requested,
|
|
1032
991
|
ActionStatus.Accepted,
|
|
1033
992
|
ActionStatus.Rejected
|
|
@@ -1038,181 +997,172 @@ var ActionBase = z12.object({
|
|
|
1038
997
|
"Reference to the original action asynchronously accepted or rejected by a third-party integration."
|
|
1039
998
|
)
|
|
1040
999
|
});
|
|
1041
|
-
var AssignedAction = ActionBase.
|
|
1042
|
-
|
|
1043
|
-
type:
|
|
1044
|
-
assignedTo:
|
|
1000
|
+
var AssignedAction = ActionBase.merge(
|
|
1001
|
+
import_zod12.z.object({
|
|
1002
|
+
type: import_zod12.z.literal(ActionType.ASSIGN),
|
|
1003
|
+
assignedTo: import_zod12.z.string().describe("Identifier of the user to whom the action is assigned.")
|
|
1045
1004
|
// TODO move into 'content' property
|
|
1046
|
-
})
|
|
1005
|
+
})
|
|
1047
1006
|
);
|
|
1048
|
-
var UnassignedAction = ActionBase.
|
|
1049
|
-
|
|
1050
|
-
type:
|
|
1051
|
-
})
|
|
1007
|
+
var UnassignedAction = ActionBase.merge(
|
|
1008
|
+
import_zod12.z.object({
|
|
1009
|
+
type: import_zod12.z.literal(ActionType.UNASSIGN)
|
|
1010
|
+
})
|
|
1052
1011
|
);
|
|
1053
|
-
var RegisterAction = ActionBase.
|
|
1054
|
-
|
|
1055
|
-
type:
|
|
1056
|
-
registrationNumber:
|
|
1012
|
+
var RegisterAction = ActionBase.merge(
|
|
1013
|
+
import_zod12.z.object({
|
|
1014
|
+
type: import_zod12.z.literal(ActionType.REGISTER),
|
|
1015
|
+
registrationNumber: import_zod12.z.string().optional().describe(
|
|
1057
1016
|
"Registration number of the event. Always present for accepted registrations."
|
|
1058
1017
|
)
|
|
1059
1018
|
// TODO move into 'content' property
|
|
1060
|
-
})
|
|
1019
|
+
})
|
|
1020
|
+
);
|
|
1021
|
+
var DeclareAction = ActionBase.merge(
|
|
1022
|
+
import_zod12.z.object({
|
|
1023
|
+
type: import_zod12.z.literal(ActionType.DECLARE)
|
|
1024
|
+
})
|
|
1061
1025
|
);
|
|
1062
|
-
var
|
|
1063
|
-
|
|
1064
|
-
type:
|
|
1065
|
-
})
|
|
1026
|
+
var ValidateAction = ActionBase.merge(
|
|
1027
|
+
import_zod12.z.object({
|
|
1028
|
+
type: import_zod12.z.literal(ActionType.VALIDATE)
|
|
1029
|
+
})
|
|
1066
1030
|
);
|
|
1067
|
-
var ReasonContent =
|
|
1068
|
-
reason:
|
|
1031
|
+
var ReasonContent = import_zod12.z.object({
|
|
1032
|
+
reason: import_zod12.z.string().min(1, { message: "Message cannot be empty" }).describe(
|
|
1069
1033
|
"Message describing the reason for rejecting or archiving the event."
|
|
1070
1034
|
)
|
|
1071
1035
|
});
|
|
1072
|
-
var RejectAction = ActionBase.
|
|
1073
|
-
|
|
1074
|
-
type:
|
|
1036
|
+
var RejectAction = ActionBase.merge(
|
|
1037
|
+
import_zod12.z.object({
|
|
1038
|
+
type: import_zod12.z.literal(ActionType.REJECT),
|
|
1075
1039
|
content: ReasonContent
|
|
1076
|
-
})
|
|
1040
|
+
})
|
|
1077
1041
|
);
|
|
1078
|
-
var PotentialDuplicate =
|
|
1042
|
+
var PotentialDuplicate = import_zod12.z.object({
|
|
1079
1043
|
id: UUID,
|
|
1080
|
-
trackingId:
|
|
1044
|
+
trackingId: import_zod12.z.string()
|
|
1081
1045
|
});
|
|
1082
|
-
var DuplicateDetectedAction = ActionBase.
|
|
1083
|
-
|
|
1084
|
-
type:
|
|
1085
|
-
content:
|
|
1086
|
-
duplicates:
|
|
1046
|
+
var DuplicateDetectedAction = ActionBase.merge(
|
|
1047
|
+
import_zod12.z.object({
|
|
1048
|
+
type: import_zod12.z.literal(ActionType.DUPLICATE_DETECTED),
|
|
1049
|
+
content: import_zod12.z.object({
|
|
1050
|
+
duplicates: import_zod12.z.array(PotentialDuplicate)
|
|
1087
1051
|
})
|
|
1088
|
-
})
|
|
1052
|
+
})
|
|
1089
1053
|
);
|
|
1090
|
-
var MarkNotDuplicateAction = ActionBase.
|
|
1091
|
-
|
|
1092
|
-
type:
|
|
1093
|
-
})
|
|
1054
|
+
var MarkNotDuplicateAction = ActionBase.merge(
|
|
1055
|
+
import_zod12.z.object({
|
|
1056
|
+
type: import_zod12.z.literal(ActionType.MARK_AS_NOT_DUPLICATE)
|
|
1057
|
+
})
|
|
1094
1058
|
);
|
|
1095
|
-
var MarkAsDuplicateAction = ActionBase.
|
|
1096
|
-
|
|
1097
|
-
type:
|
|
1098
|
-
content:
|
|
1059
|
+
var MarkAsDuplicateAction = ActionBase.merge(
|
|
1060
|
+
import_zod12.z.object({
|
|
1061
|
+
type: import_zod12.z.literal(ActionType.MARK_AS_DUPLICATE),
|
|
1062
|
+
content: import_zod12.z.object({
|
|
1099
1063
|
duplicateOf: UUID
|
|
1100
1064
|
}).optional()
|
|
1101
|
-
})
|
|
1065
|
+
})
|
|
1102
1066
|
);
|
|
1103
|
-
var ArchiveAction = ActionBase.
|
|
1104
|
-
|
|
1105
|
-
type:
|
|
1067
|
+
var ArchiveAction = ActionBase.merge(
|
|
1068
|
+
import_zod12.z.object({
|
|
1069
|
+
type: import_zod12.z.literal(ActionType.ARCHIVE),
|
|
1106
1070
|
content: ReasonContent
|
|
1107
|
-
})
|
|
1108
|
-
);
|
|
1109
|
-
var CreatedAction = ActionBase.extend(
|
|
1110
|
-
z12.object({
|
|
1111
|
-
type: z12.literal(ActionType.CREATE)
|
|
1112
|
-
}).shape
|
|
1071
|
+
})
|
|
1113
1072
|
);
|
|
1114
|
-
var
|
|
1115
|
-
|
|
1116
|
-
type:
|
|
1117
|
-
})
|
|
1073
|
+
var CreatedAction = ActionBase.merge(
|
|
1074
|
+
import_zod12.z.object({
|
|
1075
|
+
type: import_zod12.z.literal(ActionType.CREATE)
|
|
1076
|
+
})
|
|
1118
1077
|
);
|
|
1119
|
-
var
|
|
1120
|
-
|
|
1121
|
-
type:
|
|
1122
|
-
|
|
1123
|
-
comment: z12.string().describe("Comment for the edit action.").optional()
|
|
1124
|
-
})
|
|
1125
|
-
}).shape
|
|
1078
|
+
var NotifiedAction = ActionBase.merge(
|
|
1079
|
+
import_zod12.z.object({
|
|
1080
|
+
type: import_zod12.z.literal(ActionType.NOTIFY)
|
|
1081
|
+
})
|
|
1126
1082
|
);
|
|
1127
|
-
var PrintContent =
|
|
1128
|
-
templateId:
|
|
1083
|
+
var PrintContent = import_zod12.z.object({
|
|
1084
|
+
templateId: import_zod12.z.string().optional()
|
|
1129
1085
|
});
|
|
1130
|
-
var PrintCertificateAction = ActionBase.
|
|
1131
|
-
|
|
1132
|
-
type:
|
|
1086
|
+
var PrintCertificateAction = ActionBase.merge(
|
|
1087
|
+
import_zod12.z.object({
|
|
1088
|
+
type: import_zod12.z.literal(ActionType.PRINT_CERTIFICATE),
|
|
1133
1089
|
content: PrintContent.optional().nullable()
|
|
1134
|
-
})
|
|
1090
|
+
})
|
|
1135
1091
|
);
|
|
1136
|
-
var RequestedCorrectionAction = ActionBase.
|
|
1137
|
-
|
|
1138
|
-
type:
|
|
1139
|
-
})
|
|
1092
|
+
var RequestedCorrectionAction = ActionBase.merge(
|
|
1093
|
+
import_zod12.z.object({
|
|
1094
|
+
type: import_zod12.z.literal(ActionType.REQUEST_CORRECTION)
|
|
1095
|
+
})
|
|
1140
1096
|
);
|
|
1141
|
-
var ApprovedCorrectionAction = ActionBase.
|
|
1142
|
-
|
|
1143
|
-
type:
|
|
1144
|
-
requestId:
|
|
1097
|
+
var ApprovedCorrectionAction = ActionBase.merge(
|
|
1098
|
+
import_zod12.z.object({
|
|
1099
|
+
type: import_zod12.z.literal(ActionType.APPROVE_CORRECTION),
|
|
1100
|
+
requestId: import_zod12.z.string()
|
|
1145
1101
|
// TODO move into 'content' property
|
|
1146
|
-
})
|
|
1102
|
+
})
|
|
1147
1103
|
);
|
|
1148
|
-
var RejectedCorrectionAction = ActionBase.
|
|
1149
|
-
|
|
1150
|
-
type:
|
|
1151
|
-
requestId:
|
|
1104
|
+
var RejectedCorrectionAction = ActionBase.merge(
|
|
1105
|
+
import_zod12.z.object({
|
|
1106
|
+
type: import_zod12.z.literal(ActionType.REJECT_CORRECTION),
|
|
1107
|
+
requestId: import_zod12.z.string(),
|
|
1152
1108
|
// TODO move into 'content' property
|
|
1153
1109
|
content: ReasonContent
|
|
1154
|
-
})
|
|
1155
|
-
);
|
|
1156
|
-
var ReadAction = ActionBase.extend(
|
|
1157
|
-
z12.object({
|
|
1158
|
-
type: z12.literal(ActionType.READ)
|
|
1159
|
-
}).shape
|
|
1110
|
+
})
|
|
1160
1111
|
);
|
|
1161
|
-
var
|
|
1162
|
-
|
|
1163
|
-
type:
|
|
1164
|
-
customActionType: z12.string()
|
|
1112
|
+
var ReadAction = ActionBase.merge(
|
|
1113
|
+
import_zod12.z.object({
|
|
1114
|
+
type: import_zod12.z.literal(ActionType.READ)
|
|
1165
1115
|
})
|
|
1166
1116
|
);
|
|
1167
|
-
var ActionDocument =
|
|
1168
|
-
CreatedAction.
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
id: "ActionDocument"
|
|
1117
|
+
var ActionDocument = import_zod12.z.discriminatedUnion("type", [
|
|
1118
|
+
CreatedAction.openapi({ ref: "CreatedAction" }),
|
|
1119
|
+
ValidateAction.openapi({ ref: "ValidateAction" }),
|
|
1120
|
+
RejectAction.openapi({ ref: "RejectAction" }),
|
|
1121
|
+
DuplicateDetectedAction.openapi({ ref: "DuplicateDetectedAction" }),
|
|
1122
|
+
MarkNotDuplicateAction.openapi({ ref: "MarkNotDuplicateAction" }),
|
|
1123
|
+
MarkAsDuplicateAction.openapi({ ref: "MarkAsDuplicateAction" }),
|
|
1124
|
+
ArchiveAction.openapi({ ref: "ArchiveAction" }),
|
|
1125
|
+
NotifiedAction.openapi({ ref: "NotifiedAction" }),
|
|
1126
|
+
RegisterAction.openapi({ ref: "RegisterAction" }),
|
|
1127
|
+
DeclareAction.openapi({ ref: "DeclareAction" }),
|
|
1128
|
+
AssignedAction.openapi({ ref: "AssignedAction" }),
|
|
1129
|
+
RequestedCorrectionAction.openapi({ ref: "RequestedCorrectionAction" }),
|
|
1130
|
+
ApprovedCorrectionAction.openapi({ ref: "ApprovedCorrectionAction" }),
|
|
1131
|
+
RejectedCorrectionAction.openapi({ ref: "RejectedCorrectionAction" }),
|
|
1132
|
+
UnassignedAction.openapi({ ref: "UnassignedAction" }),
|
|
1133
|
+
PrintCertificateAction.openapi({ ref: "PrintCertificateAction" }),
|
|
1134
|
+
ReadAction.openapi({ ref: "ReadAction" })
|
|
1135
|
+
]).openapi({
|
|
1136
|
+
ref: "ActionDocument"
|
|
1188
1137
|
});
|
|
1189
1138
|
var AsyncRejectActionDocument = ActionBase.omit({
|
|
1190
1139
|
declaration: true,
|
|
1191
1140
|
annotation: true
|
|
1192
|
-
}).
|
|
1193
|
-
|
|
1194
|
-
type:
|
|
1195
|
-
status:
|
|
1196
|
-
})
|
|
1141
|
+
}).merge(
|
|
1142
|
+
import_zod12.z.object({
|
|
1143
|
+
type: import_zod12.z.enum(ConfirmableActions),
|
|
1144
|
+
status: import_zod12.z.literal(ActionStatus.Rejected)
|
|
1145
|
+
})
|
|
1197
1146
|
);
|
|
1198
|
-
var Action =
|
|
1147
|
+
var Action = import_zod12.z.union([ActionDocument, AsyncRejectActionDocument]);
|
|
1199
1148
|
|
|
1200
|
-
// ../commons/src/events/
|
|
1201
|
-
var
|
|
1149
|
+
// ../commons/src/events/EventMetadata.ts
|
|
1150
|
+
var EventStatus = import_zod13.z.enum([
|
|
1151
|
+
"CREATED",
|
|
1152
|
+
"NOTIFIED",
|
|
1153
|
+
"DECLARED",
|
|
1154
|
+
"VALIDATED",
|
|
1155
|
+
"REGISTERED",
|
|
1156
|
+
"ARCHIVED"
|
|
1157
|
+
]);
|
|
1202
1158
|
var InherentFlags = {
|
|
1159
|
+
PENDING_CERTIFICATION: "pending-certification",
|
|
1203
1160
|
INCOMPLETE: "incomplete",
|
|
1204
1161
|
REJECTED: "rejected",
|
|
1205
1162
|
CORRECTION_REQUESTED: "correction-requested",
|
|
1206
|
-
POTENTIAL_DUPLICATE: "potential-duplicate"
|
|
1207
|
-
/**
|
|
1208
|
-
* This flag is set by the Edit-action and removed after the declaration or registration.
|
|
1209
|
-
* A record should never stay with the EDIT_IN_PROGRESS flag, since it should always be declared or registered right after.
|
|
1210
|
-
*
|
|
1211
|
-
* We only use this flag to determine that a NOTIFY, DECLARE or REGISTER action is allowed next.
|
|
1212
|
-
*/
|
|
1213
|
-
EDIT_IN_PROGRESS: "edit-in-progress"
|
|
1163
|
+
POTENTIAL_DUPLICATE: "potential-duplicate"
|
|
1214
1164
|
};
|
|
1215
|
-
var ActionFlag =
|
|
1165
|
+
var ActionFlag = import_zod13.z.string().regex(
|
|
1216
1166
|
new RegExp(
|
|
1217
1167
|
`^(${Object.values(ActionType).join("|").toLowerCase()}):(${Object.values(
|
|
1218
1168
|
ActionStatus
|
|
@@ -1220,92 +1170,59 @@ var ActionFlag = z13.string().regex(
|
|
|
1220
1170
|
),
|
|
1221
1171
|
"Flag must be in the format ActionType:ActionStatus (lowerCase)"
|
|
1222
1172
|
);
|
|
1223
|
-
var
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
).
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
}).describe("Custom flag identifier defined by the country config.");
|
|
1230
|
-
var Flag = ActionFlag.or(z13.enum(InherentFlags)).or(CustomFlag);
|
|
1231
|
-
var FlagConfig = z13.object({
|
|
1232
|
-
id: CustomFlag,
|
|
1233
|
-
requiresAction: z13.boolean().describe(
|
|
1234
|
-
"Indicates if this flag expects an action to be performed to be cleared."
|
|
1235
|
-
),
|
|
1236
|
-
label: TranslationConfig.describe("Human readable label of the flag.")
|
|
1237
|
-
});
|
|
1238
|
-
var ActionFlagConfig = z13.object({
|
|
1239
|
-
id: Flag,
|
|
1240
|
-
operation: z13.enum(["add", "remove"]).describe("Operation to perform on the flag."),
|
|
1241
|
-
conditional: Conditional.optional().describe(
|
|
1242
|
-
"When conditional is met, the operation is performed on the flag. If not provided, the operation is performed unconditionally."
|
|
1243
|
-
)
|
|
1244
|
-
});
|
|
1245
|
-
|
|
1246
|
-
// ../commons/src/events/EventMetadata.ts
|
|
1247
|
-
var EventStatus = z14.enum([
|
|
1248
|
-
"CREATED",
|
|
1249
|
-
"NOTIFIED",
|
|
1250
|
-
"DECLARED",
|
|
1251
|
-
"REGISTERED",
|
|
1252
|
-
"ARCHIVED"
|
|
1253
|
-
]);
|
|
1254
|
-
var ZodDate = z14.iso.date();
|
|
1255
|
-
var ActionCreationMetadata = z14.object({
|
|
1256
|
-
createdAt: z14.iso.datetime().describe("The timestamp when the action request was created."),
|
|
1257
|
-
createdBy: z14.string().describe("ID of the user who created the action request."),
|
|
1258
|
-
// @TODO: createdAtLocation should be non-nullable in the future once all action requests have this field populated.
|
|
1259
|
-
createdAtLocation: UUID.nullish().describe(
|
|
1173
|
+
var Flag = ActionFlag.or(import_zod13.z.nativeEnum(InherentFlags));
|
|
1174
|
+
var ZodDate = import_zod13.z.string().date();
|
|
1175
|
+
var ActionCreationMetadata = import_zod13.z.object({
|
|
1176
|
+
createdAt: import_zod13.z.string().datetime().describe("The timestamp when the action request was created."),
|
|
1177
|
+
createdBy: import_zod13.z.string().describe("ID of the user who created the action request."),
|
|
1178
|
+
createdAtLocation: CreatedAtLocation.describe(
|
|
1260
1179
|
"Location of the user who created the action request."
|
|
1261
1180
|
),
|
|
1262
|
-
createdByUserType:
|
|
1263
|
-
acceptedAt:
|
|
1264
|
-
createdByRole:
|
|
1265
|
-
createdBySignature:
|
|
1181
|
+
createdByUserType: import_zod13.z.enum(["user", "system"]).nullish().describe("Whether the user is a normal user or a system."),
|
|
1182
|
+
acceptedAt: import_zod13.z.string().datetime().describe("Timestamp when the action request was accepted."),
|
|
1183
|
+
createdByRole: import_zod13.z.string().describe("Role of the user at the time of action request creation."),
|
|
1184
|
+
createdBySignature: import_zod13.z.string().nullish().describe("Signature of the user who created the action request.")
|
|
1266
1185
|
});
|
|
1267
1186
|
var RegistrationCreationMetadata = ActionCreationMetadata.extend({
|
|
1268
|
-
registrationNumber:
|
|
1187
|
+
registrationNumber: import_zod13.z.string().describe(
|
|
1269
1188
|
"Registration number of the event. Always present for accepted registrations."
|
|
1270
1189
|
)
|
|
1271
1190
|
});
|
|
1272
|
-
var LegalStatuses =
|
|
1191
|
+
var LegalStatuses = import_zod13.z.object({
|
|
1273
1192
|
[EventStatus.enum.DECLARED]: ActionCreationMetadata.nullish(),
|
|
1274
1193
|
[EventStatus.enum.REGISTERED]: RegistrationCreationMetadata.nullish()
|
|
1275
1194
|
});
|
|
1276
|
-
var EventMetadata =
|
|
1195
|
+
var EventMetadata = import_zod13.z.object({
|
|
1277
1196
|
id: UUID,
|
|
1278
|
-
type:
|
|
1197
|
+
type: import_zod13.z.string().describe("The type of event, such as birth, death, or marriage."),
|
|
1279
1198
|
status: EventStatus,
|
|
1280
1199
|
legalStatuses: LegalStatuses.describe(
|
|
1281
1200
|
"Metadata related to the legal registration of the event, such as who registered it and when."
|
|
1282
1201
|
),
|
|
1283
|
-
createdAt:
|
|
1202
|
+
createdAt: import_zod13.z.string().datetime().describe("The timestamp when the event was first created and saved."),
|
|
1284
1203
|
dateOfEvent: ZodDate.nullish(),
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
// @TODO: createdAtLocation should be non-nullable in the future once all action requests have this field populated.
|
|
1290
|
-
createdAtLocation: UUID.nullish().describe(
|
|
1204
|
+
createdBy: import_zod13.z.string().describe("ID of the user who created the event."),
|
|
1205
|
+
createdByUserType: import_zod13.z.enum(["user", "system"]).nullish().describe("Whether the user is a normal user or a system."),
|
|
1206
|
+
updatedByUserRole: import_zod13.z.string().describe("Role of the user who last changed the status."),
|
|
1207
|
+
createdAtLocation: CreatedAtLocation.describe(
|
|
1291
1208
|
"Location of the user who created the event."
|
|
1292
1209
|
),
|
|
1293
|
-
createdBySignature:
|
|
1210
|
+
createdBySignature: import_zod13.z.string().nullish().describe("Signature of the user who created the event."),
|
|
1294
1211
|
updatedAtLocation: UUID.nullish().describe(
|
|
1295
1212
|
"Location of the user who last changed the status."
|
|
1296
1213
|
),
|
|
1297
|
-
updatedAt:
|
|
1214
|
+
updatedAt: import_zod13.z.string().datetime().describe(
|
|
1298
1215
|
"Timestamp of the most recent *accepted* status change. Possibly 3rd party update, if action is validation asynchronously."
|
|
1299
1216
|
),
|
|
1300
|
-
assignedTo:
|
|
1301
|
-
updatedBy:
|
|
1302
|
-
trackingId:
|
|
1217
|
+
assignedTo: import_zod13.z.string().nullish().describe("ID of the user currently assigned to the event."),
|
|
1218
|
+
updatedBy: import_zod13.z.string().nullish().describe("ID of the user who last changed the status."),
|
|
1219
|
+
trackingId: import_zod13.z.string().describe(
|
|
1303
1220
|
"System-generated tracking ID used by informants or registrars to look up the event."
|
|
1304
1221
|
),
|
|
1305
|
-
potentialDuplicates:
|
|
1222
|
+
potentialDuplicates: import_zod13.z.array(PotentialDuplicate).describe(
|
|
1306
1223
|
"List of event IDs and their tracking IDs that this event could be a duplicate of."
|
|
1307
1224
|
),
|
|
1308
|
-
flags:
|
|
1225
|
+
flags: import_zod13.z.array(Flag)
|
|
1309
1226
|
});
|
|
1310
1227
|
var EventMetadataKeysArray = [
|
|
1311
1228
|
"id",
|
|
@@ -1313,7 +1230,6 @@ var EventMetadataKeysArray = [
|
|
|
1313
1230
|
"status",
|
|
1314
1231
|
"createdAt",
|
|
1315
1232
|
"dateOfEvent",
|
|
1316
|
-
"placeOfEvent",
|
|
1317
1233
|
"createdBy",
|
|
1318
1234
|
"createdByUserType",
|
|
1319
1235
|
"updatedByUserRole",
|
|
@@ -1326,124 +1242,130 @@ var EventMetadataKeysArray = [
|
|
|
1326
1242
|
"legalStatuses",
|
|
1327
1243
|
"flags"
|
|
1328
1244
|
];
|
|
1329
|
-
var EventMetadataKeys =
|
|
1245
|
+
var EventMetadataKeys = import_zod13.z.enum(EventMetadataKeysArray);
|
|
1330
1246
|
|
|
1331
1247
|
// ../commons/src/events/EventIndex.ts
|
|
1248
|
+
var import_zod_openapi5 = require("zod-openapi");
|
|
1249
|
+
(0, import_zod_openapi5.extendZodWithOpenApi)(import_zod14.z);
|
|
1332
1250
|
var EventIndex = EventMetadata.extend({
|
|
1333
1251
|
declaration: EventState
|
|
1334
|
-
}).
|
|
1335
|
-
|
|
1252
|
+
}).openapi({
|
|
1253
|
+
ref: "EventIndex"
|
|
1336
1254
|
});
|
|
1337
|
-
var EventSearchIndex =
|
|
1338
|
-
|
|
1339
|
-
type:
|
|
1255
|
+
var EventSearchIndex = import_zod14.z.record(import_zod14.z.string(), import_zod14.z.any()).and(
|
|
1256
|
+
import_zod14.z.object({
|
|
1257
|
+
type: import_zod14.z.string()
|
|
1340
1258
|
// Ensures "type" (event-id) exists and is a string
|
|
1341
1259
|
})
|
|
1342
|
-
).
|
|
1343
|
-
|
|
1260
|
+
).openapi({
|
|
1261
|
+
ref: "EventSearchIndex"
|
|
1344
1262
|
});
|
|
1345
|
-
var Fuzzy =
|
|
1346
|
-
|
|
1263
|
+
var Fuzzy = import_zod14.z.object({ type: import_zod14.z.literal("fuzzy"), term: import_zod14.z.string() }).openapi({
|
|
1264
|
+
ref: "Fuzzy"
|
|
1347
1265
|
});
|
|
1348
|
-
var Exact =
|
|
1349
|
-
|
|
1266
|
+
var Exact = import_zod14.z.object({ type: import_zod14.z.literal("exact"), term: import_zod14.z.string() }).openapi({
|
|
1267
|
+
ref: "Exact"
|
|
1350
1268
|
});
|
|
1351
|
-
var ExactStatus =
|
|
1352
|
-
type:
|
|
1269
|
+
var ExactStatus = import_zod14.z.object({
|
|
1270
|
+
type: import_zod14.z.literal("exact"),
|
|
1353
1271
|
term: EventStatus
|
|
1354
|
-
}).
|
|
1355
|
-
|
|
1272
|
+
}).openapi({
|
|
1273
|
+
ref: "ExactStatus"
|
|
1356
1274
|
});
|
|
1357
|
-
var ExactUserType =
|
|
1358
|
-
type:
|
|
1275
|
+
var ExactUserType = import_zod14.z.object({
|
|
1276
|
+
type: import_zod14.z.literal("exact"),
|
|
1359
1277
|
term: TokenUserType
|
|
1360
|
-
}).
|
|
1361
|
-
|
|
1362
|
-
});
|
|
1363
|
-
var AnyOf =
|
|
1364
|
-
type:
|
|
1365
|
-
terms:
|
|
1366
|
-
}).
|
|
1367
|
-
|
|
1368
|
-
});
|
|
1369
|
-
var AnyOfStatus =
|
|
1370
|
-
type:
|
|
1371
|
-
terms:
|
|
1372
|
-
}).
|
|
1373
|
-
|
|
1374
|
-
});
|
|
1375
|
-
var Range =
|
|
1376
|
-
type:
|
|
1377
|
-
gte:
|
|
1378
|
-
lte:
|
|
1379
|
-
}).
|
|
1380
|
-
|
|
1381
|
-
});
|
|
1382
|
-
var ContainsFlags =
|
|
1383
|
-
anyOf:
|
|
1384
|
-
noneOf:
|
|
1385
|
-
}).
|
|
1386
|
-
|
|
1387
|
-
});
|
|
1388
|
-
var Within =
|
|
1389
|
-
|
|
1390
|
-
});
|
|
1391
|
-
var RangeDate =
|
|
1392
|
-
type:
|
|
1393
|
-
gte:
|
|
1394
|
-
lte:
|
|
1395
|
-
}).
|
|
1278
|
+
}).openapi({
|
|
1279
|
+
ref: "ExactUserType"
|
|
1280
|
+
});
|
|
1281
|
+
var AnyOf = import_zod14.z.object({
|
|
1282
|
+
type: import_zod14.z.literal("anyOf"),
|
|
1283
|
+
terms: import_zod14.z.array(import_zod14.z.string())
|
|
1284
|
+
}).openapi({
|
|
1285
|
+
ref: "AnyOf"
|
|
1286
|
+
});
|
|
1287
|
+
var AnyOfStatus = import_zod14.z.object({
|
|
1288
|
+
type: import_zod14.z.literal("anyOf"),
|
|
1289
|
+
terms: import_zod14.z.array(EventStatus)
|
|
1290
|
+
}).openapi({
|
|
1291
|
+
ref: "AnyOfStatus"
|
|
1292
|
+
});
|
|
1293
|
+
var Range = import_zod14.z.object({
|
|
1294
|
+
type: import_zod14.z.literal("range"),
|
|
1295
|
+
gte: import_zod14.z.string(),
|
|
1296
|
+
lte: import_zod14.z.string()
|
|
1297
|
+
}).openapi({
|
|
1298
|
+
ref: "Range"
|
|
1299
|
+
});
|
|
1300
|
+
var ContainsFlags = import_zod14.z.object({
|
|
1301
|
+
anyOf: import_zod14.z.array(Flag).optional(),
|
|
1302
|
+
noneOf: import_zod14.z.array(Flag).optional()
|
|
1303
|
+
}).openapi({
|
|
1304
|
+
ref: "ContainsFlags"
|
|
1305
|
+
});
|
|
1306
|
+
var Within = import_zod14.z.object({ type: import_zod14.z.literal("within"), location: import_zod14.z.string() }).openapi({
|
|
1307
|
+
ref: "Within"
|
|
1308
|
+
});
|
|
1309
|
+
var RangeDate = import_zod14.z.object({
|
|
1310
|
+
type: import_zod14.z.literal("range"),
|
|
1311
|
+
gte: import_zod14.z.string().date().or(import_zod14.z.string().datetime()),
|
|
1312
|
+
lte: import_zod14.z.string().date().or(import_zod14.z.string().datetime())
|
|
1313
|
+
}).openapi({ ref: "RangeDate" });
|
|
1396
1314
|
var ExactDate = Exact.extend({
|
|
1397
|
-
term:
|
|
1398
|
-
}).
|
|
1399
|
-
|
|
1315
|
+
term: import_zod14.z.string().date().or(import_zod14.z.string().datetime())
|
|
1316
|
+
}).openapi({
|
|
1317
|
+
ref: "ExactDate"
|
|
1400
1318
|
});
|
|
1401
|
-
var TimePeriod =
|
|
1402
|
-
type:
|
|
1319
|
+
var TimePeriod = import_zod14.z.object({
|
|
1320
|
+
type: import_zod14.z.literal("timePeriod"),
|
|
1403
1321
|
term: SelectDateRangeValue
|
|
1404
|
-
}).
|
|
1405
|
-
|
|
1322
|
+
}).openapi({
|
|
1323
|
+
ref: "TimePeriod"
|
|
1406
1324
|
});
|
|
1407
|
-
var DateCondition =
|
|
1408
|
-
|
|
1325
|
+
var DateCondition = import_zod14.z.union([ExactDate, RangeDate, TimePeriod]).openapi({
|
|
1326
|
+
ref: "DateCondition"
|
|
1409
1327
|
});
|
|
1410
|
-
var QueryInput =
|
|
1411
|
-
() =>
|
|
1412
|
-
|
|
1413
|
-
|
|
1328
|
+
var QueryInput = import_zod14.z.lazy(
|
|
1329
|
+
() => import_zod14.z.union([
|
|
1330
|
+
import_zod14.z.discriminatedUnion("type", [Fuzzy, Exact, Range, Within, AnyOf]),
|
|
1331
|
+
import_zod14.z.record(import_zod14.z.string(), QueryInput)
|
|
1414
1332
|
])
|
|
1415
|
-
).
|
|
1416
|
-
|
|
1417
|
-
});
|
|
1418
|
-
var QueryExpression =
|
|
1419
|
-
id:
|
|
1420
|
-
eventType:
|
|
1421
|
-
status:
|
|
1422
|
-
createdAt:
|
|
1423
|
-
updatedAt:
|
|
1424
|
-
"legalStatuses.REGISTERED.acceptedAt":
|
|
1425
|
-
"legalStatuses.DECLARED.createdAtLocation":
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
createdAtLocation:
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1333
|
+
).openapi({
|
|
1334
|
+
ref: "QueryInput"
|
|
1335
|
+
});
|
|
1336
|
+
var QueryExpression = import_zod14.z.object({
|
|
1337
|
+
id: import_zod14.z.optional(import_zod14.z.string()),
|
|
1338
|
+
eventType: import_zod14.z.string(),
|
|
1339
|
+
status: import_zod14.z.optional(import_zod14.z.union([AnyOfStatus, ExactStatus])),
|
|
1340
|
+
createdAt: import_zod14.z.optional(DateCondition),
|
|
1341
|
+
updatedAt: import_zod14.z.optional(DateCondition),
|
|
1342
|
+
"legalStatuses.REGISTERED.acceptedAt": import_zod14.z.optional(DateCondition),
|
|
1343
|
+
"legalStatuses.DECLARED.createdAtLocation": import_zod14.z.optional(
|
|
1344
|
+
import_zod14.z.union([Within, Exact])
|
|
1345
|
+
),
|
|
1346
|
+
"legalStatuses.REGISTERED.createdAtLocation": import_zod14.z.optional(
|
|
1347
|
+
import_zod14.z.union([Within, Exact])
|
|
1348
|
+
),
|
|
1349
|
+
"legalStatuses.REGISTERED.registrationNumber": import_zod14.z.optional(Exact),
|
|
1350
|
+
createdAtLocation: import_zod14.z.optional(import_zod14.z.union([Within, Exact])),
|
|
1351
|
+
updatedAtLocation: import_zod14.z.optional(import_zod14.z.union([Within, Exact])),
|
|
1352
|
+
assignedTo: import_zod14.z.optional(Exact),
|
|
1353
|
+
createdByUserType: import_zod14.z.optional(ExactUserType),
|
|
1354
|
+
createdBy: import_zod14.z.optional(Exact),
|
|
1355
|
+
updatedBy: import_zod14.z.optional(Exact),
|
|
1356
|
+
trackingId: import_zod14.z.optional(Exact),
|
|
1357
|
+
flags: import_zod14.z.optional(ContainsFlags),
|
|
1436
1358
|
// @todo: The type for this comes out as "any"
|
|
1437
1359
|
data: QueryInput
|
|
1438
1360
|
}).partial().refine((obj) => Object.values(obj).some((val) => val !== void 0), {
|
|
1439
|
-
|
|
1440
|
-
}).
|
|
1441
|
-
|
|
1442
|
-
});
|
|
1443
|
-
var QueryType =
|
|
1444
|
-
() =>
|
|
1445
|
-
type:
|
|
1446
|
-
clauses:
|
|
1361
|
+
message: "At least one query field must be specified."
|
|
1362
|
+
}).openapi({
|
|
1363
|
+
ref: "QueryExpression"
|
|
1364
|
+
});
|
|
1365
|
+
var QueryType = import_zod14.z.lazy(
|
|
1366
|
+
() => import_zod14.z.object({
|
|
1367
|
+
type: import_zod14.z.literal("and").or(import_zod14.z.literal("or")).openapi({ default: "and" }),
|
|
1368
|
+
clauses: import_zod14.z.array(import_zod14.z.union([QueryExpression, QueryType])).nonempty("At least one clause is required.").openapi({
|
|
1447
1369
|
default: [
|
|
1448
1370
|
{
|
|
1449
1371
|
eventType: TENNIS_CLUB_MEMBERSHIP,
|
|
@@ -1461,8 +1383,8 @@ var QueryType = import_v4.z.lazy(
|
|
|
1461
1383
|
]
|
|
1462
1384
|
})
|
|
1463
1385
|
})
|
|
1464
|
-
).
|
|
1465
|
-
|
|
1386
|
+
).openapi({
|
|
1387
|
+
ref: "QueryType"
|
|
1466
1388
|
});
|
|
1467
1389
|
function parseStringifiedQueryField(val) {
|
|
1468
1390
|
if (typeof val === "string") {
|
|
@@ -1470,8 +1392,8 @@ function parseStringifiedQueryField(val) {
|
|
|
1470
1392
|
}
|
|
1471
1393
|
return val;
|
|
1472
1394
|
}
|
|
1473
|
-
var SearchQuery =
|
|
1474
|
-
query:
|
|
1395
|
+
var SearchQuery = import_zod14.z.object({
|
|
1396
|
+
query: import_zod14.z.preprocess(parseStringifiedQueryField, QueryType).openapi({
|
|
1475
1397
|
default: {
|
|
1476
1398
|
type: "and",
|
|
1477
1399
|
clauses: [
|
|
@@ -1491,193 +1413,200 @@ var SearchQuery = import_v4.z.object({
|
|
|
1491
1413
|
]
|
|
1492
1414
|
}
|
|
1493
1415
|
}),
|
|
1494
|
-
limit:
|
|
1495
|
-
offset:
|
|
1496
|
-
sort:
|
|
1416
|
+
limit: import_zod14.z.number().optional().default(100),
|
|
1417
|
+
offset: import_zod14.z.number().optional().default(0),
|
|
1418
|
+
sort: import_zod14.z.preprocess(
|
|
1497
1419
|
parseStringifiedQueryField,
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
field:
|
|
1501
|
-
direction:
|
|
1420
|
+
import_zod14.z.array(
|
|
1421
|
+
import_zod14.z.object({
|
|
1422
|
+
field: import_zod14.z.string(),
|
|
1423
|
+
direction: import_zod14.z.enum(["asc", "desc"]).default("asc")
|
|
1502
1424
|
})
|
|
1503
1425
|
)
|
|
1504
1426
|
).optional()
|
|
1505
|
-
}).
|
|
1506
|
-
|
|
1427
|
+
}).openapi({
|
|
1428
|
+
ref: "SearchQuery"
|
|
1507
1429
|
});
|
|
1508
1430
|
|
|
1509
1431
|
// ../commons/src/events/serializers/date/serializer.ts
|
|
1510
|
-
var
|
|
1511
|
-
var SerializedNowDateTime =
|
|
1512
|
-
$$now:
|
|
1432
|
+
var import_zod15 = require("zod");
|
|
1433
|
+
var SerializedNowDateTime = import_zod15.z.object({
|
|
1434
|
+
$$now: import_zod15.z.literal(true)
|
|
1513
1435
|
});
|
|
1514
1436
|
function todayDateTimeValueSerializer() {
|
|
1515
1437
|
return { $$now: true };
|
|
1516
1438
|
}
|
|
1517
1439
|
|
|
1518
1440
|
// ../commons/src/events/FieldConfig.ts
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1441
|
+
(0, import_zod_openapi6.extendZodWithOpenApi)(import_zod16.z);
|
|
1442
|
+
var FieldId = import_zod16.z.string().refine(
|
|
1443
|
+
/*
|
|
1444
|
+
* Disallow underscores '_' in field ids.
|
|
1445
|
+
* Why? Theres two reasons:
|
|
1446
|
+
* 1. We transform dots to underscores as separator in Formik field ids, so this avoids any issues with the Formik transformations.
|
|
1447
|
+
* 2. On Kysely-SQL queries, we use the CamelCasePlugin. This plugin transforms snake_case to camelCase also on nested (jsonb) object keys.
|
|
1448
|
+
* This could be disabled via 'maintainNestedObjectKeys: true', but this would also affect SQL queries which use e.g. json_agg() or to_jsonb() to aggregate results.
|
|
1449
|
+
*/
|
|
1450
|
+
(val) => !val.includes("_"),
|
|
1451
|
+
(val) => ({
|
|
1452
|
+
message: `id: '${val}' must not contain underscores '_'`
|
|
1453
|
+
})
|
|
1454
|
+
).describe("Unique identifier for the field");
|
|
1455
|
+
var FieldReference = import_zod16.z.object({
|
|
1528
1456
|
$$field: FieldId,
|
|
1529
|
-
$$subfield:
|
|
1457
|
+
$$subfield: import_zod16.z.array(import_zod16.z.string()).optional().describe(
|
|
1530
1458
|
'If the FieldValue is an object, subfield can be used to refer to e.g. `["foo", "bar"]` in `{ foo: { bar: 3 } }`'
|
|
1531
1459
|
)
|
|
1532
1460
|
}).describe("Reference to a field by its ID");
|
|
1533
|
-
var ValidationConfig =
|
|
1461
|
+
var ValidationConfig = import_zod16.z.object({
|
|
1534
1462
|
validator: Conditional,
|
|
1535
1463
|
message: TranslationConfig
|
|
1536
1464
|
});
|
|
1537
|
-
var
|
|
1538
|
-
|
|
1539
|
-
|
|
1465
|
+
var RequiredSchema = import_zod16.z.union([
|
|
1466
|
+
import_zod16.z.boolean(),
|
|
1467
|
+
import_zod16.z.object({
|
|
1540
1468
|
message: TranslationConfig.describe("Custom required validation message")
|
|
1541
1469
|
})
|
|
1542
1470
|
]).default(false).optional();
|
|
1543
|
-
var BaseField =
|
|
1471
|
+
var BaseField = import_zod16.z.object({
|
|
1544
1472
|
id: FieldId.describe("Unique identifier of the field."),
|
|
1545
1473
|
label: TranslationConfig.describe("Human-readable label of the field."),
|
|
1546
|
-
parent: FieldReference.or(
|
|
1474
|
+
parent: FieldReference.or(import_zod16.z.array(FieldReference)).optional().describe(
|
|
1547
1475
|
"Reference to the parent field or fields. When a parent field changes, this field is reset."
|
|
1548
1476
|
),
|
|
1549
|
-
required:
|
|
1477
|
+
required: RequiredSchema.describe(
|
|
1550
1478
|
"Indicates whether the field is mandatory."
|
|
1551
1479
|
),
|
|
1552
|
-
conditionals:
|
|
1480
|
+
conditionals: import_zod16.z.array(FieldConditional).default([]).optional().describe(
|
|
1553
1481
|
"Conditions determining when the field is shown or enabled. By default, the field is always shown and enabled."
|
|
1554
1482
|
),
|
|
1555
|
-
secured:
|
|
1483
|
+
secured: import_zod16.z.boolean().default(false).optional().describe(
|
|
1556
1484
|
"Indicates whether the field is secured. Secured fields are not indexed for search and are only visible when explicitly assigned."
|
|
1557
1485
|
),
|
|
1558
1486
|
placeholder: TranslationConfig.optional(),
|
|
1559
|
-
validation:
|
|
1487
|
+
validation: import_zod16.z.array(ValidationConfig).default([]).optional().describe("Additional validation rules applied to the field."),
|
|
1560
1488
|
helperText: TranslationConfig.optional(),
|
|
1561
|
-
hideLabel:
|
|
1562
|
-
uncorrectable:
|
|
1489
|
+
hideLabel: import_zod16.z.boolean().default(false).optional(),
|
|
1490
|
+
uncorrectable: import_zod16.z.boolean().default(false).optional().describe(
|
|
1563
1491
|
"Indicates whether the field can be modified during record correction."
|
|
1564
1492
|
),
|
|
1565
|
-
value: FieldReference.or(
|
|
1493
|
+
value: FieldReference.or(import_zod16.z.array(FieldReference)).optional().describe(
|
|
1566
1494
|
"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."
|
|
1567
1495
|
),
|
|
1568
|
-
analytics:
|
|
1496
|
+
analytics: import_zod16.z.boolean().default(false).optional().describe(
|
|
1569
1497
|
"Indicates whether the field is included in analytics. When enabled, its value becomes available in the analytics dashboard."
|
|
1570
1498
|
)
|
|
1571
1499
|
}).describe("Common properties shared across all field types.");
|
|
1572
1500
|
var Divider = BaseField.extend({
|
|
1573
|
-
type:
|
|
1501
|
+
type: import_zod16.z.literal(FieldType.DIVIDER)
|
|
1502
|
+
});
|
|
1503
|
+
var TextFieldConfiguration = import_zod16.z.object({
|
|
1504
|
+
maxLength: import_zod16.z.number().optional().describe("Maximum length of the text"),
|
|
1505
|
+
type: import_zod16.z.enum(["text", "password"]).optional(),
|
|
1506
|
+
prefix: TranslationConfig.optional(),
|
|
1507
|
+
postfix: TranslationConfig.optional()
|
|
1574
1508
|
});
|
|
1575
1509
|
var TextField = BaseField.extend({
|
|
1576
|
-
type:
|
|
1577
|
-
defaultValue:
|
|
1578
|
-
configuration:
|
|
1579
|
-
maxLength: z17.number().optional().describe("Maximum length of the text"),
|
|
1580
|
-
type: z17.enum(["text", "password"]).optional(),
|
|
1581
|
-
prefix: TranslationConfig.optional(),
|
|
1582
|
-
postfix: TranslationConfig.optional()
|
|
1583
|
-
}).default({ type: "text" }).optional()
|
|
1510
|
+
type: import_zod16.z.literal(FieldType.TEXT),
|
|
1511
|
+
defaultValue: import_zod16.z.union([NonEmptyTextValue, SerializedUserField]).optional(),
|
|
1512
|
+
configuration: TextFieldConfiguration.default({ type: "text" }).optional()
|
|
1584
1513
|
}).describe("Text input");
|
|
1585
1514
|
var NumberField = BaseField.extend({
|
|
1586
|
-
type:
|
|
1515
|
+
type: import_zod16.z.literal(FieldType.NUMBER),
|
|
1587
1516
|
defaultValue: NumberFieldValue.optional(),
|
|
1588
|
-
configuration:
|
|
1589
|
-
min:
|
|
1590
|
-
max:
|
|
1517
|
+
configuration: import_zod16.z.object({
|
|
1518
|
+
min: import_zod16.z.number().optional().describe("Minimum value"),
|
|
1519
|
+
max: import_zod16.z.number().optional().describe("Maximum value"),
|
|
1591
1520
|
prefix: TranslationConfig.optional(),
|
|
1592
1521
|
postfix: TranslationConfig.optional()
|
|
1593
1522
|
}).optional()
|
|
1594
1523
|
}).describe("Number input");
|
|
1595
1524
|
var TextAreaField = BaseField.extend({
|
|
1596
|
-
type:
|
|
1525
|
+
type: import_zod16.z.literal(FieldType.TEXTAREA),
|
|
1597
1526
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1598
|
-
configuration:
|
|
1599
|
-
maxLength:
|
|
1600
|
-
rows:
|
|
1601
|
-
cols:
|
|
1527
|
+
configuration: import_zod16.z.object({
|
|
1528
|
+
maxLength: import_zod16.z.number().optional().describe("Maximum length of the text"),
|
|
1529
|
+
rows: import_zod16.z.number().optional().describe("Number of visible text lines"),
|
|
1530
|
+
cols: import_zod16.z.number().optional().describe("Number of visible columns"),
|
|
1602
1531
|
prefix: TranslationConfig.optional(),
|
|
1603
1532
|
postfix: TranslationConfig.optional()
|
|
1604
1533
|
}).default({ rows: 4 }).optional()
|
|
1605
1534
|
}).describe("Multiline text input");
|
|
1606
|
-
var ImageMimeType =
|
|
1535
|
+
var ImageMimeType = import_zod16.z.enum([
|
|
1607
1536
|
"image/png",
|
|
1608
1537
|
"image/jpg",
|
|
1609
1538
|
"image/jpeg",
|
|
1610
1539
|
"image/svg+xml"
|
|
1611
1540
|
]);
|
|
1612
|
-
var DocumentMimeType =
|
|
1541
|
+
var DocumentMimeType = import_zod16.z.enum([
|
|
1613
1542
|
"application/pdf",
|
|
1614
1543
|
"application/msword",
|
|
1615
1544
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
1616
1545
|
"application/vnd.oasis.opendocument.text"
|
|
1617
1546
|
]);
|
|
1618
|
-
var MimeType =
|
|
1547
|
+
var MimeType = import_zod16.z.enum([
|
|
1619
1548
|
...ImageMimeType.options,
|
|
1620
1549
|
...DocumentMimeType.options
|
|
1621
1550
|
]);
|
|
1622
1551
|
var DEFAULT_MAX_FILE_SIZE_BYTES = 5 * 1024 * 1024;
|
|
1623
1552
|
var SignatureField = BaseField.extend({
|
|
1624
|
-
type:
|
|
1553
|
+
type: import_zod16.z.literal(FieldType.SIGNATURE),
|
|
1625
1554
|
signaturePromptLabel: TranslationConfig.describe(
|
|
1626
1555
|
"Title of the signature modal"
|
|
1627
1556
|
),
|
|
1628
1557
|
defaultValue: SignatureFieldValue.optional(),
|
|
1629
|
-
configuration:
|
|
1630
|
-
maxFileSize:
|
|
1558
|
+
configuration: import_zod16.z.object({
|
|
1559
|
+
maxFileSize: import_zod16.z.number().describe("Maximum file size in bytes").default(DEFAULT_MAX_FILE_SIZE_BYTES),
|
|
1631
1560
|
acceptedFileTypes: MimeType.array().optional().describe("List of allowed file formats for the signature")
|
|
1632
1561
|
}).default({
|
|
1633
1562
|
maxFileSize: DEFAULT_MAX_FILE_SIZE_BYTES
|
|
1634
1563
|
})
|
|
1635
1564
|
}).describe("Signature input field");
|
|
1636
1565
|
var EmailField = BaseField.extend({
|
|
1637
|
-
type:
|
|
1638
|
-
configuration:
|
|
1639
|
-
maxLength:
|
|
1640
|
-
}).default({ maxLength:
|
|
1566
|
+
type: import_zod16.z.literal(FieldType.EMAIL),
|
|
1567
|
+
configuration: import_zod16.z.object({
|
|
1568
|
+
maxLength: import_zod16.z.number().optional().describe("Maximum length of the text")
|
|
1569
|
+
}).default({ maxLength: 10 }).optional(),
|
|
1641
1570
|
defaultValue: NonEmptyTextValue.optional()
|
|
1642
1571
|
});
|
|
1643
1572
|
var DateField = BaseField.extend({
|
|
1644
|
-
type:
|
|
1645
|
-
defaultValue: SerializedNowDateTime.or(DateValue).optional().describe("Default date value(yyyy-MM-dd)"),
|
|
1646
|
-
configuration:
|
|
1573
|
+
type: import_zod16.z.literal(FieldType.DATE),
|
|
1574
|
+
defaultValue: SerializedNowDateTime.or(DateValue).optional().openapi({ effectType: "input", type: "string" }).describe("Default date value(yyyy-MM-dd)"),
|
|
1575
|
+
configuration: import_zod16.z.object({
|
|
1647
1576
|
notice: TranslationConfig.describe(
|
|
1648
1577
|
"Text to display above the date input"
|
|
1649
1578
|
).optional()
|
|
1650
1579
|
}).optional()
|
|
1651
1580
|
}).describe("A single date input (yyyy-MM-dd)");
|
|
1652
1581
|
var AgeField = BaseField.extend({
|
|
1653
|
-
type:
|
|
1582
|
+
type: import_zod16.z.literal(FieldType.AGE),
|
|
1654
1583
|
defaultValue: NumberFieldValue.optional(),
|
|
1655
|
-
configuration:
|
|
1584
|
+
configuration: import_zod16.z.object({
|
|
1656
1585
|
asOfDate: FieldReference,
|
|
1657
1586
|
prefix: TranslationConfig.optional(),
|
|
1658
1587
|
postfix: TranslationConfig.optional()
|
|
1659
1588
|
})
|
|
1660
1589
|
}).describe("An age input field which uses the current date as the asOfDate");
|
|
1661
1590
|
var TimeField = BaseField.extend({
|
|
1662
|
-
type:
|
|
1663
|
-
defaultValue: SerializedNowDateTime.or(TimeValue).optional().describe("Default time value (HH-mm)"),
|
|
1664
|
-
configuration:
|
|
1665
|
-
use12HourFormat:
|
|
1591
|
+
type: import_zod16.z.literal(FieldType.TIME),
|
|
1592
|
+
defaultValue: SerializedNowDateTime.or(TimeValue).optional().openapi({ effectType: "input", type: "object" }).describe("Default time value (HH-mm)"),
|
|
1593
|
+
configuration: import_zod16.z.object({
|
|
1594
|
+
use12HourFormat: import_zod16.z.boolean().optional().describe("Whether to use 12-hour format"),
|
|
1666
1595
|
notice: TranslationConfig.describe(
|
|
1667
1596
|
"Text to display above the time input"
|
|
1668
1597
|
).optional()
|
|
1669
1598
|
}).optional()
|
|
1670
1599
|
}).describe("A single date input (HH-mm)");
|
|
1671
1600
|
var DateRangeField = BaseField.extend({
|
|
1672
|
-
type:
|
|
1601
|
+
type: import_zod16.z.literal(FieldType.DATE_RANGE),
|
|
1673
1602
|
defaultValue: DateRangeFieldValue.optional(),
|
|
1674
|
-
configuration:
|
|
1603
|
+
configuration: import_zod16.z.object({
|
|
1675
1604
|
notice: TranslationConfig.describe(
|
|
1676
1605
|
"Text to display above the date input"
|
|
1677
1606
|
).optional()
|
|
1678
1607
|
}).optional()
|
|
1679
1608
|
}).describe("A date range input ({ start: yyyy-MM-dd, end: yyyy-MM-dd })");
|
|
1680
|
-
var HtmlFontVariant =
|
|
1609
|
+
var HtmlFontVariant = import_zod16.z.enum([
|
|
1681
1610
|
"reg12",
|
|
1682
1611
|
"reg14",
|
|
1683
1612
|
"reg16",
|
|
@@ -1687,38 +1616,34 @@ var HtmlFontVariant = z17.enum([
|
|
|
1687
1616
|
"h2",
|
|
1688
1617
|
"h1"
|
|
1689
1618
|
]);
|
|
1690
|
-
var
|
|
1691
|
-
|
|
1692
|
-
styles: z17.object({
|
|
1619
|
+
var ParagraphConfiguration = import_zod16.z.object({
|
|
1620
|
+
styles: import_zod16.z.object({
|
|
1693
1621
|
fontVariant: HtmlFontVariant.optional().describe(
|
|
1694
1622
|
"Font variant to use for the paragraph text"
|
|
1695
1623
|
),
|
|
1696
|
-
hint:
|
|
1697
|
-
textAlign: ParagraphTextAlign.optional().describe(
|
|
1698
|
-
"Text alignment for the paragraph"
|
|
1699
|
-
)
|
|
1624
|
+
hint: import_zod16.z.boolean().optional().describe("When true, paragraph is styled as a hint with grey color")
|
|
1700
1625
|
}).optional()
|
|
1701
1626
|
}).default({});
|
|
1702
1627
|
var Paragraph = BaseField.extend({
|
|
1703
|
-
type:
|
|
1628
|
+
type: import_zod16.z.literal(FieldType.PARAGRAPH),
|
|
1704
1629
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1705
1630
|
configuration: ParagraphConfiguration
|
|
1706
1631
|
}).describe("A read-only HTML <p> paragraph");
|
|
1707
1632
|
var PageHeader = BaseField.extend({
|
|
1708
|
-
type:
|
|
1633
|
+
type: import_zod16.z.literal(FieldType.PAGE_HEADER),
|
|
1709
1634
|
defaultValue: NonEmptyTextValue.optional()
|
|
1710
1635
|
}).describe("A read-only header component for form pages");
|
|
1711
1636
|
var File = BaseField.extend({
|
|
1712
|
-
type:
|
|
1637
|
+
type: import_zod16.z.literal(FieldType.FILE),
|
|
1713
1638
|
defaultValue: FileFieldValue.optional(),
|
|
1714
|
-
configuration:
|
|
1715
|
-
maxFileSize:
|
|
1639
|
+
configuration: import_zod16.z.object({
|
|
1640
|
+
maxFileSize: import_zod16.z.number().describe("Maximum file size in bytes").default(DEFAULT_MAX_FILE_SIZE_BYTES),
|
|
1716
1641
|
acceptedFileTypes: MimeType.array().optional().describe("List of allowed file formats for the signature"),
|
|
1717
|
-
maxImageSize:
|
|
1718
|
-
targetSize:
|
|
1642
|
+
maxImageSize: import_zod16.z.object({
|
|
1643
|
+
targetSize: import_zod16.z.object({ width: import_zod16.z.number(), height: import_zod16.z.number() })
|
|
1719
1644
|
}).optional(),
|
|
1720
|
-
style:
|
|
1721
|
-
width:
|
|
1645
|
+
style: import_zod16.z.object({
|
|
1646
|
+
width: import_zod16.z.enum(["full", "auto"]).optional().describe(
|
|
1722
1647
|
"Whether the file upload button should take the full width of the container or not"
|
|
1723
1648
|
)
|
|
1724
1649
|
}).optional(),
|
|
@@ -1727,46 +1652,46 @@ var File = BaseField.extend({
|
|
|
1727
1652
|
maxFileSize: DEFAULT_MAX_FILE_SIZE_BYTES
|
|
1728
1653
|
})
|
|
1729
1654
|
}).describe("File upload");
|
|
1730
|
-
var SelectOption =
|
|
1731
|
-
value:
|
|
1732
|
-
label:
|
|
1655
|
+
var SelectOption = import_zod16.z.object({
|
|
1656
|
+
value: import_zod16.z.string().describe("The value of the option"),
|
|
1657
|
+
label: import_zod16.z.union([import_zod16.z.string(), TranslationConfig]).describe("The label of the option")
|
|
1733
1658
|
});
|
|
1734
1659
|
var NumberWithUnitField = BaseField.extend({
|
|
1735
|
-
type:
|
|
1660
|
+
type: import_zod16.z.literal(FieldType.NUMBER_WITH_UNIT),
|
|
1736
1661
|
defaultValue: NumberWithUnitFieldValue.optional(),
|
|
1737
|
-
options:
|
|
1738
|
-
configuration:
|
|
1739
|
-
min:
|
|
1740
|
-
max:
|
|
1662
|
+
options: import_zod16.z.array(SelectOption).describe("A list of options for the unit select"),
|
|
1663
|
+
configuration: import_zod16.z.object({
|
|
1664
|
+
min: import_zod16.z.number().optional().describe("Minimum value of the number field"),
|
|
1665
|
+
max: import_zod16.z.number().optional().describe("Maximum value of the number field"),
|
|
1741
1666
|
numberFieldPlaceholder: TranslationConfig.optional().describe(
|
|
1742
1667
|
"Placeholder for the number field"
|
|
1743
1668
|
)
|
|
1744
1669
|
}).optional()
|
|
1745
1670
|
}).describe("Number with unit input");
|
|
1746
1671
|
var RadioGroup = BaseField.extend({
|
|
1747
|
-
type:
|
|
1672
|
+
type: import_zod16.z.literal(FieldType.RADIO_GROUP),
|
|
1748
1673
|
defaultValue: TextValue.optional(),
|
|
1749
|
-
options:
|
|
1750
|
-
configuration:
|
|
1751
|
-
styles:
|
|
1752
|
-
size:
|
|
1674
|
+
options: import_zod16.z.array(SelectOption).describe("A list of options"),
|
|
1675
|
+
configuration: import_zod16.z.object({
|
|
1676
|
+
styles: import_zod16.z.object({
|
|
1677
|
+
size: import_zod16.z.enum(["NORMAL", "LARGE"]).optional()
|
|
1753
1678
|
}).optional()
|
|
1754
1679
|
}).optional()
|
|
1755
1680
|
}).describe("Grouped radio options");
|
|
1756
1681
|
var BulletList = BaseField.extend({
|
|
1757
|
-
type:
|
|
1682
|
+
type: import_zod16.z.literal(FieldType.BULLET_LIST),
|
|
1758
1683
|
defaultValue: TextValue.optional(),
|
|
1759
|
-
items:
|
|
1760
|
-
configuration:
|
|
1761
|
-
styles:
|
|
1684
|
+
items: import_zod16.z.array(TranslationConfig).describe("A list of items"),
|
|
1685
|
+
configuration: import_zod16.z.object({
|
|
1686
|
+
styles: import_zod16.z.object({
|
|
1762
1687
|
fontVariant: HtmlFontVariant.optional()
|
|
1763
1688
|
}).optional()
|
|
1764
1689
|
}).default({})
|
|
1765
1690
|
}).describe("A list of bullet points");
|
|
1766
1691
|
var Select = BaseField.extend({
|
|
1767
|
-
type:
|
|
1692
|
+
type: import_zod16.z.literal(FieldType.SELECT),
|
|
1768
1693
|
defaultValue: TextValue.optional(),
|
|
1769
|
-
options:
|
|
1694
|
+
options: import_zod16.z.array(SelectOption).describe("A list of options"),
|
|
1770
1695
|
noOptionsMessage: TranslationConfig.optional().describe(
|
|
1771
1696
|
`
|
|
1772
1697
|
A translation configuration object used to display a message when no options are available.
|
|
@@ -1778,34 +1703,48 @@ var Select = BaseField.extend({
|
|
|
1778
1703
|
`
|
|
1779
1704
|
)
|
|
1780
1705
|
}).describe("Select input");
|
|
1781
|
-
var SelectDateRangeOption =
|
|
1706
|
+
var SelectDateRangeOption = import_zod16.z.object({
|
|
1782
1707
|
value: SelectDateRangeValue.describe("The value of the option"),
|
|
1783
1708
|
label: TranslationConfig.describe("The label of the option")
|
|
1784
1709
|
});
|
|
1785
1710
|
var SelectDateRangeField = BaseField.extend({
|
|
1786
|
-
type:
|
|
1711
|
+
type: import_zod16.z.literal(FieldType.SELECT_DATE_RANGE),
|
|
1787
1712
|
defaultValue: SelectDateRangeValue.optional(),
|
|
1788
|
-
options:
|
|
1713
|
+
options: import_zod16.z.array(SelectDateRangeOption).describe("A list of options")
|
|
1789
1714
|
}).describe("Select input with date range options");
|
|
1790
|
-
var
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1715
|
+
var NameSchema = TextField.pick({
|
|
1716
|
+
label: true,
|
|
1717
|
+
required: true,
|
|
1718
|
+
conditionals: true
|
|
1719
|
+
}).extend({
|
|
1720
|
+
id: import_zod16.z.union([
|
|
1721
|
+
import_zod16.z.literal("firstname"),
|
|
1722
|
+
import_zod16.z.literal("middlename"),
|
|
1723
|
+
import_zod16.z.literal("surname")
|
|
1724
|
+
]),
|
|
1725
|
+
type: import_zod16.z.literal(FieldType.TEXT).default(FieldType.TEXT),
|
|
1726
|
+
configuration: TextFieldConfiguration.omit({ type: true }).default({})
|
|
1727
|
+
});
|
|
1728
|
+
var NameConfig = import_zod16.z.object({
|
|
1729
|
+
firstname: import_zod16.z.object({ required: RequiredSchema, label: TranslationConfig.optional() }).optional(),
|
|
1730
|
+
middlename: import_zod16.z.object({ required: RequiredSchema, label: TranslationConfig.optional() }).optional(),
|
|
1731
|
+
surname: import_zod16.z.object({ required: RequiredSchema, label: TranslationConfig.optional() }).optional()
|
|
1794
1732
|
});
|
|
1795
1733
|
var NameField = BaseField.extend({
|
|
1796
|
-
type:
|
|
1797
|
-
defaultValue:
|
|
1734
|
+
type: import_zod16.z.literal(FieldType.NAME),
|
|
1735
|
+
defaultValue: import_zod16.z.object({
|
|
1798
1736
|
firstname: SerializedUserField.or(NonEmptyTextValue).optional(),
|
|
1799
1737
|
middlename: SerializedUserField.or(NonEmptyTextValue).optional(),
|
|
1800
1738
|
surname: SerializedUserField.or(NonEmptyTextValue).optional()
|
|
1801
1739
|
}).optional(),
|
|
1802
|
-
|
|
1740
|
+
fields: import_zod16.z.array(NameSchema).optional(),
|
|
1741
|
+
configuration: import_zod16.z.object({
|
|
1803
1742
|
name: NameConfig.default({
|
|
1804
1743
|
firstname: { required: true },
|
|
1805
1744
|
surname: { required: true }
|
|
1806
1745
|
}).optional(),
|
|
1807
|
-
order:
|
|
1808
|
-
maxLength:
|
|
1746
|
+
order: import_zod16.z.array(import_zod16.z.enum(["firstname", "middlename", "surname"])).optional(),
|
|
1747
|
+
maxLength: import_zod16.z.number().optional().describe("Maximum length of the text"),
|
|
1809
1748
|
prefix: TranslationConfig.optional(),
|
|
1810
1749
|
postfix: TranslationConfig.optional()
|
|
1811
1750
|
}).default({
|
|
@@ -1817,51 +1756,51 @@ var NameField = BaseField.extend({
|
|
|
1817
1756
|
}).describe("Name input field");
|
|
1818
1757
|
var PhoneField = BaseField.extend({
|
|
1819
1758
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1820
|
-
type:
|
|
1759
|
+
type: import_zod16.z.literal(FieldType.PHONE)
|
|
1821
1760
|
}).describe("Phone input field");
|
|
1822
1761
|
var IdField = BaseField.extend({
|
|
1823
1762
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1824
|
-
type:
|
|
1763
|
+
type: import_zod16.z.literal(FieldType.ID)
|
|
1825
1764
|
}).describe("ID input field");
|
|
1826
1765
|
var Checkbox = BaseField.extend({
|
|
1827
|
-
type:
|
|
1766
|
+
type: import_zod16.z.literal(FieldType.CHECKBOX),
|
|
1828
1767
|
defaultValue: CheckboxFieldValue.default(false)
|
|
1829
1768
|
}).describe("Boolean checkbox field");
|
|
1830
1769
|
var Country = BaseField.extend({
|
|
1831
|
-
type:
|
|
1770
|
+
type: import_zod16.z.literal(FieldType.COUNTRY),
|
|
1832
1771
|
defaultValue: NonEmptyTextValue.optional()
|
|
1833
1772
|
}).describe("Country select field");
|
|
1834
|
-
var AdministrativeAreas =
|
|
1773
|
+
var AdministrativeAreas = import_zod16.z.enum([
|
|
1835
1774
|
"ADMIN_STRUCTURE",
|
|
1836
1775
|
"HEALTH_FACILITY",
|
|
1837
1776
|
"CRVS_OFFICE"
|
|
1838
1777
|
]);
|
|
1839
|
-
var AdministrativeAreaConfiguration =
|
|
1840
|
-
partOf:
|
|
1841
|
-
$declaration:
|
|
1778
|
+
var AdministrativeAreaConfiguration = import_zod16.z.object({
|
|
1779
|
+
partOf: import_zod16.z.object({
|
|
1780
|
+
$declaration: import_zod16.z.string()
|
|
1842
1781
|
}).optional().describe("Parent location"),
|
|
1843
1782
|
type: AdministrativeAreas
|
|
1844
1783
|
}).describe("Administrative area options");
|
|
1845
|
-
var
|
|
1846
|
-
type:
|
|
1784
|
+
var AdministrativeArea = BaseField.extend({
|
|
1785
|
+
type: import_zod16.z.literal(FieldType.ADMINISTRATIVE_AREA),
|
|
1847
1786
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1848
1787
|
configuration: AdministrativeAreaConfiguration
|
|
1849
1788
|
}).describe("Administrative area input field e.g. facility, office");
|
|
1850
1789
|
var LocationInput = BaseField.extend({
|
|
1851
|
-
type:
|
|
1790
|
+
type: import_zod16.z.literal(FieldType.LOCATION),
|
|
1852
1791
|
defaultValue: NonEmptyTextValue.optional(),
|
|
1853
|
-
configuration:
|
|
1854
|
-
searchableResource:
|
|
1792
|
+
configuration: import_zod16.z.object({
|
|
1793
|
+
searchableResource: import_zod16.z.array(import_zod16.z.enum(["locations", "facilities", "offices"]))
|
|
1855
1794
|
})
|
|
1856
1795
|
}).describe("Input field for a location");
|
|
1857
1796
|
var FileUploadWithOptions = BaseField.extend({
|
|
1858
|
-
type:
|
|
1859
|
-
options:
|
|
1797
|
+
type: import_zod16.z.literal(FieldType.FILE_WITH_OPTIONS),
|
|
1798
|
+
options: import_zod16.z.array(SelectOption).describe("A list of options"),
|
|
1860
1799
|
defaultValue: FileFieldWithOptionValue.optional(),
|
|
1861
|
-
configuration:
|
|
1862
|
-
maxFileSize:
|
|
1863
|
-
maxImageSize:
|
|
1864
|
-
targetSize:
|
|
1800
|
+
configuration: import_zod16.z.object({
|
|
1801
|
+
maxFileSize: import_zod16.z.number().describe("Maximum file size in bytes").default(DEFAULT_MAX_FILE_SIZE_BYTES),
|
|
1802
|
+
maxImageSize: import_zod16.z.object({
|
|
1803
|
+
targetSize: import_zod16.z.object({ width: import_zod16.z.number(), height: import_zod16.z.number() })
|
|
1865
1804
|
}).optional(),
|
|
1866
1805
|
acceptedFileTypes: MimeType.array().optional().describe("List of allowed file formats for the signature")
|
|
1867
1806
|
}).default({
|
|
@@ -1869,93 +1808,93 @@ var FileUploadWithOptions = BaseField.extend({
|
|
|
1869
1808
|
})
|
|
1870
1809
|
});
|
|
1871
1810
|
var Facility = BaseField.extend({
|
|
1872
|
-
type:
|
|
1811
|
+
type: import_zod16.z.literal(FieldType.FACILITY),
|
|
1873
1812
|
defaultValue: NonEmptyTextValue.optional()
|
|
1874
1813
|
}).describe("Input field for a facility");
|
|
1875
1814
|
var Office = BaseField.extend({
|
|
1876
|
-
type:
|
|
1815
|
+
type: import_zod16.z.literal(FieldType.OFFICE),
|
|
1877
1816
|
defaultValue: NonEmptyTextValue.optional()
|
|
1878
1817
|
}).describe("Input field for an office");
|
|
1879
1818
|
var DefaultAddressFieldValue = DomesticAddressFieldValue.extend({
|
|
1880
|
-
administrativeArea:
|
|
1819
|
+
administrativeArea: import_zod16.z.union([UUID, SerializedUserField]).optional()
|
|
1881
1820
|
});
|
|
1882
1821
|
var Address = BaseField.extend({
|
|
1883
|
-
type:
|
|
1884
|
-
configuration:
|
|
1885
|
-
lineSeparator:
|
|
1886
|
-
fields:
|
|
1887
|
-
administrativeLevels:
|
|
1888
|
-
streetAddressForm:
|
|
1889
|
-
|
|
1890
|
-
id:
|
|
1891
|
-
required:
|
|
1822
|
+
type: import_zod16.z.literal(FieldType.ADDRESS),
|
|
1823
|
+
configuration: import_zod16.z.object({
|
|
1824
|
+
lineSeparator: import_zod16.z.string().optional(),
|
|
1825
|
+
fields: import_zod16.z.array(import_zod16.z.enum(["country", "administrativeArea"])).optional(),
|
|
1826
|
+
administrativeLevels: import_zod16.z.array(import_zod16.z.string()).optional(),
|
|
1827
|
+
streetAddressForm: import_zod16.z.array(
|
|
1828
|
+
import_zod16.z.object({
|
|
1829
|
+
id: import_zod16.z.string(),
|
|
1830
|
+
required: RequiredSchema,
|
|
1892
1831
|
label: TranslationConfig,
|
|
1893
|
-
type:
|
|
1894
|
-
conditionals:
|
|
1832
|
+
type: import_zod16.z.literal(FieldType.TEXT),
|
|
1833
|
+
conditionals: import_zod16.z.array(FieldConditional).default([]).optional(),
|
|
1895
1834
|
parent: FieldReference.optional()
|
|
1896
1835
|
})
|
|
1897
1836
|
).optional()
|
|
1898
1837
|
}).optional(),
|
|
1899
1838
|
defaultValue: DefaultAddressFieldValue.optional()
|
|
1900
1839
|
}).describe("Address input field \u2013 a combination of location and text fields");
|
|
1901
|
-
var StaticDataEntry =
|
|
1902
|
-
id:
|
|
1840
|
+
var StaticDataEntry = import_zod16.z.object({
|
|
1841
|
+
id: import_zod16.z.string().describe("ID for the data entry."),
|
|
1903
1842
|
label: TranslationConfig,
|
|
1904
|
-
value: TranslationConfig.or(
|
|
1843
|
+
value: TranslationConfig.or(import_zod16.z.string()).or(FieldReference)
|
|
1905
1844
|
}).describe("Static data entry");
|
|
1906
|
-
var DataEntry =
|
|
1845
|
+
var DataEntry = import_zod16.z.union([StaticDataEntry, import_zod16.z.object({ fieldId: import_zod16.z.string() })]).describe(
|
|
1907
1846
|
"Data entry can be either a static data entry, or a reference to another field in the current form or the declaration."
|
|
1908
1847
|
);
|
|
1909
1848
|
var DataField = BaseField.extend({
|
|
1910
|
-
type:
|
|
1911
|
-
configuration:
|
|
1849
|
+
type: import_zod16.z.literal(FieldType.DATA),
|
|
1850
|
+
configuration: import_zod16.z.object({
|
|
1912
1851
|
subtitle: TranslationConfig.optional(),
|
|
1913
|
-
data:
|
|
1852
|
+
data: import_zod16.z.array(DataEntry)
|
|
1914
1853
|
})
|
|
1915
1854
|
}).describe("Data field for displaying read-only data");
|
|
1916
1855
|
var ButtonField = BaseField.extend({
|
|
1917
|
-
type:
|
|
1856
|
+
type: import_zod16.z.literal(FieldType.BUTTON),
|
|
1918
1857
|
defaultValue: ButtonFieldValue.optional(),
|
|
1919
|
-
configuration:
|
|
1920
|
-
icon:
|
|
1858
|
+
configuration: import_zod16.z.object({
|
|
1859
|
+
icon: import_zod16.z.string().optional().describe(
|
|
1921
1860
|
"Icon for the button. You can find icons from OpenCRVS UI-Kit."
|
|
1922
1861
|
),
|
|
1923
|
-
loading:
|
|
1862
|
+
loading: import_zod16.z.boolean().optional().describe("Whether the button is in a loading state and shows a spinner"),
|
|
1924
1863
|
text: TranslationConfig.describe("Text to display on the button")
|
|
1925
1864
|
})
|
|
1926
1865
|
}).describe("Generic button without any built-in functionality");
|
|
1927
1866
|
var AlphaPrintButton = BaseField.extend({
|
|
1928
|
-
type:
|
|
1929
|
-
configuration:
|
|
1930
|
-
template:
|
|
1867
|
+
type: import_zod16.z.literal(FieldType.ALPHA_PRINT_BUTTON),
|
|
1868
|
+
configuration: import_zod16.z.object({
|
|
1869
|
+
template: import_zod16.z.string().describe("Template ID from countryconfig templates to use for printing"),
|
|
1931
1870
|
buttonLabel: TranslationConfig.optional().describe(
|
|
1932
1871
|
"Label for the print button"
|
|
1933
1872
|
)
|
|
1934
1873
|
})
|
|
1935
1874
|
}).describe("Print button field for printing certificates");
|
|
1936
1875
|
var HttpField = BaseField.extend({
|
|
1937
|
-
type:
|
|
1876
|
+
type: import_zod16.z.literal(FieldType.HTTP),
|
|
1938
1877
|
defaultValue: HttpFieldValue.optional(),
|
|
1939
|
-
configuration:
|
|
1878
|
+
configuration: import_zod16.z.object({
|
|
1940
1879
|
trigger: FieldReference,
|
|
1941
|
-
url:
|
|
1942
|
-
method:
|
|
1943
|
-
headers:
|
|
1944
|
-
body:
|
|
1945
|
-
errorValue:
|
|
1946
|
-
params:
|
|
1947
|
-
timeout:
|
|
1880
|
+
url: import_zod16.z.string().describe("URL to send the HTTP request to"),
|
|
1881
|
+
method: import_zod16.z.enum(["GET", "POST", "PUT", "DELETE"]),
|
|
1882
|
+
headers: import_zod16.z.record(import_zod16.z.string()).optional(),
|
|
1883
|
+
body: import_zod16.z.record(import_zod16.z.any()).optional(),
|
|
1884
|
+
errorValue: import_zod16.z.any().optional().describe("Value to set if the request fails"),
|
|
1885
|
+
params: import_zod16.z.record(import_zod16.z.string(), import_zod16.z.union([import_zod16.z.string(), FieldReference])).optional(),
|
|
1886
|
+
timeout: import_zod16.z.number().default(15e3).describe("Request timeout in milliseconds")
|
|
1948
1887
|
})
|
|
1949
1888
|
}).describe("HTTP request function triggered by a button click or other event");
|
|
1950
1889
|
var SearchField = HttpField.extend({
|
|
1951
|
-
type:
|
|
1890
|
+
type: import_zod16.z.literal(FieldType.SEARCH),
|
|
1952
1891
|
configuration: SearchQuery.pick({
|
|
1953
1892
|
query: true,
|
|
1954
1893
|
limit: true,
|
|
1955
1894
|
offset: true
|
|
1956
1895
|
}).extend({
|
|
1957
1896
|
validation: ValidationConfig,
|
|
1958
|
-
indicators:
|
|
1897
|
+
indicators: import_zod16.z.object({
|
|
1959
1898
|
loading: TranslationConfig.optional().describe(
|
|
1960
1899
|
"Text to display while the search is in progress"
|
|
1961
1900
|
),
|
|
@@ -1970,7 +1909,7 @@ var SearchField = HttpField.extend({
|
|
|
1970
1909
|
),
|
|
1971
1910
|
confirmButton: TranslationConfig.optional(),
|
|
1972
1911
|
clearButton: TranslationConfig.optional(),
|
|
1973
|
-
clearModal:
|
|
1912
|
+
clearModal: import_zod16.z.object({
|
|
1974
1913
|
title: TranslationConfig.optional(),
|
|
1975
1914
|
description: TranslationConfig.optional(),
|
|
1976
1915
|
cancel: TranslationConfig.optional(),
|
|
@@ -1981,17 +1920,17 @@ var SearchField = HttpField.extend({
|
|
|
1981
1920
|
})
|
|
1982
1921
|
});
|
|
1983
1922
|
var LinkButtonField = BaseField.extend({
|
|
1984
|
-
type:
|
|
1985
|
-
configuration:
|
|
1986
|
-
url:
|
|
1923
|
+
type: import_zod16.z.literal(FieldType.LINK_BUTTON),
|
|
1924
|
+
configuration: import_zod16.z.object({
|
|
1925
|
+
url: import_zod16.z.string().describe("URL to open"),
|
|
1987
1926
|
text: TranslationConfig.describe("Text to display on the button"),
|
|
1988
|
-
icon:
|
|
1927
|
+
icon: import_zod16.z.string().optional().describe("Icon for the button. You can find icons from OpenCRVS UI-Kit.")
|
|
1989
1928
|
})
|
|
1990
1929
|
}).describe("Button that opens a link");
|
|
1991
1930
|
var VerificationStatus = BaseField.extend({
|
|
1992
|
-
type:
|
|
1931
|
+
type: import_zod16.z.literal(FieldType.VERIFICATION_STATUS),
|
|
1993
1932
|
defaultValue: VerificationStatusValue.optional(),
|
|
1994
|
-
configuration:
|
|
1933
|
+
configuration: import_zod16.z.object({
|
|
1995
1934
|
status: TranslationConfig.describe("Text to display on the status pill."),
|
|
1996
1935
|
description: TranslationConfig.describe(
|
|
1997
1936
|
"Explaining text on the banner in form."
|
|
@@ -1999,55 +1938,38 @@ var VerificationStatus = BaseField.extend({
|
|
|
1999
1938
|
})
|
|
2000
1939
|
});
|
|
2001
1940
|
var QueryParamReaderField = BaseField.extend({
|
|
2002
|
-
type:
|
|
2003
|
-
configuration:
|
|
2004
|
-
pickParams:
|
|
1941
|
+
type: import_zod16.z.literal(FieldType.QUERY_PARAM_READER),
|
|
1942
|
+
configuration: import_zod16.z.object({
|
|
1943
|
+
pickParams: import_zod16.z.array(import_zod16.z.string()).describe("List of query parameters to read from the URL")
|
|
2005
1944
|
})
|
|
2006
1945
|
}).describe(
|
|
2007
1946
|
"A field that maps URL query params into form values and clears them afterward"
|
|
2008
1947
|
);
|
|
2009
1948
|
var QrReaderField = BaseField.extend({
|
|
2010
|
-
type:
|
|
1949
|
+
type: import_zod16.z.literal(FieldType.QR_READER),
|
|
2011
1950
|
defaultValue: QrReaderFieldValue.optional(),
|
|
2012
|
-
configuration:
|
|
2013
|
-
validator:
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
})
|
|
1951
|
+
configuration: import_zod16.z.object({
|
|
1952
|
+
validator: import_zod16.z.custom(
|
|
1953
|
+
(val) => typeof val === "object" && val !== null
|
|
1954
|
+
)
|
|
2017
1955
|
}).optional()
|
|
2018
|
-
}).meta({
|
|
2019
|
-
description: "Configuration for QR code reader field, including optional JSON Schema validator.",
|
|
2020
|
-
id: "QrReaderField"
|
|
2021
1956
|
});
|
|
2022
1957
|
var IdReaderField = BaseField.extend({
|
|
2023
|
-
type:
|
|
1958
|
+
type: import_zod16.z.literal(FieldType.ID_READER),
|
|
2024
1959
|
defaultValue: IdReaderFieldValue.optional(),
|
|
2025
|
-
methods:
|
|
2026
|
-
|
|
1960
|
+
methods: import_zod16.z.array(
|
|
1961
|
+
import_zod16.z.union([QrReaderField, LinkButtonField]).describe("Methods for reading an ID")
|
|
2027
1962
|
)
|
|
2028
1963
|
});
|
|
2029
|
-
var CustomField = BaseField.extend({
|
|
2030
|
-
type: z17.literal(FieldType._EXPERIMENTAL_CUSTOM),
|
|
2031
|
-
defaultValue: CustomFieldValue.optional(),
|
|
2032
|
-
src: z17.string().describe("Module source path for the custom field component"),
|
|
2033
|
-
configuration: z17.unknown().optional()
|
|
2034
|
-
});
|
|
2035
1964
|
var LoaderField = BaseField.extend({
|
|
2036
|
-
type:
|
|
2037
|
-
configuration:
|
|
1965
|
+
type: import_zod16.z.literal(FieldType.LOADER),
|
|
1966
|
+
configuration: import_zod16.z.object({
|
|
2038
1967
|
text: TranslationConfig.describe("Display text above the loading spinner")
|
|
2039
1968
|
})
|
|
2040
1969
|
}).describe(
|
|
2041
1970
|
"A non-interactive field that indicates an in progress operation in form"
|
|
2042
1971
|
);
|
|
2043
|
-
var
|
|
2044
|
-
type: z17.literal(FieldType.ALPHA_HIDDEN),
|
|
2045
|
-
required: z17.boolean().default(false).optional(),
|
|
2046
|
-
defaultValue: TextValue.optional()
|
|
2047
|
-
}).describe(
|
|
2048
|
-
"A non-interactive, hidden field that only hold a value in the form"
|
|
2049
|
-
);
|
|
2050
|
-
var FieldConfig = z17.discriminatedUnion("type", [
|
|
1972
|
+
var FieldConfig = import_zod16.z.discriminatedUnion("type", [
|
|
2051
1973
|
Address,
|
|
2052
1974
|
TextField,
|
|
2053
1975
|
NumberField,
|
|
@@ -2069,7 +1991,7 @@ var FieldConfig = z17.discriminatedUnion("type", [
|
|
|
2069
1991
|
Checkbox,
|
|
2070
1992
|
File,
|
|
2071
1993
|
Country,
|
|
2072
|
-
|
|
1994
|
+
AdministrativeArea,
|
|
2073
1995
|
Divider,
|
|
2074
1996
|
LocationInput,
|
|
2075
1997
|
Facility,
|
|
@@ -2087,81 +2009,83 @@ var FieldConfig = z17.discriminatedUnion("type", [
|
|
|
2087
2009
|
IdReaderField,
|
|
2088
2010
|
QueryParamReaderField,
|
|
2089
2011
|
LoaderField,
|
|
2090
|
-
SearchField
|
|
2091
|
-
|
|
2092
|
-
HiddenField
|
|
2093
|
-
]).meta({
|
|
2012
|
+
SearchField
|
|
2013
|
+
]).openapi({
|
|
2094
2014
|
description: "Form field configuration",
|
|
2095
|
-
|
|
2015
|
+
ref: "FieldConfig"
|
|
2096
2016
|
});
|
|
2097
|
-
var AnyFileField =
|
|
2017
|
+
var AnyFileField = import_zod16.z.discriminatedUnion("type", [
|
|
2098
2018
|
SignatureField,
|
|
2099
2019
|
File,
|
|
2100
2020
|
FileUploadWithOptions
|
|
2101
2021
|
]);
|
|
2102
2022
|
|
|
2103
2023
|
// ../commons/src/events/FormConfig.ts
|
|
2104
|
-
var
|
|
2024
|
+
var import_zod18 = require("zod");
|
|
2105
2025
|
|
|
2106
2026
|
// ../commons/src/events/PageConfig.ts
|
|
2107
|
-
var
|
|
2108
|
-
var
|
|
2109
|
-
|
|
2110
|
-
|
|
2027
|
+
var import_zod17 = require("zod");
|
|
2028
|
+
var import_zod_openapi7 = require("zod-openapi");
|
|
2029
|
+
(0, import_zod_openapi7.extendZodWithOpenApi)(import_zod17.z);
|
|
2030
|
+
var PageTypes = import_zod17.z.enum(["FORM", "VERIFICATION"]);
|
|
2031
|
+
var PageConfigBase = import_zod17.z.object({
|
|
2032
|
+
id: import_zod17.z.string().describe("Unique identifier for the page"),
|
|
2111
2033
|
title: TranslationConfig.describe("Header title of the page"),
|
|
2112
|
-
requireCompletionToContinue:
|
|
2034
|
+
requireCompletionToContinue: import_zod17.z.boolean().default(false).describe(
|
|
2113
2035
|
"If true, all required fields must be filled before continuing to the next page"
|
|
2114
2036
|
),
|
|
2115
|
-
fields:
|
|
2037
|
+
fields: import_zod17.z.array(FieldConfig).describe("Fields to be rendered on the page"),
|
|
2116
2038
|
conditional: Conditional.optional().describe(
|
|
2117
2039
|
"Page will be shown if condition is met. If conditional is not defined, the page will be always shown."
|
|
2118
2040
|
)
|
|
2119
|
-
}).
|
|
2041
|
+
}).openapi({
|
|
2120
2042
|
description: "Form page configuration",
|
|
2121
|
-
|
|
2043
|
+
ref: "FormPageConfig"
|
|
2122
2044
|
});
|
|
2123
2045
|
var FormPageConfig = PageConfigBase.extend({
|
|
2124
|
-
type:
|
|
2046
|
+
type: import_zod17.z.literal(PageTypes.enum.FORM).default(PageTypes.enum.FORM)
|
|
2125
2047
|
});
|
|
2126
|
-
var VerificationActionConfig =
|
|
2127
|
-
verify:
|
|
2128
|
-
cancel:
|
|
2048
|
+
var VerificationActionConfig = import_zod17.z.object({
|
|
2049
|
+
verify: import_zod17.z.object({ label: TranslationConfig }),
|
|
2050
|
+
cancel: import_zod17.z.object({
|
|
2129
2051
|
label: TranslationConfig,
|
|
2130
|
-
confirmation:
|
|
2052
|
+
confirmation: import_zod17.z.object({
|
|
2131
2053
|
title: TranslationConfig,
|
|
2132
2054
|
body: TranslationConfig
|
|
2133
2055
|
})
|
|
2134
2056
|
})
|
|
2135
|
-
}).describe("Actions available on the verification page").
|
|
2057
|
+
}).describe("Actions available on the verification page").openapi({
|
|
2136
2058
|
description: "Verification action configuration",
|
|
2137
|
-
|
|
2059
|
+
ref: "VerificationActionConfig"
|
|
2138
2060
|
});
|
|
2139
2061
|
var VerificationPageConfig = FormPageConfig.extend({
|
|
2140
|
-
type:
|
|
2062
|
+
type: import_zod17.z.literal(PageTypes.enum.VERIFICATION),
|
|
2141
2063
|
actions: VerificationActionConfig
|
|
2142
2064
|
});
|
|
2143
|
-
var PageConfig =
|
|
2065
|
+
var PageConfig = import_zod17.z.discriminatedUnion("type", [
|
|
2144
2066
|
FormPageConfig,
|
|
2145
2067
|
VerificationPageConfig
|
|
2146
2068
|
]);
|
|
2147
2069
|
|
|
2148
2070
|
// ../commons/src/events/FormConfig.ts
|
|
2149
|
-
var DeclarationFormConfig =
|
|
2071
|
+
var DeclarationFormConfig = import_zod18.z.object({
|
|
2150
2072
|
label: TranslationConfig.describe("Human readable description of the form"),
|
|
2151
|
-
pages:
|
|
2073
|
+
pages: import_zod18.z.array(FormPageConfig)
|
|
2152
2074
|
}).describe("Configuration of the declaration form.");
|
|
2153
|
-
var ActionFormConfig =
|
|
2075
|
+
var ActionFormConfig = import_zod18.z.object({
|
|
2154
2076
|
label: TranslationConfig.describe("Human readable description of the form"),
|
|
2155
|
-
pages:
|
|
2077
|
+
pages: import_zod18.z.array(PageConfig)
|
|
2156
2078
|
}).describe(
|
|
2157
2079
|
"Configuration of the form used for system actions beyond declaration, supporting a wider range of page types."
|
|
2158
2080
|
);
|
|
2159
|
-
var FormConfig =
|
|
2081
|
+
var FormConfig = import_zod18.z.union([DeclarationFormConfig, ActionFormConfig]);
|
|
2160
2082
|
|
|
2161
2083
|
// ../commons/src/events/DeduplicationConfig.ts
|
|
2162
|
-
var
|
|
2163
|
-
var
|
|
2164
|
-
|
|
2084
|
+
var import_zod19 = require("zod");
|
|
2085
|
+
var import_zod_openapi8 = require("zod-openapi");
|
|
2086
|
+
(0, import_zod_openapi8.extendZodWithOpenApi)(import_zod19.z);
|
|
2087
|
+
var FieldReference2 = import_zod19.z.string();
|
|
2088
|
+
var Matcher = import_zod19.z.object({
|
|
2165
2089
|
/**
|
|
2166
2090
|
* Reference to the field used in matching.
|
|
2167
2091
|
*
|
|
@@ -2169,23 +2093,23 @@ var Matcher = z20.object({
|
|
|
2169
2093
|
* be used as the origin date to calculate the distance from.
|
|
2170
2094
|
*/
|
|
2171
2095
|
fieldId: FieldReference2,
|
|
2172
|
-
options:
|
|
2173
|
-
boost:
|
|
2096
|
+
options: import_zod19.z.object({
|
|
2097
|
+
boost: import_zod19.z.number().optional(),
|
|
2174
2098
|
matchAgainst: FieldReference2.optional()
|
|
2175
2099
|
}).optional().default({
|
|
2176
2100
|
boost: 1
|
|
2177
2101
|
})
|
|
2178
2102
|
});
|
|
2179
2103
|
var FuzzyMatcher = Matcher.extend({
|
|
2180
|
-
type:
|
|
2181
|
-
options:
|
|
2104
|
+
type: import_zod19.z.literal("fuzzy"),
|
|
2105
|
+
options: import_zod19.z.object({
|
|
2182
2106
|
/**
|
|
2183
2107
|
* Names of length 3 or less characters = 0 edits allowed
|
|
2184
2108
|
* Names of length 4 - 6 characters = 1 edit allowed
|
|
2185
2109
|
* Names of length >7 characters = 2 edits allowed
|
|
2186
2110
|
*/
|
|
2187
|
-
fuzziness:
|
|
2188
|
-
boost:
|
|
2111
|
+
fuzziness: import_zod19.z.union([import_zod19.z.string(), import_zod19.z.number()]).optional().default("AUTO:4,7"),
|
|
2112
|
+
boost: import_zod19.z.number().optional().default(1),
|
|
2189
2113
|
matchAgainst: FieldReference2.optional()
|
|
2190
2114
|
}).optional().default({
|
|
2191
2115
|
fuzziness: "AUTO:4,7",
|
|
@@ -2193,48 +2117,48 @@ var FuzzyMatcher = Matcher.extend({
|
|
|
2193
2117
|
})
|
|
2194
2118
|
});
|
|
2195
2119
|
var StrictMatcher = Matcher.extend({
|
|
2196
|
-
type:
|
|
2197
|
-
options:
|
|
2198
|
-
boost:
|
|
2120
|
+
type: import_zod19.z.literal("strict"),
|
|
2121
|
+
options: import_zod19.z.object({
|
|
2122
|
+
boost: import_zod19.z.number().optional().default(1),
|
|
2199
2123
|
/**
|
|
2200
2124
|
* The constant value to be present in the field for both records
|
|
2201
2125
|
*/
|
|
2202
|
-
value:
|
|
2126
|
+
value: import_zod19.z.string().optional(),
|
|
2203
2127
|
matchAgainst: FieldReference2.optional()
|
|
2204
2128
|
}).optional().default({
|
|
2205
2129
|
boost: 1
|
|
2206
2130
|
})
|
|
2207
2131
|
});
|
|
2208
2132
|
var DateRangeMatcher = Matcher.extend({
|
|
2209
|
-
type:
|
|
2210
|
-
options:
|
|
2133
|
+
type: import_zod19.z.literal("dateRange"),
|
|
2134
|
+
options: import_zod19.z.object({
|
|
2211
2135
|
/**
|
|
2212
2136
|
* The distance pivot in days. Distance from the origin (the value of
|
|
2213
2137
|
* fieldId) at which relevance scores receive half of the boost value
|
|
2214
2138
|
*/
|
|
2215
|
-
pivot:
|
|
2216
|
-
days:
|
|
2217
|
-
boost:
|
|
2139
|
+
pivot: import_zod19.z.number().optional(),
|
|
2140
|
+
days: import_zod19.z.number(),
|
|
2141
|
+
boost: import_zod19.z.number().optional().default(1),
|
|
2218
2142
|
matchAgainst: FieldReference2.optional()
|
|
2219
2143
|
})
|
|
2220
2144
|
});
|
|
2221
|
-
var Not =
|
|
2222
|
-
type:
|
|
2145
|
+
var Not = import_zod19.z.object({
|
|
2146
|
+
type: import_zod19.z.literal("not"),
|
|
2223
2147
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
2224
|
-
clause:
|
|
2148
|
+
clause: import_zod19.z.lazy(() => Clause)
|
|
2225
2149
|
});
|
|
2226
|
-
var And =
|
|
2227
|
-
type:
|
|
2150
|
+
var And = import_zod19.z.object({
|
|
2151
|
+
type: import_zod19.z.literal("and"),
|
|
2228
2152
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
2229
|
-
clauses:
|
|
2153
|
+
clauses: import_zod19.z.lazy(() => Clause.array())
|
|
2230
2154
|
});
|
|
2231
|
-
var Or =
|
|
2232
|
-
type:
|
|
2155
|
+
var Or = import_zod19.z.object({
|
|
2156
|
+
type: import_zod19.z.literal("or"),
|
|
2233
2157
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
2234
|
-
clauses:
|
|
2158
|
+
clauses: import_zod19.z.lazy(() => Clause.array())
|
|
2235
2159
|
});
|
|
2236
|
-
var Clause =
|
|
2237
|
-
() =>
|
|
2160
|
+
var Clause = import_zod19.z.lazy(
|
|
2161
|
+
() => import_zod19.z.discriminatedUnion("type", [
|
|
2238
2162
|
Not,
|
|
2239
2163
|
And,
|
|
2240
2164
|
Or,
|
|
@@ -2242,328 +2166,193 @@ var Clause = z20.lazy(
|
|
|
2242
2166
|
StrictMatcher,
|
|
2243
2167
|
DateRangeMatcher
|
|
2244
2168
|
])
|
|
2245
|
-
).
|
|
2246
|
-
|
|
2169
|
+
).openapi({
|
|
2170
|
+
ref: "Clause"
|
|
2247
2171
|
});
|
|
2248
|
-
var DeduplicationConfig =
|
|
2249
|
-
id:
|
|
2172
|
+
var DeduplicationConfig = import_zod19.z.object({
|
|
2173
|
+
id: import_zod19.z.string(),
|
|
2250
2174
|
label: TranslationConfig,
|
|
2251
2175
|
query: Clause
|
|
2252
2176
|
});
|
|
2253
2177
|
|
|
2254
|
-
// ../commons/src/icons.ts
|
|
2255
|
-
var z21 = __toESM(require("zod/v4"));
|
|
2256
|
-
var AvailableIcons = z21.enum([
|
|
2257
|
-
"Archived",
|
|
2258
|
-
"Assigned",
|
|
2259
|
-
"Briefcase",
|
|
2260
|
-
"Certified",
|
|
2261
|
-
"Close",
|
|
2262
|
-
"Collapse",
|
|
2263
|
-
"Draft",
|
|
2264
|
-
"DuplicateYellow",
|
|
2265
|
-
"Expand",
|
|
2266
|
-
"ExternalValidate",
|
|
2267
|
-
"FilledCheck",
|
|
2268
|
-
"InReview",
|
|
2269
|
-
"Offline",
|
|
2270
|
-
"Registered",
|
|
2271
|
-
"RequiresUpdates",
|
|
2272
|
-
"Sent",
|
|
2273
|
-
"Validated",
|
|
2274
|
-
"WaitingApproval",
|
|
2275
|
-
"ChartActivity",
|
|
2276
|
-
"Activity",
|
|
2277
|
-
"Archive",
|
|
2278
|
-
"ArchiveTray",
|
|
2279
|
-
"ArrowLeft",
|
|
2280
|
-
"ArrowRight",
|
|
2281
|
-
"Buildings",
|
|
2282
|
-
"Circle",
|
|
2283
|
-
"CaretDown",
|
|
2284
|
-
"CaretLeft",
|
|
2285
|
-
"CaretRight",
|
|
2286
|
-
"ChartBar",
|
|
2287
|
-
"ChartLine",
|
|
2288
|
-
"ChatCircle",
|
|
2289
|
-
"CheckSquare",
|
|
2290
|
-
"Compass",
|
|
2291
|
-
"Check",
|
|
2292
|
-
"Copy",
|
|
2293
|
-
"Database",
|
|
2294
|
-
"DotsThreeVertical",
|
|
2295
|
-
"ArrowCounterClockwise",
|
|
2296
|
-
"MagnifyingGlassMinus",
|
|
2297
|
-
"MagnifyingGlassPlus",
|
|
2298
|
-
"Export",
|
|
2299
|
-
"Eye",
|
|
2300
|
-
"EyeSlash",
|
|
2301
|
-
"Envelope",
|
|
2302
|
-
"File",
|
|
2303
|
-
"FileSearch",
|
|
2304
|
-
"FileMinus",
|
|
2305
|
-
"FilePlus",
|
|
2306
|
-
"FileText",
|
|
2307
|
-
"FileX",
|
|
2308
|
-
"Handshake",
|
|
2309
|
-
"Gear",
|
|
2310
|
-
"GitBranch",
|
|
2311
|
-
"IdentificationCard",
|
|
2312
|
-
"List",
|
|
2313
|
-
"ListBullets",
|
|
2314
|
-
"Lock",
|
|
2315
|
-
"MagnifyingGlass",
|
|
2316
|
-
"MapPin",
|
|
2317
|
-
"Medal",
|
|
2318
|
-
"NotePencil",
|
|
2319
|
-
"Paperclip",
|
|
2320
|
-
"PaperPlaneTilt",
|
|
2321
|
-
"Pen",
|
|
2322
|
-
"PenNib",
|
|
2323
|
-
"Pencil",
|
|
2324
|
-
"PencilSimpleLine",
|
|
2325
|
-
"Phone",
|
|
2326
|
-
"Plus",
|
|
2327
|
-
"Printer",
|
|
2328
|
-
"SignOut",
|
|
2329
|
-
"Stamp",
|
|
2330
|
-
"Star",
|
|
2331
|
-
"Target",
|
|
2332
|
-
"TextT",
|
|
2333
|
-
"Trash",
|
|
2334
|
-
"UploadSimple",
|
|
2335
|
-
"User",
|
|
2336
|
-
"UserPlus",
|
|
2337
|
-
"Users",
|
|
2338
|
-
"WarningCircle",
|
|
2339
|
-
"X",
|
|
2340
|
-
"ChatText",
|
|
2341
|
-
"CircleWavyCheck",
|
|
2342
|
-
"CircleWavyQuestion",
|
|
2343
|
-
"ArchiveBox",
|
|
2344
|
-
"ArrowCircleDown",
|
|
2345
|
-
"FileArrowUp",
|
|
2346
|
-
"FileDotted",
|
|
2347
|
-
"Files",
|
|
2348
|
-
"PencilLine",
|
|
2349
|
-
"PencilCircle",
|
|
2350
|
-
"UserCircle",
|
|
2351
|
-
"Clock",
|
|
2352
|
-
"QrCode",
|
|
2353
|
-
"Webcam",
|
|
2354
|
-
"Sun",
|
|
2355
|
-
"DeviceTabletCamera",
|
|
2356
|
-
"Globe",
|
|
2357
|
-
"Fingerprint",
|
|
2358
|
-
"PushPin",
|
|
2359
|
-
"Timer"
|
|
2360
|
-
]);
|
|
2361
|
-
|
|
2362
2178
|
// ../commons/src/events/ActionConfig.ts
|
|
2363
|
-
var
|
|
2179
|
+
var import_zod_openapi9 = require("zod-openapi");
|
|
2180
|
+
(0, import_zod_openapi9.extendZodWithOpenApi)(import_zod20.z);
|
|
2181
|
+
var DeclarationReviewConfig = import_zod20.z.object({
|
|
2364
2182
|
title: TranslationConfig.describe("Title of the review page"),
|
|
2365
|
-
fields:
|
|
2183
|
+
fields: import_zod20.z.array(FieldConfig).describe("Fields displayed on the review page for annotations.")
|
|
2366
2184
|
}).describe(
|
|
2367
2185
|
"Configuration of the declaration review page for collecting event-related metadata."
|
|
2368
2186
|
);
|
|
2369
|
-
var ActionConfigBase =
|
|
2370
|
-
label: TranslationConfig.describe("Human readable description of the action")
|
|
2371
|
-
flags: z22.array(ActionFlagConfig).optional().default([]).describe("Flag actions which are executed when the action is performed."),
|
|
2372
|
-
supportingCopy: TranslationConfig.optional().describe(
|
|
2373
|
-
"Text displayed on the confirmation dialog"
|
|
2374
|
-
),
|
|
2375
|
-
icon: AvailableIcons.describe("Icon representing the action").optional(),
|
|
2376
|
-
conditionals: z22.array(ActionConditional).optional().describe("Conditionals which can disable or hide actions.")
|
|
2187
|
+
var ActionConfigBase = import_zod20.z.object({
|
|
2188
|
+
label: TranslationConfig.describe("Human readable description of the action")
|
|
2377
2189
|
});
|
|
2378
2190
|
var DeclarationActionBase = ActionConfigBase.extend({
|
|
2191
|
+
review: DeclarationReviewConfig,
|
|
2379
2192
|
deduplication: DeduplicationConfig.optional()
|
|
2380
2193
|
});
|
|
2381
|
-
var ReadActionConfig = ActionConfigBase.
|
|
2382
|
-
|
|
2383
|
-
type:
|
|
2194
|
+
var ReadActionConfig = ActionConfigBase.merge(
|
|
2195
|
+
import_zod20.z.object({
|
|
2196
|
+
type: import_zod20.z.literal(ActionType.READ),
|
|
2384
2197
|
review: DeclarationReviewConfig.describe(
|
|
2385
2198
|
"Configuration of the review page for read-only view."
|
|
2386
|
-
)
|
|
2387
|
-
|
|
2388
|
-
}).shape
|
|
2199
|
+
)
|
|
2200
|
+
})
|
|
2389
2201
|
);
|
|
2390
|
-
var DeclareConfig = DeclarationActionBase.
|
|
2391
|
-
|
|
2392
|
-
type:
|
|
2393
|
-
|
|
2394
|
-
"Configuration of the review page fields."
|
|
2395
|
-
),
|
|
2396
|
-
dialogCopy: z22.object({
|
|
2397
|
-
notify: TranslationConfig.describe(
|
|
2398
|
-
"Confirmation text for the notify action"
|
|
2399
|
-
),
|
|
2400
|
-
declare: TranslationConfig.describe(
|
|
2401
|
-
"Confirmation text for the declare action"
|
|
2402
|
-
),
|
|
2403
|
-
register: TranslationConfig.describe(
|
|
2404
|
-
"Confirmation text for the register action"
|
|
2405
|
-
)
|
|
2406
|
-
}).optional()
|
|
2407
|
-
}).shape
|
|
2202
|
+
var DeclareConfig = DeclarationActionBase.merge(
|
|
2203
|
+
import_zod20.z.object({
|
|
2204
|
+
type: import_zod20.z.literal(ActionType.DECLARE)
|
|
2205
|
+
})
|
|
2408
2206
|
);
|
|
2409
|
-
var
|
|
2410
|
-
|
|
2411
|
-
type:
|
|
2412
|
-
})
|
|
2207
|
+
var ValidateConfig = DeclarationActionBase.merge(
|
|
2208
|
+
import_zod20.z.object({
|
|
2209
|
+
type: import_zod20.z.literal(ActionType.VALIDATE)
|
|
2210
|
+
})
|
|
2413
2211
|
);
|
|
2414
|
-
var
|
|
2415
|
-
|
|
2416
|
-
type:
|
|
2417
|
-
|
|
2418
|
-
notify: TranslationConfig.describe(
|
|
2419
|
-
"Confirmation text for the notify with edits action"
|
|
2420
|
-
),
|
|
2421
|
-
declare: TranslationConfig.describe(
|
|
2422
|
-
"Confirmation text for the declare with edits action"
|
|
2423
|
-
),
|
|
2424
|
-
register: TranslationConfig.describe(
|
|
2425
|
-
"Confirmation text for the register with edits action"
|
|
2426
|
-
)
|
|
2427
|
-
})
|
|
2428
|
-
}).shape
|
|
2212
|
+
var RegisterConfig = DeclarationActionBase.merge(
|
|
2213
|
+
import_zod20.z.object({
|
|
2214
|
+
type: import_zod20.z.literal(ActionType.REGISTER)
|
|
2215
|
+
})
|
|
2429
2216
|
);
|
|
2430
|
-
var
|
|
2431
|
-
|
|
2432
|
-
type:
|
|
2433
|
-
})
|
|
2217
|
+
var RejectDeclarationConfig = ActionConfigBase.merge(
|
|
2218
|
+
import_zod20.z.object({
|
|
2219
|
+
type: import_zod20.z.literal(ActionType.REJECT)
|
|
2220
|
+
})
|
|
2221
|
+
);
|
|
2222
|
+
var ArchiveConfig = ActionConfigBase.merge(
|
|
2223
|
+
import_zod20.z.object({
|
|
2224
|
+
type: import_zod20.z.literal(ActionType.ARCHIVE)
|
|
2225
|
+
})
|
|
2434
2226
|
);
|
|
2435
|
-
var
|
|
2436
|
-
|
|
2437
|
-
type:
|
|
2438
|
-
})
|
|
2227
|
+
var DeleteConfig = ActionConfigBase.merge(
|
|
2228
|
+
import_zod20.z.object({
|
|
2229
|
+
type: import_zod20.z.literal(ActionType.DELETE)
|
|
2230
|
+
})
|
|
2439
2231
|
);
|
|
2440
|
-
var PrintCertificateActionConfig = ActionConfigBase.
|
|
2441
|
-
|
|
2442
|
-
type:
|
|
2232
|
+
var PrintCertificateActionConfig = ActionConfigBase.merge(
|
|
2233
|
+
import_zod20.z.object({
|
|
2234
|
+
type: import_zod20.z.literal(ActionType.PRINT_CERTIFICATE),
|
|
2443
2235
|
printForm: ActionFormConfig
|
|
2444
|
-
})
|
|
2236
|
+
})
|
|
2445
2237
|
);
|
|
2446
|
-
var RequestCorrectionConfig = ActionConfigBase.
|
|
2447
|
-
|
|
2448
|
-
type:
|
|
2238
|
+
var RequestCorrectionConfig = ActionConfigBase.merge(
|
|
2239
|
+
import_zod20.z.object({
|
|
2240
|
+
type: import_zod20.z.literal(ActionType.REQUEST_CORRECTION),
|
|
2449
2241
|
correctionForm: ActionFormConfig
|
|
2450
|
-
})
|
|
2242
|
+
})
|
|
2451
2243
|
);
|
|
2452
|
-
var
|
|
2453
|
-
|
|
2454
|
-
type:
|
|
2455
|
-
customActionType: z22.string().describe("Type identifier of the custom action."),
|
|
2456
|
-
/** 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. */
|
|
2457
|
-
form: z22.array(FieldConfig).describe(
|
|
2458
|
-
"Form configuration for the custom action. The form configured here will be used on the custom action confirmation modal."
|
|
2459
|
-
),
|
|
2460
|
-
auditHistoryLabel: TranslationConfig.describe(
|
|
2461
|
-
'The label to show in audit history for this action. For example "Approved".'
|
|
2462
|
-
)
|
|
2244
|
+
var RejectCorrectionConfig = ActionConfigBase.merge(
|
|
2245
|
+
import_zod20.z.object({
|
|
2246
|
+
type: import_zod20.z.literal(ActionType.REJECT_CORRECTION)
|
|
2463
2247
|
})
|
|
2464
2248
|
);
|
|
2465
|
-
var
|
|
2249
|
+
var ApproveCorrectionConfig = ActionConfigBase.merge(
|
|
2250
|
+
import_zod20.z.object({
|
|
2251
|
+
type: import_zod20.z.literal(ActionType.APPROVE_CORRECTION)
|
|
2252
|
+
})
|
|
2253
|
+
);
|
|
2254
|
+
var ActionConfig = import_zod20.z.discriminatedUnion("type", [
|
|
2466
2255
|
/*
|
|
2467
2256
|
* OpenAPI references are defined here so our generated OpenAPI spec knows to reuse the models
|
|
2468
2257
|
* and treat them as "models" instead of duplicating the data structure in each endpoint.
|
|
2469
2258
|
*/
|
|
2470
|
-
ReadActionConfig.
|
|
2471
|
-
DeclareConfig.
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2259
|
+
ReadActionConfig.openapi({ ref: "ReadActionConfig" }),
|
|
2260
|
+
DeclareConfig.openapi({ ref: "DeclareActionConfig" }),
|
|
2261
|
+
ValidateConfig.openapi({ ref: "ValidateActionConfig" }),
|
|
2262
|
+
RejectDeclarationConfig.openapi({ ref: "RejectDeclarationActionConfig" }),
|
|
2263
|
+
ArchiveConfig.openapi({ ref: "ArchiveActionConfig" }),
|
|
2264
|
+
RegisterConfig.openapi({ ref: "RegisterActionConfig" }),
|
|
2265
|
+
DeleteConfig.openapi({ ref: "DeleteActionConfig" }),
|
|
2266
|
+
PrintCertificateActionConfig.openapi({
|
|
2267
|
+
ref: "PrintCertificateActionConfig"
|
|
2476
2268
|
}),
|
|
2477
|
-
RequestCorrectionConfig.
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
CustomActionConfig.meta({ id: "CustomActionConfig" })
|
|
2269
|
+
RequestCorrectionConfig.openapi({ ref: "RequestCorrectionActionConfig" }),
|
|
2270
|
+
RejectCorrectionConfig.openapi({ ref: "RejectCorrectionActionConfig" }),
|
|
2271
|
+
ApproveCorrectionConfig.openapi({ ref: "ApproveCorrectionActionConfig" })
|
|
2481
2272
|
]).describe(
|
|
2482
2273
|
"Configuration of an action available for an event. Data collected depends on the action type and is accessible through the annotation property in ActionDocument."
|
|
2483
|
-
).
|
|
2484
|
-
var
|
|
2485
|
-
ActionConfig.options.map((opt) => opt.shape.type.value)
|
|
2486
|
-
);
|
|
2487
|
-
var DeclarationActionConfig = z22.discriminatedUnion("type", [
|
|
2274
|
+
).openapi({ ref: "ActionConfig" });
|
|
2275
|
+
var DeclarationActionConfig = import_zod20.z.discriminatedUnion("type", [
|
|
2488
2276
|
DeclareConfig,
|
|
2277
|
+
ValidateConfig,
|
|
2489
2278
|
RegisterConfig
|
|
2490
2279
|
]);
|
|
2491
2280
|
|
|
2492
2281
|
// ../commons/src/events/offline/CertificateConfig.ts
|
|
2493
|
-
var
|
|
2494
|
-
var FontFamily =
|
|
2495
|
-
normal:
|
|
2496
|
-
bold:
|
|
2497
|
-
italics:
|
|
2498
|
-
bolditalics:
|
|
2499
|
-
});
|
|
2500
|
-
var CertificateConfig =
|
|
2501
|
-
id:
|
|
2502
|
-
event:
|
|
2503
|
-
isV2Template:
|
|
2282
|
+
var import_zod21 = require("zod");
|
|
2283
|
+
var FontFamily = import_zod21.z.object({
|
|
2284
|
+
normal: import_zod21.z.string(),
|
|
2285
|
+
bold: import_zod21.z.string(),
|
|
2286
|
+
italics: import_zod21.z.string(),
|
|
2287
|
+
bolditalics: import_zod21.z.string()
|
|
2288
|
+
});
|
|
2289
|
+
var CertificateConfig = import_zod21.z.object({
|
|
2290
|
+
id: import_zod21.z.string(),
|
|
2291
|
+
event: import_zod21.z.string(),
|
|
2292
|
+
isV2Template: import_zod21.z.boolean().optional(),
|
|
2504
2293
|
label: TranslationConfig,
|
|
2505
|
-
isDefault:
|
|
2506
|
-
fee:
|
|
2507
|
-
onTime:
|
|
2508
|
-
late:
|
|
2509
|
-
delayed:
|
|
2294
|
+
isDefault: import_zod21.z.boolean(),
|
|
2295
|
+
fee: import_zod21.z.object({
|
|
2296
|
+
onTime: import_zod21.z.number(),
|
|
2297
|
+
late: import_zod21.z.number(),
|
|
2298
|
+
delayed: import_zod21.z.number()
|
|
2510
2299
|
}),
|
|
2511
|
-
svgUrl:
|
|
2512
|
-
fonts:
|
|
2513
|
-
conditionals:
|
|
2300
|
+
svgUrl: import_zod21.z.string(),
|
|
2301
|
+
fonts: import_zod21.z.record(FontFamily).optional(),
|
|
2302
|
+
conditionals: import_zod21.z.array(ShowConditional).optional()
|
|
2514
2303
|
});
|
|
2515
2304
|
var CertificateTemplateConfig = CertificateConfig.extend({
|
|
2516
|
-
hash:
|
|
2517
|
-
svg:
|
|
2305
|
+
hash: import_zod21.z.string().optional(),
|
|
2306
|
+
svg: import_zod21.z.string()
|
|
2518
2307
|
});
|
|
2519
2308
|
|
|
2520
2309
|
// ../commons/src/events/offline/LanguageConfig.ts
|
|
2521
|
-
var
|
|
2522
|
-
var LanguageConfig =
|
|
2523
|
-
lang:
|
|
2310
|
+
var import_zod22 = require("zod");
|
|
2311
|
+
var LanguageConfig = import_zod22.z.object({
|
|
2312
|
+
lang: import_zod22.z.string(),
|
|
2524
2313
|
/**
|
|
2525
2314
|
* client.csv contents
|
|
2526
2315
|
*/
|
|
2527
|
-
messages:
|
|
2316
|
+
messages: import_zod22.z.record(import_zod22.z.string())
|
|
2528
2317
|
});
|
|
2529
2318
|
|
|
2530
2319
|
// ../commons/src/events/EventConfig.ts
|
|
2531
|
-
var
|
|
2320
|
+
var import_zod27 = require("zod");
|
|
2532
2321
|
|
|
2533
2322
|
// ../commons/src/events/SummaryConfig.ts
|
|
2534
|
-
var
|
|
2535
|
-
var BaseField2 =
|
|
2323
|
+
var import_zod23 = require("zod");
|
|
2324
|
+
var BaseField2 = import_zod23.z.object({
|
|
2536
2325
|
emptyValueMessage: TranslationConfig.optional().describe(
|
|
2537
2326
|
"Default message displayed when the field value is empty."
|
|
2538
2327
|
),
|
|
2539
|
-
conditionals:
|
|
2328
|
+
conditionals: import_zod23.z.array(ShowConditional).default([]).optional()
|
|
2540
2329
|
});
|
|
2541
2330
|
var ReferenceField = BaseField2.extend({
|
|
2542
|
-
fieldId:
|
|
2331
|
+
fieldId: import_zod23.z.string(),
|
|
2543
2332
|
label: TranslationConfig.optional().describe(
|
|
2544
2333
|
"Overrides the default label from the referenced field when provided."
|
|
2545
2334
|
)
|
|
2546
2335
|
}).describe("Field referencing existing event data by field ID.");
|
|
2547
2336
|
var Field = BaseField2.extend({
|
|
2548
|
-
id:
|
|
2337
|
+
id: import_zod23.z.string().describe("Identifier of the summary field."),
|
|
2549
2338
|
value: TranslationConfig.describe(
|
|
2550
2339
|
'Field value template supporting variables from configuration and EventMetadata (e.g. "{informant.phoneNo} {informant.email}").'
|
|
2551
2340
|
),
|
|
2552
2341
|
label: TranslationConfig
|
|
2553
2342
|
}).describe("Custom field defined for the summary view.");
|
|
2554
|
-
var SummaryConfig =
|
|
2555
|
-
fields:
|
|
2343
|
+
var SummaryConfig = import_zod23.z.object({
|
|
2344
|
+
fields: import_zod23.z.array(import_zod23.z.union([Field, ReferenceField])).describe("Fields displayed in the event summary view.")
|
|
2556
2345
|
}).describe("Configuration of the event summary section.");
|
|
2557
2346
|
|
|
2558
2347
|
// ../commons/src/events/AdvancedSearchConfig.ts
|
|
2559
|
-
var
|
|
2560
|
-
var MatchType =
|
|
2561
|
-
var BaseField3 =
|
|
2562
|
-
config:
|
|
2348
|
+
var import_zod24 = require("zod");
|
|
2349
|
+
var MatchType = import_zod24.z.enum(["fuzzy", "exact", "range", "within"]);
|
|
2350
|
+
var BaseField3 = import_zod24.z.object({
|
|
2351
|
+
config: import_zod24.z.object({
|
|
2563
2352
|
type: MatchType.describe(
|
|
2564
2353
|
"Determines the search type of field. How to match value."
|
|
2565
2354
|
),
|
|
2566
|
-
searchFields:
|
|
2355
|
+
searchFields: import_zod24.z.array(import_zod24.z.string()).optional().describe(
|
|
2567
2356
|
`
|
|
2568
2357
|
Defines multiple form fields that should be searched when this field has a value.
|
|
2569
2358
|
All specified fields will be combined using OR logic.
|
|
@@ -2573,7 +2362,7 @@ var BaseField3 = z26.object({
|
|
|
2573
2362
|
`
|
|
2574
2363
|
)
|
|
2575
2364
|
}),
|
|
2576
|
-
type:
|
|
2365
|
+
type: import_zod24.z.nativeEnum(FieldType).optional().describe(
|
|
2577
2366
|
`
|
|
2578
2367
|
Explicitly specify the field type for searchFields.
|
|
2579
2368
|
This is required when searchFields is defined, to show the correct control in the UI.
|
|
@@ -2587,7 +2376,7 @@ var BaseField3 = z26.object({
|
|
|
2587
2376
|
This is required when searchFields is defined.
|
|
2588
2377
|
`
|
|
2589
2378
|
),
|
|
2590
|
-
options:
|
|
2379
|
+
options: import_zod24.z.array(SelectOption).optional(),
|
|
2591
2380
|
searchCriteriaLabelPrefix: TranslationConfig.optional().describe(
|
|
2592
2381
|
`
|
|
2593
2382
|
This property determines whether to add a prefix (such as "Child" or "Applicant") before the field label
|
|
@@ -2608,7 +2397,7 @@ var BaseField3 = z26.object({
|
|
|
2608
2397
|
in the country-config > event.advancedSearch configuration. For example: field("child.dob", { searchCriteriaLabelPrefix: TranslationConfig }).
|
|
2609
2398
|
`
|
|
2610
2399
|
),
|
|
2611
|
-
conditionals:
|
|
2400
|
+
conditionals: import_zod24.z.array(FieldConditional).default([]).optional().describe(
|
|
2612
2401
|
`
|
|
2613
2402
|
In advanced search, we sometimes need to override the default field visibility conditionals.
|
|
2614
2403
|
|
|
@@ -2622,20 +2411,20 @@ var BaseField3 = z26.object({
|
|
|
2622
2411
|
are always rendered in the advanced search form.
|
|
2623
2412
|
`
|
|
2624
2413
|
),
|
|
2625
|
-
validations:
|
|
2414
|
+
validations: import_zod24.z.array(ValidationConfig).default([]).optional().describe(
|
|
2626
2415
|
`Option for overriding the field validations specifically for advanced search form.`
|
|
2627
2416
|
)
|
|
2628
2417
|
});
|
|
2629
|
-
var SearchQueryParams =
|
|
2630
|
-
eventType:
|
|
2418
|
+
var SearchQueryParams = import_zod24.z.object({
|
|
2419
|
+
eventType: import_zod24.z.string().optional().describe(
|
|
2631
2420
|
"Defines type of event so that when redirecting to Advanced Search page, appropriate tab can be selected"
|
|
2632
2421
|
)
|
|
2633
2422
|
}).catchall(FieldValue);
|
|
2634
2423
|
var FieldConfigSchema = BaseField3.extend({
|
|
2635
|
-
fieldId:
|
|
2636
|
-
fieldType:
|
|
2424
|
+
fieldId: import_zod24.z.string(),
|
|
2425
|
+
fieldType: import_zod24.z.literal("field")
|
|
2637
2426
|
});
|
|
2638
|
-
var EventFieldIdInput =
|
|
2427
|
+
var EventFieldIdInput = import_zod24.z.enum([
|
|
2639
2428
|
"trackingId",
|
|
2640
2429
|
"status",
|
|
2641
2430
|
"legalStatuses.REGISTERED.acceptedAt",
|
|
@@ -2644,7 +2433,7 @@ var EventFieldIdInput = z26.enum([
|
|
|
2644
2433
|
"updatedAt"
|
|
2645
2434
|
]);
|
|
2646
2435
|
var METADATA_FIELD_PREFIX = "event.";
|
|
2647
|
-
var EventFieldId =
|
|
2436
|
+
var EventFieldId = import_zod24.z.enum([
|
|
2648
2437
|
`${METADATA_FIELD_PREFIX}trackingId`,
|
|
2649
2438
|
`${METADATA_FIELD_PREFIX}status`,
|
|
2650
2439
|
`${METADATA_FIELD_PREFIX}legalStatuses.REGISTERED.acceptedAt`,
|
|
@@ -2654,29 +2443,29 @@ var EventFieldId = z26.enum([
|
|
|
2654
2443
|
]);
|
|
2655
2444
|
var EventFieldConfigSchema = BaseField3.extend({
|
|
2656
2445
|
fieldId: EventFieldId,
|
|
2657
|
-
fieldType:
|
|
2446
|
+
fieldType: import_zod24.z.literal("event")
|
|
2658
2447
|
});
|
|
2659
|
-
var AdvancedSearchField =
|
|
2448
|
+
var AdvancedSearchField = import_zod24.z.discriminatedUnion("fieldType", [FieldConfigSchema, EventFieldConfigSchema]).superRefine((data, ctx) => {
|
|
2660
2449
|
if (data.config.searchFields && data.config.searchFields.length > 0) {
|
|
2661
2450
|
if (!data.label) {
|
|
2662
2451
|
ctx.addIssue({
|
|
2663
|
-
code:
|
|
2452
|
+
code: import_zod24.z.ZodIssueCode.custom,
|
|
2664
2453
|
message: "label is required when config.searchFields is defined.",
|
|
2665
2454
|
path: ["label"]
|
|
2666
2455
|
});
|
|
2667
2456
|
}
|
|
2668
2457
|
if (!data.type) {
|
|
2669
2458
|
ctx.addIssue({
|
|
2670
|
-
code:
|
|
2459
|
+
code: import_zod24.z.ZodIssueCode.custom,
|
|
2671
2460
|
message: "type is required when config.searchFields is defined.",
|
|
2672
2461
|
path: ["type"]
|
|
2673
2462
|
});
|
|
2674
2463
|
}
|
|
2675
2464
|
}
|
|
2676
2465
|
});
|
|
2677
|
-
var AdvancedSearchConfig =
|
|
2466
|
+
var AdvancedSearchConfig = import_zod24.z.object({
|
|
2678
2467
|
title: TranslationConfig.describe("Advanced search tab title"),
|
|
2679
|
-
fields:
|
|
2468
|
+
fields: import_zod24.z.array(AdvancedSearchField).describe("Advanced search fields within the tab.")
|
|
2680
2469
|
});
|
|
2681
2470
|
|
|
2682
2471
|
// ../commons/src/events/utils.ts
|
|
@@ -2685,11 +2474,11 @@ var import_lodash = require("lodash");
|
|
|
2685
2474
|
// ../commons/src/conditionals/validate.ts
|
|
2686
2475
|
var import__ = __toESM(require("ajv/dist/2019"));
|
|
2687
2476
|
var import_ajv_formats = __toESM(require("ajv-formats"));
|
|
2688
|
-
var
|
|
2477
|
+
var import_zod26 = require("zod");
|
|
2689
2478
|
var import_date_fns = require("date-fns");
|
|
2690
2479
|
|
|
2691
2480
|
// ../commons/src/events/DynamicFieldValue.ts
|
|
2692
|
-
var
|
|
2481
|
+
var import_zod25 = require("zod");
|
|
2693
2482
|
|
|
2694
2483
|
// ../commons/src/conditionals/validate.ts
|
|
2695
2484
|
var ajv = new import__.default({
|
|
@@ -2698,9 +2487,9 @@ var ajv = new import__.default({
|
|
|
2698
2487
|
strict: false
|
|
2699
2488
|
// Allow minContains and other newer features
|
|
2700
2489
|
});
|
|
2701
|
-
var DataContext =
|
|
2702
|
-
rootData:
|
|
2703
|
-
$leafAdminStructureLocationIds:
|
|
2490
|
+
var DataContext = import_zod26.z.object({
|
|
2491
|
+
rootData: import_zod26.z.object({
|
|
2492
|
+
$leafAdminStructureLocationIds: import_zod26.z.array(import_zod26.z.object({ id: UUID }))
|
|
2704
2493
|
})
|
|
2705
2494
|
});
|
|
2706
2495
|
function resolveDataPath(rootData, dataPath, instancePath) {
|
|
@@ -2777,12 +2566,12 @@ ajv.addKeyword({
|
|
|
2777
2566
|
});
|
|
2778
2567
|
|
|
2779
2568
|
// ../commons/src/utils.ts
|
|
2780
|
-
var
|
|
2781
|
-
var FullNameV1 =
|
|
2782
|
-
|
|
2783
|
-
use:
|
|
2784
|
-
family:
|
|
2785
|
-
given:
|
|
2569
|
+
var z27 = __toESM(require("zod"));
|
|
2570
|
+
var FullNameV1 = z27.array(
|
|
2571
|
+
z27.object({
|
|
2572
|
+
use: z27.string(),
|
|
2573
|
+
family: z27.string(),
|
|
2574
|
+
given: z27.array(z27.string())
|
|
2786
2575
|
})
|
|
2787
2576
|
);
|
|
2788
2577
|
function omitKeyDeep(obj, keyToRemove) {
|
|
@@ -2803,6 +2592,9 @@ function omitKeyDeep(obj, keyToRemove) {
|
|
|
2803
2592
|
|
|
2804
2593
|
// ../commons/src/events/utils.ts
|
|
2805
2594
|
var import_date_fns2 = require("date-fns");
|
|
2595
|
+
function isDeclarationActionConfig(action) {
|
|
2596
|
+
return DeclarationActions.safeParse(action.type).success;
|
|
2597
|
+
}
|
|
2806
2598
|
function getDeclarationFields(configuration) {
|
|
2807
2599
|
return configuration.declaration.pages.flatMap(({ fields }) => fields);
|
|
2808
2600
|
}
|
|
@@ -2813,10 +2605,7 @@ var getActionAnnotationFields = (actionConfig) => {
|
|
|
2813
2605
|
if (actionConfig.type === ActionType.PRINT_CERTIFICATE) {
|
|
2814
2606
|
return actionConfig.printForm.pages.flatMap(({ fields }) => fields);
|
|
2815
2607
|
}
|
|
2816
|
-
if (actionConfig
|
|
2817
|
-
return actionConfig.form;
|
|
2818
|
-
}
|
|
2819
|
-
if ("review" in actionConfig) {
|
|
2608
|
+
if (isDeclarationActionConfig(actionConfig)) {
|
|
2820
2609
|
return actionConfig.review.fields;
|
|
2821
2610
|
}
|
|
2822
2611
|
return [];
|
|
@@ -2836,8 +2625,38 @@ var EXCLUDED_ACTIONS = [
|
|
|
2836
2625
|
ActionType.REJECT_CORRECTION
|
|
2837
2626
|
];
|
|
2838
2627
|
|
|
2839
|
-
// ../commons/src/events/
|
|
2840
|
-
|
|
2628
|
+
// ../commons/src/events/EventConfig.ts
|
|
2629
|
+
var import_zod_openapi10 = require("zod-openapi");
|
|
2630
|
+
(0, import_zod_openapi10.extendZodWithOpenApi)(import_zod27.z);
|
|
2631
|
+
var EventConfig = import_zod27.z.object({
|
|
2632
|
+
id: import_zod27.z.string().describe(
|
|
2633
|
+
'Machine-readable identifier of the event (e.g. "birth", "death").'
|
|
2634
|
+
),
|
|
2635
|
+
dateOfEvent: FieldReference.optional().describe(
|
|
2636
|
+
"Reference to the field capturing the date of the event (e.g. date of birth). Defaults to the event creation date if unspecified."
|
|
2637
|
+
),
|
|
2638
|
+
title: TranslationConfig.describe(
|
|
2639
|
+
'Title template for the singular event, supporting variables (e.g. "{applicant.name.firstname} {applicant.name.surname}").'
|
|
2640
|
+
),
|
|
2641
|
+
fallbackTitle: TranslationConfig.optional().describe(
|
|
2642
|
+
"Fallback title shown when the main title resolves to an empty value."
|
|
2643
|
+
),
|
|
2644
|
+
summary: SummaryConfig.describe(
|
|
2645
|
+
"Summary information displayed in the event overview."
|
|
2646
|
+
),
|
|
2647
|
+
label: TranslationConfig.describe(
|
|
2648
|
+
"Human-readable label for the event type."
|
|
2649
|
+
),
|
|
2650
|
+
actions: import_zod27.z.array(ActionConfig).describe(
|
|
2651
|
+
"Configuration of system-defined actions associated with the event."
|
|
2652
|
+
),
|
|
2653
|
+
declaration: DeclarationFormConfig.describe(
|
|
2654
|
+
"Configuration of the form used to gather event data."
|
|
2655
|
+
),
|
|
2656
|
+
advancedSearch: import_zod27.z.array(AdvancedSearchConfig).optional().default([]).describe(
|
|
2657
|
+
"Configuration of fields available in the advanced search feature."
|
|
2658
|
+
)
|
|
2659
|
+
}).superRefine((event2, ctx) => {
|
|
2841
2660
|
const allFields = findAllFields(event2);
|
|
2842
2661
|
const fieldIds = allFields.map((field3) => field3.id);
|
|
2843
2662
|
const advancedSearchFields = event2.advancedSearch.flatMap(
|
|
@@ -2864,12 +2683,10 @@ function validateAdvancedSearchConfig(event2, ctx) {
|
|
|
2864
2683
|
ctx.addIssue({
|
|
2865
2684
|
code: "custom",
|
|
2866
2685
|
message: `Advanced search id must match a field id of form fields or pre-defined metadata fields.
|
|
2867
|
-
|
|
2686
|
+
Invalid AdvancedSearch field IDs for event ${event2.id}: ${invalidFields.map((f) => f.fieldId).join(", ")}`,
|
|
2868
2687
|
path: ["advancedSearch"]
|
|
2869
2688
|
});
|
|
2870
2689
|
}
|
|
2871
|
-
}
|
|
2872
|
-
function validateDateOfEvent(event2, ctx) {
|
|
2873
2690
|
if (event2.dateOfEvent) {
|
|
2874
2691
|
const eventDateFieldId = getDeclarationFields(event2).find(
|
|
2875
2692
|
({ id }) => id === event2.dateOfEvent?.$$field
|
|
@@ -2878,7 +2695,7 @@ function validateDateOfEvent(event2, ctx) {
|
|
|
2878
2695
|
ctx.addIssue({
|
|
2879
2696
|
code: "custom",
|
|
2880
2697
|
message: `Date of event field id must match a field id in fields array.
|
|
2881
|
-
|
|
2698
|
+
Invalid date of event field ID for event ${event2.id}: ${event2.dateOfEvent.$$field}`,
|
|
2882
2699
|
path: ["dateOfEvent"]
|
|
2883
2700
|
});
|
|
2884
2701
|
} else if (eventDateFieldId.type !== FieldType.DATE) {
|
|
@@ -2889,105 +2706,8 @@ function validateDateOfEvent(event2, ctx) {
|
|
|
2889
2706
|
});
|
|
2890
2707
|
}
|
|
2891
2708
|
}
|
|
2892
|
-
}
|
|
2893
|
-
|
|
2894
|
-
if (event2.placeOfEvent) {
|
|
2895
|
-
const eventPlaceFieldId = getDeclarationFields(event2).find(
|
|
2896
|
-
({ id }) => id === event2.placeOfEvent?.$$field
|
|
2897
|
-
);
|
|
2898
|
-
if (!eventPlaceFieldId) {
|
|
2899
|
-
ctx.addIssue({
|
|
2900
|
-
code: "custom",
|
|
2901
|
-
message: `Place of event field id must match a field id in the event.declaration fields.
|
|
2902
|
-
Invalid place of event field ID for event ${event2.id}: ${event2.placeOfEvent.$$field}`,
|
|
2903
|
-
path: ["placeOfEvent"]
|
|
2904
|
-
});
|
|
2905
|
-
}
|
|
2906
|
-
}
|
|
2907
|
-
}
|
|
2908
|
-
function validateActionFlags(event2, ctx) {
|
|
2909
|
-
const isInherentFlag = (value) => Object.values(InherentFlags).includes(value);
|
|
2910
|
-
const configuredFlagIds = event2.flags.map((flag) => flag.id);
|
|
2911
|
-
const actionFlagIds = event2.actions.flatMap(
|
|
2912
|
-
(action) => action.flags.map((flag) => flag.id)
|
|
2913
|
-
);
|
|
2914
|
-
for (const actionFlagId of actionFlagIds) {
|
|
2915
|
-
const isConfigured = configuredFlagIds.includes(actionFlagId);
|
|
2916
|
-
const isInherent = isInherentFlag(actionFlagId);
|
|
2917
|
-
if (!isConfigured && !isInherent) {
|
|
2918
|
-
ctx.addIssue({
|
|
2919
|
-
code: "custom",
|
|
2920
|
-
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}'`,
|
|
2921
|
-
path: ["actions"]
|
|
2922
|
-
});
|
|
2923
|
-
}
|
|
2924
|
-
}
|
|
2925
|
-
}
|
|
2926
|
-
function validateActionOrder(event2, ctx) {
|
|
2927
|
-
if (event2.actionOrder) {
|
|
2928
|
-
const customActionTypes = event2.actions.filter((action) => action.type === ActionType.CUSTOM).map((action) => action.customActionType);
|
|
2929
|
-
const validActionTypes = [
|
|
2930
|
-
...workqueueActions.options,
|
|
2931
|
-
...customActionTypes
|
|
2932
|
-
];
|
|
2933
|
-
for (const actionType of event2.actionOrder) {
|
|
2934
|
-
if (!validActionTypes.includes(actionType)) {
|
|
2935
|
-
ctx.addIssue({
|
|
2936
|
-
code: "custom",
|
|
2937
|
-
message: `Invalid action type in action order: ${actionType}`,
|
|
2938
|
-
path: ["actionOrder"]
|
|
2939
|
-
});
|
|
2940
|
-
}
|
|
2941
|
-
}
|
|
2942
|
-
}
|
|
2943
|
-
}
|
|
2944
|
-
|
|
2945
|
-
// ../commons/src/events/EventConfig.ts
|
|
2946
|
-
var EventConfig = z30.object({
|
|
2947
|
-
id: z30.string().describe(
|
|
2948
|
-
'Machine-readable identifier of the event (e.g. "birth", "death").'
|
|
2949
|
-
),
|
|
2950
|
-
dateOfEvent: FieldReference.optional().describe(
|
|
2951
|
-
"Reference to the field capturing the date of the event (e.g. date of birth). Defaults to the event creation date if unspecified."
|
|
2952
|
-
),
|
|
2953
|
-
placeOfEvent: FieldReference.optional().describe(
|
|
2954
|
-
"Reference to the field capturing the place of the event (e.g. place of birth). Defaults to the meta.createdAtLocation if unspecified."
|
|
2955
|
-
),
|
|
2956
|
-
title: TranslationConfig.describe(
|
|
2957
|
-
'Title template for the singular event, supporting variables (e.g. "{applicant.name.firstname} {applicant.name.surname}").'
|
|
2958
|
-
),
|
|
2959
|
-
fallbackTitle: TranslationConfig.optional().describe(
|
|
2960
|
-
"Fallback title shown when the main title resolves to an empty value."
|
|
2961
|
-
),
|
|
2962
|
-
summary: SummaryConfig.describe(
|
|
2963
|
-
"Summary information displayed in the event overview."
|
|
2964
|
-
),
|
|
2965
|
-
label: TranslationConfig.describe(
|
|
2966
|
-
"Human-readable label for the event type."
|
|
2967
|
-
),
|
|
2968
|
-
actions: z30.array(ActionConfig).describe(
|
|
2969
|
-
"Configuration of system-defined actions associated with the event."
|
|
2970
|
-
),
|
|
2971
|
-
actionOrder: z30.array(z30.string()).optional().describe(
|
|
2972
|
-
"Order of actions in the action menu. Use either the action type for core actions or the customActionType for custom actions."
|
|
2973
|
-
),
|
|
2974
|
-
declaration: DeclarationFormConfig.describe(
|
|
2975
|
-
"Configuration of the form used to gather event data."
|
|
2976
|
-
),
|
|
2977
|
-
advancedSearch: z30.array(AdvancedSearchConfig).optional().default([]).describe(
|
|
2978
|
-
"Configuration of fields available in the advanced search feature."
|
|
2979
|
-
),
|
|
2980
|
-
flags: z30.array(FlagConfig).optional().default([]).describe(
|
|
2981
|
-
"Configuration of flags associated with the actions of this event type."
|
|
2982
|
-
)
|
|
2983
|
-
}).superRefine((event2, ctx) => {
|
|
2984
|
-
validateAdvancedSearchConfig(event2, ctx);
|
|
2985
|
-
validateDateOfEvent(event2, ctx);
|
|
2986
|
-
validatePlaceOfEvent(event2, ctx);
|
|
2987
|
-
validateActionFlags(event2, ctx);
|
|
2988
|
-
validateActionOrder(event2, ctx);
|
|
2989
|
-
}).meta({
|
|
2990
|
-
id: "EventConfig"
|
|
2709
|
+
}).openapi({
|
|
2710
|
+
ref: "EventConfig"
|
|
2991
2711
|
}).describe("Configuration defining an event type.");
|
|
2992
2712
|
|
|
2993
2713
|
// ../commons/src/events/EventConfigInput.ts
|
|
@@ -2996,7 +2716,7 @@ var defineActionForm = (actionForm) => ActionFormConfig.parse(actionForm);
|
|
|
2996
2716
|
var defineFormPage = (formPage) => FormPageConfig.parse(formPage);
|
|
2997
2717
|
|
|
2998
2718
|
// ../commons/src/events/WorkqueueConfig.ts
|
|
2999
|
-
var
|
|
2719
|
+
var import_zod31 = require("zod");
|
|
3000
2720
|
|
|
3001
2721
|
// ../commons/src/conditionals/conditionals.ts
|
|
3002
2722
|
var objectHash = __toESM(require("object-hash"));
|
|
@@ -3034,7 +2754,7 @@ function not(condition) {
|
|
|
3034
2754
|
required: []
|
|
3035
2755
|
});
|
|
3036
2756
|
}
|
|
3037
|
-
function
|
|
2757
|
+
function never() {
|
|
3038
2758
|
return not(alwaysTrue());
|
|
3039
2759
|
}
|
|
3040
2760
|
function jsonFieldPath(field3) {
|
|
@@ -3744,17 +3464,17 @@ var event = Object.assign(eventFn, {
|
|
|
3744
3464
|
});
|
|
3745
3465
|
|
|
3746
3466
|
// ../commons/src/events/WorkqueueColumnConfig.ts
|
|
3747
|
-
var
|
|
3467
|
+
var import_zod28 = require("zod");
|
|
3748
3468
|
var WorkqueueColumnKeysArray = [
|
|
3749
3469
|
...EventMetadataKeysArray,
|
|
3750
3470
|
"title",
|
|
3751
3471
|
"outbox"
|
|
3752
3472
|
];
|
|
3753
|
-
var WorkqueueColumnKeys =
|
|
3754
|
-
var WorkqueueColumnValue =
|
|
3473
|
+
var WorkqueueColumnKeys = import_zod28.z.enum(WorkqueueColumnKeysArray);
|
|
3474
|
+
var WorkqueueColumnValue = import_zod28.z.object({
|
|
3755
3475
|
$event: WorkqueueColumnKeys
|
|
3756
3476
|
});
|
|
3757
|
-
var WorkqueueColumn =
|
|
3477
|
+
var WorkqueueColumn = import_zod28.z.object({
|
|
3758
3478
|
label: TranslationConfig,
|
|
3759
3479
|
value: WorkqueueColumnValue
|
|
3760
3480
|
});
|
|
@@ -3765,49 +3485,158 @@ function defineWorkqueuesColumns(workqueueColumns) {
|
|
|
3765
3485
|
}
|
|
3766
3486
|
|
|
3767
3487
|
// ../commons/src/events/CountryConfigQueryInput.ts
|
|
3768
|
-
var
|
|
3769
|
-
var SerializableExact =
|
|
3770
|
-
type:
|
|
3771
|
-
term:
|
|
3772
|
-
});
|
|
3773
|
-
var SerializableWithin =
|
|
3774
|
-
type:
|
|
3775
|
-
location:
|
|
3776
|
-
});
|
|
3777
|
-
var SerializedQueryExpression =
|
|
3778
|
-
eventType:
|
|
3779
|
-
status:
|
|
3780
|
-
createdAt:
|
|
3781
|
-
updatedAt:
|
|
3782
|
-
"legalStatuses.REGISTERED.createdAt":
|
|
3783
|
-
"legalStatuses.
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3488
|
+
var import_zod29 = require("zod");
|
|
3489
|
+
var SerializableExact = import_zod29.z.object({
|
|
3490
|
+
type: import_zod29.z.literal("exact"),
|
|
3491
|
+
term: import_zod29.z.union([import_zod29.z.string(), SerializedUserField])
|
|
3492
|
+
});
|
|
3493
|
+
var SerializableWithin = import_zod29.z.object({
|
|
3494
|
+
type: import_zod29.z.literal("within"),
|
|
3495
|
+
location: import_zod29.z.union([import_zod29.z.string(), SerializedUserField])
|
|
3496
|
+
});
|
|
3497
|
+
var SerializedQueryExpression = import_zod29.z.object({
|
|
3498
|
+
eventType: import_zod29.z.string(),
|
|
3499
|
+
status: import_zod29.z.optional(import_zod29.z.union([AnyOfStatus, ExactStatus])),
|
|
3500
|
+
createdAt: import_zod29.z.optional(DateCondition),
|
|
3501
|
+
updatedAt: import_zod29.z.optional(DateCondition),
|
|
3502
|
+
"legalStatuses.REGISTERED.createdAt": import_zod29.z.optional(DateCondition),
|
|
3503
|
+
"legalStatuses.REGISTERED.createdAtLocation": import_zod29.z.optional(
|
|
3504
|
+
import_zod29.z.union([Within, Exact])
|
|
3505
|
+
),
|
|
3506
|
+
"legalStatuses.REGISTERED.registrationNumber": import_zod29.z.optional(Exact),
|
|
3507
|
+
createdAtLocation: import_zod29.z.optional(
|
|
3508
|
+
import_zod29.z.union([SerializableWithin, SerializableExact])
|
|
3509
|
+
),
|
|
3510
|
+
updatedAtLocation: import_zod29.z.optional(
|
|
3511
|
+
import_zod29.z.union([SerializableWithin, SerializableExact])
|
|
3512
|
+
),
|
|
3513
|
+
assignedTo: import_zod29.z.optional(SerializableExact),
|
|
3514
|
+
createdBy: import_zod29.z.optional(SerializableExact),
|
|
3790
3515
|
createdByUserType: ExactUserType,
|
|
3791
|
-
updatedBy:
|
|
3792
|
-
trackingId:
|
|
3793
|
-
flags:
|
|
3516
|
+
updatedBy: import_zod29.z.optional(SerializableExact),
|
|
3517
|
+
trackingId: import_zod29.z.optional(Exact),
|
|
3518
|
+
flags: import_zod29.z.optional(ContainsFlags),
|
|
3794
3519
|
data: QueryInput
|
|
3795
3520
|
}).partial();
|
|
3796
|
-
var Or2 =
|
|
3797
|
-
type:
|
|
3798
|
-
clauses:
|
|
3521
|
+
var Or2 = import_zod29.z.object({
|
|
3522
|
+
type: import_zod29.z.literal("or"),
|
|
3523
|
+
clauses: import_zod29.z.array(SerializedQueryExpression)
|
|
3799
3524
|
});
|
|
3800
|
-
var And2 =
|
|
3801
|
-
type:
|
|
3802
|
-
clauses:
|
|
3525
|
+
var And2 = import_zod29.z.object({
|
|
3526
|
+
type: import_zod29.z.literal("and"),
|
|
3527
|
+
clauses: import_zod29.z.array(SerializedQueryExpression)
|
|
3803
3528
|
});
|
|
3804
|
-
var CountryConfigQueryType =
|
|
3805
|
-
var CountryConfigQueryInputType =
|
|
3529
|
+
var CountryConfigQueryType = import_zod29.z.discriminatedUnion("type", [And2, Or2]);
|
|
3530
|
+
var CountryConfigQueryInputType = import_zod29.z.union([
|
|
3806
3531
|
SerializedQueryExpression,
|
|
3807
3532
|
And2,
|
|
3808
3533
|
Or2
|
|
3809
3534
|
]);
|
|
3810
3535
|
|
|
3536
|
+
// ../commons/src/icons.ts
|
|
3537
|
+
var import_zod30 = require("zod");
|
|
3538
|
+
var AvailableIcons = import_zod30.z.enum([
|
|
3539
|
+
"Archived",
|
|
3540
|
+
"Assigned",
|
|
3541
|
+
"Certified",
|
|
3542
|
+
"Close",
|
|
3543
|
+
"Collapse",
|
|
3544
|
+
"Draft",
|
|
3545
|
+
"DuplicateYellow",
|
|
3546
|
+
"Expand",
|
|
3547
|
+
"ExternalValidate",
|
|
3548
|
+
"FilledCheck",
|
|
3549
|
+
"InReview",
|
|
3550
|
+
"Offline",
|
|
3551
|
+
"Registered",
|
|
3552
|
+
"RequiresUpdates",
|
|
3553
|
+
"Sent",
|
|
3554
|
+
"Validated",
|
|
3555
|
+
"WaitingApproval",
|
|
3556
|
+
"ChartActivity",
|
|
3557
|
+
"Activity",
|
|
3558
|
+
"Archive",
|
|
3559
|
+
"ArchiveTray",
|
|
3560
|
+
"ArrowLeft",
|
|
3561
|
+
"ArrowRight",
|
|
3562
|
+
"Buildings",
|
|
3563
|
+
"Circle",
|
|
3564
|
+
"CaretDown",
|
|
3565
|
+
"CaretLeft",
|
|
3566
|
+
"CaretRight",
|
|
3567
|
+
"ChartBar",
|
|
3568
|
+
"ChartLine",
|
|
3569
|
+
"ChatCircle",
|
|
3570
|
+
"CheckSquare",
|
|
3571
|
+
"Compass",
|
|
3572
|
+
"Check",
|
|
3573
|
+
"Copy",
|
|
3574
|
+
"Database",
|
|
3575
|
+
"DotsThreeVertical",
|
|
3576
|
+
"ArrowCounterClockwise",
|
|
3577
|
+
"MagnifyingGlassMinus",
|
|
3578
|
+
"MagnifyingGlassPlus",
|
|
3579
|
+
"Export",
|
|
3580
|
+
"Eye",
|
|
3581
|
+
"EyeSlash",
|
|
3582
|
+
"Envelope",
|
|
3583
|
+
"File",
|
|
3584
|
+
"FileSearch",
|
|
3585
|
+
"FileMinus",
|
|
3586
|
+
"FilePlus",
|
|
3587
|
+
"FileText",
|
|
3588
|
+
"FileX",
|
|
3589
|
+
"Handshake",
|
|
3590
|
+
"Gear",
|
|
3591
|
+
"GitBranch",
|
|
3592
|
+
"IdentificationCard",
|
|
3593
|
+
"List",
|
|
3594
|
+
"ListBullets",
|
|
3595
|
+
"Lock",
|
|
3596
|
+
"MagnifyingGlass",
|
|
3597
|
+
"MapPin",
|
|
3598
|
+
"Medal",
|
|
3599
|
+
"NotePencil",
|
|
3600
|
+
"Paperclip",
|
|
3601
|
+
"PaperPlaneTilt",
|
|
3602
|
+
"Pen",
|
|
3603
|
+
"Pencil",
|
|
3604
|
+
"PencilSimpleLine",
|
|
3605
|
+
"Phone",
|
|
3606
|
+
"Plus",
|
|
3607
|
+
"Printer",
|
|
3608
|
+
"SignOut",
|
|
3609
|
+
"Star",
|
|
3610
|
+
"Target",
|
|
3611
|
+
"TextT",
|
|
3612
|
+
"Trash",
|
|
3613
|
+
"UploadSimple",
|
|
3614
|
+
"User",
|
|
3615
|
+
"UserPlus",
|
|
3616
|
+
"Users",
|
|
3617
|
+
"WarningCircle",
|
|
3618
|
+
"X",
|
|
3619
|
+
"CircleWavyCheck",
|
|
3620
|
+
"CircleWavyQuestion",
|
|
3621
|
+
"ArchiveBox",
|
|
3622
|
+
"ArrowCircleDown",
|
|
3623
|
+
"FileArrowUp",
|
|
3624
|
+
"FileDotted",
|
|
3625
|
+
"Files",
|
|
3626
|
+
"PencilLine",
|
|
3627
|
+
"PencilCircle",
|
|
3628
|
+
"UserCircle",
|
|
3629
|
+
"Clock",
|
|
3630
|
+
"QrCode",
|
|
3631
|
+
"Webcam",
|
|
3632
|
+
"Sun",
|
|
3633
|
+
"DeviceTabletCamera",
|
|
3634
|
+
"Globe",
|
|
3635
|
+
"Fingerprint",
|
|
3636
|
+
"PushPin",
|
|
3637
|
+
"Timer"
|
|
3638
|
+
]);
|
|
3639
|
+
|
|
3811
3640
|
// ../commons/src/events/WorkqueueConfig.ts
|
|
3812
3641
|
var mandatoryColumns = defineWorkqueuesColumns([
|
|
3813
3642
|
{
|
|
@@ -3827,17 +3656,23 @@ var mandatoryColumns = defineWorkqueuesColumns([
|
|
|
3827
3656
|
value: event.field("updatedAt")
|
|
3828
3657
|
}
|
|
3829
3658
|
]);
|
|
3830
|
-
var
|
|
3831
|
-
|
|
3832
|
-
|
|
3659
|
+
var WorkqueueActionsWithDefault = import_zod31.z.enum([
|
|
3660
|
+
...workqueueActions.options,
|
|
3661
|
+
"DEFAULT"
|
|
3662
|
+
]);
|
|
3663
|
+
var WorkqueueConfig = import_zod31.z.object({
|
|
3664
|
+
slug: import_zod31.z.string().describe("Determines the url of the workqueue."),
|
|
3833
3665
|
name: TranslationConfig.describe(
|
|
3834
3666
|
"Title of the workflow (both in navigation and on the page)"
|
|
3835
3667
|
),
|
|
3836
3668
|
query: CountryConfigQueryType,
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3669
|
+
actions: import_zod31.z.array(
|
|
3670
|
+
import_zod31.z.object({
|
|
3671
|
+
type: WorkqueueActionsWithDefault,
|
|
3672
|
+
conditionals: import_zod31.z.array(Conditional).optional()
|
|
3673
|
+
})
|
|
3674
|
+
),
|
|
3675
|
+
columns: import_zod31.z.array(WorkqueueColumn).default(mandatoryColumns),
|
|
3841
3676
|
icon: AvailableIcons,
|
|
3842
3677
|
emptyMessage: TranslationConfig.optional()
|
|
3843
3678
|
}).describe("Configuration for workqueue.");
|
|
@@ -3845,21 +3680,26 @@ var WorkqueueConfigWithoutQuery = WorkqueueConfig.omit({
|
|
|
3845
3680
|
query: true,
|
|
3846
3681
|
columns: true
|
|
3847
3682
|
});
|
|
3848
|
-
var WorkqueueConfigInput =
|
|
3849
|
-
slug:
|
|
3683
|
+
var WorkqueueConfigInput = import_zod31.z.object({
|
|
3684
|
+
slug: import_zod31.z.string().describe("Determines the url of the workqueue."),
|
|
3850
3685
|
name: TranslationConfig.describe(
|
|
3851
3686
|
"Title of the workflow (both in navigation and on the page)"
|
|
3852
3687
|
),
|
|
3853
3688
|
query: CountryConfigQueryInputType,
|
|
3854
|
-
actions:
|
|
3855
|
-
|
|
3689
|
+
actions: import_zod31.z.array(
|
|
3690
|
+
import_zod31.z.object({
|
|
3691
|
+
type: WorkqueueActionsWithDefault,
|
|
3692
|
+
conditionals: import_zod31.z.array(Conditional).optional()
|
|
3693
|
+
})
|
|
3694
|
+
),
|
|
3695
|
+
columns: import_zod31.z.array(WorkqueueColumn).default(mandatoryColumns),
|
|
3856
3696
|
icon: AvailableIcons,
|
|
3857
3697
|
emptyMessage: TranslationConfig.optional()
|
|
3858
3698
|
});
|
|
3859
|
-
var WorkqueueCountInput =
|
|
3860
|
-
|
|
3699
|
+
var WorkqueueCountInput = import_zod31.z.array(
|
|
3700
|
+
import_zod31.z.object({ slug: import_zod31.z.string(), query: QueryType })
|
|
3861
3701
|
);
|
|
3862
|
-
var WorkqueueCountOutput =
|
|
3702
|
+
var WorkqueueCountOutput = import_zod31.z.record(import_zod31.z.string(), import_zod31.z.number());
|
|
3863
3703
|
|
|
3864
3704
|
// ../commons/src/events/workqueueDefaultColumns.ts
|
|
3865
3705
|
var defaultWorkqueueColumns = [
|
|
@@ -3882,48 +3722,47 @@ var defaultWorkqueueColumns = [
|
|
|
3882
3722
|
];
|
|
3883
3723
|
|
|
3884
3724
|
// ../commons/src/events/Draft.ts
|
|
3885
|
-
var
|
|
3725
|
+
var import_zod33 = require("zod");
|
|
3886
3726
|
|
|
3887
3727
|
// ../commons/src/events/ActionInput.ts
|
|
3888
|
-
var
|
|
3889
|
-
var
|
|
3728
|
+
var import_zod32 = require("zod");
|
|
3729
|
+
var import_zod_openapi11 = require("zod-openapi");
|
|
3730
|
+
(0, import_zod_openapi11.extendZodWithOpenApi)(import_zod32.z);
|
|
3731
|
+
var BaseActionInput = import_zod32.z.object({
|
|
3890
3732
|
eventId: UUID,
|
|
3891
|
-
transactionId:
|
|
3733
|
+
transactionId: import_zod32.z.string(),
|
|
3892
3734
|
declaration: ActionUpdate.default({}),
|
|
3893
3735
|
annotation: ActionUpdate.optional(),
|
|
3894
3736
|
originalActionId: UUID.optional(),
|
|
3895
3737
|
// should not be part of base action.
|
|
3896
|
-
keepAssignment:
|
|
3738
|
+
keepAssignment: import_zod32.z.boolean().optional(),
|
|
3897
3739
|
// For normal users, the createdAtLocation is resolved on the backend from the user's primaryOfficeId.
|
|
3898
|
-
|
|
3899
|
-
createdAtLocation: UUID.nullish().describe(
|
|
3740
|
+
createdAtLocation: CreatedAtLocation.describe(
|
|
3900
3741
|
"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."
|
|
3901
3742
|
)
|
|
3902
3743
|
});
|
|
3903
|
-
var CreateActionInput = BaseActionInput.
|
|
3904
|
-
|
|
3905
|
-
type:
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
"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."
|
|
3909
|
-
)
|
|
3910
|
-
}).shape
|
|
3744
|
+
var CreateActionInput = BaseActionInput.merge(
|
|
3745
|
+
import_zod32.z.object({
|
|
3746
|
+
type: import_zod32.z.literal(ActionType.CREATE).default(ActionType.CREATE),
|
|
3747
|
+
createdAtLocation: CreatedAtLocation
|
|
3748
|
+
})
|
|
3911
3749
|
);
|
|
3912
|
-
var RegisterActionInput = BaseActionInput.
|
|
3913
|
-
|
|
3914
|
-
type:
|
|
3915
|
-
registrationNumber:
|
|
3916
|
-
})
|
|
3750
|
+
var RegisterActionInput = BaseActionInput.merge(
|
|
3751
|
+
import_zod32.z.object({
|
|
3752
|
+
type: import_zod32.z.literal(ActionType.REGISTER).default(ActionType.REGISTER),
|
|
3753
|
+
registrationNumber: import_zod32.z.string().optional()
|
|
3754
|
+
})
|
|
3755
|
+
).strict();
|
|
3756
|
+
var ValidateActionInput = BaseActionInput.merge(
|
|
3757
|
+
import_zod32.z.object({
|
|
3758
|
+
type: import_zod32.z.literal(ActionType.VALIDATE).default(ActionType.VALIDATE)
|
|
3759
|
+
})
|
|
3917
3760
|
);
|
|
3918
|
-
var NotifyActionInput = BaseActionInput.
|
|
3919
|
-
|
|
3920
|
-
type:
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
"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."
|
|
3924
|
-
)
|
|
3925
|
-
}).shape
|
|
3926
|
-
).meta({
|
|
3761
|
+
var NotifyActionInput = BaseActionInput.merge(
|
|
3762
|
+
import_zod32.z.object({
|
|
3763
|
+
type: import_zod32.z.literal(ActionType.NOTIFY).default(ActionType.NOTIFY)
|
|
3764
|
+
})
|
|
3765
|
+
).openapi({
|
|
3927
3766
|
default: {
|
|
3928
3767
|
eventId: "<event-id-here>",
|
|
3929
3768
|
transactionId: getUUID(),
|
|
@@ -3932,150 +3771,135 @@ var NotifyActionInput = BaseActionInput.extend(
|
|
|
3932
3771
|
type: ActionType.NOTIFY
|
|
3933
3772
|
}
|
|
3934
3773
|
});
|
|
3935
|
-
var DeclareActionInput = BaseActionInput.
|
|
3936
|
-
|
|
3937
|
-
type:
|
|
3938
|
-
})
|
|
3939
|
-
);
|
|
3940
|
-
var EditActionInput = BaseActionInput.extend(
|
|
3941
|
-
z34.object({
|
|
3942
|
-
type: z34.literal(ActionType.EDIT).default(ActionType.EDIT),
|
|
3943
|
-
content: z34.object({
|
|
3944
|
-
comment: z34.string().describe("Comment for the edit action.").optional()
|
|
3945
|
-
})
|
|
3946
|
-
}).shape
|
|
3774
|
+
var DeclareActionInput = BaseActionInput.merge(
|
|
3775
|
+
import_zod32.z.object({
|
|
3776
|
+
type: import_zod32.z.literal(ActionType.DECLARE).default(ActionType.DECLARE)
|
|
3777
|
+
})
|
|
3947
3778
|
);
|
|
3948
|
-
var PrintCertificateActionInput = BaseActionInput.
|
|
3949
|
-
|
|
3950
|
-
type:
|
|
3779
|
+
var PrintCertificateActionInput = BaseActionInput.merge(
|
|
3780
|
+
import_zod32.z.object({
|
|
3781
|
+
type: import_zod32.z.literal(ActionType.PRINT_CERTIFICATE).default(ActionType.PRINT_CERTIFICATE),
|
|
3951
3782
|
content: PrintContent.optional()
|
|
3952
|
-
})
|
|
3783
|
+
})
|
|
3953
3784
|
);
|
|
3954
|
-
var RejectDeclarationActionInput = BaseActionInput.
|
|
3955
|
-
|
|
3956
|
-
type:
|
|
3785
|
+
var RejectDeclarationActionInput = BaseActionInput.merge(
|
|
3786
|
+
import_zod32.z.object({
|
|
3787
|
+
type: import_zod32.z.literal(ActionType.REJECT).default(ActionType.REJECT),
|
|
3957
3788
|
content: ReasonContent
|
|
3958
|
-
})
|
|
3789
|
+
})
|
|
3959
3790
|
);
|
|
3960
|
-
var DuplicateDetectedActionInput = BaseActionInput.
|
|
3961
|
-
|
|
3962
|
-
type:
|
|
3963
|
-
content:
|
|
3964
|
-
duplicates:
|
|
3791
|
+
var DuplicateDetectedActionInput = BaseActionInput.merge(
|
|
3792
|
+
import_zod32.z.object({
|
|
3793
|
+
type: import_zod32.z.literal(ActionType.DUPLICATE_DETECTED).default(ActionType.DUPLICATE_DETECTED),
|
|
3794
|
+
content: import_zod32.z.object({
|
|
3795
|
+
duplicates: import_zod32.z.array(PotentialDuplicate)
|
|
3965
3796
|
})
|
|
3966
|
-
})
|
|
3797
|
+
})
|
|
3967
3798
|
);
|
|
3968
|
-
var MarkAsDuplicateActionInput = BaseActionInput.
|
|
3969
|
-
|
|
3970
|
-
type:
|
|
3971
|
-
content:
|
|
3799
|
+
var MarkAsDuplicateActionInput = BaseActionInput.merge(
|
|
3800
|
+
import_zod32.z.object({
|
|
3801
|
+
type: import_zod32.z.literal(ActionType.MARK_AS_DUPLICATE).default(ActionType.MARK_AS_DUPLICATE),
|
|
3802
|
+
content: import_zod32.z.object({
|
|
3972
3803
|
duplicateOf: UUID
|
|
3973
3804
|
}).optional()
|
|
3974
|
-
})
|
|
3805
|
+
})
|
|
3975
3806
|
);
|
|
3976
|
-
var MarkNotDuplicateActionInput = BaseActionInput.
|
|
3977
|
-
|
|
3978
|
-
type:
|
|
3979
|
-
})
|
|
3807
|
+
var MarkNotDuplicateActionInput = BaseActionInput.merge(
|
|
3808
|
+
import_zod32.z.object({
|
|
3809
|
+
type: import_zod32.z.literal(ActionType.MARK_AS_NOT_DUPLICATE).default(ActionType.MARK_AS_NOT_DUPLICATE)
|
|
3810
|
+
})
|
|
3980
3811
|
);
|
|
3981
|
-
var ArchiveActionInput = BaseActionInput.
|
|
3982
|
-
|
|
3983
|
-
type:
|
|
3812
|
+
var ArchiveActionInput = BaseActionInput.merge(
|
|
3813
|
+
import_zod32.z.object({
|
|
3814
|
+
type: import_zod32.z.literal(ActionType.ARCHIVE).default(ActionType.ARCHIVE),
|
|
3984
3815
|
content: ReasonContent
|
|
3985
|
-
})
|
|
3816
|
+
})
|
|
3986
3817
|
);
|
|
3987
|
-
var AssignActionInput = BaseActionInput.
|
|
3988
|
-
|
|
3989
|
-
type:
|
|
3990
|
-
assignedTo:
|
|
3991
|
-
})
|
|
3818
|
+
var AssignActionInput = BaseActionInput.merge(
|
|
3819
|
+
import_zod32.z.object({
|
|
3820
|
+
type: import_zod32.z.literal(ActionType.ASSIGN),
|
|
3821
|
+
assignedTo: import_zod32.z.string()
|
|
3822
|
+
})
|
|
3992
3823
|
);
|
|
3993
|
-
var UnassignActionInput = BaseActionInput.
|
|
3994
|
-
|
|
3995
|
-
type:
|
|
3996
|
-
assignedTo:
|
|
3997
|
-
})
|
|
3824
|
+
var UnassignActionInput = BaseActionInput.merge(
|
|
3825
|
+
import_zod32.z.object({
|
|
3826
|
+
type: import_zod32.z.literal(ActionType.UNASSIGN).default(ActionType.UNASSIGN),
|
|
3827
|
+
assignedTo: import_zod32.z.literal(null).default(null)
|
|
3828
|
+
})
|
|
3998
3829
|
);
|
|
3999
|
-
var RequestCorrectionActionInput = BaseActionInput.
|
|
4000
|
-
|
|
4001
|
-
type:
|
|
4002
|
-
})
|
|
3830
|
+
var RequestCorrectionActionInput = BaseActionInput.merge(
|
|
3831
|
+
import_zod32.z.object({
|
|
3832
|
+
type: import_zod32.z.literal(ActionType.REQUEST_CORRECTION).default(ActionType.REQUEST_CORRECTION)
|
|
3833
|
+
})
|
|
4003
3834
|
);
|
|
4004
|
-
var RejectCorrectionActionInput = BaseActionInput.
|
|
4005
|
-
|
|
4006
|
-
requestId:
|
|
4007
|
-
type:
|
|
3835
|
+
var RejectCorrectionActionInput = BaseActionInput.merge(
|
|
3836
|
+
import_zod32.z.object({
|
|
3837
|
+
requestId: import_zod32.z.string(),
|
|
3838
|
+
type: import_zod32.z.literal(ActionType.REJECT_CORRECTION).default(ActionType.REJECT_CORRECTION),
|
|
4008
3839
|
content: ReasonContent
|
|
4009
|
-
})
|
|
4010
|
-
);
|
|
4011
|
-
var ApproveCorrectionActionInput = BaseActionInput.extend(
|
|
4012
|
-
z34.object({
|
|
4013
|
-
requestId: z34.string(),
|
|
4014
|
-
type: z34.literal(ActionType.APPROVE_CORRECTION).default(ActionType.APPROVE_CORRECTION)
|
|
4015
|
-
}).shape
|
|
3840
|
+
})
|
|
4016
3841
|
);
|
|
4017
|
-
var
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
3842
|
+
var ApproveCorrectionActionInput = BaseActionInput.merge(
|
|
3843
|
+
import_zod32.z.object({
|
|
3844
|
+
requestId: import_zod32.z.string(),
|
|
3845
|
+
type: import_zod32.z.literal(ActionType.APPROVE_CORRECTION).default(ActionType.APPROVE_CORRECTION)
|
|
3846
|
+
})
|
|
4021
3847
|
);
|
|
4022
|
-
var
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
customActionType: z34.string().describe("Name of the custom action.")
|
|
4027
|
-
}).shape
|
|
3848
|
+
var ReadActionInput = BaseActionInput.merge(
|
|
3849
|
+
import_zod32.z.object({
|
|
3850
|
+
type: import_zod32.z.literal(ActionType.READ).default(ActionType.READ)
|
|
3851
|
+
})
|
|
4028
3852
|
);
|
|
4029
|
-
var
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
3853
|
+
var DeleteActionInput = import_zod32.z.object({ eventId: UUID });
|
|
3854
|
+
var ActionInput = import_zod32.z.discriminatedUnion("type", [
|
|
3855
|
+
CreateActionInput.openapi({ ref: "CreateActionInput" }),
|
|
3856
|
+
ValidateActionInput.openapi({ ref: "ValidateActionInput" }),
|
|
3857
|
+
RegisterActionInput.openapi({ ref: "RegisterActionInput" }),
|
|
3858
|
+
NotifyActionInput.openapi({ ref: "NotifyActionInput" }),
|
|
3859
|
+
DeclareActionInput.openapi({ ref: "DeclareActionInput" }),
|
|
3860
|
+
RejectDeclarationActionInput.openapi({
|
|
3861
|
+
ref: "RejectDeclarationActionInput"
|
|
4036
3862
|
}),
|
|
4037
|
-
DuplicateDetectedActionInput.
|
|
4038
|
-
|
|
3863
|
+
DuplicateDetectedActionInput.openapi({
|
|
3864
|
+
ref: "DuplicateDetectedActionInput"
|
|
4039
3865
|
}),
|
|
4040
|
-
MarkAsDuplicateActionInput.
|
|
4041
|
-
|
|
3866
|
+
MarkAsDuplicateActionInput.openapi({
|
|
3867
|
+
ref: "MarkAsDuplicateActionInput"
|
|
4042
3868
|
}),
|
|
4043
|
-
MarkNotDuplicateActionInput.
|
|
4044
|
-
|
|
3869
|
+
MarkNotDuplicateActionInput.openapi({
|
|
3870
|
+
ref: "MarkNotDuplicateActionInput"
|
|
4045
3871
|
}),
|
|
4046
|
-
ArchiveActionInput.
|
|
4047
|
-
AssignActionInput.
|
|
4048
|
-
UnassignActionInput.
|
|
4049
|
-
PrintCertificateActionInput.
|
|
4050
|
-
RequestCorrectionActionInput.
|
|
4051
|
-
|
|
3872
|
+
ArchiveActionInput.openapi({ ref: "ArchiveActionInput" }),
|
|
3873
|
+
AssignActionInput.openapi({ ref: "AssignActionInput" }),
|
|
3874
|
+
UnassignActionInput.openapi({ ref: "UnassignActionInput" }),
|
|
3875
|
+
PrintCertificateActionInput.openapi({ ref: "PrintCertificateActionInput" }),
|
|
3876
|
+
RequestCorrectionActionInput.openapi({
|
|
3877
|
+
ref: "RequestCorrectionActionInput"
|
|
4052
3878
|
}),
|
|
4053
|
-
RejectCorrectionActionInput.
|
|
4054
|
-
ApproveCorrectionActionInput.
|
|
4055
|
-
|
|
3879
|
+
RejectCorrectionActionInput.openapi({ ref: "RejectCorrectionActionInput" }),
|
|
3880
|
+
ApproveCorrectionActionInput.openapi({
|
|
3881
|
+
ref: "ApproveCorrectionActionInput"
|
|
4056
3882
|
}),
|
|
4057
|
-
ReadActionInput.
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
]).meta({
|
|
4061
|
-
id: "ActionInput"
|
|
3883
|
+
ReadActionInput.openapi({ ref: "ReadActionInput" })
|
|
3884
|
+
]).openapi({
|
|
3885
|
+
ref: "ActionInput"
|
|
4062
3886
|
});
|
|
4063
3887
|
|
|
4064
3888
|
// ../commons/src/events/Draft.ts
|
|
4065
|
-
var Draft =
|
|
3889
|
+
var Draft = import_zod33.z.object({
|
|
4066
3890
|
id: UUID,
|
|
4067
3891
|
eventId: UUID,
|
|
4068
|
-
transactionId:
|
|
4069
|
-
createdAt:
|
|
3892
|
+
transactionId: import_zod33.z.string(),
|
|
3893
|
+
createdAt: import_zod33.z.string().datetime(),
|
|
4070
3894
|
action: ActionBase.extend({
|
|
4071
|
-
type: ActionTypes.exclude([ActionTypes.
|
|
3895
|
+
type: ActionTypes.exclude([ActionTypes.Enum.DELETE])
|
|
4072
3896
|
}).omit({ id: true, createdAtLocation: true })
|
|
4073
3897
|
}).describe(
|
|
4074
3898
|
"A temporary storage for an action. Stored with details of the event, creator and creation time."
|
|
4075
3899
|
);
|
|
4076
3900
|
var DraftInput = BaseActionInput.extend({
|
|
4077
|
-
type: ActionTypes.exclude([ActionTypes.
|
|
4078
|
-
status:
|
|
3901
|
+
type: ActionTypes.exclude([ActionTypes.Enum.DELETE]),
|
|
3902
|
+
status: import_zod33.z.enum([
|
|
4079
3903
|
ActionStatus.Requested,
|
|
4080
3904
|
ActionStatus.Accepted,
|
|
4081
3905
|
ActionStatus.Rejected
|
|
@@ -4083,33 +3907,32 @@ var DraftInput = BaseActionInput.extend({
|
|
|
4083
3907
|
});
|
|
4084
3908
|
|
|
4085
3909
|
// ../commons/src/events/EventInput.ts
|
|
4086
|
-
var
|
|
4087
|
-
var
|
|
4088
|
-
var EventInput =
|
|
4089
|
-
transactionId:
|
|
4090
|
-
type:
|
|
4091
|
-
|
|
4092
|
-
"Location where the event occurred. Required for system users."
|
|
4093
|
-
)
|
|
4094
|
-
}).meta({ default: { transactionId: (0, import_uuid9.v4)(), type: "birth" } });
|
|
3910
|
+
var import_zod34 = require("zod");
|
|
3911
|
+
var import_uuid10 = require("uuid");
|
|
3912
|
+
var EventInput = import_zod34.z.object({
|
|
3913
|
+
transactionId: import_zod34.z.string(),
|
|
3914
|
+
type: import_zod34.z.string()
|
|
3915
|
+
}).openapi({ default: { transactionId: (0, import_uuid10.v4)(), type: "birth" } });
|
|
4095
3916
|
|
|
4096
3917
|
// ../commons/src/events/EventDocument.ts
|
|
4097
|
-
var
|
|
4098
|
-
var
|
|
3918
|
+
var import_zod35 = require("zod");
|
|
3919
|
+
var import_zod_openapi12 = require("zod-openapi");
|
|
3920
|
+
(0, import_zod_openapi12.extendZodWithOpenApi)(import_zod35.z);
|
|
3921
|
+
var EventDocument = import_zod35.z.object({
|
|
4099
3922
|
id: UUID.describe("Unique identifier of the event."),
|
|
4100
|
-
type:
|
|
4101
|
-
createdAt:
|
|
4102
|
-
updatedAt:
|
|
3923
|
+
type: import_zod35.z.string().describe("Type of the event (e.g. birth, death, marriage)."),
|
|
3924
|
+
createdAt: import_zod35.z.string().datetime().describe("Timestamp indicating when the event was created."),
|
|
3925
|
+
updatedAt: import_zod35.z.string().datetime().describe(
|
|
4103
3926
|
"Timestamp of the last update, excluding changes from actions."
|
|
4104
3927
|
),
|
|
4105
|
-
actions:
|
|
4106
|
-
trackingId:
|
|
3928
|
+
actions: import_zod35.z.array(Action).describe("Ordered list of actions associated with the event."),
|
|
3929
|
+
trackingId: import_zod35.z.string().describe(
|
|
4107
3930
|
"System-generated tracking identifier used to look up the event."
|
|
4108
3931
|
)
|
|
4109
|
-
}).
|
|
3932
|
+
}).openapi({ ref: "EventDocument" });
|
|
4110
3933
|
|
|
4111
3934
|
// ../commons/src/events/state/index.ts
|
|
4112
|
-
var
|
|
3935
|
+
var import_lodash3 = require("lodash");
|
|
4113
3936
|
|
|
4114
3937
|
// ../commons/src/events/state/utils.ts
|
|
4115
3938
|
var import_lodash2 = require("lodash");
|
|
@@ -4117,18 +3940,14 @@ var updateActions = ActionTypes.extract([
|
|
|
4117
3940
|
ActionType.CREATE,
|
|
4118
3941
|
ActionType.NOTIFY,
|
|
4119
3942
|
ActionType.DECLARE,
|
|
3943
|
+
ActionType.VALIDATE,
|
|
4120
3944
|
ActionType.REGISTER,
|
|
4121
3945
|
ActionType.REJECT,
|
|
4122
3946
|
ActionType.ARCHIVE,
|
|
4123
3947
|
ActionType.PRINT_CERTIFICATE,
|
|
4124
|
-
ActionType.REQUEST_CORRECTION
|
|
4125
|
-
ActionType.CUSTOM
|
|
3948
|
+
ActionType.REQUEST_CORRECTION
|
|
4126
3949
|
]);
|
|
4127
3950
|
|
|
4128
|
-
// ../commons/src/events/state/flags.ts
|
|
4129
|
-
var import_lodash3 = require("lodash");
|
|
4130
|
-
var import_date_fns3 = require("date-fns");
|
|
4131
|
-
|
|
4132
3951
|
// ../commons/src/events/defineConfig.ts
|
|
4133
3952
|
var defineConfig = (config) => {
|
|
4134
3953
|
const input = EventConfig.parse(config);
|
|
@@ -4136,7 +3955,7 @@ var defineConfig = (config) => {
|
|
|
4136
3955
|
};
|
|
4137
3956
|
|
|
4138
3957
|
// ../commons/src/events/test.utils.ts
|
|
4139
|
-
var
|
|
3958
|
+
var import_lodash4 = require("lodash");
|
|
4140
3959
|
var import_date_fns4 = require("date-fns");
|
|
4141
3960
|
|
|
4142
3961
|
// ../commons/src/field-config/field-configuration.ts
|
|
@@ -4158,6 +3977,7 @@ function field(fieldId, options = {}) {
|
|
|
4158
3977
|
}
|
|
4159
3978
|
|
|
4160
3979
|
// ../commons/src/fixtures/forms.ts
|
|
3980
|
+
var import_date_fns3 = require("date-fns");
|
|
4161
3981
|
var PRINT_CERTIFICATE_FORM = defineActionForm({
|
|
4162
3982
|
label: {
|
|
4163
3983
|
id: "event.tennis-club-membership.action.certificate.form.label",
|
|
@@ -4957,7 +4777,7 @@ var TENNIS_CLUB_DECLARATION_FORM = defineDeclarationForm({
|
|
|
4957
4777
|
conditionals: [
|
|
4958
4778
|
{
|
|
4959
4779
|
type: ConditionalType.DISPLAY_ON_REVIEW,
|
|
4960
|
-
conditional:
|
|
4780
|
+
conditional: never()
|
|
4961
4781
|
}
|
|
4962
4782
|
]
|
|
4963
4783
|
},
|
|
@@ -5340,16 +5160,119 @@ var TENNIS_CLUB_DECLARATION_FORM = defineDeclarationForm({
|
|
|
5340
5160
|
}
|
|
5341
5161
|
}
|
|
5342
5162
|
],
|
|
5343
|
-
conditional: not(
|
|
5163
|
+
conditional: not(never())
|
|
5344
5164
|
// Intentional always-true page conditional to exercise interactions between page-level and field-level conditionals in tests
|
|
5345
5165
|
}
|
|
5346
5166
|
]
|
|
5347
5167
|
});
|
|
5168
|
+
var statusOptions = [
|
|
5169
|
+
{
|
|
5170
|
+
value: "ALL",
|
|
5171
|
+
label: {
|
|
5172
|
+
defaultMessage: "Any status",
|
|
5173
|
+
description: "Option for form field: status of record",
|
|
5174
|
+
id: "advancedSearch.form.recordStatusAny"
|
|
5175
|
+
}
|
|
5176
|
+
},
|
|
5177
|
+
{
|
|
5178
|
+
value: EventStatus.enum.CREATED,
|
|
5179
|
+
label: {
|
|
5180
|
+
defaultMessage: "Draft",
|
|
5181
|
+
description: "Option for form field: status of record",
|
|
5182
|
+
id: "advancedSearch.form.recordStatusCreated"
|
|
5183
|
+
}
|
|
5184
|
+
},
|
|
5185
|
+
{
|
|
5186
|
+
value: EventStatus.enum.NOTIFIED,
|
|
5187
|
+
label: {
|
|
5188
|
+
defaultMessage: "Notified",
|
|
5189
|
+
description: "Option for form field: status of record",
|
|
5190
|
+
id: "advancedSearch.form.recordStatusNotified"
|
|
5191
|
+
}
|
|
5192
|
+
},
|
|
5193
|
+
{
|
|
5194
|
+
value: EventStatus.enum.DECLARED,
|
|
5195
|
+
label: {
|
|
5196
|
+
defaultMessage: "Declared",
|
|
5197
|
+
description: "Option for form field: status of record",
|
|
5198
|
+
id: "advancedSearch.form.recordStatusDeclared"
|
|
5199
|
+
}
|
|
5200
|
+
},
|
|
5201
|
+
{
|
|
5202
|
+
value: EventStatus.enum.VALIDATED,
|
|
5203
|
+
label: {
|
|
5204
|
+
defaultMessage: "Validated",
|
|
5205
|
+
description: "Option for form field: status of record",
|
|
5206
|
+
id: "advancedSearch.form.recordStatusValidated"
|
|
5207
|
+
}
|
|
5208
|
+
},
|
|
5209
|
+
{
|
|
5210
|
+
value: EventStatus.enum.REGISTERED,
|
|
5211
|
+
label: {
|
|
5212
|
+
defaultMessage: "Registered",
|
|
5213
|
+
description: "Option for form field: status of record",
|
|
5214
|
+
id: "advancedSearch.form.recordStatusRegistered"
|
|
5215
|
+
}
|
|
5216
|
+
},
|
|
5217
|
+
{
|
|
5218
|
+
value: EventStatus.enum.ARCHIVED,
|
|
5219
|
+
label: {
|
|
5220
|
+
defaultMessage: "Archived",
|
|
5221
|
+
description: "Option for form field: status of record",
|
|
5222
|
+
id: "advancedSearch.form.recordStatusArchived"
|
|
5223
|
+
}
|
|
5224
|
+
}
|
|
5225
|
+
];
|
|
5226
|
+
var timePeriodOptions = [
|
|
5227
|
+
{
|
|
5228
|
+
label: {
|
|
5229
|
+
defaultMessage: "Last 7 days",
|
|
5230
|
+
description: "Label for option of time period select: last 7 days",
|
|
5231
|
+
id: "form.section.label.timePeriodLast7Days"
|
|
5232
|
+
},
|
|
5233
|
+
value: `${(0, import_date_fns3.format)((0, import_date_fns3.subDays)(/* @__PURE__ */ new Date(), 7), "yyyy-MM-dd")},${(0, import_date_fns3.format)(
|
|
5234
|
+
/* @__PURE__ */ new Date(),
|
|
5235
|
+
"yyyy-MM-dd"
|
|
5236
|
+
)}`
|
|
5237
|
+
},
|
|
5238
|
+
{
|
|
5239
|
+
label: {
|
|
5240
|
+
defaultMessage: "Last 30 days",
|
|
5241
|
+
description: "Label for option of time period select: last 30 days",
|
|
5242
|
+
id: "form.section.label.timePeriodLast30Days"
|
|
5243
|
+
},
|
|
5244
|
+
value: `${(0, import_date_fns3.format)((0, import_date_fns3.subMonths)(/* @__PURE__ */ new Date(), 1), "yyyy-MM-dd")},${(0, import_date_fns3.format)(
|
|
5245
|
+
/* @__PURE__ */ new Date(),
|
|
5246
|
+
"yyyy-MM-dd"
|
|
5247
|
+
)}`
|
|
5248
|
+
},
|
|
5249
|
+
{
|
|
5250
|
+
label: {
|
|
5251
|
+
defaultMessage: "Last 90 days",
|
|
5252
|
+
description: "Label for option of time period select: last 90 days",
|
|
5253
|
+
id: "form.section.label.timePeriodLast90Days"
|
|
5254
|
+
},
|
|
5255
|
+
value: `${(0, import_date_fns3.format)((0, import_date_fns3.subQuarters)(/* @__PURE__ */ new Date(), 1), "yyyy-MM-dd")},${(0, import_date_fns3.format)(
|
|
5256
|
+
/* @__PURE__ */ new Date(),
|
|
5257
|
+
"yyyy-MM-dd"
|
|
5258
|
+
)}`
|
|
5259
|
+
},
|
|
5260
|
+
{
|
|
5261
|
+
label: {
|
|
5262
|
+
defaultMessage: "Last year",
|
|
5263
|
+
description: "Label for option of time period select: last year",
|
|
5264
|
+
id: "form.section.label.timePeriodLastYear"
|
|
5265
|
+
},
|
|
5266
|
+
value: `${(0, import_date_fns3.format)((0, import_date_fns3.subYears)(/* @__PURE__ */ new Date(), 1), "yyyy-MM-dd")},${(0, import_date_fns3.format)(
|
|
5267
|
+
/* @__PURE__ */ new Date(),
|
|
5268
|
+
"yyyy-MM-dd"
|
|
5269
|
+
)}`
|
|
5270
|
+
}
|
|
5271
|
+
];
|
|
5348
5272
|
|
|
5349
5273
|
// ../commons/src/fixtures/tennis-club-membership-event.ts
|
|
5350
5274
|
var tennisClubMembershipEvent = defineConfig({
|
|
5351
5275
|
id: TENNIS_CLUB_MEMBERSHIP,
|
|
5352
|
-
declaration: TENNIS_CLUB_DECLARATION_FORM,
|
|
5353
5276
|
label: {
|
|
5354
5277
|
defaultMessage: "Tennis club membership application",
|
|
5355
5278
|
description: "This is what this event is referred as in the system",
|
|
@@ -5400,12 +5323,13 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5400
5323
|
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5401
5324
|
},
|
|
5402
5325
|
{
|
|
5403
|
-
type: ActionType.
|
|
5326
|
+
type: ActionType.VALIDATE,
|
|
5404
5327
|
label: {
|
|
5405
|
-
defaultMessage: "
|
|
5328
|
+
defaultMessage: "Validate",
|
|
5406
5329
|
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5407
|
-
id: "event.tennis-club-membership.action.
|
|
5408
|
-
}
|
|
5330
|
+
id: "event.tennis-club-membership.action.validate.label"
|
|
5331
|
+
},
|
|
5332
|
+
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5409
5333
|
},
|
|
5410
5334
|
{
|
|
5411
5335
|
type: ActionType.REGISTER,
|
|
@@ -5413,7 +5337,8 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5413
5337
|
defaultMessage: "Register",
|
|
5414
5338
|
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5415
5339
|
id: "event.tennis-club-membership.action.register.label"
|
|
5416
|
-
}
|
|
5340
|
+
},
|
|
5341
|
+
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5417
5342
|
},
|
|
5418
5343
|
{
|
|
5419
5344
|
type: ActionType.REQUEST_CORRECTION,
|
|
@@ -5616,6 +5541,14 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5616
5541
|
]
|
|
5617
5542
|
}
|
|
5618
5543
|
},
|
|
5544
|
+
{
|
|
5545
|
+
type: ActionType.APPROVE_CORRECTION,
|
|
5546
|
+
label: {
|
|
5547
|
+
defaultMessage: "Approve correction",
|
|
5548
|
+
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5549
|
+
id: "event.tennis-club-membership.action.correction.approve.label"
|
|
5550
|
+
}
|
|
5551
|
+
},
|
|
5619
5552
|
{
|
|
5620
5553
|
type: ActionType.PRINT_CERTIFICATE,
|
|
5621
5554
|
label: {
|
|
@@ -5624,6 +5557,22 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5624
5557
|
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5625
5558
|
},
|
|
5626
5559
|
printForm: PRINT_CERTIFICATE_FORM
|
|
5560
|
+
},
|
|
5561
|
+
{
|
|
5562
|
+
type: ActionType.ARCHIVE,
|
|
5563
|
+
label: {
|
|
5564
|
+
id: "event.tennis-club-membership.action.archive.label",
|
|
5565
|
+
defaultMessage: "Archive",
|
|
5566
|
+
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5567
|
+
}
|
|
5568
|
+
},
|
|
5569
|
+
{
|
|
5570
|
+
type: ActionType.REJECT,
|
|
5571
|
+
label: {
|
|
5572
|
+
id: "event.tennis-club-membership.action.reject.label",
|
|
5573
|
+
defaultMessage: "Reject",
|
|
5574
|
+
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5575
|
+
}
|
|
5627
5576
|
}
|
|
5628
5577
|
],
|
|
5629
5578
|
advancedSearch: [
|
|
@@ -5660,7 +5609,8 @@ var tennisClubMembershipEvent = defineConfig({
|
|
|
5660
5609
|
},
|
|
5661
5610
|
fields: [field("recommender.name").fuzzy()]
|
|
5662
5611
|
}
|
|
5663
|
-
]
|
|
5612
|
+
],
|
|
5613
|
+
declaration: TENNIS_CLUB_DECLARATION_FORM
|
|
5664
5614
|
});
|
|
5665
5615
|
|
|
5666
5616
|
// ../commons/src/fixtures/football-club-membership-event.ts
|
|
@@ -5728,13 +5678,23 @@ var footballClubMembershipEvent = defineConfig({
|
|
|
5728
5678
|
},
|
|
5729
5679
|
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5730
5680
|
},
|
|
5681
|
+
{
|
|
5682
|
+
type: ActionType.VALIDATE,
|
|
5683
|
+
label: {
|
|
5684
|
+
defaultMessage: "Validate",
|
|
5685
|
+
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5686
|
+
id: "event.football-club-membership.action.validate.label"
|
|
5687
|
+
},
|
|
5688
|
+
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5689
|
+
},
|
|
5731
5690
|
{
|
|
5732
5691
|
type: ActionType.REGISTER,
|
|
5733
5692
|
label: {
|
|
5734
5693
|
defaultMessage: "Register",
|
|
5735
5694
|
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5736
5695
|
id: "event.football-club-membership.action.register.label"
|
|
5737
|
-
}
|
|
5696
|
+
},
|
|
5697
|
+
review: TENNIS_CLUB_DECLARATION_REVIEW
|
|
5738
5698
|
},
|
|
5739
5699
|
{
|
|
5740
5700
|
type: ActionType.REQUEST_CORRECTION,
|
|
@@ -5940,6 +5900,14 @@ var footballClubMembershipEvent = defineConfig({
|
|
|
5940
5900
|
]
|
|
5941
5901
|
}
|
|
5942
5902
|
},
|
|
5903
|
+
{
|
|
5904
|
+
type: ActionType.APPROVE_CORRECTION,
|
|
5905
|
+
label: {
|
|
5906
|
+
defaultMessage: "Approve correction",
|
|
5907
|
+
description: "This is shown as the action name anywhere the user can trigger the action from",
|
|
5908
|
+
id: "event.football-club-membership.action.correction.approve.label"
|
|
5909
|
+
}
|
|
5910
|
+
},
|
|
5943
5911
|
{
|
|
5944
5912
|
type: ActionType.PRINT_CERTIFICATE,
|
|
5945
5913
|
label: {
|
|
@@ -5948,6 +5916,22 @@ var footballClubMembershipEvent = defineConfig({
|
|
|
5948
5916
|
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5949
5917
|
},
|
|
5950
5918
|
printForm: PRINT_CERTIFICATE_FORM
|
|
5919
|
+
},
|
|
5920
|
+
{
|
|
5921
|
+
type: ActionType.ARCHIVE,
|
|
5922
|
+
label: {
|
|
5923
|
+
id: "event.football-club-membership.action.archive.label",
|
|
5924
|
+
defaultMessage: "Archive",
|
|
5925
|
+
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5926
|
+
}
|
|
5927
|
+
},
|
|
5928
|
+
{
|
|
5929
|
+
type: ActionType.REJECT,
|
|
5930
|
+
label: {
|
|
5931
|
+
id: "event.football-club-membership.action.reject.label",
|
|
5932
|
+
defaultMessage: "Reject",
|
|
5933
|
+
description: "This is shown as the action name anywhere the user can trigger the action from"
|
|
5934
|
+
}
|
|
5951
5935
|
}
|
|
5952
5936
|
],
|
|
5953
5937
|
advancedSearch: [
|
|
@@ -6047,7 +6031,7 @@ var libraryMembershipEvent = defineConfig({
|
|
|
6047
6031
|
declaration: libraryMembershipForm
|
|
6048
6032
|
});
|
|
6049
6033
|
|
|
6050
|
-
// ../commons/src/fixtures/
|
|
6034
|
+
// ../commons/src/fixtures/v2-birth-event.ts
|
|
6051
6035
|
function generateTranslationConfig(message) {
|
|
6052
6036
|
return {
|
|
6053
6037
|
defaultMessage: message,
|
|
@@ -6076,61 +6060,6 @@ var child = defineFormPage({
|
|
|
6076
6060
|
secured: true,
|
|
6077
6061
|
validation: [],
|
|
6078
6062
|
label: generateTranslationConfig("Date of birth")
|
|
6079
|
-
},
|
|
6080
|
-
{
|
|
6081
|
-
id: "child.placeOfBirth",
|
|
6082
|
-
analytics: true,
|
|
6083
|
-
type: FieldType.SELECT,
|
|
6084
|
-
required: true,
|
|
6085
|
-
secured: true,
|
|
6086
|
-
label: {
|
|
6087
|
-
defaultMessage: "Place of delivery",
|
|
6088
|
-
description: "This is the label for the field",
|
|
6089
|
-
id: "event.birth.action.declare.form.section.child.field.placeOfBirth.label"
|
|
6090
|
-
},
|
|
6091
|
-
options: [
|
|
6092
|
-
{
|
|
6093
|
-
value: "child.placeOfBirth-SELECT-2",
|
|
6094
|
-
label: generateTranslationConfig("Health Institution")
|
|
6095
|
-
},
|
|
6096
|
-
{
|
|
6097
|
-
value: "PRIVATE_HOME",
|
|
6098
|
-
label: generateTranslationConfig("Residential address")
|
|
6099
|
-
}
|
|
6100
|
-
]
|
|
6101
|
-
},
|
|
6102
|
-
{
|
|
6103
|
-
id: "child.birthLocation",
|
|
6104
|
-
analytics: true,
|
|
6105
|
-
type: "FACILITY",
|
|
6106
|
-
required: true,
|
|
6107
|
-
secured: true,
|
|
6108
|
-
label: generateTranslationConfig("Health Institution"),
|
|
6109
|
-
conditionals: [
|
|
6110
|
-
{
|
|
6111
|
-
type: "SHOW",
|
|
6112
|
-
conditional: field("child.placeOfBirth").isEqualTo(
|
|
6113
|
-
"child.placeOfBirth-SELECT-2"
|
|
6114
|
-
)
|
|
6115
|
-
}
|
|
6116
|
-
]
|
|
6117
|
-
},
|
|
6118
|
-
{
|
|
6119
|
-
id: "child.birthLocation.privateHome",
|
|
6120
|
-
analytics: true,
|
|
6121
|
-
type: FieldType.ADDRESS,
|
|
6122
|
-
secured: true,
|
|
6123
|
-
hideLabel: true,
|
|
6124
|
-
label: generateTranslationConfig("Child's address"),
|
|
6125
|
-
conditionals: [
|
|
6126
|
-
{
|
|
6127
|
-
type: "SHOW",
|
|
6128
|
-
conditional: field("child.placeOfBirth").isEqualTo("PRIVATE_HOME")
|
|
6129
|
-
}
|
|
6130
|
-
],
|
|
6131
|
-
configuration: {
|
|
6132
|
-
streetAddressForm: []
|
|
6133
|
-
}
|
|
6134
6063
|
}
|
|
6135
6064
|
]
|
|
6136
6065
|
});
|
|
@@ -6234,7 +6163,7 @@ var mother = defineFormPage({
|
|
|
6234
6163
|
}
|
|
6235
6164
|
]
|
|
6236
6165
|
});
|
|
6237
|
-
var
|
|
6166
|
+
var BIRTH_DECLARATION_REVIEW = {
|
|
6238
6167
|
title: generateTranslationConfig(
|
|
6239
6168
|
"{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}}}}}"
|
|
6240
6169
|
),
|
|
@@ -6254,12 +6183,12 @@ var CHILD_ONBOARDING_DECLARATION_REVIEW = {
|
|
|
6254
6183
|
}
|
|
6255
6184
|
]
|
|
6256
6185
|
};
|
|
6257
|
-
var
|
|
6186
|
+
var BIRTH_DECLARATION_FORM = defineDeclarationForm({
|
|
6258
6187
|
label: generateTranslationConfig("Birth decalration form"),
|
|
6259
6188
|
pages: [child, mother]
|
|
6260
6189
|
});
|
|
6261
|
-
var
|
|
6262
|
-
id:
|
|
6190
|
+
var v2BirthEvent = defineConfig({
|
|
6191
|
+
id: BIRTH_EVENT,
|
|
6263
6192
|
title: generateTranslationConfig(
|
|
6264
6193
|
"{child.name.firstname} {child.name.surname}"
|
|
6265
6194
|
),
|
|
@@ -6267,21 +6196,27 @@ var ChildOnboardingEvent = defineConfig({
|
|
|
6267
6196
|
summary: {
|
|
6268
6197
|
fields: []
|
|
6269
6198
|
},
|
|
6270
|
-
declaration:
|
|
6199
|
+
declaration: BIRTH_DECLARATION_FORM,
|
|
6271
6200
|
actions: [
|
|
6272
6201
|
{
|
|
6273
6202
|
type: ActionType.READ,
|
|
6274
6203
|
label: generateTranslationConfig("Read"),
|
|
6275
|
-
review:
|
|
6204
|
+
review: BIRTH_DECLARATION_REVIEW
|
|
6276
6205
|
},
|
|
6277
6206
|
{
|
|
6278
6207
|
type: ActionType.DECLARE,
|
|
6279
6208
|
label: generateTranslationConfig("Declare"),
|
|
6280
|
-
review:
|
|
6209
|
+
review: BIRTH_DECLARATION_REVIEW
|
|
6210
|
+
},
|
|
6211
|
+
{
|
|
6212
|
+
type: ActionType.VALIDATE,
|
|
6213
|
+
label: generateTranslationConfig("Validate"),
|
|
6214
|
+
review: BIRTH_DECLARATION_REVIEW
|
|
6281
6215
|
},
|
|
6282
6216
|
{
|
|
6283
6217
|
type: ActionType.REGISTER,
|
|
6284
|
-
label: generateTranslationConfig("Register")
|
|
6218
|
+
label: generateTranslationConfig("Register"),
|
|
6219
|
+
review: BIRTH_DECLARATION_REVIEW
|
|
6285
6220
|
}
|
|
6286
6221
|
],
|
|
6287
6222
|
advancedSearch: []
|
|
@@ -6369,7 +6304,7 @@ var PRINT_DIGITAL_ID_CERTIFICATE_FORM = defineActionForm({
|
|
|
6369
6304
|
conditionals: [
|
|
6370
6305
|
{
|
|
6371
6306
|
type: ConditionalType.ENABLE,
|
|
6372
|
-
conditional:
|
|
6307
|
+
conditional: never()
|
|
6373
6308
|
},
|
|
6374
6309
|
{
|
|
6375
6310
|
type: ConditionalType.SHOW,
|
|
@@ -6396,7 +6331,7 @@ var PRINT_DIGITAL_ID_CERTIFICATE_FORM = defineActionForm({
|
|
|
6396
6331
|
conditionals: [
|
|
6397
6332
|
{
|
|
6398
6333
|
type: ConditionalType.ENABLE,
|
|
6399
|
-
conditional:
|
|
6334
|
+
conditional: never()
|
|
6400
6335
|
},
|
|
6401
6336
|
{
|
|
6402
6337
|
type: ConditionalType.SHOW,
|
|
@@ -6424,7 +6359,7 @@ var PRINT_DIGITAL_ID_CERTIFICATE_FORM = defineActionForm({
|
|
|
6424
6359
|
conditionals: [
|
|
6425
6360
|
{
|
|
6426
6361
|
type: ConditionalType.ENABLE,
|
|
6427
|
-
conditional:
|
|
6362
|
+
conditional: never()
|
|
6428
6363
|
}
|
|
6429
6364
|
],
|
|
6430
6365
|
value: field("identity.http-fetch").get("data.certificateId")
|
|
@@ -6502,8 +6437,8 @@ var digitalIdentityEvent = defineConfig({
|
|
|
6502
6437
|
});
|
|
6503
6438
|
|
|
6504
6439
|
// ../commons/src/events/test.utils.ts
|
|
6505
|
-
var
|
|
6506
|
-
var TestUserRole =
|
|
6440
|
+
var import_zod36 = require("zod");
|
|
6441
|
+
var TestUserRole = import_zod36.z.enum([
|
|
6507
6442
|
"FIELD_AGENT",
|
|
6508
6443
|
"LOCAL_REGISTRAR",
|
|
6509
6444
|
"LOCAL_SYSTEM_ADMIN",
|
|
@@ -6514,14 +6449,18 @@ var TestUserRole = z38.enum([
|
|
|
6514
6449
|
]);
|
|
6515
6450
|
|
|
6516
6451
|
// ../commons/src/events/scopes.ts
|
|
6517
|
-
var
|
|
6452
|
+
var import_lodash5 = require("lodash");
|
|
6518
6453
|
var ACTION_SCOPE_MAP = {
|
|
6519
6454
|
[ActionType.READ]: ["record.read"],
|
|
6520
6455
|
[ActionType.CREATE]: ["record.create"],
|
|
6521
6456
|
[ActionType.NOTIFY]: ["record.notify"],
|
|
6522
|
-
[ActionType.DECLARE]: [
|
|
6523
|
-
|
|
6457
|
+
[ActionType.DECLARE]: [
|
|
6458
|
+
"record.declare",
|
|
6459
|
+
"record.declared.validate",
|
|
6460
|
+
"record.register"
|
|
6461
|
+
],
|
|
6524
6462
|
[ActionType.DELETE]: ["record.declare"],
|
|
6463
|
+
[ActionType.VALIDATE]: ["record.declared.validate", "record.register"],
|
|
6525
6464
|
[ActionType.REGISTER]: ["record.register"],
|
|
6526
6465
|
[ActionType.PRINT_CERTIFICATE]: ["record.registered.print-certified-copies"],
|
|
6527
6466
|
[ActionType.REQUEST_CORRECTION]: [
|
|
@@ -6539,8 +6478,7 @@ var ACTION_SCOPE_MAP = {
|
|
|
6539
6478
|
[ActionType.REJECT]: ["record.declared.reject"],
|
|
6540
6479
|
[ActionType.ASSIGN]: null,
|
|
6541
6480
|
[ActionType.UNASSIGN]: null,
|
|
6542
|
-
[ActionType.DUPLICATE_DETECTED]: []
|
|
6543
|
-
[ActionType.CUSTOM]: []
|
|
6481
|
+
[ActionType.DUPLICATE_DETECTED]: []
|
|
6544
6482
|
};
|
|
6545
6483
|
|
|
6546
6484
|
// ../commons/src/events/state/availableActions.ts
|
|
@@ -6549,25 +6487,28 @@ var AVAILABLE_ACTIONS_BY_EVENT_STATUS = {
|
|
|
6549
6487
|
ActionType.READ,
|
|
6550
6488
|
ActionType.DECLARE,
|
|
6551
6489
|
ActionType.NOTIFY,
|
|
6552
|
-
ActionType.DELETE
|
|
6553
|
-
ActionType.CUSTOM
|
|
6490
|
+
ActionType.DELETE
|
|
6554
6491
|
],
|
|
6555
6492
|
[EventStatus.enum.NOTIFIED]: [
|
|
6556
6493
|
ActionType.READ,
|
|
6557
|
-
ActionType.
|
|
6494
|
+
ActionType.DECLARE,
|
|
6558
6495
|
ActionType.MARK_AS_DUPLICATE,
|
|
6559
6496
|
ActionType.ARCHIVE,
|
|
6560
|
-
ActionType.REJECT
|
|
6561
|
-
ActionType.CUSTOM
|
|
6497
|
+
ActionType.REJECT
|
|
6562
6498
|
],
|
|
6563
6499
|
[EventStatus.enum.DECLARED]: [
|
|
6500
|
+
ActionType.READ,
|
|
6501
|
+
ActionType.VALIDATE,
|
|
6502
|
+
ActionType.MARK_AS_DUPLICATE,
|
|
6503
|
+
ActionType.ARCHIVE,
|
|
6504
|
+
ActionType.REJECT
|
|
6505
|
+
],
|
|
6506
|
+
[EventStatus.enum.VALIDATED]: [
|
|
6564
6507
|
ActionType.READ,
|
|
6565
6508
|
ActionType.REGISTER,
|
|
6566
6509
|
ActionType.MARK_AS_DUPLICATE,
|
|
6567
6510
|
ActionType.ARCHIVE,
|
|
6568
|
-
ActionType.REJECT
|
|
6569
|
-
ActionType.CUSTOM,
|
|
6570
|
-
ActionType.EDIT
|
|
6511
|
+
ActionType.REJECT
|
|
6571
6512
|
],
|
|
6572
6513
|
[EventStatus.enum.REGISTERED]: [
|
|
6573
6514
|
ActionType.READ,
|
|
@@ -6575,14 +6516,12 @@ var AVAILABLE_ACTIONS_BY_EVENT_STATUS = {
|
|
|
6575
6516
|
ActionType.REQUEST_CORRECTION,
|
|
6576
6517
|
ActionType.APPROVE_CORRECTION,
|
|
6577
6518
|
ActionType.REJECT_CORRECTION,
|
|
6578
|
-
ActionType.CUSTOM,
|
|
6579
6519
|
ClientSpecificAction.REVIEW_CORRECTION_REQUEST
|
|
6580
6520
|
],
|
|
6581
6521
|
[EventStatus.enum.ARCHIVED]: [
|
|
6582
6522
|
ActionType.READ,
|
|
6583
6523
|
ActionType.ASSIGN,
|
|
6584
|
-
ActionType.UNASSIGN
|
|
6585
|
-
ActionType.CUSTOM
|
|
6524
|
+
ActionType.UNASSIGN
|
|
6586
6525
|
]
|
|
6587
6526
|
};
|
|
6588
6527
|
var ACTION_FILTERS = {
|
|
@@ -6592,41 +6531,32 @@ var ACTION_FILTERS = {
|
|
|
6592
6531
|
[ActionType.APPROVE_CORRECTION]: (flags) => flags.includes(InherentFlags.CORRECTION_REQUESTED) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6593
6532
|
[ActionType.REJECT_CORRECTION]: (flags) => flags.includes(InherentFlags.CORRECTION_REQUESTED) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6594
6533
|
[ActionType.MARK_AS_DUPLICATE]: (flags) => flags.includes(InherentFlags.POTENTIAL_DUPLICATE) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6595
|
-
[ActionType.
|
|
6534
|
+
[ActionType.VALIDATE]: (flags) => !flags.includes(InherentFlags.POTENTIAL_DUPLICATE) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6596
6535
|
[ActionType.REGISTER]: (flags) => !flags.includes(InherentFlags.POTENTIAL_DUPLICATE) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6597
6536
|
[ActionType.REJECT]: (flags) => !flags.includes(InherentFlags.REJECTED) && !flags.some((flag) => flag.endsWith(":requested")),
|
|
6598
6537
|
[ActionType.ARCHIVE]: (flags) => !flags.some((flag) => flag.endsWith(":requested"))
|
|
6599
6538
|
};
|
|
6600
6539
|
|
|
6601
6540
|
// ../commons/src/events/FileUtils.ts
|
|
6602
|
-
var
|
|
6541
|
+
var import_lodash6 = require("lodash");
|
|
6603
6542
|
|
|
6604
6543
|
// ../commons/src/events/locations.ts
|
|
6605
|
-
var
|
|
6606
|
-
var
|
|
6544
|
+
var import_zod37 = require("zod");
|
|
6545
|
+
var LocationType = import_zod37.z.enum([
|
|
6607
6546
|
"ADMIN_STRUCTURE",
|
|
6608
6547
|
"CRVS_OFFICE",
|
|
6609
6548
|
"HEALTH_FACILITY"
|
|
6610
6549
|
]);
|
|
6611
|
-
var
|
|
6612
|
-
var AdministrativeArea = z39.object({
|
|
6550
|
+
var Location = import_zod37.z.object({
|
|
6613
6551
|
id: UUID,
|
|
6614
|
-
name:
|
|
6615
|
-
externalId: z39.string().nullish(),
|
|
6552
|
+
name: import_zod37.z.string(),
|
|
6616
6553
|
parentId: UUID.nullable(),
|
|
6617
|
-
validUntil:
|
|
6618
|
-
|
|
6619
|
-
var Location = z39.object({
|
|
6620
|
-
id: UUID,
|
|
6621
|
-
name: z39.string(),
|
|
6622
|
-
externalId: z39.string().nullish(),
|
|
6623
|
-
administrativeAreaId: UUID.nullable(),
|
|
6624
|
-
validUntil: z39.iso.datetime().nullable(),
|
|
6625
|
-
locationType: z39.string().nullable()
|
|
6554
|
+
validUntil: import_zod37.z.string().datetime().nullable(),
|
|
6555
|
+
locationType: LocationType.nullable()
|
|
6626
6556
|
});
|
|
6627
6557
|
|
|
6628
6558
|
// ../commons/src/notification/UserNotifications.ts
|
|
6629
|
-
var
|
|
6559
|
+
var import_zod38 = require("zod");
|
|
6630
6560
|
var TriggerEvent = {
|
|
6631
6561
|
USER_CREATED: "user-created",
|
|
6632
6562
|
USER_UPDATED: "user-updated",
|
|
@@ -6638,50 +6568,50 @@ var TriggerEvent = {
|
|
|
6638
6568
|
CHANGE_PHONE_NUMBER: "change-phone-number",
|
|
6639
6569
|
CHANGE_EMAIL_ADDRESS: "change-email-address"
|
|
6640
6570
|
};
|
|
6641
|
-
var Recipient =
|
|
6571
|
+
var Recipient = import_zod38.z.object({
|
|
6642
6572
|
name: NameFieldValue.optional(),
|
|
6643
|
-
mobile:
|
|
6644
|
-
email:
|
|
6645
|
-
bcc:
|
|
6573
|
+
mobile: import_zod38.z.string().optional(),
|
|
6574
|
+
email: import_zod38.z.string().optional(),
|
|
6575
|
+
bcc: import_zod38.z.array(import_zod38.z.string()).optional()
|
|
6646
6576
|
});
|
|
6647
|
-
var BasePayload =
|
|
6577
|
+
var BasePayload = import_zod38.z.object({
|
|
6648
6578
|
recipient: Recipient
|
|
6649
6579
|
});
|
|
6650
6580
|
var TriggerPayload = {
|
|
6651
6581
|
[TriggerEvent.USER_CREATED]: BasePayload.extend({
|
|
6652
|
-
username:
|
|
6653
|
-
temporaryPassword:
|
|
6582
|
+
username: import_zod38.z.string(),
|
|
6583
|
+
temporaryPassword: import_zod38.z.string()
|
|
6654
6584
|
}),
|
|
6655
6585
|
[TriggerEvent.USER_UPDATED]: BasePayload.extend({
|
|
6656
|
-
oldUsername:
|
|
6657
|
-
newUsername:
|
|
6586
|
+
oldUsername: import_zod38.z.string(),
|
|
6587
|
+
newUsername: import_zod38.z.string()
|
|
6658
6588
|
}),
|
|
6659
6589
|
[TriggerEvent.USERNAME_REMINDER]: BasePayload.extend({
|
|
6660
|
-
username:
|
|
6590
|
+
username: import_zod38.z.string()
|
|
6661
6591
|
}),
|
|
6662
6592
|
[TriggerEvent.RESET_PASSWORD]: BasePayload.extend({
|
|
6663
|
-
code:
|
|
6593
|
+
code: import_zod38.z.string()
|
|
6664
6594
|
}),
|
|
6665
6595
|
[TriggerEvent.RESET_PASSWORD_BY_ADMIN]: BasePayload.extend({
|
|
6666
|
-
temporaryPassword:
|
|
6667
|
-
admin:
|
|
6668
|
-
id:
|
|
6596
|
+
temporaryPassword: import_zod38.z.string(),
|
|
6597
|
+
admin: import_zod38.z.object({
|
|
6598
|
+
id: import_zod38.z.string(),
|
|
6669
6599
|
name: NameFieldValue,
|
|
6670
|
-
role:
|
|
6600
|
+
role: import_zod38.z.string()
|
|
6671
6601
|
})
|
|
6672
6602
|
}),
|
|
6673
6603
|
[TriggerEvent.TWO_FA]: BasePayload.extend({
|
|
6674
|
-
code:
|
|
6604
|
+
code: import_zod38.z.string()
|
|
6675
6605
|
}),
|
|
6676
6606
|
[TriggerEvent.ALL_USER_NOTIFICATION]: BasePayload.extend({
|
|
6677
|
-
subject:
|
|
6678
|
-
body:
|
|
6607
|
+
subject: import_zod38.z.string(),
|
|
6608
|
+
body: import_zod38.z.string()
|
|
6679
6609
|
}),
|
|
6680
6610
|
[TriggerEvent.CHANGE_PHONE_NUMBER]: BasePayload.extend({
|
|
6681
|
-
code:
|
|
6611
|
+
code: import_zod38.z.string()
|
|
6682
6612
|
}),
|
|
6683
6613
|
[TriggerEvent.CHANGE_EMAIL_ADDRESS]: BasePayload.extend({
|
|
6684
|
-
code:
|
|
6614
|
+
code: import_zod38.z.string()
|
|
6685
6615
|
})
|
|
6686
6616
|
};
|
|
6687
6617
|
async function triggerUserEventNotification({
|
|
@@ -6703,6 +6633,3 @@ function parseUserEventTrigger(event2, body) {
|
|
|
6703
6633
|
const schema = TriggerPayload[event2];
|
|
6704
6634
|
return schema.parse(body);
|
|
6705
6635
|
}
|
|
6706
|
-
|
|
6707
|
-
// src/notification/index.ts
|
|
6708
|
-
z41.globalRegistry.clear();
|