oh-my-opencode-slim 0.9.4 → 0.9.6

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.
@@ -146,6 +146,12 @@ export declare const BackgroundTaskConfigSchema: z.ZodObject<{
146
146
  maxConcurrentStarts: z.ZodDefault<z.ZodNumber>;
147
147
  }, z.core.$strip>;
148
148
  export type BackgroundTaskConfig = z.infer<typeof BackgroundTaskConfigSchema>;
149
+ export declare const InterviewConfigSchema: z.ZodObject<{
150
+ maxQuestions: z.ZodDefault<z.ZodNumber>;
151
+ outputFolder: z.ZodDefault<z.ZodString>;
152
+ autoOpenBrowser: z.ZodDefault<z.ZodBoolean>;
153
+ }, z.core.$strip>;
154
+ export type InterviewConfig = z.infer<typeof InterviewConfigSchema>;
149
155
  export declare const TodoContinuationConfigSchema: z.ZodObject<{
150
156
  maxContinuations: z.ZodDefault<z.ZodNumber>;
151
157
  cooldownMs: z.ZodDefault<z.ZodNumber>;
@@ -272,6 +278,11 @@ export declare const PluginConfigSchema: z.ZodObject<{
272
278
  background: z.ZodOptional<z.ZodObject<{
273
279
  maxConcurrentStarts: z.ZodDefault<z.ZodNumber>;
274
280
  }, z.core.$strip>>;
281
+ interview: z.ZodOptional<z.ZodObject<{
282
+ maxQuestions: z.ZodDefault<z.ZodNumber>;
283
+ outputFolder: z.ZodDefault<z.ZodString>;
284
+ autoOpenBrowser: z.ZodDefault<z.ZodBoolean>;
285
+ }, z.core.$strip>>;
275
286
  todoContinuation: z.ZodOptional<z.ZodObject<{
276
287
  maxContinuations: z.ZodDefault<z.ZodNumber>;
277
288
  cooldownMs: z.ZodDefault<z.ZodNumber>;
@@ -14,4 +14,5 @@ export declare function createAutoUpdateCheckerHook(ctx: PluginInput, options?:
14
14
  };
15
15
  }) => void;
16
16
  };
17
+ export declare function getAutoUpdateInstallDir(): string;
17
18
  export type { AutoUpdateCheckerOptions } from './types';