opencode-swarm 6.38.0 → 6.40.1

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.
@@ -91,6 +91,7 @@ export declare const PhaseSchema: z.ZodObject<{
91
91
  evidence_path: z.ZodOptional<z.ZodString>;
92
92
  blocked_reason: z.ZodOptional<z.ZodString>;
93
93
  }, z.core.$strip>>>;
94
+ required_agents: z.ZodOptional<z.ZodArray<z.ZodString>>;
94
95
  }, z.core.$strip>;
95
96
  export type Phase = z.infer<typeof PhaseSchema>;
96
97
  export declare const PlanSchema: z.ZodObject<{
@@ -129,6 +130,7 @@ export declare const PlanSchema: z.ZodObject<{
129
130
  evidence_path: z.ZodOptional<z.ZodString>;
130
131
  blocked_reason: z.ZodOptional<z.ZodString>;
131
132
  }, z.core.$strip>>>;
133
+ required_agents: z.ZodOptional<z.ZodArray<z.ZodString>>;
132
134
  }, z.core.$strip>>;
133
135
  migration_status: z.ZodOptional<z.ZodEnum<{
134
136
  native: "native";
@@ -375,7 +375,7 @@ export type PlanCursorConfig = z.infer<typeof PlanCursorConfigSchema>;
375
375
  export declare const CheckpointConfigSchema: z.ZodObject<{
376
376
  enabled: z.ZodDefault<z.ZodBoolean>;
377
377
  auto_checkpoint_threshold: z.ZodDefault<z.ZodNumber>;
378
- }, z.core.$strip>;
378
+ }, z.core.$strict>;
379
379
  export type CheckpointConfig = z.infer<typeof CheckpointConfigSchema>;
380
380
  export declare const AutomationModeSchema: z.ZodEnum<{
381
381
  auto: "auto";
@@ -699,7 +699,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
699
699
  checkpoint: z.ZodOptional<z.ZodObject<{
700
700
  enabled: z.ZodDefault<z.ZodBoolean>;
701
701
  auto_checkpoint_threshold: z.ZodDefault<z.ZodNumber>;
702
- }, z.core.$strip>>;
702
+ }, z.core.$strict>>;
703
703
  automation: z.ZodOptional<z.ZodType<{
704
704
  mode: "auto" | "manual" | "hybrid";
705
705
  capabilities: {
@@ -785,6 +785,7 @@ export declare const PluginConfigSchema: z.ZodObject<{
785
785
  emergencyThreshold: z.ZodDefault<z.ZodNumber>;
786
786
  preserveLastNTurns: z.ZodDefault<z.ZodNumber>;
787
787
  }, z.core.$strip>>;
788
+ turbo_mode: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
788
789
  }, z.core.$strip>;
789
790
  export type PluginConfig = z.infer<typeof PluginConfigSchema>;
790
791
  export type { AgentName, PipelineAgentName, QAAgentName, } from './constants';