@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/routes.d.ts
CHANGED
|
@@ -919,7 +919,6 @@ declare const contract: {
|
|
|
919
919
|
}>>;
|
|
920
920
|
status_message: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
921
921
|
learning_progress: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
922
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
923
922
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
924
923
|
}, z.core.$strip>>>>;
|
|
925
924
|
learning_started_at: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>>;
|
|
@@ -1002,7 +1001,14 @@ declare const contract: {
|
|
|
1002
1001
|
agent_id: z.ZodNumber;
|
|
1003
1002
|
job_id: z.ZodString;
|
|
1004
1003
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1005
|
-
status: z.
|
|
1004
|
+
status: z.ZodEnum<{
|
|
1005
|
+
completed: "completed";
|
|
1006
|
+
failed: "failed";
|
|
1007
|
+
queued: "queued";
|
|
1008
|
+
running: "running";
|
|
1009
|
+
creating_knowledge: "creating_knowledge";
|
|
1010
|
+
stopped: "stopped";
|
|
1011
|
+
}>;
|
|
1006
1012
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1007
1013
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1008
1014
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1021,10 +1027,10 @@ declare const contract: {
|
|
|
1021
1027
|
status: z.ZodEnum<{
|
|
1022
1028
|
pending: "pending";
|
|
1023
1029
|
failed: "failed";
|
|
1024
|
-
has_question: "has_question";
|
|
1025
|
-
passed: "passed";
|
|
1026
1030
|
running: "running";
|
|
1027
1031
|
stopped: "stopped";
|
|
1032
|
+
has_question: "has_question";
|
|
1033
|
+
passed: "passed";
|
|
1028
1034
|
skipped: "skipped";
|
|
1029
1035
|
}>;
|
|
1030
1036
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2757,7 +2763,6 @@ declare const contract: {
|
|
|
2757
2763
|
}>>;
|
|
2758
2764
|
status_message: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2759
2765
|
learning_progress: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2760
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
2761
2766
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
2762
2767
|
}, z.core.$strip>>>>;
|
|
2763
2768
|
learning_started_at: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>>;
|
|
@@ -2840,7 +2845,14 @@ declare const contract: {
|
|
|
2840
2845
|
agent_id: z.ZodNumber;
|
|
2841
2846
|
job_id: z.ZodString;
|
|
2842
2847
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2843
|
-
status: z.
|
|
2848
|
+
status: z.ZodEnum<{
|
|
2849
|
+
completed: "completed";
|
|
2850
|
+
failed: "failed";
|
|
2851
|
+
queued: "queued";
|
|
2852
|
+
running: "running";
|
|
2853
|
+
creating_knowledge: "creating_knowledge";
|
|
2854
|
+
stopped: "stopped";
|
|
2855
|
+
}>;
|
|
2844
2856
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2845
2857
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2846
2858
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2859,10 +2871,10 @@ declare const contract: {
|
|
|
2859
2871
|
status: z.ZodEnum<{
|
|
2860
2872
|
pending: "pending";
|
|
2861
2873
|
failed: "failed";
|
|
2862
|
-
has_question: "has_question";
|
|
2863
|
-
passed: "passed";
|
|
2864
2874
|
running: "running";
|
|
2865
2875
|
stopped: "stopped";
|
|
2876
|
+
has_question: "has_question";
|
|
2877
|
+
passed: "passed";
|
|
2866
2878
|
skipped: "skipped";
|
|
2867
2879
|
}>;
|
|
2868
2880
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2937,7 +2949,6 @@ declare const contract: {
|
|
|
2937
2949
|
}>;
|
|
2938
2950
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2939
2951
|
learning_progress: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2940
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
2941
2952
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
2942
2953
|
}, z.core.$strip>>>;
|
|
2943
2954
|
learning_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
@@ -3020,7 +3031,14 @@ declare const contract: {
|
|
|
3020
3031
|
agent_id: z.ZodNumber;
|
|
3021
3032
|
job_id: z.ZodString;
|
|
3022
3033
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3023
|
-
status: z.
|
|
3034
|
+
status: z.ZodEnum<{
|
|
3035
|
+
completed: "completed";
|
|
3036
|
+
failed: "failed";
|
|
3037
|
+
queued: "queued";
|
|
3038
|
+
running: "running";
|
|
3039
|
+
creating_knowledge: "creating_knowledge";
|
|
3040
|
+
stopped: "stopped";
|
|
3041
|
+
}>;
|
|
3024
3042
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3025
3043
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3026
3044
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3039,10 +3057,10 @@ declare const contract: {
|
|
|
3039
3057
|
status: z.ZodEnum<{
|
|
3040
3058
|
pending: "pending";
|
|
3041
3059
|
failed: "failed";
|
|
3042
|
-
has_question: "has_question";
|
|
3043
|
-
passed: "passed";
|
|
3044
3060
|
running: "running";
|
|
3045
3061
|
stopped: "stopped";
|
|
3062
|
+
has_question: "has_question";
|
|
3063
|
+
passed: "passed";
|
|
3046
3064
|
skipped: "skipped";
|
|
3047
3065
|
}>;
|
|
3048
3066
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3113,7 +3131,6 @@ declare const contract: {
|
|
|
3113
3131
|
}>;
|
|
3114
3132
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3115
3133
|
learning_progress: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3116
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3117
3134
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3118
3135
|
}, z.core.$strip>>>;
|
|
3119
3136
|
learning_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
@@ -3196,7 +3213,14 @@ declare const contract: {
|
|
|
3196
3213
|
agent_id: z.ZodNumber;
|
|
3197
3214
|
job_id: z.ZodString;
|
|
3198
3215
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3199
|
-
status: z.
|
|
3216
|
+
status: z.ZodEnum<{
|
|
3217
|
+
completed: "completed";
|
|
3218
|
+
failed: "failed";
|
|
3219
|
+
queued: "queued";
|
|
3220
|
+
running: "running";
|
|
3221
|
+
creating_knowledge: "creating_knowledge";
|
|
3222
|
+
stopped: "stopped";
|
|
3223
|
+
}>;
|
|
3200
3224
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3201
3225
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3202
3226
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3215,10 +3239,10 @@ declare const contract: {
|
|
|
3215
3239
|
status: z.ZodEnum<{
|
|
3216
3240
|
pending: "pending";
|
|
3217
3241
|
failed: "failed";
|
|
3218
|
-
has_question: "has_question";
|
|
3219
|
-
passed: "passed";
|
|
3220
3242
|
running: "running";
|
|
3221
3243
|
stopped: "stopped";
|
|
3244
|
+
has_question: "has_question";
|
|
3245
|
+
passed: "passed";
|
|
3222
3246
|
skipped: "skipped";
|
|
3223
3247
|
}>;
|
|
3224
3248
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3288,7 +3312,6 @@ declare const contract: {
|
|
|
3288
3312
|
}>;
|
|
3289
3313
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3290
3314
|
learning_progress: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3291
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3292
3315
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3293
3316
|
}, z.core.$strip>>>;
|
|
3294
3317
|
learning_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
@@ -3371,7 +3394,14 @@ declare const contract: {
|
|
|
3371
3394
|
agent_id: z.ZodNumber;
|
|
3372
3395
|
job_id: z.ZodString;
|
|
3373
3396
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3374
|
-
status: z.
|
|
3397
|
+
status: z.ZodEnum<{
|
|
3398
|
+
completed: "completed";
|
|
3399
|
+
failed: "failed";
|
|
3400
|
+
queued: "queued";
|
|
3401
|
+
running: "running";
|
|
3402
|
+
creating_knowledge: "creating_knowledge";
|
|
3403
|
+
stopped: "stopped";
|
|
3404
|
+
}>;
|
|
3375
3405
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3376
3406
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3377
3407
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3390,10 +3420,10 @@ declare const contract: {
|
|
|
3390
3420
|
status: z.ZodEnum<{
|
|
3391
3421
|
pending: "pending";
|
|
3392
3422
|
failed: "failed";
|
|
3393
|
-
has_question: "has_question";
|
|
3394
|
-
passed: "passed";
|
|
3395
3423
|
running: "running";
|
|
3396
3424
|
stopped: "stopped";
|
|
3425
|
+
has_question: "has_question";
|
|
3426
|
+
passed: "passed";
|
|
3397
3427
|
skipped: "skipped";
|
|
3398
3428
|
}>;
|
|
3399
3429
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3480,7 +3510,6 @@ declare const contract: {
|
|
|
3480
3510
|
}>>;
|
|
3481
3511
|
status_message: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3482
3512
|
learning_progress: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3483
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3484
3513
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3485
3514
|
}, z.core.$strip>>>>;
|
|
3486
3515
|
learning_started_at: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>>;
|
|
@@ -3563,7 +3592,14 @@ declare const contract: {
|
|
|
3563
3592
|
agent_id: z.ZodNumber;
|
|
3564
3593
|
job_id: z.ZodString;
|
|
3565
3594
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3566
|
-
status: z.
|
|
3595
|
+
status: z.ZodEnum<{
|
|
3596
|
+
completed: "completed";
|
|
3597
|
+
failed: "failed";
|
|
3598
|
+
queued: "queued";
|
|
3599
|
+
running: "running";
|
|
3600
|
+
creating_knowledge: "creating_knowledge";
|
|
3601
|
+
stopped: "stopped";
|
|
3602
|
+
}>;
|
|
3567
3603
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3568
3604
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3569
3605
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3582,10 +3618,10 @@ declare const contract: {
|
|
|
3582
3618
|
status: z.ZodEnum<{
|
|
3583
3619
|
pending: "pending";
|
|
3584
3620
|
failed: "failed";
|
|
3585
|
-
has_question: "has_question";
|
|
3586
|
-
passed: "passed";
|
|
3587
3621
|
running: "running";
|
|
3588
3622
|
stopped: "stopped";
|
|
3623
|
+
has_question: "has_question";
|
|
3624
|
+
passed: "passed";
|
|
3589
3625
|
skipped: "skipped";
|
|
3590
3626
|
}>;
|
|
3591
3627
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3649,7 +3685,6 @@ declare const contract: {
|
|
|
3649
3685
|
}>;
|
|
3650
3686
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3651
3687
|
learning_progress: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3652
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3653
3688
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3654
3689
|
}, z.core.$strip>>>;
|
|
3655
3690
|
learning_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
@@ -3732,7 +3767,14 @@ declare const contract: {
|
|
|
3732
3767
|
agent_id: z.ZodNumber;
|
|
3733
3768
|
job_id: z.ZodString;
|
|
3734
3769
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3735
|
-
status: z.
|
|
3770
|
+
status: z.ZodEnum<{
|
|
3771
|
+
completed: "completed";
|
|
3772
|
+
failed: "failed";
|
|
3773
|
+
queued: "queued";
|
|
3774
|
+
running: "running";
|
|
3775
|
+
creating_knowledge: "creating_knowledge";
|
|
3776
|
+
stopped: "stopped";
|
|
3777
|
+
}>;
|
|
3736
3778
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3737
3779
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3738
3780
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3751,10 +3793,10 @@ declare const contract: {
|
|
|
3751
3793
|
status: z.ZodEnum<{
|
|
3752
3794
|
pending: "pending";
|
|
3753
3795
|
failed: "failed";
|
|
3754
|
-
has_question: "has_question";
|
|
3755
|
-
passed: "passed";
|
|
3756
3796
|
running: "running";
|
|
3757
3797
|
stopped: "stopped";
|
|
3798
|
+
has_question: "has_question";
|
|
3799
|
+
passed: "passed";
|
|
3758
3800
|
skipped: "skipped";
|
|
3759
3801
|
}>;
|
|
3760
3802
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3823,7 +3865,6 @@ declare const contract: {
|
|
|
3823
3865
|
}>;
|
|
3824
3866
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3825
3867
|
learning_progress: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3826
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3827
3868
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3828
3869
|
}, z.core.$strip>>>;
|
|
3829
3870
|
learning_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
@@ -3906,7 +3947,14 @@ declare const contract: {
|
|
|
3906
3947
|
agent_id: z.ZodNumber;
|
|
3907
3948
|
job_id: z.ZodString;
|
|
3908
3949
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3909
|
-
status: z.
|
|
3950
|
+
status: z.ZodEnum<{
|
|
3951
|
+
completed: "completed";
|
|
3952
|
+
failed: "failed";
|
|
3953
|
+
queued: "queued";
|
|
3954
|
+
running: "running";
|
|
3955
|
+
creating_knowledge: "creating_knowledge";
|
|
3956
|
+
stopped: "stopped";
|
|
3957
|
+
}>;
|
|
3910
3958
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3911
3959
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3912
3960
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3925,10 +3973,10 @@ declare const contract: {
|
|
|
3925
3973
|
status: z.ZodEnum<{
|
|
3926
3974
|
pending: "pending";
|
|
3927
3975
|
failed: "failed";
|
|
3928
|
-
has_question: "has_question";
|
|
3929
|
-
passed: "passed";
|
|
3930
3976
|
running: "running";
|
|
3931
3977
|
stopped: "stopped";
|
|
3978
|
+
has_question: "has_question";
|
|
3979
|
+
passed: "passed";
|
|
3932
3980
|
skipped: "skipped";
|
|
3933
3981
|
}>;
|
|
3934
3982
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3994,7 +4042,6 @@ declare const contract: {
|
|
|
3994
4042
|
}>;
|
|
3995
4043
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3996
4044
|
learning_progress: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3997
|
-
vector_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3998
4045
|
graph_index_created: z.ZodNullable<z.ZodBoolean>;
|
|
3999
4046
|
}, z.core.$strip>>>;
|
|
4000
4047
|
learning_started_at: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
@@ -4077,7 +4124,14 @@ declare const contract: {
|
|
|
4077
4124
|
agent_id: z.ZodNumber;
|
|
4078
4125
|
job_id: z.ZodString;
|
|
4079
4126
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4080
|
-
status: z.
|
|
4127
|
+
status: z.ZodEnum<{
|
|
4128
|
+
completed: "completed";
|
|
4129
|
+
failed: "failed";
|
|
4130
|
+
queued: "queued";
|
|
4131
|
+
running: "running";
|
|
4132
|
+
creating_knowledge: "creating_knowledge";
|
|
4133
|
+
stopped: "stopped";
|
|
4134
|
+
}>;
|
|
4081
4135
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4082
4136
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4083
4137
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4096,10 +4150,10 @@ declare const contract: {
|
|
|
4096
4150
|
status: z.ZodEnum<{
|
|
4097
4151
|
pending: "pending";
|
|
4098
4152
|
failed: "failed";
|
|
4099
|
-
has_question: "has_question";
|
|
4100
|
-
passed: "passed";
|
|
4101
4153
|
running: "running";
|
|
4102
4154
|
stopped: "stopped";
|
|
4155
|
+
has_question: "has_question";
|
|
4156
|
+
passed: "passed";
|
|
4103
4157
|
skipped: "skipped";
|
|
4104
4158
|
}>;
|
|
4105
4159
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4429,7 +4483,14 @@ declare const contract: {
|
|
|
4429
4483
|
agent_id: z.ZodNumber;
|
|
4430
4484
|
job_id: z.ZodString;
|
|
4431
4485
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4432
|
-
status: z.
|
|
4486
|
+
status: z.ZodEnum<{
|
|
4487
|
+
completed: "completed";
|
|
4488
|
+
failed: "failed";
|
|
4489
|
+
queued: "queued";
|
|
4490
|
+
running: "running";
|
|
4491
|
+
creating_knowledge: "creating_knowledge";
|
|
4492
|
+
stopped: "stopped";
|
|
4493
|
+
}>;
|
|
4433
4494
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4434
4495
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4435
4496
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4448,10 +4509,10 @@ declare const contract: {
|
|
|
4448
4509
|
status: z.ZodEnum<{
|
|
4449
4510
|
pending: "pending";
|
|
4450
4511
|
failed: "failed";
|
|
4451
|
-
has_question: "has_question";
|
|
4452
|
-
passed: "passed";
|
|
4453
4512
|
running: "running";
|
|
4454
4513
|
stopped: "stopped";
|
|
4514
|
+
has_question: "has_question";
|
|
4515
|
+
passed: "passed";
|
|
4455
4516
|
skipped: "skipped";
|
|
4456
4517
|
}>;
|
|
4457
4518
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4497,12 +4558,20 @@ declare const contract: {
|
|
|
4497
4558
|
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
4498
4559
|
}, z.core.$strip>, z.ZodObject<{
|
|
4499
4560
|
items: z.ZodArray<z.ZodObject<{
|
|
4561
|
+
has_question: z.ZodOptional<z.ZodBoolean>;
|
|
4500
4562
|
id: z.ZodOptional<z.ZodNumber>;
|
|
4501
4563
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
4502
4564
|
updated_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
4503
4565
|
application_id: z.ZodNumber;
|
|
4504
4566
|
agent_id: z.ZodNumber;
|
|
4505
|
-
status: z.
|
|
4567
|
+
status: z.ZodEnum<{
|
|
4568
|
+
completed: "completed";
|
|
4569
|
+
failed: "failed";
|
|
4570
|
+
queued: "queued";
|
|
4571
|
+
running: "running";
|
|
4572
|
+
creating_knowledge: "creating_knowledge";
|
|
4573
|
+
stopped: "stopped";
|
|
4574
|
+
}>;
|
|
4506
4575
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4507
4576
|
agent_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4508
4577
|
source: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4515,7 +4584,6 @@ declare const contract: {
|
|
|
4515
4584
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4516
4585
|
}, z.core.$strip>>>;
|
|
4517
4586
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
4518
|
-
has_question: z.ZodOptional<z.ZodBoolean>;
|
|
4519
4587
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4520
4588
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4521
4589
|
job_id: z.ZodString;
|
|
@@ -4533,10 +4601,18 @@ declare const contract: {
|
|
|
4533
4601
|
offset: z.ZodNumber;
|
|
4534
4602
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
4535
4603
|
simulationStart: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
4604
|
+
has_question: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4536
4605
|
id: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
4537
4606
|
created_at: z.ZodOptional<z.ZodOptional<z.ZodCoercedDate<unknown>>>;
|
|
4538
4607
|
updated_at: z.ZodOptional<z.ZodOptional<z.ZodCoercedDate<unknown>>>;
|
|
4539
|
-
status: z.ZodOptional<z.
|
|
4608
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
4609
|
+
completed: "completed";
|
|
4610
|
+
failed: "failed";
|
|
4611
|
+
queued: "queued";
|
|
4612
|
+
running: "running";
|
|
4613
|
+
creating_knowledge: "creating_knowledge";
|
|
4614
|
+
stopped: "stopped";
|
|
4615
|
+
}>>;
|
|
4540
4616
|
path: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4541
4617
|
agent_name: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4542
4618
|
source: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
@@ -4550,7 +4626,6 @@ declare const contract: {
|
|
|
4550
4626
|
}, z.core.$strip>>>>;
|
|
4551
4627
|
pinned: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4552
4628
|
source_metadata: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
4553
|
-
has_question: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
4554
4629
|
status_message: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4555
4630
|
job_id: z.ZodOptional<z.ZodString>;
|
|
4556
4631
|
browser_session_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4579,7 +4654,14 @@ declare const contract: {
|
|
|
4579
4654
|
agent_id: z.ZodNumber;
|
|
4580
4655
|
job_id: z.ZodString;
|
|
4581
4656
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4582
|
-
status: z.
|
|
4657
|
+
status: z.ZodEnum<{
|
|
4658
|
+
completed: "completed";
|
|
4659
|
+
failed: "failed";
|
|
4660
|
+
queued: "queued";
|
|
4661
|
+
running: "running";
|
|
4662
|
+
creating_knowledge: "creating_knowledge";
|
|
4663
|
+
stopped: "stopped";
|
|
4664
|
+
}>;
|
|
4583
4665
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4584
4666
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4585
4667
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4598,10 +4680,10 @@ declare const contract: {
|
|
|
4598
4680
|
status: z.ZodEnum<{
|
|
4599
4681
|
pending: "pending";
|
|
4600
4682
|
failed: "failed";
|
|
4601
|
-
has_question: "has_question";
|
|
4602
|
-
passed: "passed";
|
|
4603
4683
|
running: "running";
|
|
4604
4684
|
stopped: "stopped";
|
|
4685
|
+
has_question: "has_question";
|
|
4686
|
+
passed: "passed";
|
|
4605
4687
|
skipped: "skipped";
|
|
4606
4688
|
}>;
|
|
4607
4689
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4632,7 +4714,14 @@ declare const contract: {
|
|
|
4632
4714
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
4633
4715
|
simulationUpdate: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
4634
4716
|
job_id: z.ZodOptional<z.ZodString>;
|
|
4635
|
-
status: z.ZodOptional<z.
|
|
4717
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
4718
|
+
completed: "completed";
|
|
4719
|
+
failed: "failed";
|
|
4720
|
+
queued: "queued";
|
|
4721
|
+
running: "running";
|
|
4722
|
+
creating_knowledge: "creating_knowledge";
|
|
4723
|
+
stopped: "stopped";
|
|
4724
|
+
}>>;
|
|
4636
4725
|
status_message: z.ZodOptional<z.ZodString>;
|
|
4637
4726
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
4638
4727
|
graph_index_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4645,7 +4734,14 @@ declare const contract: {
|
|
|
4645
4734
|
agent_id: z.ZodNumber;
|
|
4646
4735
|
job_id: z.ZodString;
|
|
4647
4736
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4648
|
-
status: z.
|
|
4737
|
+
status: z.ZodEnum<{
|
|
4738
|
+
completed: "completed";
|
|
4739
|
+
failed: "failed";
|
|
4740
|
+
queued: "queued";
|
|
4741
|
+
running: "running";
|
|
4742
|
+
creating_knowledge: "creating_knowledge";
|
|
4743
|
+
stopped: "stopped";
|
|
4744
|
+
}>;
|
|
4649
4745
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4650
4746
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4651
4747
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4664,10 +4760,10 @@ declare const contract: {
|
|
|
4664
4760
|
status: z.ZodEnum<{
|
|
4665
4761
|
pending: "pending";
|
|
4666
4762
|
failed: "failed";
|
|
4667
|
-
has_question: "has_question";
|
|
4668
|
-
passed: "passed";
|
|
4669
4763
|
running: "running";
|
|
4670
4764
|
stopped: "stopped";
|
|
4765
|
+
has_question: "has_question";
|
|
4766
|
+
passed: "passed";
|
|
4671
4767
|
skipped: "skipped";
|
|
4672
4768
|
}>;
|
|
4673
4769
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4707,7 +4803,14 @@ declare const contract: {
|
|
|
4707
4803
|
agent_id: z.ZodNumber;
|
|
4708
4804
|
job_id: z.ZodString;
|
|
4709
4805
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4710
|
-
status: z.
|
|
4806
|
+
status: z.ZodEnum<{
|
|
4807
|
+
completed: "completed";
|
|
4808
|
+
failed: "failed";
|
|
4809
|
+
queued: "queued";
|
|
4810
|
+
running: "running";
|
|
4811
|
+
creating_knowledge: "creating_knowledge";
|
|
4812
|
+
stopped: "stopped";
|
|
4813
|
+
}>;
|
|
4711
4814
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4712
4815
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4713
4816
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4726,10 +4829,10 @@ declare const contract: {
|
|
|
4726
4829
|
status: z.ZodEnum<{
|
|
4727
4830
|
pending: "pending";
|
|
4728
4831
|
failed: "failed";
|
|
4729
|
-
has_question: "has_question";
|
|
4730
|
-
passed: "passed";
|
|
4731
4832
|
running: "running";
|
|
4732
4833
|
stopped: "stopped";
|
|
4834
|
+
has_question: "has_question";
|
|
4835
|
+
passed: "passed";
|
|
4733
4836
|
skipped: "skipped";
|
|
4734
4837
|
}>;
|
|
4735
4838
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4765,7 +4868,14 @@ declare const contract: {
|
|
|
4765
4868
|
items: z.ZodArray<z.ZodObject<{
|
|
4766
4869
|
id: z.ZodNumber;
|
|
4767
4870
|
simulation_id: z.ZodNumber;
|
|
4768
|
-
status: z.
|
|
4871
|
+
status: z.ZodEnum<{
|
|
4872
|
+
completed: "completed";
|
|
4873
|
+
failed: "failed";
|
|
4874
|
+
queued: "queued";
|
|
4875
|
+
running: "running";
|
|
4876
|
+
stopped: "stopped";
|
|
4877
|
+
has_question: "has_question";
|
|
4878
|
+
}>;
|
|
4769
4879
|
status_message: z.ZodNullable<z.ZodString>;
|
|
4770
4880
|
skill: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4771
4881
|
screenshot_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4801,8 +4911,8 @@ declare const contract: {
|
|
|
4801
4911
|
status: z.ZodDefault<z.ZodEnum<{
|
|
4802
4912
|
completed: "completed";
|
|
4803
4913
|
failed: "failed";
|
|
4804
|
-
has_question: "has_question";
|
|
4805
4914
|
running: "running";
|
|
4915
|
+
has_question: "has_question";
|
|
4806
4916
|
}>>;
|
|
4807
4917
|
started_at: z.ZodString;
|
|
4808
4918
|
ended_at: z.ZodString;
|
|
@@ -5794,11 +5904,11 @@ declare const contract: {
|
|
|
5794
5904
|
simulation_task_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5795
5905
|
status: z.ZodEnum<{
|
|
5796
5906
|
failed: "failed";
|
|
5797
|
-
passed: "passed";
|
|
5798
|
-
needs_healing: "needs_healing";
|
|
5799
5907
|
queued: "queued";
|
|
5800
5908
|
running: "running";
|
|
5801
5909
|
stopped: "stopped";
|
|
5910
|
+
passed: "passed";
|
|
5911
|
+
needs_healing: "needs_healing";
|
|
5802
5912
|
}>;
|
|
5803
5913
|
verdict: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5804
5914
|
proposed_steps: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -6086,7 +6196,14 @@ declare const contract: {
|
|
|
6086
6196
|
agent_id: z.ZodNumber;
|
|
6087
6197
|
job_id: z.ZodString;
|
|
6088
6198
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6089
|
-
status: z.
|
|
6199
|
+
status: z.ZodEnum<{
|
|
6200
|
+
completed: "completed";
|
|
6201
|
+
failed: "failed";
|
|
6202
|
+
queued: "queued";
|
|
6203
|
+
running: "running";
|
|
6204
|
+
creating_knowledge: "creating_knowledge";
|
|
6205
|
+
stopped: "stopped";
|
|
6206
|
+
}>;
|
|
6090
6207
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6091
6208
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6092
6209
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6105,10 +6222,10 @@ declare const contract: {
|
|
|
6105
6222
|
status: z.ZodEnum<{
|
|
6106
6223
|
pending: "pending";
|
|
6107
6224
|
failed: "failed";
|
|
6108
|
-
has_question: "has_question";
|
|
6109
|
-
passed: "passed";
|
|
6110
6225
|
running: "running";
|
|
6111
6226
|
stopped: "stopped";
|
|
6227
|
+
has_question: "has_question";
|
|
6228
|
+
passed: "passed";
|
|
6112
6229
|
skipped: "skipped";
|
|
6113
6230
|
}>;
|
|
6114
6231
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6149,7 +6266,14 @@ declare const contract: {
|
|
|
6149
6266
|
agent_id: z.ZodNumber;
|
|
6150
6267
|
job_id: z.ZodString;
|
|
6151
6268
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6152
|
-
status: z.
|
|
6269
|
+
status: z.ZodEnum<{
|
|
6270
|
+
completed: "completed";
|
|
6271
|
+
failed: "failed";
|
|
6272
|
+
queued: "queued";
|
|
6273
|
+
running: "running";
|
|
6274
|
+
creating_knowledge: "creating_knowledge";
|
|
6275
|
+
stopped: "stopped";
|
|
6276
|
+
}>;
|
|
6153
6277
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6154
6278
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6155
6279
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6168,10 +6292,10 @@ declare const contract: {
|
|
|
6168
6292
|
status: z.ZodEnum<{
|
|
6169
6293
|
pending: "pending";
|
|
6170
6294
|
failed: "failed";
|
|
6171
|
-
has_question: "has_question";
|
|
6172
|
-
passed: "passed";
|
|
6173
6295
|
running: "running";
|
|
6174
6296
|
stopped: "stopped";
|
|
6297
|
+
has_question: "has_question";
|
|
6298
|
+
passed: "passed";
|
|
6175
6299
|
skipped: "skipped";
|
|
6176
6300
|
}>;
|
|
6177
6301
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6213,7 +6337,14 @@ declare const contract: {
|
|
|
6213
6337
|
agent_id: z.ZodNumber;
|
|
6214
6338
|
job_id: z.ZodString;
|
|
6215
6339
|
browser_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6216
|
-
status: z.
|
|
6340
|
+
status: z.ZodEnum<{
|
|
6341
|
+
completed: "completed";
|
|
6342
|
+
failed: "failed";
|
|
6343
|
+
queued: "queued";
|
|
6344
|
+
running: "running";
|
|
6345
|
+
creating_knowledge: "creating_knowledge";
|
|
6346
|
+
stopped: "stopped";
|
|
6347
|
+
}>;
|
|
6217
6348
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6218
6349
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6219
6350
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6232,10 +6363,10 @@ declare const contract: {
|
|
|
6232
6363
|
status: z.ZodEnum<{
|
|
6233
6364
|
pending: "pending";
|
|
6234
6365
|
failed: "failed";
|
|
6235
|
-
has_question: "has_question";
|
|
6236
|
-
passed: "passed";
|
|
6237
6366
|
running: "running";
|
|
6238
6367
|
stopped: "stopped";
|
|
6368
|
+
has_question: "has_question";
|
|
6369
|
+
passed: "passed";
|
|
6239
6370
|
skipped: "skipped";
|
|
6240
6371
|
}>;
|
|
6241
6372
|
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6772,7 +6903,7 @@ declare const contract: {
|
|
|
6772
6903
|
error: string;
|
|
6773
6904
|
} | {
|
|
6774
6905
|
type: "task/status";
|
|
6775
|
-
status: "completed" | "failed" | "
|
|
6906
|
+
status: "completed" | "failed" | "running" | "stopped" | "has_question";
|
|
6776
6907
|
message?: string | undefined;
|
|
6777
6908
|
task_id?: string | undefined;
|
|
6778
6909
|
timestamp?: number | undefined;
|
|
@@ -6803,7 +6934,7 @@ declare const contract: {
|
|
|
6803
6934
|
error: string;
|
|
6804
6935
|
} | {
|
|
6805
6936
|
type: "task/status";
|
|
6806
|
-
status: "completed" | "failed" | "
|
|
6937
|
+
status: "completed" | "failed" | "running" | "stopped" | "has_question";
|
|
6807
6938
|
message?: string | undefined;
|
|
6808
6939
|
task_id?: string | undefined;
|
|
6809
6940
|
timestamp?: number | undefined;
|
|
@@ -6878,7 +7009,7 @@ declare const contract: {
|
|
|
6878
7009
|
type: "simulation/updated";
|
|
6879
7010
|
simulation_id: number;
|
|
6880
7011
|
application_id: number;
|
|
6881
|
-
status: "completed" | "failed" | "queued" | "running" | "
|
|
7012
|
+
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "stopped";
|
|
6882
7013
|
has_question?: boolean | undefined;
|
|
6883
7014
|
step_label?: string | undefined;
|
|
6884
7015
|
step_pending?: boolean | undefined;
|
|
@@ -6960,7 +7091,7 @@ declare const contract: {
|
|
|
6960
7091
|
type: "qa-document/updated";
|
|
6961
7092
|
document_id: number;
|
|
6962
7093
|
application_id: number;
|
|
6963
|
-
status:
|
|
7094
|
+
status: "pending" | "processing" | "waiting_review" | "completed" | "failed";
|
|
6964
7095
|
step_label?: string | undefined;
|
|
6965
7096
|
} | {
|
|
6966
7097
|
type: "qa-run/updated";
|
|
@@ -6976,7 +7107,7 @@ declare const contract: {
|
|
|
6976
7107
|
run_id: number;
|
|
6977
7108
|
document_id: number;
|
|
6978
7109
|
application_id: number;
|
|
6979
|
-
status:
|
|
7110
|
+
status: "failed" | "passed" | "needs_healing";
|
|
6980
7111
|
} | {
|
|
6981
7112
|
type: "qa-run/report-ready";
|
|
6982
7113
|
run_id: number;
|
|
@@ -6989,7 +7120,7 @@ declare const contract: {
|
|
|
6989
7120
|
type: "user/updated";
|
|
6990
7121
|
user_id: number;
|
|
6991
7122
|
workspace_id: number;
|
|
6992
|
-
status:
|
|
7123
|
+
status: "created" | "active" | "suspended" | "pending_approval";
|
|
6993
7124
|
} | {
|
|
6994
7125
|
type: "job/progress";
|
|
6995
7126
|
job_id: string;
|
|
@@ -7069,7 +7200,7 @@ declare const contract: {
|
|
|
7069
7200
|
type: "simulation/updated";
|
|
7070
7201
|
simulation_id: number;
|
|
7071
7202
|
application_id: number;
|
|
7072
|
-
status: "completed" | "failed" | "queued" | "running" | "
|
|
7203
|
+
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "stopped";
|
|
7073
7204
|
has_question?: boolean | undefined;
|
|
7074
7205
|
step_label?: string | undefined;
|
|
7075
7206
|
step_pending?: boolean | undefined;
|
|
@@ -7151,7 +7282,7 @@ declare const contract: {
|
|
|
7151
7282
|
type: "qa-document/updated";
|
|
7152
7283
|
document_id: number;
|
|
7153
7284
|
application_id: number;
|
|
7154
|
-
status:
|
|
7285
|
+
status: "pending" | "processing" | "waiting_review" | "completed" | "failed";
|
|
7155
7286
|
step_label?: string | undefined;
|
|
7156
7287
|
} | {
|
|
7157
7288
|
type: "qa-run/updated";
|
|
@@ -7167,7 +7298,7 @@ declare const contract: {
|
|
|
7167
7298
|
run_id: number;
|
|
7168
7299
|
document_id: number;
|
|
7169
7300
|
application_id: number;
|
|
7170
|
-
status:
|
|
7301
|
+
status: "failed" | "passed" | "needs_healing";
|
|
7171
7302
|
} | {
|
|
7172
7303
|
type: "qa-run/report-ready";
|
|
7173
7304
|
run_id: number;
|
|
@@ -7180,7 +7311,7 @@ declare const contract: {
|
|
|
7180
7311
|
type: "user/updated";
|
|
7181
7312
|
user_id: number;
|
|
7182
7313
|
workspace_id: number;
|
|
7183
|
-
status:
|
|
7314
|
+
status: "created" | "active" | "suspended" | "pending_approval";
|
|
7184
7315
|
} | {
|
|
7185
7316
|
type: "job/progress";
|
|
7186
7317
|
job_id: string;
|