@forgezero/agent 0.1.52 → 0.1.55

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,6 +3,7 @@ import { type GitHostResolver } from './git-egress';
3
3
  import type { SoftwareRequirement } from './software';
4
4
  import type { DeploymentService } from './definition';
5
5
  import type { ServiceActivationState } from './service-supervisor';
6
+ import type { ContainerActivateRequest, ContainerBuildRequest, ContainerBuildResult } from './container-supervisor';
6
7
  import { type RunResult } from './pipeline';
7
8
  import type { SecretCache } from './cache';
8
9
  import type { AttestationSource } from './socket';
@@ -89,6 +90,10 @@ export interface DeploymentOptions {
89
90
  root: string;
90
91
  service: DeploymentService;
91
92
  }) => Promise<ServiceActivationState>;
93
+ /** Root-owned fixed Docker builder; the project runner never receives the daemon socket. */
94
+ buildContainer?: (request: ContainerBuildRequest) => Promise<ContainerBuildResult>;
95
+ /** Root-owned bounded container/Nginx blue-green activation. */
96
+ activateContainer?: (request: ContainerActivateRequest) => Promise<ServiceActivationState>;
92
97
  /** Agent-owned directory; definitions cannot choose or overwrite this path. */
93
98
  capacityEvidenceDirectory?: string;
94
99
  /** Test/embedding seam. Production runs the bounded loopback GET calibrator. */