@riddledc/riddle-proof 0.7.2 → 0.7.3
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/{chunk-N5BVCRKI.js → chunk-3ICNKAWF.js} +1 -1
- package/dist/{chunk-HIKFPDRO.js → chunk-JRFKVTKY.js} +1 -1
- package/dist/{chunk-FPD2RF3Q.js → chunk-SGXB5S4B.js} +3 -0
- package/dist/cli.cjs +3 -0
- package/dist/cli.js +2 -2
- package/dist/engine-harness.cjs +3 -0
- package/dist/engine-harness.js +2 -2
- package/dist/index.cjs +3 -0
- package/dist/index.js +3 -3
- package/dist/proof-run-core.cjs +3 -0
- package/dist/proof-run-core.d.cts +3 -0
- package/dist/proof-run-core.d.ts +3 -0
- package/dist/proof-run-core.js +1 -1
- package/dist/proof-run-engine.cjs +3 -0
- package/dist/proof-run-engine.js +1 -1
- package/dist/runner.js +2 -2
- package/package.json +1 -1
|
@@ -116,6 +116,9 @@ function buildSetupArgs(params, config) {
|
|
|
116
116
|
context: params.context || "",
|
|
117
117
|
reviewer: params.reviewer || config.defaultReviewer,
|
|
118
118
|
mode: previewModeFromWorkflowMode(params.mode) || "",
|
|
119
|
+
implementation_mode: params.implementation_mode || "",
|
|
120
|
+
require_diff: params.require_diff,
|
|
121
|
+
allow_code_changes: params.allow_code_changes,
|
|
119
122
|
build_command: params.build_command || "npm run build",
|
|
120
123
|
build_output: params.build_output || "build",
|
|
121
124
|
server_image: params.server_image || "node:20-slim",
|
package/dist/cli.cjs
CHANGED
|
@@ -134,6 +134,9 @@ function buildSetupArgs(params, config) {
|
|
|
134
134
|
context: params.context || "",
|
|
135
135
|
reviewer: params.reviewer || config.defaultReviewer,
|
|
136
136
|
mode: previewModeFromWorkflowMode(params.mode) || "",
|
|
137
|
+
implementation_mode: params.implementation_mode || "",
|
|
138
|
+
require_diff: params.require_diff,
|
|
139
|
+
allow_code_changes: params.allow_code_changes,
|
|
137
140
|
build_command: params.build_command || "npm run build",
|
|
138
141
|
build_output: params.build_output || "build",
|
|
139
142
|
server_image: params.server_image || "node:20-slim",
|
package/dist/cli.js
CHANGED
|
@@ -18,10 +18,10 @@ import {
|
|
|
18
18
|
createDisabledRiddleProofAgentAdapter,
|
|
19
19
|
readRiddleProofRunStatus,
|
|
20
20
|
runRiddleProofEngineHarness
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-3ICNKAWF.js";
|
|
22
22
|
import "./chunk-4DM3OTWH.js";
|
|
23
23
|
import "./chunk-3UHWI3FO.js";
|
|
24
|
-
import "./chunk-
|
|
24
|
+
import "./chunk-SGXB5S4B.js";
|
|
25
25
|
import {
|
|
26
26
|
createCheckpointResponseTemplate
|
|
27
27
|
} from "./chunk-33XO42CY.js";
|
package/dist/engine-harness.cjs
CHANGED
|
@@ -134,6 +134,9 @@ function buildSetupArgs(params, config) {
|
|
|
134
134
|
context: params.context || "",
|
|
135
135
|
reviewer: params.reviewer || config.defaultReviewer,
|
|
136
136
|
mode: previewModeFromWorkflowMode(params.mode) || "",
|
|
137
|
+
implementation_mode: params.implementation_mode || "",
|
|
138
|
+
require_diff: params.require_diff,
|
|
139
|
+
allow_code_changes: params.allow_code_changes,
|
|
137
140
|
build_command: params.build_command || "npm run build",
|
|
138
141
|
build_output: params.build_output || "build",
|
|
139
142
|
server_image: params.server_image || "node:20-slim",
|
package/dist/engine-harness.js
CHANGED
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
createDisabledRiddleProofAgentAdapter,
|
|
3
3
|
readRiddleProofRunStatus,
|
|
4
4
|
runRiddleProofEngineHarness
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-3ICNKAWF.js";
|
|
6
6
|
import "./chunk-4DM3OTWH.js";
|
|
7
7
|
import "./chunk-3UHWI3FO.js";
|
|
8
|
-
import "./chunk-
|
|
8
|
+
import "./chunk-SGXB5S4B.js";
|
|
9
9
|
import "./chunk-33XO42CY.js";
|
|
10
10
|
import "./chunk-DUFDZJOF.js";
|
|
11
11
|
export {
|
package/dist/index.cjs
CHANGED
|
@@ -134,6 +134,9 @@ function buildSetupArgs(params, config) {
|
|
|
134
134
|
context: params.context || "",
|
|
135
135
|
reviewer: params.reviewer || config.defaultReviewer,
|
|
136
136
|
mode: previewModeFromWorkflowMode(params.mode) || "",
|
|
137
|
+
implementation_mode: params.implementation_mode || "",
|
|
138
|
+
require_diff: params.require_diff,
|
|
139
|
+
allow_code_changes: params.allow_code_changes,
|
|
137
140
|
build_command: params.build_command || "npm run build",
|
|
138
141
|
build_output: params.build_output || "build",
|
|
139
142
|
server_image: params.server_image || "node:20-slim",
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runRiddleProof
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-JRFKVTKY.js";
|
|
4
4
|
import "./chunk-6F4PWJZI.js";
|
|
5
5
|
import {
|
|
6
6
|
RIDDLE_PROOF_PLAYABILITY_ASSESSMENT_VERSION,
|
|
@@ -84,7 +84,7 @@ import {
|
|
|
84
84
|
createDisabledRiddleProofAgentAdapter,
|
|
85
85
|
readRiddleProofRunStatus,
|
|
86
86
|
runRiddleProofEngineHarness
|
|
87
|
-
} from "./chunk-
|
|
87
|
+
} from "./chunk-3ICNKAWF.js";
|
|
88
88
|
import {
|
|
89
89
|
RIDDLE_PROOF_RUN_STATE_VERSION,
|
|
90
90
|
appendRunEvent,
|
|
@@ -101,7 +101,7 @@ import {
|
|
|
101
101
|
RIDDLE_PROOF_RUN_CARD_VERSION,
|
|
102
102
|
createRiddleProofRunCard
|
|
103
103
|
} from "./chunk-3UHWI3FO.js";
|
|
104
|
-
import "./chunk-
|
|
104
|
+
import "./chunk-SGXB5S4B.js";
|
|
105
105
|
import {
|
|
106
106
|
RIDDLE_PROOF_CHECKPOINT_PACKET_VERSION,
|
|
107
107
|
RIDDLE_PROOF_CHECKPOINT_RESPONSE_VERSION,
|
package/dist/proof-run-core.cjs
CHANGED
|
@@ -177,6 +177,9 @@ function buildSetupArgs(params, config) {
|
|
|
177
177
|
context: params.context || "",
|
|
178
178
|
reviewer: params.reviewer || config.defaultReviewer,
|
|
179
179
|
mode: previewModeFromWorkflowMode(params.mode) || "",
|
|
180
|
+
implementation_mode: params.implementation_mode || "",
|
|
181
|
+
require_diff: params.require_diff,
|
|
182
|
+
allow_code_changes: params.allow_code_changes,
|
|
180
183
|
build_command: params.build_command || "npm run build",
|
|
181
184
|
build_output: params.build_output || "build",
|
|
182
185
|
server_image: params.server_image || "node:20-slim",
|
|
@@ -127,6 +127,9 @@ declare function buildSetupArgs(params: WorkflowParams, config: ReturnType<typeo
|
|
|
127
127
|
context: string;
|
|
128
128
|
reviewer: string;
|
|
129
129
|
mode: string;
|
|
130
|
+
implementation_mode: string | (string & {});
|
|
131
|
+
require_diff: boolean | undefined;
|
|
132
|
+
allow_code_changes: boolean | undefined;
|
|
130
133
|
build_command: string;
|
|
131
134
|
build_output: string;
|
|
132
135
|
server_image: string;
|
package/dist/proof-run-core.d.ts
CHANGED
|
@@ -127,6 +127,9 @@ declare function buildSetupArgs(params: WorkflowParams, config: ReturnType<typeo
|
|
|
127
127
|
context: string;
|
|
128
128
|
reviewer: string;
|
|
129
129
|
mode: string;
|
|
130
|
+
implementation_mode: string | (string & {});
|
|
131
|
+
require_diff: boolean | undefined;
|
|
132
|
+
allow_code_changes: boolean | undefined;
|
|
130
133
|
build_command: string;
|
|
131
134
|
build_output: string;
|
|
132
135
|
server_image: string;
|
package/dist/proof-run-core.js
CHANGED
|
@@ -157,6 +157,9 @@ function buildSetupArgs(params, config) {
|
|
|
157
157
|
context: params.context || "",
|
|
158
158
|
reviewer: params.reviewer || config.defaultReviewer,
|
|
159
159
|
mode: previewModeFromWorkflowMode(params.mode) || "",
|
|
160
|
+
implementation_mode: params.implementation_mode || "",
|
|
161
|
+
require_diff: params.require_diff,
|
|
162
|
+
allow_code_changes: params.allow_code_changes,
|
|
160
163
|
build_command: params.build_command || "npm run build",
|
|
161
164
|
build_output: params.build_output || "build",
|
|
162
165
|
server_image: params.server_image || "node:20-slim",
|
package/dist/proof-run-engine.js
CHANGED
package/dist/runner.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
runRiddleProof
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-JRFKVTKY.js";
|
|
4
4
|
import "./chunk-4DM3OTWH.js";
|
|
5
5
|
import "./chunk-3UHWI3FO.js";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-SGXB5S4B.js";
|
|
7
7
|
import "./chunk-33XO42CY.js";
|
|
8
8
|
import "./chunk-DUFDZJOF.js";
|
|
9
9
|
export {
|