@ixo/editor 6.22.0 → 6.24.0

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.
@@ -1,55 +1,115 @@
1
1
  import {
2
+ FLOW_PARTICIPANTS_MAP_KEY,
2
3
  addFlowNode,
3
4
  readFlowDocument,
5
+ readFlowParticipants,
4
6
  removeFlowNode,
7
+ removeFlowParticipant,
5
8
  reorderFlowNodes,
6
9
  resetStepRuntime,
7
10
  setBlockProps,
11
+ setFlowParticipantPowerLevel,
12
+ setFlowParticipantRequirements,
8
13
  setFormAnswers,
9
14
  swapFlowBlocks,
10
- updateNodeRuntime
11
- } from "../chunk-EO2K4IDP.js";
15
+ updateNodeRuntime,
16
+ upsertFlowParticipant
17
+ } from "../chunk-R3H7TDTG.js";
12
18
  import {
19
+ ExplicitRunRequiredError,
20
+ FLOW_CONNECTIONS_MAP_KEY,
21
+ FLOW_CONNECTION_BINDINGS_MAP_KEY,
13
22
  FlowAgentService,
23
+ FlowNotMigratedError,
24
+ INVOCATIONS_MAP_KEY,
25
+ InvalidConditionConfigError,
14
26
  LATEST_VERSION,
27
+ LEGACY_RUN_STORAGE_VERSION,
28
+ MAX_RUN_ACTION_OUTPUT_BYTES,
29
+ MULTI_RUN_STORAGE_VERSION,
15
30
  NODE_CONTEXT_MAP_NAME,
16
31
  NODE_CONTEXT_OVERRIDES_MAP_NAME,
17
32
  PROOF_MISSING_CODE,
33
+ RUNS_TERMINAL_MAP_KEY,
18
34
  RUN_RECORD_AUDIT_TYPE,
35
+ RUN_STORAGE_VERSION_KEY,
36
+ RunLifecycleAuthorizationError,
37
+ RunNotMigratedError,
38
+ RunNotReadyError,
19
39
  SERVICE_VERBS,
20
40
  STEP_COMPLETED_EVENT,
21
41
  STEP_COMPLETED_EVENT_NAME,
42
+ TerminalRunExecutionError,
43
+ UnknownRunError,
22
44
  VERSION_MANIFEST,
45
+ XERO_TOOLKIT,
23
46
  XERO_WORK_ITEMS_MAP_NAME,
24
47
  XERO_WORK_TERMINAL_MAP_NAME,
25
48
  acquireFlowAgentLease,
49
+ actionTypeToCan,
50
+ adoptLegacyRuntime,
26
51
  appendAgentLedgerEvent,
27
52
  appendRunRecord,
53
+ appendRunTimelineEvent,
54
+ appendRunTimelineEvents,
55
+ assertRunActionExecutionAllowed,
56
+ boundRunActionOutput,
57
+ boundRunEventJson,
58
+ buildActionRunInputs,
28
59
  buildAuthzFromProps,
29
60
  buildBlockConditionsProp,
30
61
  buildFlowAgentContext,
31
62
  buildFlowNodeFromBlock,
63
+ buildRunDefinitionSnapshot,
32
64
  buildServicesFromHandlers,
33
65
  buildXeroInvoiceWorkKey,
34
66
  buildXeroPaymentWorkKey,
35
67
  canMatches,
68
+ canToActionType,
36
69
  canToType,
70
+ cancelRun,
71
+ capabilityPatternCoversCan,
37
72
  classifyBlockerCause,
38
73
  classifyNodeState,
39
74
  cleanupExpiredFlowAgentLeases,
75
+ clearAllActionState,
40
76
  clearRuntimeForTemplateClone,
77
+ closeRun,
78
+ collectPhantomLegacyRun,
41
79
  compileBaseUcanFlow,
42
80
  computeAgentCommandId,
43
81
  computePendingInvocationId,
82
+ computeRunDefinitionHash,
83
+ computeRunSummary,
84
+ countPendingInvocations,
44
85
  createAgentCommand,
45
86
  createInvocationStore,
46
87
  createMemoryInvocationStore,
47
88
  createMemoryUcanDelegationStore,
89
+ createReference,
90
+ createRunEventIdempotencyKey,
91
+ createRunId,
92
+ createRunRuntimeReader,
93
+ createRunRuntimeReaderWithDoc,
94
+ createRunScopedRuntimeManager,
95
+ createRunUlid,
48
96
  createRuntimeStateManager,
49
97
  createUcanDelegationStore,
50
98
  createUcanService,
99
+ createYDocRuntimeManager,
51
100
  decompileToBaseUcanFlow,
101
+ deleteActionState,
102
+ detectRunDefinitionDrift,
103
+ dispatchFlowStartTriggers,
104
+ doneWhenCompleted,
105
+ enableMultiRunStorage,
106
+ ensureRun,
107
+ evaluateBlockConditions,
108
+ evaluateBlockConditionsForRun,
109
+ evaluateBlockExecutionEligibilityForRun,
110
+ evaluateCondition,
52
111
  evaluateFlowAgentPolicy,
112
+ executeActionBlock,
53
113
  executeFlowAgentCoreCommand,
54
114
  executeNode,
55
115
  executeQueuedAgentCommands,
@@ -68,22 +128,37 @@ import {
68
128
  getEventsForBlock,
69
129
  getFlowAgentMaps,
70
130
  getMissingActionInputs,
131
+ getNestedValue,
71
132
  getOrCreateBlockPendingMap,
72
133
  getOutputSchemaForBlock,
73
134
  getPendingInvocationsMap,
135
+ getRunActionsMap,
136
+ getRunMeta,
137
+ getRunStorageVersion,
138
+ getRunsMap,
139
+ getRunsTerminalMap,
74
140
  getVersionPolicy,
75
141
  getXeroWorkItemsMap,
76
142
  getXeroWorkTerminalMap,
77
143
  hasAction,
144
+ hasLegacyRuntimeHistory,
145
+ hasReferences,
146
+ isActionDone,
147
+ isActionTypeDone,
78
148
  isAuthorized,
149
+ isBelowTheLineBlock,
79
150
  isBlankInputValue,
80
151
  isCapabilityMatch,
81
152
  isExternalMutation,
153
+ isLegacyRuntimeAdoptionEnabled,
82
154
  isNodeContextRecord,
155
+ isRecordInRun,
83
156
  isRuntimeRef,
84
157
  isTempUcanEnforcementDisabled,
85
158
  isVerifiedCompletion,
86
159
  isVersionAtLeast,
160
+ listOpenRuns,
161
+ listRuns,
87
162
  markXeroWorkApproved,
88
163
  markXeroWorkApprovedForEditor,
89
164
  markXeroWorkCompleted,
@@ -91,50 +166,99 @@ import {
91
166
  markXeroWorkFailed,
92
167
  markXeroWorkFailedForEditor,
93
168
  mergeCompiledFlows,
169
+ migrateFlowToSessions,
170
+ neverDone,
171
+ normalizeActionReadBackMetadata,
172
+ normalizeCan,
173
+ normalizeCapabilityPattern,
174
+ normalizeCondition,
175
+ normalizeConditions,
176
+ parseConditionConfig,
177
+ parseConditionConfigStrict,
178
+ parseReferences,
94
179
  parseServiceCan,
95
180
  planRalphLoopCommands,
96
181
  queueAgentCommand,
97
182
  queuePendingInvocation,
183
+ readActionState,
184
+ readActionStates,
185
+ readAgentCommands,
98
186
  readAgentLedgerEvents,
99
187
  readBlocksFromFragment,
100
188
  readCompiledFlowFromYDoc,
101
189
  readFlow,
190
+ readFlowAgentLeases,
102
191
  readFlowAsBaseUcan,
192
+ readFlowConnectionBindings,
193
+ readFlowConnections,
103
194
  readFlowFromEditor,
195
+ readFlowXeroBinding,
196
+ readFlowXeroBindingFromEditor,
197
+ readInvocationsForRun,
104
198
  readPendingInvocations,
199
+ readPendingRunTimelineEvents,
105
200
  readQueuedAgentCommands,
201
+ readRunActionStates,
106
202
  readRunRecords,
203
+ reconcileActionReadBack,
204
+ reconcileCompletion,
107
205
  reconcilePendingInvocations,
206
+ recordRunDefinitionDrift,
108
207
  registerAction,
109
208
  releaseFlowAgentLease,
110
209
  removeBlockFromFragment,
210
+ removeFlowConnection,
211
+ removeFlowConnectionBinding,
111
212
  removePendingInvocation,
112
213
  replaceBlockInFragment,
113
214
  replayFailedListenerRun,
114
215
  requiredCapabilityForCommand,
216
+ resetActionState,
217
+ resolveActiveRunId,
218
+ resolveConditionSourceValue,
219
+ resolveObjectReferences,
220
+ resolveRecordRunId,
221
+ resolveReferences,
222
+ resolveReferencesDetailed,
223
+ resolveRunIdForExecution,
224
+ resolveRunIdForRead,
115
225
  resolveRuntimeRefs,
226
+ resolveSingleReference,
116
227
  resourceMatches,
228
+ retryPendingRunTimelineEvents,
229
+ seedRunFromLegacyRuntime,
117
230
  serviceCan,
118
231
  setActiveEditor,
232
+ setAdvisoryActiveRunId,
233
+ setFlowConnectionOptional,
234
+ setFlowConnectionRequires,
235
+ setMultiRunStorage,
119
236
  setTempUcanEnforcementDisabled,
120
237
  setupFlowFromBaseUcan,
121
238
  snapshotInputRefs,
122
239
  snapshotNode,
240
+ startRun,
241
+ subscribeToActionState,
123
242
  tickFlowAgent,
124
243
  toEvaluatorOperator,
244
+ toRunJsonValue,
125
245
  typeToCan,
126
246
  updateAgentCommand,
127
247
  updateXeroWorkReviewPayload,
128
248
  updateXeroWorkReviewPayloadForEditor,
249
+ upsertFlowConnection,
250
+ upsertFlowConnectionBinding,
129
251
  upsertXeroWorkItem,
130
252
  upsertXeroWorkItemForEditor,
253
+ usesLegacyRuntimeCompatibility,
131
254
  validateActionProof,
132
255
  validateAgentCommand,
133
256
  validateFlowAgentLease,
134
257
  verifyCompletion,
258
+ writeActionState,
135
259
  writeCompiledBlocksToFragment,
136
260
  writeRunRecordAndReconcile
137
- } from "../chunk-2WSXLAX5.js";
261
+ } from "../chunk-BTMC55BR.js";
138
262
  import {
139
263
  computeCID,
140
264
  computeJsonCID
@@ -520,50 +644,105 @@ function createOracleInitFlowTemplate() {
520
644
  return { metadata, nodes };
521
645
  }
522
646
  export {
647
+ ExplicitRunRequiredError,
648
+ FLOW_CONNECTIONS_MAP_KEY,
649
+ FLOW_CONNECTION_BINDINGS_MAP_KEY,
650
+ FLOW_PARTICIPANTS_MAP_KEY,
523
651
  FlowAgentService,
652
+ FlowNotMigratedError,
653
+ INVOCATIONS_MAP_KEY,
654
+ InvalidConditionConfigError,
524
655
  LATEST_VERSION,
656
+ LEGACY_RUN_STORAGE_VERSION,
657
+ MAX_RUN_ACTION_OUTPUT_BYTES,
658
+ MULTI_RUN_STORAGE_VERSION,
525
659
  NODE_CONTEXT_MAP_NAME,
526
660
  NODE_CONTEXT_OVERRIDES_MAP_NAME,
527
661
  PROOF_MISSING_CODE,
662
+ RUNS_TERMINAL_MAP_KEY,
528
663
  RUN_RECORD_AUDIT_TYPE,
664
+ RUN_STORAGE_VERSION_KEY,
665
+ RunLifecycleAuthorizationError,
666
+ RunNotMigratedError,
667
+ RunNotReadyError,
529
668
  SERVICE_VERBS,
530
669
  STEP_COMPLETED_EVENT,
531
670
  STEP_COMPLETED_EVENT_NAME,
671
+ TerminalRunExecutionError,
672
+ UnknownRunError,
532
673
  VERSION_MANIFEST,
674
+ XERO_TOOLKIT,
533
675
  XERO_WORK_ITEMS_MAP_NAME,
534
676
  XERO_WORK_TERMINAL_MAP_NAME,
535
677
  acquireFlowAgentLease,
678
+ actionTypeToCan,
536
679
  addFlowNode,
680
+ adoptLegacyRuntime,
537
681
  appendAgentLedgerEvent,
538
682
  appendRunRecord,
683
+ appendRunTimelineEvent,
684
+ appendRunTimelineEvents,
685
+ assertRunActionExecutionAllowed,
686
+ boundRunActionOutput,
687
+ boundRunEventJson,
688
+ buildActionRunInputs,
539
689
  buildAuthzFromProps,
540
690
  buildBlockConditionsProp,
541
691
  buildFlowAgentContext,
542
692
  buildFlowNodeFromBlock,
693
+ buildRunDefinitionSnapshot,
543
694
  buildServicesFromHandlers,
544
695
  buildXeroInvoiceWorkKey,
545
696
  buildXeroPaymentWorkKey,
546
697
  canMatches,
698
+ canToActionType,
547
699
  canToType,
700
+ cancelRun,
701
+ capabilityPatternCoversCan,
548
702
  classifyBlockerCause,
549
703
  classifyNodeState,
550
704
  cleanupExpiredFlowAgentLeases,
705
+ clearAllActionState,
551
706
  clearRuntimeForTemplateClone,
707
+ closeRun,
708
+ collectPhantomLegacyRun,
552
709
  compileBaseUcanFlow,
553
710
  computeAgentCommandId,
554
711
  computeCID,
555
712
  computeJsonCID,
556
713
  computePendingInvocationId,
714
+ computeRunDefinitionHash,
715
+ computeRunSummary,
716
+ countPendingInvocations,
557
717
  createAgentCommand,
558
718
  createInvocationStore,
559
719
  createMemoryInvocationStore,
560
720
  createMemoryUcanDelegationStore,
561
721
  createOracleInitFlowTemplate,
722
+ createReference,
723
+ createRunEventIdempotencyKey,
724
+ createRunId,
725
+ createRunRuntimeReader,
726
+ createRunRuntimeReaderWithDoc,
727
+ createRunScopedRuntimeManager,
728
+ createRunUlid,
562
729
  createRuntimeStateManager,
563
730
  createUcanDelegationStore,
564
731
  createUcanService,
732
+ createYDocRuntimeManager,
565
733
  decompileToBaseUcanFlow,
734
+ deleteActionState,
735
+ detectRunDefinitionDrift,
736
+ dispatchFlowStartTriggers,
737
+ doneWhenCompleted,
738
+ enableMultiRunStorage,
739
+ ensureRun,
740
+ evaluateBlockConditions,
741
+ evaluateBlockConditionsForRun,
742
+ evaluateBlockExecutionEligibilityForRun,
743
+ evaluateCondition,
566
744
  evaluateFlowAgentPolicy,
745
+ executeActionBlock,
567
746
  executeFlowAgentCoreCommand,
568
747
  executeNode,
569
748
  executeQueuedAgentCommands,
@@ -582,22 +761,37 @@ export {
582
761
  getEventsForBlock,
583
762
  getFlowAgentMaps,
584
763
  getMissingActionInputs,
764
+ getNestedValue,
585
765
  getOrCreateBlockPendingMap,
586
766
  getOutputSchemaForBlock,
587
767
  getPendingInvocationsMap,
768
+ getRunActionsMap,
769
+ getRunMeta,
770
+ getRunStorageVersion,
771
+ getRunsMap,
772
+ getRunsTerminalMap,
588
773
  getVersionPolicy,
589
774
  getXeroWorkItemsMap,
590
775
  getXeroWorkTerminalMap,
591
776
  hasAction,
777
+ hasLegacyRuntimeHistory,
778
+ hasReferences,
779
+ isActionDone,
780
+ isActionTypeDone,
592
781
  isAuthorized,
782
+ isBelowTheLineBlock,
593
783
  isBlankInputValue,
594
784
  isCapabilityMatch,
595
785
  isExternalMutation,
786
+ isLegacyRuntimeAdoptionEnabled,
596
787
  isNodeContextRecord,
788
+ isRecordInRun,
597
789
  isRuntimeRef,
598
790
  isTempUcanEnforcementDisabled,
599
791
  isVerifiedCompletion,
600
792
  isVersionAtLeast,
793
+ listOpenRuns,
794
+ listRuns,
601
795
  markXeroWorkApproved,
602
796
  markXeroWorkApprovedForEditor,
603
797
  markXeroWorkCompleted,
@@ -605,56 +799,110 @@ export {
605
799
  markXeroWorkFailed,
606
800
  markXeroWorkFailedForEditor,
607
801
  mergeCompiledFlows,
802
+ migrateFlowToSessions,
803
+ neverDone,
804
+ normalizeActionReadBackMetadata,
805
+ normalizeCan,
806
+ normalizeCapabilityPattern,
807
+ normalizeCondition,
808
+ normalizeConditions,
608
809
  oracleInitSurveySchema,
810
+ parseConditionConfig,
811
+ parseConditionConfigStrict,
812
+ parseReferences,
609
813
  parseServiceCan,
610
814
  planRalphLoopCommands,
611
815
  queueAgentCommand,
612
816
  queuePendingInvocation,
817
+ readActionState,
818
+ readActionStates,
819
+ readAgentCommands,
613
820
  readAgentLedgerEvents,
614
821
  readBlocksFromFragment,
615
822
  readCompiledFlowFromYDoc,
616
823
  readFlow,
824
+ readFlowAgentLeases,
617
825
  readFlowAsBaseUcan,
826
+ readFlowConnectionBindings,
827
+ readFlowConnections,
618
828
  readFlowDocument,
619
829
  readFlowFromEditor,
830
+ readFlowParticipants,
831
+ readFlowXeroBinding,
832
+ readFlowXeroBindingFromEditor,
833
+ readInvocationsForRun,
620
834
  readPendingInvocations,
835
+ readPendingRunTimelineEvents,
621
836
  readQueuedAgentCommands,
837
+ readRunActionStates,
622
838
  readRunRecords,
839
+ reconcileActionReadBack,
840
+ reconcileCompletion,
623
841
  reconcilePendingInvocations,
842
+ recordRunDefinitionDrift,
624
843
  registerAction,
625
844
  releaseFlowAgentLease,
626
845
  removeBlockFromFragment,
846
+ removeFlowConnection,
847
+ removeFlowConnectionBinding,
627
848
  removeFlowNode,
849
+ removeFlowParticipant,
628
850
  removePendingInvocation,
629
851
  reorderFlowNodes,
630
852
  replaceBlockInFragment,
631
853
  replayFailedListenerRun,
632
854
  requiredCapabilityForCommand,
855
+ resetActionState,
633
856
  resetStepRuntime,
857
+ resolveActiveRunId,
858
+ resolveConditionSourceValue,
859
+ resolveObjectReferences,
860
+ resolveRecordRunId,
861
+ resolveReferences,
862
+ resolveReferencesDetailed,
863
+ resolveRunIdForExecution,
864
+ resolveRunIdForRead,
634
865
  resolveRuntimeRefs,
866
+ resolveSingleReference,
635
867
  resourceMatches,
868
+ retryPendingRunTimelineEvents,
869
+ seedRunFromLegacyRuntime,
636
870
  serviceCan,
637
871
  setActiveEditor,
872
+ setAdvisoryActiveRunId,
638
873
  setBlockProps,
874
+ setFlowConnectionOptional,
875
+ setFlowConnectionRequires,
876
+ setFlowParticipantPowerLevel,
877
+ setFlowParticipantRequirements,
639
878
  setFormAnswers,
879
+ setMultiRunStorage,
640
880
  setTempUcanEnforcementDisabled,
641
881
  setupFlowFromBaseUcan,
642
882
  snapshotInputRefs,
643
883
  snapshotNode,
884
+ startRun,
885
+ subscribeToActionState,
644
886
  swapFlowBlocks,
645
887
  tickFlowAgent,
646
888
  toEvaluatorOperator,
889
+ toRunJsonValue,
647
890
  typeToCan,
648
891
  updateAgentCommand,
649
892
  updateNodeRuntime,
650
893
  updateXeroWorkReviewPayload,
651
894
  updateXeroWorkReviewPayloadForEditor,
895
+ upsertFlowConnection,
896
+ upsertFlowConnectionBinding,
897
+ upsertFlowParticipant,
652
898
  upsertXeroWorkItem,
653
899
  upsertXeroWorkItemForEditor,
900
+ usesLegacyRuntimeCompatibility,
654
901
  validateActionProof,
655
902
  validateAgentCommand,
656
903
  validateFlowAgentLease,
657
904
  verifyCompletion,
905
+ writeActionState,
658
906
  writeCompiledBlocksToFragment,
659
907
  writeRunRecordAndReconcile
660
908
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/core/templates/oracleInitFlow.ts"],"sourcesContent":["import type { FlowMetadata } from '../types/editor';\nimport type { FlowNode } from '../types/authorization';\n\n// ---------------------------------------------------------------------------\n// SurveyJS schema for the oracle configuration form\n// ---------------------------------------------------------------------------\n\nexport const oracleInitSurveySchema = {\n title: 'Oracle Configuration',\n description: 'Provide the details needed to initialise a new oracle on the IXO network.',\n logoPosition: 'right',\n pages: [\n {\n name: 'basicInfo',\n title: 'Basic Information',\n elements: [\n {\n type: 'text',\n name: 'projectName',\n title: 'Project Name',\n description: 'Used as the folder name — no spaces or special characters.',\n isRequired: true,\n validators: [\n {\n type: 'regex',\n text: 'Only lowercase letters, numbers, and hyphens are allowed (no spaces or special characters).',\n regex: '^[a-z0-9]+(-[a-z0-9]+)*$',\n },\n ],\n },\n {\n type: 'text',\n name: 'pin',\n title: 'PIN',\n description: 'A 6-digit PIN used to secure wallet operations.',\n isRequired: true,\n inputType: 'password',\n maxLength: 6,\n validators: [\n {\n type: 'regex',\n text: 'PIN must be exactly 6 digits.',\n regex: '^\\\\d{6}$',\n },\n ],\n },\n ],\n },\n {\n name: 'oracleDetails',\n title: 'Oracle Details',\n elements: [\n {\n type: 'text',\n name: 'oracleName',\n title: 'Oracle Name',\n isRequired: true,\n },\n {\n type: 'text',\n name: 'orgName',\n title: 'Organisation Name',\n isRequired: true,\n },\n {\n type: 'comment',\n name: 'description',\n title: 'Description',\n isRequired: true,\n },\n {\n type: 'text',\n name: 'location',\n title: 'Location',\n isRequired: true,\n },\n {\n type: 'text',\n name: 'logoUrl',\n title: 'Logo URL',\n isRequired: true,\n inputType: 'url',\n validators: [{ type: 'url' }],\n },\n {\n type: 'text',\n name: 'coverImageUrl',\n title: 'Cover Image URL',\n isRequired: true,\n inputType: 'url',\n validators: [{ type: 'url' }],\n },\n ],\n },\n {\n name: 'serviceConfig',\n title: 'Service Configuration',\n elements: [\n {\n type: 'text',\n name: 'apiUrl',\n title: 'API URL',\n isRequired: true,\n inputType: 'url',\n defaultValue: 'http://localhost:4000',\n validators: [{ type: 'url' }],\n },\n {\n type: 'text',\n name: 'price',\n title: 'Price',\n description: 'Service price in IXO tokens (minimum 1).',\n isRequired: true,\n inputType: 'number',\n defaultValue: 100,\n validators: [\n {\n type: 'numeric',\n text: 'Price must be at least 1.',\n minValue: 1,\n },\n ],\n },\n {\n type: 'dropdown',\n name: 'llmModel',\n title: 'LLM Model',\n isRequired: true,\n choices: [\n { value: 'kimi-k2.5', text: 'Kimi K2.5' },\n { value: 'claude-sonnet', text: 'Claude Sonnet' },\n { value: 'gpt-4o', text: 'GPT-4o' },\n { value: 'gemini-2.5', text: 'Gemini 2.5' },\n { value: 'llama-4', text: 'Llama 4' },\n { value: 'custom', text: 'Custom' },\n ],\n },\n {\n type: 'comment',\n name: 'opening',\n title: 'Opening Message',\n description: 'The greeting or introduction the agent uses when starting a conversation.',\n isRequired: false,\n },\n {\n type: 'comment',\n name: 'communicationStyle',\n title: 'Communication Style',\n description: 'How the agent should communicate (e.g. formal, friendly, concise).',\n isRequired: false,\n },\n {\n type: 'comment',\n name: 'capabilities',\n title: 'What can the agent do?',\n description: 'Describe what this agent is capable of doing for users.',\n isRequired: false,\n },\n ],\n },\n ],\n};\n\n// ---------------------------------------------------------------------------\n// Template generator\n// ---------------------------------------------------------------------------\n\nexport function createOracleInitFlowTemplate(): {\n metadata: FlowMetadata;\n nodes: FlowNode[];\n} {\n const metadata: FlowMetadata = {\n '@context': 'https://schema.ixo.world/flow/v1',\n _type: 'flow/oracle-init',\n schema_version: '1.0.0',\n doc_id: '',\n title: 'Oracle Init Flow',\n createdAt: new Date().toISOString(),\n createdBy: '',\n flowOwnerDid: '',\n };\n\n const nodes: FlowNode[] = [\n // ------------------------------------------------------------------\n // [1] Form — collects all oracle configuration\n // ------------------------------------------------------------------\n {\n id: 'oracle-form',\n type: 'form',\n props: {\n title: 'Oracle Configuration',\n description: 'Enter the details for your new oracle.',\n icon: 'checklist',\n surveySchema: JSON.stringify(oracleInitSurveySchema),\n },\n },\n\n // ------------------------------------------------------------------\n // [2] Skills — skill/MCP configuration\n // ------------------------------------------------------------------\n {\n id: 'oracle-skills',\n type: 'skills',\n props: {\n title: 'Oracle Skills & MCP Servers',\n description: 'Configure skills and MCP servers for the oracle.',\n icon: 'tools',\n skills: '[]',\n entityDid: '',\n mcpServers: '[]',\n status: 'pending',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-form',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [3] Action — Generate & Fund Wallet\n // Generates a new wallet and funds it in one step.\n // ------------------------------------------------------------------\n {\n id: 'oracle-wallet',\n type: 'action',\n props: {\n title: 'Generate & Fund Wallet',\n description: 'Generate a new IXO wallet and fund it with tokens.',\n icon: 'bolt',\n actionType: 'qi/wallet.generateAndFund',\n inputs: JSON.stringify({}),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-skills',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [4] Action — Create Identity (IID + Matrix)\n // Creates the on-chain IID document, then registers the Matrix account.\n // ------------------------------------------------------------------\n {\n id: 'oracle-identity',\n type: 'action',\n props: {\n title: 'Create Identity',\n description: 'Create on-chain DID document and register Matrix account.',\n icon: 'bolt',\n actionType: 'qi/identity.create',\n inputs: JSON.stringify({\n mnemonic: '{{oracle-wallet.output.mnemonic}}',\n did: '{{oracle-wallet.output.did}}',\n address: '{{oracle-wallet.output.address}}',\n pubKey: '{{oracle-wallet.output.pubKey}}',\n formAnswers: '{{oracle-form.output.form.answers}}',\n }),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-wallet',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [5] Action — Create Oracle Entity\n // On-chain entity creation with P-256 encryption key.\n // ------------------------------------------------------------------\n {\n id: 'oracle-entity-create',\n type: 'action',\n props: {\n title: 'Create Oracle Entity',\n description: 'Create the oracle entity on the IXO network.',\n icon: 'bolt',\n actionType: 'qi/entity.createOracle',\n inputs: JSON.stringify({\n // Wallet outputs\n mnemonic: '{{oracle-wallet.output.mnemonic}}',\n address: '{{oracle-wallet.output.address}}',\n did: '{{oracle-wallet.output.did}}',\n pubKey: '{{oracle-wallet.output.pubKey}}',\n // Matrix outputs (from identity block)\n matrixAccessToken: '{{oracle-identity.output.matrixAccessToken}}',\n matrixRoomId: '{{oracle-identity.output.matrixRoomId}}',\n // Form outputs — whole blob, action parses & destructures\n formAnswers: '{{oracle-form.output.form.answers}}',\n }),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-identity',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [6] Action — Configure Oracle (contract + secrets + config)\n // Creates the user↔oracle DM room, encrypts secrets, stores config.\n // ------------------------------------------------------------------\n {\n id: 'oracle-configure',\n type: 'action',\n props: {\n title: 'Configure Oracle',\n description: 'Contract oracle, encrypt secrets, and store configuration.',\n icon: 'bolt',\n actionType: 'qi/oracle.configureOracle',\n inputs: JSON.stringify({\n // Contract input\n oracleEntityDid: '{{oracle-entity-create.output.entityDid}}',\n // Secrets routing (matrixRoomId comes from contract phase, not inputs)\n publicKeyMultibase: '{{oracle-entity-create.output.encryptionPublicKeyMultibase}}',\n verificationMethodId: '{{oracle-entity-create.output.encryptionVerificationMethodId}}',\n // Fresh mxLogin params\n matrixHomeServerUrl: '{{oracle-identity.output.matrixHomeServerUrl}}',\n matrixUsername: '{{oracle-identity.output.matrixUserId}}',\n // Sensitive plaintext values\n mnemonic: '{{oracle-wallet.output.mnemonic}}',\n matrixPassword: '{{oracle-identity.output.matrixPassword}}',\n matrixRecoveryPhrase: '{{oracle-identity.output.matrixRecoveryPhrase}}',\n // MCP auth secrets (already JWE-encrypted by skills block FlowDetail)\n mcpAuthSecrets: '{{oracle-skills.output.mcpAuthSecrets}}',\n // Skills outputs\n skills: '{{oracle-skills.output.skills}}',\n mcpServers: '{{oracle-skills.output.mcpServers}}',\n // Identifiers\n matrixUserId: '{{oracle-identity.output.matrixUserId}}',\n matrixAccountRoomId: '{{oracle-identity.output.matrixRoomId}}',\n entityDid: '{{oracle-entity-create.output.entityDid}}',\n oracleAddress: '{{oracle-wallet.output.address}}',\n oracleDid: '{{oracle-wallet.output.did}}',\n // Form outputs — whole blob, action parses & destructures\n formAnswers: '{{oracle-form.output.form.answers}}',\n }),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-entity-create',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [7] Action — Deploy Oracle (setup + start)\n // Clones repo, writes config, builds, then starts the process.\n // ------------------------------------------------------------------\n {\n id: 'oracle-deploy',\n type: 'action',\n props: {\n title: 'Deploy Oracle',\n description: 'Set up environment and start the oracle process.',\n icon: 'bolt',\n actionType: 'qi/oracle.deploy',\n inputs: JSON.stringify({\n entityDid: '{{oracle-entity-create.output.entityDid}}',\n roomId: '{{oracle-configure.output.userOracleRoomId}}',\n skills: '{{oracle-skills.output.skills}}',\n mcpServers: '{{oracle-skills.output.mcpServers}}',\n mnemonic: '{{oracle-wallet.output.mnemonic}}',\n matrixPassword: '{{oracle-identity.output.matrixPassword}}',\n matrixRecoveryPhrase: '{{oracle-identity.output.matrixRecoveryPhrase}}',\n matrixUsername: '{{oracle-identity.output.matrixUserId}}',\n matrixAccountRoomId: '{{oracle-identity.output.matrixRoomId}}',\n freshAccessToken: '{{oracle-configure.output.freshAccessToken}}',\n openRouterApiKey: '{{oracle-configure.output.openRouterApiKeyPlaintext}}',\n // Form outputs — whole blob, action parses & destructures\n formAnswers: '{{oracle-form.output.form.answers}}',\n }),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-configure',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [8] Secrets — display credentials and download\n // ------------------------------------------------------------------\n {\n id: 'oracle-secrets',\n type: 'secrets',\n props: {\n title: 'Oracle Credentials',\n description: 'Download your oracle credentials after setup is complete.',\n icon: 'key',\n downloadEndpoint: '',\n entityDid: '{{oracle-entity-create.output.entityDid}}',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-deploy',\n requiredStatus: 'approved',\n },\n },\n ];\n\n return { metadata, nodes };\n}\n"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../../src/core/templates/oracleInitFlow.ts"],"sourcesContent":["import type { FlowMetadata } from '../types/editor';\nimport type { FlowNode } from '../types/authorization';\n\n// ---------------------------------------------------------------------------\n// SurveyJS schema for the oracle configuration form\n// ---------------------------------------------------------------------------\n\nexport const oracleInitSurveySchema = {\n title: 'Oracle Configuration',\n description: 'Provide the details needed to initialise a new oracle on the IXO network.',\n logoPosition: 'right',\n pages: [\n {\n name: 'basicInfo',\n title: 'Basic Information',\n elements: [\n {\n type: 'text',\n name: 'projectName',\n title: 'Project Name',\n description: 'Used as the folder name — no spaces or special characters.',\n isRequired: true,\n validators: [\n {\n type: 'regex',\n text: 'Only lowercase letters, numbers, and hyphens are allowed (no spaces or special characters).',\n regex: '^[a-z0-9]+(-[a-z0-9]+)*$',\n },\n ],\n },\n {\n type: 'text',\n name: 'pin',\n title: 'PIN',\n description: 'A 6-digit PIN used to secure wallet operations.',\n isRequired: true,\n inputType: 'password',\n maxLength: 6,\n validators: [\n {\n type: 'regex',\n text: 'PIN must be exactly 6 digits.',\n regex: '^\\\\d{6}$',\n },\n ],\n },\n ],\n },\n {\n name: 'oracleDetails',\n title: 'Oracle Details',\n elements: [\n {\n type: 'text',\n name: 'oracleName',\n title: 'Oracle Name',\n isRequired: true,\n },\n {\n type: 'text',\n name: 'orgName',\n title: 'Organisation Name',\n isRequired: true,\n },\n {\n type: 'comment',\n name: 'description',\n title: 'Description',\n isRequired: true,\n },\n {\n type: 'text',\n name: 'location',\n title: 'Location',\n isRequired: true,\n },\n {\n type: 'text',\n name: 'logoUrl',\n title: 'Logo URL',\n isRequired: true,\n inputType: 'url',\n validators: [{ type: 'url' }],\n },\n {\n type: 'text',\n name: 'coverImageUrl',\n title: 'Cover Image URL',\n isRequired: true,\n inputType: 'url',\n validators: [{ type: 'url' }],\n },\n ],\n },\n {\n name: 'serviceConfig',\n title: 'Service Configuration',\n elements: [\n {\n type: 'text',\n name: 'apiUrl',\n title: 'API URL',\n isRequired: true,\n inputType: 'url',\n defaultValue: 'http://localhost:4000',\n validators: [{ type: 'url' }],\n },\n {\n type: 'text',\n name: 'price',\n title: 'Price',\n description: 'Service price in IXO tokens (minimum 1).',\n isRequired: true,\n inputType: 'number',\n defaultValue: 100,\n validators: [\n {\n type: 'numeric',\n text: 'Price must be at least 1.',\n minValue: 1,\n },\n ],\n },\n {\n type: 'dropdown',\n name: 'llmModel',\n title: 'LLM Model',\n isRequired: true,\n choices: [\n { value: 'kimi-k2.5', text: 'Kimi K2.5' },\n { value: 'claude-sonnet', text: 'Claude Sonnet' },\n { value: 'gpt-4o', text: 'GPT-4o' },\n { value: 'gemini-2.5', text: 'Gemini 2.5' },\n { value: 'llama-4', text: 'Llama 4' },\n { value: 'custom', text: 'Custom' },\n ],\n },\n {\n type: 'comment',\n name: 'opening',\n title: 'Opening Message',\n description: 'The greeting or introduction the agent uses when starting a conversation.',\n isRequired: false,\n },\n {\n type: 'comment',\n name: 'communicationStyle',\n title: 'Communication Style',\n description: 'How the agent should communicate (e.g. formal, friendly, concise).',\n isRequired: false,\n },\n {\n type: 'comment',\n name: 'capabilities',\n title: 'What can the agent do?',\n description: 'Describe what this agent is capable of doing for users.',\n isRequired: false,\n },\n ],\n },\n ],\n};\n\n// ---------------------------------------------------------------------------\n// Template generator\n// ---------------------------------------------------------------------------\n\nexport function createOracleInitFlowTemplate(): {\n metadata: FlowMetadata;\n nodes: FlowNode[];\n} {\n const metadata: FlowMetadata = {\n '@context': 'https://schema.ixo.world/flow/v1',\n _type: 'flow/oracle-init',\n schema_version: '1.0.0',\n doc_id: '',\n title: 'Oracle Init Flow',\n createdAt: new Date().toISOString(),\n createdBy: '',\n flowOwnerDid: '',\n };\n\n const nodes: FlowNode[] = [\n // ------------------------------------------------------------------\n // [1] Form — collects all oracle configuration\n // ------------------------------------------------------------------\n {\n id: 'oracle-form',\n type: 'form',\n props: {\n title: 'Oracle Configuration',\n description: 'Enter the details for your new oracle.',\n icon: 'checklist',\n surveySchema: JSON.stringify(oracleInitSurveySchema),\n },\n },\n\n // ------------------------------------------------------------------\n // [2] Skills — skill/MCP configuration\n // ------------------------------------------------------------------\n {\n id: 'oracle-skills',\n type: 'skills',\n props: {\n title: 'Oracle Skills & MCP Servers',\n description: 'Configure skills and MCP servers for the oracle.',\n icon: 'tools',\n skills: '[]',\n entityDid: '',\n mcpServers: '[]',\n status: 'pending',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-form',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [3] Action — Generate & Fund Wallet\n // Generates a new wallet and funds it in one step.\n // ------------------------------------------------------------------\n {\n id: 'oracle-wallet',\n type: 'action',\n props: {\n title: 'Generate & Fund Wallet',\n description: 'Generate a new IXO wallet and fund it with tokens.',\n icon: 'bolt',\n actionType: 'qi/wallet.generateAndFund',\n inputs: JSON.stringify({}),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-skills',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [4] Action — Create Identity (IID + Matrix)\n // Creates the on-chain IID document, then registers the Matrix account.\n // ------------------------------------------------------------------\n {\n id: 'oracle-identity',\n type: 'action',\n props: {\n title: 'Create Identity',\n description: 'Create on-chain DID document and register Matrix account.',\n icon: 'bolt',\n actionType: 'qi/identity.create',\n inputs: JSON.stringify({\n mnemonic: '{{oracle-wallet.output.mnemonic}}',\n did: '{{oracle-wallet.output.did}}',\n address: '{{oracle-wallet.output.address}}',\n pubKey: '{{oracle-wallet.output.pubKey}}',\n formAnswers: '{{oracle-form.output.form.answers}}',\n }),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-wallet',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [5] Action — Create Oracle Entity\n // On-chain entity creation with P-256 encryption key.\n // ------------------------------------------------------------------\n {\n id: 'oracle-entity-create',\n type: 'action',\n props: {\n title: 'Create Oracle Entity',\n description: 'Create the oracle entity on the IXO network.',\n icon: 'bolt',\n actionType: 'qi/entity.createOracle',\n inputs: JSON.stringify({\n // Wallet outputs\n mnemonic: '{{oracle-wallet.output.mnemonic}}',\n address: '{{oracle-wallet.output.address}}',\n did: '{{oracle-wallet.output.did}}',\n pubKey: '{{oracle-wallet.output.pubKey}}',\n // Matrix outputs (from identity block)\n matrixAccessToken: '{{oracle-identity.output.matrixAccessToken}}',\n matrixRoomId: '{{oracle-identity.output.matrixRoomId}}',\n // Form outputs — whole blob, action parses & destructures\n formAnswers: '{{oracle-form.output.form.answers}}',\n }),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-identity',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [6] Action — Configure Oracle (contract + secrets + config)\n // Creates the user↔oracle DM room, encrypts secrets, stores config.\n // ------------------------------------------------------------------\n {\n id: 'oracle-configure',\n type: 'action',\n props: {\n title: 'Configure Oracle',\n description: 'Contract oracle, encrypt secrets, and store configuration.',\n icon: 'bolt',\n actionType: 'qi/oracle.configureOracle',\n inputs: JSON.stringify({\n // Contract input\n oracleEntityDid: '{{oracle-entity-create.output.entityDid}}',\n // Secrets routing (matrixRoomId comes from contract phase, not inputs)\n publicKeyMultibase: '{{oracle-entity-create.output.encryptionPublicKeyMultibase}}',\n verificationMethodId: '{{oracle-entity-create.output.encryptionVerificationMethodId}}',\n // Fresh mxLogin params\n matrixHomeServerUrl: '{{oracle-identity.output.matrixHomeServerUrl}}',\n matrixUsername: '{{oracle-identity.output.matrixUserId}}',\n // Sensitive plaintext values\n mnemonic: '{{oracle-wallet.output.mnemonic}}',\n matrixPassword: '{{oracle-identity.output.matrixPassword}}',\n matrixRecoveryPhrase: '{{oracle-identity.output.matrixRecoveryPhrase}}',\n // MCP auth secrets (already JWE-encrypted by skills block FlowDetail)\n mcpAuthSecrets: '{{oracle-skills.output.mcpAuthSecrets}}',\n // Skills outputs\n skills: '{{oracle-skills.output.skills}}',\n mcpServers: '{{oracle-skills.output.mcpServers}}',\n // Identifiers\n matrixUserId: '{{oracle-identity.output.matrixUserId}}',\n matrixAccountRoomId: '{{oracle-identity.output.matrixRoomId}}',\n entityDid: '{{oracle-entity-create.output.entityDid}}',\n oracleAddress: '{{oracle-wallet.output.address}}',\n oracleDid: '{{oracle-wallet.output.did}}',\n // Form outputs — whole blob, action parses & destructures\n formAnswers: '{{oracle-form.output.form.answers}}',\n }),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-entity-create',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [7] Action — Deploy Oracle (setup + start)\n // Clones repo, writes config, builds, then starts the process.\n // ------------------------------------------------------------------\n {\n id: 'oracle-deploy',\n type: 'action',\n props: {\n title: 'Deploy Oracle',\n description: 'Set up environment and start the oracle process.',\n icon: 'bolt',\n actionType: 'qi/oracle.deploy',\n inputs: JSON.stringify({\n entityDid: '{{oracle-entity-create.output.entityDid}}',\n roomId: '{{oracle-configure.output.userOracleRoomId}}',\n skills: '{{oracle-skills.output.skills}}',\n mcpServers: '{{oracle-skills.output.mcpServers}}',\n mnemonic: '{{oracle-wallet.output.mnemonic}}',\n matrixPassword: '{{oracle-identity.output.matrixPassword}}',\n matrixRecoveryPhrase: '{{oracle-identity.output.matrixRecoveryPhrase}}',\n matrixUsername: '{{oracle-identity.output.matrixUserId}}',\n matrixAccountRoomId: '{{oracle-identity.output.matrixRoomId}}',\n freshAccessToken: '{{oracle-configure.output.freshAccessToken}}',\n openRouterApiKey: '{{oracle-configure.output.openRouterApiKeyPlaintext}}',\n // Form outputs — whole blob, action parses & destructures\n formAnswers: '{{oracle-form.output.form.answers}}',\n }),\n requiresConfirmation: '',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-configure',\n requiredStatus: 'approved',\n },\n },\n\n // ------------------------------------------------------------------\n // [8] Secrets — display credentials and download\n // ------------------------------------------------------------------\n {\n id: 'oracle-secrets',\n type: 'secrets',\n props: {\n title: 'Oracle Credentials',\n description: 'Download your oracle credentials after setup is complete.',\n icon: 'key',\n downloadEndpoint: '',\n entityDid: '{{oracle-entity-create.output.entityDid}}',\n },\n activationCondition: {\n upstreamNodeId: 'oracle-deploy',\n requiredStatus: 'approved',\n },\n },\n ];\n\n return { metadata, nodes };\n}\n"],"mappings":"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","names":[]}
@@ -1,5 +1,5 @@
1
1
  import * as _blocknote_core from '@blocknote/core';
2
- import { ap as IxoBlockProps, l as IxoEditorOptions, a5 as IxoEditorType, p as IxoCollaborativeEditorOptions, w as BlocknoteHandlers, y as BlockRequirements, aw as UnlMapConfig, as as DynamicListDataProvider, at as DynamicListPanelRenderer, au as DomainCardRenderer, a3 as Translate, k as DelegationGrant } from './index-BC4ycOwH.js';
2
+ import { ah as IxoBlockProps, m as IxoEditorOptions, a9 as IxoEditorType, q as IxoCollaborativeEditorOptions, x as BlocknoteHandlers, z as BlockRequirements, ao as UnlMapConfig, ak as DynamicListDataProvider, al as DynamicListPanelRenderer, am as DomainCardRenderer, ad as RunEventAppender, a5 as Translate, l as DelegationGrant } from './index-x1R0c9P_.js';
3
3
  import { Text, Doc, Map, Array as Array$1 } from 'yjs';
4
4
  import React__default from 'react';
5
5
  import * as _tiptap_core from '@tiptap/core';
@@ -523,13 +523,17 @@ interface IxoEditorProps {
523
523
  awarenessInstance?: any;
524
524
  /** Slot rendered between the page title and the editor body (e.g. a details strip). */
525
525
  belowTitleSlot?: React__default.ReactNode;
526
+ /** Explicit session rendered by this editor surface. */
527
+ sessionRunId?: string;
528
+ /** Matrix-backed timeline used by action transitions in this surface. */
529
+ runEventLog?: RunEventAppender;
526
530
  /** Translation function — pass `t` from the host app's i18n setup. Optional. */
527
531
  translate?: Translate;
528
532
  }
529
533
  /**
530
534
  * IxoEditor component - A customized BlockNote editor for IXO (Mantine UI)
531
535
  */
532
- declare function IxoEditor({ editor, editable, className, onChange, onSelectionChange, children, mantineTheme: _mantineTheme, handlers, blockRequirements, isPanelVisible, coverImageUrl, logoUrl, visualizationRenderer, getDynamicListData, dynamicListPanelRenderer, domainCardRenderer, onFlowStepRefClick, onExternalDrop, externalDropType, dropIndicator, isPlacementMode, onPlacementCancel, mapConfig, connectedUsers, awarenessInstance, belowTitleSlot, translate, }: IxoEditorProps): React__default.ReactElement | null;
536
+ declare function IxoEditor({ editor, editable, className, onChange, onSelectionChange, children, mantineTheme: _mantineTheme, handlers, blockRequirements, isPanelVisible, coverImageUrl, logoUrl, visualizationRenderer, getDynamicListData, dynamicListPanelRenderer, domainCardRenderer, onFlowStepRefClick, onExternalDrop, externalDropType, dropIndicator, isPlacementMode, onPlacementCancel, mapConfig, connectedUsers, awarenessInstance, belowTitleSlot, sessionRunId, runEventLog, translate, }: IxoEditorProps): React__default.ReactElement | null;
533
537
 
534
538
  interface CoverImageProps {
535
539
  coverImageUrl?: string;
@@ -537,9 +541,12 @@ interface CoverImageProps {
537
541
  }
538
542
  declare function CoverImage({ coverImageUrl, logoUrl }: CoverImageProps): React__default.ReactElement | null;
539
543
 
540
- declare function DevUcanGrantButton({ editor, handlers: propHandlers }: {
544
+ declare function DevUcanGrantButton({ editor, handlers: propHandlers, opened: controlledOpened, onOpenedChange, }: {
541
545
  editor: IxoEditorType;
542
546
  handlers?: BlocknoteHandlers;
547
+ /** When provided the component is controlled: the caller owns the trigger and this renders the modal only. */
548
+ opened?: boolean;
549
+ onOpenedChange?: (opened: boolean) => void;
543
550
  }): React__default.JSX.Element;
544
551
 
545
552
  /** @deprecated The activation gating fields were removed; this type is kept