@contractspec/bundle.library 3.8.11 → 3.9.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.
Files changed (202) hide show
  1. package/.turbo/turbo-build.log +290 -282
  2. package/CHANGELOG.md +68 -0
  3. package/dist/application/index.js +11 -11
  4. package/dist/application/mcp/cliMcp.js +6 -6
  5. package/dist/application/mcp/cliMcp.onboarding.d.ts +4 -0
  6. package/dist/application/mcp/cliMcp.onboarding.js +2 -0
  7. package/dist/application/mcp/cliMcp.test.d.ts +1 -0
  8. package/dist/application/mcp/contractsMcp.js +2 -2
  9. package/dist/application/mcp/contractsMcp.test.d.ts +1 -0
  10. package/dist/application/mcp/contractsMcpAdoptionTools.d.ts +3 -0
  11. package/dist/application/mcp/contractsMcpAdoptionTools.js +2 -0
  12. package/dist/application/mcp/contractsMcpResources.js +1 -1
  13. package/dist/application/mcp/contractsMcpTools.js +1 -1
  14. package/dist/application/mcp/contractsMcpTypes.d.ts +16 -0
  15. package/dist/application/mcp/index.js +11 -11
  16. package/dist/components/docs/DocsIndexPage.js +1 -1
  17. package/dist/components/docs/docsManifest.js +1 -1
  18. package/dist/components/docs/examples/DocsExamplesPage.js +1 -17
  19. package/dist/components/docs/examples/ExampleShowcasePage.d.ts +1 -1
  20. package/dist/components/docs/examples/ExampleShowcasePage.js +2 -17
  21. package/dist/components/docs/examples/exampleShowcaseData.d.ts +2 -2
  22. package/dist/components/docs/examples/exampleShowcaseData.js +2 -17
  23. package/dist/components/docs/examples/exampleShowcaseData.test.d.ts +1 -0
  24. package/dist/components/docs/examples/index.js +2 -17
  25. package/dist/components/docs/getting-started/CLIPage.js +5 -4
  26. package/dist/components/docs/getting-started/DataViewTutorialPage.js +44 -67
  27. package/dist/components/docs/getting-started/StartHerePage.js +4 -2
  28. package/dist/components/docs/getting-started/index.js +56 -76
  29. package/dist/components/docs/guides/GuideConnectInRepoPage.js +29 -4
  30. package/dist/components/docs/guides/GuideHostBuilderWorkbenchPage.js +21 -6
  31. package/dist/components/docs/guides/GuideReleaseCapsulesPage.d.ts +1 -0
  32. package/dist/components/docs/guides/GuideReleaseCapsulesPage.js +16 -0
  33. package/dist/components/docs/guides/GuidesIndexPage.js +1 -1
  34. package/dist/components/docs/guides/index.d.ts +1 -0
  35. package/dist/components/docs/guides/index.js +93 -39
  36. package/dist/components/docs/index.js +572 -421
  37. package/dist/components/docs/libraries/LibrariesContractsPage.js +43 -18
  38. package/dist/components/docs/libraries/LibrariesDesignSystemPage.js +43 -31
  39. package/dist/components/docs/libraries/LibrariesOverviewPage.js +1 -1
  40. package/dist/components/docs/libraries/LibrariesUIKitPage.js +42 -16
  41. package/dist/components/docs/libraries/LibrariesUIKitWebPage.d.ts +1 -0
  42. package/dist/components/docs/libraries/LibrariesUIKitWebPage.js +47 -0
  43. package/dist/components/docs/libraries/index.d.ts +1 -0
  44. package/dist/components/docs/libraries/index.js +221 -113
  45. package/dist/components/docs/specs/SpecsBuilderControlPlanePage.js +18 -3
  46. package/dist/components/docs/specs/SpecsConnectPage.js +4 -2
  47. package/dist/components/docs/specs/SpecsDataViewsPage.js +39 -32
  48. package/dist/components/docs/specs/index.js +65 -41
  49. package/dist/index.js +583 -432
  50. package/dist/node/application/index.js +11 -11
  51. package/dist/node/application/mcp/cliMcp.js +6 -6
  52. package/dist/node/application/mcp/cliMcp.onboarding.js +1 -0
  53. package/dist/node/application/mcp/contractsMcp.js +2 -2
  54. package/dist/node/application/mcp/contractsMcpAdoptionTools.js +1 -0
  55. package/dist/node/application/mcp/contractsMcpResources.js +1 -1
  56. package/dist/node/application/mcp/contractsMcpTools.js +1 -1
  57. package/dist/node/application/mcp/index.js +11 -11
  58. package/dist/node/components/docs/DocsIndexPage.js +1 -1
  59. package/dist/node/components/docs/docsManifest.js +1 -1
  60. package/dist/node/components/docs/examples/DocsExamplesPage.js +1 -17
  61. package/dist/node/components/docs/examples/ExampleShowcasePage.js +2 -17
  62. package/dist/node/components/docs/examples/exampleShowcaseData.js +2 -17
  63. package/dist/node/components/docs/examples/index.js +2 -17
  64. package/dist/node/components/docs/getting-started/CLIPage.js +5 -4
  65. package/dist/node/components/docs/getting-started/DataViewTutorialPage.js +44 -67
  66. package/dist/node/components/docs/getting-started/StartHerePage.js +4 -2
  67. package/dist/node/components/docs/getting-started/index.js +56 -76
  68. package/dist/node/components/docs/guides/GuideConnectInRepoPage.js +29 -4
  69. package/dist/node/components/docs/guides/GuideHostBuilderWorkbenchPage.js +21 -6
  70. package/dist/node/components/docs/guides/GuideReleaseCapsulesPage.js +15 -0
  71. package/dist/node/components/docs/guides/GuidesIndexPage.js +1 -1
  72. package/dist/node/components/docs/guides/index.js +93 -39
  73. package/dist/node/components/docs/index.js +572 -421
  74. package/dist/node/components/docs/libraries/LibrariesContractsPage.js +43 -18
  75. package/dist/node/components/docs/libraries/LibrariesDesignSystemPage.js +43 -31
  76. package/dist/node/components/docs/libraries/LibrariesOverviewPage.js +1 -1
  77. package/dist/node/components/docs/libraries/LibrariesUIKitPage.js +42 -16
  78. package/dist/node/components/docs/libraries/LibrariesUIKitWebPage.js +46 -0
  79. package/dist/node/components/docs/libraries/index.js +221 -113
  80. package/dist/node/components/docs/specs/SpecsBuilderControlPlanePage.js +18 -3
  81. package/dist/node/components/docs/specs/SpecsConnectPage.js +4 -2
  82. package/dist/node/components/docs/specs/SpecsDataViewsPage.js +39 -32
  83. package/dist/node/components/docs/specs/index.js +65 -41
  84. package/dist/node/index.js +583 -432
  85. package/package.json +66 -17
  86. package/src/application/mcp/cliMcp.onboarding.ts +297 -0
  87. package/src/application/mcp/cliMcp.test.ts +99 -0
  88. package/src/application/mcp/cliMcp.ts +30 -3
  89. package/src/application/mcp/contractsMcp.test.ts +65 -0
  90. package/src/application/mcp/contractsMcpAdoptionTools.ts +131 -0
  91. package/src/application/mcp/contractsMcpResources.ts +49 -0
  92. package/src/application/mcp/contractsMcpTools.ts +2 -0
  93. package/src/application/mcp/contractsMcpTypes.ts +16 -0
  94. package/src/components/docs/docsManifest.ts +12 -0
  95. package/src/components/docs/examples/DocsExamplesPage.tsx +6 -14
  96. package/src/components/docs/examples/ExampleShowcasePage.tsx +22 -18
  97. package/src/components/docs/examples/exampleShowcaseData.test.ts +22 -0
  98. package/src/components/docs/examples/exampleShowcaseData.ts +75 -50
  99. package/src/components/docs/generated/docs-index._common.json +2008 -1691
  100. package/src/components/docs/generated/docs-index.agent-console.json +377 -377
  101. package/src/components/docs/generated/docs-index.ai-chat-assistant.json +17 -17
  102. package/src/components/docs/generated/docs-index.ai-chat.json +105 -105
  103. package/src/components/docs/generated/docs-index.ai-support-bot.json +9 -9
  104. package/src/components/docs/generated/docs-index.analytics-dashboard.json +169 -169
  105. package/src/components/docs/generated/docs-index.app-config.json +137 -137
  106. package/src/components/docs/generated/docs-index.artisan-knowledge-product.json +17 -17
  107. package/src/components/docs/generated/docs-index.artisan-payments-stripe.json +33 -33
  108. package/src/components/docs/generated/docs-index.audit-trail.json +49 -49
  109. package/src/components/docs/generated/docs-index.calendar-google.json +9 -9
  110. package/src/components/docs/generated/docs-index.content-generation.json +9 -9
  111. package/src/components/docs/generated/docs-index.control-plane.json +17 -17
  112. package/src/components/docs/generated/docs-index.crm-pipeline.json +161 -161
  113. package/src/components/docs/generated/docs-index.data-grid-showcase.json +25 -17
  114. package/src/components/docs/generated/docs-index.defineExample.json +9 -9
  115. package/src/components/docs/generated/docs-index.email-gmail.json +9 -9
  116. package/src/components/docs/generated/docs-index.feature-flags.json +217 -217
  117. package/src/components/docs/generated/docs-index.files.json +177 -177
  118. package/src/components/docs/generated/docs-index.generated.ts +20 -20
  119. package/src/components/docs/generated/docs-index.harness-lab.json +9 -9
  120. package/src/components/docs/generated/docs-index.health.json +97 -97
  121. package/src/components/docs/generated/docs-index.identity-rbac.json +313 -313
  122. package/src/components/docs/generated/docs-index.in-app-docs.json +9 -9
  123. package/src/components/docs/generated/docs-index.integration-hub.json +265 -265
  124. package/src/components/docs/generated/docs-index.integration-posthog.json +9 -9
  125. package/src/components/docs/generated/docs-index.integration-stripe.json +9 -9
  126. package/src/components/docs/generated/docs-index.integration-supabase.json +9 -9
  127. package/src/components/docs/generated/docs-index.jobs.json +137 -137
  128. package/src/components/docs/generated/docs-index.kb-update-pipeline.json +129 -129
  129. package/src/components/docs/generated/docs-index.knowledge-canon.json +9 -9
  130. package/src/components/docs/generated/docs-index.learning-journey-ambient-coach.json +9 -9
  131. package/src/components/docs/generated/docs-index.learning-journey-crm-onboarding.json +49 -49
  132. package/src/components/docs/generated/docs-index.learning-journey-duo-drills.json +9 -9
  133. package/src/components/docs/generated/docs-index.learning-journey-platform-tour.json +49 -49
  134. package/src/components/docs/generated/docs-index.learning-journey-quest-challenges.json +9 -9
  135. package/src/components/docs/generated/docs-index.learning-journey-registry.json +33 -33
  136. package/src/components/docs/generated/docs-index.learning-journey-studio-onboarding.json +49 -49
  137. package/src/components/docs/generated/docs-index.learning-journey-ui-coaching.json +9 -9
  138. package/src/components/docs/generated/docs-index.learning-journey-ui-gamified.json +9 -9
  139. package/src/components/docs/generated/docs-index.learning-journey-ui-onboarding.json +9 -9
  140. package/src/components/docs/generated/docs-index.learning-journey-ui-shared.json +9 -9
  141. package/src/components/docs/generated/docs-index.learning-journey.json +241 -217
  142. package/src/components/docs/generated/docs-index.learning-patterns.json +9 -9
  143. package/src/components/docs/generated/docs-index.lifecycle-cli.json +9 -9
  144. package/src/components/docs/generated/docs-index.lifecycle-dashboard.json +9 -9
  145. package/src/components/docs/generated/docs-index.locale-jurisdiction-gate.json +65 -57
  146. package/src/components/docs/generated/docs-index.manifest.json +432 -432
  147. package/src/components/docs/generated/docs-index.marketplace.json +337 -337
  148. package/src/components/docs/generated/docs-index.meeting-recorder-providers.json +9 -9
  149. package/src/components/docs/generated/docs-index.meeting-recorder.json +49 -49
  150. package/src/components/docs/generated/docs-index.messaging-agent-actions.json +17 -17
  151. package/src/components/docs/generated/docs-index.metrics.json +201 -201
  152. package/src/components/docs/generated/docs-index.minimal.json +17 -17
  153. package/src/components/docs/generated/docs-index.mobile-demo-tasks.json +33 -33
  154. package/src/components/docs/generated/docs-index.notifications.json +65 -65
  155. package/src/components/docs/generated/docs-index.openbanking-powens.json +9 -9
  156. package/src/components/docs/generated/docs-index.openbanking.json +65 -65
  157. package/src/components/docs/generated/docs-index.opencode-cli.json +17 -17
  158. package/src/components/docs/generated/docs-index.personalization.json +9 -9
  159. package/src/components/docs/generated/docs-index.platform-acp.json +137 -137
  160. package/src/components/docs/generated/docs-index.platform-agent.json +201 -185
  161. package/src/components/docs/generated/docs-index.platform-context.json +121 -105
  162. package/src/components/docs/generated/docs-index.platform-control-plane.json +321 -321
  163. package/src/components/docs/generated/docs-index.platform-database.json +89 -89
  164. package/src/components/docs/generated/docs-index.platform-docs.json +161 -153
  165. package/src/components/docs/generated/docs-index.platform-harness.json +177 -177
  166. package/src/components/docs/generated/docs-index.platform-integrations.json +329 -329
  167. package/src/components/docs/generated/docs-index.platform-knowledge.json +57 -57
  168. package/src/components/docs/generated/docs-index.platform-provider-ranking.json +217 -185
  169. package/src/components/docs/generated/docs-index.pocket-family-office.json +129 -129
  170. package/src/components/docs/generated/docs-index.policy-safe-knowledge-assistant.json +9 -9
  171. package/src/components/docs/generated/docs-index.product-intent.json +9 -9
  172. package/src/components/docs/generated/docs-index.project-management-sync.json +9 -9
  173. package/src/components/docs/generated/docs-index.saas-boilerplate.json +209 -209
  174. package/src/components/docs/generated/docs-index.service-business-os.json +193 -193
  175. package/src/components/docs/generated/docs-index.team-hub.json +185 -185
  176. package/src/components/docs/generated/docs-index.unknown.json +521 -521
  177. package/src/components/docs/generated/docs-index.versioned-knowledge-base.json +81 -81
  178. package/src/components/docs/generated/docs-index.video-api-showcase.json +33 -33
  179. package/src/components/docs/generated/docs-index.video-docs-terminal.json +9 -9
  180. package/src/components/docs/generated/docs-index.video-marketing-clip.json +9 -9
  181. package/src/components/docs/generated/docs-index.visualization-showcase.json +17 -17
  182. package/src/components/docs/generated/docs-index.voice-providers.json +9 -9
  183. package/src/components/docs/generated/docs-index.wealth-snapshot.json +153 -153
  184. package/src/components/docs/generated/docs-index.workflow-system.json +433 -433
  185. package/src/components/docs/generated/docs-index.workspace-cli.json +9 -9
  186. package/src/components/docs/getting-started/CLIPage.tsx +10 -2
  187. package/src/components/docs/getting-started/DataViewTutorialPage.tsx +63 -70
  188. package/src/components/docs/getting-started/StartHerePage.tsx +10 -9
  189. package/src/components/docs/guides/GuideConnectInRepoPage.tsx +52 -3
  190. package/src/components/docs/guides/GuideHostBuilderWorkbenchPage.tsx +55 -6
  191. package/src/components/docs/guides/GuideReleaseCapsulesPage.tsx +147 -0
  192. package/src/components/docs/guides/GuidesIndexPage.tsx +7 -0
  193. package/src/components/docs/guides/index.ts +1 -0
  194. package/src/components/docs/libraries/LibrariesContractsPage.tsx +72 -27
  195. package/src/components/docs/libraries/LibrariesDesignSystemPage.tsx +67 -61
  196. package/src/components/docs/libraries/LibrariesOverviewPage.tsx +7 -1
  197. package/src/components/docs/libraries/LibrariesUIKitPage.tsx +63 -25
  198. package/src/components/docs/libraries/LibrariesUIKitWebPage.tsx +115 -0
  199. package/src/components/docs/libraries/index.ts +1 -0
  200. package/src/components/docs/specs/SpecsBuilderControlPlanePage.tsx +58 -3
  201. package/src/components/docs/specs/SpecsConnectPage.tsx +30 -0
  202. package/src/components/docs/specs/SpecsDataViewsPage.tsx +63 -42
