@marketrix.ai/widget 3.3.4 → 3.3.39
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/src/components/chat/ProgressLine.d.ts +1 -1
- package/dist/src/components/chat/ProgressLine.d.ts.map +1 -1
- package/dist/src/sdk/index.d.ts +237 -75
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/routes.d.ts +237 -75
- package/dist/src/sdk/routes.d.ts.map +1 -1
- package/dist/src/sdk/schema.d.ts +168 -55
- package/dist/src/sdk/schema.d.ts.map +1 -1
- package/dist/src/types/index.d.ts +1 -1
- package/dist/src/types/index.d.ts.map +1 -1
- package/dist/widget.mjs +67 -67
- package/dist/widget.mjs.map +1 -1
- package/package.json +1 -1
package/dist/src/sdk/index.d.ts
CHANGED
|
@@ -1000,17 +1000,17 @@ export declare const sdk: {
|
|
|
1000
1000
|
status: import("zod").ZodEnum<{
|
|
1001
1001
|
pending: "pending";
|
|
1002
1002
|
failed: "failed";
|
|
1003
|
-
|
|
1003
|
+
in_progress: "in_progress";
|
|
1004
|
+
stopped: "stopped";
|
|
1004
1005
|
passed: "passed";
|
|
1005
1006
|
skipped: "skipped";
|
|
1006
|
-
stopped: "stopped";
|
|
1007
1007
|
}>;
|
|
1008
1008
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1009
1009
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1010
1010
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1011
1011
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
1012
1012
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1013
|
-
|
|
1013
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
1014
1014
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1015
1015
|
task_id: import("zod").ZodString;
|
|
1016
1016
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -1023,6 +1023,10 @@ export declare const sdk: {
|
|
|
1023
1023
|
agent_name: import("zod").ZodString;
|
|
1024
1024
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1025
1025
|
}, import("zod/v4/core").$strip>>>;
|
|
1026
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1027
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1028
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1029
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1026
1030
|
}, import("zod/v4/core").$strip>>>>;
|
|
1027
1031
|
simulation_count: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
1028
1032
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -1627,6 +1631,9 @@ export declare const sdk: {
|
|
|
1627
1631
|
kind: import("zod").ZodLiteral<"connector">;
|
|
1628
1632
|
connector_type: import("zod").ZodString;
|
|
1629
1633
|
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1634
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1635
|
+
trigger_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1636
|
+
action_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1630
1637
|
capability: import("zod").ZodString;
|
|
1631
1638
|
role: import("zod").ZodEnum<{
|
|
1632
1639
|
trigger: "trigger";
|
|
@@ -1667,12 +1674,16 @@ export declare const sdk: {
|
|
|
1667
1674
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1668
1675
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1669
1676
|
workspace_id: import("zod").ZodNumber;
|
|
1677
|
+
created_by_user_id: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1670
1678
|
name: import("zod").ZodString;
|
|
1671
1679
|
graph: import("zod").ZodObject<{
|
|
1672
1680
|
nodes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1673
1681
|
kind: import("zod").ZodLiteral<"connector">;
|
|
1674
1682
|
connector_type: import("zod").ZodString;
|
|
1675
1683
|
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1684
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1685
|
+
trigger_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1686
|
+
action_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1676
1687
|
capability: import("zod").ZodString;
|
|
1677
1688
|
role: import("zod").ZodEnum<{
|
|
1678
1689
|
trigger: "trigger";
|
|
@@ -1721,12 +1732,16 @@ export declare const sdk: {
|
|
|
1721
1732
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1722
1733
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1723
1734
|
workspace_id: import("zod").ZodNumber;
|
|
1735
|
+
created_by_user_id: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1724
1736
|
name: import("zod").ZodString;
|
|
1725
1737
|
graph: import("zod").ZodObject<{
|
|
1726
1738
|
nodes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1727
1739
|
kind: import("zod").ZodLiteral<"connector">;
|
|
1728
1740
|
connector_type: import("zod").ZodString;
|
|
1729
1741
|
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1742
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1743
|
+
trigger_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1744
|
+
action_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1730
1745
|
capability: import("zod").ZodString;
|
|
1731
1746
|
role: import("zod").ZodEnum<{
|
|
1732
1747
|
trigger: "trigger";
|
|
@@ -1776,12 +1791,16 @@ export declare const sdk: {
|
|
|
1776
1791
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1777
1792
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1778
1793
|
workspace_id: import("zod").ZodNumber;
|
|
1794
|
+
created_by_user_id: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1779
1795
|
name: import("zod").ZodString;
|
|
1780
1796
|
graph: import("zod").ZodObject<{
|
|
1781
1797
|
nodes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1782
1798
|
kind: import("zod").ZodLiteral<"connector">;
|
|
1783
1799
|
connector_type: import("zod").ZodString;
|
|
1784
1800
|
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1801
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1802
|
+
trigger_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1803
|
+
action_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1785
1804
|
capability: import("zod").ZodString;
|
|
1786
1805
|
role: import("zod").ZodEnum<{
|
|
1787
1806
|
trigger: "trigger";
|
|
@@ -1828,6 +1847,9 @@ export declare const sdk: {
|
|
|
1828
1847
|
kind: import("zod").ZodLiteral<"connector">;
|
|
1829
1848
|
connector_type: import("zod").ZodString;
|
|
1830
1849
|
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1850
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1851
|
+
trigger_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1852
|
+
action_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1831
1853
|
capability: import("zod").ZodString;
|
|
1832
1854
|
role: import("zod").ZodEnum<{
|
|
1833
1855
|
trigger: "trigger";
|
|
@@ -1863,12 +1885,16 @@ export declare const sdk: {
|
|
|
1863
1885
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1864
1886
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1865
1887
|
workspace_id: import("zod").ZodNumber;
|
|
1888
|
+
created_by_user_id: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1866
1889
|
name: import("zod").ZodString;
|
|
1867
1890
|
graph: import("zod").ZodObject<{
|
|
1868
1891
|
nodes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1869
1892
|
kind: import("zod").ZodLiteral<"connector">;
|
|
1870
1893
|
connector_type: import("zod").ZodString;
|
|
1871
1894
|
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1895
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1896
|
+
trigger_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1897
|
+
action_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1872
1898
|
capability: import("zod").ZodString;
|
|
1873
1899
|
role: import("zod").ZodEnum<{
|
|
1874
1900
|
trigger: "trigger";
|
|
@@ -1920,12 +1946,16 @@ export declare const sdk: {
|
|
|
1920
1946
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1921
1947
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
1922
1948
|
workspace_id: import("zod").ZodNumber;
|
|
1949
|
+
created_by_user_id: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1923
1950
|
name: import("zod").ZodString;
|
|
1924
1951
|
graph: import("zod").ZodObject<{
|
|
1925
1952
|
nodes: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1926
1953
|
kind: import("zod").ZodLiteral<"connector">;
|
|
1927
1954
|
connector_type: import("zod").ZodString;
|
|
1928
1955
|
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1956
|
+
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1957
|
+
trigger_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1958
|
+
action_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1929
1959
|
capability: import("zod").ZodString;
|
|
1930
1960
|
role: import("zod").ZodEnum<{
|
|
1931
1961
|
trigger: "trigger";
|
|
@@ -1973,7 +2003,7 @@ export declare const sdk: {
|
|
|
1973
2003
|
pending: "pending";
|
|
1974
2004
|
completed: "completed";
|
|
1975
2005
|
failed: "failed";
|
|
1976
|
-
|
|
2006
|
+
in_progress: "in_progress";
|
|
1977
2007
|
stopped: "stopped";
|
|
1978
2008
|
}>;
|
|
1979
2009
|
trigger_node_id: import("zod").ZodString;
|
|
@@ -1982,8 +2012,9 @@ export declare const sdk: {
|
|
|
1982
2012
|
status: import("zod").ZodEnum<{
|
|
1983
2013
|
completed: "completed";
|
|
1984
2014
|
failed: "failed";
|
|
1985
|
-
|
|
2015
|
+
in_progress: "in_progress";
|
|
1986
2016
|
stopped: "stopped";
|
|
2017
|
+
skipped: "skipped";
|
|
1987
2018
|
}>;
|
|
1988
2019
|
output: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
1989
2020
|
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -1998,7 +2029,7 @@ export declare const sdk: {
|
|
|
1998
2029
|
pending: "pending";
|
|
1999
2030
|
completed: "completed";
|
|
2000
2031
|
failed: "failed";
|
|
2001
|
-
|
|
2032
|
+
in_progress: "in_progress";
|
|
2002
2033
|
stopped: "stopped";
|
|
2003
2034
|
}>>;
|
|
2004
2035
|
limit: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
@@ -2011,7 +2042,7 @@ export declare const sdk: {
|
|
|
2011
2042
|
pending: "pending";
|
|
2012
2043
|
completed: "completed";
|
|
2013
2044
|
failed: "failed";
|
|
2014
|
-
|
|
2045
|
+
in_progress: "in_progress";
|
|
2015
2046
|
stopped: "stopped";
|
|
2016
2047
|
}>;
|
|
2017
2048
|
trigger_node_id: import("zod").ZodString;
|
|
@@ -2020,8 +2051,9 @@ export declare const sdk: {
|
|
|
2020
2051
|
status: import("zod").ZodEnum<{
|
|
2021
2052
|
completed: "completed";
|
|
2022
2053
|
failed: "failed";
|
|
2023
|
-
|
|
2054
|
+
in_progress: "in_progress";
|
|
2024
2055
|
stopped: "stopped";
|
|
2056
|
+
skipped: "skipped";
|
|
2025
2057
|
}>;
|
|
2026
2058
|
output: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
2027
2059
|
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2044,7 +2076,7 @@ export declare const sdk: {
|
|
|
2044
2076
|
pending: "pending";
|
|
2045
2077
|
completed: "completed";
|
|
2046
2078
|
failed: "failed";
|
|
2047
|
-
|
|
2079
|
+
in_progress: "in_progress";
|
|
2048
2080
|
stopped: "stopped";
|
|
2049
2081
|
}>;
|
|
2050
2082
|
trigger_node_id: import("zod").ZodString;
|
|
@@ -2053,8 +2085,9 @@ export declare const sdk: {
|
|
|
2053
2085
|
status: import("zod").ZodEnum<{
|
|
2054
2086
|
completed: "completed";
|
|
2055
2087
|
failed: "failed";
|
|
2056
|
-
|
|
2088
|
+
in_progress: "in_progress";
|
|
2057
2089
|
stopped: "stopped";
|
|
2090
|
+
skipped: "skipped";
|
|
2058
2091
|
}>;
|
|
2059
2092
|
output: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
2060
2093
|
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2773,17 +2806,17 @@ export declare const sdk: {
|
|
|
2773
2806
|
status: import("zod").ZodEnum<{
|
|
2774
2807
|
pending: "pending";
|
|
2775
2808
|
failed: "failed";
|
|
2776
|
-
|
|
2809
|
+
in_progress: "in_progress";
|
|
2810
|
+
stopped: "stopped";
|
|
2777
2811
|
passed: "passed";
|
|
2778
2812
|
skipped: "skipped";
|
|
2779
|
-
stopped: "stopped";
|
|
2780
2813
|
}>;
|
|
2781
2814
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2782
2815
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2783
2816
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2784
2817
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2785
2818
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2786
|
-
|
|
2819
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2787
2820
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2788
2821
|
task_id: import("zod").ZodString;
|
|
2789
2822
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -2796,6 +2829,10 @@ export declare const sdk: {
|
|
|
2796
2829
|
agent_name: import("zod").ZodString;
|
|
2797
2830
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2798
2831
|
}, import("zod/v4/core").$strip>>>;
|
|
2832
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2833
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2834
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2835
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2799
2836
|
}, import("zod/v4/core").$strip>>>>;
|
|
2800
2837
|
simulation_count: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
2801
2838
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -2939,17 +2976,17 @@ export declare const sdk: {
|
|
|
2939
2976
|
status: import("zod").ZodEnum<{
|
|
2940
2977
|
pending: "pending";
|
|
2941
2978
|
failed: "failed";
|
|
2942
|
-
|
|
2979
|
+
in_progress: "in_progress";
|
|
2980
|
+
stopped: "stopped";
|
|
2943
2981
|
passed: "passed";
|
|
2944
2982
|
skipped: "skipped";
|
|
2945
|
-
stopped: "stopped";
|
|
2946
2983
|
}>;
|
|
2947
2984
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2948
2985
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2949
2986
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2950
2987
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2951
2988
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2952
|
-
|
|
2989
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2953
2990
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2954
2991
|
task_id: import("zod").ZodString;
|
|
2955
2992
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -2962,6 +2999,10 @@ export declare const sdk: {
|
|
|
2962
2999
|
agent_name: import("zod").ZodString;
|
|
2963
3000
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2964
3001
|
}, import("zod/v4/core").$strip>>>;
|
|
3002
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3003
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3004
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3005
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2965
3006
|
}, import("zod/v4/core").$strip>>>;
|
|
2966
3007
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2967
3008
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -3101,17 +3142,17 @@ export declare const sdk: {
|
|
|
3101
3142
|
status: import("zod").ZodEnum<{
|
|
3102
3143
|
pending: "pending";
|
|
3103
3144
|
failed: "failed";
|
|
3104
|
-
|
|
3145
|
+
in_progress: "in_progress";
|
|
3146
|
+
stopped: "stopped";
|
|
3105
3147
|
passed: "passed";
|
|
3106
3148
|
skipped: "skipped";
|
|
3107
|
-
stopped: "stopped";
|
|
3108
3149
|
}>;
|
|
3109
3150
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3110
3151
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3111
3152
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3112
3153
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3113
3154
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3114
|
-
|
|
3155
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3115
3156
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3116
3157
|
task_id: import("zod").ZodString;
|
|
3117
3158
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3124,6 +3165,10 @@ export declare const sdk: {
|
|
|
3124
3165
|
agent_name: import("zod").ZodString;
|
|
3125
3166
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3126
3167
|
}, import("zod/v4/core").$strip>>>;
|
|
3168
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3169
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3170
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3171
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3127
3172
|
}, import("zod/v4/core").$strip>>>;
|
|
3128
3173
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3129
3174
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -3262,17 +3307,17 @@ export declare const sdk: {
|
|
|
3262
3307
|
status: import("zod").ZodEnum<{
|
|
3263
3308
|
pending: "pending";
|
|
3264
3309
|
failed: "failed";
|
|
3265
|
-
|
|
3310
|
+
in_progress: "in_progress";
|
|
3311
|
+
stopped: "stopped";
|
|
3266
3312
|
passed: "passed";
|
|
3267
3313
|
skipped: "skipped";
|
|
3268
|
-
stopped: "stopped";
|
|
3269
3314
|
}>;
|
|
3270
3315
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3271
3316
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3272
3317
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3273
3318
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3274
3319
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3275
|
-
|
|
3320
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3276
3321
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3277
3322
|
task_id: import("zod").ZodString;
|
|
3278
3323
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3285,6 +3330,10 @@ export declare const sdk: {
|
|
|
3285
3330
|
agent_name: import("zod").ZodString;
|
|
3286
3331
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3287
3332
|
}, import("zod/v4/core").$strip>>>;
|
|
3333
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3334
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3335
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3336
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3288
3337
|
}, import("zod/v4/core").$strip>>>;
|
|
3289
3338
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3290
3339
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -3294,11 +3343,21 @@ export declare const sdk: {
|
|
|
3294
3343
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3295
3344
|
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3296
3345
|
id: import("zod").ZodString;
|
|
3297
|
-
screenshots: import("zod").ZodArray<import("zod").ZodString>;
|
|
3298
3346
|
title: import("zod").ZodString;
|
|
3299
3347
|
url: import("zod").ZodString;
|
|
3300
|
-
|
|
3301
|
-
|
|
3348
|
+
summary: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3349
|
+
screenshot: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3350
|
+
sections: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3351
|
+
id: import("zod").ZodString;
|
|
3352
|
+
label: import("zod").ZodString;
|
|
3353
|
+
purpose: import("zod").ZodString;
|
|
3354
|
+
elements: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
3355
|
+
bbox: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
3356
|
+
screenshot: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3357
|
+
embedding: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber>>>;
|
|
3358
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3359
|
+
sequence_ids: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
3360
|
+
embedding: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber>>>;
|
|
3302
3361
|
}, import("zod/v4/core").$strip>>;
|
|
3303
3362
|
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3304
3363
|
start: import("zod").ZodString;
|
|
@@ -3430,17 +3489,17 @@ export declare const sdk: {
|
|
|
3430
3489
|
status: import("zod").ZodEnum<{
|
|
3431
3490
|
pending: "pending";
|
|
3432
3491
|
failed: "failed";
|
|
3433
|
-
|
|
3492
|
+
in_progress: "in_progress";
|
|
3493
|
+
stopped: "stopped";
|
|
3434
3494
|
passed: "passed";
|
|
3435
3495
|
skipped: "skipped";
|
|
3436
|
-
stopped: "stopped";
|
|
3437
3496
|
}>;
|
|
3438
3497
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3439
3498
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3440
3499
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3441
3500
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3442
3501
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3443
|
-
|
|
3502
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3444
3503
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3445
3504
|
task_id: import("zod").ZodString;
|
|
3446
3505
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3453,6 +3512,10 @@ export declare const sdk: {
|
|
|
3453
3512
|
agent_name: import("zod").ZodString;
|
|
3454
3513
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3455
3514
|
}, import("zod/v4/core").$strip>>>;
|
|
3515
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3516
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3517
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3518
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3456
3519
|
}, import("zod/v4/core").$strip>>>>;
|
|
3457
3520
|
simulation_count: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
3458
3521
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -3585,17 +3648,17 @@ export declare const sdk: {
|
|
|
3585
3648
|
status: import("zod").ZodEnum<{
|
|
3586
3649
|
pending: "pending";
|
|
3587
3650
|
failed: "failed";
|
|
3588
|
-
|
|
3651
|
+
in_progress: "in_progress";
|
|
3652
|
+
stopped: "stopped";
|
|
3589
3653
|
passed: "passed";
|
|
3590
3654
|
skipped: "skipped";
|
|
3591
|
-
stopped: "stopped";
|
|
3592
3655
|
}>;
|
|
3593
3656
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3594
3657
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3595
3658
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3596
3659
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3597
3660
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3598
|
-
|
|
3661
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3599
3662
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3600
3663
|
task_id: import("zod").ZodString;
|
|
3601
3664
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3608,6 +3671,10 @@ export declare const sdk: {
|
|
|
3608
3671
|
agent_name: import("zod").ZodString;
|
|
3609
3672
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3610
3673
|
}, import("zod/v4/core").$strip>>>;
|
|
3674
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3675
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3676
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3677
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3611
3678
|
}, import("zod/v4/core").$strip>>>;
|
|
3612
3679
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3613
3680
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -3745,17 +3812,17 @@ export declare const sdk: {
|
|
|
3745
3812
|
status: import("zod").ZodEnum<{
|
|
3746
3813
|
pending: "pending";
|
|
3747
3814
|
failed: "failed";
|
|
3748
|
-
|
|
3815
|
+
in_progress: "in_progress";
|
|
3816
|
+
stopped: "stopped";
|
|
3749
3817
|
passed: "passed";
|
|
3750
3818
|
skipped: "skipped";
|
|
3751
|
-
stopped: "stopped";
|
|
3752
3819
|
}>;
|
|
3753
3820
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3754
3821
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3755
3822
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3756
3823
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3757
3824
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3758
|
-
|
|
3825
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3759
3826
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3760
3827
|
task_id: import("zod").ZodString;
|
|
3761
3828
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3768,6 +3835,10 @@ export declare const sdk: {
|
|
|
3768
3835
|
agent_name: import("zod").ZodString;
|
|
3769
3836
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3770
3837
|
}, import("zod/v4/core").$strip>>>;
|
|
3838
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3839
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3840
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3841
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3771
3842
|
}, import("zod/v4/core").$strip>>>;
|
|
3772
3843
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3773
3844
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -3902,17 +3973,17 @@ export declare const sdk: {
|
|
|
3902
3973
|
status: import("zod").ZodEnum<{
|
|
3903
3974
|
pending: "pending";
|
|
3904
3975
|
failed: "failed";
|
|
3905
|
-
|
|
3976
|
+
in_progress: "in_progress";
|
|
3977
|
+
stopped: "stopped";
|
|
3906
3978
|
passed: "passed";
|
|
3907
3979
|
skipped: "skipped";
|
|
3908
|
-
stopped: "stopped";
|
|
3909
3980
|
}>;
|
|
3910
3981
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3911
3982
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3912
3983
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3913
3984
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3914
3985
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3915
|
-
|
|
3986
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3916
3987
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3917
3988
|
task_id: import("zod").ZodString;
|
|
3918
3989
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3925,6 +3996,10 @@ export declare const sdk: {
|
|
|
3925
3996
|
agent_name: import("zod").ZodString;
|
|
3926
3997
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3927
3998
|
}, import("zod/v4/core").$strip>>>;
|
|
3999
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4000
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4001
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4002
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3928
4003
|
}, import("zod/v4/core").$strip>>>;
|
|
3929
4004
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3930
4005
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4246,17 +4321,17 @@ export declare const sdk: {
|
|
|
4246
4321
|
status: import("zod").ZodEnum<{
|
|
4247
4322
|
pending: "pending";
|
|
4248
4323
|
failed: "failed";
|
|
4249
|
-
|
|
4324
|
+
in_progress: "in_progress";
|
|
4325
|
+
stopped: "stopped";
|
|
4250
4326
|
passed: "passed";
|
|
4251
4327
|
skipped: "skipped";
|
|
4252
|
-
stopped: "stopped";
|
|
4253
4328
|
}>;
|
|
4254
4329
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4255
4330
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4256
4331
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4257
4332
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4258
4333
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4259
|
-
|
|
4334
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4260
4335
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4261
4336
|
task_id: import("zod").ZodString;
|
|
4262
4337
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4269,6 +4344,10 @@ export declare const sdk: {
|
|
|
4269
4344
|
agent_name: import("zod").ZodString;
|
|
4270
4345
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4271
4346
|
}, import("zod/v4/core").$strip>>>;
|
|
4347
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4348
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4349
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4350
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4272
4351
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4273
4352
|
simulationSearch: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4274
4353
|
workspace_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
@@ -4313,17 +4392,17 @@ export declare const sdk: {
|
|
|
4313
4392
|
status: import("zod").ZodEnum<{
|
|
4314
4393
|
pending: "pending";
|
|
4315
4394
|
failed: "failed";
|
|
4316
|
-
|
|
4395
|
+
in_progress: "in_progress";
|
|
4396
|
+
stopped: "stopped";
|
|
4317
4397
|
passed: "passed";
|
|
4318
4398
|
skipped: "skipped";
|
|
4319
|
-
stopped: "stopped";
|
|
4320
4399
|
}>;
|
|
4321
4400
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4322
4401
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4323
4402
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4324
4403
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4325
4404
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4326
|
-
|
|
4405
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4327
4406
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4328
4407
|
task_id: import("zod").ZodString;
|
|
4329
4408
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4336,6 +4415,10 @@ export declare const sdk: {
|
|
|
4336
4415
|
agent_name: import("zod").ZodString;
|
|
4337
4416
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4338
4417
|
}, import("zod/v4/core").$strip>>>;
|
|
4418
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4419
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4420
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4421
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4339
4422
|
}, import("zod/v4/core").$strip>>;
|
|
4340
4423
|
total: import("zod").ZodNumber;
|
|
4341
4424
|
limit: import("zod").ZodNumber;
|
|
@@ -4365,17 +4448,17 @@ export declare const sdk: {
|
|
|
4365
4448
|
status: import("zod").ZodEnum<{
|
|
4366
4449
|
pending: "pending";
|
|
4367
4450
|
failed: "failed";
|
|
4368
|
-
|
|
4451
|
+
in_progress: "in_progress";
|
|
4452
|
+
stopped: "stopped";
|
|
4369
4453
|
passed: "passed";
|
|
4370
4454
|
skipped: "skipped";
|
|
4371
|
-
stopped: "stopped";
|
|
4372
4455
|
}>;
|
|
4373
4456
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4374
4457
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4375
4458
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4376
4459
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4377
4460
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4378
|
-
|
|
4461
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4379
4462
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4380
4463
|
task_id: import("zod").ZodString;
|
|
4381
4464
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4388,6 +4471,10 @@ export declare const sdk: {
|
|
|
4388
4471
|
agent_name: import("zod").ZodString;
|
|
4389
4472
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4390
4473
|
}, import("zod/v4/core").$strip>>>>;
|
|
4474
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
4475
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4476
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4477
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4391
4478
|
application_id: import("zod").ZodNumber;
|
|
4392
4479
|
agent_id: import("zod").ZodNumber;
|
|
4393
4480
|
instructions: import("zod").ZodString;
|
|
@@ -4420,17 +4507,17 @@ export declare const sdk: {
|
|
|
4420
4507
|
status: import("zod").ZodEnum<{
|
|
4421
4508
|
pending: "pending";
|
|
4422
4509
|
failed: "failed";
|
|
4423
|
-
|
|
4510
|
+
in_progress: "in_progress";
|
|
4511
|
+
stopped: "stopped";
|
|
4424
4512
|
passed: "passed";
|
|
4425
4513
|
skipped: "skipped";
|
|
4426
|
-
stopped: "stopped";
|
|
4427
4514
|
}>;
|
|
4428
4515
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4429
4516
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4430
4517
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4431
4518
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4432
4519
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4433
|
-
|
|
4520
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4434
4521
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4435
4522
|
task_id: import("zod").ZodString;
|
|
4436
4523
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4443,6 +4530,10 @@ export declare const sdk: {
|
|
|
4443
4530
|
agent_name: import("zod").ZodString;
|
|
4444
4531
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4445
4532
|
}, import("zod/v4/core").$strip>>>;
|
|
4533
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4534
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4535
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4536
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4446
4537
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4447
4538
|
simulationUpdate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4448
4539
|
job_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4478,17 +4569,17 @@ export declare const sdk: {
|
|
|
4478
4569
|
status: import("zod").ZodEnum<{
|
|
4479
4570
|
pending: "pending";
|
|
4480
4571
|
failed: "failed";
|
|
4481
|
-
|
|
4572
|
+
in_progress: "in_progress";
|
|
4573
|
+
stopped: "stopped";
|
|
4482
4574
|
passed: "passed";
|
|
4483
4575
|
skipped: "skipped";
|
|
4484
|
-
stopped: "stopped";
|
|
4485
4576
|
}>;
|
|
4486
4577
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4487
4578
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4488
4579
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4489
4580
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4490
4581
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4491
|
-
|
|
4582
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4492
4583
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4493
4584
|
task_id: import("zod").ZodString;
|
|
4494
4585
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4501,6 +4592,10 @@ export declare const sdk: {
|
|
|
4501
4592
|
agent_name: import("zod").ZodString;
|
|
4502
4593
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4503
4594
|
}, import("zod/v4/core").$strip>>>;
|
|
4595
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4596
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4597
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4598
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4504
4599
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4505
4600
|
simulationAssignAgents: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4506
4601
|
simulation_id: import("zod").ZodCoercedNumber<unknown>;
|
|
@@ -4532,17 +4627,17 @@ export declare const sdk: {
|
|
|
4532
4627
|
status: import("zod").ZodEnum<{
|
|
4533
4628
|
pending: "pending";
|
|
4534
4629
|
failed: "failed";
|
|
4535
|
-
|
|
4630
|
+
in_progress: "in_progress";
|
|
4631
|
+
stopped: "stopped";
|
|
4536
4632
|
passed: "passed";
|
|
4537
4633
|
skipped: "skipped";
|
|
4538
|
-
stopped: "stopped";
|
|
4539
4634
|
}>;
|
|
4540
4635
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4541
4636
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4542
4637
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4543
4638
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4544
4639
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4545
|
-
|
|
4640
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4546
4641
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4547
4642
|
task_id: import("zod").ZodString;
|
|
4548
4643
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4555,6 +4650,10 @@ export declare const sdk: {
|
|
|
4555
4650
|
agent_name: import("zod").ZodString;
|
|
4556
4651
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4557
4652
|
}, import("zod/v4/core").$strip>>>;
|
|
4653
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4654
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4655
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4656
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4558
4657
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4559
4658
|
simulationProgress: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4560
4659
|
simulation_id: import("zod").ZodCoercedNumber<unknown>;
|
|
@@ -4668,11 +4767,21 @@ export declare const sdk: {
|
|
|
4668
4767
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4669
4768
|
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4670
4769
|
id: import("zod").ZodString;
|
|
4671
|
-
screenshots: import("zod").ZodArray<import("zod").ZodString>;
|
|
4672
4770
|
title: import("zod").ZodString;
|
|
4673
4771
|
url: import("zod").ZodString;
|
|
4674
|
-
|
|
4675
|
-
|
|
4772
|
+
summary: import("zod").ZodDefault<import("zod").ZodString>;
|
|
4773
|
+
screenshot: import("zod").ZodDefault<import("zod").ZodString>;
|
|
4774
|
+
sections: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4775
|
+
id: import("zod").ZodString;
|
|
4776
|
+
label: import("zod").ZodString;
|
|
4777
|
+
purpose: import("zod").ZodString;
|
|
4778
|
+
elements: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
4779
|
+
bbox: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
4780
|
+
screenshot: import("zod").ZodDefault<import("zod").ZodString>;
|
|
4781
|
+
embedding: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber>>>;
|
|
4782
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4783
|
+
sequence_ids: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
4784
|
+
embedding: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber>>>;
|
|
4676
4785
|
}, import("zod/v4/core").$strip>>;
|
|
4677
4786
|
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4678
4787
|
start: import("zod").ZodString;
|
|
@@ -5419,7 +5528,7 @@ export declare const sdk: {
|
|
|
5419
5528
|
pending: "pending";
|
|
5420
5529
|
completed: "completed";
|
|
5421
5530
|
failed: "failed";
|
|
5422
|
-
|
|
5531
|
+
in_progress: "in_progress";
|
|
5423
5532
|
passed: "passed";
|
|
5424
5533
|
skipped: "skipped";
|
|
5425
5534
|
}>;
|
|
@@ -5545,17 +5654,17 @@ export declare const sdk: {
|
|
|
5545
5654
|
status: import("zod").ZodEnum<{
|
|
5546
5655
|
pending: "pending";
|
|
5547
5656
|
failed: "failed";
|
|
5548
|
-
|
|
5657
|
+
in_progress: "in_progress";
|
|
5658
|
+
stopped: "stopped";
|
|
5549
5659
|
passed: "passed";
|
|
5550
5660
|
skipped: "skipped";
|
|
5551
|
-
stopped: "stopped";
|
|
5552
5661
|
}>;
|
|
5553
5662
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5554
5663
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5555
5664
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5556
5665
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5557
5666
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5558
|
-
|
|
5667
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5559
5668
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5560
5669
|
task_id: import("zod").ZodString;
|
|
5561
5670
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5568,6 +5677,10 @@ export declare const sdk: {
|
|
|
5568
5677
|
agent_name: import("zod").ZodString;
|
|
5569
5678
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5570
5679
|
}, import("zod/v4/core").$strip>>>;
|
|
5680
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5681
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5682
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5683
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5571
5684
|
}, import("zod/v4/core").$strip>>;
|
|
5572
5685
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
5573
5686
|
qaTestCaseList: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -5621,7 +5734,7 @@ export declare const sdk: {
|
|
|
5621
5734
|
pending: "pending";
|
|
5622
5735
|
completed: "completed";
|
|
5623
5736
|
failed: "failed";
|
|
5624
|
-
|
|
5737
|
+
in_progress: "in_progress";
|
|
5625
5738
|
passed: "passed";
|
|
5626
5739
|
skipped: "skipped";
|
|
5627
5740
|
}>;
|
|
@@ -5741,7 +5854,7 @@ export declare const sdk: {
|
|
|
5741
5854
|
pending: "pending";
|
|
5742
5855
|
completed: "completed";
|
|
5743
5856
|
failed: "failed";
|
|
5744
|
-
|
|
5857
|
+
in_progress: "in_progress";
|
|
5745
5858
|
passed: "passed";
|
|
5746
5859
|
skipped: "skipped";
|
|
5747
5860
|
}>;
|
|
@@ -5861,17 +5974,17 @@ export declare const sdk: {
|
|
|
5861
5974
|
status: import("zod").ZodEnum<{
|
|
5862
5975
|
pending: "pending";
|
|
5863
5976
|
failed: "failed";
|
|
5864
|
-
|
|
5977
|
+
in_progress: "in_progress";
|
|
5978
|
+
stopped: "stopped";
|
|
5865
5979
|
passed: "passed";
|
|
5866
5980
|
skipped: "skipped";
|
|
5867
|
-
stopped: "stopped";
|
|
5868
5981
|
}>;
|
|
5869
5982
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5870
5983
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5871
5984
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5872
5985
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5873
5986
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5874
|
-
|
|
5987
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5875
5988
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5876
5989
|
task_id: import("zod").ZodString;
|
|
5877
5990
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5884,6 +5997,10 @@ export declare const sdk: {
|
|
|
5884
5997
|
agent_name: import("zod").ZodString;
|
|
5885
5998
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5886
5999
|
}, import("zod/v4/core").$strip>>>;
|
|
6000
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6001
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6002
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6003
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5887
6004
|
}, import("zod/v4/core").$strip>>;
|
|
5888
6005
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
5889
6006
|
qaTestCaseExecute: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -5916,17 +6033,17 @@ export declare const sdk: {
|
|
|
5916
6033
|
status: import("zod").ZodEnum<{
|
|
5917
6034
|
pending: "pending";
|
|
5918
6035
|
failed: "failed";
|
|
5919
|
-
|
|
6036
|
+
in_progress: "in_progress";
|
|
6037
|
+
stopped: "stopped";
|
|
5920
6038
|
passed: "passed";
|
|
5921
6039
|
skipped: "skipped";
|
|
5922
|
-
stopped: "stopped";
|
|
5923
6040
|
}>;
|
|
5924
6041
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5925
6042
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5926
6043
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5927
6044
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5928
6045
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5929
|
-
|
|
6046
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5930
6047
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5931
6048
|
task_id: import("zod").ZodString;
|
|
5932
6049
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5939,6 +6056,10 @@ export declare const sdk: {
|
|
|
5939
6056
|
agent_name: import("zod").ZodString;
|
|
5940
6057
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5941
6058
|
}, import("zod/v4/core").$strip>>>;
|
|
6059
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6060
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6061
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6062
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5942
6063
|
}, import("zod/v4/core").$strip>;
|
|
5943
6064
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
5944
6065
|
qaTestCaseSimulation: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -5972,17 +6093,17 @@ export declare const sdk: {
|
|
|
5972
6093
|
status: import("zod").ZodEnum<{
|
|
5973
6094
|
pending: "pending";
|
|
5974
6095
|
failed: "failed";
|
|
5975
|
-
|
|
6096
|
+
in_progress: "in_progress";
|
|
6097
|
+
stopped: "stopped";
|
|
5976
6098
|
passed: "passed";
|
|
5977
6099
|
skipped: "skipped";
|
|
5978
|
-
stopped: "stopped";
|
|
5979
6100
|
}>;
|
|
5980
6101
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5981
6102
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5982
6103
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5983
6104
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5984
6105
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5985
|
-
|
|
6106
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5986
6107
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5987
6108
|
task_id: import("zod").ZodString;
|
|
5988
6109
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5995,6 +6116,10 @@ export declare const sdk: {
|
|
|
5995
6116
|
agent_name: import("zod").ZodString;
|
|
5996
6117
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5997
6118
|
}, import("zod/v4/core").$strip>>>;
|
|
6119
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6120
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6121
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6122
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5998
6123
|
}, import("zod/v4/core").$strip>>;
|
|
5999
6124
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
6000
6125
|
qaTestCaseVersionList: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -6492,7 +6617,7 @@ export declare const sdk: {
|
|
|
6492
6617
|
error: string;
|
|
6493
6618
|
} | {
|
|
6494
6619
|
type: "task/status";
|
|
6495
|
-
status: "completed" | "failed" | "
|
|
6620
|
+
status: "completed" | "failed" | "in_progress" | "stopped" | "has_question" | "started";
|
|
6496
6621
|
message?: string | undefined;
|
|
6497
6622
|
task_id?: string | undefined;
|
|
6498
6623
|
timestamp?: number | undefined;
|
|
@@ -6523,7 +6648,7 @@ export declare const sdk: {
|
|
|
6523
6648
|
error: string;
|
|
6524
6649
|
} | {
|
|
6525
6650
|
type: "task/status";
|
|
6526
|
-
status: "completed" | "failed" | "
|
|
6651
|
+
status: "completed" | "failed" | "in_progress" | "stopped" | "has_question" | "started";
|
|
6527
6652
|
message?: string | undefined;
|
|
6528
6653
|
task_id?: string | undefined;
|
|
6529
6654
|
timestamp?: number | undefined;
|
|
@@ -6586,6 +6711,7 @@ export declare const sdk: {
|
|
|
6586
6711
|
simulations: "simulations";
|
|
6587
6712
|
jobs: "jobs";
|
|
6588
6713
|
triggers: "triggers";
|
|
6714
|
+
automations: "automations";
|
|
6589
6715
|
}>>;
|
|
6590
6716
|
application_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
6591
6717
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
@@ -6637,6 +6763,13 @@ export declare const sdk: {
|
|
|
6637
6763
|
type: "simulation/stopped";
|
|
6638
6764
|
simulation_id: number;
|
|
6639
6765
|
job_id: string;
|
|
6766
|
+
} | {
|
|
6767
|
+
type: "simulation/mindmap-updated";
|
|
6768
|
+
simulation_id: number;
|
|
6769
|
+
application_id: number;
|
|
6770
|
+
mindmap_status: string;
|
|
6771
|
+
steps_processed: number;
|
|
6772
|
+
steps_total: number;
|
|
6640
6773
|
} | {
|
|
6641
6774
|
type: "qa-run/completed";
|
|
6642
6775
|
run_id: number;
|
|
@@ -6705,6 +6838,17 @@ export declare const sdk: {
|
|
|
6705
6838
|
name: string;
|
|
6706
6839
|
timestamp: string;
|
|
6707
6840
|
payload?: unknown;
|
|
6841
|
+
} | {
|
|
6842
|
+
type: "automation-run/completed";
|
|
6843
|
+
automation_id: number;
|
|
6844
|
+
run_id: number;
|
|
6845
|
+
status: "completed";
|
|
6846
|
+
} | {
|
|
6847
|
+
type: "automation-run/failed";
|
|
6848
|
+
automation_id: number;
|
|
6849
|
+
run_id: number;
|
|
6850
|
+
status: "failed";
|
|
6851
|
+
error?: string | undefined;
|
|
6708
6852
|
}, unknown, void>, import("@orpc/shared").AsyncIteratorClass<{
|
|
6709
6853
|
type: "simulation/updated";
|
|
6710
6854
|
simulation_id: number;
|
|
@@ -6754,6 +6898,13 @@ export declare const sdk: {
|
|
|
6754
6898
|
type: "simulation/stopped";
|
|
6755
6899
|
simulation_id: number;
|
|
6756
6900
|
job_id: string;
|
|
6901
|
+
} | {
|
|
6902
|
+
type: "simulation/mindmap-updated";
|
|
6903
|
+
simulation_id: number;
|
|
6904
|
+
application_id: number;
|
|
6905
|
+
mindmap_status: string;
|
|
6906
|
+
steps_processed: number;
|
|
6907
|
+
steps_total: number;
|
|
6757
6908
|
} | {
|
|
6758
6909
|
type: "qa-run/completed";
|
|
6759
6910
|
run_id: number;
|
|
@@ -6822,6 +6973,17 @@ export declare const sdk: {
|
|
|
6822
6973
|
name: string;
|
|
6823
6974
|
timestamp: string;
|
|
6824
6975
|
payload?: unknown;
|
|
6976
|
+
} | {
|
|
6977
|
+
type: "automation-run/completed";
|
|
6978
|
+
automation_id: number;
|
|
6979
|
+
run_id: number;
|
|
6980
|
+
status: "completed";
|
|
6981
|
+
} | {
|
|
6982
|
+
type: "automation-run/failed";
|
|
6983
|
+
automation_id: number;
|
|
6984
|
+
run_id: number;
|
|
6985
|
+
status: "failed";
|
|
6986
|
+
error?: string | undefined;
|
|
6825
6987
|
}, unknown, void>>, Record<never, never>>;
|
|
6826
6988
|
workosWebhook: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
6827
6989
|
event: import("zod").ZodString;
|