@runtypelabs/persona 3.28.0 → 3.29.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.
- package/dist/animations/glyph-cycle.d.cts +1 -1
- package/dist/animations/glyph-cycle.d.ts +1 -1
- package/dist/animations/{types-CxvHw0X6.d.cts → types-B_Qazlm4.d.cts} +6 -0
- package/dist/animations/{types-CxvHw0X6.d.ts → types-B_Qazlm4.d.ts} +6 -0
- package/dist/animations/wipe.d.cts +1 -1
- package/dist/animations/wipe.d.ts +1 -1
- package/dist/codegen.cjs +11 -11
- package/dist/codegen.d.cts +9 -0
- package/dist/codegen.d.ts +9 -0
- package/dist/codegen.js +12 -12
- package/dist/index.cjs +40 -40
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.global.js +47 -47
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +40 -40
- package/dist/index.js.map +1 -1
- package/dist/smart-dom-reader.d.cts +6 -0
- package/dist/smart-dom-reader.d.ts +6 -0
- package/dist/theme-editor.cjs +30 -30
- package/dist/theme-editor.d.cts +6 -0
- package/dist/theme-editor.d.ts +6 -0
- package/dist/theme-editor.js +30 -30
- package/package.json +1 -1
- package/src/client.test.ts +40 -0
- package/src/client.ts +18 -4
- package/src/codegen.test.ts +43 -0
- package/src/generated/runtype-openapi-contract.ts +12 -0
- package/src/session.ts +190 -29
- package/src/session.webmcp.test.ts +326 -6
- package/src/utils/code-generators.ts +38 -9
package/dist/theme-editor.d.cts
CHANGED
|
@@ -900,6 +900,7 @@ type RuntypeAgentSSEEvent = {
|
|
|
900
900
|
iteration: number;
|
|
901
901
|
reflection?: string;
|
|
902
902
|
seq: number;
|
|
903
|
+
timestamp?: string;
|
|
903
904
|
type: "agent_reflection";
|
|
904
905
|
} | {
|
|
905
906
|
activatedCapabilities: Array<string>;
|
|
@@ -907,6 +908,7 @@ type RuntypeAgentSSEEvent = {
|
|
|
907
908
|
iteration: number;
|
|
908
909
|
seq: number;
|
|
909
910
|
skill: string;
|
|
911
|
+
timestamp?: string;
|
|
910
912
|
toolCallId: string;
|
|
911
913
|
type: "agent_skill_loaded";
|
|
912
914
|
} | ({
|
|
@@ -916,6 +918,7 @@ type RuntypeAgentSSEEvent = {
|
|
|
916
918
|
proposalId?: string;
|
|
917
919
|
seq: number;
|
|
918
920
|
skill: string;
|
|
921
|
+
timestamp?: string;
|
|
919
922
|
toolCallId: string;
|
|
920
923
|
type: "agent_skill_proposed";
|
|
921
924
|
}) | ({
|
|
@@ -949,6 +952,7 @@ type RuntypeAgentSSEEvent = {
|
|
|
949
952
|
iteration?: number;
|
|
950
953
|
recoverable: boolean;
|
|
951
954
|
seq: number;
|
|
955
|
+
timestamp?: string;
|
|
952
956
|
type: "agent_error";
|
|
953
957
|
} | {
|
|
954
958
|
executionId: string;
|
|
@@ -982,6 +986,7 @@ type RuntypeFlowSSEEvent = {
|
|
|
982
986
|
failedSteps?: number;
|
|
983
987
|
finalOutput?: string;
|
|
984
988
|
flowId?: string;
|
|
989
|
+
flowName?: string;
|
|
985
990
|
output?: unknown;
|
|
986
991
|
seq?: number;
|
|
987
992
|
source?: string;
|
|
@@ -1033,6 +1038,7 @@ type RuntypeFlowSSEEvent = {
|
|
|
1033
1038
|
id?: string;
|
|
1034
1039
|
index?: number;
|
|
1035
1040
|
name?: string;
|
|
1041
|
+
outputVariable?: string;
|
|
1036
1042
|
seq?: number;
|
|
1037
1043
|
startedAt: string;
|
|
1038
1044
|
stepId?: string;
|
package/dist/theme-editor.d.ts
CHANGED
|
@@ -900,6 +900,7 @@ type RuntypeAgentSSEEvent = {
|
|
|
900
900
|
iteration: number;
|
|
901
901
|
reflection?: string;
|
|
902
902
|
seq: number;
|
|
903
|
+
timestamp?: string;
|
|
903
904
|
type: "agent_reflection";
|
|
904
905
|
} | {
|
|
905
906
|
activatedCapabilities: Array<string>;
|
|
@@ -907,6 +908,7 @@ type RuntypeAgentSSEEvent = {
|
|
|
907
908
|
iteration: number;
|
|
908
909
|
seq: number;
|
|
909
910
|
skill: string;
|
|
911
|
+
timestamp?: string;
|
|
910
912
|
toolCallId: string;
|
|
911
913
|
type: "agent_skill_loaded";
|
|
912
914
|
} | ({
|
|
@@ -916,6 +918,7 @@ type RuntypeAgentSSEEvent = {
|
|
|
916
918
|
proposalId?: string;
|
|
917
919
|
seq: number;
|
|
918
920
|
skill: string;
|
|
921
|
+
timestamp?: string;
|
|
919
922
|
toolCallId: string;
|
|
920
923
|
type: "agent_skill_proposed";
|
|
921
924
|
}) | ({
|
|
@@ -949,6 +952,7 @@ type RuntypeAgentSSEEvent = {
|
|
|
949
952
|
iteration?: number;
|
|
950
953
|
recoverable: boolean;
|
|
951
954
|
seq: number;
|
|
955
|
+
timestamp?: string;
|
|
952
956
|
type: "agent_error";
|
|
953
957
|
} | {
|
|
954
958
|
executionId: string;
|
|
@@ -982,6 +986,7 @@ type RuntypeFlowSSEEvent = {
|
|
|
982
986
|
failedSteps?: number;
|
|
983
987
|
finalOutput?: string;
|
|
984
988
|
flowId?: string;
|
|
989
|
+
flowName?: string;
|
|
985
990
|
output?: unknown;
|
|
986
991
|
seq?: number;
|
|
987
992
|
source?: string;
|
|
@@ -1033,6 +1038,7 @@ type RuntypeFlowSSEEvent = {
|
|
|
1033
1038
|
id?: string;
|
|
1034
1039
|
index?: number;
|
|
1035
1040
|
name?: string;
|
|
1041
|
+
outputVariable?: string;
|
|
1036
1042
|
seq?: number;
|
|
1037
1043
|
startedAt: string;
|
|
1038
1044
|
stepId?: string;
|