@marketrix.ai/widget 3.3.236 → 3.3.238
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 +207 -76
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/routes.d.ts +207 -76
- package/dist/src/sdk/routes.d.ts.map +1 -1
- package/dist/src/sdk/schema.d.ts +175 -64
- package/dist/src/sdk/schema.d.ts.map +1 -1
- package/dist/widget.mjs +66 -66
- package/dist/widget.mjs.map +1 -1
- package/package.json +1 -1
package/dist/src/sdk/index.d.ts
CHANGED
|
@@ -922,7 +922,6 @@ export declare const sdk: {
|
|
|
922
922
|
}>>;
|
|
923
923
|
status_message: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
924
924
|
learning_progress: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
925
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
926
925
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
927
926
|
}, import("zod/v4/core").$strip>>>>;
|
|
928
927
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>>;
|
|
@@ -1005,7 +1004,14 @@ export declare const sdk: {
|
|
|
1005
1004
|
agent_id: import("zod").ZodNumber;
|
|
1006
1005
|
job_id: import("zod").ZodString;
|
|
1007
1006
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1008
|
-
status: import("zod").
|
|
1007
|
+
status: import("zod").ZodEnum<{
|
|
1008
|
+
completed: "completed";
|
|
1009
|
+
failed: "failed";
|
|
1010
|
+
queued: "queued";
|
|
1011
|
+
running: "running";
|
|
1012
|
+
creating_knowledge: "creating_knowledge";
|
|
1013
|
+
stopped: "stopped";
|
|
1014
|
+
}>;
|
|
1009
1015
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1010
1016
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1011
1017
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -1024,10 +1030,10 @@ export declare const sdk: {
|
|
|
1024
1030
|
status: import("zod").ZodEnum<{
|
|
1025
1031
|
pending: "pending";
|
|
1026
1032
|
failed: "failed";
|
|
1027
|
-
has_question: "has_question";
|
|
1028
|
-
passed: "passed";
|
|
1029
1033
|
running: "running";
|
|
1030
1034
|
stopped: "stopped";
|
|
1035
|
+
has_question: "has_question";
|
|
1036
|
+
passed: "passed";
|
|
1031
1037
|
skipped: "skipped";
|
|
1032
1038
|
}>;
|
|
1033
1039
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2760,7 +2766,6 @@ export declare const sdk: {
|
|
|
2760
2766
|
}>>;
|
|
2761
2767
|
status_message: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2762
2768
|
learning_progress: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2763
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
2764
2769
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
2765
2770
|
}, import("zod/v4/core").$strip>>>>;
|
|
2766
2771
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>>;
|
|
@@ -2843,7 +2848,14 @@ export declare const sdk: {
|
|
|
2843
2848
|
agent_id: import("zod").ZodNumber;
|
|
2844
2849
|
job_id: import("zod").ZodString;
|
|
2845
2850
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2846
|
-
status: import("zod").
|
|
2851
|
+
status: import("zod").ZodEnum<{
|
|
2852
|
+
completed: "completed";
|
|
2853
|
+
failed: "failed";
|
|
2854
|
+
queued: "queued";
|
|
2855
|
+
running: "running";
|
|
2856
|
+
creating_knowledge: "creating_knowledge";
|
|
2857
|
+
stopped: "stopped";
|
|
2858
|
+
}>;
|
|
2847
2859
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2848
2860
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2849
2861
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2862,10 +2874,10 @@ export declare const sdk: {
|
|
|
2862
2874
|
status: import("zod").ZodEnum<{
|
|
2863
2875
|
pending: "pending";
|
|
2864
2876
|
failed: "failed";
|
|
2865
|
-
has_question: "has_question";
|
|
2866
|
-
passed: "passed";
|
|
2867
2877
|
running: "running";
|
|
2868
2878
|
stopped: "stopped";
|
|
2879
|
+
has_question: "has_question";
|
|
2880
|
+
passed: "passed";
|
|
2869
2881
|
skipped: "skipped";
|
|
2870
2882
|
}>;
|
|
2871
2883
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2940,7 +2952,6 @@ export declare const sdk: {
|
|
|
2940
2952
|
}>;
|
|
2941
2953
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2942
2954
|
learning_progress: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2943
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
2944
2955
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
2945
2956
|
}, import("zod/v4/core").$strip>>>;
|
|
2946
2957
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
@@ -3023,7 +3034,14 @@ export declare const sdk: {
|
|
|
3023
3034
|
agent_id: import("zod").ZodNumber;
|
|
3024
3035
|
job_id: import("zod").ZodString;
|
|
3025
3036
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3026
|
-
status: import("zod").
|
|
3037
|
+
status: import("zod").ZodEnum<{
|
|
3038
|
+
completed: "completed";
|
|
3039
|
+
failed: "failed";
|
|
3040
|
+
queued: "queued";
|
|
3041
|
+
running: "running";
|
|
3042
|
+
creating_knowledge: "creating_knowledge";
|
|
3043
|
+
stopped: "stopped";
|
|
3044
|
+
}>;
|
|
3027
3045
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3028
3046
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3029
3047
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3042,10 +3060,10 @@ export declare const sdk: {
|
|
|
3042
3060
|
status: import("zod").ZodEnum<{
|
|
3043
3061
|
pending: "pending";
|
|
3044
3062
|
failed: "failed";
|
|
3045
|
-
has_question: "has_question";
|
|
3046
|
-
passed: "passed";
|
|
3047
3063
|
running: "running";
|
|
3048
3064
|
stopped: "stopped";
|
|
3065
|
+
has_question: "has_question";
|
|
3066
|
+
passed: "passed";
|
|
3049
3067
|
skipped: "skipped";
|
|
3050
3068
|
}>;
|
|
3051
3069
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3116,7 +3134,6 @@ export declare const sdk: {
|
|
|
3116
3134
|
}>;
|
|
3117
3135
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3118
3136
|
learning_progress: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3119
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3120
3137
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3121
3138
|
}, import("zod/v4/core").$strip>>>;
|
|
3122
3139
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
@@ -3199,7 +3216,14 @@ export declare const sdk: {
|
|
|
3199
3216
|
agent_id: import("zod").ZodNumber;
|
|
3200
3217
|
job_id: import("zod").ZodString;
|
|
3201
3218
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3202
|
-
status: import("zod").
|
|
3219
|
+
status: import("zod").ZodEnum<{
|
|
3220
|
+
completed: "completed";
|
|
3221
|
+
failed: "failed";
|
|
3222
|
+
queued: "queued";
|
|
3223
|
+
running: "running";
|
|
3224
|
+
creating_knowledge: "creating_knowledge";
|
|
3225
|
+
stopped: "stopped";
|
|
3226
|
+
}>;
|
|
3203
3227
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3204
3228
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3205
3229
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3218,10 +3242,10 @@ export declare const sdk: {
|
|
|
3218
3242
|
status: import("zod").ZodEnum<{
|
|
3219
3243
|
pending: "pending";
|
|
3220
3244
|
failed: "failed";
|
|
3221
|
-
has_question: "has_question";
|
|
3222
|
-
passed: "passed";
|
|
3223
3245
|
running: "running";
|
|
3224
3246
|
stopped: "stopped";
|
|
3247
|
+
has_question: "has_question";
|
|
3248
|
+
passed: "passed";
|
|
3225
3249
|
skipped: "skipped";
|
|
3226
3250
|
}>;
|
|
3227
3251
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3291,7 +3315,6 @@ export declare const sdk: {
|
|
|
3291
3315
|
}>;
|
|
3292
3316
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3293
3317
|
learning_progress: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3294
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3295
3318
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3296
3319
|
}, import("zod/v4/core").$strip>>>;
|
|
3297
3320
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
@@ -3374,7 +3397,14 @@ export declare const sdk: {
|
|
|
3374
3397
|
agent_id: import("zod").ZodNumber;
|
|
3375
3398
|
job_id: import("zod").ZodString;
|
|
3376
3399
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3377
|
-
status: import("zod").
|
|
3400
|
+
status: import("zod").ZodEnum<{
|
|
3401
|
+
completed: "completed";
|
|
3402
|
+
failed: "failed";
|
|
3403
|
+
queued: "queued";
|
|
3404
|
+
running: "running";
|
|
3405
|
+
creating_knowledge: "creating_knowledge";
|
|
3406
|
+
stopped: "stopped";
|
|
3407
|
+
}>;
|
|
3378
3408
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3379
3409
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3380
3410
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3393,10 +3423,10 @@ export declare const sdk: {
|
|
|
3393
3423
|
status: import("zod").ZodEnum<{
|
|
3394
3424
|
pending: "pending";
|
|
3395
3425
|
failed: "failed";
|
|
3396
|
-
has_question: "has_question";
|
|
3397
|
-
passed: "passed";
|
|
3398
3426
|
running: "running";
|
|
3399
3427
|
stopped: "stopped";
|
|
3428
|
+
has_question: "has_question";
|
|
3429
|
+
passed: "passed";
|
|
3400
3430
|
skipped: "skipped";
|
|
3401
3431
|
}>;
|
|
3402
3432
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3483,7 +3513,6 @@ export declare const sdk: {
|
|
|
3483
3513
|
}>>;
|
|
3484
3514
|
status_message: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
3485
3515
|
learning_progress: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3486
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3487
3516
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3488
3517
|
}, import("zod/v4/core").$strip>>>>;
|
|
3489
3518
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>>;
|
|
@@ -3566,7 +3595,14 @@ export declare const sdk: {
|
|
|
3566
3595
|
agent_id: import("zod").ZodNumber;
|
|
3567
3596
|
job_id: import("zod").ZodString;
|
|
3568
3597
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3569
|
-
status: import("zod").
|
|
3598
|
+
status: import("zod").ZodEnum<{
|
|
3599
|
+
completed: "completed";
|
|
3600
|
+
failed: "failed";
|
|
3601
|
+
queued: "queued";
|
|
3602
|
+
running: "running";
|
|
3603
|
+
creating_knowledge: "creating_knowledge";
|
|
3604
|
+
stopped: "stopped";
|
|
3605
|
+
}>;
|
|
3570
3606
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3571
3607
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3572
3608
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3585,10 +3621,10 @@ export declare const sdk: {
|
|
|
3585
3621
|
status: import("zod").ZodEnum<{
|
|
3586
3622
|
pending: "pending";
|
|
3587
3623
|
failed: "failed";
|
|
3588
|
-
has_question: "has_question";
|
|
3589
|
-
passed: "passed";
|
|
3590
3624
|
running: "running";
|
|
3591
3625
|
stopped: "stopped";
|
|
3626
|
+
has_question: "has_question";
|
|
3627
|
+
passed: "passed";
|
|
3592
3628
|
skipped: "skipped";
|
|
3593
3629
|
}>;
|
|
3594
3630
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3652,7 +3688,6 @@ export declare const sdk: {
|
|
|
3652
3688
|
}>;
|
|
3653
3689
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3654
3690
|
learning_progress: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3655
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3656
3691
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3657
3692
|
}, import("zod/v4/core").$strip>>>;
|
|
3658
3693
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
@@ -3735,7 +3770,14 @@ export declare const sdk: {
|
|
|
3735
3770
|
agent_id: import("zod").ZodNumber;
|
|
3736
3771
|
job_id: import("zod").ZodString;
|
|
3737
3772
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3738
|
-
status: import("zod").
|
|
3773
|
+
status: import("zod").ZodEnum<{
|
|
3774
|
+
completed: "completed";
|
|
3775
|
+
failed: "failed";
|
|
3776
|
+
queued: "queued";
|
|
3777
|
+
running: "running";
|
|
3778
|
+
creating_knowledge: "creating_knowledge";
|
|
3779
|
+
stopped: "stopped";
|
|
3780
|
+
}>;
|
|
3739
3781
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3740
3782
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3741
3783
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3754,10 +3796,10 @@ export declare const sdk: {
|
|
|
3754
3796
|
status: import("zod").ZodEnum<{
|
|
3755
3797
|
pending: "pending";
|
|
3756
3798
|
failed: "failed";
|
|
3757
|
-
has_question: "has_question";
|
|
3758
|
-
passed: "passed";
|
|
3759
3799
|
running: "running";
|
|
3760
3800
|
stopped: "stopped";
|
|
3801
|
+
has_question: "has_question";
|
|
3802
|
+
passed: "passed";
|
|
3761
3803
|
skipped: "skipped";
|
|
3762
3804
|
}>;
|
|
3763
3805
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3826,7 +3868,6 @@ export declare const sdk: {
|
|
|
3826
3868
|
}>;
|
|
3827
3869
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3828
3870
|
learning_progress: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3829
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3830
3871
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
3831
3872
|
}, import("zod/v4/core").$strip>>>;
|
|
3832
3873
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
@@ -3909,7 +3950,14 @@ export declare const sdk: {
|
|
|
3909
3950
|
agent_id: import("zod").ZodNumber;
|
|
3910
3951
|
job_id: import("zod").ZodString;
|
|
3911
3952
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3912
|
-
status: import("zod").
|
|
3953
|
+
status: import("zod").ZodEnum<{
|
|
3954
|
+
completed: "completed";
|
|
3955
|
+
failed: "failed";
|
|
3956
|
+
queued: "queued";
|
|
3957
|
+
running: "running";
|
|
3958
|
+
creating_knowledge: "creating_knowledge";
|
|
3959
|
+
stopped: "stopped";
|
|
3960
|
+
}>;
|
|
3913
3961
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3914
3962
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3915
3963
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3928,10 +3976,10 @@ export declare const sdk: {
|
|
|
3928
3976
|
status: import("zod").ZodEnum<{
|
|
3929
3977
|
pending: "pending";
|
|
3930
3978
|
failed: "failed";
|
|
3931
|
-
has_question: "has_question";
|
|
3932
|
-
passed: "passed";
|
|
3933
3979
|
running: "running";
|
|
3934
3980
|
stopped: "stopped";
|
|
3981
|
+
has_question: "has_question";
|
|
3982
|
+
passed: "passed";
|
|
3935
3983
|
skipped: "skipped";
|
|
3936
3984
|
}>;
|
|
3937
3985
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3997,7 +4045,6 @@ export declare const sdk: {
|
|
|
3997
4045
|
}>;
|
|
3998
4046
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3999
4047
|
learning_progress: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4000
|
-
vector_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
4001
4048
|
graph_index_created: import("zod").ZodNullable<import("zod").ZodBoolean>;
|
|
4002
4049
|
}, import("zod/v4/core").$strip>>>;
|
|
4003
4050
|
learning_started_at: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodCoercedDate<unknown>>>;
|
|
@@ -4080,7 +4127,14 @@ export declare const sdk: {
|
|
|
4080
4127
|
agent_id: import("zod").ZodNumber;
|
|
4081
4128
|
job_id: import("zod").ZodString;
|
|
4082
4129
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4083
|
-
status: import("zod").
|
|
4130
|
+
status: import("zod").ZodEnum<{
|
|
4131
|
+
completed: "completed";
|
|
4132
|
+
failed: "failed";
|
|
4133
|
+
queued: "queued";
|
|
4134
|
+
running: "running";
|
|
4135
|
+
creating_knowledge: "creating_knowledge";
|
|
4136
|
+
stopped: "stopped";
|
|
4137
|
+
}>;
|
|
4084
4138
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4085
4139
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4086
4140
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4099,10 +4153,10 @@ export declare const sdk: {
|
|
|
4099
4153
|
status: import("zod").ZodEnum<{
|
|
4100
4154
|
pending: "pending";
|
|
4101
4155
|
failed: "failed";
|
|
4102
|
-
has_question: "has_question";
|
|
4103
|
-
passed: "passed";
|
|
4104
4156
|
running: "running";
|
|
4105
4157
|
stopped: "stopped";
|
|
4158
|
+
has_question: "has_question";
|
|
4159
|
+
passed: "passed";
|
|
4106
4160
|
skipped: "skipped";
|
|
4107
4161
|
}>;
|
|
4108
4162
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4432,7 +4486,14 @@ export declare const sdk: {
|
|
|
4432
4486
|
agent_id: import("zod").ZodNumber;
|
|
4433
4487
|
job_id: import("zod").ZodString;
|
|
4434
4488
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4435
|
-
status: import("zod").
|
|
4489
|
+
status: import("zod").ZodEnum<{
|
|
4490
|
+
completed: "completed";
|
|
4491
|
+
failed: "failed";
|
|
4492
|
+
queued: "queued";
|
|
4493
|
+
running: "running";
|
|
4494
|
+
creating_knowledge: "creating_knowledge";
|
|
4495
|
+
stopped: "stopped";
|
|
4496
|
+
}>;
|
|
4436
4497
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4437
4498
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4438
4499
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4451,10 +4512,10 @@ export declare const sdk: {
|
|
|
4451
4512
|
status: import("zod").ZodEnum<{
|
|
4452
4513
|
pending: "pending";
|
|
4453
4514
|
failed: "failed";
|
|
4454
|
-
has_question: "has_question";
|
|
4455
|
-
passed: "passed";
|
|
4456
4515
|
running: "running";
|
|
4457
4516
|
stopped: "stopped";
|
|
4517
|
+
has_question: "has_question";
|
|
4518
|
+
passed: "passed";
|
|
4458
4519
|
skipped: "skipped";
|
|
4459
4520
|
}>;
|
|
4460
4521
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4500,12 +4561,20 @@ export declare const sdk: {
|
|
|
4500
4561
|
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>>;
|
|
4501
4562
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4502
4563
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4564
|
+
has_question: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4503
4565
|
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4504
4566
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
4505
4567
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
4506
4568
|
application_id: import("zod").ZodNumber;
|
|
4507
4569
|
agent_id: import("zod").ZodNumber;
|
|
4508
|
-
status: import("zod").
|
|
4570
|
+
status: import("zod").ZodEnum<{
|
|
4571
|
+
completed: "completed";
|
|
4572
|
+
failed: "failed";
|
|
4573
|
+
queued: "queued";
|
|
4574
|
+
running: "running";
|
|
4575
|
+
creating_knowledge: "creating_knowledge";
|
|
4576
|
+
stopped: "stopped";
|
|
4577
|
+
}>;
|
|
4509
4578
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4510
4579
|
agent_name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4511
4580
|
source: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4518,7 +4587,6 @@ export declare const sdk: {
|
|
|
4518
4587
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4519
4588
|
}, import("zod/v4/core").$strip>>>;
|
|
4520
4589
|
pinned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4521
|
-
has_question: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4522
4590
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4523
4591
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4524
4592
|
job_id: import("zod").ZodString;
|
|
@@ -4536,10 +4604,18 @@ export declare const sdk: {
|
|
|
4536
4604
|
offset: import("zod").ZodNumber;
|
|
4537
4605
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4538
4606
|
simulationStart: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4607
|
+
has_question: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4539
4608
|
id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4540
4609
|
created_at: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>>;
|
|
4541
4610
|
updated_at: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>>;
|
|
4542
|
-
status: import("zod").ZodOptional<import("zod").
|
|
4611
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4612
|
+
completed: "completed";
|
|
4613
|
+
failed: "failed";
|
|
4614
|
+
queued: "queued";
|
|
4615
|
+
running: "running";
|
|
4616
|
+
creating_knowledge: "creating_knowledge";
|
|
4617
|
+
stopped: "stopped";
|
|
4618
|
+
}>>;
|
|
4543
4619
|
path: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4544
4620
|
agent_name: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4545
4621
|
source: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4553,7 +4629,6 @@ export declare const sdk: {
|
|
|
4553
4629
|
}, import("zod/v4/core").$strip>>>>;
|
|
4554
4630
|
pinned: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4555
4631
|
source_metadata: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>>;
|
|
4556
|
-
has_question: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4557
4632
|
status_message: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4558
4633
|
job_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4559
4634
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
@@ -4582,7 +4657,14 @@ export declare const sdk: {
|
|
|
4582
4657
|
agent_id: import("zod").ZodNumber;
|
|
4583
4658
|
job_id: import("zod").ZodString;
|
|
4584
4659
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4585
|
-
status: import("zod").
|
|
4660
|
+
status: import("zod").ZodEnum<{
|
|
4661
|
+
completed: "completed";
|
|
4662
|
+
failed: "failed";
|
|
4663
|
+
queued: "queued";
|
|
4664
|
+
running: "running";
|
|
4665
|
+
creating_knowledge: "creating_knowledge";
|
|
4666
|
+
stopped: "stopped";
|
|
4667
|
+
}>;
|
|
4586
4668
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4587
4669
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4588
4670
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4601,10 +4683,10 @@ export declare const sdk: {
|
|
|
4601
4683
|
status: import("zod").ZodEnum<{
|
|
4602
4684
|
pending: "pending";
|
|
4603
4685
|
failed: "failed";
|
|
4604
|
-
has_question: "has_question";
|
|
4605
|
-
passed: "passed";
|
|
4606
4686
|
running: "running";
|
|
4607
4687
|
stopped: "stopped";
|
|
4688
|
+
has_question: "has_question";
|
|
4689
|
+
passed: "passed";
|
|
4608
4690
|
skipped: "skipped";
|
|
4609
4691
|
}>;
|
|
4610
4692
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4635,7 +4717,14 @@ export declare const sdk: {
|
|
|
4635
4717
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4636
4718
|
simulationUpdate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4637
4719
|
job_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4638
|
-
status: import("zod").ZodOptional<import("zod").
|
|
4720
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4721
|
+
completed: "completed";
|
|
4722
|
+
failed: "failed";
|
|
4723
|
+
queued: "queued";
|
|
4724
|
+
running: "running";
|
|
4725
|
+
creating_knowledge: "creating_knowledge";
|
|
4726
|
+
stopped: "stopped";
|
|
4727
|
+
}>>;
|
|
4639
4728
|
status_message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4640
4729
|
pinned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4641
4730
|
graph_index_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4648,7 +4737,14 @@ export declare const sdk: {
|
|
|
4648
4737
|
agent_id: import("zod").ZodNumber;
|
|
4649
4738
|
job_id: import("zod").ZodString;
|
|
4650
4739
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4651
|
-
status: import("zod").
|
|
4740
|
+
status: import("zod").ZodEnum<{
|
|
4741
|
+
completed: "completed";
|
|
4742
|
+
failed: "failed";
|
|
4743
|
+
queued: "queued";
|
|
4744
|
+
running: "running";
|
|
4745
|
+
creating_knowledge: "creating_knowledge";
|
|
4746
|
+
stopped: "stopped";
|
|
4747
|
+
}>;
|
|
4652
4748
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4653
4749
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4654
4750
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4667,10 +4763,10 @@ export declare const sdk: {
|
|
|
4667
4763
|
status: import("zod").ZodEnum<{
|
|
4668
4764
|
pending: "pending";
|
|
4669
4765
|
failed: "failed";
|
|
4670
|
-
has_question: "has_question";
|
|
4671
|
-
passed: "passed";
|
|
4672
4766
|
running: "running";
|
|
4673
4767
|
stopped: "stopped";
|
|
4768
|
+
has_question: "has_question";
|
|
4769
|
+
passed: "passed";
|
|
4674
4770
|
skipped: "skipped";
|
|
4675
4771
|
}>;
|
|
4676
4772
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4710,7 +4806,14 @@ export declare const sdk: {
|
|
|
4710
4806
|
agent_id: import("zod").ZodNumber;
|
|
4711
4807
|
job_id: import("zod").ZodString;
|
|
4712
4808
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4713
|
-
status: import("zod").
|
|
4809
|
+
status: import("zod").ZodEnum<{
|
|
4810
|
+
completed: "completed";
|
|
4811
|
+
failed: "failed";
|
|
4812
|
+
queued: "queued";
|
|
4813
|
+
running: "running";
|
|
4814
|
+
creating_knowledge: "creating_knowledge";
|
|
4815
|
+
stopped: "stopped";
|
|
4816
|
+
}>;
|
|
4714
4817
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4715
4818
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4716
4819
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4729,10 +4832,10 @@ export declare const sdk: {
|
|
|
4729
4832
|
status: import("zod").ZodEnum<{
|
|
4730
4833
|
pending: "pending";
|
|
4731
4834
|
failed: "failed";
|
|
4732
|
-
has_question: "has_question";
|
|
4733
|
-
passed: "passed";
|
|
4734
4835
|
running: "running";
|
|
4735
4836
|
stopped: "stopped";
|
|
4837
|
+
has_question: "has_question";
|
|
4838
|
+
passed: "passed";
|
|
4736
4839
|
skipped: "skipped";
|
|
4737
4840
|
}>;
|
|
4738
4841
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4768,7 +4871,14 @@ export declare const sdk: {
|
|
|
4768
4871
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4769
4872
|
id: import("zod").ZodNumber;
|
|
4770
4873
|
simulation_id: import("zod").ZodNumber;
|
|
4771
|
-
status: import("zod").
|
|
4874
|
+
status: import("zod").ZodEnum<{
|
|
4875
|
+
completed: "completed";
|
|
4876
|
+
failed: "failed";
|
|
4877
|
+
queued: "queued";
|
|
4878
|
+
running: "running";
|
|
4879
|
+
stopped: "stopped";
|
|
4880
|
+
has_question: "has_question";
|
|
4881
|
+
}>;
|
|
4772
4882
|
status_message: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4773
4883
|
skill: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4774
4884
|
screenshot_path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4804,8 +4914,8 @@ export declare const sdk: {
|
|
|
4804
4914
|
status: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
4805
4915
|
completed: "completed";
|
|
4806
4916
|
failed: "failed";
|
|
4807
|
-
has_question: "has_question";
|
|
4808
4917
|
running: "running";
|
|
4918
|
+
has_question: "has_question";
|
|
4809
4919
|
}>>;
|
|
4810
4920
|
started_at: import("zod").ZodString;
|
|
4811
4921
|
ended_at: import("zod").ZodString;
|
|
@@ -5797,11 +5907,11 @@ export declare const sdk: {
|
|
|
5797
5907
|
simulation_task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5798
5908
|
status: import("zod").ZodEnum<{
|
|
5799
5909
|
failed: "failed";
|
|
5800
|
-
passed: "passed";
|
|
5801
|
-
needs_healing: "needs_healing";
|
|
5802
5910
|
queued: "queued";
|
|
5803
5911
|
running: "running";
|
|
5804
5912
|
stopped: "stopped";
|
|
5913
|
+
passed: "passed";
|
|
5914
|
+
needs_healing: "needs_healing";
|
|
5805
5915
|
}>;
|
|
5806
5916
|
verdict: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5807
5917
|
proposed_steps: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
@@ -6089,7 +6199,14 @@ export declare const sdk: {
|
|
|
6089
6199
|
agent_id: import("zod").ZodNumber;
|
|
6090
6200
|
job_id: import("zod").ZodString;
|
|
6091
6201
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6092
|
-
status: import("zod").
|
|
6202
|
+
status: import("zod").ZodEnum<{
|
|
6203
|
+
completed: "completed";
|
|
6204
|
+
failed: "failed";
|
|
6205
|
+
queued: "queued";
|
|
6206
|
+
running: "running";
|
|
6207
|
+
creating_knowledge: "creating_knowledge";
|
|
6208
|
+
stopped: "stopped";
|
|
6209
|
+
}>;
|
|
6093
6210
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6094
6211
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6095
6212
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6108,10 +6225,10 @@ export declare const sdk: {
|
|
|
6108
6225
|
status: import("zod").ZodEnum<{
|
|
6109
6226
|
pending: "pending";
|
|
6110
6227
|
failed: "failed";
|
|
6111
|
-
has_question: "has_question";
|
|
6112
|
-
passed: "passed";
|
|
6113
6228
|
running: "running";
|
|
6114
6229
|
stopped: "stopped";
|
|
6230
|
+
has_question: "has_question";
|
|
6231
|
+
passed: "passed";
|
|
6115
6232
|
skipped: "skipped";
|
|
6116
6233
|
}>;
|
|
6117
6234
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6152,7 +6269,14 @@ export declare const sdk: {
|
|
|
6152
6269
|
agent_id: import("zod").ZodNumber;
|
|
6153
6270
|
job_id: import("zod").ZodString;
|
|
6154
6271
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6155
|
-
status: import("zod").
|
|
6272
|
+
status: import("zod").ZodEnum<{
|
|
6273
|
+
completed: "completed";
|
|
6274
|
+
failed: "failed";
|
|
6275
|
+
queued: "queued";
|
|
6276
|
+
running: "running";
|
|
6277
|
+
creating_knowledge: "creating_knowledge";
|
|
6278
|
+
stopped: "stopped";
|
|
6279
|
+
}>;
|
|
6156
6280
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6157
6281
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6158
6282
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6171,10 +6295,10 @@ export declare const sdk: {
|
|
|
6171
6295
|
status: import("zod").ZodEnum<{
|
|
6172
6296
|
pending: "pending";
|
|
6173
6297
|
failed: "failed";
|
|
6174
|
-
has_question: "has_question";
|
|
6175
|
-
passed: "passed";
|
|
6176
6298
|
running: "running";
|
|
6177
6299
|
stopped: "stopped";
|
|
6300
|
+
has_question: "has_question";
|
|
6301
|
+
passed: "passed";
|
|
6178
6302
|
skipped: "skipped";
|
|
6179
6303
|
}>;
|
|
6180
6304
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6216,7 +6340,14 @@ export declare const sdk: {
|
|
|
6216
6340
|
agent_id: import("zod").ZodNumber;
|
|
6217
6341
|
job_id: import("zod").ZodString;
|
|
6218
6342
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6219
|
-
status: import("zod").
|
|
6343
|
+
status: import("zod").ZodEnum<{
|
|
6344
|
+
completed: "completed";
|
|
6345
|
+
failed: "failed";
|
|
6346
|
+
queued: "queued";
|
|
6347
|
+
running: "running";
|
|
6348
|
+
creating_knowledge: "creating_knowledge";
|
|
6349
|
+
stopped: "stopped";
|
|
6350
|
+
}>;
|
|
6220
6351
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6221
6352
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6222
6353
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6235,10 +6366,10 @@ export declare const sdk: {
|
|
|
6235
6366
|
status: import("zod").ZodEnum<{
|
|
6236
6367
|
pending: "pending";
|
|
6237
6368
|
failed: "failed";
|
|
6238
|
-
has_question: "has_question";
|
|
6239
|
-
passed: "passed";
|
|
6240
6369
|
running: "running";
|
|
6241
6370
|
stopped: "stopped";
|
|
6371
|
+
has_question: "has_question";
|
|
6372
|
+
passed: "passed";
|
|
6242
6373
|
skipped: "skipped";
|
|
6243
6374
|
}>;
|
|
6244
6375
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6775,7 +6906,7 @@ export declare const sdk: {
|
|
|
6775
6906
|
error: string;
|
|
6776
6907
|
} | {
|
|
6777
6908
|
type: "task/status";
|
|
6778
|
-
status: "completed" | "failed" | "
|
|
6909
|
+
status: "completed" | "failed" | "running" | "stopped" | "has_question";
|
|
6779
6910
|
message?: string | undefined;
|
|
6780
6911
|
task_id?: string | undefined;
|
|
6781
6912
|
timestamp?: number | undefined;
|
|
@@ -6806,7 +6937,7 @@ export declare const sdk: {
|
|
|
6806
6937
|
error: string;
|
|
6807
6938
|
} | {
|
|
6808
6939
|
type: "task/status";
|
|
6809
|
-
status: "completed" | "failed" | "
|
|
6940
|
+
status: "completed" | "failed" | "running" | "stopped" | "has_question";
|
|
6810
6941
|
message?: string | undefined;
|
|
6811
6942
|
task_id?: string | undefined;
|
|
6812
6943
|
timestamp?: number | undefined;
|
|
@@ -6881,7 +7012,7 @@ export declare const sdk: {
|
|
|
6881
7012
|
type: "simulation/updated";
|
|
6882
7013
|
simulation_id: number;
|
|
6883
7014
|
application_id: number;
|
|
6884
|
-
status: "completed" | "failed" | "queued" | "running" | "
|
|
7015
|
+
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "stopped";
|
|
6885
7016
|
has_question?: boolean | undefined;
|
|
6886
7017
|
step_label?: string | undefined;
|
|
6887
7018
|
step_pending?: boolean | undefined;
|
|
@@ -6963,7 +7094,7 @@ export declare const sdk: {
|
|
|
6963
7094
|
type: "qa-document/updated";
|
|
6964
7095
|
document_id: number;
|
|
6965
7096
|
application_id: number;
|
|
6966
|
-
status:
|
|
7097
|
+
status: "pending" | "processing" | "waiting_review" | "completed" | "failed";
|
|
6967
7098
|
step_label?: string | undefined;
|
|
6968
7099
|
} | {
|
|
6969
7100
|
type: "qa-run/updated";
|
|
@@ -6979,7 +7110,7 @@ export declare const sdk: {
|
|
|
6979
7110
|
run_id: number;
|
|
6980
7111
|
document_id: number;
|
|
6981
7112
|
application_id: number;
|
|
6982
|
-
status:
|
|
7113
|
+
status: "failed" | "passed" | "needs_healing";
|
|
6983
7114
|
} | {
|
|
6984
7115
|
type: "qa-run/report-ready";
|
|
6985
7116
|
run_id: number;
|
|
@@ -6992,7 +7123,7 @@ export declare const sdk: {
|
|
|
6992
7123
|
type: "user/updated";
|
|
6993
7124
|
user_id: number;
|
|
6994
7125
|
workspace_id: number;
|
|
6995
|
-
status:
|
|
7126
|
+
status: "created" | "active" | "suspended" | "pending_approval";
|
|
6996
7127
|
} | {
|
|
6997
7128
|
type: "job/progress";
|
|
6998
7129
|
job_id: string;
|
|
@@ -7072,7 +7203,7 @@ export declare const sdk: {
|
|
|
7072
7203
|
type: "simulation/updated";
|
|
7073
7204
|
simulation_id: number;
|
|
7074
7205
|
application_id: number;
|
|
7075
|
-
status: "completed" | "failed" | "queued" | "running" | "
|
|
7206
|
+
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "stopped";
|
|
7076
7207
|
has_question?: boolean | undefined;
|
|
7077
7208
|
step_label?: string | undefined;
|
|
7078
7209
|
step_pending?: boolean | undefined;
|
|
@@ -7154,7 +7285,7 @@ export declare const sdk: {
|
|
|
7154
7285
|
type: "qa-document/updated";
|
|
7155
7286
|
document_id: number;
|
|
7156
7287
|
application_id: number;
|
|
7157
|
-
status:
|
|
7288
|
+
status: "pending" | "processing" | "waiting_review" | "completed" | "failed";
|
|
7158
7289
|
step_label?: string | undefined;
|
|
7159
7290
|
} | {
|
|
7160
7291
|
type: "qa-run/updated";
|
|
@@ -7170,7 +7301,7 @@ export declare const sdk: {
|
|
|
7170
7301
|
run_id: number;
|
|
7171
7302
|
document_id: number;
|
|
7172
7303
|
application_id: number;
|
|
7173
|
-
status:
|
|
7304
|
+
status: "failed" | "passed" | "needs_healing";
|
|
7174
7305
|
} | {
|
|
7175
7306
|
type: "qa-run/report-ready";
|
|
7176
7307
|
run_id: number;
|
|
@@ -7183,7 +7314,7 @@ export declare const sdk: {
|
|
|
7183
7314
|
type: "user/updated";
|
|
7184
7315
|
user_id: number;
|
|
7185
7316
|
workspace_id: number;
|
|
7186
|
-
status:
|
|
7317
|
+
status: "created" | "active" | "suspended" | "pending_approval";
|
|
7187
7318
|
} | {
|
|
7188
7319
|
type: "job/progress";
|
|
7189
7320
|
job_id: string;
|