@marketrix.ai/widget 3.2.247 → 3.2.248
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/sdk/index.d.ts +421 -11
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/routes.d.ts +421 -11
- package/dist/src/sdk/routes.d.ts.map +1 -1
- package/dist/src/sdk/schema.d.ts +493 -6
- package/dist/src/sdk/schema.d.ts.map +1 -1
- package/dist/widget.mjs +62 -62
- package/dist/widget.mjs.map +1 -1
- package/package.json +1 -1
package/dist/src/sdk/index.d.ts
CHANGED
|
@@ -999,6 +999,22 @@ export declare const sdk: {
|
|
|
999
999
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1000
1000
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
1001
1001
|
}, import("zod/v4/core").$strip>>>;
|
|
1002
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1003
|
+
task_id: import("zod").ZodString;
|
|
1004
|
+
title: import("zod").ZodString;
|
|
1005
|
+
instructions: import("zod").ZodString;
|
|
1006
|
+
status: import("zod").ZodEnum<{
|
|
1007
|
+
pending: "pending";
|
|
1008
|
+
failed: "failed";
|
|
1009
|
+
running: "running";
|
|
1010
|
+
passed: "passed";
|
|
1011
|
+
skipped: "skipped";
|
|
1012
|
+
}>;
|
|
1013
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1014
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1015
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1016
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
1017
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1002
1018
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1003
1019
|
id: import("zod").ZodNumber;
|
|
1004
1020
|
agent_name: import("zod").ZodString;
|
|
@@ -2026,6 +2042,7 @@ export declare const sdk: {
|
|
|
2026
2042
|
connected: "connected";
|
|
2027
2043
|
disconnected: "disconnected";
|
|
2028
2044
|
}>>;
|
|
2045
|
+
credentials: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
2029
2046
|
provider_data: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
2030
2047
|
connected_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2031
2048
|
}, import("zod/v4/core").$strip>>, Record<never, never>>;
|
|
@@ -2061,12 +2078,13 @@ export declare const sdk: {
|
|
|
2061
2078
|
connected: "connected";
|
|
2062
2079
|
disconnected: "disconnected";
|
|
2063
2080
|
}>>;
|
|
2081
|
+
credentials: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
2064
2082
|
provider_data: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
2065
2083
|
connected_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
2066
2084
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
2067
2085
|
triggerCreate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
2068
|
-
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2069
2086
|
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2087
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2070
2088
|
provider: import("zod").ZodEnum<{
|
|
2071
2089
|
timer: "timer";
|
|
2072
2090
|
github: "github";
|
|
@@ -2082,8 +2100,8 @@ export declare const sdk: {
|
|
|
2082
2100
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2083
2101
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2084
2102
|
workspace_id: import("zod").ZodNumber;
|
|
2085
|
-
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2086
2103
|
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2104
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2087
2105
|
provider: import("zod").ZodEnum<{
|
|
2088
2106
|
timer: "timer";
|
|
2089
2107
|
github: "github";
|
|
@@ -2106,8 +2124,8 @@ export declare const sdk: {
|
|
|
2106
2124
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2107
2125
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2108
2126
|
workspace_id: import("zod").ZodNumber;
|
|
2109
|
-
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2110
2127
|
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2128
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2111
2129
|
provider: import("zod").ZodEnum<{
|
|
2112
2130
|
timer: "timer";
|
|
2113
2131
|
github: "github";
|
|
@@ -2132,8 +2150,8 @@ export declare const sdk: {
|
|
|
2132
2150
|
jira: "jira";
|
|
2133
2151
|
mcp: "mcp";
|
|
2134
2152
|
}>>;
|
|
2135
|
-
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2136
2153
|
connection_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
2154
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
2137
2155
|
limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>>;
|
|
2138
2156
|
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>>;
|
|
2139
2157
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -2142,8 +2160,8 @@ export declare const sdk: {
|
|
|
2142
2160
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2143
2161
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2144
2162
|
workspace_id: import("zod").ZodNumber;
|
|
2145
|
-
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2146
2163
|
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2164
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2147
2165
|
provider: import("zod").ZodEnum<{
|
|
2148
2166
|
timer: "timer";
|
|
2149
2167
|
github: "github";
|
|
@@ -2173,8 +2191,8 @@ export declare const sdk: {
|
|
|
2173
2191
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2174
2192
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2175
2193
|
workspace_id: import("zod").ZodNumber;
|
|
2176
|
-
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2177
2194
|
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2195
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2178
2196
|
provider: import("zod").ZodEnum<{
|
|
2179
2197
|
timer: "timer";
|
|
2180
2198
|
github: "github";
|
|
@@ -2202,8 +2220,8 @@ export declare const sdk: {
|
|
|
2202
2220
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2203
2221
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
2204
2222
|
workspace_id: import("zod").ZodNumber;
|
|
2205
|
-
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2206
2223
|
connection_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2224
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2207
2225
|
provider: import("zod").ZodEnum<{
|
|
2208
2226
|
timer: "timer";
|
|
2209
2227
|
github: "github";
|
|
@@ -2673,6 +2691,22 @@ export declare const sdk: {
|
|
|
2673
2691
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2674
2692
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
2675
2693
|
}, import("zod/v4/core").$strip>>>;
|
|
2694
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2695
|
+
task_id: import("zod").ZodString;
|
|
2696
|
+
title: import("zod").ZodString;
|
|
2697
|
+
instructions: import("zod").ZodString;
|
|
2698
|
+
status: import("zod").ZodEnum<{
|
|
2699
|
+
pending: "pending";
|
|
2700
|
+
failed: "failed";
|
|
2701
|
+
running: "running";
|
|
2702
|
+
passed: "passed";
|
|
2703
|
+
skipped: "skipped";
|
|
2704
|
+
}>;
|
|
2705
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2706
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2707
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2708
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2709
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2676
2710
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2677
2711
|
id: import("zod").ZodNumber;
|
|
2678
2712
|
agent_name: import("zod").ZodString;
|
|
@@ -2820,6 +2854,22 @@ export declare const sdk: {
|
|
|
2820
2854
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2821
2855
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
2822
2856
|
}, import("zod/v4/core").$strip>>>;
|
|
2857
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2858
|
+
task_id: import("zod").ZodString;
|
|
2859
|
+
title: import("zod").ZodString;
|
|
2860
|
+
instructions: import("zod").ZodString;
|
|
2861
|
+
status: import("zod").ZodEnum<{
|
|
2862
|
+
pending: "pending";
|
|
2863
|
+
failed: "failed";
|
|
2864
|
+
running: "running";
|
|
2865
|
+
passed: "passed";
|
|
2866
|
+
skipped: "skipped";
|
|
2867
|
+
}>;
|
|
2868
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2869
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2870
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2871
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
2872
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2823
2873
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2824
2874
|
id: import("zod").ZodNumber;
|
|
2825
2875
|
agent_name: import("zod").ZodString;
|
|
@@ -2963,6 +3013,22 @@ export declare const sdk: {
|
|
|
2963
3013
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2964
3014
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
2965
3015
|
}, import("zod/v4/core").$strip>>>;
|
|
3016
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3017
|
+
task_id: import("zod").ZodString;
|
|
3018
|
+
title: import("zod").ZodString;
|
|
3019
|
+
instructions: import("zod").ZodString;
|
|
3020
|
+
status: import("zod").ZodEnum<{
|
|
3021
|
+
pending: "pending";
|
|
3022
|
+
failed: "failed";
|
|
3023
|
+
running: "running";
|
|
3024
|
+
passed: "passed";
|
|
3025
|
+
skipped: "skipped";
|
|
3026
|
+
}>;
|
|
3027
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3028
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3029
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3030
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3031
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2966
3032
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2967
3033
|
id: import("zod").ZodNumber;
|
|
2968
3034
|
agent_name: import("zod").ZodString;
|
|
@@ -3105,6 +3171,22 @@ export declare const sdk: {
|
|
|
3105
3171
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
3106
3172
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
3107
3173
|
}, import("zod/v4/core").$strip>>>;
|
|
3174
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3175
|
+
task_id: import("zod").ZodString;
|
|
3176
|
+
title: import("zod").ZodString;
|
|
3177
|
+
instructions: import("zod").ZodString;
|
|
3178
|
+
status: import("zod").ZodEnum<{
|
|
3179
|
+
pending: "pending";
|
|
3180
|
+
failed: "failed";
|
|
3181
|
+
running: "running";
|
|
3182
|
+
passed: "passed";
|
|
3183
|
+
skipped: "skipped";
|
|
3184
|
+
}>;
|
|
3185
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3186
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3187
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3188
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3189
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3108
3190
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3109
3191
|
id: import("zod").ZodNumber;
|
|
3110
3192
|
agent_name: import("zod").ZodString;
|
|
@@ -3254,6 +3336,22 @@ export declare const sdk: {
|
|
|
3254
3336
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
3255
3337
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
3256
3338
|
}, import("zod/v4/core").$strip>>>;
|
|
3339
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3340
|
+
task_id: import("zod").ZodString;
|
|
3341
|
+
title: import("zod").ZodString;
|
|
3342
|
+
instructions: import("zod").ZodString;
|
|
3343
|
+
status: import("zod").ZodEnum<{
|
|
3344
|
+
pending: "pending";
|
|
3345
|
+
failed: "failed";
|
|
3346
|
+
running: "running";
|
|
3347
|
+
passed: "passed";
|
|
3348
|
+
skipped: "skipped";
|
|
3349
|
+
}>;
|
|
3350
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3351
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3352
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3353
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3354
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3257
3355
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3258
3356
|
id: import("zod").ZodNumber;
|
|
3259
3357
|
agent_name: import("zod").ZodString;
|
|
@@ -3390,6 +3488,22 @@ export declare const sdk: {
|
|
|
3390
3488
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
3391
3489
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
3392
3490
|
}, import("zod/v4/core").$strip>>>;
|
|
3491
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3492
|
+
task_id: import("zod").ZodString;
|
|
3493
|
+
title: import("zod").ZodString;
|
|
3494
|
+
instructions: import("zod").ZodString;
|
|
3495
|
+
status: import("zod").ZodEnum<{
|
|
3496
|
+
pending: "pending";
|
|
3497
|
+
failed: "failed";
|
|
3498
|
+
running: "running";
|
|
3499
|
+
passed: "passed";
|
|
3500
|
+
skipped: "skipped";
|
|
3501
|
+
}>;
|
|
3502
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3503
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3504
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3505
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3506
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3393
3507
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3394
3508
|
id: import("zod").ZodNumber;
|
|
3395
3509
|
agent_name: import("zod").ZodString;
|
|
@@ -3531,6 +3645,22 @@ export declare const sdk: {
|
|
|
3531
3645
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
3532
3646
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
3533
3647
|
}, import("zod/v4/core").$strip>>>;
|
|
3648
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3649
|
+
task_id: import("zod").ZodString;
|
|
3650
|
+
title: import("zod").ZodString;
|
|
3651
|
+
instructions: import("zod").ZodString;
|
|
3652
|
+
status: import("zod").ZodEnum<{
|
|
3653
|
+
pending: "pending";
|
|
3654
|
+
failed: "failed";
|
|
3655
|
+
running: "running";
|
|
3656
|
+
passed: "passed";
|
|
3657
|
+
skipped: "skipped";
|
|
3658
|
+
}>;
|
|
3659
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3660
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3661
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3662
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3663
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3534
3664
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3535
3665
|
id: import("zod").ZodNumber;
|
|
3536
3666
|
agent_name: import("zod").ZodString;
|
|
@@ -3669,6 +3799,22 @@ export declare const sdk: {
|
|
|
3669
3799
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
3670
3800
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
3671
3801
|
}, import("zod/v4/core").$strip>>>;
|
|
3802
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3803
|
+
task_id: import("zod").ZodString;
|
|
3804
|
+
title: import("zod").ZodString;
|
|
3805
|
+
instructions: import("zod").ZodString;
|
|
3806
|
+
status: import("zod").ZodEnum<{
|
|
3807
|
+
pending: "pending";
|
|
3808
|
+
failed: "failed";
|
|
3809
|
+
running: "running";
|
|
3810
|
+
passed: "passed";
|
|
3811
|
+
skipped: "skipped";
|
|
3812
|
+
}>;
|
|
3813
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3814
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3815
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3816
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3817
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3672
3818
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3673
3819
|
id: import("zod").ZodNumber;
|
|
3674
3820
|
agent_name: import("zod").ZodString;
|
|
@@ -4044,6 +4190,22 @@ export declare const sdk: {
|
|
|
4044
4190
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4045
4191
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
4046
4192
|
}, import("zod/v4/core").$strip>>>;
|
|
4193
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4194
|
+
task_id: import("zod").ZodString;
|
|
4195
|
+
title: import("zod").ZodString;
|
|
4196
|
+
instructions: import("zod").ZodString;
|
|
4197
|
+
status: import("zod").ZodEnum<{
|
|
4198
|
+
pending: "pending";
|
|
4199
|
+
failed: "failed";
|
|
4200
|
+
running: "running";
|
|
4201
|
+
passed: "passed";
|
|
4202
|
+
skipped: "skipped";
|
|
4203
|
+
}>;
|
|
4204
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4205
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4206
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4207
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4208
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4047
4209
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4048
4210
|
id: import("zod").ZodNumber;
|
|
4049
4211
|
agent_name: import("zod").ZodString;
|
|
@@ -4092,6 +4254,22 @@ export declare const sdk: {
|
|
|
4092
4254
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4093
4255
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
4094
4256
|
}, import("zod/v4/core").$strip>>>;
|
|
4257
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4258
|
+
task_id: import("zod").ZodString;
|
|
4259
|
+
title: import("zod").ZodString;
|
|
4260
|
+
instructions: import("zod").ZodString;
|
|
4261
|
+
status: import("zod").ZodEnum<{
|
|
4262
|
+
pending: "pending";
|
|
4263
|
+
failed: "failed";
|
|
4264
|
+
running: "running";
|
|
4265
|
+
passed: "passed";
|
|
4266
|
+
skipped: "skipped";
|
|
4267
|
+
}>;
|
|
4268
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4269
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4270
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4271
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4272
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4095
4273
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4096
4274
|
id: import("zod").ZodNumber;
|
|
4097
4275
|
agent_name: import("zod").ZodString;
|
|
@@ -4125,6 +4303,22 @@ export declare const sdk: {
|
|
|
4125
4303
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4126
4304
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
4127
4305
|
}, import("zod/v4/core").$strip>>>>;
|
|
4306
|
+
tasks: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4307
|
+
task_id: import("zod").ZodString;
|
|
4308
|
+
title: import("zod").ZodString;
|
|
4309
|
+
instructions: import("zod").ZodString;
|
|
4310
|
+
status: import("zod").ZodEnum<{
|
|
4311
|
+
pending: "pending";
|
|
4312
|
+
failed: "failed";
|
|
4313
|
+
running: "running";
|
|
4314
|
+
passed: "passed";
|
|
4315
|
+
skipped: "skipped";
|
|
4316
|
+
}>;
|
|
4317
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4318
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4319
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4320
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4321
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4128
4322
|
agents: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4129
4323
|
id: import("zod").ZodNumber;
|
|
4130
4324
|
agent_name: import("zod").ZodString;
|
|
@@ -4161,6 +4355,22 @@ export declare const sdk: {
|
|
|
4161
4355
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4162
4356
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
4163
4357
|
}, import("zod/v4/core").$strip>>>;
|
|
4358
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4359
|
+
task_id: import("zod").ZodString;
|
|
4360
|
+
title: import("zod").ZodString;
|
|
4361
|
+
instructions: import("zod").ZodString;
|
|
4362
|
+
status: import("zod").ZodEnum<{
|
|
4363
|
+
pending: "pending";
|
|
4364
|
+
failed: "failed";
|
|
4365
|
+
running: "running";
|
|
4366
|
+
passed: "passed";
|
|
4367
|
+
skipped: "skipped";
|
|
4368
|
+
}>;
|
|
4369
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4370
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4371
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4372
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4373
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4164
4374
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4165
4375
|
id: import("zod").ZodNumber;
|
|
4166
4376
|
agent_name: import("zod").ZodString;
|
|
@@ -4201,6 +4411,22 @@ export declare const sdk: {
|
|
|
4201
4411
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4202
4412
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
4203
4413
|
}, import("zod/v4/core").$strip>>>;
|
|
4414
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4415
|
+
task_id: import("zod").ZodString;
|
|
4416
|
+
title: import("zod").ZodString;
|
|
4417
|
+
instructions: import("zod").ZodString;
|
|
4418
|
+
status: import("zod").ZodEnum<{
|
|
4419
|
+
pending: "pending";
|
|
4420
|
+
failed: "failed";
|
|
4421
|
+
running: "running";
|
|
4422
|
+
passed: "passed";
|
|
4423
|
+
skipped: "skipped";
|
|
4424
|
+
}>;
|
|
4425
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4426
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4427
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4428
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4429
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4204
4430
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4205
4431
|
id: import("zod").ZodNumber;
|
|
4206
4432
|
agent_name: import("zod").ZodString;
|
|
@@ -4236,6 +4462,22 @@ export declare const sdk: {
|
|
|
4236
4462
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4237
4463
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
4238
4464
|
}, import("zod/v4/core").$strip>>>;
|
|
4465
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4466
|
+
task_id: import("zod").ZodString;
|
|
4467
|
+
title: import("zod").ZodString;
|
|
4468
|
+
instructions: import("zod").ZodString;
|
|
4469
|
+
status: import("zod").ZodEnum<{
|
|
4470
|
+
pending: "pending";
|
|
4471
|
+
failed: "failed";
|
|
4472
|
+
running: "running";
|
|
4473
|
+
passed: "passed";
|
|
4474
|
+
skipped: "skipped";
|
|
4475
|
+
}>;
|
|
4476
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4477
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4478
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4479
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4480
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4239
4481
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4240
4482
|
id: import("zod").ZodNumber;
|
|
4241
4483
|
agent_name: import("zod").ZodString;
|
|
@@ -5011,6 +5253,7 @@ export declare const sdk: {
|
|
|
5011
5253
|
}, import("zod/v4/core").$strip>>>;
|
|
5012
5254
|
passed_tests: import("zod").ZodNumber;
|
|
5013
5255
|
failed_tests: import("zod").ZodNumber;
|
|
5256
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
5014
5257
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
5015
5258
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
5016
5259
|
total_tests: import("zod").ZodNumber;
|
|
@@ -5055,6 +5298,7 @@ export declare const sdk: {
|
|
|
5055
5298
|
total_tests: import("zod").ZodNumber;
|
|
5056
5299
|
passed_tests: import("zod").ZodNumber;
|
|
5057
5300
|
failed_tests: import("zod").ZodNumber;
|
|
5301
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
5058
5302
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
5059
5303
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
5060
5304
|
test_cases: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -5102,6 +5346,7 @@ export declare const sdk: {
|
|
|
5102
5346
|
run_id: import("zod").ZodNumber;
|
|
5103
5347
|
status: import("zod").ZodEnum<{
|
|
5104
5348
|
pending: "pending";
|
|
5349
|
+
completed: "completed";
|
|
5105
5350
|
failed: "failed";
|
|
5106
5351
|
running: "running";
|
|
5107
5352
|
passed: "passed";
|
|
@@ -5197,6 +5442,7 @@ export declare const sdk: {
|
|
|
5197
5442
|
total_tests: import("zod").ZodNumber;
|
|
5198
5443
|
passed_tests: import("zod").ZodNumber;
|
|
5199
5444
|
failed_tests: import("zod").ZodNumber;
|
|
5445
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
5200
5446
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
5201
5447
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
5202
5448
|
}, import("zod/v4/core").$strip>;
|
|
@@ -5226,6 +5472,22 @@ export declare const sdk: {
|
|
|
5226
5472
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
5227
5473
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
5228
5474
|
}, import("zod/v4/core").$strip>>>;
|
|
5475
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5476
|
+
task_id: import("zod").ZodString;
|
|
5477
|
+
title: import("zod").ZodString;
|
|
5478
|
+
instructions: import("zod").ZodString;
|
|
5479
|
+
status: import("zod").ZodEnum<{
|
|
5480
|
+
pending: "pending";
|
|
5481
|
+
failed: "failed";
|
|
5482
|
+
running: "running";
|
|
5483
|
+
passed: "passed";
|
|
5484
|
+
skipped: "skipped";
|
|
5485
|
+
}>;
|
|
5486
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5487
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5488
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5489
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5490
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5229
5491
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5230
5492
|
id: import("zod").ZodNumber;
|
|
5231
5493
|
agent_name: import("zod").ZodString;
|
|
@@ -5282,6 +5544,7 @@ export declare const sdk: {
|
|
|
5282
5544
|
run_id: import("zod").ZodNumber;
|
|
5283
5545
|
status: import("zod").ZodEnum<{
|
|
5284
5546
|
pending: "pending";
|
|
5547
|
+
completed: "completed";
|
|
5285
5548
|
failed: "failed";
|
|
5286
5549
|
running: "running";
|
|
5287
5550
|
passed: "passed";
|
|
@@ -5395,6 +5658,7 @@ export declare const sdk: {
|
|
|
5395
5658
|
run_id: import("zod").ZodNumber;
|
|
5396
5659
|
status: import("zod").ZodEnum<{
|
|
5397
5660
|
pending: "pending";
|
|
5661
|
+
completed: "completed";
|
|
5398
5662
|
failed: "failed";
|
|
5399
5663
|
running: "running";
|
|
5400
5664
|
passed: "passed";
|
|
@@ -5484,6 +5748,7 @@ export declare const sdk: {
|
|
|
5484
5748
|
total_tests: import("zod").ZodNumber;
|
|
5485
5749
|
passed_tests: import("zod").ZodNumber;
|
|
5486
5750
|
failed_tests: import("zod").ZodNumber;
|
|
5751
|
+
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
5487
5752
|
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
5488
5753
|
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
5489
5754
|
}, import("zod/v4/core").$strip>;
|
|
@@ -5513,6 +5778,22 @@ export declare const sdk: {
|
|
|
5513
5778
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
5514
5779
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
5515
5780
|
}, import("zod/v4/core").$strip>>>;
|
|
5781
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5782
|
+
task_id: import("zod").ZodString;
|
|
5783
|
+
title: import("zod").ZodString;
|
|
5784
|
+
instructions: import("zod").ZodString;
|
|
5785
|
+
status: import("zod").ZodEnum<{
|
|
5786
|
+
pending: "pending";
|
|
5787
|
+
failed: "failed";
|
|
5788
|
+
running: "running";
|
|
5789
|
+
passed: "passed";
|
|
5790
|
+
skipped: "skipped";
|
|
5791
|
+
}>;
|
|
5792
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5793
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5794
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5795
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5796
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5516
5797
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5517
5798
|
id: import("zod").ZodNumber;
|
|
5518
5799
|
agent_name: import("zod").ZodString;
|
|
@@ -5549,6 +5830,22 @@ export declare const sdk: {
|
|
|
5549
5830
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
5550
5831
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
5551
5832
|
}, import("zod/v4/core").$strip>>>;
|
|
5833
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5834
|
+
task_id: import("zod").ZodString;
|
|
5835
|
+
title: import("zod").ZodString;
|
|
5836
|
+
instructions: import("zod").ZodString;
|
|
5837
|
+
status: import("zod").ZodEnum<{
|
|
5838
|
+
pending: "pending";
|
|
5839
|
+
failed: "failed";
|
|
5840
|
+
running: "running";
|
|
5841
|
+
passed: "passed";
|
|
5842
|
+
skipped: "skipped";
|
|
5843
|
+
}>;
|
|
5844
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5845
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5846
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5847
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5848
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5552
5849
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5553
5850
|
id: import("zod").ZodNumber;
|
|
5554
5851
|
agent_name: import("zod").ZodString;
|
|
@@ -5585,6 +5882,22 @@ export declare const sdk: {
|
|
|
5585
5882
|
num_steps: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
5586
5883
|
created_at: import("zod").ZodCoercedDate<unknown>;
|
|
5587
5884
|
}, import("zod/v4/core").$strip>>>;
|
|
5885
|
+
tasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5886
|
+
task_id: import("zod").ZodString;
|
|
5887
|
+
title: import("zod").ZodString;
|
|
5888
|
+
instructions: import("zod").ZodString;
|
|
5889
|
+
status: import("zod").ZodEnum<{
|
|
5890
|
+
pending: "pending";
|
|
5891
|
+
failed: "failed";
|
|
5892
|
+
running: "running";
|
|
5893
|
+
passed: "passed";
|
|
5894
|
+
skipped: "skipped";
|
|
5895
|
+
}>;
|
|
5896
|
+
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5897
|
+
started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5898
|
+
completed_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5899
|
+
order_index: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5900
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5588
5901
|
agents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5589
5902
|
id: import("zod").ZodNumber;
|
|
5590
5903
|
agent_name: import("zod").ZodString;
|
|
@@ -6180,6 +6493,7 @@ export declare const sdk: {
|
|
|
6180
6493
|
qa: "qa";
|
|
6181
6494
|
simulations: "simulations";
|
|
6182
6495
|
jobs: "jobs";
|
|
6496
|
+
triggers: "triggers";
|
|
6183
6497
|
}>>;
|
|
6184
6498
|
application_id: import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>;
|
|
6185
6499
|
}, import("zod/v4/core").$strip>, import("@orpc/contract").Schema<AsyncIteratorObject<{
|
|
@@ -6198,11 +6512,50 @@ export declare const sdk: {
|
|
|
6198
6512
|
type: "simulation/deleted";
|
|
6199
6513
|
simulation_id: number;
|
|
6200
6514
|
application_id: number;
|
|
6515
|
+
} | {
|
|
6516
|
+
type: "simulation/queued";
|
|
6517
|
+
simulation_id: number;
|
|
6518
|
+
job_id: string;
|
|
6519
|
+
} | {
|
|
6520
|
+
type: "simulation/started";
|
|
6521
|
+
simulation_id: number;
|
|
6522
|
+
job_id: string;
|
|
6523
|
+
} | {
|
|
6524
|
+
type: "simulation/step";
|
|
6525
|
+
simulation_id: number;
|
|
6526
|
+
job_id: string;
|
|
6527
|
+
step_count?: number | undefined;
|
|
6528
|
+
message?: string | undefined;
|
|
6529
|
+
} | {
|
|
6530
|
+
type: "simulation/question";
|
|
6531
|
+
simulation_id: number;
|
|
6532
|
+
job_id: string;
|
|
6533
|
+
question?: string | undefined;
|
|
6534
|
+
} | {
|
|
6535
|
+
type: "simulation/completed";
|
|
6536
|
+
simulation_id: number;
|
|
6537
|
+
job_id: string;
|
|
6538
|
+
step_count?: number | undefined;
|
|
6539
|
+
} | {
|
|
6540
|
+
type: "simulation/failed";
|
|
6541
|
+
simulation_id: number;
|
|
6542
|
+
job_id: string;
|
|
6543
|
+
error?: string | undefined;
|
|
6544
|
+
} | {
|
|
6545
|
+
type: "simulation/stopped";
|
|
6546
|
+
simulation_id: number;
|
|
6547
|
+
job_id: string;
|
|
6548
|
+
} | {
|
|
6549
|
+
type: "qa-run/completed";
|
|
6550
|
+
run_id: number;
|
|
6551
|
+
status: string;
|
|
6201
6552
|
} | {
|
|
6202
6553
|
type: "agent/updated";
|
|
6203
|
-
agent_id: number;
|
|
6204
|
-
application_id: number;
|
|
6205
6554
|
status: string;
|
|
6555
|
+
agent_id?: number | undefined;
|
|
6556
|
+
chat_id?: string | undefined;
|
|
6557
|
+
task_id?: string | undefined;
|
|
6558
|
+
application_id?: number | undefined;
|
|
6206
6559
|
} | {
|
|
6207
6560
|
type: "agent/created";
|
|
6208
6561
|
agent_id: number;
|
|
@@ -6223,6 +6576,7 @@ export declare const sdk: {
|
|
|
6223
6576
|
document_id: number;
|
|
6224
6577
|
application_id: number;
|
|
6225
6578
|
status: string;
|
|
6579
|
+
simulation_id?: number | undefined;
|
|
6226
6580
|
} | {
|
|
6227
6581
|
type: "qa-test/updated";
|
|
6228
6582
|
test_id: number;
|
|
@@ -6251,6 +6605,14 @@ export declare const sdk: {
|
|
|
6251
6605
|
job_id: string;
|
|
6252
6606
|
application_id: number;
|
|
6253
6607
|
error: string;
|
|
6608
|
+
} | {
|
|
6609
|
+
type: "trigger/fired";
|
|
6610
|
+
trigger_id: number;
|
|
6611
|
+
workspace_id: number;
|
|
6612
|
+
provider: string;
|
|
6613
|
+
name: string;
|
|
6614
|
+
timestamp: string;
|
|
6615
|
+
payload?: unknown;
|
|
6254
6616
|
}, unknown, void>, import("@orpc/shared").AsyncIteratorClass<{
|
|
6255
6617
|
type: "simulation/updated";
|
|
6256
6618
|
simulation_id: number;
|
|
@@ -6267,11 +6629,50 @@ export declare const sdk: {
|
|
|
6267
6629
|
type: "simulation/deleted";
|
|
6268
6630
|
simulation_id: number;
|
|
6269
6631
|
application_id: number;
|
|
6632
|
+
} | {
|
|
6633
|
+
type: "simulation/queued";
|
|
6634
|
+
simulation_id: number;
|
|
6635
|
+
job_id: string;
|
|
6636
|
+
} | {
|
|
6637
|
+
type: "simulation/started";
|
|
6638
|
+
simulation_id: number;
|
|
6639
|
+
job_id: string;
|
|
6640
|
+
} | {
|
|
6641
|
+
type: "simulation/step";
|
|
6642
|
+
simulation_id: number;
|
|
6643
|
+
job_id: string;
|
|
6644
|
+
step_count?: number | undefined;
|
|
6645
|
+
message?: string | undefined;
|
|
6646
|
+
} | {
|
|
6647
|
+
type: "simulation/question";
|
|
6648
|
+
simulation_id: number;
|
|
6649
|
+
job_id: string;
|
|
6650
|
+
question?: string | undefined;
|
|
6651
|
+
} | {
|
|
6652
|
+
type: "simulation/completed";
|
|
6653
|
+
simulation_id: number;
|
|
6654
|
+
job_id: string;
|
|
6655
|
+
step_count?: number | undefined;
|
|
6656
|
+
} | {
|
|
6657
|
+
type: "simulation/failed";
|
|
6658
|
+
simulation_id: number;
|
|
6659
|
+
job_id: string;
|
|
6660
|
+
error?: string | undefined;
|
|
6661
|
+
} | {
|
|
6662
|
+
type: "simulation/stopped";
|
|
6663
|
+
simulation_id: number;
|
|
6664
|
+
job_id: string;
|
|
6665
|
+
} | {
|
|
6666
|
+
type: "qa-run/completed";
|
|
6667
|
+
run_id: number;
|
|
6668
|
+
status: string;
|
|
6270
6669
|
} | {
|
|
6271
6670
|
type: "agent/updated";
|
|
6272
|
-
agent_id: number;
|
|
6273
|
-
application_id: number;
|
|
6274
6671
|
status: string;
|
|
6672
|
+
agent_id?: number | undefined;
|
|
6673
|
+
chat_id?: string | undefined;
|
|
6674
|
+
task_id?: string | undefined;
|
|
6675
|
+
application_id?: number | undefined;
|
|
6275
6676
|
} | {
|
|
6276
6677
|
type: "agent/created";
|
|
6277
6678
|
agent_id: number;
|
|
@@ -6292,6 +6693,7 @@ export declare const sdk: {
|
|
|
6292
6693
|
document_id: number;
|
|
6293
6694
|
application_id: number;
|
|
6294
6695
|
status: string;
|
|
6696
|
+
simulation_id?: number | undefined;
|
|
6295
6697
|
} | {
|
|
6296
6698
|
type: "qa-test/updated";
|
|
6297
6699
|
test_id: number;
|
|
@@ -6320,6 +6722,14 @@ export declare const sdk: {
|
|
|
6320
6722
|
job_id: string;
|
|
6321
6723
|
application_id: number;
|
|
6322
6724
|
error: string;
|
|
6725
|
+
} | {
|
|
6726
|
+
type: "trigger/fired";
|
|
6727
|
+
trigger_id: number;
|
|
6728
|
+
workspace_id: number;
|
|
6729
|
+
provider: string;
|
|
6730
|
+
name: string;
|
|
6731
|
+
timestamp: string;
|
|
6732
|
+
payload?: unknown;
|
|
6323
6733
|
}, unknown, void>>, Record<never, never>>;
|
|
6324
6734
|
workosWebhook: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
6325
6735
|
event: import("zod").ZodString;
|