@forgezero/agent 0.1.34 → 0.1.35
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 +21 -0
- package/dist/agent-heartbeat.js +1 -1
- package/dist/bootstrap.d.ts +128 -0
- package/dist/bootstrap.js +3361 -0
- package/dist/cli/cloudflare-bootstrap.d.ts +11 -0
- package/dist/cloudflare-bootstrap.d.ts +218 -0
- package/dist/cloudflare-bootstrap.js +1196 -0
- package/dist/cloudflare-edge.d.ts +265 -0
- package/dist/cloudflare-edge.js +424 -0
- package/dist/fz-agent.js +1 -1
- package/dist/fz.js +3774 -264
- package/dist/metal-bootstrap.d.ts +52 -0
- package/dist/metal-bootstrap.js +942 -0
- package/dist/platform-bootstrap-runtime.d.ts +161 -0
- package/dist/platform-bootstrap-runtime.js +462 -0
- package/dist/provision.js +2 -2
- package/dist/version.d.ts +1 -1
- package/package.json +22 -2
package/dist/fz-agent.js
CHANGED
|
@@ -8777,7 +8777,7 @@ function requestAgentUpdate(request, socketPath = DEFAULT_AGENT_UPDATE_SOCKET, t
|
|
|
8777
8777
|
import { readFileSync as readFileSync8 } from "fs";
|
|
8778
8778
|
|
|
8779
8779
|
// src/version.ts
|
|
8780
|
-
var VERSION3 = "0.1.
|
|
8780
|
+
var VERSION3 = "0.1.35";
|
|
8781
8781
|
|
|
8782
8782
|
// src/agent-heartbeat.ts
|
|
8783
8783
|
var unquote = (value) => value.replace(/^['"]|['"]$/g, "");
|