@birdybeep/cli 0.0.2 → 0.0.3
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/bin.cjs
CHANGED
|
@@ -589,7 +589,7 @@ async function pairTokenPoll(apiUrl, deviceCode, fetchImpl, machineFingerprint)
|
|
|
589
589
|
}
|
|
590
590
|
|
|
591
591
|
// src/version.ts
|
|
592
|
-
var CLI_VERSION = "0.0.
|
|
592
|
+
var CLI_VERSION = "0.0.3".length > 0 ? "0.0.3" : "0.0.0";
|
|
593
593
|
|
|
594
594
|
// src/commands/login.ts
|
|
595
595
|
var DEFAULT_POLL_INTERVAL_MS = 2e3;
|
package/dist/bin.js
CHANGED
|
@@ -181,7 +181,7 @@ async function dispatch(argv, deps) {
|
|
|
181
181
|
}
|
|
182
182
|
|
|
183
183
|
// src/version.ts
|
|
184
|
-
var CLI_VERSION = "0.0.
|
|
184
|
+
var CLI_VERSION = "0.0.3".length > 0 ? "0.0.3" : "0.0.0";
|
|
185
185
|
|
|
186
186
|
// src/commands/agent.ts
|
|
187
187
|
import { claudeCodeAdapter } from "@birdybeep/claude-code";
|
|
@@ -986,4 +986,4 @@ export {
|
|
|
986
986
|
buildCommands,
|
|
987
987
|
runCli
|
|
988
988
|
};
|
|
989
|
-
//# sourceMappingURL=chunk-
|
|
989
|
+
//# sourceMappingURL=chunk-6VRCYDN5.js.map
|
package/dist/index.cjs
CHANGED
|
@@ -625,7 +625,7 @@ async function pairTokenPoll(apiUrl, deviceCode, fetchImpl, machineFingerprint)
|
|
|
625
625
|
}
|
|
626
626
|
|
|
627
627
|
// src/version.ts
|
|
628
|
-
var CLI_VERSION = "0.0.
|
|
628
|
+
var CLI_VERSION = "0.0.3".length > 0 ? "0.0.3" : "0.0.0";
|
|
629
629
|
|
|
630
630
|
// src/commands/login.ts
|
|
631
631
|
var DEFAULT_POLL_INTERVAL_MS = 2e3;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@birdybeep/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "The BirdyBeep CLI — pair your machine, install agent adapters, and stream coding-agent lifecycle events to BirdyBeep.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"uqr": "0.1.2",
|
|
35
|
-
"@birdybeep/agent-core": "0.0.
|
|
36
|
-
"@birdybeep/claude-code": "0.0.
|
|
37
|
-
"@birdybeep/codex": "0.0.
|
|
38
|
-
"@birdybeep/opencode": "0.0.
|
|
35
|
+
"@birdybeep/agent-core": "0.0.3",
|
|
36
|
+
"@birdybeep/claude-code": "0.0.3",
|
|
37
|
+
"@birdybeep/codex": "0.0.3",
|
|
38
|
+
"@birdybeep/opencode": "0.0.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@birdybeep/test-harness": "0.0.0"
|
|
File without changes
|