@ixo/editor 6.0.1 → 6.0.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/{chunk-EOMC6ZVX.js → chunk-JDHRY2V4.js} +2 -2
- package/dist/{chunk-5TJK6JKV.js → chunk-RJOVPEAW.js} +9 -9
- package/dist/{chunk-5TJK6JKV.js.map → chunk-RJOVPEAW.js.map} +1 -1
- package/dist/{chunk-LMYTTXOQ.js → chunk-SVHOOAPF.js} +4 -4
- package/dist/{chunk-LMYTTXOQ.js.map → chunk-SVHOOAPF.js.map} +1 -1
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/mantine/index.js +2 -2
- package/dist/{store-C_KCYNzv.d.ts → store-DLDp3yre.d.ts} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-EOMC6ZVX.js.map → chunk-JDHRY2V4.js.map} +0 -0
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
replaceBlockInFragment,
|
|
11
11
|
swapBlocksInFragment,
|
|
12
12
|
writeCompiledBlocksToFragment
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-RJOVPEAW.js";
|
|
14
14
|
|
|
15
15
|
// src/core/lib/flowCompiler/authoring.ts
|
|
16
16
|
import * as Y from "yjs";
|
|
@@ -257,4 +257,4 @@ export {
|
|
|
257
257
|
resetStepRuntime,
|
|
258
258
|
setFormAnswers
|
|
259
259
|
};
|
|
260
|
-
//# sourceMappingURL=chunk-
|
|
260
|
+
//# sourceMappingURL=chunk-JDHRY2V4.js.map
|
|
@@ -12620,8 +12620,8 @@ var COMMAND_CAPABILITIES = {
|
|
|
12620
12620
|
notify_actor: "flow/notify",
|
|
12621
12621
|
execute_action: "flow/node/execute",
|
|
12622
12622
|
validate_external_state: "flow/mutation/execute",
|
|
12623
|
-
|
|
12624
|
-
|
|
12623
|
+
submit_oracle_claim: "flow/oracle-claim/submit",
|
|
12624
|
+
watch_oracle_udid: "flow/observe",
|
|
12625
12625
|
archive_flow: "flow/archive",
|
|
12626
12626
|
propose_config_change: "flow/config/propose"
|
|
12627
12627
|
};
|
|
@@ -13037,7 +13037,7 @@ function planForSnapshot(context, options, block, snapshot) {
|
|
|
13037
13037
|
const queueClaimUdidWatch = () => {
|
|
13038
13038
|
const runtime = snapshot.runtime;
|
|
13039
13039
|
if (actionType === "qi/claim.submit" && runtime.output?.claimId && !runtime.output?.udid) {
|
|
13040
|
-
const command = queueIfAuthorized(context, options, "
|
|
13040
|
+
const command = queueIfAuthorized(context, options, "watch_oracle_udid", snapshot.nodeId, "Oracle claim submitted but UDID is not yet observed", {
|
|
13041
13041
|
claimId: runtime.output.claimId,
|
|
13042
13042
|
timeoutMs: 864e5
|
|
13043
13043
|
});
|
|
@@ -13090,7 +13090,7 @@ function planForSnapshot(context, options, block, snapshot) {
|
|
|
13090
13090
|
return queued;
|
|
13091
13091
|
}
|
|
13092
13092
|
if (actionType === "qi/claim.submit") {
|
|
13093
|
-
const command = queueIfAuthorized(context, options, "
|
|
13093
|
+
const command = queueIfAuthorized(context, options, "submit_oracle_claim", snapshot.nodeId, "Oracle claim action is pending and agent is authorized to submit", {
|
|
13094
13094
|
actionType
|
|
13095
13095
|
});
|
|
13096
13096
|
if (command) queued.push(command);
|
|
@@ -13173,10 +13173,10 @@ async function callExecutor(command, context, executor) {
|
|
|
13173
13173
|
return executor.notifyActor ? executor.notifyActor(command, context) : { commandId: command.id, success: false, error: "No notifyActor handler configured" };
|
|
13174
13174
|
case "validate_external_state":
|
|
13175
13175
|
return executor.validateExternalState ? executor.validateExternalState(command, context) : { commandId: command.id, success: false, error: "No validateExternalState handler configured" };
|
|
13176
|
-
case "
|
|
13177
|
-
return executor.
|
|
13178
|
-
case "
|
|
13179
|
-
return executor.
|
|
13176
|
+
case "submit_oracle_claim":
|
|
13177
|
+
return executor.submitOracleClaim ? executor.submitOracleClaim(command, context) : { commandId: command.id, success: false, error: "No submitOracleClaim handler configured" };
|
|
13178
|
+
case "watch_oracle_udid":
|
|
13179
|
+
return executor.watchOracleUdid ? executor.watchOracleUdid(command, context) : { commandId: command.id, success: false, error: "No watchOracleUdid handler configured" };
|
|
13180
13180
|
case "archive_flow":
|
|
13181
13181
|
return executor.archiveFlow ? executor.archiveFlow(command, context) : { commandId: command.id, success: false, error: "No archiveFlow handler configured" };
|
|
13182
13182
|
case "propose_config_change":
|
|
@@ -13894,4 +13894,4 @@ export {
|
|
|
13894
13894
|
executeQueuedFlowAgentCoreCommands,
|
|
13895
13895
|
FlowAgentService
|
|
13896
13896
|
};
|
|
13897
|
-
//# sourceMappingURL=chunk-
|
|
13897
|
+
//# sourceMappingURL=chunk-RJOVPEAW.js.map
|