@opencode-ai/client 0.0.0-next-15809 → 0.0.0-next-15811

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.
@@ -2570,6 +2570,8 @@ export declare const make: (options?: {
2570
2570
  }, "Type">;
2571
2571
  readonly assistantMessageID: string & import("effect/Brand").Brand<"Session.Message.ID">;
2572
2572
  readonly cost?: (number & import("effect/Brand").Brand<"Money.USD">) | undefined;
2573
+ readonly files?: readonly (string & import("effect/Brand").Brand<"RelativePath">)[] | undefined;
2574
+ readonly snapshot?: (string & import("effect/Brand").Brand<"Snapshot.ID">) | undefined;
2573
2575
  readonly tokens?: Schema.Struct.ReadonlySide<{
2574
2576
  readonly input: Schema.Finite;
2575
2577
  readonly output: Schema.Finite;
@@ -6211,6 +6213,8 @@ export declare const make: (options?: {
6211
6213
  }, "Type">;
6212
6214
  readonly assistantMessageID: string & import("effect/Brand").Brand<"Session.Message.ID">;
6213
6215
  readonly cost?: (number & import("effect/Brand").Brand<"Money.USD">) | undefined;
6216
+ readonly files?: readonly (string & import("effect/Brand").Brand<"RelativePath">)[] | undefined;
6217
+ readonly snapshot?: (string & import("effect/Brand").Brand<"Snapshot.ID">) | undefined;
6214
6218
  readonly tokens?: Schema.Struct.ReadonlySide<{
6215
6219
  readonly input: Schema.Finite;
6216
6220
  readonly output: Schema.Finite;
@@ -1902,6 +1902,8 @@ export type SessionStepFailed = {
1902
1902
  error: SessionStructuredError;
1903
1903
  cost?: MoneyUSD;
1904
1904
  tokens?: TokenUsageInfo;
1905
+ snapshot?: string;
1906
+ files?: Array<string>;
1905
1907
  };
1906
1908
  };
1907
1909
  export type SessionRetryScheduled = {
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-next-15809",
4
+ "version": "0.0.0-next-15811",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -53,8 +53,8 @@
53
53
  "typecheck": "tsgo --noEmit"
54
54
  },
55
55
  "dependencies": {
56
- "@opencode-ai/schema": "0.0.0-next-15809",
57
- "@opencode-ai/protocol": "0.0.0-next-15809"
56
+ "@opencode-ai/schema": "0.0.0-next-15811",
57
+ "@opencode-ai/protocol": "0.0.0-next-15811"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "effect": "4.0.0-beta.98"
@@ -66,7 +66,7 @@
66
66
  },
67
67
  "devDependencies": {
68
68
  "@effect/platform-node": "4.0.0-beta.98",
69
- "@opencode-ai/httpapi-codegen": "0.0.0-next-15809",
69
+ "@opencode-ai/httpapi-codegen": "0.0.0-next-15811",
70
70
  "@tsconfig/bun": "1.0.9",
71
71
  "@types/bun": "1.3.13",
72
72
  "@typescript/native-preview": "7.0.0-dev.20251207.1",