@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 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