@riddledc/riddle-proof 0.8.51 → 0.8.53
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/adapters/openclaw.js +4 -4
- package/dist/advanced/engine-harness.cjs +79 -26
- package/dist/advanced/engine-harness.js +5 -5
- package/dist/advanced/index.cjs +81 -26
- package/dist/advanced/index.d.cts +2 -2
- package/dist/advanced/index.d.ts +2 -2
- package/dist/advanced/index.js +7 -7
- package/dist/advanced/proof-run-core.cjs +24 -2
- package/dist/advanced/proof-run-core.d.cts +1 -1
- package/dist/advanced/proof-run-core.d.ts +1 -1
- package/dist/advanced/proof-run-core.js +5 -1
- package/dist/advanced/proof-run-engine.cjs +20 -2
- package/dist/advanced/proof-run-engine.d.cts +2 -2
- package/dist/advanced/proof-run-engine.d.ts +2 -2
- package/dist/advanced/proof-run-engine.js +2 -2
- package/dist/advanced/runner.js +5 -5
- package/dist/checkpoint.cjs +41 -11
- package/dist/checkpoint.d.cts +2 -1
- package/dist/checkpoint.d.ts +2 -1
- package/dist/checkpoint.js +3 -1
- package/dist/{chunk-AWM2BKDF.js → chunk-2ALMXMFZ.js} +3 -2
- package/dist/{chunk-AXWJJ2LC.js → chunk-BLM5EIBA.js} +40 -11
- package/dist/{chunk-X7SQTCIQ.js → chunk-EKZXU6MU.js} +24 -2
- package/dist/{chunk-RBAU2M4S.js → chunk-JJ4IWRMJ.js} +1 -1
- package/dist/{chunk-OYWZGDTS.js → chunk-LNWJAHAQ.js} +1 -1
- package/dist/{chunk-DFQBQGSD.js → chunk-S5DX7Z6X.js} +2 -2
- package/dist/{chunk-IOI6QR3B.js → chunk-VYJD6XYF.js} +1 -1
- package/dist/{chunk-M3IE3VNC.js → chunk-WDIKPIMB.js} +1 -1
- package/dist/{chunk-ZHTJEZH5.js → chunk-ZLBOGPUL.js} +27 -17
- package/dist/cli/index.js +6 -6
- package/dist/cli.cjs +81 -26
- package/dist/cli.js +6 -6
- package/dist/engine-harness.cjs +79 -26
- package/dist/engine-harness.js +5 -5
- package/dist/index.cjs +82 -26
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -6
- package/dist/openclaw.js +4 -4
- package/dist/{proof-run-core-B1GeqkR8.d.ts → proof-run-core-7Dqm7RKM.d.cts} +6 -2
- package/dist/{proof-run-core-B1GeqkR8.d.cts → proof-run-core-7Dqm7RKM.d.ts} +6 -2
- package/dist/proof-run-core.cjs +24 -2
- package/dist/proof-run-core.d.cts +1 -1
- package/dist/proof-run-core.d.ts +1 -1
- package/dist/proof-run-core.js +5 -1
- package/dist/{proof-run-engine-BqaeqAze.d.ts → proof-run-engine-BqRoA3Do.d.ts} +1 -1
- package/dist/{proof-run-engine-4dM37pEx.d.cts → proof-run-engine-DpChFR5H.d.cts} +1 -1
- package/dist/proof-run-engine.cjs +20 -2
- package/dist/proof-run-engine.d.cts +2 -2
- package/dist/proof-run-engine.d.ts +2 -2
- package/dist/proof-run-engine.js +2 -2
- package/dist/run-card.js +2 -2
- package/dist/runner.js +5 -5
- package/dist/spec/checkpoint.cjs +41 -11
- package/dist/spec/checkpoint.d.cts +1 -1
- package/dist/spec/checkpoint.d.ts +1 -1
- package/dist/spec/checkpoint.js +3 -1
- package/dist/spec/index.cjs +41 -11
- package/dist/spec/index.d.cts +1 -1
- package/dist/spec/index.d.ts +1 -1
- package/dist/spec/index.js +5 -3
- package/dist/spec/run-card.js +2 -2
- package/dist/spec/state.js +3 -3
- package/dist/state.js +3 -3
- package/dist/types.d.cts +5 -0
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.cts
CHANGED
|
@@ -90,6 +90,7 @@ interface RiddleProofCheckpointPacket {
|
|
|
90
90
|
version: "riddle-proof.checkpoint.v1";
|
|
91
91
|
run_id: string;
|
|
92
92
|
state_path?: string;
|
|
93
|
+
packet_id?: string;
|
|
93
94
|
stage: RiddleProofStage;
|
|
94
95
|
checkpoint: string;
|
|
95
96
|
kind: "assess_recon" | "author_proof" | "implement_change" | "assess_proof" | "recover_evidence" | "human_review" | "advance_decision" | (string & {});
|
|
@@ -111,6 +112,7 @@ interface RiddleProofCheckpointResponse {
|
|
|
111
112
|
version: "riddle-proof.checkpoint_response.v1";
|
|
112
113
|
run_id: string;
|
|
113
114
|
checkpoint: string;
|
|
115
|
+
packet_id?: string;
|
|
114
116
|
resume_token?: string;
|
|
115
117
|
decision: string;
|
|
116
118
|
summary: string;
|
|
@@ -140,6 +142,9 @@ interface RiddleProofCheckpointSummary {
|
|
|
140
142
|
latest_decision?: string | null;
|
|
141
143
|
latest_packet_summary?: string | null;
|
|
142
144
|
latest_response_summary?: string | null;
|
|
145
|
+
latest_packet_id?: string | null;
|
|
146
|
+
latest_response_packet_id?: string | null;
|
|
147
|
+
packet_id_matches?: boolean | null;
|
|
143
148
|
latest_resume_token?: string | null;
|
|
144
149
|
latest_response_token?: string | null;
|
|
145
150
|
token_matches?: boolean | null;
|
package/dist/types.d.ts
CHANGED
|
@@ -90,6 +90,7 @@ interface RiddleProofCheckpointPacket {
|
|
|
90
90
|
version: "riddle-proof.checkpoint.v1";
|
|
91
91
|
run_id: string;
|
|
92
92
|
state_path?: string;
|
|
93
|
+
packet_id?: string;
|
|
93
94
|
stage: RiddleProofStage;
|
|
94
95
|
checkpoint: string;
|
|
95
96
|
kind: "assess_recon" | "author_proof" | "implement_change" | "assess_proof" | "recover_evidence" | "human_review" | "advance_decision" | (string & {});
|
|
@@ -111,6 +112,7 @@ interface RiddleProofCheckpointResponse {
|
|
|
111
112
|
version: "riddle-proof.checkpoint_response.v1";
|
|
112
113
|
run_id: string;
|
|
113
114
|
checkpoint: string;
|
|
115
|
+
packet_id?: string;
|
|
114
116
|
resume_token?: string;
|
|
115
117
|
decision: string;
|
|
116
118
|
summary: string;
|
|
@@ -140,6 +142,9 @@ interface RiddleProofCheckpointSummary {
|
|
|
140
142
|
latest_decision?: string | null;
|
|
141
143
|
latest_packet_summary?: string | null;
|
|
142
144
|
latest_response_summary?: string | null;
|
|
145
|
+
latest_packet_id?: string | null;
|
|
146
|
+
latest_response_packet_id?: string | null;
|
|
147
|
+
packet_id_matches?: boolean | null;
|
|
143
148
|
latest_resume_token?: string | null;
|
|
144
149
|
latest_response_token?: string | null;
|
|
145
150
|
token_matches?: boolean | null;
|