@floomhq/floom 2.0.0 → 2.0.1
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/index.js +4 -4
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2675,7 +2675,7 @@ async function getMachineIdentity() {
|
|
|
2675
2675
|
}
|
|
2676
2676
|
|
|
2677
2677
|
// src/version.ts
|
|
2678
|
-
var VERSION = "0.
|
|
2678
|
+
var VERSION = "2.0.1";
|
|
2679
2679
|
|
|
2680
2680
|
// src/api-client.ts
|
|
2681
2681
|
var DEFAULT_TIMEOUT_MS = 2e4;
|
|
@@ -3593,14 +3593,14 @@ async function logoutCommand() {
|
|
|
3593
3593
|
async function whoamiCommand() {
|
|
3594
3594
|
const auth = await readAuth();
|
|
3595
3595
|
if (!auth) {
|
|
3596
|
-
log.info("Not logged in. Run: npx -y @floomhq/
|
|
3596
|
+
log.info("Not logged in. Run: npx -y @floomhq/floom login");
|
|
3597
3597
|
process.exitCode = 1;
|
|
3598
3598
|
return;
|
|
3599
3599
|
}
|
|
3600
3600
|
const rawAuth = await readRawAuth();
|
|
3601
3601
|
if (rawAuth && !isTrustedApiUrl(rawAuth.apiUrl)) {
|
|
3602
3602
|
log.warn(
|
|
3603
|
-
`Your CLI auth.json points at ${rawAuth.apiUrl}, which is not a trusted Floom API. Run 'npx -y @floomhq/
|
|
3603
|
+
`Your CLI auth.json points at ${rawAuth.apiUrl}, which is not a trusted Floom API. Run 'npx -y @floomhq/floom login' to re-auth on floom.dev.`
|
|
3604
3604
|
);
|
|
3605
3605
|
}
|
|
3606
3606
|
try {
|
|
@@ -3617,7 +3617,7 @@ async function whoamiCommand() {
|
|
|
3617
3617
|
} else {
|
|
3618
3618
|
log.err(error.message);
|
|
3619
3619
|
}
|
|
3620
|
-
log.warn("Local auth file exists but the server rejected this session. Run: npx -y @floomhq/
|
|
3620
|
+
log.warn("Local auth file exists but the server rejected this session. Run: npx -y @floomhq/floom login");
|
|
3621
3621
|
process.exitCode = 1;
|
|
3622
3622
|
}
|
|
3623
3623
|
}
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "2.0.
|
|
1
|
+
export const VERSION = "2.0.1";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@floomhq/floom",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Floom CLI \u2014 one shared skill library, pulled into the AI agent you choose (Claude, Codex, Cursor, Gemini, OpenCode).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://floom.dev",
|