@roo-code/types 1.80.0 → 1.82.0

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/index.d.ts CHANGED
@@ -1604,6 +1604,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
1604
1604
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
1605
1605
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
1606
1606
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1607
+ deprecated: z.ZodOptional<z.ZodBoolean>;
1607
1608
  tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1608
1609
  name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
1609
1610
  contextWindow: z.ZodNumber;
@@ -1648,6 +1649,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
1648
1649
  minTokensPerCachePoint?: number | undefined;
1649
1650
  maxCachePoints?: number | undefined;
1650
1651
  cachableFields?: string[] | undefined;
1652
+ deprecated?: boolean | undefined;
1651
1653
  tiers?: {
1652
1654
  contextWindow: number;
1653
1655
  name?: "default" | "flex" | "priority" | undefined;
@@ -1678,6 +1680,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
1678
1680
  minTokensPerCachePoint?: number | undefined;
1679
1681
  maxCachePoints?: number | undefined;
1680
1682
  cachableFields?: string[] | undefined;
1683
+ deprecated?: boolean | undefined;
1681
1684
  tiers?: {
1682
1685
  contextWindow: number;
1683
1686
  name?: "default" | "flex" | "priority" | undefined;
@@ -1735,6 +1738,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
1735
1738
  minTokensPerCachePoint?: number | undefined;
1736
1739
  maxCachePoints?: number | undefined;
1737
1740
  cachableFields?: string[] | undefined;
1741
+ deprecated?: boolean | undefined;
1738
1742
  tiers?: {
1739
1743
  contextWindow: number;
1740
1744
  name?: "default" | "flex" | "priority" | undefined;
@@ -1790,6 +1794,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
1790
1794
  minTokensPerCachePoint?: number | undefined;
1791
1795
  maxCachePoints?: number | undefined;
1792
1796
  cachableFields?: string[] | undefined;
1797
+ deprecated?: boolean | undefined;
1793
1798
  tiers?: {
1794
1799
  contextWindow: number;
1795
1800
  name?: "default" | "flex" | "priority" | undefined;
@@ -3474,6 +3479,7 @@ declare const providerSettingsSchema: z.ZodObject<{
3474
3479
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
3475
3480
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
3476
3481
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3482
+ deprecated: z.ZodOptional<z.ZodBoolean>;
3477
3483
  tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
3478
3484
  name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
3479
3485
  contextWindow: z.ZodNumber;
@@ -3518,6 +3524,7 @@ declare const providerSettingsSchema: z.ZodObject<{
3518
3524
  minTokensPerCachePoint?: number | undefined;
3519
3525
  maxCachePoints?: number | undefined;
3520
3526
  cachableFields?: string[] | undefined;
3527
+ deprecated?: boolean | undefined;
3521
3528
  tiers?: {
3522
3529
  contextWindow: number;
3523
3530
  name?: "default" | "flex" | "priority" | undefined;
@@ -3548,6 +3555,7 @@ declare const providerSettingsSchema: z.ZodObject<{
3548
3555
  minTokensPerCachePoint?: number | undefined;
3549
3556
  maxCachePoints?: number | undefined;
3550
3557
  cachableFields?: string[] | undefined;
3558
+ deprecated?: boolean | undefined;
3551
3559
  tiers?: {
3552
3560
  contextWindow: number;
3553
3561
  name?: "default" | "flex" | "priority" | undefined;
@@ -3679,6 +3687,7 @@ declare const providerSettingsSchema: z.ZodObject<{
3679
3687
  minTokensPerCachePoint?: number | undefined;
3680
3688
  maxCachePoints?: number | undefined;
3681
3689
  cachableFields?: string[] | undefined;
3690
+ deprecated?: boolean | undefined;
3682
3691
  tiers?: {
3683
3692
  contextWindow: number;
3684
3693
  name?: "default" | "flex" | "priority" | undefined;
@@ -3836,6 +3845,7 @@ declare const providerSettingsSchema: z.ZodObject<{
3836
3845
  minTokensPerCachePoint?: number | undefined;
3837
3846
  maxCachePoints?: number | undefined;
3838
3847
  cachableFields?: string[] | undefined;
3848
+ deprecated?: boolean | undefined;
3839
3849
  tiers?: {
3840
3850
  contextWindow: number;
3841
3851
  name?: "default" | "flex" | "priority" | undefined;
@@ -4031,6 +4041,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4031
4041
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
4032
4042
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
4033
4043
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4044
+ deprecated: z.ZodOptional<z.ZodBoolean>;
4034
4045
  tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
4035
4046
  name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
4036
4047
  contextWindow: z.ZodNumber;
@@ -4075,6 +4086,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4075
4086
  minTokensPerCachePoint?: number | undefined;
4076
4087
  maxCachePoints?: number | undefined;
4077
4088
  cachableFields?: string[] | undefined;
4089
+ deprecated?: boolean | undefined;
4078
4090
  tiers?: {
4079
4091
  contextWindow: number;
4080
4092
  name?: "default" | "flex" | "priority" | undefined;
@@ -4105,6 +4117,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4105
4117
  minTokensPerCachePoint?: number | undefined;
4106
4118
  maxCachePoints?: number | undefined;
4107
4119
  cachableFields?: string[] | undefined;
4120
+ deprecated?: boolean | undefined;
4108
4121
  tiers?: {
4109
4122
  contextWindow: number;
4110
4123
  name?: "default" | "flex" | "priority" | undefined;
@@ -4239,6 +4252,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4239
4252
  minTokensPerCachePoint?: number | undefined;
4240
4253
  maxCachePoints?: number | undefined;
4241
4254
  cachableFields?: string[] | undefined;
4255
+ deprecated?: boolean | undefined;
4242
4256
  tiers?: {
4243
4257
  contextWindow: number;
4244
4258
  name?: "default" | "flex" | "priority" | undefined;
@@ -4397,6 +4411,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4397
4411
  minTokensPerCachePoint?: number | undefined;
4398
4412
  maxCachePoints?: number | undefined;
4399
4413
  cachableFields?: string[] | undefined;
4414
+ deprecated?: boolean | undefined;
4400
4415
  tiers?: {
4401
4416
  contextWindow: number;
4402
4417
  name?: "default" | "flex" | "priority" | undefined;
@@ -4894,6 +4909,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
4894
4909
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
4895
4910
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
4896
4911
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4912
+ deprecated: z.ZodOptional<z.ZodBoolean>;
4897
4913
  tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
4898
4914
  name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
4899
4915
  contextWindow: z.ZodNumber;
@@ -4938,6 +4954,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
4938
4954
  minTokensPerCachePoint?: number | undefined;
4939
4955
  maxCachePoints?: number | undefined;
4940
4956
  cachableFields?: string[] | undefined;
4957
+ deprecated?: boolean | undefined;
4941
4958
  tiers?: {
4942
4959
  contextWindow: number;
4943
4960
  name?: "default" | "flex" | "priority" | undefined;
@@ -4968,6 +4985,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
4968
4985
  minTokensPerCachePoint?: number | undefined;
4969
4986
  maxCachePoints?: number | undefined;
4970
4987
  cachableFields?: string[] | undefined;
4988
+ deprecated?: boolean | undefined;
4971
4989
  tiers?: {
4972
4990
  contextWindow: number;
4973
4991
  name?: "default" | "flex" | "priority" | undefined;
@@ -5025,6 +5043,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
5025
5043
  minTokensPerCachePoint?: number | undefined;
5026
5044
  maxCachePoints?: number | undefined;
5027
5045
  cachableFields?: string[] | undefined;
5046
+ deprecated?: boolean | undefined;
5028
5047
  tiers?: {
5029
5048
  contextWindow: number;
5030
5049
  name?: "default" | "flex" | "priority" | undefined;
@@ -5080,6 +5099,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
5080
5099
  minTokensPerCachePoint?: number | undefined;
5081
5100
  maxCachePoints?: number | undefined;
5082
5101
  cachableFields?: string[] | undefined;
5102
+ deprecated?: boolean | undefined;
5083
5103
  tiers?: {
5084
5104
  contextWindow: number;
5085
5105
  name?: "default" | "flex" | "priority" | undefined;
@@ -6672,7 +6692,7 @@ declare const getApiProtocol: (provider: ProviderName | undefined, modelId?: str
6672
6692
  /**
6673
6693
  * MODELS_BY_PROVIDER
6674
6694
  */
6675
- declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "lmstudio" | "openai" | "ollama">, {
6695
+ declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "openai">, {
6676
6696
  id: ProviderName;
6677
6697
  label: string;
6678
6698
  models: string[];
@@ -7504,6 +7524,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
7504
7524
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
7505
7525
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
7506
7526
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7527
+ deprecated: z.ZodOptional<z.ZodBoolean>;
7507
7528
  tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
7508
7529
  name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
7509
7530
  contextWindow: z.ZodNumber;
@@ -7548,6 +7569,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
7548
7569
  minTokensPerCachePoint?: number | undefined;
7549
7570
  maxCachePoints?: number | undefined;
7550
7571
  cachableFields?: string[] | undefined;
7572
+ deprecated?: boolean | undefined;
7551
7573
  tiers?: {
7552
7574
  contextWindow: number;
7553
7575
  name?: "default" | "flex" | "priority" | undefined;
@@ -7578,6 +7600,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
7578
7600
  minTokensPerCachePoint?: number | undefined;
7579
7601
  maxCachePoints?: number | undefined;
7580
7602
  cachableFields?: string[] | undefined;
7603
+ deprecated?: boolean | undefined;
7581
7604
  tiers?: {
7582
7605
  contextWindow: number;
7583
7606
  name?: "default" | "flex" | "priority" | undefined;
@@ -8057,6 +8080,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8057
8080
  minTokensPerCachePoint?: number | undefined;
8058
8081
  maxCachePoints?: number | undefined;
8059
8082
  cachableFields?: string[] | undefined;
8083
+ deprecated?: boolean | undefined;
8060
8084
  tiers?: {
8061
8085
  contextWindow: number;
8062
8086
  name?: "default" | "flex" | "priority" | undefined;
@@ -8376,6 +8400,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8376
8400
  minTokensPerCachePoint?: number | undefined;
8377
8401
  maxCachePoints?: number | undefined;
8378
8402
  cachableFields?: string[] | undefined;
8403
+ deprecated?: boolean | undefined;
8379
8404
  tiers?: {
8380
8405
  contextWindow: number;
8381
8406
  name?: "default" | "flex" | "priority" | undefined;
@@ -8802,6 +8827,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
8802
8827
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
8803
8828
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
8804
8829
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8830
+ deprecated: z.ZodOptional<z.ZodBoolean>;
8805
8831
  tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
8806
8832
  name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
8807
8833
  contextWindow: z.ZodNumber;
@@ -8846,6 +8872,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
8846
8872
  minTokensPerCachePoint?: number | undefined;
8847
8873
  maxCachePoints?: number | undefined;
8848
8874
  cachableFields?: string[] | undefined;
8875
+ deprecated?: boolean | undefined;
8849
8876
  tiers?: {
8850
8877
  contextWindow: number;
8851
8878
  name?: "default" | "flex" | "priority" | undefined;
@@ -8876,6 +8903,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
8876
8903
  minTokensPerCachePoint?: number | undefined;
8877
8904
  maxCachePoints?: number | undefined;
8878
8905
  cachableFields?: string[] | undefined;
8906
+ deprecated?: boolean | undefined;
8879
8907
  tiers?: {
8880
8908
  contextWindow: number;
8881
8909
  name?: "default" | "flex" | "priority" | undefined;
@@ -9355,6 +9383,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9355
9383
  minTokensPerCachePoint?: number | undefined;
9356
9384
  maxCachePoints?: number | undefined;
9357
9385
  cachableFields?: string[] | undefined;
9386
+ deprecated?: boolean | undefined;
9358
9387
  tiers?: {
9359
9388
  contextWindow: number;
9360
9389
  name?: "default" | "flex" | "priority" | undefined;
@@ -9674,6 +9703,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9674
9703
  minTokensPerCachePoint?: number | undefined;
9675
9704
  maxCachePoints?: number | undefined;
9676
9705
  cachableFields?: string[] | undefined;
9706
+ deprecated?: boolean | undefined;
9677
9707
  tiers?: {
9678
9708
  contextWindow: number;
9679
9709
  name?: "default" | "flex" | "priority" | undefined;
@@ -9999,6 +10029,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9999
10029
  minTokensPerCachePoint?: number | undefined;
10000
10030
  maxCachePoints?: number | undefined;
10001
10031
  cachableFields?: string[] | undefined;
10032
+ deprecated?: boolean | undefined;
10002
10033
  tiers?: {
10003
10034
  contextWindow: number;
10004
10035
  name?: "default" | "flex" | "priority" | undefined;
@@ -10323,6 +10354,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10323
10354
  minTokensPerCachePoint?: number | undefined;
10324
10355
  maxCachePoints?: number | undefined;
10325
10356
  cachableFields?: string[] | undefined;
10357
+ deprecated?: boolean | undefined;
10326
10358
  tiers?: {
10327
10359
  contextWindow: number;
10328
10360
  name?: "default" | "flex" | "priority" | undefined;
@@ -10650,6 +10682,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10650
10682
  minTokensPerCachePoint?: number | undefined;
10651
10683
  maxCachePoints?: number | undefined;
10652
10684
  cachableFields?: string[] | undefined;
10685
+ deprecated?: boolean | undefined;
10653
10686
  tiers?: {
10654
10687
  contextWindow: number;
10655
10688
  name?: "default" | "flex" | "priority" | undefined;
@@ -10977,6 +11010,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10977
11010
  minTokensPerCachePoint?: number | undefined;
10978
11011
  maxCachePoints?: number | undefined;
10979
11012
  cachableFields?: string[] | undefined;
11013
+ deprecated?: boolean | undefined;
10980
11014
  tiers?: {
10981
11015
  contextWindow: number;
10982
11016
  name?: "default" | "flex" | "priority" | undefined;
@@ -11404,6 +11438,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11404
11438
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
11405
11439
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
11406
11440
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11441
+ deprecated: z.ZodOptional<z.ZodBoolean>;
11407
11442
  tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
11408
11443
  name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
11409
11444
  contextWindow: z.ZodNumber;
@@ -11448,6 +11483,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11448
11483
  minTokensPerCachePoint?: number | undefined;
11449
11484
  maxCachePoints?: number | undefined;
11450
11485
  cachableFields?: string[] | undefined;
11486
+ deprecated?: boolean | undefined;
11451
11487
  tiers?: {
11452
11488
  contextWindow: number;
11453
11489
  name?: "default" | "flex" | "priority" | undefined;
@@ -11478,6 +11514,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11478
11514
  minTokensPerCachePoint?: number | undefined;
11479
11515
  maxCachePoints?: number | undefined;
11480
11516
  cachableFields?: string[] | undefined;
11517
+ deprecated?: boolean | undefined;
11481
11518
  tiers?: {
11482
11519
  contextWindow: number;
11483
11520
  name?: "default" | "flex" | "priority" | undefined;
@@ -11957,6 +11994,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11957
11994
  minTokensPerCachePoint?: number | undefined;
11958
11995
  maxCachePoints?: number | undefined;
11959
11996
  cachableFields?: string[] | undefined;
11997
+ deprecated?: boolean | undefined;
11960
11998
  tiers?: {
11961
11999
  contextWindow: number;
11962
12000
  name?: "default" | "flex" | "priority" | undefined;
@@ -12276,6 +12314,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12276
12314
  minTokensPerCachePoint?: number | undefined;
12277
12315
  maxCachePoints?: number | undefined;
12278
12316
  cachableFields?: string[] | undefined;
12317
+ deprecated?: boolean | undefined;
12279
12318
  tiers?: {
12280
12319
  contextWindow: number;
12281
12320
  name?: "default" | "flex" | "priority" | undefined;
@@ -12601,6 +12640,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12601
12640
  minTokensPerCachePoint?: number | undefined;
12602
12641
  maxCachePoints?: number | undefined;
12603
12642
  cachableFields?: string[] | undefined;
12643
+ deprecated?: boolean | undefined;
12604
12644
  tiers?: {
12605
12645
  contextWindow: number;
12606
12646
  name?: "default" | "flex" | "priority" | undefined;
@@ -12925,6 +12965,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12925
12965
  minTokensPerCachePoint?: number | undefined;
12926
12966
  maxCachePoints?: number | undefined;
12927
12967
  cachableFields?: string[] | undefined;
12968
+ deprecated?: boolean | undefined;
12928
12969
  tiers?: {
12929
12970
  contextWindow: number;
12930
12971
  name?: "default" | "flex" | "priority" | undefined;
@@ -13252,6 +13293,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13252
13293
  minTokensPerCachePoint?: number | undefined;
13253
13294
  maxCachePoints?: number | undefined;
13254
13295
  cachableFields?: string[] | undefined;
13296
+ deprecated?: boolean | undefined;
13255
13297
  tiers?: {
13256
13298
  contextWindow: number;
13257
13299
  name?: "default" | "flex" | "priority" | undefined;
@@ -13579,6 +13621,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13579
13621
  minTokensPerCachePoint?: number | undefined;
13580
13622
  maxCachePoints?: number | undefined;
13581
13623
  cachableFields?: string[] | undefined;
13624
+ deprecated?: boolean | undefined;
13582
13625
  tiers?: {
13583
13626
  contextWindow: number;
13584
13627
  name?: "default" | "flex" | "priority" | undefined;
@@ -13937,6 +13980,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13937
13980
  minTokensPerCachePoint?: number | undefined;
13938
13981
  maxCachePoints?: number | undefined;
13939
13982
  cachableFields?: string[] | undefined;
13983
+ deprecated?: boolean | undefined;
13940
13984
  tiers?: {
13941
13985
  contextWindow: number;
13942
13986
  name?: "default" | "flex" | "priority" | undefined;
@@ -14278,6 +14322,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14278
14322
  minTokensPerCachePoint?: number | undefined;
14279
14323
  maxCachePoints?: number | undefined;
14280
14324
  cachableFields?: string[] | undefined;
14325
+ deprecated?: boolean | undefined;
14281
14326
  tiers?: {
14282
14327
  contextWindow: number;
14283
14328
  name?: "default" | "flex" | "priority" | undefined;
@@ -16035,6 +16080,7 @@ declare const appPropertiesSchema: z.ZodObject<{
16035
16080
  type AppProperties = z.infer<typeof appPropertiesSchema>;
16036
16081
  declare const taskPropertiesSchema: z.ZodObject<{
16037
16082
  taskId: z.ZodOptional<z.ZodString>;
16083
+ parentTaskId: z.ZodOptional<z.ZodString>;
16038
16084
  apiProvider: z.ZodOptional<z.ZodEnum<["openrouter", "vercel-ai-gateway", "huggingface", "litellm", "deepinfra", "io-intelligence", "requesty", "unbound", "glama", "ollama", "lmstudio", "vscode-lm", "openai", "fake-ai", "human-relay", "anthropic", "bedrock", "cerebras", "chutes", "claude-code", "doubao", "deepseek", "featherless", "fireworks", "gemini", "gemini-cli", "groq", "mistral", "moonshot", "openai-native", "qwen-code", "roo", "sambanova", "vertex", "xai", "zai"]>>;
16039
16085
  modelId: z.ZodOptional<z.ZodString>;
16040
16086
  diffStrategy: z.ZodOptional<z.ZodString>;
@@ -16060,6 +16106,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
16060
16106
  taskId?: string | undefined;
16061
16107
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16062
16108
  modelId?: string | undefined;
16109
+ parentTaskId?: string | undefined;
16063
16110
  diffStrategy?: string | undefined;
16064
16111
  todos?: {
16065
16112
  total: number;
@@ -16072,6 +16119,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
16072
16119
  taskId?: string | undefined;
16073
16120
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16074
16121
  modelId?: string | undefined;
16122
+ parentTaskId?: string | undefined;
16075
16123
  diffStrategy?: string | undefined;
16076
16124
  todos?: {
16077
16125
  total: number;
@@ -16100,6 +16148,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
16100
16148
  repositoryName: z.ZodOptional<z.ZodString>;
16101
16149
  defaultBranch: z.ZodOptional<z.ZodString>;
16102
16150
  taskId: z.ZodOptional<z.ZodString>;
16151
+ parentTaskId: z.ZodOptional<z.ZodString>;
16103
16152
  apiProvider: z.ZodOptional<z.ZodEnum<["openrouter", "vercel-ai-gateway", "huggingface", "litellm", "deepinfra", "io-intelligence", "requesty", "unbound", "glama", "ollama", "lmstudio", "vscode-lm", "openai", "fake-ai", "human-relay", "anthropic", "bedrock", "cerebras", "chutes", "claude-code", "doubao", "deepseek", "featherless", "fireworks", "gemini", "gemini-cli", "groq", "mistral", "moonshot", "openai-native", "qwen-code", "roo", "sambanova", "vertex", "xai", "zai"]>>;
16104
16153
  modelId: z.ZodOptional<z.ZodString>;
16105
16154
  diffStrategy: z.ZodOptional<z.ZodString>;
@@ -16141,6 +16190,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
16141
16190
  taskId?: string | undefined;
16142
16191
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16143
16192
  modelId?: string | undefined;
16193
+ parentTaskId?: string | undefined;
16144
16194
  hostname?: string | undefined;
16145
16195
  cloudIsAuthenticated?: boolean | undefined;
16146
16196
  diffStrategy?: string | undefined;
@@ -16165,6 +16215,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
16165
16215
  taskId?: string | undefined;
16166
16216
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16167
16217
  modelId?: string | undefined;
16218
+ parentTaskId?: string | undefined;
16168
16219
  hostname?: string | undefined;
16169
16220
  cloudIsAuthenticated?: boolean | undefined;
16170
16221
  diffStrategy?: string | undefined;
@@ -16196,6 +16247,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16196
16247
  repositoryName: z.ZodOptional<z.ZodString>;
16197
16248
  defaultBranch: z.ZodOptional<z.ZodString>;
16198
16249
  taskId: z.ZodOptional<z.ZodString>;
16250
+ parentTaskId: z.ZodOptional<z.ZodString>;
16199
16251
  apiProvider: z.ZodOptional<z.ZodEnum<["openrouter", "vercel-ai-gateway", "huggingface", "litellm", "deepinfra", "io-intelligence", "requesty", "unbound", "glama", "ollama", "lmstudio", "vscode-lm", "openai", "fake-ai", "human-relay", "anthropic", "bedrock", "cerebras", "chutes", "claude-code", "doubao", "deepseek", "featherless", "fireworks", "gemini", "gemini-cli", "groq", "mistral", "moonshot", "openai-native", "qwen-code", "roo", "sambanova", "vertex", "xai", "zai"]>>;
16200
16252
  modelId: z.ZodOptional<z.ZodString>;
16201
16253
  diffStrategy: z.ZodOptional<z.ZodString>;
@@ -16237,6 +16289,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16237
16289
  taskId?: string | undefined;
16238
16290
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16239
16291
  modelId?: string | undefined;
16292
+ parentTaskId?: string | undefined;
16240
16293
  hostname?: string | undefined;
16241
16294
  cloudIsAuthenticated?: boolean | undefined;
16242
16295
  diffStrategy?: string | undefined;
@@ -16261,6 +16314,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16261
16314
  taskId?: string | undefined;
16262
16315
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16263
16316
  modelId?: string | undefined;
16317
+ parentTaskId?: string | undefined;
16264
16318
  hostname?: string | undefined;
16265
16319
  cloudIsAuthenticated?: boolean | undefined;
16266
16320
  diffStrategy?: string | undefined;
@@ -16288,6 +16342,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16288
16342
  taskId?: string | undefined;
16289
16343
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16290
16344
  modelId?: string | undefined;
16345
+ parentTaskId?: string | undefined;
16291
16346
  hostname?: string | undefined;
16292
16347
  cloudIsAuthenticated?: boolean | undefined;
16293
16348
  diffStrategy?: string | undefined;
@@ -16315,6 +16370,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16315
16370
  taskId?: string | undefined;
16316
16371
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16317
16372
  modelId?: string | undefined;
16373
+ parentTaskId?: string | undefined;
16318
16374
  hostname?: string | undefined;
16319
16375
  cloudIsAuthenticated?: boolean | undefined;
16320
16376
  diffStrategy?: string | undefined;
@@ -16337,6 +16393,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16337
16393
  repositoryName: z.ZodOptional<z.ZodString>;
16338
16394
  defaultBranch: z.ZodOptional<z.ZodString>;
16339
16395
  taskId: z.ZodOptional<z.ZodString>;
16396
+ parentTaskId: z.ZodOptional<z.ZodString>;
16340
16397
  apiProvider: z.ZodOptional<z.ZodEnum<["openrouter", "vercel-ai-gateway", "huggingface", "litellm", "deepinfra", "io-intelligence", "requesty", "unbound", "glama", "ollama", "lmstudio", "vscode-lm", "openai", "fake-ai", "human-relay", "anthropic", "bedrock", "cerebras", "chutes", "claude-code", "doubao", "deepseek", "featherless", "fireworks", "gemini", "gemini-cli", "groq", "mistral", "moonshot", "openai-native", "qwen-code", "roo", "sambanova", "vertex", "xai", "zai"]>>;
16341
16398
  modelId: z.ZodOptional<z.ZodString>;
16342
16399
  diffStrategy: z.ZodOptional<z.ZodString>;
@@ -16380,6 +16437,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16380
16437
  taskId?: string | undefined;
16381
16438
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16382
16439
  modelId?: string | undefined;
16440
+ parentTaskId?: string | undefined;
16383
16441
  hostname?: string | undefined;
16384
16442
  cloudIsAuthenticated?: boolean | undefined;
16385
16443
  diffStrategy?: string | undefined;
@@ -16406,6 +16464,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16406
16464
  taskId?: string | undefined;
16407
16465
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16408
16466
  modelId?: string | undefined;
16467
+ parentTaskId?: string | undefined;
16409
16468
  hostname?: string | undefined;
16410
16469
  cloudIsAuthenticated?: boolean | undefined;
16411
16470
  diffStrategy?: string | undefined;
@@ -16435,6 +16494,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16435
16494
  taskId?: string | undefined;
16436
16495
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16437
16496
  modelId?: string | undefined;
16497
+ parentTaskId?: string | undefined;
16438
16498
  hostname?: string | undefined;
16439
16499
  cloudIsAuthenticated?: boolean | undefined;
16440
16500
  diffStrategy?: string | undefined;
@@ -16464,6 +16524,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16464
16524
  taskId?: string | undefined;
16465
16525
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16466
16526
  modelId?: string | undefined;
16527
+ parentTaskId?: string | undefined;
16467
16528
  hostname?: string | undefined;
16468
16529
  cloudIsAuthenticated?: boolean | undefined;
16469
16530
  diffStrategy?: string | undefined;
@@ -16614,6 +16675,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16614
16675
  repositoryUrl: z.ZodOptional<z.ZodString>;
16615
16676
  repositoryName: z.ZodOptional<z.ZodString>;
16616
16677
  defaultBranch: z.ZodOptional<z.ZodString>;
16678
+ parentTaskId: z.ZodOptional<z.ZodString>;
16617
16679
  apiProvider: z.ZodOptional<z.ZodEnum<["openrouter", "vercel-ai-gateway", "huggingface", "litellm", "deepinfra", "io-intelligence", "requesty", "unbound", "glama", "ollama", "lmstudio", "vscode-lm", "openai", "fake-ai", "human-relay", "anthropic", "bedrock", "cerebras", "chutes", "claude-code", "doubao", "deepseek", "featherless", "fireworks", "gemini", "gemini-cli", "groq", "mistral", "moonshot", "openai-native", "qwen-code", "roo", "sambanova", "vertex", "xai", "zai"]>>;
16618
16680
  modelId: z.ZodOptional<z.ZodString>;
16619
16681
  diffStrategy: z.ZodOptional<z.ZodString>;
@@ -16687,6 +16749,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16687
16749
  isSubtask?: boolean | undefined;
16688
16750
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16689
16751
  modelId?: string | undefined;
16752
+ parentTaskId?: string | undefined;
16690
16753
  hostname?: string | undefined;
16691
16754
  cloudIsAuthenticated?: boolean | undefined;
16692
16755
  diffStrategy?: string | undefined;
@@ -16743,6 +16806,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16743
16806
  isSubtask?: boolean | undefined;
16744
16807
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16745
16808
  modelId?: string | undefined;
16809
+ parentTaskId?: string | undefined;
16746
16810
  hostname?: string | undefined;
16747
16811
  cloudIsAuthenticated?: boolean | undefined;
16748
16812
  diffStrategy?: string | undefined;
@@ -16802,6 +16866,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16802
16866
  isSubtask?: boolean | undefined;
16803
16867
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16804
16868
  modelId?: string | undefined;
16869
+ parentTaskId?: string | undefined;
16805
16870
  hostname?: string | undefined;
16806
16871
  cloudIsAuthenticated?: boolean | undefined;
16807
16872
  diffStrategy?: string | undefined;
@@ -16861,6 +16926,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16861
16926
  isSubtask?: boolean | undefined;
16862
16927
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16863
16928
  modelId?: string | undefined;
16929
+ parentTaskId?: string | undefined;
16864
16930
  hostname?: string | undefined;
16865
16931
  cloudIsAuthenticated?: boolean | undefined;
16866
16932
  diffStrategy?: string | undefined;
@@ -16886,6 +16952,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16886
16952
  repositoryName: z.ZodOptional<z.ZodString>;
16887
16953
  defaultBranch: z.ZodOptional<z.ZodString>;
16888
16954
  taskId: z.ZodOptional<z.ZodString>;
16955
+ parentTaskId: z.ZodOptional<z.ZodString>;
16889
16956
  apiProvider: z.ZodOptional<z.ZodEnum<["openrouter", "vercel-ai-gateway", "huggingface", "litellm", "deepinfra", "io-intelligence", "requesty", "unbound", "glama", "ollama", "lmstudio", "vscode-lm", "openai", "fake-ai", "human-relay", "anthropic", "bedrock", "cerebras", "chutes", "claude-code", "doubao", "deepseek", "featherless", "fireworks", "gemini", "gemini-cli", "groq", "mistral", "moonshot", "openai-native", "qwen-code", "roo", "sambanova", "vertex", "xai", "zai"]>>;
16890
16957
  modelId: z.ZodOptional<z.ZodString>;
16891
16958
  diffStrategy: z.ZodOptional<z.ZodString>;
@@ -16930,6 +16997,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16930
16997
  taskId?: string | undefined;
16931
16998
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16932
16999
  modelId?: string | undefined;
17000
+ parentTaskId?: string | undefined;
16933
17001
  hostname?: string | undefined;
16934
17002
  cloudIsAuthenticated?: boolean | undefined;
16935
17003
  diffStrategy?: string | undefined;
@@ -16959,6 +17027,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16959
17027
  taskId?: string | undefined;
16960
17028
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16961
17029
  modelId?: string | undefined;
17030
+ parentTaskId?: string | undefined;
16962
17031
  hostname?: string | undefined;
16963
17032
  cloudIsAuthenticated?: boolean | undefined;
16964
17033
  diffStrategy?: string | undefined;
@@ -16991,6 +17060,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
16991
17060
  taskId?: string | undefined;
16992
17061
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16993
17062
  modelId?: string | undefined;
17063
+ parentTaskId?: string | undefined;
16994
17064
  hostname?: string | undefined;
16995
17065
  cloudIsAuthenticated?: boolean | undefined;
16996
17066
  diffStrategy?: string | undefined;
@@ -17023,6 +17093,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
17023
17093
  taskId?: string | undefined;
17024
17094
  apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
17025
17095
  modelId?: string | undefined;
17096
+ parentTaskId?: string | undefined;
17026
17097
  hostname?: string | undefined;
17027
17098
  cloudIsAuthenticated?: boolean | undefined;
17028
17099
  diffStrategy?: string | undefined;
@@ -17713,6 +17784,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
17713
17784
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
17714
17785
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
17715
17786
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17787
+ deprecated: z.ZodOptional<z.ZodBoolean>;
17716
17788
  tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
17717
17789
  name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
17718
17790
  contextWindow: z.ZodNumber;
@@ -17757,6 +17829,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
17757
17829
  minTokensPerCachePoint?: number | undefined;
17758
17830
  maxCachePoints?: number | undefined;
17759
17831
  cachableFields?: string[] | undefined;
17832
+ deprecated?: boolean | undefined;
17760
17833
  tiers?: {
17761
17834
  contextWindow: number;
17762
17835
  name?: "default" | "flex" | "priority" | undefined;
@@ -17787,6 +17860,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
17787
17860
  minTokensPerCachePoint?: number | undefined;
17788
17861
  maxCachePoints?: number | undefined;
17789
17862
  cachableFields?: string[] | undefined;
17863
+ deprecated?: boolean | undefined;
17790
17864
  tiers?: {
17791
17865
  contextWindow: number;
17792
17866
  name?: "default" | "flex" | "priority" | undefined;
@@ -17921,6 +17995,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
17921
17995
  minTokensPerCachePoint?: number | undefined;
17922
17996
  maxCachePoints?: number | undefined;
17923
17997
  cachableFields?: string[] | undefined;
17998
+ deprecated?: boolean | undefined;
17924
17999
  tiers?: {
17925
18000
  contextWindow: number;
17926
18001
  name?: "default" | "flex" | "priority" | undefined;
@@ -18079,6 +18154,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
18079
18154
  minTokensPerCachePoint?: number | undefined;
18080
18155
  maxCachePoints?: number | undefined;
18081
18156
  cachableFields?: string[] | undefined;
18157
+ deprecated?: boolean | undefined;
18082
18158
  tiers?: {
18083
18159
  contextWindow: number;
18084
18160
  name?: "default" | "flex" | "priority" | undefined;
@@ -18299,6 +18375,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
18299
18375
  minTokensPerCachePoint?: number | undefined;
18300
18376
  maxCachePoints?: number | undefined;
18301
18377
  cachableFields?: string[] | undefined;
18378
+ deprecated?: boolean | undefined;
18302
18379
  tiers?: {
18303
18380
  contextWindow: number;
18304
18381
  name?: "default" | "flex" | "priority" | undefined;
@@ -18519,6 +18596,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
18519
18596
  minTokensPerCachePoint?: number | undefined;
18520
18597
  maxCachePoints?: number | undefined;
18521
18598
  cachableFields?: string[] | undefined;
18599
+ deprecated?: boolean | undefined;
18522
18600
  tiers?: {
18523
18601
  contextWindow: number;
18524
18602
  name?: "default" | "flex" | "priority" | undefined;
@@ -40440,6 +40518,7 @@ declare const modelInfoSchema: z.ZodObject<{
40440
40518
  minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
40441
40519
  maxCachePoints: z.ZodOptional<z.ZodNumber>;
40442
40520
  cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
40521
+ deprecated: z.ZodOptional<z.ZodBoolean>;
40443
40522
  /**
40444
40523
  * Service tiers with pricing information.
40445
40524
  * Each tier can have a name (for OpenAI service tiers) and pricing overrides.
@@ -40489,6 +40568,7 @@ declare const modelInfoSchema: z.ZodObject<{
40489
40568
  minTokensPerCachePoint?: number | undefined;
40490
40569
  maxCachePoints?: number | undefined;
40491
40570
  cachableFields?: string[] | undefined;
40571
+ deprecated?: boolean | undefined;
40492
40572
  tiers?: {
40493
40573
  contextWindow: number;
40494
40574
  name?: "default" | "flex" | "priority" | undefined;
@@ -40519,6 +40599,7 @@ declare const modelInfoSchema: z.ZodObject<{
40519
40599
  minTokensPerCachePoint?: number | undefined;
40520
40600
  maxCachePoints?: number | undefined;
40521
40601
  cachableFields?: string[] | undefined;
40602
+ deprecated?: boolean | undefined;
40522
40603
  tiers?: {
40523
40604
  contextWindow: number;
40524
40605
  name?: "default" | "flex" | "priority" | undefined;
@@ -41237,7 +41318,7 @@ declare const cerebrasModels: {
41237
41318
  };
41238
41319
  };
41239
41320
 
41240
- type ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | "deepseek-ai/DeepSeek-R1" | "deepseek-ai/DeepSeek-V3" | "deepseek-ai/DeepSeek-V3.1" | "unsloth/Llama-3.3-70B-Instruct" | "chutesai/Llama-4-Scout-17B-16E-Instruct" | "unsloth/Mistral-Nemo-Instruct-2407" | "unsloth/gemma-3-12b-it" | "NousResearch/DeepHermes-3-Llama-3-8B-Preview" | "unsloth/gemma-3-4b-it" | "nvidia/Llama-3_3-Nemotron-Super-49B-v1" | "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" | "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8" | "deepseek-ai/DeepSeek-V3-Base" | "deepseek-ai/DeepSeek-R1-Zero" | "deepseek-ai/DeepSeek-V3-0324" | "Qwen/Qwen3-235B-A22B" | "Qwen/Qwen3-235B-A22B-Instruct-2507" | "Qwen/Qwen3-32B" | "Qwen/Qwen3-30B-A3B" | "Qwen/Qwen3-14B" | "Qwen/Qwen3-8B" | "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8" | "microsoft/MAI-DS-R1-FP8" | "tngtech/DeepSeek-R1T-Chimera" | "zai-org/GLM-4.5-Air" | "zai-org/GLM-4.5-FP8" | "zai-org/GLM-4.5-turbo" | "moonshotai/Kimi-K2-Instruct-75k" | "moonshotai/Kimi-K2-Instruct-0905" | "Qwen/Qwen3-235B-A22B-Thinking-2507" | "Qwen/Qwen3-Next-80B-A3B-Instruct" | "Qwen/Qwen3-Next-80B-A3B-Thinking";
41321
+ type ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | "deepseek-ai/DeepSeek-R1" | "deepseek-ai/DeepSeek-V3" | "deepseek-ai/DeepSeek-V3.1" | "deepseek-ai/DeepSeek-V3.1-Terminus" | "deepseek-ai/DeepSeek-V3.1-turbo" | "deepseek-ai/DeepSeek-V3.2-Exp" | "unsloth/Llama-3.3-70B-Instruct" | "chutesai/Llama-4-Scout-17B-16E-Instruct" | "unsloth/Mistral-Nemo-Instruct-2407" | "unsloth/gemma-3-12b-it" | "NousResearch/DeepHermes-3-Llama-3-8B-Preview" | "unsloth/gemma-3-4b-it" | "nvidia/Llama-3_3-Nemotron-Super-49B-v1" | "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" | "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8" | "deepseek-ai/DeepSeek-V3-Base" | "deepseek-ai/DeepSeek-R1-Zero" | "deepseek-ai/DeepSeek-V3-0324" | "Qwen/Qwen3-235B-A22B" | "Qwen/Qwen3-235B-A22B-Instruct-2507" | "Qwen/Qwen3-32B" | "Qwen/Qwen3-30B-A3B" | "Qwen/Qwen3-14B" | "Qwen/Qwen3-8B" | "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8" | "microsoft/MAI-DS-R1-FP8" | "tngtech/DeepSeek-R1T-Chimera" | "zai-org/GLM-4.5-Air" | "zai-org/GLM-4.5-FP8" | "zai-org/GLM-4.5-turbo" | "zai-org/GLM-4.6-FP8" | "moonshotai/Kimi-K2-Instruct-75k" | "moonshotai/Kimi-K2-Instruct-0905" | "Qwen/Qwen3-235B-A22B-Thinking-2507" | "Qwen/Qwen3-Next-80B-A3B-Instruct" | "Qwen/Qwen3-Next-80B-A3B-Thinking" | "Qwen/Qwen3-VL-235B-A22B-Thinking";
41241
41322
  declare const chutesDefaultModelId: ChutesModelId;
41242
41323
  declare const chutesModels: {
41243
41324
  readonly "deepseek-ai/DeepSeek-R1-0528": {
@@ -41276,6 +41357,33 @@ declare const chutesModels: {
41276
41357
  readonly outputPrice: 0;
41277
41358
  readonly description: "DeepSeek V3.1 model.";
41278
41359
  };
41360
+ readonly "deepseek-ai/DeepSeek-V3.1-Terminus": {
41361
+ readonly maxTokens: 163840;
41362
+ readonly contextWindow: 163840;
41363
+ readonly supportsImages: false;
41364
+ readonly supportsPromptCache: false;
41365
+ readonly inputPrice: 0.23;
41366
+ readonly outputPrice: 0.9;
41367
+ readonly description: "DeepSeek‑V3.1‑Terminus is an update to V3.1 that improves language consistency by reducing CN/EN mix‑ups and eliminating random characters, while strengthening agent capabilities with notably better Code Agent and Search Agent performance.";
41368
+ };
41369
+ readonly "deepseek-ai/DeepSeek-V3.1-turbo": {
41370
+ readonly maxTokens: 32768;
41371
+ readonly contextWindow: 163840;
41372
+ readonly supportsImages: false;
41373
+ readonly supportsPromptCache: false;
41374
+ readonly inputPrice: 1;
41375
+ readonly outputPrice: 3;
41376
+ readonly description: "DeepSeek-V3.1-turbo is an FP8, speculative-decoding turbo variant optimized for ultra-fast single-shot queries (~200 TPS), with outputs close to the originals and solid function calling/reasoning/structured output, priced at $1/M input and $3/M output tokens, using 2× quota per request and not intended for bulk workloads.";
41377
+ };
41378
+ readonly "deepseek-ai/DeepSeek-V3.2-Exp": {
41379
+ readonly maxTokens: 163840;
41380
+ readonly contextWindow: 163840;
41381
+ readonly supportsImages: false;
41382
+ readonly supportsPromptCache: false;
41383
+ readonly inputPrice: 0.25;
41384
+ readonly outputPrice: 0.35;
41385
+ readonly description: "DeepSeek-V3.2-Exp is an experimental LLM that introduces DeepSeek Sparse Attention to improve long‑context training and inference efficiency while maintaining performance comparable to V3.1‑Terminus.";
41386
+ };
41279
41387
  readonly "unsloth/Llama-3.3-70B-Instruct": {
41280
41388
  readonly maxTokens: 32768;
41281
41389
  readonly contextWindow: 131072;
@@ -41483,6 +41591,15 @@ declare const chutesModels: {
41483
41591
  readonly outputPrice: 3;
41484
41592
  readonly description: "GLM-4.5-turbo model with 128K token context window, optimized for fast inference.";
41485
41593
  };
41594
+ readonly "zai-org/GLM-4.6-FP8": {
41595
+ readonly maxTokens: 32768;
41596
+ readonly contextWindow: 202752;
41597
+ readonly supportsImages: false;
41598
+ readonly supportsPromptCache: false;
41599
+ readonly inputPrice: 0;
41600
+ readonly outputPrice: 0;
41601
+ readonly description: "GLM-4.6 introduces major upgrades over GLM-4.5, including a longer 200K-token context window for complex tasks, stronger coding performance in benchmarks and real-world tools (such as Claude Code, Cline, Roo Code, and Kilo Code), improved reasoning with tool use during inference, more capable and efficient agent integration, and refined writing that better matches human style, readability, and natural role-play scenarios.";
41602
+ };
41486
41603
  readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
41487
41604
  readonly maxTokens: 32768;
41488
41605
  readonly contextWindow: 262144;
@@ -41537,6 +41654,15 @@ declare const chutesModels: {
41537
41654
  readonly outputPrice: 0;
41538
41655
  readonly description: "Reasoning-first model with structured thinking traces for multi-step problems, math proofs, and code synthesis.";
41539
41656
  };
41657
+ readonly "Qwen/Qwen3-VL-235B-A22B-Thinking": {
41658
+ readonly maxTokens: 262144;
41659
+ readonly contextWindow: 262144;
41660
+ readonly supportsImages: true;
41661
+ readonly supportsPromptCache: false;
41662
+ readonly inputPrice: 0.16;
41663
+ readonly outputPrice: 0.65;
41664
+ readonly description: "Qwen3‑VL‑235B‑A22B‑Thinking is an open‑weight MoE vision‑language model (235B total, ~22B activated) optimized for deliberate multi‑step reasoning with strong text‑image‑video understanding and long‑context capabilities.";
41665
+ };
41540
41666
  };
41541
41667
 
41542
41668
  /**
@@ -42906,6 +43032,7 @@ declare const rooModels: {
42906
43032
  readonly inputPrice: 0;
42907
43033
  readonly outputPrice: 0;
42908
43034
  readonly description: "Grok 4 Fast is xAI's latest multimodal model with SOTA cost-efficiency and a 2M token context window. (Note: prompts and completions are logged by xAI and used to improve the model.)";
43035
+ readonly deprecated: true;
42909
43036
  };
42910
43037
  readonly "deepseek/deepseek-chat-v3.1": {
42911
43038
  readonly maxTokens: 16384;