@opencrvs/toolkit 1.8.1-rc.b6b235d → 1.8.1-rc.b8eea90
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 +1 -3
- package/dist/commons/conditionals/validate.d.ts +2 -3
- package/dist/commons/events/ActionConfig.d.ts +13593 -4629
- package/dist/commons/events/EventConfig.d.ts +7441 -3499
- package/dist/commons/events/EventIndex.d.ts +0 -3
- package/dist/commons/events/EventMetadata.d.ts +0 -3
- package/dist/commons/events/FieldConfig.d.ts +1050 -362
- package/dist/commons/events/FieldType.d.ts +3 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +15 -1
- package/dist/commons/events/FieldValue.d.ts +4 -0
- package/dist/commons/events/FormConfig.d.ts +6350 -2138
- package/dist/commons/events/PageConfig.d.ts +2058 -1014
- package/dist/commons/events/WorkqueueConfig.d.ts +8 -8
- package/dist/commons/events/defineConfig.d.ts +638 -8
- package/dist/commons/events/event.d.ts +1 -55
- package/dist/commons/events/utils.d.ts +1136 -16
- package/dist/events/index.js +75 -112
- package/package.json +1 -1
@@ -117,7 +117,6 @@ export declare const EventIndex: z.ZodObject<z.objectUtil.extendShape<{
|
|
117
117
|
readonly REJECTED: "rejected";
|
118
118
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
119
119
|
}>]>, "many">;
|
120
|
-
modifiedAt: z.ZodOptional<z.ZodString>;
|
121
120
|
}, {
|
122
121
|
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
123
122
|
start: z.ZodString;
|
@@ -353,7 +352,6 @@ export declare const EventIndex: z.ZodObject<z.objectUtil.extendShape<{
|
|
353
352
|
dateOfEvent?: string | null | undefined;
|
354
353
|
updatedAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
355
354
|
updatedBy?: string | null | undefined;
|
356
|
-
modifiedAt?: string | undefined;
|
357
355
|
}, {
|
358
356
|
type: string;
|
359
357
|
id: string;
|
@@ -441,7 +439,6 @@ export declare const EventIndex: z.ZodObject<z.objectUtil.extendShape<{
|
|
441
439
|
dateOfEvent?: string | null | undefined;
|
442
440
|
updatedAtLocation?: string | null | undefined;
|
443
441
|
updatedBy?: string | null | undefined;
|
444
|
-
modifiedAt?: string | undefined;
|
445
442
|
}>;
|
446
443
|
export declare const EventSearchIndex: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodAny>, z.ZodObject<{
|
447
444
|
type: z.ZodString;
|
@@ -297,7 +297,6 @@ export declare const EventMetadata: z.ZodObject<{
|
|
297
297
|
readonly REJECTED: "rejected";
|
298
298
|
readonly CORRECTION_REQUESTED: "correction-requested";
|
299
299
|
}>]>, "many">;
|
300
|
-
modifiedAt: z.ZodOptional<z.ZodString>;
|
301
300
|
}, "strip", z.ZodTypeAny, {
|
302
301
|
type: string;
|
303
302
|
id: string & z.BRAND<"UUID">;
|
@@ -336,7 +335,6 @@ export declare const EventMetadata: z.ZodObject<{
|
|
336
335
|
dateOfEvent?: string | null | undefined;
|
337
336
|
updatedAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
338
337
|
updatedBy?: string | null | undefined;
|
339
|
-
modifiedAt?: string | undefined;
|
340
338
|
}, {
|
341
339
|
type: string;
|
342
340
|
id: string;
|
@@ -375,7 +373,6 @@ export declare const EventMetadata: z.ZodObject<{
|
|
375
373
|
dateOfEvent?: string | null | undefined;
|
376
374
|
updatedAtLocation?: string | null | undefined;
|
377
375
|
updatedBy?: string | null | undefined;
|
378
|
-
modifiedAt?: string | undefined;
|
379
376
|
}>;
|
380
377
|
export type EventMetadata = z.infer<typeof EventMetadata>;
|
381
378
|
export declare const EventMetadataKeysArray: readonly ["id", "type", "status", "createdAt", "dateOfEvent", "createdBy", "createdByUserType", "updatedByUserRole", "createdAtLocation", "updatedAtLocation", "updatedAt", "assignedTo", "updatedBy", "trackingId", "legalStatuses", "flags"];
|