@netlify/agent-runner-cli 1.176.0-has-database.0 → 1.176.1-context-err-logs.0

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.ts CHANGED
@@ -68,7 +68,6 @@ type RunnerConfig = {
68
68
  });
69
69
  type Site = {
70
70
  id: string;
71
- has_database?: boolean;
72
71
  published_deploy?: {
73
72
  id: string;
74
73
  };
@@ -120,6 +119,6 @@ interface PipelineOptions {
120
119
  traceparent?: string;
121
120
  };
122
121
  }
123
- declare const runPipeline: ({ config, apiToken, cliPath, cwd, filter, isHotFollowUp, enqueuedAt, tracing, }: PipelineOptions) => Promise<void>;
122
+ declare const runPipeline: (options: PipelineOptions) => Promise<void>;
124
123
 
125
124
  export { type Context, type PipelineOptions, runPipeline };