@company-semantics/contracts 0.129.1 → 0.130.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@company-semantics/contracts",
3
- "version": "0.129.1",
3
+ "version": "0.130.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
package/src/index.ts CHANGED
@@ -301,7 +301,6 @@ export type {
301
301
  TeamSyncMode,
302
302
  Team,
303
303
  TeamMember,
304
- TeamDetail,
305
304
  // Sharing and ACL types (PRD-00306)
306
305
  AccessLevel,
307
306
  SharePolicy,
package/src/org/index.ts CHANGED
@@ -110,7 +110,6 @@ export type {
110
110
  TeamScope,
111
111
  Team,
112
112
  TeamMember,
113
- TeamDetail,
114
113
  } from './teams';
115
114
 
116
115
  // Department types (org hierarchy rationalization)
package/src/org/teams.ts CHANGED
@@ -43,18 +43,3 @@ export interface TeamMember {
43
43
  readonly role: TeamMembershipRole;
44
44
  readonly joinedAt: string;
45
45
  }
46
-
47
- /**
48
- * Full team detail view including members.
49
- * Returned by GET /api/teams/:teamId.
50
- *
51
- * TODO: Potentially redundant with TeamResponse (z.infer<typeof TeamResponseSchema>)
52
- * from src/content/schemas.ts now that TeamResponseSchema is derived from
53
- * TeamSummarySchema.extend(). Follow-up cleanup: check consumers and consider
54
- * collapsing to the schema-derived type. Not done in PRD-00458 to avoid
55
- * scope creep into untracked consumers.
56
- */
57
- export interface TeamDetail extends Team {
58
- readonly members: ReadonlyArray<TeamMember>;
59
- readonly syncMode: TeamSyncMode;
60
- }