@runtypelabs/persona 3.15.1 → 3.16.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.
- package/dist/index.cjs +46 -46
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.global.js +61 -61
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +46 -46
- package/dist/index.js.map +1 -1
- package/dist/theme-editor.cjs +169 -64
- package/dist/theme-editor.d.cts +11 -0
- package/dist/theme-editor.d.ts +11 -0
- package/dist/theme-editor.js +169 -64
- package/package.json +1 -1
- package/src/client.ts +169 -2
- package/src/components/header-builder.ts +18 -7
- package/src/components/header-layouts.ts +3 -1
- package/src/defaults.ts +6 -0
- package/src/types.ts +11 -0
- package/src/ui.ts +4 -2
package/dist/index.d.cts
CHANGED
|
@@ -818,6 +818,17 @@ type AgentMessageMetadata = {
|
|
|
818
818
|
iteration?: number;
|
|
819
819
|
turnId?: string;
|
|
820
820
|
agentName?: string;
|
|
821
|
+
/**
|
|
822
|
+
* When this message was produced by a step inside a nested flow executed
|
|
823
|
+
* as a tool, identifies the parent tool call id. Enables renderers to
|
|
824
|
+
* visually group or indent nested-flow output under its parent tool.
|
|
825
|
+
*/
|
|
826
|
+
parentToolId?: string;
|
|
827
|
+
/**
|
|
828
|
+
* Nested flow step id that produced this message (e.g. a `send-stream`
|
|
829
|
+
* or `prompt` step inside the nested flow). Stable key for that step.
|
|
830
|
+
*/
|
|
831
|
+
parentStepId?: string;
|
|
821
832
|
};
|
|
822
833
|
type AgentWidgetRequestMiddlewareContext = {
|
|
823
834
|
payload: AgentWidgetRequestPayload;
|
package/dist/index.d.ts
CHANGED
|
@@ -818,6 +818,17 @@ type AgentMessageMetadata = {
|
|
|
818
818
|
iteration?: number;
|
|
819
819
|
turnId?: string;
|
|
820
820
|
agentName?: string;
|
|
821
|
+
/**
|
|
822
|
+
* When this message was produced by a step inside a nested flow executed
|
|
823
|
+
* as a tool, identifies the parent tool call id. Enables renderers to
|
|
824
|
+
* visually group or indent nested-flow output under its parent tool.
|
|
825
|
+
*/
|
|
826
|
+
parentToolId?: string;
|
|
827
|
+
/**
|
|
828
|
+
* Nested flow step id that produced this message (e.g. a `send-stream`
|
|
829
|
+
* or `prompt` step inside the nested flow). Stable key for that step.
|
|
830
|
+
*/
|
|
831
|
+
parentStepId?: string;
|
|
821
832
|
};
|
|
822
833
|
type AgentWidgetRequestMiddlewareContext = {
|
|
823
834
|
payload: AgentWidgetRequestPayload;
|