@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 +1 -1
- package/src/index.ts +4 -0
- package/src/org/view-scopes.ts +1 -0
package/package.json
CHANGED
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)
|