@company-semantics/contracts 1.19.1 → 1.20.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": "1.19.1",
3
+ "version": "1.20.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
package/src/index.ts CHANGED
@@ -22,6 +22,10 @@ export type InsightConfidence = 'low' | 'medium' | 'high'
22
22
  // Invariant enforcement phases (4.0 Observe → 4.1 Stabilize → 4.2 Enforce)
23
23
  export type InvariantPhase = 'observe' | 'stabilize' | 'enforce'
24
24
 
25
+ // Integration partner categories — surface grouping in settings UIs
26
+ export const INTEGRATION_CATEGORIES = ['Meetings', 'Comms', 'Docs'] as const
27
+ export type IntegrationCategory = (typeof INTEGRATION_CATEGORIES)[number]
28
+
25
29
  // System diagram types
26
30
  export type {
27
31
  // Layer-based manifest (source of truth)
@@ -28,6 +28,7 @@ export const VIEW_SCOPE_MAP = {
28
28
  settings: null,
29
29
  chats: null,
30
30
  'my-work': null,
31
+ 'user-md': null,
31
32
  upgrade: null,
32
33
  } as const;
33
34