@opencrvs/toolkit 1.8.0-rc.fc4c805 → 1.8.0-rc.fcb9386
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 +6983 -4338
- package/dist/commons/conditionals/conditionals.d.ts +2 -1
- package/dist/commons/events/ActionConfig.d.ts +40400 -36948
- package/dist/commons/events/ActionDocument.d.ts +292 -105
- package/dist/commons/events/ActionInput.d.ts +75 -3
- package/dist/commons/events/AdvancedSearchConfig.d.ts +603 -12
- package/dist/commons/events/Constants.d.ts +2 -0
- package/dist/commons/events/CountryConfigQueryInput.d.ts +2982 -0
- package/dist/commons/events/CreatedAtLocation.d.ts +3 -0
- package/dist/commons/events/Draft.d.ts +10 -5
- package/dist/commons/events/EventConfig.d.ts +14558 -14829
- package/dist/commons/events/EventDocument.d.ts +212 -93
- package/dist/commons/events/EventIndex.d.ts +298 -319
- package/dist/commons/events/EventInput.d.ts +0 -13
- package/dist/commons/events/EventMetadata.d.ts +38 -44
- package/dist/commons/events/FieldConfig.d.ts +517 -0
- package/dist/commons/events/FormConfig.d.ts +3641 -467
- package/dist/commons/events/PageConfig.d.ts +782 -0
- package/dist/commons/events/User.d.ts +31 -7
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +53 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +4033 -644
- package/dist/commons/events/defineConfig.d.ts +3050 -3519
- package/dist/commons/events/event.d.ts +37 -10
- package/dist/commons/events/field.d.ts +21 -7
- package/dist/commons/events/index.d.ts +4 -0
- package/dist/commons/events/scopes.d.ts +21 -2
- package/dist/commons/events/serializer.d.ts +2 -0
- package/dist/commons/events/test.utils.d.ts +26 -6
- package/dist/commons/events/utils.d.ts +117 -1
- package/dist/commons/events/workqueueDefaultColumns.d.ts +3 -0
- package/dist/conditionals/index.js +19 -2
- package/dist/events/index.js +2382 -988
- package/dist/scopes/index.d.ts +158 -1
- package/dist/scopes/index.js +152 -1
- package/package.json +1 -1
@@ -10,6 +10,8 @@ export declare const Draft: z.ZodObject<{
|
|
10
10
|
createdAt: z.ZodString;
|
11
11
|
createdBy: z.ZodString;
|
12
12
|
createdByRole: z.ZodString;
|
13
|
+
createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14
|
+
createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13
15
|
declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
14
16
|
filename: z.ZodString;
|
15
17
|
originalFilename: z.ZodString;
|
@@ -238,7 +240,6 @@ export declare const Draft: z.ZodObject<{
|
|
238
240
|
addressLine3?: string | null | undefined;
|
239
241
|
postcodeOrZip?: string | null | undefined;
|
240
242
|
}>]>>>;
|
241
|
-
createdAtLocation: z.ZodString;
|
242
243
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
243
244
|
originalActionId: z.ZodOptional<z.ZodString>;
|
244
245
|
}, {
|
@@ -288,7 +289,8 @@ export declare const Draft: z.ZodObject<{
|
|
288
289
|
filename: string;
|
289
290
|
originalFilename: string;
|
290
291
|
}[] | [string, string] | undefined>;
|
291
|
-
|
292
|
+
createdBySignature?: string | null | undefined;
|
293
|
+
createdAtLocation?: string | null | undefined;
|
292
294
|
annotation?: Record<string, string | number | boolean | {
|
293
295
|
type: string;
|
294
296
|
filename: string;
|
@@ -373,7 +375,8 @@ export declare const Draft: z.ZodObject<{
|
|
373
375
|
filename: string;
|
374
376
|
originalFilename: string;
|
375
377
|
}[] | [string, string] | undefined>;
|
376
|
-
|
378
|
+
createdBySignature?: string | null | undefined;
|
379
|
+
createdAtLocation?: string | null | undefined;
|
377
380
|
annotation?: Record<string, string | number | boolean | {
|
378
381
|
type: string;
|
379
382
|
filename: string;
|
@@ -464,7 +467,8 @@ export declare const Draft: z.ZodObject<{
|
|
464
467
|
filename: string;
|
465
468
|
originalFilename: string;
|
466
469
|
}[] | [string, string] | undefined>;
|
467
|
-
|
470
|
+
createdBySignature?: string | null | undefined;
|
471
|
+
createdAtLocation?: string | null | undefined;
|
468
472
|
annotation?: Record<string, string | number | boolean | {
|
469
473
|
type: string;
|
470
474
|
filename: string;
|
@@ -555,7 +559,8 @@ export declare const Draft: z.ZodObject<{
|
|
555
559
|
filename: string;
|
556
560
|
originalFilename: string;
|
557
561
|
}[] | [string, string] | undefined>;
|
558
|
-
|
562
|
+
createdBySignature?: string | null | undefined;
|
563
|
+
createdAtLocation?: string | null | undefined;
|
559
564
|
annotation?: Record<string, string | number | boolean | {
|
560
565
|
type: string;
|
561
566
|
filename: string;
|