@catladder/cli 3.14.1 → 3.15.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.
@@ -3,7 +3,6 @@ import type { BuildConfigFromWorkspace, BuildConfigStandalone, WorkspaceBuildCon
3
3
  import type { PredefinedVariables, SecretEnvVar } from "../context";
4
4
  import type { DeployConfig } from "../deploy";
5
5
  import type { VariableValue } from "../variables/VariableValue";
6
- import type { AgentConfig } from "./agent";
7
6
  import type { ComponentConfig, Config, EnvType, PipelineTrigger } from "./config";
8
7
  import type { BaseStage, CatladderJob } from "./jobs";
9
8
  import type { PipelineType } from "./pipeline";
@@ -156,9 +155,4 @@ export type WorkspaceContext = {
156
155
  pipelineType: PipelineType;
157
156
  env: string;
158
157
  };
159
- export type AgentContext = {
160
- type: "agent";
161
- name: string;
162
- fullConfig: Config;
163
- agentConfig: AgentConfig;
164
- };
158
+ export type { AgentContext } from "../pipeline/agent/createAgentContext";