@openframe-org/criteria-set-protocol 3.0.0-alpha.7 → 3.0.0-alpha.8
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.
|
@@ -3,7 +3,6 @@ export declare const schemaDefinitionSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
|
3
3
|
export declare const schemaDefinitionsSchema: z.ZodObject<{
|
|
4
4
|
properties: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5
5
|
parameters: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6
|
-
result: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7
6
|
}, z.core.$strip>;
|
|
8
7
|
export declare const metadataSchema: z.ZodObject<{
|
|
9
8
|
id: z.ZodString;
|
|
@@ -20,6 +19,5 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
20
19
|
schemas: z.ZodNullable<z.ZodObject<{
|
|
21
20
|
properties: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22
21
|
parameters: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
23
|
-
result: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
24
22
|
}, z.core.$strip>>;
|
|
25
23
|
}, z.core.$strip>;
|
|
@@ -11,9 +11,6 @@ exports.schemaDefinitionsSchema = zod_1.z
|
|
|
11
11
|
parameters: exports.schemaDefinitionSchema
|
|
12
12
|
.nullable()
|
|
13
13
|
.describe("The JSON schema describing the parameters of the criteria set"),
|
|
14
|
-
result: exports.schemaDefinitionSchema
|
|
15
|
-
.nullable()
|
|
16
|
-
.describe("The JSON schema describing the result of the criteria set"),
|
|
17
14
|
})
|
|
18
15
|
.describe("SchemaDefinitions - The JSON schemas describing the parameters and result of the criteria set, if any");
|
|
19
16
|
exports.metadataSchema = zod_1.z
|
|
@@ -14,7 +14,6 @@ export declare const criteriaSetsAndVersionsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
14
14
|
schemas: z.ZodNullable<z.ZodObject<{
|
|
15
15
|
properties: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16
16
|
parameters: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17
|
-
result: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
18
17
|
}, z.core.$strip>>;
|
|
19
18
|
}, z.core.$strip>>>;
|
|
20
19
|
export declare const streamMatrixResponseSchema: z.ZodObject<{
|
package/package.json
CHANGED