Skip to content

Commit 02118c5

Browse files
authored
Add type for allowing org members to view all tasks (#6193)
1 parent 7f70145 commit 02118c5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/types/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roo-code/types",
3-
"version": "1.37.0",
3+
"version": "1.39.0",
44
"description": "TypeScript type definitions for Roo Code.",
55
"publishConfig": {
66
"access": "public",

packages/types/src/cloud.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ export const organizationCloudSettingsSchema = z.object({
9696
recordTaskMessages: z.boolean().optional(),
9797
enableTaskSharing: z.boolean().optional(),
9898
taskShareExpirationDays: z.number().int().positive().optional(),
99+
allowMembersViewAllTasks: z.boolean().optional(),
99100
})
100101

101102
export type OrganizationCloudSettings = z.infer<typeof organizationCloudSettingsSchema>
@@ -128,6 +129,7 @@ export const ORGANIZATION_DEFAULT: OrganizationSettings = {
128129
recordTaskMessages: true,
129130
enableTaskSharing: true,
130131
taskShareExpirationDays: 30,
132+
allowMembersViewAllTasks: true,
131133
},
132134
defaultSettings: {},
133135
allowList: ORGANIZATION_ALLOW_ALL,

0 commit comments

Comments
 (0)