opencode-aicodewith-auth 0.1.50 → 0.1.52

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 +2 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -768,6 +768,8 @@ async function transformRequestBody(body, codexInstructions) {
768
768
  body.model = normalizedModel;
769
769
  body.stream = true;
770
770
  body.store = false;
771
+ delete body.previousResponseId;
772
+ delete body.previous_response_id;
771
773
  body.instructions = codexInstructions;
772
774
  if (body.input && Array.isArray(body.input)) {
773
775
  body.input = sanitizeItemIds(body.input);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-aicodewith-auth",
3
- "version": "0.1.50",
3
+ "version": "0.1.52",
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",