@@ -1,138 +1,138 @@
1
1
  [
2
- {
3
- "id": "app-config/app_config.draft_created",
4
- "title": "app_config.draft_created",
5
- "summary": "A new tenant config draft was created.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/events.ts`\n```typescript\nexport const ConfigDraftCreatedEvent = defineEvent({",
6
- "route": "/docs/reference/app-config/app_config.draft_created",
7
- "source": "generated",
8
- "contentPath": "app-config/app_config.draft_created.md"
9
- },
10
- {
11
- "id": "app-config/app_config.promoted_to_preview",
12
- "title": "app_config.promoted_to_preview",
13
- "summary": "A tenant config draft was promoted to preview.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/events.ts`\n```typescript\nexport const ConfigPromotedToPreviewEvent = defineEvent({",
14
- "route": "/docs/reference/app-config/app_config.promoted_to_preview",
15
- "source": "generated",
16
- "contentPath": "app-config/app_config.promoted_to_preview.md"
17
- },
18
- {
19
- "id": "app-config/app_config.published",
20
- "title": "app_config.published",
21
- "summary": "A tenant config version was published to production.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/events.ts`\n```typescript\nexport const ConfigPublishedEvent = defineEvent({",
22
- "route": "/docs/reference/app-config/app_config.published",
23
- "source": "generated",
24
- "contentPath": "app-config/app_config.published.md"
25
- },
26
- {
27
- "id": "app-config/app_config.rolled_back",
28
- "title": "app_config.rolled_back",
29
- "summary": "A tenant config was rolled back to a previous version.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/events.ts`\n```typescript\nexport const ConfigRolledBackEvent = defineEvent({",
30
- "route": "/docs/reference/app-config/app_config.rolled_back",
31
- "source": "generated",
32
- "contentPath": "app-config/app_config.rolled_back.md"
33
- },
34
- {
35
- "id": "app-config/app-config",
36
- "title": "app-config",
37
- "summary": "Tenant app configuration lifecycle management with draft, preview, and publish stages\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: beta\n- **Owners**: @platform.sigil\n- **Tags**: app-config, lifecycle, configuration, tenant",
38
- "route": "/docs/reference/app-config/app-config",
39
- "source": "generated",
40
- "contentPath": "app-config/app-config.md"
41
- },
42
- {
43
- "id": "app-config/appConfig.getResolvedBranding",
44
- "title": "appConfig.getResolvedBranding",
45
- "summary": "Returns the resolved branding for a tenant/app/environment.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: branding\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`",
46
- "route": "/docs/reference/app-config/appConfig.getResolvedBranding",
47
- "source": "generated",
48
- "contentPath": "app-config/appConfig.getResolvedBranding.md"
49
- },
50
- {
51
- "id": "app-config/appConfig.lifecycle.createDraft",
52
- "title": "appConfig.lifecycle.createDraft",
53
- "summary": "Creates a new draft tenant config version.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`\nAllow operators to start editing a new tenant config version.",
54
- "route": "/docs/reference/app-config/appConfig.lifecycle.createDraft",
55
- "source": "generated",
56
- "contentPath": "app-config/appConfig.lifecycle.createDraft.md"
57
- },
58
- {
59
- "id": "app-config/appConfig.lifecycle.getVersion",
60
- "title": "appConfig.lifecycle.getVersion",
61
- "summary": "Fetches a single tenant config version by id.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`\nAllow detail drill-down for lifecycle entries.",
62
- "route": "/docs/reference/app-config/appConfig.lifecycle.getVersion",
63
- "source": "generated",
64
- "contentPath": "app-config/appConfig.lifecycle.getVersion.md"
65
- },
66
- {
67
- "id": "app-config/appConfig.lifecycle.listVersions",
68
- "title": "appConfig.lifecycle.listVersions",
69
- "summary": "Lists all versions of a tenant configuration.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`\nSupport lifecycle views and change audit tooling.",
70
- "route": "/docs/reference/app-config/appConfig.lifecycle.listVersions",
71
- "source": "generated",
72
- "contentPath": "app-config/appConfig.lifecycle.listVersions.md"
73
- },
74
- {
75
- "id": "app-config/appConfig.lifecycle.promoteToPreview",
76
- "title": "appConfig.lifecycle.promoteToPreview",
77
- "summary": "Promotes a draft tenant config to preview/testing state.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`",
78
- "route": "/docs/reference/app-config/appConfig.lifecycle.promoteToPreview",
79
- "source": "generated",
80
- "contentPath": "app-config/appConfig.lifecycle.promoteToPreview.md"
81
- },
82
- {
83
- "id": "app-config/appConfig.lifecycle.publish",
84
- "title": "appConfig.lifecycle.publish",
85
- "summary": "Publishes a preview tenant config to production.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`",
86
- "route": "/docs/reference/app-config/appConfig.lifecycle.publish",
87
- "source": "generated",
88
- "contentPath": "app-config/appConfig.lifecycle.publish.md"
89
- },
90
- {
91
- "id": "app-config/appConfig.lifecycle.rollback",
92
- "title": "appConfig.lifecycle.rollback",
93
- "summary": "Rolls back to a previously published tenant config version.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`",
94
- "route": "/docs/reference/app-config/appConfig.lifecycle.rollback",
95
- "source": "generated",
96
- "contentPath": "app-config/appConfig.lifecycle.rollback.md"
97
- },
98
- {
99
- "id": "app-config/appConfig.resolveMessage",
100
- "title": "appConfig.resolveMessage",
101
- "summary": "Resolves a translation key for a tenant in the requested locale.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`\nExpose a server-side API for resolving message keys on demand.",
102
- "route": "/docs/reference/app-config/appConfig.resolveMessage",
103
- "source": "generated",
104
- "contentPath": "app-config/appConfig.resolveMessage.md"
105
- },
106
- {
107
- "id": "app-config/appConfig.updateBlueprintTranslationCatalog",
108
- "title": "appConfig.updateBlueprintTranslationCatalog",
109
- "summary": "Registers or updates translation entries for a blueprint.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`\nKeep blueprint translation catalogs in sync with shipped copy.",
110
- "route": "/docs/reference/app-config/appConfig.updateBlueprintTranslationCatalog",
111
- "source": "generated",
112
- "contentPath": "app-config/appConfig.updateBlueprintTranslationCatalog.md"
113
- },
114
- {
115
- "id": "app-config/appConfig.updateTenantBranding",
116
- "title": "appConfig.updateTenantBranding",
117
- "summary": "Applies tenant branding overrides (names, assets, domains).\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: branding\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`",
118
- "route": "/docs/reference/app-config/appConfig.updateTenantBranding",
119
- "source": "generated",
120
- "contentPath": "app-config/appConfig.updateTenantBranding.md"
121
- },
122
- {
123
- "id": "app-config/appConfig.updateTenantTranslations",
124
- "title": "appConfig.updateTenantTranslations",
125
- "summary": "Applies tenant-specific translation entries.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`\nAllow tenants to override selected message keys.",
126
- "route": "/docs/reference/app-config/appConfig.updateTenantTranslations",
127
- "source": "generated",
128
- "contentPath": "app-config/appConfig.updateTenantTranslations.md"
129
- },
130
- {
131
- "id": "app-config/appConfig.verifyCustomDomain",
132
- "title": "appConfig.verifyCustomDomain",
133
- "summary": "Validates DNS ownership for tenant custom domains.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: branding\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`",
134
- "route": "/docs/reference/app-config/appConfig.verifyCustomDomain",
135
- "source": "generated",
136
- "contentPath": "app-config/appConfig.verifyCustomDomain.md"
137
- }
138
- ]
2
+ {
3
+ "id": "app-config/app_config.draft_created",
4
+ "title": "app_config.draft_created",
5
+ "summary": "A new tenant config draft was created.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/events.ts`\n```typescript\nimport { ScalarTypeEnum, SchemaModel } from '@contractspec/lib.schema';",
6
+ "route": "/docs/reference/app-config/app_config.draft_created",
7
+ "source": "generated",
8
+ "contentPath": "app-config/app_config.draft_created.md"
9
+ },
10
+ {
11
+ "id": "app-config/app_config.promoted_to_preview",
12
+ "title": "app_config.promoted_to_preview",
13
+ "summary": "A tenant config draft was promoted to preview.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/events.ts`\n```typescript\nimport { ScalarTypeEnum, SchemaModel } from '@contractspec/lib.schema';",
14
+ "route": "/docs/reference/app-config/app_config.promoted_to_preview",
15
+ "source": "generated",
16
+ "contentPath": "app-config/app_config.promoted_to_preview.md"
17
+ },
18
+ {
19
+ "id": "app-config/app_config.published",
20
+ "title": "app_config.published",
21
+ "summary": "A tenant config version was published to production.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/events.ts`\n```typescript\nimport { ScalarTypeEnum, SchemaModel } from '@contractspec/lib.schema';",
22
+ "route": "/docs/reference/app-config/app_config.published",
23
+ "source": "generated",
24
+ "contentPath": "app-config/app_config.published.md"
25
+ },
26
+ {
27
+ "id": "app-config/app_config.rolled_back",
28
+ "title": "app_config.rolled_back",
29
+ "summary": "A tenant config was rolled back to a previous version.\n- **Type**: event (event)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/events.ts`\n```typescript\nimport { ScalarTypeEnum, SchemaModel } from '@contractspec/lib.schema';",
30
+ "route": "/docs/reference/app-config/app_config.rolled_back",
31
+ "source": "generated",
32
+ "contentPath": "app-config/app_config.rolled_back.md"
33
+ },
34
+ {
35
+ "id": "app-config/app-config",
36
+ "title": "app-config",
37
+ "summary": "Tenant app configuration lifecycle management with draft, preview, and publish stages\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: beta\n- **Owners**: @platform.sigil\n- **Tags**: app-config, lifecycle, configuration, tenant",
38
+ "route": "/docs/reference/app-config/app-config",
39
+ "source": "generated",
40
+ "contentPath": "app-config/app-config.md"
41
+ },
42
+ {
43
+ "id": "app-config/appConfig.getResolvedBranding",
44
+ "title": "appConfig.getResolvedBranding",
45
+ "summary": "Returns the resolved branding for a tenant/app/environment.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: branding\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`",
46
+ "route": "/docs/reference/app-config/appConfig.getResolvedBranding",
47
+ "source": "generated",
48
+ "contentPath": "app-config/appConfig.getResolvedBranding.md"
49
+ },
50
+ {
51
+ "id": "app-config/appConfig.lifecycle.createDraft",
52
+ "title": "appConfig.lifecycle.createDraft",
53
+ "summary": "Creates a new draft tenant config version.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`\nAllow operators to start editing a new tenant config version.",
54
+ "route": "/docs/reference/app-config/appConfig.lifecycle.createDraft",
55
+ "source": "generated",
56
+ "contentPath": "app-config/appConfig.lifecycle.createDraft.md"
57
+ },
58
+ {
59
+ "id": "app-config/appConfig.lifecycle.getVersion",
60
+ "title": "appConfig.lifecycle.getVersion",
61
+ "summary": "Fetches a single tenant config version by id.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`\nAllow detail drill-down for lifecycle entries.",
62
+ "route": "/docs/reference/app-config/appConfig.lifecycle.getVersion",
63
+ "source": "generated",
64
+ "contentPath": "app-config/appConfig.lifecycle.getVersion.md"
65
+ },
66
+ {
67
+ "id": "app-config/appConfig.lifecycle.listVersions",
68
+ "title": "appConfig.lifecycle.listVersions",
69
+ "summary": "Lists all versions of a tenant configuration.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`\nSupport lifecycle views and change audit tooling.",
70
+ "route": "/docs/reference/app-config/appConfig.lifecycle.listVersions",
71
+ "source": "generated",
72
+ "contentPath": "app-config/appConfig.lifecycle.listVersions.md"
73
+ },
74
+ {
75
+ "id": "app-config/appConfig.lifecycle.promoteToPreview",
76
+ "title": "appConfig.lifecycle.promoteToPreview",
77
+ "summary": "Promotes a draft tenant config to preview/testing state.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`",
78
+ "route": "/docs/reference/app-config/appConfig.lifecycle.promoteToPreview",
79
+ "source": "generated",
80
+ "contentPath": "app-config/appConfig.lifecycle.promoteToPreview.md"
81
+ },
82
+ {
83
+ "id": "app-config/appConfig.lifecycle.publish",
84
+ "title": "appConfig.lifecycle.publish",
85
+ "summary": "Publishes a preview tenant config to production.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`",
86
+ "route": "/docs/reference/app-config/appConfig.lifecycle.publish",
87
+ "source": "generated",
88
+ "contentPath": "app-config/appConfig.lifecycle.publish.md"
89
+ },
90
+ {
91
+ "id": "app-config/appConfig.lifecycle.rollback",
92
+ "title": "appConfig.lifecycle.rollback",
93
+ "summary": "Rolls back to a previously published tenant config version.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: app-config\n- **File**: `packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts`",
94
+ "route": "/docs/reference/app-config/appConfig.lifecycle.rollback",
95
+ "source": "generated",
96
+ "contentPath": "app-config/appConfig.lifecycle.rollback.md"
97
+ },
98
+ {
99
+ "id": "app-config/appConfig.resolveMessage",
100
+ "title": "appConfig.resolveMessage",
101
+ "summary": "Resolves a translation key for a tenant in the requested locale.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`\nExpose a server-side API for resolving message keys on demand.",
102
+ "route": "/docs/reference/app-config/appConfig.resolveMessage",
103
+ "source": "generated",
104
+ "contentPath": "app-config/appConfig.resolveMessage.md"
105
+ },
106
+ {
107
+ "id": "app-config/appConfig.updateBlueprintTranslationCatalog",
108
+ "title": "appConfig.updateBlueprintTranslationCatalog",
109
+ "summary": "Registers or updates translation entries for a blueprint.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`\nKeep blueprint translation catalogs in sync with shipped copy.",
110
+ "route": "/docs/reference/app-config/appConfig.updateBlueprintTranslationCatalog",
111
+ "source": "generated",
112
+ "contentPath": "app-config/appConfig.updateBlueprintTranslationCatalog.md"
113
+ },
114
+ {
115
+ "id": "app-config/appConfig.updateTenantBranding",
116
+ "title": "appConfig.updateTenantBranding",
117
+ "summary": "Applies tenant branding overrides (names, assets, domains).\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: branding\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`",
118
+ "route": "/docs/reference/app-config/appConfig.updateTenantBranding",
119
+ "source": "generated",
120
+ "contentPath": "app-config/appConfig.updateTenantBranding.md"
121
+ },
122
+ {
123
+ "id": "app-config/appConfig.updateTenantTranslations",
124
+ "title": "appConfig.updateTenantTranslations",
125
+ "summary": "Applies tenant-specific translation entries.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`\nAllow tenants to override selected message keys.",
126
+ "route": "/docs/reference/app-config/appConfig.updateTenantTranslations",
127
+ "source": "generated",
128
+ "contentPath": "app-config/appConfig.updateTenantTranslations.md"
129
+ },
130
+ {
131
+ "id": "app-config/appConfig.verifyCustomDomain",
132
+ "title": "appConfig.verifyCustomDomain",
133
+ "summary": "Validates DNS ownership for tenant custom domains.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Tags**: branding\n- **File**: `packages/libs/contracts-spec/src/app-config/app-config.contracts.ts`",
134
+ "route": "/docs/reference/app-config/appConfig.verifyCustomDomain",
135
+ "source": "generated",
136
+ "contentPath": "app-config/appConfig.verifyCustomDomain.md"
137
+ }
138
+ ]
@@ -1,18 +1,18 @@
1
1
  [
2
- {
3
- "id": "artisan.knowledge.product/artisan.knowledge.product",
4
- "title": "artisan.knowledge.product",
5
- "summary": "Blueprint that surfaces canonical product knowledge to agents and workflows.\n- **Type**: app-config (app-config)\n- **Version**: 1.0.0\n- **Tags**: knowledge, product-canon\n- **File**: `packages/examples/knowledge-canon/src/blueprint.ts`",
6
- "route": "/docs/reference/artisan.knowledge.product/artisan.knowledge.product",
7
- "source": "generated",
8
- "contentPath": "artisan.knowledge.product/artisan.knowledge.product.md"
9
- },
10
- {
11
- "id": "artisan.knowledge.product/knowledge-canon",
12
- "title": "knowledge-canon",
13
- "summary": "Curated product knowledge space with blueprint, tenant config, and FAQ workflow\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: knowledge, canon, faq",
14
- "route": "/docs/reference/artisan.knowledge.product/knowledge-canon",
15
- "source": "generated",
16
- "contentPath": "artisan.knowledge.product/knowledge-canon.md"
17
- }
18
- ]
2
+ {
3
+ "id": "artisan.knowledge.product/artisan.knowledge.product",
4
+ "title": "artisan.knowledge.product",
5
+ "summary": "Blueprint that surfaces canonical product knowledge to agents and workflows.\n- **Type**: app-config (app-config)\n- **Version**: 1.0.0\n- **Tags**: knowledge, product-canon\n- **File**: `packages/examples/knowledge-canon/src/blueprint.ts`",
6
+ "route": "/docs/reference/artisan.knowledge.product/artisan.knowledge.product",
7
+ "source": "generated",
8
+ "contentPath": "artisan.knowledge.product/artisan.knowledge.product.md"
9
+ },
10
+ {
11
+ "id": "artisan.knowledge.product/knowledge-canon",
12
+ "title": "knowledge-canon",
13
+ "summary": "Curated product knowledge space with blueprint, tenant config, and FAQ workflow\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: knowledge, canon, faq",
14
+ "route": "/docs/reference/artisan.knowledge.product/knowledge-canon",
15
+ "source": "generated",
16
+ "contentPath": "artisan.knowledge.product/knowledge-canon.md"
17
+ }
18
+ ]
@@ -1,34 +1,34 @@
1
1
  [
2
- {
3
- "id": "artisan.payments.stripe/artisan.payments.stripe",
4
- "title": "artisan.payments.stripe",
5
- "summary": "Blueprint enabling card payments for ArtisanOS merchants via the Stripe integration.\n- **Type**: app-config (app-config)\n- **Version**: 1.0.0\n- **Tags**: stripe, payments\n- **File**: `packages/examples/integration-stripe/src/blueprint.ts`",
6
- "route": "/docs/reference/artisan.payments.stripe/artisan.payments.stripe",
7
- "source": "generated",
8
- "contentPath": "artisan.payments.stripe/artisan.payments.stripe.md"
9
- },
10
- {
11
- "id": "artisan.payments.stripe/integration-stripe",
12
- "title": "integration-stripe",
13
- "summary": "Stripe payments integration with blueprint, workflow, and tenant configuration\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @integration-team\n- **Tags**: integration, stripe, payments",
14
- "route": "/docs/reference/artisan.payments.stripe/integration-stripe",
15
- "source": "generated",
16
- "contentPath": "artisan.payments.stripe/integration-stripe.md"
17
- },
18
- {
19
- "id": "artisan.payments.stripe/integration-stripe.integration.psp",
20
- "title": "integration-stripe.integration.psp",
21
- "summary": "Integration contract for managed or BYOK Stripe card processing.\n- **Type**: integration (integration)\n- **Version**: 1.0.0\n- **Tags**: stripe, payments\n- **File**: `packages/examples/integration-stripe/src/integration.ts`",
22
- "route": "/docs/reference/artisan.payments.stripe/integration-stripe.integration.psp",
23
- "source": "generated",
24
- "contentPath": "artisan.payments.stripe/integration-stripe.integration.psp.md"
25
- },
26
- {
27
- "id": "artisan.payments.stripe/integration-stripe.workflow.payment",
28
- "title": "integration-stripe.workflow.payment",
29
- "summary": "Charge a customer using the tenant Stripe connection and record settlement details.\n- **Type**: workflow (workflow)\n- **Version**: 1.0.0\n- **Tags**: stripe\n- **File**: `packages/examples/integration-stripe/src/workflow.ts`",
30
- "route": "/docs/reference/artisan.payments.stripe/integration-stripe.workflow.payment",
31
- "source": "generated",
32
- "contentPath": "artisan.payments.stripe/integration-stripe.workflow.payment.md"
33
- }
34
- ]
2
+ {
3
+ "id": "artisan.payments.stripe/artisan.payments.stripe",
4
+ "title": "artisan.payments.stripe",
5
+ "summary": "Blueprint enabling card payments for ArtisanOS merchants via the Stripe integration.\n- **Type**: app-config (app-config)\n- **Version**: 1.0.0\n- **Tags**: stripe, payments\n- **File**: `packages/examples/integration-stripe/src/blueprint.ts`",
6
+ "route": "/docs/reference/artisan.payments.stripe/artisan.payments.stripe",
7
+ "source": "generated",
8
+ "contentPath": "artisan.payments.stripe/artisan.payments.stripe.md"
9
+ },
10
+ {
11
+ "id": "artisan.payments.stripe/integration-stripe",
12
+ "title": "integration-stripe",
13
+ "summary": "Stripe payments integration with blueprint, workflow, and tenant configuration\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @integration-team\n- **Tags**: integration, stripe, payments",
14
+ "route": "/docs/reference/artisan.payments.stripe/integration-stripe",
15
+ "source": "generated",
16
+ "contentPath": "artisan.payments.stripe/integration-stripe.md"
17
+ },
18
+ {
19
+ "id": "artisan.payments.stripe/integration-stripe.integration.psp",
20
+ "title": "integration-stripe.integration.psp",
21
+ "summary": "Integration contract for managed or BYOK Stripe card processing.\n- **Type**: integration (integration)\n- **Version**: 1.0.0\n- **Tags**: stripe, payments\n- **File**: `packages/examples/integration-stripe/src/integration.ts`",
22
+ "route": "/docs/reference/artisan.payments.stripe/integration-stripe.integration.psp",
23
+ "source": "generated",
24
+ "contentPath": "artisan.payments.stripe/integration-stripe.integration.psp.md"
25
+ },
26
+ {
27
+ "id": "artisan.payments.stripe/integration-stripe.workflow.payment",
28
+ "title": "integration-stripe.workflow.payment",
29
+ "summary": "Charge a customer using the tenant Stripe connection and record settlement details.\n- **Type**: workflow (workflow)\n- **Version**: 1.0.0\n- **Tags**: stripe\n- **File**: `packages/examples/integration-stripe/src/workflow.ts`",
30
+ "route": "/docs/reference/artisan.payments.stripe/integration-stripe.workflow.payment",
31
+ "source": "generated",
32
+ "contentPath": "artisan.payments.stripe/integration-stripe.workflow.payment.md"
33
+ }
34
+ ]
@@ -1,50 +1,50 @@
1
1
  [
2
- {
3
- "id": "audit-trail/audit-trail",
4
- "title": "audit-trail",
5
- "summary": "Audit logging, querying, export, and compliance reporting\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @platform.audit-trail\n- **Tags**: audit, compliance, logging, security",
6
- "route": "/docs/reference/audit-trail/audit-trail",
7
- "source": "generated",
8
- "contentPath": "audit-trail/audit-trail.md"
9
- },
10
- {
11
- "id": "audit-trail/audit.logs.export",
12
- "title": "audit.logs.export",
13
- "summary": "Export audit logs for compliance reporting.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, logs, export\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
14
- "route": "/docs/reference/audit-trail/audit.logs.export",
15
- "source": "generated",
16
- "contentPath": "audit-trail/audit.logs.export.md"
17
- },
18
- {
19
- "id": "audit-trail/audit.logs.get",
20
- "title": "audit.logs.get",
21
- "summary": "Get a specific audit log by ID.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, logs, get\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
22
- "route": "/docs/reference/audit-trail/audit.logs.get",
23
- "source": "generated",
24
- "contentPath": "audit-trail/audit.logs.get.md"
25
- },
26
- {
27
- "id": "audit-trail/audit.logs.query",
28
- "title": "audit.logs.query",
29
- "summary": "Query audit logs with filters.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, logs, query\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
30
- "route": "/docs/reference/audit-trail/audit.logs.query",
31
- "source": "generated",
32
- "contentPath": "audit-trail/audit.logs.query.md"
33
- },
34
- {
35
- "id": "audit-trail/audit.stats",
36
- "title": "audit.stats",
37
- "summary": "Get audit log statistics.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, stats\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
38
- "route": "/docs/reference/audit-trail/audit.stats",
39
- "source": "generated",
40
- "contentPath": "audit-trail/audit.stats.md"
41
- },
42
- {
43
- "id": "audit-trail/audit.trace.get",
44
- "title": "audit.trace.get",
45
- "summary": "Get all audit logs for a trace.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, trace, get\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
46
- "route": "/docs/reference/audit-trail/audit.trace.get",
47
- "source": "generated",
48
- "contentPath": "audit-trail/audit.trace.get.md"
49
- }
50
- ]
2
+ {
3
+ "id": "audit-trail/audit-trail",
4
+ "title": "audit-trail",
5
+ "summary": "Audit logging, querying, export, and compliance reporting\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @platform.audit-trail\n- **Tags**: audit, compliance, logging, security",
6
+ "route": "/docs/reference/audit-trail/audit-trail",
7
+ "source": "generated",
8
+ "contentPath": "audit-trail/audit-trail.md"
9
+ },
10
+ {
11
+ "id": "audit-trail/audit.logs.export",
12
+ "title": "audit.logs.export",
13
+ "summary": "Export audit logs for compliance reporting.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, logs, export\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
14
+ "route": "/docs/reference/audit-trail/audit.logs.export",
15
+ "source": "generated",
16
+ "contentPath": "audit-trail/audit.logs.export.md"
17
+ },
18
+ {
19
+ "id": "audit-trail/audit.logs.get",
20
+ "title": "audit.logs.get",
21
+ "summary": "Get a specific audit log by ID.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, logs, get\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
22
+ "route": "/docs/reference/audit-trail/audit.logs.get",
23
+ "source": "generated",
24
+ "contentPath": "audit-trail/audit.logs.get.md"
25
+ },
26
+ {
27
+ "id": "audit-trail/audit.logs.query",
28
+ "title": "audit.logs.query",
29
+ "summary": "Query audit logs with filters.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, logs, query\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
30
+ "route": "/docs/reference/audit-trail/audit.logs.query",
31
+ "source": "generated",
32
+ "contentPath": "audit-trail/audit.logs.query.md"
33
+ },
34
+ {
35
+ "id": "audit-trail/audit.stats",
36
+ "title": "audit.stats",
37
+ "summary": "Get audit log statistics.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, stats\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
38
+ "route": "/docs/reference/audit-trail/audit.stats",
39
+ "source": "generated",
40
+ "contentPath": "audit-trail/audit.stats.md"
41
+ },
42
+ {
43
+ "id": "audit-trail/audit.trace.get",
44
+ "title": "audit.trace.get",
45
+ "summary": "Get all audit logs for a trace.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.audit-trail\n- **Tags**: audit, trace, get\n- **File**: `packages/modules/audit-trail/src/contracts/index.ts`",
46
+ "route": "/docs/reference/audit-trail/audit.trace.get",
47
+ "source": "generated",
48
+ "contentPath": "audit-trail/audit.trace.get.md"
49
+ }
50
+ ]
@@ -1,10 +1,10 @@
1
1
  [
2
- {
3
- "id": "calendar-google/calendar-google",
4
- "title": "calendar-google",
5
- "summary": "Google Calendar integration with OAuth, event listing, and sync\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: calendar, google, integration, oauth",
6
- "route": "/docs/reference/calendar-google/calendar-google",
7
- "source": "generated",
8
- "contentPath": "calendar-google/calendar-google.md"
9
- }
10
- ]
2
+ {
3
+ "id": "calendar-google/calendar-google",
4
+ "title": "calendar-google",
5
+ "summary": "Google Calendar integration with OAuth, event listing, and sync\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: calendar, google, integration, oauth",
6
+ "route": "/docs/reference/calendar-google/calendar-google",
7
+ "source": "generated",
8
+ "contentPath": "calendar-google/calendar-google.md"
9
+ }
10
+ ]
@@ -1,10 +1,10 @@
1
1
  [
2
- {
3
- "id": "content-generation/content-generation",
4
- "title": "content-generation",
5
- "summary": "AI content generation for blog posts, landing pages, emails, and social media\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: content, ai, generation",
6
- "route": "/docs/reference/content-generation/content-generation",
7
- "source": "generated",
8
- "contentPath": "content-generation/content-generation.md"
9
- }
10
- ]
2
+ {
3
+ "id": "content-generation/content-generation",
4
+ "title": "content-generation",
5
+ "summary": "AI content generation for blog posts, landing pages, emails, and social media\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: content, ai, generation",
6
+ "route": "/docs/reference/content-generation/content-generation",
7
+ "source": "generated",
8
+ "contentPath": "content-generation/content-generation.md"
9
+ }
10
+ ]
@@ -1,18 +1,18 @@
1
1
  [
2
- {
3
- "id": "control-plane/control-plane",
4
- "title": "control-plane",
5
- "summary": "Canonical generated feature reference:\n- `generated/docs/platform.control-plane/platform.control-plane.md`\nCanonical generated operation references:\n- `generated/docs/platform.control-plane/controlPlane.intent.submit.md`",
6
- "route": "/docs/reference/control-plane/control-plane",
7
- "source": "generated",
8
- "contentPath": "control-plane/control-plane.md"
9
- },
10
- {
11
- "id": "control-plane/README",
12
- "title": "control-plane docs compatibility path",
13
- "summary": "This directory exists to satisfy the implementation-plan path `generated/docs/control-plane/`.\nThe canonical generated control-plane reference docs currently live under:\n- `generated/docs/platform.control-plane/`",
14
- "route": "/docs/reference/control-plane/README",
15
- "source": "generated",
16
- "contentPath": "control-plane/README.md"
17
- }
18
- ]
2
+ {
3
+ "id": "control-plane/control-plane",
4
+ "title": "control-plane",
5
+ "summary": "Canonical generated feature reference:\n- `generated/docs/platform.control-plane/platform.control-plane.md`\nCanonical generated operation references:\n- `generated/docs/platform.control-plane/controlPlane.intent.submit.md`",
6
+ "route": "/docs/reference/control-plane/control-plane",
7
+ "source": "generated",
8
+ "contentPath": "control-plane/control-plane.md"
9
+ },
10
+ {
11
+ "id": "control-plane/README",
12
+ "title": "control-plane docs compatibility path",
13
+ "summary": "This directory exists to satisfy the implementation-plan path `generated/docs/control-plane/`.\nThe canonical generated control-plane reference docs currently live under:\n- `generated/docs/platform.control-plane/`",
14
+ "route": "/docs/reference/control-plane/README",
15
+ "source": "generated",
16
+ "contentPath": "control-plane/README.md"
17
+ }
18
+ ]