@contractspec/bundle.library 3.8.12 → 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 +46 -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 +65 -16
  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,18 +1,18 @@
1
1
  [
2
- {
3
- "id": "minimal/minimal",
4
- "title": "minimal",
5
- "summary": "Bare-minimum contract definition showing the simplest possible setup\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @team\n- **Tags**: minimal, example\n- **File**: `packages/examples/minimal/src/minimal.feature.ts`",
6
- "route": "/docs/reference/minimal/minimal",
7
- "source": "generated",
8
- "contentPath": "minimal/minimal.md"
9
- },
10
- {
11
- "id": "minimal/user.create",
12
- "title": "user.create",
13
- "summary": "Create a new user account with the provided email\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @team\n- **Tags**: user\n- **File**: `packages/examples/minimal/src/contracts/user.ts`",
14
- "route": "/docs/reference/minimal/user.create",
15
- "source": "generated",
16
- "contentPath": "minimal/user.create.md"
17
- }
18
- ]
2
+ {
3
+ "id": "minimal/minimal",
4
+ "title": "minimal",
5
+ "summary": "Bare-minimum contract definition showing the simplest possible setup\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @team\n- **Tags**: minimal, example\n- **File**: `packages/examples/minimal/src/minimal.feature.ts`",
6
+ "route": "/docs/reference/minimal/minimal",
7
+ "source": "generated",
8
+ "contentPath": "minimal/minimal.md"
9
+ },
10
+ {
11
+ "id": "minimal/user.create",
12
+ "title": "user.create",
13
+ "summary": "Create a new user account with the provided email\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @team\n- **Tags**: user\n- **File**: `packages/examples/minimal/src/contracts/user.ts`",
14
+ "route": "/docs/reference/minimal/user.create",
15
+ "source": "generated",
16
+ "contentPath": "minimal/user.create.md"
17
+ }
18
+ ]
@@ -1,34 +1,34 @@
1
1
  [
2
- {
3
- "id": "mobile-demo.tasks/mobile-demo.tasks",
4
- "title": "mobile-demo.tasks",
5
- "summary": "Task-list demo feature for the Expo app, covering list, create, and status updates.\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.core\n- **Tags**: mobile, tasks, expo, example",
6
- "route": "/docs/reference/mobile-demo.tasks/mobile-demo.tasks",
7
- "source": "generated",
8
- "contentPath": "mobile-demo.tasks/mobile-demo.tasks.md"
9
- },
10
- {
11
- "id": "mobile-demo.tasks/task.create",
12
- "title": "task.create",
13
- "summary": "Create a new task.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.core\n- **Tags**: task, mobile\n- **File**: `packages/apps/mobile-demo/src/contracts/task.contract.ts`",
14
- "route": "/docs/reference/mobile-demo.tasks/task.create",
15
- "source": "generated",
16
- "contentPath": "mobile-demo.tasks/task.create.md"
17
- },
18
- {
19
- "id": "mobile-demo.tasks/task.list",
20
- "title": "task.list",
21
- "summary": "List all tasks.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.core\n- **Tags**: task, mobile\n- **File**: `packages/apps/mobile-demo/src/contracts/task.contract.ts`",
22
- "route": "/docs/reference/mobile-demo.tasks/task.list",
23
- "source": "generated",
24
- "contentPath": "mobile-demo.tasks/task.list.md"
25
- },
26
- {
27
- "id": "mobile-demo.tasks/task.updateStatus",
28
- "title": "task.updateStatus",
29
- "summary": "Toggle task done status.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.core\n- **Tags**: task, mobile\n- **File**: `packages/apps/mobile-demo/src/contracts/task.contract.ts`",
30
- "route": "/docs/reference/mobile-demo.tasks/task.updateStatus",
31
- "source": "generated",
32
- "contentPath": "mobile-demo.tasks/task.updateStatus.md"
33
- }
34
- ]
2
+ {
3
+ "id": "mobile-demo.tasks/mobile-demo.tasks",
4
+ "title": "mobile-demo.tasks",
5
+ "summary": "Task-list demo feature for the Expo app, covering list, create, and status updates.\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.core\n- **Tags**: mobile, tasks, expo, example",
6
+ "route": "/docs/reference/mobile-demo.tasks/mobile-demo.tasks",
7
+ "source": "generated",
8
+ "contentPath": "mobile-demo.tasks/mobile-demo.tasks.md"
9
+ },
10
+ {
11
+ "id": "mobile-demo.tasks/task.create",
12
+ "title": "task.create",
13
+ "summary": "Create a new task.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.core\n- **Tags**: task, mobile\n- **File**: `packages/apps/mobile-demo/src/contracts/task.contract.ts`",
14
+ "route": "/docs/reference/mobile-demo.tasks/task.create",
15
+ "source": "generated",
16
+ "contentPath": "mobile-demo.tasks/task.create.md"
17
+ },
18
+ {
19
+ "id": "mobile-demo.tasks/task.list",
20
+ "title": "task.list",
21
+ "summary": "List all tasks.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.core\n- **Tags**: task, mobile\n- **File**: `packages/apps/mobile-demo/src/contracts/task.contract.ts`",
22
+ "route": "/docs/reference/mobile-demo.tasks/task.list",
23
+ "source": "generated",
24
+ "contentPath": "mobile-demo.tasks/task.list.md"
25
+ },
26
+ {
27
+ "id": "mobile-demo.tasks/task.updateStatus",
28
+ "title": "task.updateStatus",
29
+ "summary": "Toggle task done status.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.core\n- **Tags**: task, mobile\n- **File**: `packages/apps/mobile-demo/src/contracts/task.contract.ts`",
30
+ "route": "/docs/reference/mobile-demo.tasks/task.updateStatus",
31
+ "source": "generated",
32
+ "contentPath": "mobile-demo.tasks/task.updateStatus.md"
33
+ }
34
+ ]
@@ -1,66 +1,66 @@
1
1
  [
2
- {
3
- "id": "notifications/notifications",
4
- "title": "notifications",
5
- "summary": "Multi-channel notification delivery with preference management\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @platform.notifications\n- **Tags**: notifications, email, push, in-app",
6
- "route": "/docs/reference/notifications/notifications",
7
- "source": "generated",
8
- "contentPath": "notifications/notifications.md"
9
- },
10
- {
11
- "id": "notifications/notifications.delete",
12
- "title": "notifications.delete",
13
- "summary": "Delete a notification.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, delete\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
14
- "route": "/docs/reference/notifications/notifications.delete",
15
- "source": "generated",
16
- "contentPath": "notifications/notifications.delete.md"
17
- },
18
- {
19
- "id": "notifications/notifications.list",
20
- "title": "notifications.list",
21
- "summary": "List notifications for the current user.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, list\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
22
- "route": "/docs/reference/notifications/notifications.list",
23
- "source": "generated",
24
- "contentPath": "notifications/notifications.list.md"
25
- },
26
- {
27
- "id": "notifications/notifications.markAllRead",
28
- "title": "notifications.markAllRead",
29
- "summary": "Mark all notifications as read.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, read\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
30
- "route": "/docs/reference/notifications/notifications.markAllRead",
31
- "source": "generated",
32
- "contentPath": "notifications/notifications.markAllRead.md"
33
- },
34
- {
35
- "id": "notifications/notifications.markRead",
36
- "title": "notifications.markRead",
37
- "summary": "Mark a notification as read.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, read\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
38
- "route": "/docs/reference/notifications/notifications.markRead",
39
- "source": "generated",
40
- "contentPath": "notifications/notifications.markRead.md"
41
- },
42
- {
43
- "id": "notifications/notifications.preferences.get",
44
- "title": "notifications.preferences.get",
45
- "summary": "Get notification preferences for current user.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, preferences, get\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
46
- "route": "/docs/reference/notifications/notifications.preferences.get",
47
- "source": "generated",
48
- "contentPath": "notifications/notifications.preferences.get.md"
49
- },
50
- {
51
- "id": "notifications/notifications.preferences.update",
52
- "title": "notifications.preferences.update",
53
- "summary": "Update notification preferences.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, preferences, update\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
54
- "route": "/docs/reference/notifications/notifications.preferences.update",
55
- "source": "generated",
56
- "contentPath": "notifications/notifications.preferences.update.md"
57
- },
58
- {
59
- "id": "notifications/notifications.send",
60
- "title": "notifications.send",
61
- "summary": "Send a notification to a user.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, send\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
62
- "route": "/docs/reference/notifications/notifications.send",
63
- "source": "generated",
64
- "contentPath": "notifications/notifications.send.md"
65
- }
66
- ]
2
+ {
3
+ "id": "notifications/notifications",
4
+ "title": "notifications",
5
+ "summary": "Multi-channel notification delivery with preference management\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @platform.notifications\n- **Tags**: notifications, email, push, in-app",
6
+ "route": "/docs/reference/notifications/notifications",
7
+ "source": "generated",
8
+ "contentPath": "notifications/notifications.md"
9
+ },
10
+ {
11
+ "id": "notifications/notifications.delete",
12
+ "title": "notifications.delete",
13
+ "summary": "Delete a notification.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, delete\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
14
+ "route": "/docs/reference/notifications/notifications.delete",
15
+ "source": "generated",
16
+ "contentPath": "notifications/notifications.delete.md"
17
+ },
18
+ {
19
+ "id": "notifications/notifications.list",
20
+ "title": "notifications.list",
21
+ "summary": "List notifications for the current user.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, list\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
22
+ "route": "/docs/reference/notifications/notifications.list",
23
+ "source": "generated",
24
+ "contentPath": "notifications/notifications.list.md"
25
+ },
26
+ {
27
+ "id": "notifications/notifications.markAllRead",
28
+ "title": "notifications.markAllRead",
29
+ "summary": "Mark all notifications as read.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, read\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
30
+ "route": "/docs/reference/notifications/notifications.markAllRead",
31
+ "source": "generated",
32
+ "contentPath": "notifications/notifications.markAllRead.md"
33
+ },
34
+ {
35
+ "id": "notifications/notifications.markRead",
36
+ "title": "notifications.markRead",
37
+ "summary": "Mark a notification as read.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, read\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
38
+ "route": "/docs/reference/notifications/notifications.markRead",
39
+ "source": "generated",
40
+ "contentPath": "notifications/notifications.markRead.md"
41
+ },
42
+ {
43
+ "id": "notifications/notifications.preferences.get",
44
+ "title": "notifications.preferences.get",
45
+ "summary": "Get notification preferences for current user.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, preferences, get\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
46
+ "route": "/docs/reference/notifications/notifications.preferences.get",
47
+ "source": "generated",
48
+ "contentPath": "notifications/notifications.preferences.get.md"
49
+ },
50
+ {
51
+ "id": "notifications/notifications.preferences.update",
52
+ "title": "notifications.preferences.update",
53
+ "summary": "Update notification preferences.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, preferences, update\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
54
+ "route": "/docs/reference/notifications/notifications.preferences.update",
55
+ "source": "generated",
56
+ "contentPath": "notifications/notifications.preferences.update.md"
57
+ },
58
+ {
59
+ "id": "notifications/notifications.send",
60
+ "title": "notifications.send",
61
+ "summary": "Send a notification to a user.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: platform.notifications\n- **Tags**: notifications, send\n- **File**: `packages/modules/notifications/src/contracts/index.ts`",
62
+ "route": "/docs/reference/notifications/notifications.send",
63
+ "source": "generated",
64
+ "contentPath": "notifications/notifications.send.md"
65
+ }
66
+ ]
@@ -1,10 +1,10 @@
1
1
  [
2
- {
3
- "id": "openbanking-powens/openbanking-powens",
4
- "title": "openbanking-powens",
5
- "summary": "Powens open banking OAuth callback and webhook handler patterns\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: openbanking, powens, oauth, webhooks",
6
- "route": "/docs/reference/openbanking-powens/openbanking-powens",
7
- "source": "generated",
8
- "contentPath": "openbanking-powens/openbanking-powens.md"
9
- }
10
- ]
2
+ {
3
+ "id": "openbanking-powens/openbanking-powens",
4
+ "title": "openbanking-powens",
5
+ "summary": "Powens open banking OAuth callback and webhook handler patterns\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: openbanking, powens, oauth, webhooks",
6
+ "route": "/docs/reference/openbanking-powens/openbanking-powens",
7
+ "source": "generated",
8
+ "contentPath": "openbanking-powens/openbanking-powens.md"
9
+ }
10
+ ]
@@ -1,66 +1,66 @@
1
1
  [
2
- {
3
- "id": "openbanking/openbanking",
4
- "title": "openbanking",
5
- "summary": "Open banking account sync, balance refresh, and transaction synchronization\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, finance, banking",
6
- "route": "/docs/reference/openbanking/openbanking",
7
- "source": "generated",
8
- "contentPath": "openbanking/openbanking.md"
9
- },
10
- {
11
- "id": "openbanking/openbanking.accounts.get",
12
- "title": "openbanking.accounts.get",
13
- "summary": "Retrieve the canonical bank account record for the given account identifier.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, accounts",
14
- "route": "/docs/reference/openbanking/openbanking.accounts.get",
15
- "source": "generated",
16
- "contentPath": "openbanking/openbanking.accounts.get.md"
17
- },
18
- {
19
- "id": "openbanking/openbanking.accounts.list",
20
- "title": "openbanking.accounts.list",
21
- "summary": "List bank accounts available to a tenant/user via Powens Open Banking.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, accounts",
22
- "route": "/docs/reference/openbanking/openbanking.accounts.list",
23
- "source": "generated",
24
- "contentPath": "openbanking/openbanking.accounts.list.md"
25
- },
26
- {
27
- "id": "openbanking/openbanking.accounts.sync",
28
- "title": "openbanking.accounts.sync",
29
- "summary": "Initiate a synchronisation run to refresh bank account metadata from Powens.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, accounts",
30
- "route": "/docs/reference/openbanking/openbanking.accounts.sync",
31
- "source": "generated",
32
- "contentPath": "openbanking/openbanking.accounts.sync.md"
33
- },
34
- {
35
- "id": "openbanking/openbanking.balances.get",
36
- "title": "openbanking.balances.get",
37
- "summary": "Retrieve the latest cached balances for a bank account.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, balances",
38
- "route": "/docs/reference/openbanking/openbanking.balances.get",
39
- "source": "generated",
40
- "contentPath": "openbanking/openbanking.balances.get.md"
41
- },
42
- {
43
- "id": "openbanking/openbanking.balances.refresh",
44
- "title": "openbanking.balances.refresh",
45
- "summary": "Refresh balances for a bank account via the configured open banking provider.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, balances",
46
- "route": "/docs/reference/openbanking/openbanking.balances.refresh",
47
- "source": "generated",
48
- "contentPath": "openbanking/openbanking.balances.refresh.md"
49
- },
50
- {
51
- "id": "openbanking/openbanking.transactions.list",
52
- "title": "openbanking.transactions.list",
53
- "summary": "List bank transactions that have been normalised into the canonical ledger.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, transactions",
54
- "route": "/docs/reference/openbanking/openbanking.transactions.list",
55
- "source": "generated",
56
- "contentPath": "openbanking/openbanking.transactions.list.md"
57
- },
58
- {
59
- "id": "openbanking/openbanking.transactions.sync",
60
- "title": "openbanking.transactions.sync",
61
- "summary": "Synchronise transactions for a bank account by calling the configured open banking provider.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance",
62
- "route": "/docs/reference/openbanking/openbanking.transactions.sync",
63
- "source": "generated",
64
- "contentPath": "openbanking/openbanking.transactions.sync.md"
65
- }
66
- ]
2
+ {
3
+ "id": "openbanking/openbanking",
4
+ "title": "openbanking",
5
+ "summary": "Open banking account sync, balance refresh, and transaction synchronization\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, finance, banking",
6
+ "route": "/docs/reference/openbanking/openbanking",
7
+ "source": "generated",
8
+ "contentPath": "openbanking/openbanking.md"
9
+ },
10
+ {
11
+ "id": "openbanking/openbanking.accounts.get",
12
+ "title": "openbanking.accounts.get",
13
+ "summary": "Retrieve the canonical bank account record for the given account identifier.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, accounts",
14
+ "route": "/docs/reference/openbanking/openbanking.accounts.get",
15
+ "source": "generated",
16
+ "contentPath": "openbanking/openbanking.accounts.get.md"
17
+ },
18
+ {
19
+ "id": "openbanking/openbanking.accounts.list",
20
+ "title": "openbanking.accounts.list",
21
+ "summary": "List bank accounts available to a tenant/user via Powens Open Banking.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, accounts",
22
+ "route": "/docs/reference/openbanking/openbanking.accounts.list",
23
+ "source": "generated",
24
+ "contentPath": "openbanking/openbanking.accounts.list.md"
25
+ },
26
+ {
27
+ "id": "openbanking/openbanking.accounts.sync",
28
+ "title": "openbanking.accounts.sync",
29
+ "summary": "Initiate a synchronisation run to refresh bank account metadata from Powens.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, accounts",
30
+ "route": "/docs/reference/openbanking/openbanking.accounts.sync",
31
+ "source": "generated",
32
+ "contentPath": "openbanking/openbanking.accounts.sync.md"
33
+ },
34
+ {
35
+ "id": "openbanking/openbanking.balances.get",
36
+ "title": "openbanking.balances.get",
37
+ "summary": "Retrieve the latest cached balances for a bank account.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, balances",
38
+ "route": "/docs/reference/openbanking/openbanking.balances.get",
39
+ "source": "generated",
40
+ "contentPath": "openbanking/openbanking.balances.get.md"
41
+ },
42
+ {
43
+ "id": "openbanking/openbanking.balances.refresh",
44
+ "title": "openbanking.balances.refresh",
45
+ "summary": "Refresh balances for a bank account via the configured open banking provider.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, balances",
46
+ "route": "/docs/reference/openbanking/openbanking.balances.refresh",
47
+ "source": "generated",
48
+ "contentPath": "openbanking/openbanking.balances.refresh.md"
49
+ },
50
+ {
51
+ "id": "openbanking/openbanking.transactions.list",
52
+ "title": "openbanking.transactions.list",
53
+ "summary": "List bank transactions that have been normalised into the canonical ledger.\n- **Type**: operation (query)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance\n- **Tags**: open-banking, powens, transactions",
54
+ "route": "/docs/reference/openbanking/openbanking.transactions.list",
55
+ "source": "generated",
56
+ "contentPath": "openbanking/openbanking.transactions.list.md"
57
+ },
58
+ {
59
+ "id": "openbanking/openbanking.transactions.sync",
60
+ "title": "openbanking.transactions.sync",
61
+ "summary": "Synchronise transactions for a bank account by calling the configured open banking provider.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @platform.finance",
62
+ "route": "/docs/reference/openbanking/openbanking.transactions.sync",
63
+ "source": "generated",
64
+ "contentPath": "openbanking/openbanking.transactions.sync.md"
65
+ }
66
+ ]
@@ -1,18 +1,18 @@
1
1
  [
2
- {
3
- "id": "opencode-cli/opencode-cli",
4
- "title": "opencode-cli",
5
- "summary": "Agent-mode contract building and validation for the OpenCode CLI\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @contractspec/examples\n- **Tags**: opencode, example, cli\n- **File**: `packages/examples/opencode-cli/src/opencode-cli.feature.ts`",
6
- "route": "/docs/reference/opencode-cli/opencode-cli",
7
- "source": "generated",
8
- "contentPath": "opencode-cli/opencode-cli.md"
9
- },
10
- {
11
- "id": "opencode-cli/opencode.example.echo",
12
- "title": "opencode.example.echo",
13
- "summary": "Echo a prompt for the OpenCode CLI example.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @contractspec/examples\n- **Tags**: opencode, example, echo\n- **File**: `packages/examples/opencode-cli/src/contracts/opencode.contracts.ts`",
14
- "route": "/docs/reference/opencode-cli/opencode.example.echo",
15
- "source": "generated",
16
- "contentPath": "opencode-cli/opencode.example.echo.md"
17
- }
18
- ]
2
+ {
3
+ "id": "opencode-cli/opencode-cli",
4
+ "title": "opencode-cli",
5
+ "summary": "Agent-mode contract building and validation for the OpenCode CLI\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @contractspec/examples\n- **Tags**: opencode, example, cli\n- **File**: `packages/examples/opencode-cli/src/opencode-cli.feature.ts`",
6
+ "route": "/docs/reference/opencode-cli/opencode-cli",
7
+ "source": "generated",
8
+ "contentPath": "opencode-cli/opencode-cli.md"
9
+ },
10
+ {
11
+ "id": "opencode-cli/opencode.example.echo",
12
+ "title": "opencode.example.echo",
13
+ "summary": "Echo a prompt for the OpenCode CLI example.\n- **Type**: operation (command)\n- **Version**: 1.0.0\n- **Stability**: stable\n- **Owners**: @contractspec/examples\n- **Tags**: opencode, example, echo\n- **File**: `packages/examples/opencode-cli/src/contracts/opencode.contracts.ts`",
14
+ "route": "/docs/reference/opencode-cli/opencode.example.echo",
15
+ "source": "generated",
16
+ "contentPath": "opencode-cli/opencode.example.echo.md"
17
+ }
18
+ ]
@@ -1,10 +1,10 @@
1
1
  [
2
- {
3
- "id": "personalization/personalization",
4
- "title": "personalization",
5
- "summary": "Behavior tracking, overlay customization, and workflow extension patterns\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: personalization, behavior, overlay, workflow",
6
- "route": "/docs/reference/personalization/personalization",
7
- "source": "generated",
8
- "contentPath": "personalization/personalization.md"
9
- }
10
- ]
2
+ {
3
+ "id": "personalization/personalization",
4
+ "title": "personalization",
5
+ "summary": "Behavior tracking, overlay customization, and workflow extension patterns\n- **Type**: feature\n- **Version**: 1.0.0\n- **Stability**: experimental\n- **Owners**: @examples\n- **Tags**: personalization, behavior, overlay, workflow",
6
+ "route": "/docs/reference/personalization/personalization",
7
+ "source": "generated",
8
+ "contentPath": "personalization/personalization.md"
9
+ }
10
+ ]