@ixo/editor 6.31.4 → 6.32.1

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.
@@ -0,0 +1,214 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://ixo.world/schemas/qi/action-manifest-v2.schema.json",
4
+ "type": "object",
5
+ "additionalProperties": false,
6
+ "required": [
7
+ "manifestVersion",
8
+ "manifestId",
9
+ "generatedAt",
10
+ "package",
11
+ "issuer",
12
+ "compatibility",
13
+ "actions",
14
+ "primitives",
15
+ "integrity"
16
+ ],
17
+ "properties": {
18
+ "manifestVersion": {
19
+ "const": "2.0"
20
+ },
21
+ "manifestId": {
22
+ "type": "string",
23
+ "minLength": 1
24
+ },
25
+ "generatedAt": {
26
+ "type": "string",
27
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d+)?(?:Z|[+-]\\d{2}:\\d{2})$"
28
+ },
29
+ "package": {
30
+ "type": "object",
31
+ "additionalProperties": false,
32
+ "required": [
33
+ "name",
34
+ "version",
35
+ "sourceCommit"
36
+ ],
37
+ "properties": {
38
+ "name": {
39
+ "type": "string",
40
+ "minLength": 1
41
+ },
42
+ "version": {
43
+ "type": "string",
44
+ "minLength": 1
45
+ },
46
+ "sourceCommit": {
47
+ "type": "string",
48
+ "minLength": 1
49
+ },
50
+ "buildId": {
51
+ "type": "string",
52
+ "minLength": 1
53
+ },
54
+ "distributionUrl": {
55
+ "type": "string",
56
+ "pattern": "^[a-zA-Z][a-zA-Z0-9+.-]*:"
57
+ }
58
+ }
59
+ },
60
+ "issuer": {
61
+ "type": "object",
62
+ "additionalProperties": false,
63
+ "required": [
64
+ "did",
65
+ "verificationMethod"
66
+ ],
67
+ "properties": {
68
+ "did": {
69
+ "type": "string",
70
+ "pattern": "^did:[a-z0-9]+:.+"
71
+ },
72
+ "verificationMethod": {
73
+ "type": "string",
74
+ "pattern": "^did:[a-z0-9]+:.+#.+"
75
+ }
76
+ }
77
+ },
78
+ "compatibility": {
79
+ "type": "object",
80
+ "additionalProperties": false,
81
+ "required": [
82
+ "engine",
83
+ "flowSchemaVersions",
84
+ "features"
85
+ ],
86
+ "properties": {
87
+ "engine": {
88
+ "type": "object",
89
+ "additionalProperties": false,
90
+ "required": [
91
+ "versionRange"
92
+ ],
93
+ "properties": {
94
+ "versionRange": {
95
+ "type": "string",
96
+ "minLength": 1
97
+ }
98
+ }
99
+ },
100
+ "flowSchemaVersions": {
101
+ "type": "array",
102
+ "minItems": 1,
103
+ "uniqueItems": true,
104
+ "items": {
105
+ "type": "string",
106
+ "minLength": 1
107
+ }
108
+ },
109
+ "features": {
110
+ "type": "array",
111
+ "minItems": 1,
112
+ "uniqueItems": true,
113
+ "items": {
114
+ "type": "string",
115
+ "minLength": 1
116
+ }
117
+ }
118
+ }
119
+ },
120
+ "actions": {
121
+ "type": "array",
122
+ "items": {
123
+ "$ref": "#/$defs/contract"
124
+ }
125
+ },
126
+ "primitives": {
127
+ "type": "array",
128
+ "items": {
129
+ "$ref": "#/$defs/contract"
130
+ }
131
+ },
132
+ "integrity": {
133
+ "type": "object",
134
+ "additionalProperties": false,
135
+ "required": [
136
+ "canonicalization",
137
+ "digest",
138
+ "signature"
139
+ ],
140
+ "properties": {
141
+ "canonicalization": {
142
+ "const": "RFC8785"
143
+ },
144
+ "digest": {
145
+ "type": "object",
146
+ "additionalProperties": false,
147
+ "required": [
148
+ "algorithm",
149
+ "value"
150
+ ],
151
+ "properties": {
152
+ "algorithm": {
153
+ "const": "SHA-256"
154
+ },
155
+ "value": {
156
+ "type": "string",
157
+ "pattern": "^sha256:[0-9a-f]{64}$"
158
+ }
159
+ }
160
+ },
161
+ "signature": {
162
+ "type": "object",
163
+ "additionalProperties": false,
164
+ "required": [
165
+ "algorithm",
166
+ "verificationMethod",
167
+ "value"
168
+ ],
169
+ "properties": {
170
+ "algorithm": {
171
+ "type": "string",
172
+ "minLength": 1
173
+ },
174
+ "verificationMethod": {
175
+ "type": "string",
176
+ "pattern": "^did:[a-z0-9]+:.+#.+"
177
+ },
178
+ "value": {
179
+ "type": "string",
180
+ "minLength": 1
181
+ }
182
+ }
183
+ }
184
+ }
185
+ }
186
+ },
187
+ "$defs": {
188
+ "contract": {
189
+ "type": "object",
190
+ "required": [
191
+ "type",
192
+ "contractVersion"
193
+ ],
194
+ "properties": {
195
+ "type": {
196
+ "type": "string",
197
+ "minLength": 1
198
+ },
199
+ "contractVersion": {
200
+ "type": "string",
201
+ "minLength": 1
202
+ },
203
+ "aliases": {
204
+ "type": "array",
205
+ "uniqueItems": true,
206
+ "items": {
207
+ "type": "string",
208
+ "minLength": 1
209
+ }
210
+ }
211
+ }
212
+ }
213
+ }
214
+ }
@@ -19207,6 +19207,9 @@
19207
19207
  "required"
