@workbench-ai/workbench 0.0.66 → 0.0.67
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/command-model.js +2 -2
- package/dist/dev-open/client.css +0 -3
- package/dist/dev-open/client.js +204 -204
- package/dist/dev-open-server.js +21 -28
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +236 -41
- package/dist/local-archive.d.ts.map +1 -1
- package/dist/local-archive.js +12 -7
- package/dist/local-inspection.d.ts.map +1 -1
- package/dist/local-inspection.js +72 -35
- package/package.json +4 -4
package/dist/command-model.js
CHANGED
|
@@ -65,7 +65,7 @@ const rootLines = [
|
|
|
65
65
|
" workbench whoami [--dir DIR] [--json]",
|
|
66
66
|
" workbench clone OWNER/BENCHMARK [DIR] [--dry-run] [--json]",
|
|
67
67
|
" workbench pull [--dir DIR] [--dry-run] [--json]",
|
|
68
|
-
" workbench push [SOURCE] [--dir DIR] [--visibility public|private] [--dry-run] [--json]",
|
|
68
|
+
" workbench push [SOURCE] [--dir DIR] [--visibility public|private] [--dry-run] [--force] [--json]",
|
|
69
69
|
"",
|
|
70
70
|
"Auth:",
|
|
71
71
|
" workbench auth connect ADAPTER[/SLOT] [--dir DIR] [--method METHOD] [--profile PROFILE] [--profile-root DIR] [--local-only] [--json]",
|
|
@@ -364,7 +364,7 @@ const commandHelp = Object.fromEntries(Object.entries({
|
|
|
364
364
|
]),
|
|
365
365
|
push: withSourceDirectoryHelp([
|
|
366
366
|
"Usage:",
|
|
367
|
-
" workbench push [SOURCE] [--dir DIR] [--visibility public|private] [--dry-run] [--json]",
|
|
367
|
+
" workbench push [SOURCE] [--dir DIR] [--visibility public|private] [--dry-run] [--force] [--json]",
|
|
368
368
|
"",
|
|
369
369
|
"Push local project source and runtime history to the remembered remote, or create one when the project has not been pushed before.",
|
|
370
370
|
"",
|
package/dist/dev-open/client.css
CHANGED