@opencrvs/toolkit 1.9.6-rc.f660676 → 1.9.6-rc.f7b878f
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/conditionals/conditionals.d.ts +5 -0
- package/dist/commons/events/FieldConfig.d.ts +168 -6
- package/dist/commons/events/FieldTypeMapping.d.ts +18 -0
- package/dist/commons/events/FieldValue.d.ts +1 -0
- package/dist/conditionals/index.js +11 -0
- package/dist/events/index.js +471 -455
- package/dist/notification/index.js +488 -473
- package/package.json +1 -1
|
@@ -230,6 +230,15 @@ export declare function mapFieldTypeToZod(field: FieldConfig, actionType?: Actio
|
|
|
230
230
|
}, {
|
|
231
231
|
data?: any;
|
|
232
232
|
}>>> | z.ZodObject<{
|
|
233
|
+
numericValue: z.ZodNumber;
|
|
234
|
+
unit: z.ZodString;
|
|
235
|
+
}, "strip", z.ZodTypeAny, {
|
|
236
|
+
numericValue: number;
|
|
237
|
+
unit: string;
|
|
238
|
+
}, {
|
|
239
|
+
numericValue: number;
|
|
240
|
+
unit: string;
|
|
241
|
+
}> | z.ZodObject<{
|
|
233
242
|
numericValue: z.ZodOptional<z.ZodNumber>;
|
|
234
243
|
unit: z.ZodOptional<z.ZodString>;
|
|
235
244
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -239,6 +248,15 @@ export declare function mapFieldTypeToZod(field: FieldConfig, actionType?: Actio
|
|
|
239
248
|
numericValue?: number | undefined;
|
|
240
249
|
unit?: string | undefined;
|
|
241
250
|
}> | z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
251
|
+
numericValue: z.ZodNumber;
|
|
252
|
+
unit: z.ZodString;
|
|
253
|
+
}, "strip", z.ZodTypeAny, {
|
|
254
|
+
numericValue: number;
|
|
255
|
+
unit: string;
|
|
256
|
+
}, {
|
|
257
|
+
numericValue: number;
|
|
258
|
+
unit: string;
|
|
259
|
+
}>>> | z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
242
260
|
numericValue: z.ZodOptional<z.ZodNumber>;
|
|
243
261
|
unit: z.ZodOptional<z.ZodString>;
|
|
244
262
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -38,6 +38,7 @@ export declare const AgeUpdateValue: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
|
38
38
|
asOfDateRef: string;
|
|
39
39
|
}>>>;
|
|
40
40
|
export declare const TimeValue: z.ZodString;
|
|
41
|
+
export type TimeValue = z.infer<typeof TimeValue>;
|
|
41
42
|
export declare const DatetimeValue: z.ZodString;
|
|
42
43
|
export declare const SelectDateRangeValue: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
|
43
44
|
export declare const DateRangeFieldValue: z.ZodUnion<[z.ZodObject<{
|
|
@@ -38,6 +38,7 @@ __export(conditionals_exports, {
|
|
|
38
38
|
isFieldReference: () => isFieldReference,
|
|
39
39
|
never: () => never,
|
|
40
40
|
not: () => not,
|
|
41
|
+
now: () => now,
|
|
41
42
|
or: () => or,
|
|
42
43
|
user: () => user
|
|
43
44
|
});
|
|
@@ -106,6 +107,15 @@ function omitKeyDeep(obj, keyToRemove) {
|
|
|
106
107
|
return newObj;
|
|
107
108
|
}
|
|
108
109
|
|
|
110
|
+
// ../commons/src/events/serializers/date/serializer.ts
|
|
111
|
+
var import_zod2 = require("zod");
|
|
112
|
+
var SerializedNowDateTime = import_zod2.z.object({
|
|
113
|
+
$$now: import_zod2.z.literal(true)
|
|
114
|
+
});
|
|
115
|
+
function todayDateTimeValueSerializer() {
|
|
116
|
+
return { $$now: true };
|
|
117
|
+
}
|
|
118
|
+
|
|
109
119
|
// ../commons/src/conditionals/conditionals.ts
|
|
110
120
|
function defineConditional(schema) {
|
|
111
121
|
const schemaWithooutIDRef = omitKeyDeep(schema, "$id");
|
|
@@ -179,6 +189,7 @@ function wrapToPathOptional(condition, path) {
|
|
|
179
189
|
};
|
|
180
190
|
}, condition);
|
|
181
191
|
}
|
|
192
|
+
var now = Object.assign(todayDateTimeValueSerializer, {});
|
|
182
193
|
var user = Object.assign(userSerializer, {
|
|
183
194
|
hasScope: (scope) => defineConditional({
|
|
184
195
|
type: "object",
|