oh-my-opencode 3.17.3 → 3.17.4

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.
@@ -49,6 +49,7 @@ export * from "./session-utils";
49
49
  export * from "./tmux";
50
50
  export * from "./model-suggestion-retry";
51
51
  export * from "./opencode-server-auth";
52
+ export * from "./opencode-provider-auth";
52
53
  export * from "./opencode-http-api";
53
54
  export * from "./port-utils";
54
55
  export * from "./git-worktree";
@@ -0,0 +1,3 @@
1
+ export declare function getProviderAuthType(providerID: string): string | undefined;
2
+ export declare function isProviderUsingOAuth(providerID: string): boolean;
3
+ export declare function _resetProviderAuthCacheForTesting(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode",
3
- "version": "3.17.3",
3
+ "version": "3.17.4",
4
4
  "description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -79,17 +79,17 @@
79
79
  "typescript": "^5.7.3"
80
80
  },
81
81
  "optionalDependencies": {
82
- "oh-my-opencode-darwin-arm64": "3.17.3",
83
- "oh-my-opencode-darwin-x64": "3.17.3",
84
- "oh-my-opencode-darwin-x64-baseline": "3.17.3",
85
- "oh-my-opencode-linux-arm64": "3.17.3",
86
- "oh-my-opencode-linux-arm64-musl": "3.17.3",
87
- "oh-my-opencode-linux-x64": "3.17.3",
88
- "oh-my-opencode-linux-x64-baseline": "3.17.3",
89
- "oh-my-opencode-linux-x64-musl": "3.17.3",
90
- "oh-my-opencode-linux-x64-musl-baseline": "3.17.3",
91
- "oh-my-opencode-windows-x64": "3.17.3",
92
- "oh-my-opencode-windows-x64-baseline": "3.17.3"
82
+ "oh-my-opencode-darwin-arm64": "3.17.4",
83
+ "oh-my-opencode-darwin-x64": "3.17.4",
84
+ "oh-my-opencode-darwin-x64-baseline": "3.17.4",
85
+ "oh-my-opencode-linux-arm64": "3.17.4",
86
+ "oh-my-opencode-linux-arm64-musl": "3.17.4",
87
+ "oh-my-opencode-linux-x64": "3.17.4",
88
+ "oh-my-opencode-linux-x64-baseline": "3.17.4",
89
+ "oh-my-opencode-linux-x64-musl": "3.17.4",
90
+ "oh-my-opencode-linux-x64-musl-baseline": "3.17.4",
91
+ "oh-my-opencode-windows-x64": "3.17.4",
92
+ "oh-my-opencode-windows-x64-baseline": "3.17.4"
93
93
  },
94
94
  "overrides": {},
95
95
  "trustedDependencies": [
@@ -1,2 +0,0 @@
1
- import type { ToolContextWithMetadata } from "./types";
2
- export declare function resolveCallID(ctx: ToolContextWithMetadata): string | undefined;