@go-labs-sg/bb 2.20.0 → 2.24.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/README.md +58 -27
- package/command-manifest.json +771 -0
- package/command-reference.md +25 -0
- package/dist/index.js +21162 -1995
- package/package.json +2 -2
- package/role-aware-agent-guide.md +2 -2
- package/dist/api-client.js +0 -93
- package/dist/cli-trace.js +0 -86
- package/dist/commands.js +0 -2299
- package/dist/filter-enums.js +0 -58
- package/dist/load-env.js +0 -6
- package/dist/parse-args.js +0 -55
- package/dist/parse-cli-enums.js +0 -336
- package/dist/parse-json-flag.js +0 -20
- package/dist/parse-mutation-payload.js +0 -363
- package/dist/prisma-enums.js +0 -81
- package/dist/registry/generate-command-artifacts.js +0 -36
- package/dist/registry/index.js +0 -645
- package/dist/rich-text.js +0 -34
- package/dist/runtime/confirmation.js +0 -76
- package/dist/runtime/error.js +0 -143
- package/dist/runtime/index.js +0 -6
- package/dist/runtime/output.js +0 -36
- package/dist/runtime/process-runtime.js +0 -28
- package/dist/runtime/sanitize.js +0 -50
- package/dist/runtime/session.js +0 -50
- package/dist/runtime/types.js +0 -1
package/command-reference.md
CHANGED
|
@@ -10,12 +10,37 @@ Command-specific arguments currently pass through the compatibility dispatcher;
|
|
|
10
10
|
- `--quiet`: Suppress non-error diagnostics.
|
|
11
11
|
- `--debug`: Emit sanitized diagnostic traces.
|
|
12
12
|
- `--api-url`: Override the Budget Builder API base URL.
|
|
13
|
+
- `--no-browser`: Print the authorization URL without opening a browser.
|
|
13
14
|
- `--allow-state-change`: Allow a Budget Builder state change in non-interactive use.
|
|
14
15
|
- `--allow-email`: Allow sending email in non-interactive use.
|
|
15
16
|
- `--allow-external-write`: Allow writes to external systems in non-interactive use.
|
|
16
17
|
- `--allow-delete`: Allow deleting data in non-interactive use.
|
|
17
18
|
- `--allow-financial-write`: Allow financial-record changes in non-interactive use.
|
|
18
19
|
|
|
20
|
+
## `bb auth login`
|
|
21
|
+
|
|
22
|
+
Authorize this device through Budget Builder in your browser.
|
|
23
|
+
|
|
24
|
+
Legacy aliases: .
|
|
25
|
+
|
|
26
|
+
Effects: none.
|
|
27
|
+
|
|
28
|
+
## `bb auth status`
|
|
29
|
+
|
|
30
|
+
Show the active CLI authentication method and session status.
|
|
31
|
+
|
|
32
|
+
Legacy aliases: .
|
|
33
|
+
|
|
34
|
+
Effects: none.
|
|
35
|
+
|
|
36
|
+
## `bb auth logout`
|
|
37
|
+
|
|
38
|
+
Revoke the interactive CLI session and remove its local credential.
|
|
39
|
+
|
|
40
|
+
Legacy aliases: .
|
|
41
|
+
|
|
42
|
+
Effects: none.
|
|
43
|
+
|
|
19
44
|
## `bb auth whoami`
|
|
20
45
|
|
|
21
46
|
Show the active API-key identity.
|