@netlify/agent-runner-cli 1.175.1-alpha.0 → 1.176.0-PAW-469.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/bin-local.js +237 -236
- package/dist/bin.js +315 -314
- package/dist/connections-mcp-server.js +36 -36
- package/dist/index.d.ts +2 -1
- package/dist/index.js +240 -239
- package/package.json +1 -1
- package/dist/skills/netlify-connections/SKILL.md +0 -114
package/dist/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ type RunnerConfig = {
|
|
|
68
68
|
});
|
|
69
69
|
type Site = {
|
|
70
70
|
id: string;
|
|
71
|
+
has_database?: boolean;
|
|
71
72
|
published_deploy?: {
|
|
72
73
|
id: string;
|
|
73
74
|
};
|
|
@@ -119,6 +120,6 @@ interface PipelineOptions {
|
|
|
119
120
|
traceparent?: string;
|
|
120
121
|
};
|
|
121
122
|
}
|
|
122
|
-
declare const runPipeline: (
|
|
123
|
+
declare const runPipeline: (options: PipelineOptions) => Promise<void>;
|
|
123
124
|
|
|
124
125
|
export { type Context, type PipelineOptions, runPipeline };
|