19208
19208
  ]
19209
19209
  },
19210
+ "transitionCode": {
19211
+ "type": "string"
19212
+ },
19210
19213
  "idempotencyKey": {
19211
19214
  "type": "string"
19212
19215
  }
@@ -19260,7 +19263,7 @@
19260
19263
  "sensitiveOutputPaths": []
19261
19264
  }
19262
19265
  },
19263
- "contractDigest": "sha256:e3a80e9386a7fff86eefe5853a1b64b532b9e860b9fc6be09fa059e2cec8c2c3"
19266
+ "contractDigest": "sha256:bcc1add1a0ec3aeca4b0032d8335d193b28cf66d3cbfbd7651bb6f96af98a26d"
19264
19267
  },
19265
19268
  {
19266
19269
  "type": "qi/topic.context.link",
@@ -19380,16 +19383,18 @@
19380
19383
  "contractDigest": "sha256:d8cc05245c5802dfc4605e93bf7902df3bc7692dfb7c2687a07ab177e9051af8"
19381
19384
  },
19382
19385
  {
19383
- "type": "qi/topic.contract.accept",
19384
- "displayName": "Accept Topic Contract",
19385
- "description": "Accept the exact current Topic contract revision",
19386
- "aliases": [],
19387
- "can": "topic/contract.accept",
19386
+ "type": "qi/topic.contract.confirm-setup",
19387
+ "displayName": "Confirm Topic Setup",
19388
+ "description": "Confirm the exact proposed Topic setup revision",
19389
+ "aliases": [
19390
+ "qi/topic.contract.accept"
19391
+ ],
19392
+ "can": "topic/contract.confirm-setup",
19388
19393
  "effectiveCapability": {
19389
- "action": "topic/contract.accept",
19394
+ "action": "topic/contract.confirm-setup",
19390
19395
  "flowExecution": "flow/block/execute",
19391
19396
  "topicWriteBack": [
19392
- "topic/accept-contract"
19397
+ "topic/confirm-setup"
19393
19398
  ]
19394
19399
  },
19395
19400
  "sideEffect": true,
@@ -19433,6 +19438,9 @@
19433
19438
  "confirmationReference": {
19434
19439
  "type": "string"
19435
19440
  },
19441
+ "transitionCode": {
19442
+ "type": "string"
19443
+ },
19436
19444
  "idempotencyKey": {
19437
19445
  "type": "string"
19438
19446
  }
@@ -19478,7 +19486,7 @@
19478
19486
  "permittedTopicRecordTypes": [],
19479
19487
  "lifecycleEffect": "none",
19480
19488
  "requiredTopicAbilities": [
19481
- "topic/accept-contract"
19489
+ "topic/confirm-setup"
19482
19490
  ],
19483
19491
  "redactionPolicy": {
19484
19492
  "mode": "paths",
@@ -19486,7 +19494,7 @@
19486
19494
  "sensitiveOutputPaths": []
19487
19495
  }
19488
19496
  },
