@odla-ai/cli 0.25.17 → 0.25.19

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/index.d.cts CHANGED
@@ -171,6 +171,12 @@ declare function exitCodeFor(err: unknown): number;
171
171
  interface CliDependencies {
172
172
  fetch?: typeof fetch;
173
173
  openUrl?: (url: string) => Promise<void>;
174
+ /** Reads one bounded secret value from stdin; injectable for embedding/tests. */
175
+ readStdin?: () => Promise<string>;
176
+ /** User-home override for global agent setup. */
177
+ homeDir?: string;
178
+ /** Codex-home override for global Codex skill setup. */
179
+ codexHomeDir?: string;
174
180
  pollWait?: (milliseconds: number, signal?: AbortSignal) => Promise<void>;
175
181
  readGitOrigin?: (cwd: string) => Promise<string>;
176
182
  confirm?: (message: string) => Promise<boolean>;
package/dist/index.d.ts CHANGED
@@ -171,6 +171,12 @@ declare function exitCodeFor(err: unknown): number;
171
171
  interface CliDependencies {
172
172
  fetch?: typeof fetch;
173
173
  openUrl?: (url: string) => Promise<void>;
174
+ /** Reads one bounded secret value from stdin; injectable for embedding/tests. */
175
+ readStdin?: () => Promise<string>;
176
+ /** User-home override for global agent setup. */
177
+ homeDir?: string;
178
+ /** Codex-home override for global Codex skill setup. */
179
+ codexHomeDir?: string;
174
180
  pollWait?: (milliseconds: number, signal?: AbortSignal) => Promise<void>;
175
181
  readGitOrigin?: (cwd: string) => Promise<string>;
176
182
  confirm?: (message: string) => Promise<boolean>;
package/dist/index.js CHANGED
@@ -49,7 +49,7 @@ import {
49
49
  startHostedSecurityJob,
50
50
  surfacePaths,
51
51
  validateInvocation
52
- } from "./chunk-5MRY3V2K.js";
52
+ } from "./chunk-S3EJ66VG.js";
53
53
  export {
54
54
  AGENT_HARNESSES,
55
55
  CAPABILITIES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odla-ai/cli",
3
- "version": "0.25.17",
3
+ "version": "0.25.19",
4
4
  "description": "Agent-operable CLI for odla provisioning, calendar consent and sync lifecycle, System AI administration, Worker secrets, security jobs, and smoke checks.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://odla.ai/docs/packages/cli",