opencode-aicodewith-auth 0.1.58 → 0.1.59

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -7
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2081,13 +2081,7 @@ var AicodewithCodexAuthPlugin = async (ctx) => {
2081
2081
  return;
2082
2082
  if (isCodexModel(input.model.id)) {
2083
2083
  const next2 = { ...output.options };
2084
- next2.providerOptions = {
2085
- ...next2.providerOptions,
2086
- openai: {
2087
- ...next2.providerOptions?.openai,
2088
- store: false
2089
- }
2090
- };
2084
+ next2.store = false;
2091
2085
  output.options = next2;
2092
2086
  return;
2093
2087
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-aicodewith-auth",
3
- "version": "0.1.58",
3
+ "version": "0.1.59",
4
4
  "description": "OpenCode plugin for AICodewith authentication - Access GPT-5.3 Codex, GPT-5.2, Claude, and Gemini models through AICodewith API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",