@roo-code/types 1.37.0 → 1.39.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 +4 -2
- 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 +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3464,7 +3464,8 @@ var organizationDefaultSettingsSchema = globalSettingsSchema.pick({
|
|
|
3464
3464
|
var organizationCloudSettingsSchema = import_zod12.z.object({
|
|
3465
3465
|
recordTaskMessages: import_zod12.z.boolean().optional(),
|
|
3466
3466
|
enableTaskSharing: import_zod12.z.boolean().optional(),
|
|
3467
|
-
taskShareExpirationDays: import_zod12.z.number().int().positive().optional()
|
|
3467
|
+
taskShareExpirationDays: import_zod12.z.number().int().positive().optional(),
|
|
3468
|
+
allowMembersViewAllTasks: import_zod12.z.boolean().optional()
|
|
3468
3469
|
});
|
|
3469
3470
|
var organizationSettingsSchema = import_zod12.z.object({
|
|
3470
3471
|
version: import_zod12.z.number(),
|
|
@@ -3481,7 +3482,8 @@ var ORGANIZATION_DEFAULT = {
|
|
|
3481
3482
|
cloudSettings: {
|
|
3482
3483
|
recordTaskMessages: true,
|
|
3483
3484
|
enableTaskSharing: true,
|
|
3484
|
-
taskShareExpirationDays: 30
|
|
3485
|
+
taskShareExpirationDays: 30,
|
|
3486
|
+
allowMembersViewAllTasks: true
|
|
3485
3487
|
},
|
|
3486
3488
|
defaultSettings: {},
|
|
3487
3489
|
allowList: ORGANIZATION_ALLOW_ALL
|