@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.
- package/README.md +118 -9
- package/dist/agent-heartbeat.js +1 -1
- package/dist/bootstrap.js +110 -69
- package/dist/community-rehearsal-host.js +40 -8
- package/dist/container-supervisor.d.ts +36 -0
- package/dist/definition.js +38 -6
- package/dist/deploy-actions.d.ts +87 -0
- package/dist/deploy-compiler.d.ts +26 -0
- package/dist/deploy-compiler.js +1050 -0
- package/dist/deploy-file.js +45 -13
- package/dist/deploy-plan-runner.d.ts +65 -0
- package/dist/deploy-plan-runner.js +1205 -0
- package/dist/deploy-plan.d.ts +41 -0
- package/dist/deploy-plan.js +925 -0
- package/dist/deploy-providers.d.ts +85 -0
- package/dist/deploy.d.ts +439 -0
- package/dist/deploy.js +169 -0
- package/dist/deployment.d.ts +5 -0
- package/dist/fz-agent.js +2116 -329
- package/dist/fz.js +1444 -313
- package/dist/metal-bootstrap.js +1 -1
- package/dist/operator-bootstrap.js +167 -126
- package/dist/platform-bootstrap-runtime.js +1 -1
- package/dist/platform-fleet-verification.js +500 -121
- package/dist/provision.js +400 -21
- package/dist/software-helper.d.ts +5 -0
- package/dist/software-helper.js +400 -19
- package/dist/software.d.ts +1 -1
- package/dist/software.js +38 -6
- package/dist/version.d.ts +1 -1
- package/package.json +17 -1
|
@@ -403,7 +403,7 @@ async function activatePlatformRelease(config, requestedRelease, options = {}) {
|
|
|
403
403
|
const release = realpathSync(requestedRelease);
|
|
404
404
|
if (!release.startsWith(`${releases}/`) || release === releases)
|
|
405
405
|
throw new Error("release is outside configured releases directory");
|
|
406
|
-
for (const required of [".fz/deploy.json", "src/index.ts", "bun.lock"]) {
|
|
406
|
+
for (const required of ["forgezero.deploy.ts", ".fz/deploy.plan.json", "src/index.ts", "bun.lock"]) {
|
|
407
407
|
const metadata = statSync(join(release, required));
|
|
408
408
|
if (!metadata.isFile() || metadata.size < 1)
|
|
409
409
|
throw new Error(`release is incomplete: ${required}`);
|