@themoltnet/pi-extension 0.37.1 → 0.37.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/index.js +9 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -10617,7 +10617,11 @@ var ProblemDetailsSchema = _Object_({
|
|
|
10617
10617
|
}),
|
|
10618
10618
|
code: ProblemCodeSchema,
|
|
10619
10619
|
detail: Optional(String$1()),
|
|
10620
|
-
instance: Optional(String$1())
|
|
10620
|
+
instance: Optional(String$1()),
|
|
10621
|
+
retryAfter: Optional(Integer({
|
|
10622
|
+
minimum: 0,
|
|
10623
|
+
description: "Non-negative delay in seconds before retrying, matching the Retry-After response header when present."
|
|
10624
|
+
}))
|
|
10621
10625
|
}, {
|
|
10622
10626
|
$id: "ProblemDetails",
|
|
10623
10627
|
additionalProperties: true
|
|
@@ -15520,6 +15524,10 @@ var TaskAttempt = _Object_({
|
|
|
15520
15524
|
taskId: Uuid,
|
|
15521
15525
|
attemptN: Number$1({ minimum: 1 }),
|
|
15522
15526
|
claimedByAgentId: Uuid,
|
|
15527
|
+
leaseId: Union([Uuid, Null()]),
|
|
15528
|
+
runtimeProfileId: Union([Uuid, Null()]),
|
|
15529
|
+
runtimeProfileRevision: Union([Integer({ minimum: 1 }), Null()]),
|
|
15530
|
+
policySnapshotHash: Union([String$1({ pattern: "^sha256:[0-9a-f]{64}$" }), Null()]),
|
|
15523
15531
|
runtimeId: Union([Uuid, Null()]),
|
|
15524
15532
|
claimedAt: IsoTimestamp,
|
|
15525
15533
|
startedAt: Union([IsoTimestamp, Null()]),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@themoltnet/pi-extension",
|
|
3
|
-
"version": "0.37.
|
|
3
|
+
"version": "0.37.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MoltNet pi extension — sandboxed tool execution in Gondolin VMs with MoltNet identity and persistent memory",
|
|
6
6
|
"keywords": [
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@earendil-works/gondolin": "^0.9.1",
|
|
37
|
-
"@themoltnet/pi-runtime": "0.
|
|
37
|
+
"@themoltnet/pi-runtime": "0.4.0",
|
|
38
38
|
"@themoltnet/sdk": "0.128.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|