@riddledc/riddle-proof 0.7.210 → 0.7.212
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-OUZKZ5U4.js → chunk-VCTXNE67.js} +1 -1
- package/dist/cli.cjs +11 -3
- package/dist/cli.js +11 -3
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/profile.cjs +1 -1
- package/dist/profile.js +1 -1
- package/package.json +1 -1
|
@@ -1345,7 +1345,7 @@ function normalizeSetupAction(input, index) {
|
|
|
1345
1345
|
prompt_text: stringFromOwn(input, "prompt_text", "promptText", "prompt_value", "promptValue"),
|
|
1346
1346
|
message_text: stringFromOwn(input, "message_text", "messageText", "dialog_text", "dialogText"),
|
|
1347
1347
|
message_pattern: stringFromOwn(input, "message_pattern", "messagePattern", "dialog_pattern", "dialogPattern"),
|
|
1348
|
-
index: numberValue(input
|
|
1348
|
+
index: numberValue(valueFromOwn(input, "index", "target_index", "targetIndex")),
|
|
1349
1349
|
expected_count: expectedCount,
|
|
1350
1350
|
ms: numberValue(input.ms) ?? numberValue(input.wait_ms) ?? numberValue(input.waitMs),
|
|
1351
1351
|
timeout_ms: numberValue(input.timeout_ms) ?? numberValue(input.timeoutMs),
|
package/dist/cli.cjs
CHANGED
|
@@ -8302,7 +8302,7 @@ function normalizeSetupAction(input, index) {
|
|
|
8302
8302
|
prompt_text: stringFromOwn(input, "prompt_text", "promptText", "prompt_value", "promptValue"),
|
|
8303
8303
|
message_text: stringFromOwn(input, "message_text", "messageText", "dialog_text", "dialogText"),
|
|
8304
8304
|
message_pattern: stringFromOwn(input, "message_pattern", "messagePattern", "dialog_pattern", "dialogPattern"),
|
|
8305
|
-
index: numberValue(input
|
|
8305
|
+
index: numberValue(valueFromOwn(input, "index", "target_index", "targetIndex")),
|
|
8306
8306
|
expected_count: expectedCount,
|
|
8307
8307
|
ms: numberValue(input.ms) ?? numberValue(input.wait_ms) ?? numberValue(input.waitMs),
|
|
8308
8308
|
timeout_ms: numberValue(input.timeout_ms) ?? numberValue(input.timeoutMs),
|
|
@@ -17039,7 +17039,11 @@ function profileHasActiveRouteLocalProofReceipt(receipts) {
|
|
|
17039
17039
|
"elapsedMs",
|
|
17040
17040
|
"distance",
|
|
17041
17041
|
"speed",
|
|
17042
|
-
"velocity"
|
|
17042
|
+
"velocity",
|
|
17043
|
+
"planLength",
|
|
17044
|
+
"stepDelta",
|
|
17045
|
+
"afterSteps",
|
|
17046
|
+
"beforeSteps"
|
|
17043
17047
|
].some((name) => cliFiniteNumber(setupReturnSummaryValue(receipt, [name])) !== void 0);
|
|
17044
17048
|
return Boolean(
|
|
17045
17049
|
proofVersion || enabled || ready || supportsProofFeature || autopilotActive || runtimeMetricPresent || runtimeMetricMeasured || globalCount !== void 0 && globalCount > 0 || Array.isArray(globalNames) && globalNames.length > 0
|
|
@@ -17273,7 +17277,11 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
17273
17277
|
"energyDrop",
|
|
17274
17278
|
"energyRecovered",
|
|
17275
17279
|
"progressDelta",
|
|
17276
|
-
"progressGain"
|
|
17280
|
+
"progressGain",
|
|
17281
|
+
"stepDelta",
|
|
17282
|
+
"deliveryDelta",
|
|
17283
|
+
"deliveriesDelta",
|
|
17284
|
+
"remainingDelta"
|
|
17277
17285
|
];
|
|
17278
17286
|
const hasMeasuredStateMetric = valueReceipts.some((item) => measuredStateMetricNames.some((name) => {
|
|
17279
17287
|
const value = cliFiniteNumber(setupReturnSummaryValue(item, [name]));
|
package/dist/cli.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
profileStatusExitCode,
|
|
14
14
|
resolveRiddleProofProfileTargetUrl,
|
|
15
15
|
resolveRiddleProofProfileTimeoutSec
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-VCTXNE67.js";
|
|
17
17
|
import {
|
|
18
18
|
createRiddleApiClient,
|
|
19
19
|
isTerminalRiddleJobStatus,
|
|
@@ -864,7 +864,11 @@ function profileHasActiveRouteLocalProofReceipt(receipts) {
|
|
|
864
864
|
"elapsedMs",
|
|
865
865
|
"distance",
|
|
866
866
|
"speed",
|
|
867
|
-
"velocity"
|
|
867
|
+
"velocity",
|
|
868
|
+
"planLength",
|
|
869
|
+
"stepDelta",
|
|
870
|
+
"afterSteps",
|
|
871
|
+
"beforeSteps"
|
|
868
872
|
].some((name) => cliFiniteNumber(setupReturnSummaryValue(receipt, [name])) !== void 0);
|
|
869
873
|
return Boolean(
|
|
870
874
|
proofVersion || enabled || ready || supportsProofFeature || autopilotActive || runtimeMetricPresent || runtimeMetricMeasured || globalCount !== void 0 && globalCount > 0 || Array.isArray(globalNames) && globalNames.length > 0
|
|
@@ -1098,7 +1102,11 @@ function profilePackReceiptStatus(result, metadata, receipt) {
|
|
|
1098
1102
|
"energyDrop",
|
|
1099
1103
|
"energyRecovered",
|
|
1100
1104
|
"progressDelta",
|
|
1101
|
-
"progressGain"
|
|
1105
|
+
"progressGain",
|
|
1106
|
+
"stepDelta",
|
|
1107
|
+
"deliveryDelta",
|
|
1108
|
+
"deliveriesDelta",
|
|
1109
|
+
"remainingDelta"
|
|
1102
1110
|
];
|
|
1103
1111
|
const hasMeasuredStateMetric = valueReceipts.some((item) => measuredStateMetricNames.some((name) => {
|
|
1104
1112
|
const value = cliFiniteNumber(setupReturnSummaryValue(item, [name]));
|
package/dist/index.cjs
CHANGED
|
@@ -10078,7 +10078,7 @@ function normalizeSetupAction(input, index) {
|
|
|
10078
10078
|
prompt_text: stringFromOwn(input, "prompt_text", "promptText", "prompt_value", "promptValue"),
|
|
10079
10079
|
message_text: stringFromOwn(input, "message_text", "messageText", "dialog_text", "dialogText"),
|
|
10080
10080
|
message_pattern: stringFromOwn(input, "message_pattern", "messagePattern", "dialog_pattern", "dialogPattern"),
|
|
10081
|
-
index: numberValue3(input
|
|
10081
|
+
index: numberValue3(valueFromOwn(input, "index", "target_index", "targetIndex")),
|
|
10082
10082
|
expected_count: expectedCount,
|
|
10083
10083
|
ms: numberValue3(input.ms) ?? numberValue3(input.wait_ms) ?? numberValue3(input.waitMs),
|
|
10084
10084
|
timeout_ms: numberValue3(input.timeout_ms) ?? numberValue3(input.timeoutMs),
|
package/dist/index.js
CHANGED
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
resolveRiddleProofProfileTimeoutSec,
|
|
63
63
|
slugifyRiddleProofProfileName,
|
|
64
64
|
summarizeRiddleProofProfileResult
|
|
65
|
-
} from "./chunk-
|
|
65
|
+
} from "./chunk-VCTXNE67.js";
|
|
66
66
|
import {
|
|
67
67
|
DEFAULT_RIDDLE_API_BASE_URL,
|
|
68
68
|
DEFAULT_RIDDLE_API_KEY_FILE,
|
package/dist/profile.cjs
CHANGED
|
@@ -1392,7 +1392,7 @@ function normalizeSetupAction(input, index) {
|
|
|
1392
1392
|
prompt_text: stringFromOwn(input, "prompt_text", "promptText", "prompt_value", "promptValue"),
|
|
1393
1393
|
message_text: stringFromOwn(input, "message_text", "messageText", "dialog_text", "dialogText"),
|
|
1394
1394
|
message_pattern: stringFromOwn(input, "message_pattern", "messagePattern", "dialog_pattern", "dialogPattern"),
|
|
1395
|
-
index: numberValue(input
|
|
1395
|
+
index: numberValue(valueFromOwn(input, "index", "target_index", "targetIndex")),
|
|
1396
1396
|
expected_count: expectedCount,
|
|
1397
1397
|
ms: numberValue(input.ms) ?? numberValue(input.wait_ms) ?? numberValue(input.waitMs),
|
|
1398
1398
|
timeout_ms: numberValue(input.timeout_ms) ?? numberValue(input.timeoutMs),
|
package/dist/profile.js
CHANGED
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
resolveRiddleProofProfileTimeoutSec,
|
|
24
24
|
slugifyRiddleProofProfileName,
|
|
25
25
|
summarizeRiddleProofProfileResult
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-VCTXNE67.js";
|
|
27
27
|
export {
|
|
28
28
|
RIDDLE_PROOF_PROFILE_CHECK_TYPES,
|
|
29
29
|
RIDDLE_PROOF_PROFILE_EVIDENCE_VERSION,
|