@go-labs-sg/bb 2.19.0 → 2.23.0
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 +64 -27
- package/command-manifest.json +775 -4
- package/command-reference.md +29 -4
- package/dist/index.js +21134 -1997
- package/package.json +2 -2
- package/role-aware-agent-guide.md +4 -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 -633
- 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.
|
|
@@ -322,7 +347,7 @@ Effects: state-change, email.
|
|
|
322
347
|
|
|
323
348
|
## `bb bill create`
|
|
324
349
|
|
|
325
|
-
Create
|
|
350
|
+
Create a bill or claim with an approved supplier.
|
|
326
351
|
|
|
327
352
|
Legacy aliases: `create-bill`, `create_bill`.
|
|
328
353
|
|
|
@@ -330,7 +355,7 @@ Effects: state-change, email, external-write, financial-write.
|
|
|
330
355
|
|
|
331
356
|
## `bb bill selection validate`
|
|
332
357
|
|
|
333
|
-
Validate
|
|
358
|
+
Validate the approved supplier and selected bill line items.
|
|
334
359
|
|
|
335
360
|
Legacy aliases: `validate-bill-selection`, `validate_bill_selection`.
|
|
336
361
|
|
|
@@ -474,7 +499,7 @@ Effects: state-change, delete.
|
|
|
474
499
|
|
|
475
500
|
## `bb quotation create`
|
|
476
501
|
|
|
477
|
-
Create
|
|
502
|
+
Create a quotation with an approved supplier.
|
|
478
503
|
|
|
479
504
|
Legacy aliases: `create-quotation`, `create_quotation`.
|
|
480
505
|
|
|
@@ -482,7 +507,7 @@ Effects: state-change.
|
|
|
482
507
|
|
|
483
508
|
## `bb quotation update`
|
|
484
509
|
|
|
485
|
-
Update
|
|
510
|
+
Update a quotation with an approved supplier.
|
|
486
511
|
|
|
487
512
|
Legacy aliases: `update-quotation`, `update_quotation`.
|
|
488
513
|
|