@roo-code/types 1.48.0 → 1.49.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.cjs +18 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +160 -122
- package/dist/index.d.ts +160 -122
- package/dist/index.js +15 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -93,6 +93,7 @@ __export(index_exports, {
|
|
|
93
93
|
clineMessageSchema: () => clineMessageSchema,
|
|
94
94
|
clineSaySchema: () => clineSaySchema,
|
|
95
95
|
clineSays: () => clineSays,
|
|
96
|
+
cloudAppPropertiesSchema: () => cloudAppPropertiesSchema,
|
|
96
97
|
codeActionIds: () => codeActionIds,
|
|
97
98
|
codebaseIndexConfigSchema: () => codebaseIndexConfigSchema,
|
|
98
99
|
codebaseIndexModelsSchema: () => codebaseIndexModelsSchema,
|
|
@@ -110,6 +111,7 @@ __export(index_exports, {
|
|
|
110
111
|
doubaoDefaultModelId: () => doubaoDefaultModelId,
|
|
111
112
|
doubaoDefaultModelInfo: () => doubaoDefaultModelInfo,
|
|
112
113
|
doubaoModels: () => doubaoModels,
|
|
114
|
+
dynamicAppPropertiesSchema: () => dynamicAppPropertiesSchema,
|
|
113
115
|
experimentIds: () => experimentIds,
|
|
114
116
|
experimentIdsSchema: () => experimentIdsSchema,
|
|
115
117
|
experimentsSchema: () => experimentsSchema,
|
|
@@ -189,6 +191,7 @@ __export(index_exports, {
|
|
|
189
191
|
rooCodeTelemetryEventSchema: () => rooCodeTelemetryEventSchema,
|
|
190
192
|
sambaNovaDefaultModelId: () => sambaNovaDefaultModelId,
|
|
191
193
|
sambaNovaModels: () => sambaNovaModels,
|
|
194
|
+
staticAppPropertiesSchema: () => staticAppPropertiesSchema,
|
|
192
195
|
suggestionItemSchema: () => suggestionItemSchema,
|
|
193
196
|
taskCommandSchema: () => taskCommandSchema,
|
|
194
197
|
taskEventSchema: () => taskEventSchema,
|
|
@@ -1008,16 +1011,25 @@ var TelemetryEventName = /* @__PURE__ */ ((TelemetryEventName2) => {
|
|
|
1008
1011
|
TelemetryEventName2["CODE_INDEX_ERROR"] = "Code Index Error";
|
|
1009
1012
|
return TelemetryEventName2;
|
|
1010
1013
|
})(TelemetryEventName || {});
|
|
1011
|
-
var
|
|
1014
|
+
var staticAppPropertiesSchema = import_zod10.z.object({
|
|
1012
1015
|
appName: import_zod10.z.string(),
|
|
1013
1016
|
appVersion: import_zod10.z.string(),
|
|
1014
1017
|
vscodeVersion: import_zod10.z.string(),
|
|
1015
1018
|
platform: import_zod10.z.string(),
|
|
1016
|
-
editorName: import_zod10.z.string()
|
|
1019
|
+
editorName: import_zod10.z.string()
|
|
1020
|
+
});
|
|
1021
|
+
var dynamicAppPropertiesSchema = import_zod10.z.object({
|
|
1017
1022
|
language: import_zod10.z.string(),
|
|
1018
|
-
mode: import_zod10.z.string()
|
|
1023
|
+
mode: import_zod10.z.string()
|
|
1024
|
+
});
|
|
1025
|
+
var cloudAppPropertiesSchema = import_zod10.z.object({
|
|
1019
1026
|
cloudIsAuthenticated: import_zod10.z.boolean().optional()
|
|
1020
1027
|
});
|
|
1028
|
+
var appPropertiesSchema = import_zod10.z.object({
|
|
1029
|
+
...staticAppPropertiesSchema.shape,
|
|
1030
|
+
...dynamicAppPropertiesSchema.shape,
|
|
1031
|
+
...cloudAppPropertiesSchema.shape
|
|
1032
|
+
});
|
|
1021
1033
|
var taskPropertiesSchema = import_zod10.z.object({
|
|
1022
1034
|
taskId: import_zod10.z.string().optional(),
|
|
1023
1035
|
apiProvider: import_zod10.z.enum(providerNames).optional(),
|
|
@@ -4589,6 +4601,7 @@ var fireworksModels = {
|
|
|
4589
4601
|
clineMessageSchema,
|
|
4590
4602
|
clineSaySchema,
|
|
4591
4603
|
clineSays,
|
|
4604
|
+
cloudAppPropertiesSchema,
|
|
4592
4605
|
codeActionIds,
|
|
4593
4606
|
codebaseIndexConfigSchema,
|
|
4594
4607
|
codebaseIndexModelsSchema,
|
|
@@ -4606,6 +4619,7 @@ var fireworksModels = {
|
|
|
4606
4619
|
doubaoDefaultModelId,
|
|
4607
4620
|
doubaoDefaultModelInfo,
|
|
4608
4621
|
doubaoModels,
|
|
4622
|
+
dynamicAppPropertiesSchema,
|
|
4609
4623
|
experimentIds,
|
|
4610
4624
|
experimentIdsSchema,
|
|
4611
4625
|
experimentsSchema,
|
|
@@ -4685,6 +4699,7 @@ var fireworksModels = {
|
|
|
4685
4699
|
rooCodeTelemetryEventSchema,
|
|
4686
4700
|
sambaNovaDefaultModelId,
|
|
4687
4701
|
sambaNovaModels,
|
|
4702
|
+
staticAppPropertiesSchema,
|
|
4688
4703
|
suggestionItemSchema,
|
|
4689
4704
|
taskCommandSchema,
|
|
4690
4705
|
taskEventSchema,
|