@marketrix.ai/widget 3.3.237 → 3.3.239
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 +353 -95
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/routes.d.ts +353 -95
- package/dist/src/sdk/routes.d.ts.map +1 -1
- package/dist/src/sdk/schema.d.ts +320 -73
- 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
|
@@ -1004,7 +1004,14 @@ export declare const sdk: {
|
|
|
1004
1004
|
agent_id: import("zod").ZodNumber;
|
|
1005
1005
|
job_id: import("zod").ZodString;
|
|
1006
1006
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1007
|
-
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
|
+
}>;
|
|
1008
1015
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1009
1016
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1010
1017
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -1023,10 +1030,10 @@ export declare const sdk: {
|
|
|
1023
1030
|
status: import("zod").ZodEnum<{
|
|
1024
1031
|
pending: "pending";
|
|
1025
1032
|
failed: "failed";
|
|
1026
|
-
has_question: "has_question";
|
|
1027
|
-
passed: "passed";
|
|
1028
1033
|
running: "running";
|
|
1029
1034
|
stopped: "stopped";
|
|
1035
|
+
has_question: "has_question";
|
|
1036
|
+
passed: "passed";
|
|
1030
1037
|
skipped: "skipped";
|
|
1031
1038
|
}>;
|
|
1032
1039
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -1047,7 +1054,12 @@ export declare const sdk: {
|
|
|
1047
1054
|
agent_name: import("zod").ZodString;
|
|
1048
1055
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1049
1056
|
}, import("zod/v4/core").$strip>>>;
|
|
1050
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
1057
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1058
|
+
pending: "pending";
|
|
1059
|
+
completed: "completed";
|
|
1060
|
+
failed: "failed";
|
|
1061
|
+
generating: "generating";
|
|
1062
|
+
}>>;
|
|
1051
1063
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1052
1064
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1053
1065
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2841,7 +2853,14 @@ export declare const sdk: {
|
|
|
2841
2853
|
agent_id: import("zod").ZodNumber;
|
|
2842
2854
|
job_id: import("zod").ZodString;
|
|
2843
2855
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2844
|
-
status: import("zod").
|
|
2856
|
+
status: import("zod").ZodEnum<{
|
|
2857
|
+
completed: "completed";
|
|
2858
|
+
failed: "failed";
|
|
2859
|
+
queued: "queued";
|
|
2860
|
+
running: "running";
|
|
2861
|
+
creating_knowledge: "creating_knowledge";
|
|
2862
|
+
stopped: "stopped";
|
|
2863
|
+
}>;
|
|
2845
2864
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2846
2865
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2847
2866
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2860,10 +2879,10 @@ export declare const sdk: {
|
|
|
2860
2879
|
status: import("zod").ZodEnum<{
|
|
2861
2880
|
pending: "pending";
|
|
2862
2881
|
failed: "failed";
|
|
2863
|
-
has_question: "has_question";
|
|
2864
|
-
passed: "passed";
|
|
2865
2882
|
running: "running";
|
|
2866
2883
|
stopped: "stopped";
|
|
2884
|
+
has_question: "has_question";
|
|
2885
|
+
passed: "passed";
|
|
2867
2886
|
skipped: "skipped";
|
|
2868
2887
|
}>;
|
|
2869
2888
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2884,7 +2903,12 @@ export declare const sdk: {
|
|
|
2884
2903
|
agent_name: import("zod").ZodString;
|
|
2885
2904
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2886
2905
|
}, import("zod/v4/core").$strip>>>;
|
|
2887
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
2906
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2907
|
+
pending: "pending";
|
|
2908
|
+
completed: "completed";
|
|
2909
|
+
failed: "failed";
|
|
2910
|
+
generating: "generating";
|
|
2911
|
+
}>>;
|
|
2888
2912
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2889
2913
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2890
2914
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3020,7 +3044,14 @@ export declare const sdk: {
|
|
|
3020
3044
|
agent_id: import("zod").ZodNumber;
|
|
3021
3045
|
job_id: import("zod").ZodString;
|
|
3022
3046
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3023
|
-
status: import("zod").
|
|
3047
|
+
status: import("zod").ZodEnum<{
|
|
3048
|
+
completed: "completed";
|
|
3049
|
+
failed: "failed";
|
|
3050
|
+
queued: "queued";
|
|
3051
|
+
running: "running";
|
|
3052
|
+
creating_knowledge: "creating_knowledge";
|
|
3053
|
+
stopped: "stopped";
|
|
3054
|
+
}>;
|
|
3024
3055
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3025
3056
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3026
3057
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3039,10 +3070,10 @@ export declare const sdk: {
|
|
|
3039
3070
|
status: import("zod").ZodEnum<{
|
|
3040
3071
|
pending: "pending";
|
|
3041
3072
|
failed: "failed";
|
|
3042
|
-
has_question: "has_question";
|
|
3043
|
-
passed: "passed";
|
|
3044
3073
|
running: "running";
|
|
3045
3074
|
stopped: "stopped";
|
|
3075
|
+
has_question: "has_question";
|
|
3076
|
+
passed: "passed";
|
|
3046
3077
|
skipped: "skipped";
|
|
3047
3078
|
}>;
|
|
3048
3079
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3063,7 +3094,12 @@ export declare const sdk: {
|
|
|
3063
3094
|
agent_name: import("zod").ZodString;
|
|
3064
3095
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3065
3096
|
}, import("zod/v4/core").$strip>>>;
|
|
3066
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
3097
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3098
|
+
pending: "pending";
|
|
3099
|
+
completed: "completed";
|
|
3100
|
+
failed: "failed";
|
|
3101
|
+
generating: "generating";
|
|
3102
|
+
}>>;
|
|
3067
3103
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3068
3104
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3069
3105
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3195,7 +3231,14 @@ export declare const sdk: {
|
|
|
3195
3231
|
agent_id: import("zod").ZodNumber;
|
|
3196
3232
|
job_id: import("zod").ZodString;
|
|
3197
3233
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3198
|
-
status: import("zod").
|
|
3234
|
+
status: import("zod").ZodEnum<{
|
|
3235
|
+
completed: "completed";
|
|
3236
|
+
failed: "failed";
|
|
3237
|
+
queued: "queued";
|
|
3238
|
+
running: "running";
|
|
3239
|
+
creating_knowledge: "creating_knowledge";
|
|
3240
|
+
stopped: "stopped";
|
|
3241
|
+
}>;
|
|
3199
3242
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3200
3243
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3201
3244
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3214,10 +3257,10 @@ export declare const sdk: {
|
|
|
3214
3257
|
status: import("zod").ZodEnum<{
|
|
3215
3258
|
pending: "pending";
|
|
3216
3259
|
failed: "failed";
|
|
3217
|
-
has_question: "has_question";
|
|
3218
|
-
passed: "passed";
|
|
3219
3260
|
running: "running";
|
|
3220
3261
|
stopped: "stopped";
|
|
3262
|
+
has_question: "has_question";
|
|
3263
|
+
passed: "passed";
|
|
3221
3264
|
skipped: "skipped";
|
|
3222
3265
|
}>;
|
|
3223
3266
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3238,7 +3281,12 @@ export declare const sdk: {
|
|
|
3238
3281
|
agent_name: import("zod").ZodString;
|
|
3239
3282
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3240
3283
|
}, import("zod/v4/core").$strip>>>;
|
|
3241
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
3284
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3285
|
+
pending: "pending";
|
|
3286
|
+
completed: "completed";
|
|
3287
|
+
failed: "failed";
|
|
3288
|
+
generating: "generating";
|
|
3289
|
+
}>>;
|
|
3242
3290
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3243
3291
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3244
3292
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3369,7 +3417,14 @@ export declare const sdk: {
|
|
|
3369
3417
|
agent_id: import("zod").ZodNumber;
|
|
3370
3418
|
job_id: import("zod").ZodString;
|
|
3371
3419
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3372
|
-
status: import("zod").
|
|
3420
|
+
status: import("zod").ZodEnum<{
|
|
3421
|
+
completed: "completed";
|
|
3422
|
+
failed: "failed";
|
|
3423
|
+
queued: "queued";
|
|
3424
|
+
running: "running";
|
|
3425
|
+
creating_knowledge: "creating_knowledge";
|
|
3426
|
+
stopped: "stopped";
|
|
3427
|
+
}>;
|
|
3373
3428
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3374
3429
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3375
3430
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3388,10 +3443,10 @@ export declare const sdk: {
|
|
|
3388
3443
|
status: import("zod").ZodEnum<{
|
|
3389
3444
|
pending: "pending";
|
|
3390
3445
|
failed: "failed";
|
|
3391
|
-
has_question: "has_question";
|
|
3392
|
-
passed: "passed";
|
|
3393
3446
|
running: "running";
|
|
3394
3447
|
stopped: "stopped";
|
|
3448
|
+
has_question: "has_question";
|
|
3449
|
+
passed: "passed";
|
|
3395
3450
|
skipped: "skipped";
|
|
3396
3451
|
}>;
|
|
3397
3452
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3412,7 +3467,12 @@ export declare const sdk: {
|
|
|
3412
3467
|
agent_name: import("zod").ZodString;
|
|
3413
3468
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3414
3469
|
}, import("zod/v4/core").$strip>>>;
|
|
3415
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
3470
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3471
|
+
pending: "pending";
|
|
3472
|
+
completed: "completed";
|
|
3473
|
+
failed: "failed";
|
|
3474
|
+
generating: "generating";
|
|
3475
|
+
}>>;
|
|
3416
3476
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3417
3477
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3418
3478
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3560,7 +3620,14 @@ export declare const sdk: {
|
|
|
3560
3620
|
agent_id: import("zod").ZodNumber;
|
|
3561
3621
|
job_id: import("zod").ZodString;
|
|
3562
3622
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3563
|
-
status: import("zod").
|
|
3623
|
+
status: import("zod").ZodEnum<{
|
|
3624
|
+
completed: "completed";
|
|
3625
|
+
failed: "failed";
|
|
3626
|
+
queued: "queued";
|
|
3627
|
+
running: "running";
|
|
3628
|
+
creating_knowledge: "creating_knowledge";
|
|
3629
|
+
stopped: "stopped";
|
|
3630
|
+
}>;
|
|
3564
3631
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3565
3632
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3566
3633
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3579,10 +3646,10 @@ export declare const sdk: {
|
|
|
3579
3646
|
status: import("zod").ZodEnum<{
|
|
3580
3647
|
pending: "pending";
|
|
3581
3648
|
failed: "failed";
|
|
3582
|
-
has_question: "has_question";
|
|
3583
|
-
passed: "passed";
|
|
3584
3649
|
running: "running";
|
|
3585
3650
|
stopped: "stopped";
|
|
3651
|
+
has_question: "has_question";
|
|
3652
|
+
passed: "passed";
|
|
3586
3653
|
skipped: "skipped";
|
|
3587
3654
|
}>;
|
|
3588
3655
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3603,7 +3670,12 @@ export declare const sdk: {
|
|
|
3603
3670
|
agent_name: import("zod").ZodString;
|
|
3604
3671
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3605
3672
|
}, import("zod/v4/core").$strip>>>;
|
|
3606
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
3673
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3674
|
+
pending: "pending";
|
|
3675
|
+
completed: "completed";
|
|
3676
|
+
failed: "failed";
|
|
3677
|
+
generating: "generating";
|
|
3678
|
+
}>>;
|
|
3607
3679
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3608
3680
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3609
3681
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3728,7 +3800,14 @@ export declare const sdk: {
|
|
|
3728
3800
|
agent_id: import("zod").ZodNumber;
|
|
3729
3801
|
job_id: import("zod").ZodString;
|
|
3730
3802
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3731
|
-
status: import("zod").
|
|
3803
|
+
status: import("zod").ZodEnum<{
|
|
3804
|
+
completed: "completed";
|
|
3805
|
+
failed: "failed";
|
|
3806
|
+
queued: "queued";
|
|
3807
|
+
running: "running";
|
|
3808
|
+
creating_knowledge: "creating_knowledge";
|
|
3809
|
+
stopped: "stopped";
|
|
3810
|
+
}>;
|
|
3732
3811
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3733
3812
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3734
3813
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3747,10 +3826,10 @@ export declare const sdk: {
|
|
|
3747
3826
|
status: import("zod").ZodEnum<{
|
|
3748
3827
|
pending: "pending";
|
|
3749
3828
|
failed: "failed";
|
|
3750
|
-
has_question: "has_question";
|
|
3751
|
-
passed: "passed";
|
|
3752
3829
|
running: "running";
|
|
3753
3830
|
stopped: "stopped";
|
|
3831
|
+
has_question: "has_question";
|
|
3832
|
+
passed: "passed";
|
|
3754
3833
|
skipped: "skipped";
|
|
3755
3834
|
}>;
|
|
3756
3835
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3771,7 +3850,12 @@ export declare const sdk: {
|
|
|
3771
3850
|
agent_name: import("zod").ZodString;
|
|
3772
3851
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3773
3852
|
}, import("zod/v4/core").$strip>>>;
|
|
3774
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
3853
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3854
|
+
pending: "pending";
|
|
3855
|
+
completed: "completed";
|
|
3856
|
+
failed: "failed";
|
|
3857
|
+
generating: "generating";
|
|
3858
|
+
}>>;
|
|
3775
3859
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3776
3860
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3777
3861
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3901,7 +3985,14 @@ export declare const sdk: {
|
|
|
3901
3985
|
agent_id: import("zod").ZodNumber;
|
|
3902
3986
|
job_id: import("zod").ZodString;
|
|
3903
3987
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3904
|
-
status: import("zod").
|
|
3988
|
+
status: import("zod").ZodEnum<{
|
|
3989
|
+
completed: "completed";
|
|
3990
|
+
failed: "failed";
|
|
3991
|
+
queued: "queued";
|
|
3992
|
+
running: "running";
|
|
3993
|
+
creating_knowledge: "creating_knowledge";
|
|
3994
|
+
stopped: "stopped";
|
|
3995
|
+
}>;
|
|
3905
3996
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3906
3997
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3907
3998
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3920,10 +4011,10 @@ export declare const sdk: {
|
|
|
3920
4011
|
status: import("zod").ZodEnum<{
|
|
3921
4012
|
pending: "pending";
|
|
3922
4013
|
failed: "failed";
|
|
3923
|
-
has_question: "has_question";
|
|
3924
|
-
passed: "passed";
|
|
3925
4014
|
running: "running";
|
|
3926
4015
|
stopped: "stopped";
|
|
4016
|
+
has_question: "has_question";
|
|
4017
|
+
passed: "passed";
|
|
3927
4018
|
skipped: "skipped";
|
|
3928
4019
|
}>;
|
|
3929
4020
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -3944,7 +4035,12 @@ export declare const sdk: {
|
|
|
3944
4035
|
agent_name: import("zod").ZodString;
|
|
3945
4036
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3946
4037
|
}, import("zod/v4/core").$strip>>>;
|
|
3947
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
4038
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4039
|
+
pending: "pending";
|
|
4040
|
+
completed: "completed";
|
|
4041
|
+
failed: "failed";
|
|
4042
|
+
generating: "generating";
|
|
4043
|
+
}>>;
|
|
3948
4044
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3949
4045
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3950
4046
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4071,7 +4167,14 @@ export declare const sdk: {
|
|
|
4071
4167
|
agent_id: import("zod").ZodNumber;
|
|
4072
4168
|
job_id: import("zod").ZodString;
|
|
4073
4169
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4074
|
-
status: import("zod").
|
|
4170
|
+
status: import("zod").ZodEnum<{
|
|
4171
|
+
completed: "completed";
|
|
4172
|
+
failed: "failed";
|
|
4173
|
+
queued: "queued";
|
|
4174
|
+
running: "running";
|
|
4175
|
+
creating_knowledge: "creating_knowledge";
|
|
4176
|
+
stopped: "stopped";
|
|
4177
|
+
}>;
|
|
4075
4178
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4076
4179
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4077
4180
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4090,10 +4193,10 @@ export declare const sdk: {
|
|
|
4090
4193
|
status: import("zod").ZodEnum<{
|
|
4091
4194
|
pending: "pending";
|
|
4092
4195
|
failed: "failed";
|
|
4093
|
-
has_question: "has_question";
|
|
4094
|
-
passed: "passed";
|
|
4095
4196
|
running: "running";
|
|
4096
4197
|
stopped: "stopped";
|
|
4198
|
+
has_question: "has_question";
|
|
4199
|
+
passed: "passed";
|
|
4097
4200
|
skipped: "skipped";
|
|
4098
4201
|
}>;
|
|
4099
4202
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4114,7 +4217,12 @@ export declare const sdk: {
|
|
|
4114
4217
|
agent_name: import("zod").ZodString;
|
|
4115
4218
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4116
4219
|
}, import("zod/v4/core").$strip>>>;
|
|
4117
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
4220
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4221
|
+
pending: "pending";
|
|
4222
|
+
completed: "completed";
|
|
4223
|
+
failed: "failed";
|
|
4224
|
+
generating: "generating";
|
|
4225
|
+
}>>;
|
|
4118
4226
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4119
4227
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4120
4228
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4423,7 +4531,14 @@ export declare const sdk: {
|
|
|
4423
4531
|
agent_id: import("zod").ZodNumber;
|
|
4424
4532
|
job_id: import("zod").ZodString;
|
|
4425
4533
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4426
|
-
status: import("zod").
|
|
4534
|
+
status: import("zod").ZodEnum<{
|
|
4535
|
+
completed: "completed";
|
|
4536
|
+
failed: "failed";
|
|
4537
|
+
queued: "queued";
|
|
4538
|
+
running: "running";
|
|
4539
|
+
creating_knowledge: "creating_knowledge";
|
|
4540
|
+
stopped: "stopped";
|
|
4541
|
+
}>;
|
|
4427
4542
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4428
4543
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4429
4544
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4442,10 +4557,10 @@ export declare const sdk: {
|
|
|
4442
4557
|
status: import("zod").ZodEnum<{
|
|
4443
4558
|
pending: "pending";
|
|
4444
4559
|
failed: "failed";
|
|
4445
|
-
has_question: "has_question";
|
|
4446
|
-
passed: "passed";
|
|
4447
4560
|
running: "running";
|
|
4448
4561
|
stopped: "stopped";
|
|
4562
|
+
has_question: "has_question";
|
|
4563
|
+
passed: "passed";
|
|
4449
4564
|
skipped: "skipped";
|
|
4450
4565
|
}>;
|
|
4451
4566
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4466,7 +4581,12 @@ export declare const sdk: {
|
|
|
4466
4581
|
agent_name: import("zod").ZodString;
|
|
4467
4582
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4468
4583
|
}, import("zod/v4/core").$strip>>>;
|
|
4469
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
4584
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4585
|
+
pending: "pending";
|
|
4586
|
+
completed: "completed";
|
|
4587
|
+
failed: "failed";
|
|
4588
|
+
generating: "generating";
|
|
4589
|
+
}>>;
|
|
4470
4590
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4471
4591
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4472
4592
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4491,12 +4611,20 @@ export declare const sdk: {
|
|
|
4491
4611
|
offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodCoercedNumber<unknown>>>;
|
|
4492
4612
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4493
4613
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4614
|
+
has_question: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4494
4615
|
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4495
4616
|
created_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
4496
4617
|
updated_at: import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>;
|
|
4497
4618
|
application_id: import("zod").ZodNumber;
|
|
4498
4619
|
agent_id: import("zod").ZodNumber;
|
|
4499
|
-
status: import("zod").
|
|
4620
|
+
status: import("zod").ZodEnum<{
|
|
4621
|
+
completed: "completed";
|
|
4622
|
+
failed: "failed";
|
|
4623
|
+
queued: "queued";
|
|
4624
|
+
running: "running";
|
|
4625
|
+
creating_knowledge: "creating_knowledge";
|
|
4626
|
+
stopped: "stopped";
|
|
4627
|
+
}>;
|
|
4500
4628
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4501
4629
|
agent_name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4502
4630
|
source: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4509,13 +4637,17 @@ export declare const sdk: {
|
|
|
4509
4637
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4510
4638
|
}, import("zod/v4/core").$strip>>>;
|
|
4511
4639
|
pinned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4512
|
-
has_question: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4513
4640
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4514
4641
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4515
4642
|
job_id: import("zod").ZodString;
|
|
4516
4643
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4517
4644
|
graph_index_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4518
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
4645
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4646
|
+
pending: "pending";
|
|
4647
|
+
completed: "completed";
|
|
4648
|
+
failed: "failed";
|
|
4649
|
+
generating: "generating";
|
|
4650
|
+
}>>;
|
|
4519
4651
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4520
4652
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4521
4653
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4527,10 +4659,18 @@ export declare const sdk: {
|
|
|
4527
4659
|
offset: import("zod").ZodNumber;
|
|
4528
4660
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4529
4661
|
simulationStart: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4662
|
+
has_question: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4530
4663
|
id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4531
4664
|
created_at: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>>;
|
|
4532
4665
|
updated_at: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodCoercedDate<unknown>>>;
|
|
4533
|
-
status: import("zod").ZodOptional<import("zod").
|
|
4666
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4667
|
+
completed: "completed";
|
|
4668
|
+
failed: "failed";
|
|
4669
|
+
queued: "queued";
|
|
4670
|
+
running: "running";
|
|
4671
|
+
creating_knowledge: "creating_knowledge";
|
|
4672
|
+
stopped: "stopped";
|
|
4673
|
+
}>>;
|
|
4534
4674
|
path: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4535
4675
|
agent_name: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4536
4676
|
source: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4544,12 +4684,16 @@ export declare const sdk: {
|
|
|
4544
4684
|
}, import("zod/v4/core").$strip>>>>;
|
|
4545
4685
|
pinned: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4546
4686
|
source_metadata: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>>;
|
|
4547
|
-
has_question: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4548
4687
|
status_message: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4549
4688
|
job_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4550
4689
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4551
4690
|
graph_index_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4552
|
-
mindmap_status: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").
|
|
4691
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4692
|
+
pending: "pending";
|
|
4693
|
+
completed: "completed";
|
|
4694
|
+
failed: "failed";
|
|
4695
|
+
generating: "generating";
|
|
4696
|
+
}>>>;
|
|
4553
4697
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4554
4698
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
4555
4699
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
@@ -4573,7 +4717,14 @@ export declare const sdk: {
|
|
|
4573
4717
|
agent_id: import("zod").ZodNumber;
|
|
4574
4718
|
job_id: import("zod").ZodString;
|
|
4575
4719
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4576
|
-
status: import("zod").
|
|
4720
|
+
status: import("zod").ZodEnum<{
|
|
4721
|
+
completed: "completed";
|
|
4722
|
+
failed: "failed";
|
|
4723
|
+
queued: "queued";
|
|
4724
|
+
running: "running";
|
|
4725
|
+
creating_knowledge: "creating_knowledge";
|
|
4726
|
+
stopped: "stopped";
|
|
4727
|
+
}>;
|
|
4577
4728
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4578
4729
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4579
4730
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4592,10 +4743,10 @@ export declare const sdk: {
|
|
|
4592
4743
|
status: import("zod").ZodEnum<{
|
|
4593
4744
|
pending: "pending";
|
|
4594
4745
|
failed: "failed";
|
|
4595
|
-
has_question: "has_question";
|
|
4596
|
-
passed: "passed";
|
|
4597
4746
|
running: "running";
|
|
4598
4747
|
stopped: "stopped";
|
|
4748
|
+
has_question: "has_question";
|
|
4749
|
+
passed: "passed";
|
|
4599
4750
|
skipped: "skipped";
|
|
4600
4751
|
}>;
|
|
4601
4752
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4616,7 +4767,12 @@ export declare const sdk: {
|
|
|
4616
4767
|
agent_name: import("zod").ZodString;
|
|
4617
4768
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4618
4769
|
}, import("zod/v4/core").$strip>>>;
|
|
4619
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
4770
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4771
|
+
pending: "pending";
|
|
4772
|
+
completed: "completed";
|
|
4773
|
+
failed: "failed";
|
|
4774
|
+
generating: "generating";
|
|
4775
|
+
}>>;
|
|
4620
4776
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4621
4777
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4622
4778
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4626,7 +4782,14 @@ export declare const sdk: {
|
|
|
4626
4782
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
4627
4783
|
simulationUpdate: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
4628
4784
|
job_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4629
|
-
status: import("zod").ZodOptional<import("zod").
|
|
4785
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4786
|
+
completed: "completed";
|
|
4787
|
+
failed: "failed";
|
|
4788
|
+
queued: "queued";
|
|
4789
|
+
running: "running";
|
|
4790
|
+
creating_knowledge: "creating_knowledge";
|
|
4791
|
+
stopped: "stopped";
|
|
4792
|
+
}>>;
|
|
4630
4793
|
status_message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4631
4794
|
pinned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4632
4795
|
graph_index_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4639,7 +4802,14 @@ export declare const sdk: {
|
|
|
4639
4802
|
agent_id: import("zod").ZodNumber;
|
|
4640
4803
|
job_id: import("zod").ZodString;
|
|
4641
4804
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4642
|
-
status: import("zod").
|
|
4805
|
+
status: import("zod").ZodEnum<{
|
|
4806
|
+
completed: "completed";
|
|
4807
|
+
failed: "failed";
|
|
4808
|
+
queued: "queued";
|
|
4809
|
+
running: "running";
|
|
4810
|
+
creating_knowledge: "creating_knowledge";
|
|
4811
|
+
stopped: "stopped";
|
|
4812
|
+
}>;
|
|
4643
4813
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4644
4814
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4645
4815
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4658,10 +4828,10 @@ export declare const sdk: {
|
|
|
4658
4828
|
status: import("zod").ZodEnum<{
|
|
4659
4829
|
pending: "pending";
|
|
4660
4830
|
failed: "failed";
|
|
4661
|
-
has_question: "has_question";
|
|
4662
|
-
passed: "passed";
|
|
4663
4831
|
running: "running";
|
|
4664
4832
|
stopped: "stopped";
|
|
4833
|
+
has_question: "has_question";
|
|
4834
|
+
passed: "passed";
|
|
4665
4835
|
skipped: "skipped";
|
|
4666
4836
|
}>;
|
|
4667
4837
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4682,7 +4852,12 @@ export declare const sdk: {
|
|
|
4682
4852
|
agent_name: import("zod").ZodString;
|
|
4683
4853
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4684
4854
|
}, import("zod/v4/core").$strip>>>;
|
|
4685
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
4855
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4856
|
+
pending: "pending";
|
|
4857
|
+
completed: "completed";
|
|
4858
|
+
failed: "failed";
|
|
4859
|
+
generating: "generating";
|
|
4860
|
+
}>>;
|
|
4686
4861
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4687
4862
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4688
4863
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4701,7 +4876,14 @@ export declare const sdk: {
|
|
|
4701
4876
|
agent_id: import("zod").ZodNumber;
|
|
4702
4877
|
job_id: import("zod").ZodString;
|
|
4703
4878
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4704
|
-
status: import("zod").
|
|
4879
|
+
status: import("zod").ZodEnum<{
|
|
4880
|
+
completed: "completed";
|
|
4881
|
+
failed: "failed";
|
|
4882
|
+
queued: "queued";
|
|
4883
|
+
running: "running";
|
|
4884
|
+
creating_knowledge: "creating_knowledge";
|
|
4885
|
+
stopped: "stopped";
|
|
4886
|
+
}>;
|
|
4705
4887
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4706
4888
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4707
4889
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4720,10 +4902,10 @@ export declare const sdk: {
|
|
|
4720
4902
|
status: import("zod").ZodEnum<{
|
|
4721
4903
|
pending: "pending";
|
|
4722
4904
|
failed: "failed";
|
|
4723
|
-
has_question: "has_question";
|
|
4724
|
-
passed: "passed";
|
|
4725
4905
|
running: "running";
|
|
4726
4906
|
stopped: "stopped";
|
|
4907
|
+
has_question: "has_question";
|
|
4908
|
+
passed: "passed";
|
|
4727
4909
|
skipped: "skipped";
|
|
4728
4910
|
}>;
|
|
4729
4911
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4744,7 +4926,12 @@ export declare const sdk: {
|
|
|
4744
4926
|
agent_name: import("zod").ZodString;
|
|
4745
4927
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4746
4928
|
}, import("zod/v4/core").$strip>>>;
|
|
4747
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
4929
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4930
|
+
pending: "pending";
|
|
4931
|
+
completed: "completed";
|
|
4932
|
+
failed: "failed";
|
|
4933
|
+
generating: "generating";
|
|
4934
|
+
}>>;
|
|
4748
4935
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4749
4936
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4750
4937
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4759,7 +4946,14 @@ export declare const sdk: {
|
|
|
4759
4946
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4760
4947
|
id: import("zod").ZodNumber;
|
|
4761
4948
|
simulation_id: import("zod").ZodNumber;
|
|
4762
|
-
status: import("zod").
|
|
4949
|
+
status: import("zod").ZodEnum<{
|
|
4950
|
+
completed: "completed";
|
|
4951
|
+
failed: "failed";
|
|
4952
|
+
queued: "queued";
|
|
4953
|
+
running: "running";
|
|
4954
|
+
stopped: "stopped";
|
|
4955
|
+
has_question: "has_question";
|
|
4956
|
+
}>;
|
|
4763
4957
|
status_message: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4764
4958
|
skill: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4765
4959
|
screenshot_path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -4795,8 +4989,8 @@ export declare const sdk: {
|
|
|
4795
4989
|
status: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
4796
4990
|
completed: "completed";
|
|
4797
4991
|
failed: "failed";
|
|
4798
|
-
has_question: "has_question";
|
|
4799
4992
|
running: "running";
|
|
4993
|
+
has_question: "has_question";
|
|
4800
4994
|
}>>;
|
|
4801
4995
|
started_at: import("zod").ZodString;
|
|
4802
4996
|
ended_at: import("zod").ZodString;
|
|
@@ -5788,11 +5982,11 @@ export declare const sdk: {
|
|
|
5788
5982
|
simulation_task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5789
5983
|
status: import("zod").ZodEnum<{
|
|
5790
5984
|
failed: "failed";
|
|
5791
|
-
passed: "passed";
|
|
5792
|
-
needs_healing: "needs_healing";
|
|
5793
5985
|
queued: "queued";
|
|
5794
5986
|
running: "running";
|
|
5795
5987
|
stopped: "stopped";
|
|
5988
|
+
passed: "passed";
|
|
5989
|
+
needs_healing: "needs_healing";
|
|
5796
5990
|
}>;
|
|
5797
5991
|
verdict: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5798
5992
|
proposed_steps: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
@@ -6080,7 +6274,14 @@ export declare const sdk: {
|
|
|
6080
6274
|
agent_id: import("zod").ZodNumber;
|
|
6081
6275
|
job_id: import("zod").ZodString;
|
|
6082
6276
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6083
|
-
status: import("zod").
|
|
6277
|
+
status: import("zod").ZodEnum<{
|
|
6278
|
+
completed: "completed";
|
|
6279
|
+
failed: "failed";
|
|
6280
|
+
queued: "queued";
|
|
6281
|
+
running: "running";
|
|
6282
|
+
creating_knowledge: "creating_knowledge";
|
|
6283
|
+
stopped: "stopped";
|
|
6284
|
+
}>;
|
|
6084
6285
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6085
6286
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6086
6287
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6099,10 +6300,10 @@ export declare const sdk: {
|
|
|
6099
6300
|
status: import("zod").ZodEnum<{
|
|
6100
6301
|
pending: "pending";
|
|
6101
6302
|
failed: "failed";
|
|
6102
|
-
has_question: "has_question";
|
|
6103
|
-
passed: "passed";
|
|
6104
6303
|
running: "running";
|
|
6105
6304
|
stopped: "stopped";
|
|
6305
|
+
has_question: "has_question";
|
|
6306
|
+
passed: "passed";
|
|
6106
6307
|
skipped: "skipped";
|
|
6107
6308
|
}>;
|
|
6108
6309
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6123,7 +6324,12 @@ export declare const sdk: {
|
|
|
6123
6324
|
agent_name: import("zod").ZodString;
|
|
6124
6325
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6125
6326
|
}, import("zod/v4/core").$strip>>>;
|
|
6126
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
6327
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
6328
|
+
pending: "pending";
|
|
6329
|
+
completed: "completed";
|
|
6330
|
+
failed: "failed";
|
|
6331
|
+
generating: "generating";
|
|
6332
|
+
}>>;
|
|
6127
6333
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6128
6334
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6129
6335
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6143,7 +6349,14 @@ export declare const sdk: {
|
|
|
6143
6349
|
agent_id: import("zod").ZodNumber;
|
|
6144
6350
|
job_id: import("zod").ZodString;
|
|
6145
6351
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6146
|
-
status: import("zod").
|
|
6352
|
+
status: import("zod").ZodEnum<{
|
|
6353
|
+
completed: "completed";
|
|
6354
|
+
failed: "failed";
|
|
6355
|
+
queued: "queued";
|
|
6356
|
+
running: "running";
|
|
6357
|
+
creating_knowledge: "creating_knowledge";
|
|
6358
|
+
stopped: "stopped";
|
|
6359
|
+
}>;
|
|
6147
6360
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6148
6361
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6149
6362
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6162,10 +6375,10 @@ export declare const sdk: {
|
|
|
6162
6375
|
status: import("zod").ZodEnum<{
|
|
6163
6376
|
pending: "pending";
|
|
6164
6377
|
failed: "failed";
|
|
6165
|
-
has_question: "has_question";
|
|
6166
|
-
passed: "passed";
|
|
6167
6378
|
running: "running";
|
|
6168
6379
|
stopped: "stopped";
|
|
6380
|
+
has_question: "has_question";
|
|
6381
|
+
passed: "passed";
|
|
6169
6382
|
skipped: "skipped";
|
|
6170
6383
|
}>;
|
|
6171
6384
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6186,7 +6399,12 @@ export declare const sdk: {
|
|
|
6186
6399
|
agent_name: import("zod").ZodString;
|
|
6187
6400
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6188
6401
|
}, import("zod/v4/core").$strip>>>;
|
|
6189
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
6402
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
6403
|
+
pending: "pending";
|
|
6404
|
+
completed: "completed";
|
|
6405
|
+
failed: "failed";
|
|
6406
|
+
generating: "generating";
|
|
6407
|
+
}>>;
|
|
6190
6408
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6191
6409
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6192
6410
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6207,7 +6425,14 @@ export declare const sdk: {
|
|
|
6207
6425
|
agent_id: import("zod").ZodNumber;
|
|
6208
6426
|
job_id: import("zod").ZodString;
|
|
6209
6427
|
browser_session_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6210
|
-
status: import("zod").
|
|
6428
|
+
status: import("zod").ZodEnum<{
|
|
6429
|
+
completed: "completed";
|
|
6430
|
+
failed: "failed";
|
|
6431
|
+
queued: "queued";
|
|
6432
|
+
running: "running";
|
|
6433
|
+
creating_knowledge: "creating_knowledge";
|
|
6434
|
+
stopped: "stopped";
|
|
6435
|
+
}>;
|
|
6211
6436
|
status_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6212
6437
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6213
6438
|
instructions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6226,10 +6451,10 @@ export declare const sdk: {
|
|
|
6226
6451
|
status: import("zod").ZodEnum<{
|
|
6227
6452
|
pending: "pending";
|
|
6228
6453
|
failed: "failed";
|
|
6229
|
-
has_question: "has_question";
|
|
6230
|
-
passed: "passed";
|
|
6231
6454
|
running: "running";
|
|
6232
6455
|
stopped: "stopped";
|
|
6456
|
+
has_question: "has_question";
|
|
6457
|
+
passed: "passed";
|
|
6233
6458
|
skipped: "skipped";
|
|
6234
6459
|
}>;
|
|
6235
6460
|
error_message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6250,7 +6475,12 @@ export declare const sdk: {
|
|
|
6250
6475
|
agent_name: import("zod").ZodString;
|
|
6251
6476
|
image_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6252
6477
|
}, import("zod/v4/core").$strip>>>;
|
|
6253
|
-
mindmap_status: import("zod").ZodOptional<import("zod").
|
|
6478
|
+
mindmap_status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
6479
|
+
pending: "pending";
|
|
6480
|
+
completed: "completed";
|
|
6481
|
+
failed: "failed";
|
|
6482
|
+
generating: "generating";
|
|
6483
|
+
}>>;
|
|
6254
6484
|
mindmap_steps_processed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6255
6485
|
mindmap_steps_total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6256
6486
|
mindmap_error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6766,7 +6996,7 @@ export declare const sdk: {
|
|
|
6766
6996
|
error: string;
|
|
6767
6997
|
} | {
|
|
6768
6998
|
type: "task/status";
|
|
6769
|
-
status: "completed" | "failed" | "
|
|
6999
|
+
status: "completed" | "failed" | "running" | "stopped" | "has_question";
|
|
6770
7000
|
message?: string | undefined;
|
|
6771
7001
|
task_id?: string | undefined;
|
|
6772
7002
|
timestamp?: number | undefined;
|
|
@@ -6797,7 +7027,7 @@ export declare const sdk: {
|
|
|
6797
7027
|
error: string;
|
|
6798
7028
|
} | {
|
|
6799
7029
|
type: "task/status";
|
|
6800
|
-
status: "completed" | "failed" | "
|
|
7030
|
+
status: "completed" | "failed" | "running" | "stopped" | "has_question";
|
|
6801
7031
|
message?: string | undefined;
|
|
6802
7032
|
task_id?: string | undefined;
|
|
6803
7033
|
timestamp?: number | undefined;
|
|
@@ -6872,7 +7102,7 @@ export declare const sdk: {
|
|
|
6872
7102
|
type: "simulation/updated";
|
|
6873
7103
|
simulation_id: number;
|
|
6874
7104
|
application_id: number;
|
|
6875
|
-
status: "completed" | "failed" | "queued" | "running" | "
|
|
7105
|
+
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "stopped";
|
|
6876
7106
|
has_question?: boolean | undefined;
|
|
6877
7107
|
step_label?: string | undefined;
|
|
6878
7108
|
step_pending?: boolean | undefined;
|
|
@@ -6927,16 +7157,16 @@ export declare const sdk: {
|
|
|
6927
7157
|
type: "simulation/mindmap-updated";
|
|
6928
7158
|
simulation_id: number;
|
|
6929
7159
|
application_id: number;
|
|
6930
|
-
mindmap_status:
|
|
7160
|
+
mindmap_status: "pending" | "completed" | "failed" | "generating";
|
|
6931
7161
|
steps_processed: number;
|
|
6932
7162
|
steps_total: number;
|
|
6933
7163
|
} | {
|
|
6934
7164
|
type: "qa-run/completed";
|
|
6935
7165
|
run_id: number;
|
|
6936
|
-
status:
|
|
7166
|
+
status: "pending" | "completed" | "failed" | "running" | "stopped";
|
|
6937
7167
|
} | {
|
|
6938
7168
|
type: "agent/updated";
|
|
6939
|
-
status:
|
|
7169
|
+
status: "active" | "learning" | "error" | "completed" | "failed" | "queued" | "running" | "stopped" | "has_question";
|
|
6940
7170
|
agent_id?: number | undefined;
|
|
6941
7171
|
context_id?: string | undefined;
|
|
6942
7172
|
task_id?: string | undefined;
|
|
@@ -6954,7 +7184,7 @@ export declare const sdk: {
|
|
|
6954
7184
|
type: "qa-document/updated";
|
|
6955
7185
|
document_id: number;
|
|
6956
7186
|
application_id: number;
|
|
6957
|
-
status:
|
|
7187
|
+
status: "pending" | "processing" | "waiting_review" | "completed" | "failed";
|
|
6958
7188
|
step_label?: string | undefined;
|
|
6959
7189
|
} | {
|
|
6960
7190
|
type: "qa-run/updated";
|
|
@@ -6970,7 +7200,7 @@ export declare const sdk: {
|
|
|
6970
7200
|
run_id: number;
|
|
6971
7201
|
document_id: number;
|
|
6972
7202
|
application_id: number;
|
|
6973
|
-
status:
|
|
7203
|
+
status: "failed" | "passed" | "needs_healing";
|
|
6974
7204
|
} | {
|
|
6975
7205
|
type: "qa-run/report-ready";
|
|
6976
7206
|
run_id: number;
|
|
@@ -6983,7 +7213,7 @@ export declare const sdk: {
|
|
|
6983
7213
|
type: "user/updated";
|
|
6984
7214
|
user_id: number;
|
|
6985
7215
|
workspace_id: number;
|
|
6986
|
-
status:
|
|
7216
|
+
status: "created" | "active" | "suspended" | "pending_approval";
|
|
6987
7217
|
} | {
|
|
6988
7218
|
type: "job/progress";
|
|
6989
7219
|
job_id: string;
|
|
@@ -7063,7 +7293,7 @@ export declare const sdk: {
|
|
|
7063
7293
|
type: "simulation/updated";
|
|
7064
7294
|
simulation_id: number;
|
|
7065
7295
|
application_id: number;
|
|
7066
|
-
status: "completed" | "failed" | "queued" | "running" | "
|
|
7296
|
+
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "stopped";
|
|
7067
7297
|
has_question?: boolean | undefined;
|
|
7068
7298
|
step_label?: string | undefined;
|
|
7069
7299
|
step_pending?: boolean | undefined;
|
|
@@ -7118,16 +7348,16 @@ export declare const sdk: {
|
|
|
7118
7348
|
type: "simulation/mindmap-updated";
|
|
7119
7349
|
simulation_id: number;
|
|
7120
7350
|
application_id: number;
|
|
7121
|
-
mindmap_status:
|
|
7351
|
+
mindmap_status: "pending" | "completed" | "failed" | "generating";
|
|
7122
7352
|
steps_processed: number;
|
|
7123
7353
|
steps_total: number;
|
|
7124
7354
|
} | {
|
|
7125
7355
|
type: "qa-run/completed";
|
|
7126
7356
|
run_id: number;
|
|
7127
|
-
status:
|
|
7357
|
+
status: "pending" | "completed" | "failed" | "running" | "stopped";
|
|
7128
7358
|
} | {
|
|
7129
7359
|
type: "agent/updated";
|
|
7130
|
-
status:
|
|
7360
|
+
status: "active" | "learning" | "error" | "completed" | "failed" | "queued" | "running" | "stopped" | "has_question";
|
|
7131
7361
|
agent_id?: number | undefined;
|
|
7132
7362
|
context_id?: string | undefined;
|
|
7133
7363
|
task_id?: string | undefined;
|
|
@@ -7145,7 +7375,7 @@ export declare const sdk: {
|
|
|
7145
7375
|
type: "qa-document/updated";
|
|
7146
7376
|
document_id: number;
|
|
7147
7377
|
application_id: number;
|
|
7148
|
-
status:
|
|
7378
|
+
status: "pending" | "processing" | "waiting_review" | "completed" | "failed";
|
|
7149
7379
|
step_label?: string | undefined;
|
|
7150
7380
|
} | {
|
|
7151
7381
|
type: "qa-run/updated";
|
|
@@ -7161,7 +7391,7 @@ export declare const sdk: {
|
|
|
7161
7391
|
run_id: number;
|
|
7162
7392
|
document_id: number;
|
|
7163
7393
|
application_id: number;
|
|
7164
|
-
status:
|
|
7394
|
+
status: "failed" | "passed" | "needs_healing";
|
|
7165
7395
|
} | {
|
|
7166
7396
|
type: "qa-run/report-ready";
|
|
7167
7397
|
run_id: number;
|
|
@@ -7174,7 +7404,7 @@ export declare const sdk: {
|
|
|
7174
7404
|
type: "user/updated";
|
|
7175
7405
|
user_id: number;
|
|
7176
7406
|
workspace_id: number;
|
|
7177
|
-
status:
|
|
7407
|
+
status: "created" | "active" | "suspended" | "pending_approval";
|
|
7178
7408
|
} | {
|
|
7179
7409
|
type: "job/progress";
|
|
7180
7410
|
job_id: string;
|
|
@@ -7937,7 +8167,14 @@ export declare const sdk: {
|
|
|
7937
8167
|
selected: import("zod").ZodBoolean;
|
|
7938
8168
|
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7939
8169
|
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7940
|
-
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").
|
|
8170
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
8171
|
+
completed: "completed";
|
|
8172
|
+
failed: "failed";
|
|
8173
|
+
queued: "queued";
|
|
8174
|
+
running: "running";
|
|
8175
|
+
creating_knowledge: "creating_knowledge";
|
|
8176
|
+
stopped: "stopped";
|
|
8177
|
+
}>>>;
|
|
7941
8178
|
}, import("zod/v4/core").$strip>>;
|
|
7942
8179
|
persona_ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
7943
8180
|
results: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -8077,7 +8314,14 @@ export declare const sdk: {
|
|
|
8077
8314
|
selected: import("zod").ZodBoolean;
|
|
8078
8315
|
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8079
8316
|
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8080
|
-
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").
|
|
8317
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
8318
|
+
completed: "completed";
|
|
8319
|
+
failed: "failed";
|
|
8320
|
+
queued: "queued";
|
|
8321
|
+
running: "running";
|
|
8322
|
+
creating_knowledge: "creating_knowledge";
|
|
8323
|
+
stopped: "stopped";
|
|
8324
|
+
}>>>;
|
|
8081
8325
|
}, import("zod/v4/core").$strip>>;
|
|
8082
8326
|
persona_ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
8083
8327
|
results: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -8174,7 +8418,14 @@ export declare const sdk: {
|
|
|
8174
8418
|
selected: import("zod").ZodBoolean;
|
|
8175
8419
|
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8176
8420
|
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8177
|
-
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").
|
|
8421
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
8422
|
+
completed: "completed";
|
|
8423
|
+
failed: "failed";
|
|
8424
|
+
queued: "queued";
|
|
8425
|
+
running: "running";
|
|
8426
|
+
creating_knowledge: "creating_knowledge";
|
|
8427
|
+
stopped: "stopped";
|
|
8428
|
+
}>>>;
|
|
8178
8429
|
}, import("zod/v4/core").$strip>>;
|
|
8179
8430
|
}, import("zod/v4/core").$strip>, Record<never, never>>;
|
|
8180
8431
|
insightReactionRun: import("@orpc/contract").ContractProcedureClient<Record<never, never>, import("zod").ZodObject<{
|
|
@@ -8211,7 +8462,14 @@ export declare const sdk: {
|
|
|
8211
8462
|
selected: import("zod").ZodBoolean;
|
|
8212
8463
|
simulation_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8213
8464
|
task_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8214
|
-
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").
|
|
8465
|
+
status: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
8466
|
+
completed: "completed";
|
|
8467
|
+
failed: "failed";
|
|
8468
|
+
queued: "queued";
|
|
8469
|
+
running: "running";
|
|
8470
|
+
creating_knowledge: "creating_knowledge";
|
|
8471
|
+
stopped: "stopped";
|
|
8472
|
+
}>>>;
|
|
8215
8473
|
}, import("zod/v4/core").$strip>>;
|
|
8216
8474
|
persona_ids: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
8217
8475
|
results: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|