@opencode-ai/schema 0.0.0-dev-17806 → 0.0.0-dev-17812
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/config/provider.d.ts +2 -0
- package/dist/model.d.ts +2 -0
- package/dist/model.js +1 -0
- package/package.json +1 -1
|
@@ -55,10 +55,12 @@ declare const Model_base: Schema.Class<Model, Schema.Struct<{
|
|
|
55
55
|
readonly tools: Schema.Boolean;
|
|
56
56
|
readonly input: Schema.$Array<Schema.String>;
|
|
57
57
|
readonly output: Schema.$Array<Schema.String>;
|
|
58
|
+
readonly responsesWebsockets: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
58
59
|
}>>>, Schema.optionalKey<Schema.Struct<{
|
|
59
60
|
readonly tools: Schema.Boolean;
|
|
60
61
|
readonly input: Schema.$Array<Schema.String>;
|
|
61
62
|
readonly output: Schema.$Array<Schema.String>;
|
|
63
|
+
readonly responsesWebsockets: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
62
64
|
}>>, never, never>;
|
|
63
65
|
readonly variants: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Array<Schema.Struct<{
|
|
64
66
|
readonly settings: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Record<Schema.String, Schema.Codec<Schema.Json, Schema.Json, never, never>>>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Codec<Schema.Json, Schema.Json, never, never>>>, never, never>;
|
package/dist/model.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export declare const Capabilities: Schema.Struct<{
|
|
|
49
49
|
readonly tools: Schema.Boolean;
|
|
50
50
|
readonly input: Schema.$Array<Schema.String>;
|
|
51
51
|
readonly output: Schema.$Array<Schema.String>;
|
|
52
|
+
readonly responsesWebsockets: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
52
53
|
}>;
|
|
53
54
|
export interface Cost extends Schema.Schema.Type<typeof Cost> {
|
|
54
55
|
}
|
|
@@ -90,6 +91,7 @@ export declare const Info: Schema.Struct<{
|
|
|
90
91
|
readonly tools: Schema.Boolean;
|
|
91
92
|
readonly input: Schema.$Array<Schema.String>;
|
|
92
93
|
readonly output: Schema.$Array<Schema.String>;
|
|
94
|
+
readonly responsesWebsockets: Schema.decodeTo<Schema.optional<Schema.toType<Schema.Boolean>>, Schema.optionalKey<Schema.Boolean>, never, never>;
|
|
93
95
|
}>;
|
|
94
96
|
readonly variants: Schema.$Array<Schema.Struct<{
|
|
95
97
|
readonly settings: Schema.decodeTo<Schema.optional<Schema.toType<Schema.$Record<Schema.String, Schema.Any>>>, Schema.optionalKey<Schema.$Record<Schema.String, Schema.Any>>, never, never>;
|
package/dist/model.js
CHANGED
|
@@ -46,6 +46,7 @@ export const Capabilities = Schema.Struct({
|
|
|
46
46
|
tools: Schema.Boolean,
|
|
47
47
|
input: Schema.Array(Schema.String),
|
|
48
48
|
output: Schema.Array(Schema.String),
|
|
49
|
+
responsesWebsockets: Schema.Boolean.pipe(optional),
|
|
49
50
|
}).annotate({ identifier: "Model.Capabilities" });
|
|
50
51
|
export const Cost = Schema.Struct({
|
|
51
52
|
tier: Schema.Struct({
|