@company-semantics/contracts 16.0.0 → 17.0.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 +4 -2
- package/src/api/README.md +25 -6
- package/src/api/generated-spec-hash.ts +2 -2
- package/src/api/generated.ts +12 -12
- package/src/auth/README.md +17 -5
- package/src/billing/README.md +17 -3
- package/src/chat/README.md +78 -17
- package/src/ci-envelope/README.md +26 -14
- package/src/email/README.md +20 -12
- package/src/execution/README.md +86 -21
- package/src/guards/README.md +56 -28
- package/src/identity/README.md +62 -11
- package/src/ingestion/README.md +22 -8
- package/src/mcp/README.md +33 -14
- package/src/message-parts/README.md +77 -17
- package/src/org/README.md +292 -6
- package/src/ralph/README.md +33 -20
- package/src/rate-limit/README.md +24 -0
- package/src/system/README.md +33 -15
package/src/system/README.md
CHANGED
|
@@ -18,28 +18,46 @@ Defines the semantic contract between backend (producer) and site (renderer).
|
|
|
18
18
|
- No render hints in contracts — renderers decide presentation independently
|
|
19
19
|
- `layer` metadata is semantic grouping, not layout instruction
|
|
20
20
|
|
|
21
|
+
<!-- BEGIN GENERATED: readme-public-api — derived from code by `pnpm readme-api`. Do not edit. -->
|
|
22
|
+
|
|
21
23
|
## Public API
|
|
22
24
|
|
|
23
|
-
|
|
25
|
+
- `AggregatedCapabilities` _(type)_
|
|
26
|
+
- `CapabilityInvariants` _(type)_
|
|
27
|
+
- `CapabilityManifest` _(type)_
|
|
28
|
+
- `DiagramEdge` _(type)_
|
|
29
|
+
- `DiagramEdgeRelation` _(type)_
|
|
30
|
+
- `DiagramMode` _(type)_
|
|
31
|
+
- `DiagramNode` _(type)_
|
|
32
|
+
- `DiagramNodeKind` _(type)_
|
|
33
|
+
- `DiagramSnapshot` _(type)_
|
|
34
|
+
- `DiagramSpec` _(type)_
|
|
35
|
+
- `EdgeDirection` _(type)_
|
|
36
|
+
- `FeatureStatus` _(type)_
|
|
37
|
+
- `FlowStage` _(type)_
|
|
38
|
+
- `PipelinePhase` _(type)_
|
|
39
|
+
- `RepoCapability` _(type)_
|
|
40
|
+
- `RepoId` _(type)_
|
|
41
|
+
- `SystemCapability` _(type)_
|
|
42
|
+
- `SystemCapabilityManifest` _(type)_
|
|
43
|
+
- `SystemLayer` _(type)_
|
|
44
|
+
|
|
45
|
+
<!-- END GENERATED: readme-public-api -->
|
|
46
|
+
|
|
47
|
+
<!-- BEGIN GENERATED: readme-dependencies — derived from code by `pnpm readme-api`. Do not edit. -->
|
|
48
|
+
|
|
49
|
+
## Dependencies
|
|
24
50
|
|
|
25
|
-
|
|
26
|
-
- `SystemCapability` — individual feature definition
|
|
27
|
-
- `SystemLayer` — logical layer grouping
|
|
28
|
-
- `SystemCapabilityManifest` — full manifest structure (YAML representation)
|
|
51
|
+
**Internal domains:**
|
|
29
52
|
|
|
30
|
-
|
|
53
|
+
_None._
|
|
31
54
|
|
|
32
|
-
|
|
33
|
-
- `DiagramEdgeRelation` — 'contains' | 'flows_to' | 'depends_on'
|
|
34
|
-
- `DiagramNode` — semantic node with optional layer grouping
|
|
35
|
-
- `DiagramEdge` — semantic relationship between nodes
|
|
36
|
-
- `DiagramSpec` — complete graph that crosses system boundaries
|
|
55
|
+
**External packages:**
|
|
37
56
|
|
|
38
|
-
|
|
57
|
+
_None._
|
|
39
58
|
|
|
40
|
-
|
|
41
|
-
**Imported by:** company-semantics (backend), company-semantics-site
|
|
59
|
+
<!-- END GENERATED: readme-dependencies -->
|
|
42
60
|
|
|
43
61
|
## Specification
|
|
44
62
|
|
|
45
|
-
See [LIVING_ASCII_DIAGRAM_SPEC.md](
|
|
63
|
+
See [LIVING_ASCII_DIAGRAM_SPEC.md](../../docs/LIVING_ASCII_DIAGRAM_SPEC.md) for the canonical system definition.
|