@riddledc/riddle-proof 0.8.47 → 0.8.48
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 +1 -1
- package/dist/advanced/engine-harness.js +4 -4
- package/dist/advanced/index.cjs +1 -1
- package/dist/advanced/index.js +5 -5
- package/dist/advanced/runner.js +4 -4
- package/dist/checkpoint.cjs +1 -1
- package/dist/checkpoint.js +1 -1
- package/dist/{chunk-32TJQ5TQ.js → chunk-2KEYWZY5.js} +3 -3
- package/dist/{chunk-JP7ZBCDC.js → chunk-2PHYFVTY.js} +1 -1
- package/dist/{chunk-PMLEZU7J.js → chunk-EMWF2575.js} +1 -1
- package/dist/{chunk-DZLBYXL3.js → chunk-L7U7QZYH.js} +1 -1
- package/dist/{chunk-ZDK2GQ4Q.js → chunk-TO3VKAG2.js} +2 -2
- package/dist/{chunk-4D76AYZW.js → chunk-U46KE6JZ.js} +1 -1
- package/dist/{chunk-UBDJBUBV.js → chunk-UKGDVNGI.js} +1 -1
- package/dist/cli/index.js +5 -5
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +5 -5
- package/dist/engine-harness.cjs +1 -1
- package/dist/engine-harness.js +4 -4
- package/dist/index.cjs +1 -1
- package/dist/index.js +5 -5
- package/dist/openclaw.js +4 -4
- package/dist/run-card.js +2 -2
- package/dist/runner.js +4 -4
- package/dist/spec/checkpoint.cjs +1 -1
- package/dist/spec/checkpoint.js +1 -1
- package/dist/spec/index.cjs +1 -1
- package/dist/spec/index.js +3 -3
- package/dist/spec/run-card.js +2 -2
- package/dist/spec/state.js +3 -3
- package/dist/state.js +3 -3
- package/package.json +1 -1
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
parseOpenClawAssertions,
|
|
4
4
|
parseOpenClawJsonObjectOrArray,
|
|
5
5
|
toRiddleProofRunParams
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-2PHYFVTY.js";
|
|
7
|
+
import "../chunk-EMWF2575.js";
|
|
8
|
+
import "../chunk-L7U7QZYH.js";
|
|
9
|
+
import "../chunk-U46KE6JZ.js";
|
|
10
10
|
import "../chunk-VY4Y5U57.js";
|
|
11
11
|
import "../chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
|
@@ -4199,7 +4199,7 @@ function checkpointSummaryFromState(state, engineStatePath2) {
|
|
|
4199
4199
|
const latestResponse = latestResponseEntry?.response;
|
|
4200
4200
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
4201
4201
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
4202
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4202
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4203
4203
|
return compactRecord({
|
|
4204
4204
|
pending: Boolean(state.checkpoint_packet),
|
|
4205
4205
|
packet_count: packets.length,
|
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
createDisabledRiddleProofAgentAdapter,
|
|
3
3
|
readRiddleProofRunStatus,
|
|
4
4
|
runRiddleProofEngineHarness
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-2KEYWZY5.js";
|
|
6
|
+
import "../chunk-EMWF2575.js";
|
|
7
|
+
import "../chunk-L7U7QZYH.js";
|
|
8
8
|
import "../chunk-X7SQTCIQ.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-U46KE6JZ.js";
|
|
10
10
|
import "../chunk-VY4Y5U57.js";
|
|
11
11
|
import "../chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
package/dist/advanced/index.cjs
CHANGED
|
@@ -4231,7 +4231,7 @@ function checkpointSummaryFromState(state, engineStatePath2) {
|
|
|
4231
4231
|
const latestResponse = latestResponseEntry?.response;
|
|
4232
4232
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
4233
4233
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
4234
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4234
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4235
4235
|
return compactRecord({
|
|
4236
4236
|
pending: Boolean(state.checkpoint_packet),
|
|
4237
4237
|
packet_count: packets.length,
|
package/dist/advanced/index.js
CHANGED
|
@@ -3,16 +3,16 @@ import {
|
|
|
3
3
|
} from "../chunk-IOI6QR3B.js";
|
|
4
4
|
import {
|
|
5
5
|
runner_exports
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-UKGDVNGI.js";
|
|
7
7
|
import {
|
|
8
8
|
engine_harness_exports
|
|
9
|
-
} from "../chunk-
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
9
|
+
} from "../chunk-2KEYWZY5.js";
|
|
10
|
+
import "../chunk-EMWF2575.js";
|
|
11
|
+
import "../chunk-L7U7QZYH.js";
|
|
12
12
|
import {
|
|
13
13
|
proof_run_core_exports
|
|
14
14
|
} from "../chunk-X7SQTCIQ.js";
|
|
15
|
-
import "../chunk-
|
|
15
|
+
import "../chunk-U46KE6JZ.js";
|
|
16
16
|
import "../chunk-VY4Y5U57.js";
|
|
17
17
|
import "../chunk-MLKGABMK.js";
|
|
18
18
|
export {
|
package/dist/advanced/runner.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runRiddleProof
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-UKGDVNGI.js";
|
|
4
|
+
import "../chunk-EMWF2575.js";
|
|
5
|
+
import "../chunk-L7U7QZYH.js";
|
|
6
6
|
import "../chunk-X7SQTCIQ.js";
|
|
7
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-U46KE6JZ.js";
|
|
8
8
|
import "../chunk-VY4Y5U57.js";
|
|
9
9
|
import "../chunk-MLKGABMK.js";
|
|
10
10
|
export {
|
package/dist/checkpoint.cjs
CHANGED
|
@@ -729,7 +729,7 @@ function checkpointSummaryFromState(state, engineStatePath) {
|
|
|
729
729
|
const latestResponse = latestResponseEntry?.response;
|
|
730
730
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
731
731
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
732
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
732
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
733
733
|
return compactRecord({
|
|
734
734
|
pending: Boolean(state.checkpoint_packet),
|
|
735
735
|
packet_count: packets.length,
|
package/dist/checkpoint.js
CHANGED
|
@@ -5,10 +5,10 @@ import {
|
|
|
5
5
|
createRunStatusSnapshot,
|
|
6
6
|
normalizeRunParams,
|
|
7
7
|
setRunStatus
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-EMWF2575.js";
|
|
9
9
|
import {
|
|
10
10
|
createRiddleProofRunCard
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-L7U7QZYH.js";
|
|
12
12
|
import {
|
|
13
13
|
noImplementationModeFor,
|
|
14
14
|
proofAssessmentHardBlockersForState,
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
normalizeCheckpointResponse,
|
|
26
26
|
proofContractFromAuthorCheckpointResponse,
|
|
27
27
|
statePathsForRunState
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-U46KE6JZ.js";
|
|
29
29
|
import {
|
|
30
30
|
applyTerminalMetadata,
|
|
31
31
|
compactRecord,
|
|
@@ -28,10 +28,10 @@ import {
|
|
|
28
28
|
createDisabledRiddleProofAgentAdapter,
|
|
29
29
|
readRiddleProofRunStatus,
|
|
30
30
|
runRiddleProofEngineHarness
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-2KEYWZY5.js";
|
|
32
32
|
import {
|
|
33
33
|
createCheckpointResponseTemplate
|
|
34
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-U46KE6JZ.js";
|
|
35
35
|
import {
|
|
36
36
|
createCodexExecAgentAdapter,
|
|
37
37
|
runCodexExecAgentDoctor
|
|
@@ -675,7 +675,7 @@ function checkpointSummaryFromState(state, engineStatePath) {
|
|
|
675
675
|
const latestResponse = latestResponseEntry?.response;
|
|
676
676
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
677
677
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
678
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
678
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
679
679
|
return compactRecord({
|
|
680
680
|
pending: Boolean(state.checkpoint_packet),
|
|
681
681
|
packet_count: packets.length,
|
package/dist/cli/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import "../chunk-
|
|
1
|
+
import "../chunk-TO3VKAG2.js";
|
|
2
2
|
import "../chunk-DI2XNGEZ.js";
|
|
3
3
|
import "../chunk-6KYXX4OE.js";
|
|
4
4
|
import "../chunk-EX7TO4I5.js";
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
5
|
+
import "../chunk-2KEYWZY5.js";
|
|
6
|
+
import "../chunk-EMWF2575.js";
|
|
7
|
+
import "../chunk-L7U7QZYH.js";
|
|
8
8
|
import "../chunk-X7SQTCIQ.js";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-U46KE6JZ.js";
|
|
10
10
|
import "../chunk-JFQXAJH2.js";
|
|
11
11
|
import "../chunk-73EBR3YL.js";
|
|
12
12
|
import "../chunk-VY4Y5U57.js";
|
package/dist/cli.cjs
CHANGED
|
@@ -4284,7 +4284,7 @@ function checkpointSummaryFromState(state, engineStatePath2) {
|
|
|
4284
4284
|
const latestResponse = latestResponseEntry?.response;
|
|
4285
4285
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
4286
4286
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
4287
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4287
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4288
4288
|
return compactRecord({
|
|
4289
4289
|
pending: Boolean(state.checkpoint_packet),
|
|
4290
4290
|
packet_count: packets.length,
|
package/dist/cli.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-TO3VKAG2.js";
|
|
3
3
|
import "./chunk-DI2XNGEZ.js";
|
|
4
4
|
import "./chunk-6KYXX4OE.js";
|
|
5
5
|
import "./chunk-EX7TO4I5.js";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-2KEYWZY5.js";
|
|
7
|
+
import "./chunk-EMWF2575.js";
|
|
8
|
+
import "./chunk-L7U7QZYH.js";
|
|
9
9
|
import "./chunk-X7SQTCIQ.js";
|
|
10
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-U46KE6JZ.js";
|
|
11
11
|
import "./chunk-JFQXAJH2.js";
|
|
12
12
|
import "./chunk-73EBR3YL.js";
|
|
13
13
|
import "./chunk-VY4Y5U57.js";
|
package/dist/engine-harness.cjs
CHANGED
|
@@ -4197,7 +4197,7 @@ function checkpointSummaryFromState(state, engineStatePath2) {
|
|
|
4197
4197
|
const latestResponse = latestResponseEntry?.response;
|
|
4198
4198
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
4199
4199
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
4200
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4200
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4201
4201
|
return compactRecord({
|
|
4202
4202
|
pending: Boolean(state.checkpoint_packet),
|
|
4203
4203
|
packet_count: packets.length,
|
package/dist/engine-harness.js
CHANGED
|
@@ -2,11 +2,11 @@ import {
|
|
|
2
2
|
createDisabledRiddleProofAgentAdapter,
|
|
3
3
|
readRiddleProofRunStatus,
|
|
4
4
|
runRiddleProofEngineHarness
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-2KEYWZY5.js";
|
|
6
|
+
import "./chunk-EMWF2575.js";
|
|
7
|
+
import "./chunk-L7U7QZYH.js";
|
|
8
8
|
import "./chunk-X7SQTCIQ.js";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-U46KE6JZ.js";
|
|
10
10
|
import "./chunk-VY4Y5U57.js";
|
|
11
11
|
import "./chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
package/dist/index.cjs
CHANGED
|
@@ -4405,7 +4405,7 @@ function checkpointSummaryFromState(state, engineStatePath2) {
|
|
|
4405
4405
|
const latestResponse = latestResponseEntry?.response;
|
|
4406
4406
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
4407
4407
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
4408
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4408
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
4409
4409
|
return compactRecord({
|
|
4410
4410
|
pending: Boolean(state.checkpoint_packet),
|
|
4411
4411
|
packet_count: packets.length,
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runRiddleProof
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-UKGDVNGI.js";
|
|
4
4
|
import "./chunk-6F4PWJZI.js";
|
|
5
5
|
import {
|
|
6
6
|
RIDDLE_PROOF_PLAYABILITY_ASSESSMENT_VERSION,
|
|
@@ -102,7 +102,7 @@ import {
|
|
|
102
102
|
createDisabledRiddleProofAgentAdapter,
|
|
103
103
|
readRiddleProofRunStatus,
|
|
104
104
|
runRiddleProofEngineHarness
|
|
105
|
-
} from "./chunk-
|
|
105
|
+
} from "./chunk-2KEYWZY5.js";
|
|
106
106
|
import {
|
|
107
107
|
RIDDLE_PROOF_RUN_STATE_VERSION,
|
|
108
108
|
appendRunEvent,
|
|
@@ -114,11 +114,11 @@ import {
|
|
|
114
114
|
normalizePrLifecycleState,
|
|
115
115
|
normalizeRunParams,
|
|
116
116
|
setRunStatus
|
|
117
|
-
} from "./chunk-
|
|
117
|
+
} from "./chunk-EMWF2575.js";
|
|
118
118
|
import {
|
|
119
119
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
120
120
|
createRiddleProofRunCard
|
|
121
|
-
} from "./chunk-
|
|
121
|
+
} from "./chunk-L7U7QZYH.js";
|
|
122
122
|
import "./chunk-X7SQTCIQ.js";
|
|
123
123
|
import {
|
|
124
124
|
RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION,
|
|
@@ -135,7 +135,7 @@ import {
|
|
|
135
135
|
normalizeCheckpointResponse,
|
|
136
136
|
proofContractFromAuthorCheckpointResponse,
|
|
137
137
|
statePathsForRunState
|
|
138
|
-
} from "./chunk-
|
|
138
|
+
} from "./chunk-U46KE6JZ.js";
|
|
139
139
|
import "./chunk-JFQXAJH2.js";
|
|
140
140
|
import {
|
|
141
141
|
createCodexExecAgentAdapter,
|
package/dist/openclaw.js
CHANGED
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
parseOpenClawAssertions,
|
|
4
4
|
parseOpenClawJsonObjectOrArray,
|
|
5
5
|
toRiddleProofRunParams
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-2PHYFVTY.js";
|
|
7
|
+
import "./chunk-EMWF2575.js";
|
|
8
|
+
import "./chunk-L7U7QZYH.js";
|
|
9
|
+
import "./chunk-U46KE6JZ.js";
|
|
10
10
|
import "./chunk-VY4Y5U57.js";
|
|
11
11
|
import "./chunk-MLKGABMK.js";
|
|
12
12
|
export {
|
package/dist/run-card.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
3
3
|
createRiddleProofRunCard
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-L7U7QZYH.js";
|
|
5
|
+
import "./chunk-U46KE6JZ.js";
|
|
6
6
|
import "./chunk-VY4Y5U57.js";
|
|
7
7
|
import "./chunk-MLKGABMK.js";
|
|
8
8
|
export {
|
package/dist/runner.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runRiddleProof
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-UKGDVNGI.js";
|
|
4
|
+
import "./chunk-EMWF2575.js";
|
|
5
|
+
import "./chunk-L7U7QZYH.js";
|
|
6
6
|
import "./chunk-X7SQTCIQ.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-U46KE6JZ.js";
|
|
8
8
|
import "./chunk-VY4Y5U57.js";
|
|
9
9
|
import "./chunk-MLKGABMK.js";
|
|
10
10
|
export {
|
package/dist/spec/checkpoint.cjs
CHANGED
|
@@ -731,7 +731,7 @@ function checkpointSummaryFromState(state, engineStatePath) {
|
|
|
731
731
|
const latestResponse = latestResponseEntry?.response;
|
|
732
732
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
733
733
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
734
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
734
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
735
735
|
return compactRecord({
|
|
736
736
|
pending: Boolean(state.checkpoint_packet),
|
|
737
737
|
packet_count: packets.length,
|
package/dist/spec/checkpoint.js
CHANGED
package/dist/spec/index.cjs
CHANGED
|
@@ -954,7 +954,7 @@ function checkpointSummaryFromState(state, engineStatePath) {
|
|
|
954
954
|
const latestResponse = latestResponseEntry?.response;
|
|
955
955
|
const latestResumeToken = latestPacket?.resume_token || null;
|
|
956
956
|
const latestResponseToken = latestResponse?.resume_token || null;
|
|
957
|
-
const tokenMatches = latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
957
|
+
const tokenMatches = !latestResponse ? null : latestResumeToken && latestResponseToken ? latestResumeToken === latestResponseToken : latestResumeToken || latestResponseToken ? false : null;
|
|
958
958
|
return compactRecord({
|
|
959
959
|
pending: Boolean(state.checkpoint_packet),
|
|
960
960
|
packet_count: packets.length,
|
package/dist/spec/index.js
CHANGED
|
@@ -10,11 +10,11 @@ import {
|
|
|
10
10
|
normalizePrLifecycleState,
|
|
11
11
|
normalizeRunParams,
|
|
12
12
|
setRunStatus
|
|
13
|
-
} from "../chunk-
|
|
13
|
+
} from "../chunk-EMWF2575.js";
|
|
14
14
|
import {
|
|
15
15
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
16
16
|
createRiddleProofRunCard
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-L7U7QZYH.js";
|
|
18
18
|
import {
|
|
19
19
|
RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION,
|
|
20
20
|
RIDDLE_PROOF_CHECKPOINT_RESPONSE_VERSION,
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
normalizeCheckpointResponse,
|
|
31
31
|
proofContractFromAuthorCheckpointResponse,
|
|
32
32
|
statePathsForRunState
|
|
33
|
-
} from "../chunk-
|
|
33
|
+
} from "../chunk-U46KE6JZ.js";
|
|
34
34
|
import {
|
|
35
35
|
applyTerminalMetadata,
|
|
36
36
|
compactRecord,
|
package/dist/spec/run-card.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
3
3
|
createRiddleProofRunCard
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-L7U7QZYH.js";
|
|
5
|
+
import "../chunk-U46KE6JZ.js";
|
|
6
6
|
import "../chunk-VY4Y5U57.js";
|
|
7
7
|
import "../chunk-MLKGABMK.js";
|
|
8
8
|
export {
|
package/dist/spec/state.js
CHANGED
|
@@ -9,9 +9,9 @@ import {
|
|
|
9
9
|
normalizePrLifecycleState,
|
|
10
10
|
normalizeRunParams,
|
|
11
11
|
setRunStatus
|
|
12
|
-
} from "../chunk-
|
|
13
|
-
import "../chunk-
|
|
14
|
-
import "../chunk-
|
|
12
|
+
} from "../chunk-EMWF2575.js";
|
|
13
|
+
import "../chunk-L7U7QZYH.js";
|
|
14
|
+
import "../chunk-U46KE6JZ.js";
|
|
15
15
|
import "../chunk-VY4Y5U57.js";
|
|
16
16
|
import "../chunk-MLKGABMK.js";
|
|
17
17
|
export {
|
package/dist/state.js
CHANGED
|
@@ -9,9 +9,9 @@ import {
|
|
|
9
9
|
normalizePrLifecycleState,
|
|
10
10
|
normalizeRunParams,
|
|
11
11
|
setRunStatus
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
12
|
+
} from "./chunk-EMWF2575.js";
|
|
13
|
+
import "./chunk-L7U7QZYH.js";
|
|
14
|
+
import "./chunk-U46KE6JZ.js";
|
|
15
15
|
import "./chunk-VY4Y5U57.js";
|
|
16
16
|
import "./chunk-MLKGABMK.js";
|
|
17
17
|
export {
|