@roo-code/types 1.102.0 → 1.105.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 +5 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6005,7 +6005,7 @@ var MODELS_BY_PROVIDER = {
|
|
|
6005
6005
|
models: Object.keys(openAiNativeModels)
|
|
6006
6006
|
},
|
|
6007
6007
|
"qwen-code": { id: "qwen-code", label: "Qwen Code", models: Object.keys(qwenCodeModels) },
|
|
6008
|
-
roo: { id: "roo", label: "Roo Code
|
|
6008
|
+
roo: { id: "roo", label: "Roo Code Router", models: [] },
|
|
6009
6009
|
sambanova: {
|
|
6010
6010
|
id: "sambanova",
|
|
6011
6011
|
label: "SambaNova",
|
|
@@ -6888,7 +6888,8 @@ var organizationCloudSettingsSchema = import_zod16.z.object({
|
|
|
6888
6888
|
allowPublicTaskSharing: import_zod16.z.boolean().optional(),
|
|
6889
6889
|
taskShareExpirationDays: import_zod16.z.number().int().positive().optional(),
|
|
6890
6890
|
allowMembersViewAllTasks: import_zod16.z.boolean().optional(),
|
|
6891
|
-
workspaceTaskVisibility: workspaceTaskVisibilitySchema.optional()
|
|
6891
|
+
workspaceTaskVisibility: workspaceTaskVisibilitySchema.optional(),
|
|
6892
|
+
llmEnhancedFeaturesEnabled: import_zod16.z.boolean().optional()
|
|
6892
6893
|
});
|
|
6893
6894
|
var organizationFeaturesSchema = import_zod16.z.object({
|
|
6894
6895
|
roomoteControlEnabled: import_zod16.z.boolean().optional()
|
|
@@ -6927,7 +6928,8 @@ var ORGANIZATION_DEFAULT = {
|
|
|
6927
6928
|
enableTaskSharing: true,
|
|
6928
6929
|
allowPublicTaskSharing: true,
|
|
6929
6930
|
taskShareExpirationDays: 30,
|
|
6930
|
-
allowMembersViewAllTasks: true
|
|
6931
|
+
allowMembersViewAllTasks: true,
|
|
6932
|
+
llmEnhancedFeaturesEnabled: false
|
|
6931
6933
|
},
|
|
6932
6934
|
defaultSettings: {},
|
|
6933
6935
|
allowList: ORGANIZATION_ALLOW_ALL
|