@odla-ai/cli 0.27.14 → 0.27.15
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 +10 -0
- package/dist/bin.cjs +2738 -1503
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +106 -12
- package/dist/bin.js.map +1 -1
- package/dist/{chunk-3SQ2XUBB.js → chunk-MR5QXX3B.js} +9309 -9407
- package/dist/chunk-MR5QXX3B.js.map +1 -0
- package/dist/chunk-UKLSRQ5J.js +129 -0
- package/dist/chunk-UKLSRQ5J.js.map +1 -0
- package/dist/cli-2RZFZRRT.js +12 -0
- package/dist/cli-2RZFZRRT.js.map +1 -0
- package/dist/index.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -5
- package/dist/index.d.ts +4 -5
- package/dist/index.js +5 -3
- package/package.json +6 -6
- package/dist/chunk-3SQ2XUBB.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -173,12 +173,11 @@ type CommandRunner = (cmd: string, args: string[], opts?: {
|
|
|
173
173
|
cwd?: string;
|
|
174
174
|
}) => Promise<RunResult>;
|
|
175
175
|
|
|
176
|
-
/** Map a CLI failure to its process exit code
|
|
177
|
-
*
|
|
178
|
-
*
|
|
179
|
-
* `discuss watch` that timed out before anyone replied. A stale checkpoint is
|
|
180
|
-
* a consistency failure (3); an exhausted remote retry is retryable (6). */
|
|
176
|
+
/** Map a CLI failure to its documented process exit code without importing the
|
|
177
|
+
* command graph. The binary needs this tiny module before it verifies that its
|
|
178
|
+
* external runtime dependencies are coherent. */
|
|
181
179
|
declare function exitCodeFor(err: unknown): number;
|
|
180
|
+
|
|
182
181
|
/** Injectable side-effect boundaries used to run and test the command dispatcher. */
|
|
183
182
|
interface CliDependencies {
|
|
184
183
|
fetch?: typeof fetch;
|
package/dist/index.d.ts
CHANGED
|
@@ -173,12 +173,11 @@ type CommandRunner = (cmd: string, args: string[], opts?: {
|
|
|
173
173
|
cwd?: string;
|
|
174
174
|
}) => Promise<RunResult>;
|
|
175
175
|
|
|
176
|
-
/** Map a CLI failure to its process exit code
|
|
177
|
-
*
|
|
178
|
-
*
|
|
179
|
-
* `discuss watch` that timed out before anyone replied. A stale checkpoint is
|
|
180
|
-
* a consistency failure (3); an exhausted remote retry is retryable (6). */
|
|
176
|
+
/** Map a CLI failure to its documented process exit code without importing the
|
|
177
|
+
* command graph. The binary needs this tiny module before it verifies that its
|
|
178
|
+
* external runtime dependencies are coherent. */
|
|
181
179
|
declare function exitCodeFor(err: unknown): number;
|
|
180
|
+
|
|
182
181
|
/** Injectable side-effect boundaries used to run and test the command dispatcher. */
|
|
183
182
|
interface CliDependencies {
|
|
184
183
|
fetch?: typeof fetch;
|
package/dist/index.js
CHANGED
|
@@ -27,7 +27,6 @@ import {
|
|
|
27
27
|
desiredRegistryState,
|
|
28
28
|
disconnectGitHubSecuritySource,
|
|
29
29
|
doctor,
|
|
30
|
-
exitCodeFor,
|
|
31
30
|
followHostedSecurityJob,
|
|
32
31
|
getHostedSecurityIntent,
|
|
33
32
|
getHostedSecurityJob,
|
|
@@ -45,7 +44,6 @@ import {
|
|
|
45
44
|
printCapabilities,
|
|
46
45
|
provision,
|
|
47
46
|
reconcileConfig,
|
|
48
|
-
redactSecrets,
|
|
49
47
|
repositoryFromGitRemote,
|
|
50
48
|
runCli,
|
|
51
49
|
runCodeRuntime,
|
|
@@ -57,7 +55,11 @@ import {
|
|
|
57
55
|
startHostedSecurityJob,
|
|
58
56
|
surfacePaths,
|
|
59
57
|
validateInvocation
|
|
60
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-MR5QXX3B.js";
|
|
59
|
+
import {
|
|
60
|
+
exitCodeFor,
|
|
61
|
+
redactSecrets
|
|
62
|
+
} from "./chunk-UKLSRQ5J.js";
|
|
61
63
|
export {
|
|
62
64
|
AGENT_HARNESSES,
|
|
63
65
|
CAPABILITIES,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odla-ai/cli",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.15",
|
|
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",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
"prepublishOnly": "npm run build"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@odla-ai/ai": "
|
|
61
|
-
"@odla-ai/apps": "
|
|
62
|
-
"@odla-ai/brand": "
|
|
63
|
-
"@odla-ai/db": "
|
|
64
|
-
"@odla-ai/security": "
|
|
60
|
+
"@odla-ai/ai": "0.12.0",
|
|
61
|
+
"@odla-ai/apps": "0.10.5",
|
|
62
|
+
"@odla-ai/brand": "0.5.0",
|
|
63
|
+
"@odla-ai/db": "0.10.1",
|
|
64
|
+
"@odla-ai/security": "0.3.3"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@odla-ai/harness": "*",
|