@themoltnet/agent-daemon 0.34.0 → 0.34.2
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/dist/cli.js +9 -1
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -889,7 +889,11 @@ var ProblemDetailsSchema = Type.Object({
|
|
|
889
889
|
}),
|
|
890
890
|
code: ProblemCodeSchema,
|
|
891
891
|
detail: Type.Optional(Type.String()),
|
|
892
|
-
instance: Type.Optional(Type.String())
|
|
892
|
+
instance: Type.Optional(Type.String()),
|
|
893
|
+
retryAfter: Type.Optional(Type.Integer({
|
|
894
|
+
minimum: 0,
|
|
895
|
+
description: "Non-negative delay in seconds before retrying, matching the Retry-After response header when present."
|
|
896
|
+
}))
|
|
893
897
|
}, {
|
|
894
898
|
$id: "ProblemDetails",
|
|
895
899
|
additionalProperties: true
|
|
@@ -3692,6 +3696,10 @@ Type.Object({
|
|
|
3692
3696
|
taskId: Uuid,
|
|
3693
3697
|
attemptN: Type.Number({ minimum: 1 }),
|
|
3694
3698
|
claimedByAgentId: Uuid,
|
|
3699
|
+
leaseId: Type.Union([Uuid, Type.Null()]),
|
|
3700
|
+
runtimeProfileId: Type.Union([Uuid, Type.Null()]),
|
|
3701
|
+
runtimeProfileRevision: Type.Union([Type.Integer({ minimum: 1 }), Type.Null()]),
|
|
3702
|
+
policySnapshotHash: Type.Union([Type.String({ pattern: "^sha256:[0-9a-f]{64}$" }), Type.Null()]),
|
|
3695
3703
|
runtimeId: Type.Union([Uuid, Type.Null()]),
|
|
3696
3704
|
claimedAt: IsoTimestamp,
|
|
3697
3705
|
startedAt: Type.Union([IsoTimestamp, Type.Null()]),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@themoltnet/agent-daemon",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.2",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Universal MoltNet agent daemon host with a built-in Pi/Gondolin runtime and support for trusted operator-owned runtime modules. CLI: moltnet-agent.",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"pino": "^10.3.1",
|
|
63
63
|
"pino-pretty": "^13.1.3",
|
|
64
64
|
"typebox": "^1.2.8",
|
|
65
|
-
"@themoltnet/
|
|
65
|
+
"@themoltnet/pi-runtime": "0.4.0",
|
|
66
66
|
"@themoltnet/sdk": "0.128.0",
|
|
67
|
-
"@themoltnet/
|
|
67
|
+
"@themoltnet/agent-runtime": "0.39.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"tsx": "^4.7.0",
|