@marketrix.ai/widget 3.3.4 → 3.3.37
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 +211 -69
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/routes.d.ts +211 -69
- package/dist/src/sdk/routes.d.ts.map +1 -1
- package/dist/src/sdk/schema.d.ts +125 -45
- 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 +4 -4
- 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>;
|
|
@@ -3430,17 +3479,17 @@ export declare const sdk: {
|
|
|
3430
3479
|
status: import("zod").ZodEnum<{
|
|
3431
3480
|
pending: "pending";
|
|
3432
3481
|
failed: "failed";
|
|
3433
|
-
|
|
3482
|
+
in_progress: "in_progress";
|
|
3483
|
+
stopped: "stopped";
|
|
3434
3484
|
passed: "passed";
|
|
3435
3485
|
skipped: "skipped";
|
|
3436
|
-
stopped: "stopped";
|
|
3437
3486
|
}>;
|
|
3438
3487
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3439
3488
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3440
3489
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3441
3490
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3442
3491
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3443
|
-
|
|
3492
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3444
3493
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3445
3494
|
task_id: import("zod").ZodString;
|
|
3446
3495
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3453,6 +3502,10 @@ export declare const sdk: {
|
|
|
3453
3502
|
agent_name: import("zod").ZodString;
|
|
3454
3503
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3455
3504
|
}, import("zod/v4/core").$strip>>>;
|
|
3505
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3506
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3507
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3508
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3456
3509
|
}, import("zod/v4/core").$strip>>>>;
|
|
3457
3510
|
simulation_count: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
3458
3511
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -3585,17 +3638,17 @@ export declare const sdk: {
|
|
|
3585
3638
|
status: import("zod").ZodEnum<{
|
|
3586
3639
|
pending: "pending";
|
|
3587
3640
|
failed: "failed";
|
|
3588
|
-
|
|
3641
|
+
in_progress: "in_progress";
|
|
3642
|
+
stopped: "stopped";
|
|
3589
3643
|
passed: "passed";
|
|
3590
3644
|
skipped: "skipped";
|
|
3591
|
-
stopped: "stopped";
|
|
3592
3645
|
}>;
|
|
3593
3646
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3594
3647
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3595
3648
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3596
3649
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3597
3650
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3598
|
-
|
|
3651
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3599
3652
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3600
3653
|
task_id: import("zod").ZodString;
|
|
3601
3654
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3608,6 +3661,10 @@ export declare const sdk: {
|
|
|
3608
3661
|
agent_name: import("zod").ZodString;
|
|
3609
3662
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3610
3663
|
}, import("zod/v4/core").$strip>>>;
|
|
3664
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3665
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3666
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3667
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3611
3668
|
}, import("zod/v4/core").$strip>>>;
|
|
3612
3669
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3613
3670
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -3745,17 +3802,17 @@ export declare const sdk: {
|
|
|
3745
3802
|
status: import("zod").ZodEnum<{
|
|
3746
3803
|
pending: "pending";
|
|
3747
3804
|
failed: "failed";
|
|
3748
|
-
|
|
3805
|
+
in_progress: "in_progress";
|
|
3806
|
+
stopped: "stopped";
|
|
3749
3807
|
passed: "passed";
|
|
3750
3808
|
skipped: "skipped";
|
|
3751
|
-
stopped: "stopped";
|
|
3752
3809
|
}>;
|
|
3753
3810
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3754
3811
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3755
3812
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3756
3813
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3757
3814
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3758
|
-
|
|
3815
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3759
3816
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3760
3817
|
task_id: import("zod").ZodString;
|
|
3761
3818
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3768,6 +3825,10 @@ export declare const sdk: {
|
|
|
3768
3825
|
agent_name: import("zod").ZodString;
|
|
3769
3826
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3770
3827
|
}, import("zod/v4/core").$strip>>>;
|
|
3828
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3829
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3830
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3831
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3771
3832
|
}, import("zod/v4/core").$strip>>>;
|
|
3772
3833
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3773
3834
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -3902,17 +3963,17 @@ export declare const sdk: {
|
|
|
3902
3963
|
status: import("zod").ZodEnum<{
|
|
3903
3964
|
pending: "pending";
|
|
3904
3965
|
failed: "failed";
|
|
3905
|
-
|
|
3966
|
+
in_progress: "in_progress";
|
|
3967
|
+
stopped: "stopped";
|
|
3906
3968
|
passed: "passed";
|
|
3907
3969
|
skipped: "skipped";
|
|
3908
|
-
stopped: "stopped";
|
|
3909
3970
|
}>;
|
|
3910
3971
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3911
3972
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3912
3973
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3913
3974
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3914
3975
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3915
|
-
|
|
3976
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3916
3977
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3917
3978
|
task_id: import("zod").ZodString;
|
|
3918
3979
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -3925,6 +3986,10 @@ export declare const sdk: {
|
|
|
3925
3986
|
agent_name: import("zod").ZodString;
|
|
3926
3987
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3927
3988
|
}, import("zod/v4/core").$strip>>>;
|
|
3989
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3990
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3991
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3992
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3928
3993
|
}, import("zod/v4/core").$strip>>>;
|
|
3929
3994
|
simulation_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3930
3995
|
knowledge_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4246,17 +4311,17 @@ export declare const sdk: {
|
|
|
4246
4311
|
status: import("zod").ZodEnum<{
|
|
4247
4312
|
pending: "pending";
|
|
4248
4313
|
failed: "failed";
|
|
4249
|
-
|
|
4314
|
+
in_progress: "in_progress";
|
|
4315
|
+
stopped: "stopped";
|
|
4250
4316
|
passed: "passed";
|
|
4251
4317
|
skipped: "skipped";
|
|
4252
|
-
stopped: "stopped";
|
|
4253
4318
|
}>;
|
|
4254
4319
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4255
4320
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4256
4321
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4257
4322
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4258
4323
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4259
|
-
|
|
4324
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4260
4325
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4261
4326
|
task_id: import("zod").ZodString;
|
|
4262
4327
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4269,6 +4334,10 @@ export declare const sdk: {
|
|
|
4269
4334
|
agent_name: import("zod").ZodString;
|
|
4270
4335
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4271
4336
|
}, import("zod/v4/core").$strip>>>;
|
|
4337
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4338
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4339
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4340
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4272
4341
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4273
4342
|
simulationSearch: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4274
4343
|
workspace_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
@@ -4313,17 +4382,17 @@ export declare const sdk: {
|
|
|
4313
4382
|
status: import("zod").ZodEnum<{
|
|
4314
4383
|
pending: "pending";
|
|
4315
4384
|
failed: "failed";
|
|
4316
|
-
|
|
4385
|
+
in_progress: "in_progress";
|
|
4386
|
+
stopped: "stopped";
|
|
4317
4387
|
passed: "passed";
|
|
4318
4388
|
skipped: "skipped";
|
|
4319
|
-
stopped: "stopped";
|
|
4320
4389
|
}>;
|
|
4321
4390
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4322
4391
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4323
4392
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4324
4393
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4325
4394
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4326
|
-
|
|
4395
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4327
4396
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4328
4397
|
task_id: import("zod").ZodString;
|
|
4329
4398
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4336,6 +4405,10 @@ export declare const sdk: {
|
|
|
4336
4405
|
agent_name: import("zod").ZodString;
|
|
4337
4406
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4338
4407
|
}, import("zod/v4/core").$strip>>>;
|
|
4408
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4409
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4410
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4411
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4339
4412
|
}, import("zod/v4/core").$strip>>;
|
|
4340
4413
|
total: import("zod").ZodNumber;
|
|
4341
4414
|
limit: import("zod").ZodNumber;
|
|
@@ -4365,17 +4438,17 @@ export declare const sdk: {
|
|
|
4365
4438
|
status: import("zod").ZodEnum<{
|
|
4366
4439
|
pending: "pending";
|
|
4367
4440
|
failed: "failed";
|
|
4368
|
-
|
|
4441
|
+
in_progress: "in_progress";
|
|
4442
|
+
stopped: "stopped";
|
|
4369
4443
|
passed: "passed";
|
|
4370
4444
|
skipped: "skipped";
|
|
4371
|
-
stopped: "stopped";
|
|
4372
4445
|
}>;
|
|
4373
4446
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4374
4447
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4375
4448
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4376
4449
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4377
4450
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4378
|
-
|
|
4451
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4379
4452
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4380
4453
|
task_id: import("zod").ZodString;
|
|
4381
4454
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4388,6 +4461,10 @@ export declare const sdk: {
|
|
|
4388
4461
|
agent_name: import("zod").ZodString;
|
|
4389
4462
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4390
4463
|
}, import("zod/v4/core").$strip>>>>;
|
|
4464
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
4465
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4466
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4467
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4391
4468
|
application_id: import("zod").ZodNumber;
|
|
4392
4469
|
agent_id: import("zod").ZodNumber;
|
|
4393
4470
|
instructions: import("zod").ZodString;
|
|
@@ -4420,17 +4497,17 @@ export declare const sdk: {
|
|
|
4420
4497
|
status: import("zod").ZodEnum<{
|
|
4421
4498
|
pending: "pending";
|
|
4422
4499
|
failed: "failed";
|
|
4423
|
-
|
|
4500
|
+
in_progress: "in_progress";
|
|
4501
|
+
stopped: "stopped";
|
|
4424
4502
|
passed: "passed";
|
|
4425
4503
|
skipped: "skipped";
|
|
4426
|
-
stopped: "stopped";
|
|
4427
4504
|
}>;
|
|
4428
4505
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4429
4506
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4430
4507
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4431
4508
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4432
4509
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4433
|
-
|
|
4510
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4434
4511
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4435
4512
|
task_id: import("zod").ZodString;
|
|
4436
4513
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4443,6 +4520,10 @@ export declare const sdk: {
|
|
|
4443
4520
|
agent_name: import("zod").ZodString;
|
|
4444
4521
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4445
4522
|
}, import("zod/v4/core").$strip>>>;
|
|
4523
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4524
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4525
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4526
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4446
4527
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4447
4528
|
simulationUpdate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4448
4529
|
job_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4478,17 +4559,17 @@ export declare const sdk: {
|
|
|
4478
4559
|
status: import("zod").ZodEnum<{
|
|
4479
4560
|
pending: "pending";
|
|
4480
4561
|
failed: "failed";
|
|
4481
|
-
|
|
4562
|
+
in_progress: "in_progress";
|
|
4563
|
+
stopped: "stopped";
|
|
4482
4564
|
passed: "passed";
|
|
4483
4565
|
skipped: "skipped";
|
|
4484
|
-
stopped: "stopped";
|
|
4485
4566
|
}>;
|
|
4486
4567
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4487
4568
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4488
4569
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4489
4570
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4490
4571
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4491
|
-
|
|
4572
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4492
4573
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4493
4574
|
task_id: import("zod").ZodString;
|
|
4494
4575
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4501,6 +4582,10 @@ export declare const sdk: {
|
|
|
4501
4582
|
agent_name: import("zod").ZodString;
|
|
4502
4583
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4503
4584
|
}, import("zod/v4/core").$strip>>>;
|
|
4585
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4586
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4587
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4588
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4504
4589
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4505
4590
|
simulationAssignAgents: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4506
4591
|
simulation_id: import("zod").ZodCoercedNumber<unknown>;
|
|
@@ -4532,17 +4617,17 @@ export declare const sdk: {
|
|
|
4532
4617
|
status: import("zod").ZodEnum<{
|
|
4533
4618
|
pending: "pending";
|
|
4534
4619
|
failed: "failed";
|
|
4535
|
-
|
|
4620
|
+
in_progress: "in_progress";
|
|
4621
|
+
stopped: "stopped";
|
|
4536
4622
|
passed: "passed";
|
|
4537
4623
|
skipped: "skipped";
|
|
4538
|
-
stopped: "stopped";
|
|
4539
4624
|
}>;
|
|
4540
4625
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4541
4626
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4542
4627
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4543
4628
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4544
4629
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4545
|
-
|
|
4630
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4546
4631
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4547
4632
|
task_id: import("zod").ZodString;
|
|
4548
4633
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4555,6 +4640,10 @@ export declare const sdk: {
|
|
|
4555
4640
|
agent_name: import("zod").ZodString;
|
|
4556
4641
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4557
4642
|
}, import("zod/v4/core").$strip>>>;
|
|
4643
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4644
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4645
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4646
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4558
4647
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4559
4648
|
simulationProgress: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4560
4649
|
simulation_id: import("zod").ZodCoercedNumber<unknown>;
|
|
@@ -5419,7 +5508,7 @@ export declare const sdk: {
|
|
|
5419
5508
|
pending: "pending";
|
|
5420
5509
|
completed: "completed";
|
|
5421
5510
|
failed: "failed";
|
|
5422
|
-
|
|
5511
|
+
in_progress: "in_progress";
|
|
5423
5512
|
passed: "passed";
|
|
5424
5513
|
skipped: "skipped";
|
|
5425
5514
|
}>;
|
|
@@ -5545,17 +5634,17 @@ export declare const sdk: {
|
|
|
5545
5634
|
status: import("zod").ZodEnum<{
|
|
5546
5635
|
pending: "pending";
|
|
5547
5636
|
failed: "failed";
|
|
5548
|
-
|
|
5637
|
+
in_progress: "in_progress";
|
|
5638
|
+
stopped: "stopped";
|
|
5549
5639
|
passed: "passed";
|
|
5550
5640
|
skipped: "skipped";
|
|
5551
|
-
stopped: "stopped";
|
|
5552
5641
|
}>;
|
|
5553
5642
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5554
5643
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5555
5644
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5556
5645
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5557
5646
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5558
|
-
|
|
5647
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5559
5648
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5560
5649
|
task_id: import("zod").ZodString;
|
|
5561
5650
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5568,6 +5657,10 @@ export declare const sdk: {
|
|
|
5568
5657
|
agent_name: import("zod").ZodString;
|
|
5569
5658
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5570
5659
|
}, import("zod/v4/core").$strip>>>;
|
|
5660
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5661
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5662
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5663
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5571
5664
|
}, import("zod/v4/core").$strip>>;
|
|
5572
5665
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
5573
5666
|
qaTestCaseList: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -5621,7 +5714,7 @@ export declare const sdk: {
|
|
|
5621
5714
|
pending: "pending";
|
|
5622
5715
|
completed: "completed";
|
|
5623
5716
|
failed: "failed";
|
|
5624
|
-
|
|
5717
|
+
in_progress: "in_progress";
|
|
5625
5718
|
passed: "passed";
|
|
5626
5719
|
skipped: "skipped";
|
|
5627
5720
|
}>;
|
|
@@ -5741,7 +5834,7 @@ export declare const sdk: {
|
|
|
5741
5834
|
pending: "pending";
|
|
5742
5835
|
completed: "completed";
|
|
5743
5836
|
failed: "failed";
|
|
5744
|
-
|
|
5837
|
+
in_progress: "in_progress";
|
|
5745
5838
|
passed: "passed";
|
|
5746
5839
|
skipped: "skipped";
|
|
5747
5840
|
}>;
|
|
@@ -5861,17 +5954,17 @@ export declare const sdk: {
|
|
|
5861
5954
|
status: import("zod").ZodEnum<{
|
|
5862
5955
|
pending: "pending";
|
|
5863
5956
|
failed: "failed";
|
|
5864
|
-
|
|
5957
|
+
in_progress: "in_progress";
|
|
5958
|
+
stopped: "stopped";
|
|
5865
5959
|
passed: "passed";
|
|
5866
5960
|
skipped: "skipped";
|
|
5867
|
-
stopped: "stopped";
|
|
5868
5961
|
}>;
|
|
5869
5962
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5870
5963
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5871
5964
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5872
5965
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5873
5966
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5874
|
-
|
|
5967
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5875
5968
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5876
5969
|
task_id: import("zod").ZodString;
|
|
5877
5970
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5884,6 +5977,10 @@ export declare const sdk: {
|
|
|
5884
5977
|
agent_name: import("zod").ZodString;
|
|
5885
5978
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5886
5979
|
}, import("zod/v4/core").$strip>>>;
|
|
5980
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5981
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5982
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5983
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5887
5984
|
}, import("zod/v4/core").$strip>>;
|
|
5888
5985
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
5889
5986
|
qaTestCaseExecute: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -5916,17 +6013,17 @@ export declare const sdk: {
|
|
|
5916
6013
|
status: import("zod").ZodEnum<{
|
|
5917
6014
|
pending: "pending";
|
|
5918
6015
|
failed: "failed";
|
|
5919
|
-
|
|
6016
|
+
in_progress: "in_progress";
|
|
6017
|
+
stopped: "stopped";
|
|
5920
6018
|
passed: "passed";
|
|
5921
6019
|
skipped: "skipped";
|
|
5922
|
-
stopped: "stopped";
|
|
5923
6020
|
}>;
|
|
5924
6021
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5925
6022
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5926
6023
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5927
6024
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5928
6025
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5929
|
-
|
|
6026
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5930
6027
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5931
6028
|
task_id: import("zod").ZodString;
|
|
5932
6029
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5939,6 +6036,10 @@ export declare const sdk: {
|
|
|
5939
6036
|
agent_name: import("zod").ZodString;
|
|
5940
6037
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5941
6038
|
}, import("zod/v4/core").$strip>>>;
|
|
6039
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6040
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6041
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6042
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5942
6043
|
}, import("zod/v4/core").$strip>;
|
|
5943
6044
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
5944
6045
|
qaTestCaseSimulation: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -5972,17 +6073,17 @@ export declare const sdk: {
|
|
|
5972
6073
|
status: import("zod").ZodEnum<{
|
|
5973
6074
|
pending: "pending";
|
|
5974
6075
|
failed: "failed";
|
|
5975
|
-
|
|
6076
|
+
in_progress: "in_progress";
|
|
6077
|
+
stopped: "stopped";
|
|
5976
6078
|
passed: "passed";
|
|
5977
6079
|
skipped: "skipped";
|
|
5978
|
-
stopped: "stopped";
|
|
5979
6080
|
}>;
|
|
5980
6081
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5981
6082
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5982
6083
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5983
6084
|
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5984
6085
|
tab_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5985
|
-
|
|
6086
|
+
step_count: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5986
6087
|
blocked_by: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5987
6088
|
task_id: import("zod").ZodString;
|
|
5988
6089
|
condition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5995,6 +6096,10 @@ export declare const sdk: {
|
|
|
5995
6096
|
agent_name: import("zod").ZodString;
|
|
5996
6097
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5997
6098
|
}, import("zod/v4/core").$strip>>>;
|
|
6099
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6100
|
+
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6101
|
+
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6102
|
+
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5998
6103
|
}, import("zod/v4/core").$strip>>;
|
|
5999
6104
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
6000
6105
|
qaTestCaseVersionList: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -6492,7 +6597,7 @@ export declare const sdk: {
|
|
|
6492
6597
|
error: string;
|
|
6493
6598
|
} | {
|
|
6494
6599
|
type: "task/status";
|
|
6495
|
-
status: "completed" | "failed" | "
|
|
6600
|
+
status: "completed" | "failed" | "in_progress" | "stopped" | "has_question" | "started";
|
|
6496
6601
|
message?: string | undefined;
|
|
6497
6602
|
task_id?: string | undefined;
|
|
6498
6603
|
timestamp?: number | undefined;
|
|
@@ -6523,7 +6628,7 @@ export declare const sdk: {
|
|
|
6523
6628
|
error: string;
|
|
6524
6629
|
} | {
|
|
6525
6630
|
type: "task/status";
|
|
6526
|
-
status: "completed" | "failed" | "
|
|
6631
|
+
status: "completed" | "failed" | "in_progress" | "stopped" | "has_question" | "started";
|
|
6527
6632
|
message?: string | undefined;
|
|
6528
6633
|
task_id?: string | undefined;
|
|
6529
6634
|
timestamp?: number | undefined;
|
|
@@ -6586,6 +6691,7 @@ export declare const sdk: {
|
|
|
6586
6691
|
simulations: "simulations";
|
|
6587
6692
|
jobs: "jobs";
|
|
6588
6693
|
triggers: "triggers";
|
|
6694
|
+
automations: "automations";
|
|
6589
6695
|
}>>;
|
|
6590
6696
|
application_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
6591
6697
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
@@ -6637,6 +6743,13 @@ export declare const sdk: {
|
|
|
6637
6743
|
type: "simulation/stopped";
|
|
6638
6744
|
simulation_id: number;
|
|
6639
6745
|
job_id: string;
|
|
6746
|
+
} | {
|
|
6747
|
+
type: "simulation/mindmap-updated";
|
|
6748
|
+
simulation_id: number;
|
|
6749
|
+
application_id: number;
|
|
6750
|
+
mindmap_status: string;
|
|
6751
|
+
steps_processed: number;
|
|
6752
|
+
steps_total: number;
|
|
6640
6753
|
} | {
|
|
6641
6754
|
type: "qa-run/completed";
|
|
6642
6755
|
run_id: number;
|
|
@@ -6705,6 +6818,17 @@ export declare const sdk: {
|
|
|
6705
6818
|
name: string;
|
|
6706
6819
|
timestamp: string;
|
|
6707
6820
|
payload?: unknown;
|
|
6821
|
+
} | {
|
|
6822
|
+
type: "automation-run/completed";
|
|
6823
|
+
automation_id: number;
|
|
6824
|
+
run_id: number;
|
|
6825
|
+
status: "completed";
|
|
6826
|
+
} | {
|
|
6827
|
+
type: "automation-run/failed";
|
|
6828
|
+
automation_id: number;
|
|
6829
|
+
run_id: number;
|
|
6830
|
+
status: "failed";
|
|
6831
|
+
error?: string | undefined;
|
|
6708
6832
|
}, unknown, void>, import("@orpc/shared").AsyncIteratorClass<{
|
|
6709
6833
|
type: "simulation/updated";
|
|
6710
6834
|
simulation_id: number;
|
|
@@ -6754,6 +6878,13 @@ export declare const sdk: {
|
|
|
6754
6878
|
type: "simulation/stopped";
|
|
6755
6879
|
simulation_id: number;
|
|
6756
6880
|
job_id: string;
|
|
6881
|
+
} | {
|
|
6882
|
+
type: "simulation/mindmap-updated";
|
|
6883
|
+
simulation_id: number;
|
|
6884
|
+
application_id: number;
|
|
6885
|
+
mindmap_status: string;
|
|
6886
|
+
steps_processed: number;
|
|
6887
|
+
steps_total: number;
|
|
6757
6888
|
} | {
|
|
6758
6889
|
type: "qa-run/completed";
|
|
6759
6890
|
run_id: number;
|
|
@@ -6822,6 +6953,17 @@ export declare const sdk: {
|
|
|
6822
6953
|
name: string;
|
|
6823
6954
|
timestamp: string;
|
|
6824
6955
|
payload?: unknown;
|
|
6956
|
+
} | {
|
|
6957
|
+
type: "automation-run/completed";
|
|
6958
|
+
automation_id: number;
|
|
6959
|
+
run_id: number;
|
|
6960
|
+
status: "completed";
|
|
6961
|
+
} | {
|
|
6962
|
+
type: "automation-run/failed";
|
|
6963
|
+
automation_id: number;
|
|
6964
|
+
run_id: number;
|
|
6965
|
+
status: "failed";
|
|
6966
|
+
error?: string | undefined;
|
|
6825
6967
|
}, unknown, void>>, Record<never, never>>;
|
|
6826
6968
|
workosWebhook: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
6827
6969
|
event: import("zod").ZodString;
|