19489
- "contractDigest": "sha256:f85c7e63c76cd7dd1da8a96fd9482d22ad3be3499f39c94ebe8fa29964775999"
19497
+ "contractDigest": "sha256:9c184caf089ba6f67eca3d391f957450f9773aa069fd94394ab2d7f3ec634495"
19490
19498
  },
19491
19499
  {
19492
19500
  "type": "qi/topic.decision.record",
@@ -20011,22 +20019,22 @@
20011
20019
  "contractDigest": "sha256:c4b6fbdc3fe1fbca932fd6f51ce64391dab9e97e106bffe926ae1697bc3332ea"
20012
20020
  },
20013
20021
  {
20014
- "type": "qi/topic.outcome.confirm",
20015
- "displayName": "Confirm Topic Outcome",
20016
- "description": "Confirm a proposed outcome using the stated authority",
20022
+ "type": "qi/topic.outcome.propose",
20023
+ "displayName": "Propose Topic Outcome",
20024
+ "description": "Propose an evidence-backed outcome for review",
20017
20025
  "aliases": [],
20018
- "can": "topic/outcome.confirm",
20026
+ "can": "topic/outcome.propose",
20019
20027
  "effectiveCapability": {
20020
- "action": "topic/outcome.confirm",
20028
+ "action": "topic/outcome.propose",
20021
20029
  "flowExecution": "flow/block/execute",
20022
20030
  "topicWriteBack": [
20023
20031
  "topic/update-contract"
20024
20032
  ]
20025
20033
  },
20026
20034
  "sideEffect": true,
20027
- "defaultRequiresConfirmation": true,
20028
- "executionOwner": "human",
20029
- "riskTier": "high",
20035
+ "defaultRequiresConfirmation": false,
20036
+ "executionOwner": "agent",
20037
+ "riskTier": "medium",
20030
20038
  "requiredServices": [
20031
20039
  "topic"
20032
20040
  ],
@@ -20048,21 +20056,18 @@
20048
20056
  "inputSchema": {
20049
20057
  "type": "object",
20050
20058
  "required": [
20051
- "proposedOutcomeRecordId",
20052
- "confirmationAuthorityDid",
20053
- "confirmationReference"
20059
+ "statement"
20054
20060
  ],
20055
20061
  "additionalProperties": false,
20056
20062
  "properties": {
20057
- "proposedOutcomeRecordId": {
20063
+ "statement": {
20058
20064
  "type": "string"
20059
20065
  },
20060
- "confirmationAuthorityDid": {
20061
- "type": "string",
20062
- "pattern": "^did:"
20063
- },
20064
- "confirmationReference": {
20065
- "type": "string"
20066
+ "evidenceReferences": {
20067
+ "type": "array",
20068
+ "items": {
20069
+ "type": "string"
20070
+ }
20066
20071
  },
20067
20072
  "idempotencyKey": {
20068
20073
  "type": "string"
@@ -20117,25 +20122,24 @@
20117
20122
  "sensitiveOutputPaths": []
20118
20123
  }
20119
20124
  },
20120
- "contractDigest": "sha256:14abe01b2c309ae51c2d658a5125c13e77c695a23961a54964b17d4e064c7a7b"
20125
+ "contractDigest": "sha256:9115b1ab5d7d84634fc8bef7801886df3810d2c1899cce8bcd22f3f5d0d35b7a"
20121
20126
  },
20122
20127
  {
20123
- "type": "qi/topic.outcome.propose",
20124
- "displayName": "Propose Topic Outcome",
20125
- "description": "Propose an evidence-backed outcome for review",
20128
+ "type": "qi/topic.remind",
20129
+ "displayName": "Send a Topic reminder",
20130
+ "description": "Posts a reminder into the Topic thread and notifies the people responsible for it.",
20126
20131
  "aliases": [],
20127
- "can": "topic/outcome.propose",
20132
+ "can": "topic/reminder.deliver",
20128
20133
  "effectiveCapability": {
20129
- "action": "topic/outcome.propose",
20130
- "flowExecution": "flow/block/execute",
20134
+ "action": "topic/reminder.deliver",
20131
20135
  "topicWriteBack": [
20132
- "topic/update-contract"
20136
+ "topic/manage-reminder"
20133
20137
  ]
20134
20138
  },
20135
20139
  "sideEffect": true,
20136
20140
  "defaultRequiresConfirmation": false,
20137
20141
  "executionOwner": "agent",
20138
- "riskTier": "medium",
20142
+ "riskTier": "low",
20139
20143
  "requiredServices": [
20140
20144
  "topic"
20141
20145
  ],
@@ -20146,7 +20150,7 @@
20146
20150
  "proof": {
20147
20151
  "kind": "fields",
20148
20152
  "fields": [
20149
- "operationId"
20153
+ "deliveredAt"
20150
20154
  ]
20151
20155
  },
20152
20156
  "done": {
@@ -20157,19 +20161,19 @@
20157
20161
  "inputSchema": {
20158
20162
  "type": "object",
20159
20163
  "required": [
20160
- "statement"
20164
+ "recipients"
20161
20165
  ],
20162
20166
  "additionalProperties": false,
20163
20167
  "properties": {
20164
- "statement": {
20165
- "type": "string"
20166
- },
20167
- "evidenceReferences": {
20168
+ "recipients": {
20168
20169
  "type": "array",
20169
20170
  "items": {
20170
20171
  "type": "string"
20171
20172
  }
20172
20173
  },
20174
+ "message": {
20175
+ "type": "string"
20176
+ },
20173
20177
  "idempotencyKey": {
20174
20178
  "type": "string"
20175
20179
  }
@@ -20177,18 +20181,13 @@
20177
20181
  },
20178
20182
  "outputSchema": [
20179
20183
  {
20180
- "path": "operationId",
20181
- "displayName": "Topic operation ID",
20182
- "type": "string"
20183
- },
20184
- {
20185
- "path": "topicRevision",
20186
- "displayName": "Topic revision",
20184
+ "path": "deliveredAt",
20185
+ "displayName": "Delivered at",
20187
20186
  "type": "string"
20188
20187
  },
20189
20188
  {
20190
- "path": "proofReference",
20191
- "displayName": "Operation proof",
20189
+ "path": "recipients",
20190
+ "displayName": "Reminded",
20192
20191
  "type": "string"
20193
20192
  }
20194
20193
  ],
@@ -20196,7 +20195,25 @@
20196
20195
  "hasDynamicEvents": false,
20197
20196
  "hasDynamicOutputSchema": false,
20198
20197
  "eligibleForEventTrigger": false,
20199
- "eligibleForTimeTrigger": false,
20198
+ "eligibleForTimeTrigger": true,
20199
+ "scheduling": {
20200
+ "riskTier": "R0",
20201
+ "misfirePolicies": [
20202
+ "run_once_immediately",
20203
+ "skip"
20204
+ ],
20205
+ "overlapPolicies": [
20206
+ "skip"
20207
+ ],
20208
+ "approvalRequirement": "none",
20209
+ "idempotencyStrategy": "idempotency_key",
20210
+ "inputModes": [
20211
+ "resolve_at_fire"
20212
+ ],
20213
+ "runModes": [
20214
+ "new_run_per_occurrence"
20215
+ ]
20216
+ },
20200
20217
  "hasCustomInputValidation": false,
20201
20218
  "topic": {
20202
20219
  "supportedBaseKinds": [
@@ -20209,13 +20226,13 @@
20209
20226
  "discussion",
20210
20227
  "incident"
20211
20228
  ],
20212
- "relevance": "recommended",
20229
+ "relevance": "contextual",
20213
20230
  "writeBackMode": "receipt-only",
20214
20231
  "semanticRecordTypes": [],
20215
20232
  "permittedTopicRecordTypes": [],
20216
20233
  "lifecycleEffect": "none",
20217
20234
  "requiredTopicAbilities": [
20218
- "topic/update-contract"
20235
+ "topic/manage-reminder"
20219
20236
  ],
20220
20237
  "redactionPolicy": {
20221
20238
  "mode": "paths",
@@ -20223,7 +20240,7 @@
20223
20240
  "sensitiveOutputPaths": []
20224
20241
  }
20225
20242
  },
20226
- "contractDigest": "sha256:9115b1ab5d7d84634fc8bef7801886df3810d2c1899cce8bcd22f3f5d0d35b7a"
20243
+ "contractDigest": "sha256:bc89828c9746010d82dbd3e5d236924526e972c6de55142eb4dbed2a9f4739d2"
20227
20244
  },
20228
20245
  {
20229
20246
  "type": "qi/topic.status.transition",
@@ -20265,6 +20282,7 @@
20265
20282
  "required": [
20266
20283
  "from",
20267
20284
  "to",
20285
+ "transitionCode",
20268
20286
  "reason"
20269
20287
  ],
20270
20288
  "additionalProperties": false,
@@ -20275,6 +20293,9 @@
20275
20293
  "to": {
20276
20294
  "type": "string"
20277
20295
  },
20296
+ "transitionCode": {
20297
+ "type": "string"
20298
+ },
20278
20299
  "reason": {
20279
20300
  "type": "string"
20280
20301
  },
@@ -20331,7 +20352,7 @@
20331
20352
  "sensitiveOutputPaths": []
20332
20353
  }
20333
20354
  },
20334
- "contractDigest": "sha256:3a26858ab4b1fdf85071c9e61d8008d3f829cd443d7504265bf9ce9738b46f5f"
20355
+ "contractDigest": "sha256:89d326dd28dfde01e9cfbb510c518e5ff214bf8b1b72baf2b8c168d091c7f6cf"
20335
20356
  },
20336
20357
  {
20337
20358
  "type": "qi/wallet.fund",
@@ -22346,5 +22367,5 @@
22346
22367
  "contractDigest": "sha256:4c7e30133613928eecdfadd56985fd139bafd63b01534c0904c8449af3defb65"
22347
22368
  }
22348
22369
  ],
22349
- "manifestDigest": "sha256:53838f78f91b76716e9774bd516ecab407455dd8fa3ef7642b431897efc12440"
22370
+ "manifestDigest": "sha256:4e8877cd2c8251bfcc0c8b2de97c4b24fab72ae28e2083600b119e46e422fa99"
22350
22371
  }
@@ -136,7 +136,7 @@ import {
136
136
  writeActionState,
137
137
  writeRunRecordAndReconcile,
138
138
  xeroOracleActivityForBlockForEditor
139
- } from "./chunk-6OMM32CE.js";
139
+ } from "./chunk-NEOPTPDF.js";
140
140
 
141
141
  // src/mantine/hooks/usePanel.ts
142
142
  import { useCallback, useMemo, useEffect, useRef } from "react";
@@ -59684,4 +59684,4 @@ export {
59684
59684
  ixoGraphQLClient,
59685
59685
  getEntity
59686
59686
  };
59687
- //# sourceMappingURL=chunk-2HFSD5YP.js.map
59687
+ //# sourceMappingURL=chunk-5JF23UP3.js.map
@@ -16,7 +16,7 @@ import {
16
16
  swapBlocksInFragment,
17
17
  writeActionState,
18
18
  writeCompiledBlocksToFragment
19
- } from "./chunk-6OMM32CE.js";
19
+ } from "./chunk-NEOPTPDF.js";
20
20
 
21
21
  // src/core/lib/flowCompiler/authoring.ts
22
22
  function readFlowDocument(yDoc, runId) {
@@ -371,4 +371,4 @@ export {
371
371
  setFlowParticipantPowerLevel,
372
372
  setFlowParticipantRequirements
373
373
  };
374
- //# sourceMappingURL=chunk-PSZOCS5V.js.map
374
+ //# sourceMappingURL=chunk-A4CWC4AG.js.map