@opencode-ai/protocol 0.0.0-next-17263 → 0.0.0-next-17268
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/groups/message.d.ts
CHANGED
|
@@ -320,6 +320,7 @@ export declare const MessageGroup: HttpApiGroup.HttpApiGroup<"server.message", H
|
|
|
320
320
|
}>, Schema.Struct<{
|
|
321
321
|
readonly type: Schema.tag<"system">;
|
|
322
322
|
readonly text: Schema.String;
|
|
323
|
+
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
323
324
|
readonly id: Schema.brand<Schema.String, "Session.Message.ID"> & {
|
|
324
325
|
create: () => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
|
325
326
|
fromEvent: (eventID: import("@opencode-ai/schema/event").ID) => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
package/dist/groups/session.d.ts
CHANGED
|
@@ -1083,6 +1083,7 @@ export declare const makeSessionGroup: <I extends HttpApiMiddleware.AnyId, S>(se
|
|
|
1083
1083
|
}>, Schema.Struct<{
|
|
1084
1084
|
readonly type: Schema.tag<"system">;
|
|
1085
1085
|
readonly text: Schema.String;
|
|
1086
|
+
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
1086
1087
|
readonly id: Schema.brand<Schema.String, "Session.Message.ID"> & {
|
|
1087
1088
|
create: () => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
|
1088
1089
|
fromEvent: (eventID: Event.ID) => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
|
@@ -1999,6 +2000,7 @@ export declare const makeSessionGroup: <I extends HttpApiMiddleware.AnyId, S>(se
|
|
|
1999
2000
|
}>, Schema.Struct<{
|
|
2000
2001
|
readonly type: Schema.tag<"system">;
|
|
2001
2002
|
readonly text: Schema.String;
|
|
2003
|
+
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
2002
2004
|
readonly id: Schema.brand<Schema.String, "Session.Message.ID"> & {
|
|
2003
2005
|
create: () => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
|
2004
2006
|
fromEvent: (eventID: Event.ID) => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
|
@@ -3662,6 +3664,7 @@ export declare const makeSessionGroup: <I extends HttpApiMiddleware.AnyId, S>(se
|
|
|
3662
3664
|
}>, Schema.Struct<{
|
|
3663
3665
|
readonly type: Schema.tag<"system">;
|
|
3664
3666
|
readonly text: Schema.String;
|
|
3667
|
+
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
3665
3668
|
readonly id: Schema.brand<Schema.String, "Session.Message.ID"> & {
|
|
3666
3669
|
create: () => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
|
3667
3670
|
fromEvent: (eventID: Event.ID) => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
|
@@ -9037,6 +9040,7 @@ export declare const makeSessionGroup: <I extends HttpApiMiddleware.AnyId, S>(se
|
|
|
9037
9040
|
}>, Schema.Struct<{
|
|
9038
9041
|
readonly type: Schema.tag<"system">;
|
|
9039
9042
|
readonly text: Schema.String;
|
|
9043
|
+
readonly description: Schema.decodeTo<Schema.optional<Schema.toType<Schema.String>>, Schema.optionalKey<Schema.String>, never, never>;
|
|
9040
9044
|
readonly id: Schema.brand<Schema.String, "Session.Message.ID"> & {
|
|
9041
9045
|
create: () => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
|
9042
9046
|
fromEvent: (eventID: Event.ID) => string & import("effect/Brand").Brand<"Session.Message.ID">;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@opencode-ai/protocol",
|
|
4
|
-
"version": "0.0.0-next-
|
|
4
|
+
"version": "0.0.0-next-17268",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"typecheck": "tsgo --noEmit"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@opencode-ai/schema": "0.0.0-next-
|
|
31
|
+
"@opencode-ai/schema": "0.0.0-next-17268",
|
|
32
32
|
"effect": "4.0.0-beta.101"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|