@damn-dev/cli 0.10.0 → 0.13.4

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.
@@ -69,18 +69,20 @@ model Verification {
69
69
  }
70
70
 
71
71
  model Workspace {
72
- id String @id @default(cuid())
73
- name String
74
- ownerId String
75
- owner User @relation(fields: [ownerId], references: [id])
76
- createdAt DateTime @default(now())
77
- agents Agent[]
78
- channels Channel[]
79
- skills Skill[]
80
- tasks Task[]
81
- missions Mission[]
82
- members WorkspaceMember[]
83
- invitations WorkspaceInvitation[]
72
+ id String @id @default(cuid())
73
+ name String
74
+ ownerId String
75
+ owner User @relation(fields: [ownerId], references: [id])
76
+ createdAt DateTime @default(now())
77
+ // JSON: { policy: 'all'|'allowlist'|'denylist', allowedDomains: string[], deniedDomains: string[] }
78
+ browserPolicy String?
79
+ agents Agent[]
80
+ channels Channel[]
81
+ skills Skill[]
82
+ tasks Task[]
83
+ missions Mission[]
84
+ members WorkspaceMember[]
85
+ invitations WorkspaceInvitation[]
84
86
  }
85
87
 
86
88
  model Agent {