@openframe-org/criteria-set-protocol 3.0.0-alpha.8 → 3.0.0-alpha.9
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.
|
@@ -14,8 +14,6 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
14
14
|
group: z.ZodString;
|
|
15
15
|
description: z.ZodString;
|
|
16
16
|
documentation: z.ZodNullable<z.ZodString>;
|
|
17
|
-
locales: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
18
|
-
defaultLocale: z.ZodNullable<z.ZodString>;
|
|
19
17
|
schemas: z.ZodNullable<z.ZodObject<{
|
|
20
18
|
properties: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
21
19
|
parameters: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -31,14 +31,6 @@ exports.metadataSchema = zod_1.z
|
|
|
31
31
|
.string()
|
|
32
32
|
.nullable()
|
|
33
33
|
.describe("Additional documentation or usage guidelines for the criteria set"),
|
|
34
|
-
locales: zod_1.z
|
|
35
|
-
.array(zod_1.z.string())
|
|
36
|
-
.nullable()
|
|
37
|
-
.describe("List of supported locale codes for internationalization"),
|
|
38
|
-
defaultLocale: zod_1.z
|
|
39
|
-
.string()
|
|
40
|
-
.nullable()
|
|
41
|
-
.describe("The default locale to use when no specific locale is specified"),
|
|
42
34
|
schemas: exports.schemaDefinitionsSchema
|
|
43
35
|
.nullable()
|
|
44
36
|
.describe("Definitions of property, parameter and result schemas for the criteria set"),
|
|
@@ -9,8 +9,6 @@ export declare const criteriaSetsAndVersionsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
9
9
|
group: z.ZodString;
|
|
10
10
|
description: z.ZodString;
|
|
11
11
|
documentation: z.ZodNullable<z.ZodString>;
|
|
12
|
-
locales: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
13
|
-
defaultLocale: z.ZodNullable<z.ZodString>;
|
|
14
12
|
schemas: z.ZodNullable<z.ZodObject<{
|
|
15
13
|
properties: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16
14
|
parameters: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
package/package.json
CHANGED