@acorex/platform 21.0.0-next.64 → 21.0.0-next.65
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/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widgets.mjs +24 -2
- package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/package.json +1 -1
- package/types/acorex-platform-common.d.ts +1 -1
- package/types/acorex-platform-workflow.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.65",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.2-next.0",
|
|
6
6
|
"@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0 || ^21.0.2-next.0",
|
|
@@ -22,7 +22,7 @@ import { AXLocaleProfile } from '@acorex/core/locale';
|
|
|
22
22
|
/** JSON data primitive for the specialist final deliverable. */
|
|
23
23
|
type AXPAgentOutputKind = 'string' | 'object' | 'array';
|
|
24
24
|
/** When `kind` is `object`, controls how the parsed value maps into chat transcript segments. */
|
|
25
|
-
type AXPOutputTranscriptSegmentId = 'text' | 'node' | 'followUp';
|
|
25
|
+
type AXPOutputTranscriptSegmentId = 'text' | 'node' | 'followUp' | 'file';
|
|
26
26
|
/**
|
|
27
27
|
* Minimal JSON-Schema-like object for native provider hints and local validation.
|
|
28
28
|
*/
|
|
@@ -205,6 +205,7 @@ interface AXPWorkflowActivityInstance {
|
|
|
205
205
|
* Example: { "message": "Hello", "duration": 5000 }
|
|
206
206
|
*/
|
|
207
207
|
inputs?: AXPOptionsData;
|
|
208
|
+
title?: string;
|
|
208
209
|
/**
|
|
209
210
|
* Output mapping: process variable name → path in this activity's output (BPMN-style: activity → variable).
|
|
210
211
|
* When this activity completes, each entry sets variables[variableName] = output[outputPath].
|
|
@@ -732,6 +733,7 @@ interface AXPActivityDefinition {
|
|
|
732
733
|
* Display name for UI (plain or per-locale map).
|
|
733
734
|
*/
|
|
734
735
|
title?: AXPMultiLanguageString;
|
|
736
|
+
instanceTitle?: string;
|
|
735
737
|
/**
|
|
736
738
|
* Description of what the activity does (plain or per-locale map).
|
|
737
739
|
*/
|