@marketrix.ai/widget 3.3.240 → 3.3.241
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 +46 -143
- package/dist/src/sdk/index.d.ts.map +1 -1
- package/dist/src/sdk/routes.d.ts +46 -143
- package/dist/src/sdk/routes.d.ts.map +1 -1
- package/dist/src/sdk/schema.d.ts +35 -24
- 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
|
@@ -911,7 +911,6 @@ declare const contract: {
|
|
|
911
911
|
instructions: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
912
912
|
image_url: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
913
913
|
graph_index_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
914
|
-
vector_store_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
915
914
|
status: z.ZodOptional<z.ZodEnum<{
|
|
916
915
|
active: "active";
|
|
917
916
|
learning: "learning";
|
|
@@ -1007,6 +1006,7 @@ declare const contract: {
|
|
|
1007
1006
|
queued: "queued";
|
|
1008
1007
|
running: "running";
|
|
1009
1008
|
creating_knowledge: "creating_knowledge";
|
|
1009
|
+
has_question: "has_question";
|
|
1010
1010
|
stopped: "stopped";
|
|
1011
1011
|
}>;
|
|
1012
1012
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1028,8 +1028,8 @@ declare const contract: {
|
|
|
1028
1028
|
pending: "pending";
|
|
1029
1029
|
failed: "failed";
|
|
1030
1030
|
running: "running";
|
|
1031
|
-
stopped: "stopped";
|
|
1032
1031
|
has_question: "has_question";
|
|
1032
|
+
stopped: "stopped";
|
|
1033
1033
|
passed: "passed";
|
|
1034
1034
|
skipped: "skipped";
|
|
1035
1035
|
}>;
|
|
@@ -1338,104 +1338,6 @@ declare const contract: {
|
|
|
1338
1338
|
used: z.ZodNumber;
|
|
1339
1339
|
remaining: z.ZodNumber;
|
|
1340
1340
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
1341
|
-
previewVideoChatUpsert: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1342
|
-
application_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1343
|
-
agent_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1344
|
-
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1345
|
-
chat_id: z.ZodString;
|
|
1346
|
-
chat_content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1347
|
-
chat_history: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1348
|
-
role: z.ZodEnum<{
|
|
1349
|
-
user: "user";
|
|
1350
|
-
assistant: "assistant";
|
|
1351
|
-
system: "system";
|
|
1352
|
-
}>;
|
|
1353
|
-
content: z.ZodString;
|
|
1354
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
1355
|
-
}, z.core.$strip>>>>;
|
|
1356
|
-
chat_output: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1357
|
-
preview_video_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1358
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1359
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1360
|
-
id: z.ZodOptional<z.ZodNumber>;
|
|
1361
|
-
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
1362
|
-
updated_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
1363
|
-
workspace_id: z.ZodNumber;
|
|
1364
|
-
application_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1365
|
-
agent_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1366
|
-
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1367
|
-
chat_id: z.ZodString;
|
|
1368
|
-
chat_content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1369
|
-
chat_history: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1370
|
-
role: z.ZodEnum<{
|
|
1371
|
-
user: "user";
|
|
1372
|
-
assistant: "assistant";
|
|
1373
|
-
system: "system";
|
|
1374
|
-
}>;
|
|
1375
|
-
content: z.ZodString;
|
|
1376
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
1377
|
-
}, z.core.$strip>>>>;
|
|
1378
|
-
chat_output: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1379
|
-
preview_video_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1380
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1381
|
-
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
1382
|
-
previewVideoChatSearch: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1383
|
-
chat_id: z.ZodOptional<z.ZodString>;
|
|
1384
|
-
agent_id: z.ZodOptional<z.ZodNumber>;
|
|
1385
|
-
simulation_id: z.ZodOptional<z.ZodNumber>;
|
|
1386
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
1387
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
1388
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1389
|
-
items: z.ZodArray<z.ZodObject<{
|
|
1390
|
-
id: z.ZodOptional<z.ZodNumber>;
|
|
1391
|
-
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
1392
|
-
updated_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
1393
|
-
workspace_id: z.ZodNumber;
|
|
1394
|
-
application_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1395
|
-
agent_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1396
|
-
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1397
|
-
chat_id: z.ZodString;
|
|
1398
|
-
chat_content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1399
|
-
chat_history: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1400
|
-
role: z.ZodEnum<{
|
|
1401
|
-
user: "user";
|
|
1402
|
-
assistant: "assistant";
|
|
1403
|
-
system: "system";
|
|
1404
|
-
}>;
|
|
1405
|
-
content: z.ZodString;
|
|
1406
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
1407
|
-
}, z.core.$strip>>>>;
|
|
1408
|
-
chat_output: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1409
|
-
preview_video_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1410
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1411
|
-
}, z.core.$strip>>;
|
|
1412
|
-
count: z.ZodNumber;
|
|
1413
|
-
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
1414
|
-
previewVideoChatGet: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1415
|
-
id: z.ZodCoercedNumber<unknown>;
|
|
1416
|
-
}, z.core.$strip>, z.ZodNullable<z.ZodObject<{
|
|
1417
|
-
id: z.ZodOptional<z.ZodNumber>;
|
|
1418
|
-
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
1419
|
-
updated_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
1420
|
-
workspace_id: z.ZodNumber;
|
|
1421
|
-
application_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1422
|
-
agent_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1423
|
-
simulation_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1424
|
-
chat_id: z.ZodString;
|
|
1425
|
-
chat_content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1426
|
-
chat_history: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1427
|
-
role: z.ZodEnum<{
|
|
1428
|
-
user: "user";
|
|
1429
|
-
assistant: "assistant";
|
|
1430
|
-
system: "system";
|
|
1431
|
-
}>;
|
|
1432
|
-
content: z.ZodString;
|
|
1433
|
-
timestamp: z.ZodOptional<z.ZodString>;
|
|
1434
|
-
}, z.core.$strip>>>>;
|
|
1435
|
-
chat_output: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1436
|
-
preview_video_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1437
|
-
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1438
|
-
}, z.core.$strip>>, Record<never, never>, Record<never, never>>;
|
|
1439
1341
|
connectorUpsert: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1440
1342
|
id: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1441
1343
|
application_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -2760,7 +2662,6 @@ declare const contract: {
|
|
|
2760
2662
|
workspace_id: z.ZodOptional<z.ZodNumber>;
|
|
2761
2663
|
user_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
|
|
2762
2664
|
graph_index_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2763
|
-
vector_store_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2764
2665
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2765
2666
|
active: "active";
|
|
2766
2667
|
learning: "learning";
|
|
@@ -2856,6 +2757,7 @@ declare const contract: {
|
|
|
2856
2757
|
queued: "queued";
|
|
2857
2758
|
running: "running";
|
|
2858
2759
|
creating_knowledge: "creating_knowledge";
|
|
2760
|
+
has_question: "has_question";
|
|
2859
2761
|
stopped: "stopped";
|
|
2860
2762
|
}>;
|
|
2861
2763
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2877,8 +2779,8 @@ declare const contract: {
|
|
|
2877
2779
|
pending: "pending";
|
|
2878
2780
|
failed: "failed";
|
|
2879
2781
|
running: "running";
|
|
2880
|
-
stopped: "stopped";
|
|
2881
2782
|
has_question: "has_question";
|
|
2783
|
+
stopped: "stopped";
|
|
2882
2784
|
passed: "passed";
|
|
2883
2785
|
skipped: "skipped";
|
|
2884
2786
|
}>;
|
|
@@ -2951,7 +2853,6 @@ declare const contract: {
|
|
|
2951
2853
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2952
2854
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2953
2855
|
graph_index_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2954
|
-
vector_store_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2955
2856
|
status: z.ZodEnum<{
|
|
2956
2857
|
active: "active";
|
|
2957
2858
|
learning: "learning";
|
|
@@ -3047,6 +2948,7 @@ declare const contract: {
|
|
|
3047
2948
|
queued: "queued";
|
|
3048
2949
|
running: "running";
|
|
3049
2950
|
creating_knowledge: "creating_knowledge";
|
|
2951
|
+
has_question: "has_question";
|
|
3050
2952
|
stopped: "stopped";
|
|
3051
2953
|
}>;
|
|
3052
2954
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3068,8 +2970,8 @@ declare const contract: {
|
|
|
3068
2970
|
pending: "pending";
|
|
3069
2971
|
failed: "failed";
|
|
3070
2972
|
running: "running";
|
|
3071
|
-
stopped: "stopped";
|
|
3072
2973
|
has_question: "has_question";
|
|
2974
|
+
stopped: "stopped";
|
|
3073
2975
|
passed: "passed";
|
|
3074
2976
|
skipped: "skipped";
|
|
3075
2977
|
}>;
|
|
@@ -3138,7 +3040,6 @@ declare const contract: {
|
|
|
3138
3040
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3139
3041
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3140
3042
|
graph_index_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3141
|
-
vector_store_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3142
3043
|
status: z.ZodEnum<{
|
|
3143
3044
|
active: "active";
|
|
3144
3045
|
learning: "learning";
|
|
@@ -3234,6 +3135,7 @@ declare const contract: {
|
|
|
3234
3135
|
queued: "queued";
|
|
3235
3136
|
running: "running";
|
|
3236
3137
|
creating_knowledge: "creating_knowledge";
|
|
3138
|
+
has_question: "has_question";
|
|
3237
3139
|
stopped: "stopped";
|
|
3238
3140
|
}>;
|
|
3239
3141
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3255,8 +3157,8 @@ declare const contract: {
|
|
|
3255
3157
|
pending: "pending";
|
|
3256
3158
|
failed: "failed";
|
|
3257
3159
|
running: "running";
|
|
3258
|
-
stopped: "stopped";
|
|
3259
3160
|
has_question: "has_question";
|
|
3161
|
+
stopped: "stopped";
|
|
3260
3162
|
passed: "passed";
|
|
3261
3163
|
skipped: "skipped";
|
|
3262
3164
|
}>;
|
|
@@ -3324,7 +3226,6 @@ declare const contract: {
|
|
|
3324
3226
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3325
3227
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3326
3228
|
graph_index_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3327
|
-
vector_store_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3328
3229
|
status: z.ZodEnum<{
|
|
3329
3230
|
active: "active";
|
|
3330
3231
|
learning: "learning";
|
|
@@ -3420,6 +3321,7 @@ declare const contract: {
|
|
|
3420
3321
|
queued: "queued";
|
|
3421
3322
|
running: "running";
|
|
3422
3323
|
creating_knowledge: "creating_knowledge";
|
|
3324
|
+
has_question: "has_question";
|
|
3423
3325
|
stopped: "stopped";
|
|
3424
3326
|
}>;
|
|
3425
3327
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3441,8 +3343,8 @@ declare const contract: {
|
|
|
3441
3343
|
pending: "pending";
|
|
3442
3344
|
failed: "failed";
|
|
3443
3345
|
running: "running";
|
|
3444
|
-
stopped: "stopped";
|
|
3445
3346
|
has_question: "has_question";
|
|
3347
|
+
stopped: "stopped";
|
|
3446
3348
|
passed: "passed";
|
|
3447
3349
|
skipped: "skipped";
|
|
3448
3350
|
}>;
|
|
@@ -3527,7 +3429,6 @@ declare const contract: {
|
|
|
3527
3429
|
instructions: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3528
3430
|
image_url: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3529
3431
|
graph_index_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3530
|
-
vector_store_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3531
3432
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3532
3433
|
active: "active";
|
|
3533
3434
|
learning: "learning";
|
|
@@ -3623,6 +3524,7 @@ declare const contract: {
|
|
|
3623
3524
|
queued: "queued";
|
|
3624
3525
|
running: "running";
|
|
3625
3526
|
creating_knowledge: "creating_knowledge";
|
|
3527
|
+
has_question: "has_question";
|
|
3626
3528
|
stopped: "stopped";
|
|
3627
3529
|
}>;
|
|
3628
3530
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3644,8 +3546,8 @@ declare const contract: {
|
|
|
3644
3546
|
pending: "pending";
|
|
3645
3547
|
failed: "failed";
|
|
3646
3548
|
running: "running";
|
|
3647
|
-
stopped: "stopped";
|
|
3648
3549
|
has_question: "has_question";
|
|
3550
|
+
stopped: "stopped";
|
|
3649
3551
|
passed: "passed";
|
|
3650
3552
|
skipped: "skipped";
|
|
3651
3553
|
}>;
|
|
@@ -3707,7 +3609,6 @@ declare const contract: {
|
|
|
3707
3609
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3708
3610
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3709
3611
|
graph_index_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3710
|
-
vector_store_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3711
3612
|
status: z.ZodEnum<{
|
|
3712
3613
|
active: "active";
|
|
3713
3614
|
learning: "learning";
|
|
@@ -3803,6 +3704,7 @@ declare const contract: {
|
|
|
3803
3704
|
queued: "queued";
|
|
3804
3705
|
running: "running";
|
|
3805
3706
|
creating_knowledge: "creating_knowledge";
|
|
3707
|
+
has_question: "has_question";
|
|
3806
3708
|
stopped: "stopped";
|
|
3807
3709
|
}>;
|
|
3808
3710
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3824,8 +3726,8 @@ declare const contract: {
|
|
|
3824
3726
|
pending: "pending";
|
|
3825
3727
|
failed: "failed";
|
|
3826
3728
|
running: "running";
|
|
3827
|
-
stopped: "stopped";
|
|
3828
3729
|
has_question: "has_question";
|
|
3730
|
+
stopped: "stopped";
|
|
3829
3731
|
passed: "passed";
|
|
3830
3732
|
skipped: "skipped";
|
|
3831
3733
|
}>;
|
|
@@ -3892,7 +3794,6 @@ declare const contract: {
|
|
|
3892
3794
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3893
3795
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3894
3796
|
graph_index_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3895
|
-
vector_store_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3896
3797
|
status: z.ZodEnum<{
|
|
3897
3798
|
active: "active";
|
|
3898
3799
|
learning: "learning";
|
|
@@ -3988,6 +3889,7 @@ declare const contract: {
|
|
|
3988
3889
|
queued: "queued";
|
|
3989
3890
|
running: "running";
|
|
3990
3891
|
creating_knowledge: "creating_knowledge";
|
|
3892
|
+
has_question: "has_question";
|
|
3991
3893
|
stopped: "stopped";
|
|
3992
3894
|
}>;
|
|
3993
3895
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4009,8 +3911,8 @@ declare const contract: {
|
|
|
4009
3911
|
pending: "pending";
|
|
4010
3912
|
failed: "failed";
|
|
4011
3913
|
running: "running";
|
|
4012
|
-
stopped: "stopped";
|
|
4013
3914
|
has_question: "has_question";
|
|
3915
|
+
stopped: "stopped";
|
|
4014
3916
|
passed: "passed";
|
|
4015
3917
|
skipped: "skipped";
|
|
4016
3918
|
}>;
|
|
@@ -4074,7 +3976,6 @@ declare const contract: {
|
|
|
4074
3976
|
instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4075
3977
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4076
3978
|
graph_index_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4077
|
-
vector_store_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4078
3979
|
status: z.ZodEnum<{
|
|
4079
3980
|
active: "active";
|
|
4080
3981
|
learning: "learning";
|
|
@@ -4170,6 +4071,7 @@ declare const contract: {
|
|
|
4170
4071
|
queued: "queued";
|
|
4171
4072
|
running: "running";
|
|
4172
4073
|
creating_knowledge: "creating_knowledge";
|
|
4074
|
+
has_question: "has_question";
|
|
4173
4075
|
stopped: "stopped";
|
|
4174
4076
|
}>;
|
|
4175
4077
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4191,8 +4093,8 @@ declare const contract: {
|
|
|
4191
4093
|
pending: "pending";
|
|
4192
4094
|
failed: "failed";
|
|
4193
4095
|
running: "running";
|
|
4194
|
-
stopped: "stopped";
|
|
4195
4096
|
has_question: "has_question";
|
|
4097
|
+
stopped: "stopped";
|
|
4196
4098
|
passed: "passed";
|
|
4197
4099
|
skipped: "skipped";
|
|
4198
4100
|
}>;
|
|
@@ -4534,6 +4436,7 @@ declare const contract: {
|
|
|
4534
4436
|
queued: "queued";
|
|
4535
4437
|
running: "running";
|
|
4536
4438
|
creating_knowledge: "creating_knowledge";
|
|
4439
|
+
has_question: "has_question";
|
|
4537
4440
|
stopped: "stopped";
|
|
4538
4441
|
}>;
|
|
4539
4442
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4555,8 +4458,8 @@ declare const contract: {
|
|
|
4555
4458
|
pending: "pending";
|
|
4556
4459
|
failed: "failed";
|
|
4557
4460
|
running: "running";
|
|
4558
|
-
stopped: "stopped";
|
|
4559
4461
|
has_question: "has_question";
|
|
4462
|
+
stopped: "stopped";
|
|
4560
4463
|
passed: "passed";
|
|
4561
4464
|
skipped: "skipped";
|
|
4562
4465
|
}>;
|
|
@@ -4620,6 +4523,7 @@ declare const contract: {
|
|
|
4620
4523
|
queued: "queued";
|
|
4621
4524
|
running: "running";
|
|
4622
4525
|
creating_knowledge: "creating_knowledge";
|
|
4526
|
+
has_question: "has_question";
|
|
4623
4527
|
stopped: "stopped";
|
|
4624
4528
|
}>;
|
|
4625
4529
|
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4666,6 +4570,7 @@ declare const contract: {
|
|
|
4666
4570
|
queued: "queued";
|
|
4667
4571
|
running: "running";
|
|
4668
4572
|
creating_knowledge: "creating_knowledge";
|
|
4573
|
+
has_question: "has_question";
|
|
4669
4574
|
stopped: "stopped";
|
|
4670
4575
|
}>>;
|
|
4671
4576
|
path: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
@@ -4720,6 +4625,7 @@ declare const contract: {
|
|
|
4720
4625
|
queued: "queued";
|
|
4721
4626
|
running: "running";
|
|
4722
4627
|
creating_knowledge: "creating_knowledge";
|
|
4628
|
+
has_question: "has_question";
|
|
4723
4629
|
stopped: "stopped";
|
|
4724
4630
|
}>;
|
|
4725
4631
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4741,8 +4647,8 @@ declare const contract: {
|
|
|
4741
4647
|
pending: "pending";
|
|
4742
4648
|
failed: "failed";
|
|
4743
4649
|
running: "running";
|
|
4744
|
-
stopped: "stopped";
|
|
4745
4650
|
has_question: "has_question";
|
|
4651
|
+
stopped: "stopped";
|
|
4746
4652
|
passed: "passed";
|
|
4747
4653
|
skipped: "skipped";
|
|
4748
4654
|
}>;
|
|
@@ -4785,6 +4691,7 @@ declare const contract: {
|
|
|
4785
4691
|
queued: "queued";
|
|
4786
4692
|
running: "running";
|
|
4787
4693
|
creating_knowledge: "creating_knowledge";
|
|
4694
|
+
has_question: "has_question";
|
|
4788
4695
|
stopped: "stopped";
|
|
4789
4696
|
}>>;
|
|
4790
4697
|
status_message: z.ZodOptional<z.ZodString>;
|
|
@@ -4805,6 +4712,7 @@ declare const contract: {
|
|
|
4805
4712
|
queued: "queued";
|
|
4806
4713
|
running: "running";
|
|
4807
4714
|
creating_knowledge: "creating_knowledge";
|
|
4715
|
+
has_question: "has_question";
|
|
4808
4716
|
stopped: "stopped";
|
|
4809
4717
|
}>;
|
|
4810
4718
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4826,8 +4734,8 @@ declare const contract: {
|
|
|
4826
4734
|
pending: "pending";
|
|
4827
4735
|
failed: "failed";
|
|
4828
4736
|
running: "running";
|
|
4829
|
-
stopped: "stopped";
|
|
4830
4737
|
has_question: "has_question";
|
|
4738
|
+
stopped: "stopped";
|
|
4831
4739
|
passed: "passed";
|
|
4832
4740
|
skipped: "skipped";
|
|
4833
4741
|
}>;
|
|
@@ -4879,6 +4787,7 @@ declare const contract: {
|
|
|
4879
4787
|
queued: "queued";
|
|
4880
4788
|
running: "running";
|
|
4881
4789
|
creating_knowledge: "creating_knowledge";
|
|
4790
|
+
has_question: "has_question";
|
|
4882
4791
|
stopped: "stopped";
|
|
4883
4792
|
}>;
|
|
4884
4793
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4900,8 +4809,8 @@ declare const contract: {
|
|
|
4900
4809
|
pending: "pending";
|
|
4901
4810
|
failed: "failed";
|
|
4902
4811
|
running: "running";
|
|
4903
|
-
stopped: "stopped";
|
|
4904
4812
|
has_question: "has_question";
|
|
4813
|
+
stopped: "stopped";
|
|
4905
4814
|
passed: "passed";
|
|
4906
4815
|
skipped: "skipped";
|
|
4907
4816
|
}>;
|
|
@@ -4948,8 +4857,8 @@ declare const contract: {
|
|
|
4948
4857
|
failed: "failed";
|
|
4949
4858
|
queued: "queued";
|
|
4950
4859
|
running: "running";
|
|
4951
|
-
stopped: "stopped";
|
|
4952
4860
|
has_question: "has_question";
|
|
4861
|
+
stopped: "stopped";
|
|
4953
4862
|
}>;
|
|
4954
4863
|
status_message: z.ZodNullable<z.ZodString>;
|
|
4955
4864
|
skill: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6277,6 +6186,7 @@ declare const contract: {
|
|
|
6277
6186
|
queued: "queued";
|
|
6278
6187
|
running: "running";
|
|
6279
6188
|
creating_knowledge: "creating_knowledge";
|
|
6189
|
+
has_question: "has_question";
|
|
6280
6190
|
stopped: "stopped";
|
|
6281
6191
|
}>;
|
|
6282
6192
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6298,8 +6208,8 @@ declare const contract: {
|
|
|
6298
6208
|
pending: "pending";
|
|
6299
6209
|
failed: "failed";
|
|
6300
6210
|
running: "running";
|
|
6301
|
-
stopped: "stopped";
|
|
6302
6211
|
has_question: "has_question";
|
|
6212
|
+
stopped: "stopped";
|
|
6303
6213
|
passed: "passed";
|
|
6304
6214
|
skipped: "skipped";
|
|
6305
6215
|
}>;
|
|
@@ -6352,6 +6262,7 @@ declare const contract: {
|
|
|
6352
6262
|
queued: "queued";
|
|
6353
6263
|
running: "running";
|
|
6354
6264
|
creating_knowledge: "creating_knowledge";
|
|
6265
|
+
has_question: "has_question";
|
|
6355
6266
|
stopped: "stopped";
|
|
6356
6267
|
}>;
|
|
6357
6268
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6373,8 +6284,8 @@ declare const contract: {
|
|
|
6373
6284
|
pending: "pending";
|
|
6374
6285
|
failed: "failed";
|
|
6375
6286
|
running: "running";
|
|
6376
|
-
stopped: "stopped";
|
|
6377
6287
|
has_question: "has_question";
|
|
6288
|
+
stopped: "stopped";
|
|
6378
6289
|
passed: "passed";
|
|
6379
6290
|
skipped: "skipped";
|
|
6380
6291
|
}>;
|
|
@@ -6428,6 +6339,7 @@ declare const contract: {
|
|
|
6428
6339
|
queued: "queued";
|
|
6429
6340
|
running: "running";
|
|
6430
6341
|
creating_knowledge: "creating_knowledge";
|
|
6342
|
+
has_question: "has_question";
|
|
6431
6343
|
stopped: "stopped";
|
|
6432
6344
|
}>;
|
|
6433
6345
|
status_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -6449,8 +6361,8 @@ declare const contract: {
|
|
|
6449
6361
|
pending: "pending";
|
|
6450
6362
|
failed: "failed";
|
|
6451
6363
|
running: "running";
|
|
6452
|
-
stopped: "stopped";
|
|
6453
6364
|
has_question: "has_question";
|
|
6365
|
+
stopped: "stopped";
|
|
6454
6366
|
passed: "passed";
|
|
6455
6367
|
skipped: "skipped";
|
|
6456
6368
|
}>;
|
|
@@ -6749,19 +6661,6 @@ declare const contract: {
|
|
|
6749
6661
|
overallFailed: z.ZodNumber;
|
|
6750
6662
|
}, z.core.$strip>;
|
|
6751
6663
|
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
6752
|
-
qaCrossBrowserComparison: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
6753
|
-
id: z.ZodCoercedNumber<unknown>;
|
|
6754
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
6755
|
-
byTest: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6756
|
-
status: z.ZodString;
|
|
6757
|
-
runId: z.ZodNumber;
|
|
6758
|
-
}, z.core.$strip>>>;
|
|
6759
|
-
byBrowser: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6760
|
-
passed: z.ZodNumber;
|
|
6761
|
-
failed: z.ZodNumber;
|
|
6762
|
-
total: z.ZodNumber;
|
|
6763
|
-
}, z.core.$strip>>;
|
|
6764
|
-
}, z.core.$strip>, Record<never, never>, Record<never, never>>;
|
|
6765
6664
|
qaBrowserConfigUpdate: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
6766
6665
|
browsers: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
6767
6666
|
chromium: "chromium";
|
|
@@ -6993,7 +6892,7 @@ declare const contract: {
|
|
|
6993
6892
|
error: string;
|
|
6994
6893
|
} | {
|
|
6995
6894
|
type: "task/status";
|
|
6996
|
-
status: "completed" | "failed" | "running" | "
|
|
6895
|
+
status: "completed" | "failed" | "running" | "has_question" | "stopped";
|
|
6997
6896
|
message?: string | undefined;
|
|
6998
6897
|
task_id?: string | undefined;
|
|
6999
6898
|
timestamp?: number | undefined;
|
|
@@ -7024,7 +6923,7 @@ declare const contract: {
|
|
|
7024
6923
|
error: string;
|
|
7025
6924
|
} | {
|
|
7026
6925
|
type: "task/status";
|
|
7027
|
-
status: "completed" | "failed" | "running" | "
|
|
6926
|
+
status: "completed" | "failed" | "running" | "has_question" | "stopped";
|
|
7028
6927
|
message?: string | undefined;
|
|
7029
6928
|
task_id?: string | undefined;
|
|
7030
6929
|
timestamp?: number | undefined;
|
|
@@ -7099,7 +6998,7 @@ declare const contract: {
|
|
|
7099
6998
|
type: "simulation/updated";
|
|
7100
6999
|
simulation_id: number;
|
|
7101
7000
|
application_id: number;
|
|
7102
|
-
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "stopped";
|
|
7001
|
+
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "has_question" | "stopped";
|
|
7103
7002
|
has_question?: boolean | undefined;
|
|
7104
7003
|
step_label?: string | undefined;
|
|
7105
7004
|
step_pending?: boolean | undefined;
|
|
@@ -7163,7 +7062,7 @@ declare const contract: {
|
|
|
7163
7062
|
status: "pending" | "completed" | "failed" | "running" | "stopped";
|
|
7164
7063
|
} | {
|
|
7165
7064
|
type: "agent/updated";
|
|
7166
|
-
status: "active" | "learning" | "error" | "completed" | "failed" | "queued" | "running" | "
|
|
7065
|
+
status: "active" | "learning" | "error" | "completed" | "failed" | "queued" | "running" | "has_question" | "stopped";
|
|
7167
7066
|
agent_id?: number | undefined;
|
|
7168
7067
|
context_id?: string | undefined;
|
|
7169
7068
|
task_id?: string | undefined;
|
|
@@ -7290,7 +7189,7 @@ declare const contract: {
|
|
|
7290
7189
|
type: "simulation/updated";
|
|
7291
7190
|
simulation_id: number;
|
|
7292
7191
|
application_id: number;
|
|
7293
|
-
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "stopped";
|
|
7192
|
+
status: "completed" | "failed" | "queued" | "running" | "creating_knowledge" | "has_question" | "stopped";
|
|
7294
7193
|
has_question?: boolean | undefined;
|
|
7295
7194
|
step_label?: string | undefined;
|
|
7296
7195
|
step_pending?: boolean | undefined;
|
|
@@ -7354,7 +7253,7 @@ declare const contract: {
|
|
|
7354
7253
|
status: "pending" | "completed" | "failed" | "running" | "stopped";
|
|
7355
7254
|
} | {
|
|
7356
7255
|
type: "agent/updated";
|
|
7357
|
-
status: "active" | "learning" | "error" | "completed" | "failed" | "queued" | "running" | "
|
|
7256
|
+
status: "active" | "learning" | "error" | "completed" | "failed" | "queued" | "running" | "has_question" | "stopped";
|
|
7358
7257
|
agent_id?: number | undefined;
|
|
7359
7258
|
context_id?: string | undefined;
|
|
7360
7259
|
task_id?: string | undefined;
|
|
@@ -8172,6 +8071,7 @@ declare const contract: {
|
|
|
8172
8071
|
queued: "queued";
|
|
8173
8072
|
running: "running";
|
|
8174
8073
|
creating_knowledge: "creating_knowledge";
|
|
8074
|
+
has_question: "has_question";
|
|
8175
8075
|
stopped: "stopped";
|
|
8176
8076
|
}>>>;
|
|
8177
8077
|
}, z.core.$strip>>;
|
|
@@ -8319,6 +8219,7 @@ declare const contract: {
|
|
|
8319
8219
|
queued: "queued";
|
|
8320
8220
|
running: "running";
|
|
8321
8221
|
creating_knowledge: "creating_knowledge";
|
|
8222
|
+
has_question: "has_question";
|
|
8322
8223
|
stopped: "stopped";
|
|
8323
8224
|
}>>>;
|
|
8324
8225
|
}, z.core.$strip>>;
|
|
@@ -8423,6 +8324,7 @@ declare const contract: {
|
|
|
8423
8324
|
queued: "queued";
|
|
8424
8325
|
running: "running";
|
|
8425
8326
|
creating_knowledge: "creating_knowledge";
|
|
8327
|
+
has_question: "has_question";
|
|
8426
8328
|
stopped: "stopped";
|
|
8427
8329
|
}>>>;
|
|
8428
8330
|
}, z.core.$strip>>;
|
|
@@ -8467,6 +8369,7 @@ declare const contract: {
|
|
|
8467
8369
|
queued: "queued";
|
|
8468
8370
|
running: "running";
|
|
8469
8371
|
creating_knowledge: "creating_knowledge";
|
|
8372
|
+
has_question: "has_question";
|
|
8470
8373
|
stopped: "stopped";
|
|
8471
8374
|
}>>>;
|
|
8472
8375
|
}, z.core.$strip>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../src/sdk/routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../../src/sdk/routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAsKxB,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA8EZ,+DAA+D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAi2E/D,gFAAgF;;;;;;;IAahF,gFAAgF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoYjF,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|