@openframe-org/criteria-set-protocol 1.5.0 → 1.5.1
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/v1/schemas/criterion.d.ts +908 -2
- package/dist/v1/schemas/matrix-body-schema.d.ts +16 -2
- package/dist/v1/schemas/quality.d.ts +1368 -4
- package/dist/v1/schemas/task-group.d.ts +631 -2
- package/dist/v1/schemas/task-item.d.ts +523 -13
- package/dist/v1/schemas/task.d.ts +399 -2
- package/dist/v1/schemas/tree-and-data-body-schema.d.ts +13 -2
- package/package.json +1 -1
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { MatrixRequestBody } from '../types';
|
|
3
2
|
/**
|
|
4
3
|
* Validates the request body for the matrix endpoints
|
|
5
4
|
*/
|
|
6
|
-
export declare const matrixBodySchema: z.
|
|
5
|
+
export declare const matrixBodySchema: z.ZodOptional<z.ZodObject<{
|
|
6
|
+
locale: z.ZodOptional<z.ZodString>;
|
|
7
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8
|
+
values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>>;
|
|
9
|
+
additional: z.ZodOptional<z.ZodAny>;
|
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
values?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
12
|
+
locale?: string | undefined;
|
|
13
|
+
parameters?: Record<string, string> | undefined;
|
|
14
|
+
additional?: any;
|
|
15
|
+
}, {
|
|
16
|
+
values?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
17
|
+
locale?: string | undefined;
|
|
18
|
+
parameters?: Record<string, string> | undefined;
|
|
19
|
+
additional?: any;
|
|
20
|
+
}>>;
|