claude-code-openai 0.1.14 → 0.1.15

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/cli.js +7 -6
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -204661,7 +204661,7 @@ var init_metadata = __esm(() => {
204661
204661
  isClaudeAiAuth: isClaudeAISubscriber(),
204662
204662
  version: "2.1.88-rebuild",
204663
204663
  versionBase: getVersionBase(),
204664
- buildTime: "2026-04-01T19:52:43.844Z",
204664
+ buildTime: "2026-04-01T19:55:20.831Z",
204665
204665
  deploymentEnvironment: env4.detectDeploymentEnvironment(),
204666
204666
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
204667
204667
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -592947,7 +592947,7 @@ function getAnthropicEnvMetadata() {
592947
592947
  function getBuildAgeMinutes() {
592948
592948
  if (false)
592949
592949
  ;
592950
- const buildTime = new Date("2026-04-01T19:52:43.844Z").getTime();
592950
+ const buildTime = new Date("2026-04-01T19:55:20.831Z").getTime();
592951
592951
  if (isNaN(buildTime))
592952
592952
  return;
592953
592953
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -595270,7 +595270,7 @@ async function* queryModelOpenAI(messages, systemPrompt, thinkingConfig, tools,
595270
595270
  temperature: options.temperatureOverride ?? 1,
595271
595271
  reasoning,
595272
595272
  previous_response_id: usePreviousResponseId ? _lastResponseId : undefined,
595273
- store: true
595273
+ store: !client3.isOAuthChatgpt
595274
595274
  };
595275
595275
  logForDebugging(`[OpenAI] Request: model=${openaiModel} input=${input.length} items (${usePreviousResponseId ? "incremental, chain=" + _lastResponseId : "full"}) tools=${oaiTools.length}`);
595276
595276
  const start = Date.now();
@@ -679522,7 +679522,7 @@ var init_bridge_kick = __esm(() => {
679522
679522
  var call56 = async () => {
679523
679523
  return {
679524
679524
  type: "text",
679525
- value: `${"2.1.88-rebuild"} (built ${"2026-04-01T19:52:43.844Z"})`
679525
+ value: `${"2.1.88-rebuild"} (built ${"2026-04-01T19:55:20.831Z"})`
679526
679526
  };
679527
679527
  }, version6, version_default;
679528
679528
  var init_version = __esm(() => {
@@ -699315,7 +699315,8 @@ async function verifyApiKey(apiKey, isNonInteractiveSession) {
699315
699315
  body: JSON.stringify({
699316
699316
  model: resolveOpenAIModel2(getSmallFastModel()),
699317
699317
  input: "test",
699318
- max_output_tokens: 1
699318
+ max_output_tokens: 1,
699319
+ store: !client3.isOAuthChatgpt
699319
699320
  })
699320
699321
  });
699321
699322
  if (resp.status === 401 || resp.status === 403) {
@@ -777532,4 +777533,4 @@ async function main2() {
777532
777533
  }
777533
777534
  main2();
777534
777535
 
777535
- //# debugId=AD792C044104FF2164756E2164756E21
777536
+ //# debugId=63B92EFA731D53E864756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-openai",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Claude Code CLI with OpenAI GPT-5.4 backend support",
5
5
  "type": "module",
6
6
  "bin": {