@opencode-ai/client 0.0.0-dev-18252 → 0.0.0-dev-18257

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.
@@ -885,6 +885,7 @@ export declare const make: (options?: {
885
885
  readonly skills?: readonly {
886
886
  readonly id: string & import("effect/Brand").Brand<"Skill.ID">;
887
887
  readonly name: string & import("effect/Brand").Brand<"Skill.Name">;
888
+ readonly text?: string | undefined;
888
889
  readonly mention?: {
889
890
  readonly start: number;
890
891
  readonly end: number;
@@ -723,6 +723,7 @@ export type PromptAgentAttachment = {
723
723
  export type PromptSkillAttachment = {
724
724
  id: string;
725
725
  name: string;
726
+ text?: string;
726
727
  mention?: PromptMention;
727
728
  };
728
729
  export type SessionMessageAssistantText = {
@@ -3579,6 +3580,7 @@ export type SessionImportInput = {
3579
3580
  readonly skills?: ReadonlyArray<{
3580
3581
  readonly id: string;
3581
3582
  readonly name: string;
3583
+ readonly text?: string;
3582
3584
  readonly mention?: {
3583
3585
  readonly start: number;
3584
3586
  readonly end: number;
@@ -3992,6 +3994,7 @@ export type SessionImportInput = {
3992
3994
  readonly skills?: ReadonlyArray<{
3993
3995
  readonly id: string;
3994
3996
  readonly name: string;
3997
+ readonly text?: string;
3995
3998
  readonly mention?: {
3996
3999
  readonly start: number;
3997
4000
  readonly end: number;
@@ -4405,6 +4408,7 @@ export type SessionImportInput = {
4405
4408
  readonly skills?: ReadonlyArray<{
4406
4409
  readonly id: string;
4407
4410
  readonly name: string;
4411
+ readonly text?: string;
4408
4412
  readonly mention?: {
4409
4413
  readonly start: number;
4410
4414
  readonly end: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/client",
4
- "version": "0.0.0-dev-18252",
4
+ "version": "0.0.0-dev-18257",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -57,8 +57,8 @@
57
57
  "typecheck": "tsgo --noEmit"
58
58
  },
59
59
  "dependencies": {
60
- "@opencode-ai/schema": "0.0.0-dev-18252",
61
- "@opencode-ai/protocol": "0.0.0-dev-18252"
60
+ "@opencode-ai/schema": "0.0.0-dev-18257",
61
+ "@opencode-ai/protocol": "0.0.0-dev-18257"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "effect": "4.0.0-rc.111",
@@ -74,7 +74,7 @@
74
74
  },
75
75
  "devDependencies": {
76
76
  "@effect/platform-node": "4.0.0-rc.111",
77
- "@opencode-ai/httpapi-codegen": "0.0.0-dev-18252",
77
+ "@opencode-ai/httpapi-codegen": "0.0.0-dev-18257",
78
78
  "@tsconfig/bun": "1.0.9",
79
79
  "@types/bun": "1.3.13",
80
80
  "@typescript/native-preview": "7.0.0-dev.20251207.1",