@opencode-ai/sdk 0.0.0-dev-202602021816 → 0.0.0-dev-202602030325

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.
@@ -83,6 +83,7 @@ export type FileDiff = {
83
83
  after: string;
84
84
  additions: number;
85
85
  deletions: number;
86
+ status?: "added" | "deleted" | "modified";
86
87
  };
87
88
  export type UserMessage = {
88
89
  id: string;
@@ -1162,6 +1163,10 @@ export type ServerConfig = {
1162
1163
  * Enable mDNS service discovery
1163
1164
  */
1164
1165
  mdns?: boolean;
1166
+ /**
1167
+ * Custom domain name for mDNS service (default: opencode.local)
1168
+ */
1169
+ mdnsDomain?: string;
1165
1170
  /**
1166
1171
  * Additional domains to allow for CORS
1167
1172
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@opencode-ai/sdk",
4
- "version": "0.0.0-dev-202602021816",
4
+ "version": "0.0.0-dev-202602030325",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {