claude-code-openai 0.1.19 → 0.1.21
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.
- package/dist/cli.js +8 -7
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -204660,7 +204660,7 @@ var init_metadata = __esm(() => {
|
|
|
204660
204660
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
204661
204661
|
version: "2.1.88-rebuild",
|
|
204662
204662
|
versionBase: getVersionBase(),
|
|
204663
|
-
buildTime: "2026-04-01T20:
|
|
204663
|
+
buildTime: "2026-04-01T20:32:41.984Z",
|
|
204664
204664
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
204665
204665
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
204666
204666
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -552318,6 +552318,9 @@ function getColorModuleUnavailableReason() {
|
|
|
552318
552318
|
if (isEnvDefinedFalsy(process.env.CLAUDE_CODE_SYNTAX_HIGHLIGHT)) {
|
|
552319
552319
|
return "env";
|
|
552320
552320
|
}
|
|
552321
|
+
if (typeof ColorFile.prototype.render !== "function") {
|
|
552322
|
+
return "stub";
|
|
552323
|
+
}
|
|
552321
552324
|
return null;
|
|
552322
552325
|
}
|
|
552323
552326
|
function expectColorDiff() {
|
|
@@ -592946,7 +592949,7 @@ function getAnthropicEnvMetadata() {
|
|
|
592946
592949
|
function getBuildAgeMinutes() {
|
|
592947
592950
|
if (false)
|
|
592948
592951
|
;
|
|
592949
|
-
const buildTime = new Date("2026-04-01T20:
|
|
592952
|
+
const buildTime = new Date("2026-04-01T20:32:41.984Z").getTime();
|
|
592950
592953
|
if (isNaN(buildTime))
|
|
592951
592954
|
return;
|
|
592952
592955
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -595009,11 +595012,9 @@ function convertAssistantMessage(msg, items) {
|
|
|
595009
595012
|
textParts.length = 0;
|
|
595010
595013
|
}
|
|
595011
595014
|
const tu = block;
|
|
595012
|
-
const callId = tu.id;
|
|
595013
595015
|
items.push({
|
|
595014
595016
|
type: "function_call",
|
|
595015
|
-
|
|
595016
|
-
call_id: callId,
|
|
595017
|
+
call_id: tu.id,
|
|
595017
595018
|
name: tu.name,
|
|
595018
595019
|
arguments: typeof tu.input === "string" ? tu.input : JSON.stringify(tu.input)
|
|
595019
595020
|
});
|
|
@@ -679537,7 +679538,7 @@ var init_bridge_kick = __esm(() => {
|
|
|
679537
679538
|
var call56 = async () => {
|
|
679538
679539
|
return {
|
|
679539
679540
|
type: "text",
|
|
679540
|
-
value: `${"2.1.88-rebuild"} (built ${"2026-04-01T20:
|
|
679541
|
+
value: `${"2.1.88-rebuild"} (built ${"2026-04-01T20:32:41.984Z"})`
|
|
679541
679542
|
};
|
|
679542
679543
|
}, version6, version_default;
|
|
679543
679544
|
var init_version = __esm(() => {
|
|
@@ -777548,4 +777549,4 @@ async function main2() {
|
|
|
777548
777549
|
}
|
|
777549
777550
|
main2();
|
|
777550
777551
|
|
|
777551
|
-
//# debugId=
|
|
777552
|
+
//# debugId=721A35D1A942C45564756E2164756E21
|