@odla-ai/cli 0.35.0 → 0.35.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 +187 -95
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-EG23MPUC.js → chunk-PYR73XBD.js} +82 -7
- package/dist/chunk-PYR73XBD.js.map +1 -0
- package/dist/{cli-Z5NSTS75.js → cli-ZBNA7J4T.js} +2 -2
- package/dist/index.cjs +155 -80
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-EG23MPUC.js.map +0 -1
- /package/dist/{cli-Z5NSTS75.js.map → cli-ZBNA7J4T.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -194,6 +194,14 @@ interface CliDependencies {
|
|
|
194
194
|
* @param argv Argument vector without the node/script prefix.
|
|
195
195
|
* @param dependencies Optional side-effect overrides for embedding and tests.
|
|
196
196
|
*/
|
|
197
|
+
/**
|
|
198
|
+
* Run one CLI invocation.
|
|
199
|
+
*
|
|
200
|
+
* The only thing wrapped around dispatch is credential recovery, and it lives
|
|
201
|
+
* here because this is the one funnel every command passes through: any of them
|
|
202
|
+
* can be the request that discovers the cached credential was revoked, and none
|
|
203
|
+
* of them should have to know how to say so.
|
|
204
|
+
*/
|
|
197
205
|
declare function runCli(argv?: string[], dependencies?: CliDependencies): Promise<void>;
|
|
198
206
|
|
|
199
207
|
/** Hosted platform purposes whose provider, model, and budgets an admin may route. */
|
package/dist/index.d.ts
CHANGED
|
@@ -194,6 +194,14 @@ interface CliDependencies {
|
|
|
194
194
|
* @param argv Argument vector without the node/script prefix.
|
|
195
195
|
* @param dependencies Optional side-effect overrides for embedding and tests.
|
|
196
196
|
*/
|
|
197
|
+
/**
|
|
198
|
+
* Run one CLI invocation.
|
|
199
|
+
*
|
|
200
|
+
* The only thing wrapped around dispatch is credential recovery, and it lives
|
|
201
|
+
* here because this is the one funnel every command passes through: any of them
|
|
202
|
+
* can be the request that discovers the cached credential was revoked, and none
|
|
203
|
+
* of them should have to know how to say so.
|
|
204
|
+
*/
|
|
197
205
|
declare function runCli(argv?: string[], dependencies?: CliDependencies): Promise<void>;
|
|
198
206
|
|
|
199
207
|
/** Hosted platform purposes whose provider, model, and budgets an admin may route. */
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odla-ai/cli",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.3",
|
|
4
4
|
"description": "Agent-operable CLI for odla provisioning, calendar consent and connection lifecycle, System AI administration, Worker secrets, security jobs, and smoke checks.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://odla.ai/docs/packages/cli",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@odla-ai/ai": "0.14.0",
|
|
62
|
-
"@odla-ai/apps": "0.
|
|
62
|
+
"@odla-ai/apps": "0.12.0",
|
|
63
63
|
"@odla-ai/brand": "0.5.0",
|
|
64
64
|
"@odla-ai/db": "0.11.0",
|
|
65
65
|
"@odla-ai/security": "0.3.3"
|