@forgezero/agent 0.1.58 → 0.1.59

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.
@@ -292,7 +292,7 @@ function systemdAgentEgressDirectives(loopbackTcpPorts = []) {
292
292
  }
293
293
 
294
294
  // src/version.ts
295
- var VERSION = "0.1.58";
295
+ var VERSION = "0.1.59";
296
296
 
297
297
  // src/otel-collector.ts
298
298
  var FORGEZERO_OTEL_COLLECTOR_UNIT = "forgezero-otel-collector.service";
@@ -1,3 +1,4 @@
1
+ import { type PlatformBootstrapSecrets } from './bootstrap';
1
2
  import { type PlatformGenesisEnvironment } from './platform-genesis';
2
3
  export interface OperatorSshHop {
3
4
  address: string;
@@ -76,7 +77,9 @@ export declare function planOperatorPlatformBootstrap(request: OperatorPlatformB
76
77
  * management token is placed in argv; OpenSSH selects the matching private key
77
78
  * from the caller's approved agent using only its public half.
78
79
  */
79
- export declare function applyOperatorPlatformBootstrap(request: OperatorPlatformBootstrapRequest, mode: OperatorPlatformBootstrapMode, options?: OperatorPlatformBootstrapOptions): Promise<{
80
+ export declare function applyOperatorPlatformBootstrap(request: OperatorPlatformBootstrapRequest, mode: OperatorPlatformBootstrapMode, options?: OperatorPlatformBootstrapOptions & {
81
+ secrets?: PlatformBootstrapSecrets;
82
+ }): Promise<{
80
83
  plan: OperatorPlatformBootstrapPlan;
81
84
  output: string;
82
85
  }>;