@lssm/bundle.contractspec-workspace 0.0.0-canary-20251217083314 → 1.41.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 (378) hide show
  1. package/dist/_virtual/rolldown_runtime.js +1 -22
  2. package/dist/adapters/ai.js +1 -82
  3. package/dist/adapters/factory.js +1 -36
  4. package/dist/adapters/fs.js +1 -118
  5. package/dist/adapters/git.js +1 -54
  6. package/dist/adapters/index.js +1 -7
  7. package/dist/adapters/logger.js +1 -80
  8. package/dist/adapters/watcher.js +1 -69
  9. package/dist/adapters/workspace.js +2 -190
  10. package/dist/ai/agents/claude-code-agent.js +9 -146
  11. package/dist/ai/agents/cursor-agent.js +17 -286
  12. package/dist/ai/agents/index.js +1 -5
  13. package/dist/ai/agents/openai-codex-agent.js +8 -140
  14. package/dist/ai/agents/orchestrator.js +1 -142
  15. package/dist/ai/agents/simple-agent.js +4 -80
  16. package/dist/ai/client.js +1 -162
  17. package/dist/ai/index.js +1 -27
  18. package/dist/ai/prompts/code-generation.js +13 -55
  19. package/dist/ai/prompts/index.js +1 -12
  20. package/dist/ai/prompts/spec-creation.js +20 -61
  21. package/dist/ai/providers.js +1 -40
  22. package/dist/formatters/index.js +1 -18
  23. package/dist/formatters/json.js +1 -71
  24. package/dist/formatters/sarif.js +1 -163
  25. package/dist/formatters/text.js +2 -208
  26. package/dist/index.js +1 -81
  27. package/dist/node_modules/@ai-sdk/anthropic/dist/index.js +1 -0
  28. package/dist/node_modules/@ai-sdk/openai/dist/index.js +11 -0
  29. package/dist/node_modules/@ai-sdk/provider/dist/index.js +3 -0
  30. package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +5 -0
  31. package/dist/node_modules/chalk/source/index.js +2 -0
  32. package/dist/node_modules/chalk/source/utilities.js +4 -0
  33. package/dist/node_modules/chalk/source/vendor/ansi-styles/index.js +1 -0
  34. package/dist/node_modules/chalk/source/vendor/supports-color/browser.js +1 -0
  35. package/dist/node_modules/cli-cursor/index.js +1 -0
  36. package/dist/node_modules/cli-spinners/index.js +1 -0
  37. package/dist/node_modules/cli-spinners/spinners.js +1 -0
  38. package/dist/node_modules/eventsource-parser/dist/index.js +5 -0
  39. package/dist/node_modules/eventsource-parser/dist/stream.js +1 -0
  40. package/dist/node_modules/get-east-asian-width/index.js +1 -0
  41. package/dist/node_modules/get-east-asian-width/lookup.js +1 -0
  42. package/dist/node_modules/is-interactive/index.js +1 -0
  43. package/dist/node_modules/is-unicode-supported/index.js +1 -0
  44. package/dist/node_modules/log-symbols/browser-symbols.js +1 -0
  45. package/dist/node_modules/mimic-function/index.js +1 -0
  46. package/dist/node_modules/onetime/index.js +1 -0
  47. package/dist/node_modules/ora/index.js +6 -0
  48. package/dist/node_modules/restore-cursor/index.js +1 -0
  49. package/dist/node_modules/signal-exit/dist/mjs/index.js +1 -0
  50. package/dist/node_modules/signal-exit/dist/mjs/signals.js +1 -0
  51. package/dist/node_modules/stdin-discarder/index.js +1 -0
  52. package/dist/node_modules/string-width/index.js +1 -0
  53. package/dist/node_modules/strip-ansi/index.js +1 -0
  54. package/dist/node_modules/strip-ansi/node_modules/ansi-regex/index.js +1 -0
  55. package/dist/services/agent-guide/adapters/claude-code.js +3 -144
  56. package/dist/services/agent-guide/adapters/cursor-cli.js +3 -135
  57. package/dist/services/agent-guide/adapters/generic-mcp.js +3 -159
  58. package/dist/services/agent-guide/adapters/index.js +1 -30
  59. package/dist/services/agent-guide/agent-guide-service.js +1 -148
  60. package/dist/services/agent-guide/index.js +1 -5
  61. package/dist/services/build.js +1 -140
  62. package/dist/services/ci-check/ci-check-service.js +1 -393
  63. package/dist/services/ci-check/index.js +1 -2
  64. package/dist/services/ci-check/types.js +1 -28
  65. package/dist/services/clean.js +1 -71
  66. package/dist/services/config.js +1 -76
  67. package/dist/services/deps.js +1 -62
  68. package/dist/services/diff.js +1 -33
  69. package/dist/services/doctor/checks/ai.js +2 -118
  70. package/dist/services/doctor/checks/cli.js +1 -146
  71. package/dist/services/doctor/checks/config.js +1 -170
  72. package/dist/services/doctor/checks/deps.js +1 -180
  73. package/dist/services/doctor/checks/index.js +1 -6
  74. package/dist/services/doctor/checks/mcp.js +1 -144
  75. package/dist/services/doctor/checks/workspace.js +1 -243
  76. package/dist/services/doctor/doctor-service.js +2 -115
  77. package/dist/services/doctor/index.js +1 -2
  78. package/dist/services/doctor/types.js +1 -26
  79. package/dist/services/implementation/discovery.js +2 -143
  80. package/dist/services/implementation/index.js +1 -2
  81. package/dist/services/implementation/resolver.js +1 -223
  82. package/dist/services/index.js +1 -53
  83. package/dist/services/integrity-diagram.js +6 -274
  84. package/dist/services/integrity.js +1 -272
  85. package/dist/services/list.js +1 -35
  86. package/dist/services/openapi/export-service.js +2 -51
  87. package/dist/services/openapi/import-service.js +1 -75
  88. package/dist/services/openapi/index.js +1 -4
  89. package/dist/services/openapi/sync-service.js +1 -121
  90. package/dist/services/openapi/validate-service.js +1 -130
  91. package/dist/services/regenerator.js +1 -23
  92. package/dist/services/registry.js +1 -73
  93. package/dist/services/setup/config-generators.js +26 -113
  94. package/dist/services/setup/file-merger.js +2 -60
  95. package/dist/services/setup/index.js +1 -4
  96. package/dist/services/setup/setup-service.js +1 -95
  97. package/dist/services/setup/targets/agents-md.js +1 -46
  98. package/dist/services/setup/targets/cli-config.js +1 -59
  99. package/dist/services/setup/targets/cursor-rules.js +1 -47
  100. package/dist/services/setup/targets/mcp-claude.js +1 -59
  101. package/dist/services/setup/targets/mcp-cursor.js +1 -58
  102. package/dist/services/setup/targets/vscode-settings.js +1 -62
  103. package/dist/services/setup/types.js +1 -26
  104. package/dist/services/sync.js +1 -62
  105. package/dist/services/test.js +1 -30
  106. package/dist/services/validate-implementation.js +1 -69
  107. package/dist/services/validate.js +1 -47
  108. package/dist/services/verification-cache/adapters/filesystem.js +1 -121
  109. package/dist/services/verification-cache/adapters/in-memory.js +1 -45
  110. package/dist/services/verification-cache/adapters/index.js +1 -3
  111. package/dist/services/verification-cache/adapters/workspace-state.js +1 -90
  112. package/dist/services/verification-cache/cache-service.js +1 -255
  113. package/dist/services/verification-cache/index.js +1 -6
  114. package/dist/services/verification-cache/types.js +1 -15
  115. package/dist/services/verify/ai-verifier.js +9 -336
  116. package/dist/services/verify/behavior-verifier.js +1 -185
  117. package/dist/services/verify/index.js +1 -4
  118. package/dist/services/verify/structure-verifier.js +2 -195
  119. package/dist/services/verify/verify-service.js +3 -203
  120. package/dist/services/watch.js +1 -31
  121. package/dist/services/workspace-info.js +2 -102
  122. package/dist/templates/app-config.template.js +28 -101
  123. package/dist/templates/data-view.template.js +27 -42
  124. package/dist/templates/event.template.js +14 -29
  125. package/dist/templates/experiment.template.js +51 -77
  126. package/dist/templates/handler.template.js +17 -53
  127. package/dist/templates/index.js +1 -36
  128. package/dist/templates/integration.template.js +50 -134
  129. package/dist/templates/knowledge.template.js +21 -62
  130. package/dist/templates/migration.template.js +26 -50
  131. package/dist/templates/operation.template.js +28 -44
  132. package/dist/templates/presentation.template.js +20 -46
  133. package/dist/templates/telemetry.template.js +53 -74
  134. package/dist/templates/workflow-runner.template.js +6 -12
  135. package/dist/templates/workflow.template.js +24 -51
  136. package/package.json +10 -16
  137. package/dist/adapters/ai.d.ts +0 -11
  138. package/dist/adapters/factory.d.ts +0 -28
  139. package/dist/adapters/fs.d.ts +0 -10
  140. package/dist/adapters/git.d.ts +0 -10
  141. package/dist/adapters/logger.d.ts +0 -17
  142. package/dist/adapters/watcher.d.ts +0 -10
  143. package/dist/adapters/workspace.d.ts +0 -93
  144. package/dist/ai/agents/claude-code-agent.d.ts +0 -21
  145. package/dist/ai/agents/cursor-agent.d.ts +0 -67
  146. package/dist/ai/agents/openai-codex-agent.d.ts +0 -21
  147. package/dist/ai/agents/orchestrator.d.ts +0 -49
  148. package/dist/ai/agents/simple-agent.d.ts +0 -16
  149. package/dist/ai/agents/types.d.ts +0 -35
  150. package/dist/ai/client.d.ts +0 -82
  151. package/dist/ai/index.d.ts +0 -16
  152. package/dist/ai/prompts/code-generation.d.ts +0 -25
  153. package/dist/ai/prompts/index.d.ts +0 -9
  154. package/dist/ai/prompts/spec-creation.d.ts +0 -28
  155. package/dist/ai/providers.d.ts +0 -28
  156. package/dist/formatters/index.d.ts +0 -10
  157. package/dist/formatters/json.d.ts +0 -88
  158. package/dist/formatters/sarif.d.ts +0 -100
  159. package/dist/formatters/text.d.ts +0 -34
  160. package/dist/index.d.ts +0 -66
  161. package/dist/libs/ai-providers/dist/factory.js +0 -154
  162. package/dist/libs/ai-providers/dist/index.js +0 -4
  163. package/dist/libs/ai-providers/dist/legacy.js +0 -72
  164. package/dist/libs/ai-providers/dist/models.js +0 -287
  165. package/dist/libs/ai-providers/dist/validation.js +0 -1
  166. package/dist/libs/contracts/dist/capabilities/openbanking.js +0 -88
  167. package/dist/libs/contracts/dist/client/index.js +0 -5
  168. package/dist/libs/contracts/dist/client/react/feature-render.js +0 -2
  169. package/dist/libs/contracts/dist/client/react/form-render.js +0 -4
  170. package/dist/libs/contracts/dist/client/react/index.js +0 -4
  171. package/dist/libs/contracts/dist/contract-registry/index.js +0 -1
  172. package/dist/libs/contracts/dist/contract-registry/schemas.js +0 -60
  173. package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +0 -16
  174. package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +0 -16
  175. package/dist/libs/contracts/dist/docs/index.js +0 -29
  176. package/dist/libs/contracts/dist/docs/presentations.js +0 -71
  177. package/dist/libs/contracts/dist/docs/registry.js +0 -44
  178. package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +0 -16
  179. package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +0 -16
  180. package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +0 -16
  181. package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +0 -16
  182. package/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +0 -16
  183. package/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +0 -80
  184. package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +0 -57
  185. package/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +0 -16
  186. package/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +0 -357
  187. package/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +0 -37
  188. package/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +0 -16
  189. package/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +0 -20
  190. package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +0 -48
  191. package/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +0 -79
  192. package/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +0 -84
  193. package/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +0 -45
  194. package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +0 -67
  195. package/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +0 -40
  196. package/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +0 -69
  197. package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +0 -47
  198. package/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +0 -62
  199. package/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +0 -155
  200. package/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +0 -20
  201. package/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +0 -101
  202. package/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +0 -20
  203. package/dist/libs/contracts/dist/events.js +0 -8
  204. package/dist/libs/contracts/dist/experiments/evaluator.js +0 -1
  205. package/dist/libs/contracts/dist/index.js +0 -72
  206. package/dist/libs/contracts/dist/install.js +0 -2
  207. package/dist/libs/contracts/dist/integrations/contracts.js +0 -377
  208. package/dist/libs/contracts/dist/integrations/index.js +0 -18
  209. package/dist/libs/contracts/dist/integrations/openbanking/contracts/accounts.js +0 -228
  210. package/dist/libs/contracts/dist/integrations/openbanking/contracts/balances.js +0 -159
  211. package/dist/libs/contracts/dist/integrations/openbanking/contracts/index.js +0 -3
  212. package/dist/libs/contracts/dist/integrations/openbanking/contracts/transactions.js +0 -210
  213. package/dist/libs/contracts/dist/integrations/openbanking/models.js +0 -242
  214. package/dist/libs/contracts/dist/integrations/openbanking/telemetry.js +0 -13
  215. package/dist/libs/contracts/dist/integrations/providers/elevenlabs.js +0 -52
  216. package/dist/libs/contracts/dist/integrations/providers/gcs-storage.js +0 -75
  217. package/dist/libs/contracts/dist/integrations/providers/gmail.js +0 -87
  218. package/dist/libs/contracts/dist/integrations/providers/google-calendar.js +0 -66
  219. package/dist/libs/contracts/dist/integrations/providers/index.js +0 -11
  220. package/dist/libs/contracts/dist/integrations/providers/mistral.js +0 -68
  221. package/dist/libs/contracts/dist/integrations/providers/postmark.js +0 -68
  222. package/dist/libs/contracts/dist/integrations/providers/powens.js +0 -116
  223. package/dist/libs/contracts/dist/integrations/providers/qdrant.js +0 -73
  224. package/dist/libs/contracts/dist/integrations/providers/registry.js +0 -10
  225. package/dist/libs/contracts/dist/integrations/providers/stripe.js +0 -83
  226. package/dist/libs/contracts/dist/integrations/providers/twilio-sms.js +0 -61
  227. package/dist/libs/contracts/dist/jsonschema.js +0 -24
  228. package/dist/libs/contracts/dist/knowledge/contracts.js +0 -306
  229. package/dist/libs/contracts/dist/knowledge/index.js +0 -7
  230. package/dist/libs/contracts/dist/knowledge/spaces/email-threads.js +0 -34
  231. package/dist/libs/contracts/dist/knowledge/spaces/financial-docs.js +0 -34
  232. package/dist/libs/contracts/dist/knowledge/spaces/financial-overview.js +0 -38
  233. package/dist/libs/contracts/dist/knowledge/spaces/index.js +0 -6
  234. package/dist/libs/contracts/dist/knowledge/spaces/product-canon.js +0 -34
  235. package/dist/libs/contracts/dist/knowledge/spaces/support-faq.js +0 -37
  236. package/dist/libs/contracts/dist/knowledge/spaces/uploaded-docs.js +0 -34
  237. package/dist/libs/contracts/dist/llm/exporters.js +0 -352
  238. package/dist/libs/contracts/dist/llm/index.js +0 -2
  239. package/dist/libs/contracts/dist/llm/prompts.js +0 -211
  240. package/dist/libs/contracts/dist/onboarding-base.js +0 -196
  241. package/dist/libs/contracts/dist/openapi.js +0 -75
  242. package/dist/libs/contracts/dist/ownership.js +0 -21
  243. package/dist/libs/contracts/dist/presentations.js +0 -1
  244. package/dist/libs/contracts/dist/presentations.v2.js +0 -11
  245. package/dist/libs/contracts/dist/prompt.js +0 -1
  246. package/dist/libs/contracts/dist/promptRegistry.js +0 -1
  247. package/dist/libs/contracts/dist/regenerator/index.js +0 -2
  248. package/dist/libs/contracts/dist/regenerator/service.js +0 -92
  249. package/dist/libs/contracts/dist/regenerator/utils.js +0 -51
  250. package/dist/libs/contracts/dist/registry.js +0 -208
  251. package/dist/libs/contracts/dist/resources.js +0 -1
  252. package/dist/libs/contracts/dist/schema/dist/EnumType.js +0 -2
  253. package/dist/libs/contracts/dist/schema/dist/FieldType.js +0 -49
  254. package/dist/libs/contracts/dist/schema/dist/ScalarTypeEnum.js +0 -236
  255. package/dist/libs/contracts/dist/schema/dist/SchemaModel.js +0 -34
  256. package/dist/libs/contracts/dist/schema/dist/entity/defineEntity.js +0 -1
  257. package/dist/libs/contracts/dist/schema/dist/entity/index.js +0 -2
  258. package/dist/libs/contracts/dist/schema/dist/entity/types.js +0 -1
  259. package/dist/libs/contracts/dist/schema/dist/index.js +0 -6
  260. package/dist/libs/contracts/dist/server/graphql-pothos.js +0 -6
  261. package/dist/libs/contracts/dist/server/index.js +0 -8
  262. package/dist/libs/contracts/dist/server/mcp/createMcpServer.js +0 -4
  263. package/dist/libs/contracts/dist/server/mcp/registerPresentations.js +0 -2
  264. package/dist/libs/contracts/dist/server/mcp/registerPrompts.js +0 -1
  265. package/dist/libs/contracts/dist/server/mcp/registerResources.js +0 -2
  266. package/dist/libs/contracts/dist/server/mcp/registerTools.js +0 -1
  267. package/dist/libs/contracts/dist/server/provider-mcp.js +0 -1
  268. package/dist/libs/contracts/dist/server/rest-elysia.js +0 -1
  269. package/dist/libs/contracts/dist/server/rest-express.js +0 -1
  270. package/dist/libs/contracts/dist/server/rest-generic.js +0 -1
  271. package/dist/libs/contracts/dist/server/rest-next-app.js +0 -1
  272. package/dist/libs/contracts/dist/server/rest-next-pages.js +0 -1
  273. package/dist/libs/contracts/dist/spec.js +0 -35
  274. package/dist/libs/contracts/dist/telemetry/index.js +0 -1
  275. package/dist/libs/contracts/dist/telemetry/tracker.js +0 -1
  276. package/dist/libs/contracts/dist/tests/index.js +0 -1
  277. package/dist/libs/contracts/dist/tests/runner.js +0 -150
  278. package/dist/libs/contracts/dist/workflow/index.js +0 -1
  279. package/dist/libs/contracts/dist/workflow/runner.js +0 -1
  280. package/dist/libs/contracts-transformers/dist/common/utils.js +0 -47
  281. package/dist/libs/contracts-transformers/dist/openapi/exporter.js +0 -1
  282. package/dist/libs/contracts-transformers/dist/openapi/importer.js +0 -255
  283. package/dist/libs/contracts-transformers/dist/openapi/index.js +0 -4
  284. package/dist/libs/contracts-transformers/dist/openapi/parser.js +0 -231
  285. package/dist/libs/contracts-transformers/dist/openapi/schema-converter.js +0 -201
  286. package/dist/modules/contractspec-workspace/dist/ai/code-generation.js +0 -137
  287. package/dist/modules/contractspec-workspace/dist/ai/spec-creation.js +0 -101
  288. package/dist/modules/contractspec-workspace/dist/analysis/deps/graph.js +0 -84
  289. package/dist/modules/contractspec-workspace/dist/analysis/deps/parse-imports.js +0 -30
  290. package/dist/modules/contractspec-workspace/dist/analysis/diff/semantic.js +0 -96
  291. package/dist/modules/contractspec-workspace/dist/analysis/feature-scan.js +0 -151
  292. package/dist/modules/contractspec-workspace/dist/analysis/spec-scan.js +0 -344
  293. package/dist/modules/contractspec-workspace/dist/analysis/validate/spec-structure.js +0 -122
  294. package/dist/modules/contractspec-workspace/dist/templates/app-config.js +0 -105
  295. package/dist/modules/contractspec-workspace/dist/templates/data-view.js +0 -68
  296. package/dist/modules/contractspec-workspace/dist/templates/event.js +0 -38
  297. package/dist/modules/contractspec-workspace/dist/templates/experiment.js +0 -87
  298. package/dist/modules/contractspec-workspace/dist/templates/handler.js +0 -95
  299. package/dist/modules/contractspec-workspace/dist/templates/integration-utils.js +0 -104
  300. package/dist/modules/contractspec-workspace/dist/templates/integration.js +0 -62
  301. package/dist/modules/contractspec-workspace/dist/templates/knowledge.js +0 -68
  302. package/dist/modules/contractspec-workspace/dist/templates/migration.js +0 -60
  303. package/dist/modules/contractspec-workspace/dist/templates/operation.js +0 -100
  304. package/dist/modules/contractspec-workspace/dist/templates/presentation.js +0 -78
  305. package/dist/modules/contractspec-workspace/dist/templates/telemetry.js +0 -89
  306. package/dist/modules/contractspec-workspace/dist/templates/utils.js +0 -38
  307. package/dist/modules/contractspec-workspace/dist/templates/workflow-runner.js +0 -48
  308. package/dist/modules/contractspec-workspace/dist/templates/workflow.js +0 -67
  309. package/dist/modules/contractspec-workspace/dist/types/generation-types.js +0 -20
  310. package/dist/ports/ai.d.ts +0 -58
  311. package/dist/ports/fs.d.ts +0 -80
  312. package/dist/ports/git.d.ts +0 -32
  313. package/dist/ports/logger.d.ts +0 -87
  314. package/dist/ports/watcher.d.ts +0 -51
  315. package/dist/services/agent-guide/adapters/claude-code.d.ts +0 -34
  316. package/dist/services/agent-guide/adapters/cursor-cli.d.ts +0 -38
  317. package/dist/services/agent-guide/adapters/generic-mcp.d.ts +0 -52
  318. package/dist/services/agent-guide/adapters/index.d.ts +0 -22
  319. package/dist/services/agent-guide/agent-guide-service.d.ts +0 -55
  320. package/dist/services/agent-guide/types.d.ts +0 -57
  321. package/dist/services/build.d.ts +0 -58
  322. package/dist/services/ci-check/ci-check-service.d.ts +0 -15
  323. package/dist/services/ci-check/types.d.ts +0 -142
  324. package/dist/services/clean.d.ts +0 -40
  325. package/dist/services/config.d.ts +0 -25
  326. package/dist/services/deps.d.ts +0 -52
  327. package/dist/services/diff.d.ts +0 -33
  328. package/dist/services/doctor/doctor-service.d.ts +0 -23
  329. package/dist/services/doctor/types.d.ts +0 -117
  330. package/dist/services/implementation/discovery.d.ts +0 -29
  331. package/dist/services/implementation/resolver.d.ts +0 -43
  332. package/dist/services/implementation/types.d.ts +0 -78
  333. package/dist/services/integrity-diagram.d.ts +0 -35
  334. package/dist/services/integrity.d.ts +0 -133
  335. package/dist/services/list.d.ts +0 -30
  336. package/dist/services/openapi/export-service.d.ts +0 -52
  337. package/dist/services/openapi/import-service.d.ts +0 -15
  338. package/dist/services/openapi/sync-service.d.ts +0 -18
  339. package/dist/services/openapi/types.d.ts +0 -184
  340. package/dist/services/openapi/validate-service.d.ts +0 -15
  341. package/dist/services/regenerator.d.ts +0 -17
  342. package/dist/services/registry.d.ts +0 -52
  343. package/dist/services/setup/config-generators.d.ts +0 -41
  344. package/dist/services/setup/file-merger.d.ts +0 -26
  345. package/dist/services/setup/setup-service.d.ts +0 -11
  346. package/dist/services/setup/types.d.ts +0 -84
  347. package/dist/services/sync.d.ts +0 -40
  348. package/dist/services/test.d.ts +0 -14
  349. package/dist/services/validate-implementation.d.ts +0 -31
  350. package/dist/services/validate.d.ts +0 -40
  351. package/dist/services/verification-cache/adapters/filesystem.d.ts +0 -45
  352. package/dist/services/verification-cache/adapters/in-memory.d.ts +0 -26
  353. package/dist/services/verification-cache/adapters/workspace-state.d.ts +0 -48
  354. package/dist/services/verification-cache/cache-service.d.ts +0 -69
  355. package/dist/services/verification-cache/types.d.ts +0 -123
  356. package/dist/services/verify/ai-verifier.d.ts +0 -24
  357. package/dist/services/verify/behavior-verifier.d.ts +0 -11
  358. package/dist/services/verify/structure-verifier.d.ts +0 -11
  359. package/dist/services/verify/types.d.ts +0 -136
  360. package/dist/services/verify/verify-service.d.ts +0 -59
  361. package/dist/services/watch.d.ts +0 -24
  362. package/dist/services/workspace-info.d.ts +0 -61
  363. package/dist/templates/app-config.template.d.ts +0 -6
  364. package/dist/templates/data-view.template.d.ts +0 -6
  365. package/dist/templates/event.template.d.ts +0 -10
  366. package/dist/templates/experiment.template.d.ts +0 -6
  367. package/dist/templates/handler.template.d.ts +0 -15
  368. package/dist/templates/index.d.ts +0 -20
  369. package/dist/templates/integration.template.d.ts +0 -6
  370. package/dist/templates/knowledge.template.d.ts +0 -6
  371. package/dist/templates/migration.template.d.ts +0 -6
  372. package/dist/templates/operation.template.d.ts +0 -10
  373. package/dist/templates/presentation.template.d.ts +0 -10
  374. package/dist/templates/telemetry.template.d.ts +0 -6
  375. package/dist/templates/workflow-runner.template.d.ts +0 -15
  376. package/dist/templates/workflow.template.d.ts +0 -6
  377. package/dist/types/config.d.ts +0 -33
  378. package/dist/types.d.ts +0 -323
@@ -1,75 +0,0 @@
1
- import { StabilityEnum } from "../../ownership.js";
2
-
3
- //#region ../../libs/contracts/dist/integrations/providers/gcs-storage.js
4
- const gcsStorageIntegrationSpec = {
5
- meta: {
6
- key: "storage.gcs",
7
- version: 1,
8
- category: "storage",
9
- displayName: "Google Cloud Storage",
10
- title: "Google Cloud Storage Buckets",
11
- description: "Google Cloud Storage integration for object storage and retrieval.",
12
- domain: "infrastructure",
13
- owners: ["platform.infrastructure"],
14
- tags: [
15
- "storage",
16
- "gcs",
17
- "google-cloud"
18
- ],
19
- stability: StabilityEnum.Beta
20
- },
21
- supportedModes: ["managed", "byok"],
22
- capabilities: { provides: [{
23
- key: "storage.objects",
24
- version: 1
25
- }] },
26
- configSchema: {
27
- schema: {
28
- type: "object",
29
- required: ["bucket"],
30
- properties: {
31
- bucket: {
32
- type: "string",
33
- description: "Primary bucket name used for storing objects."
34
- },
35
- prefix: {
36
- type: "string",
37
- description: "Optional prefix applied to object keys."
38
- }
39
- }
40
- },
41
- example: {
42
- bucket: "pfo-tenant-assets",
43
- prefix: "documents/"
44
- }
45
- },
46
- secretSchema: {
47
- schema: {
48
- type: "object",
49
- properties: {
50
- type: {
51
- type: "string",
52
- description: "Service account type field from Google credentials JSON (if provided)."
53
- },
54
- client_email: { type: "string" },
55
- private_key: { type: "string" },
56
- project_id: { type: "string" }
57
- }
58
- },
59
- example: {
60
- type: "service_account",
61
- client_email: "svc-account@example.iam.gserviceaccount.com",
62
- private_key: "-----BEGIN PRIVATE KEY-----...",
63
- project_id: "example-project"
64
- }
65
- },
66
- healthCheck: {
67
- method: "ping",
68
- timeoutMs: 4e3
69
- },
70
- docsUrl: "https://cloud.google.com/storage/docs/apis",
71
- constraints: { quotas: { storageGb: 5120 } },
72
- byokSetup: { setupInstructions: "Create a Google Cloud service account with Storage Object Admin role and upload the JSON credentials to the secret store." }
73
- };
74
-
75
- //#endregion
@@ -1,87 +0,0 @@
1
- import { StabilityEnum } from "../../ownership.js";
2
-
3
- //#region ../../libs/contracts/dist/integrations/providers/gmail.js
4
- const gmailIntegrationSpec = {
5
- meta: {
6
- key: "email.gmail",
7
- version: 1,
8
- category: "email",
9
- displayName: "Gmail API",
10
- title: "Google Gmail API",
11
- description: "Gmail integration supporting inbound thread ingestion and outbound transactional email.",
12
- domain: "communications",
13
- owners: ["platform.messaging"],
14
- tags: ["email", "gmail"],
15
- stability: StabilityEnum.Beta
16
- },
17
- supportedModes: ["managed", "byok"],
18
- capabilities: { provides: [{
19
- key: "email.inbound",
20
- version: 1
21
- }, {
22
- key: "email.outbound",
23
- version: 1
24
- }] },
25
- configSchema: {
26
- schema: {
27
- type: "object",
28
- properties: {
29
- labelIds: {
30
- type: "array",
31
- items: { type: "string" },
32
- description: "Optional list of label IDs to scope inbound sync."
33
- },
34
- includeSpamTrash: {
35
- type: "boolean",
36
- description: "Whether to include spam or trash messages during sync."
37
- }
38
- }
39
- },
40
- example: {
41
- labelIds: ["INBOX"],
42
- includeSpamTrash: false
43
- }
44
- },
45
- secretSchema: {
46
- schema: {
47
- type: "object",
48
- required: [
49
- "clientId",
50
- "clientSecret",
51
- "refreshToken"
52
- ],
53
- properties: {
54
- clientId: {
55
- type: "string",
56
- description: "OAuth client ID for the Google Cloud project."
57
- },
58
- clientSecret: {
59
- type: "string",
60
- description: "OAuth client secret for the Google Cloud project."
61
- },
62
- refreshToken: {
63
- type: "string",
64
- description: "OAuth refresh token for delegated Gmail access."
65
- },
66
- redirectUri: {
67
- type: "string",
68
- description: "Optional redirect URI used when issuing the refresh token."
69
- }
70
- }
71
- },
72
- example: {
73
- clientId: "xxx.apps.googleusercontent.com",
74
- clientSecret: "secret",
75
- refreshToken: "refresh-token"
76
- }
77
- },
78
- healthCheck: {
79
- method: "custom",
80
- timeoutMs: 4e3
81
- },
82
- docsUrl: "https://developers.google.com/gmail/api",
83
- constraints: { rateLimit: { rpm: 600 } },
84
- byokSetup: { setupInstructions: "Create an OAuth consent screen and credentials within Google Cloud Console, then authorize the Gmail scopes and store the resulting refresh token." }
85
- };
86
-
87
- //#endregion
@@ -1,66 +0,0 @@
1
- import { StabilityEnum } from "../../ownership.js";
2
-
3
- //#region ../../libs/contracts/dist/integrations/providers/google-calendar.js
4
- const googleCalendarIntegrationSpec = {
5
- meta: {
6
- key: "calendar.google",
7
- version: 1,
8
- category: "calendar",
9
- displayName: "Google Calendar",
10
- title: "Google Calendar API",
11
- description: "Google Calendar integration for event creation, updates, and scheduling automations.",
12
- domain: "productivity",
13
- owners: ["platform.messaging"],
14
- tags: ["calendar", "google"],
15
- stability: StabilityEnum.Beta
16
- },
17
- supportedModes: ["managed", "byok"],
18
- capabilities: { provides: [{
19
- key: "calendar.events",
20
- version: 1
21
- }] },
22
- configSchema: {
23
- schema: {
24
- type: "object",
25
- properties: { calendarId: {
26
- type: "string",
27
- description: "Default calendar identifier (defaults to primary)."
28
- } }
29
- },
30
- example: { calendarId: "primary" }
31
- },
32
- secretSchema: {
33
- schema: {
34
- type: "object",
35
- required: ["clientEmail", "privateKey"],
36
- properties: {
37
- clientEmail: {
38
- type: "string",
39
- description: "Service account client email."
40
- },
41
- privateKey: {
42
- type: "string",
43
- description: "Service account private key."
44
- },
45
- projectId: {
46
- type: "string",
47
- description: "Google Cloud project ID."
48
- }
49
- }
50
- },
51
- example: {
52
- clientEmail: "svc-calendar@example.iam.gserviceaccount.com",
53
- privateKey: "-----BEGIN PRIVATE KEY-----...",
54
- projectId: "calendar-project"
55
- }
56
- },
57
- healthCheck: {
58
- method: "custom",
59
- timeoutMs: 4e3
60
- },
61
- docsUrl: "https://developers.google.com/calendar/api",
62
- constraints: {},
63
- byokSetup: { setupInstructions: "Create a Google service account with Calendar access and share the target calendars with the service account email." }
64
- };
65
-
66
- //#endregion
@@ -1,11 +0,0 @@
1
- import "./stripe.js";
2
- import "./postmark.js";
3
- import "./qdrant.js";
4
- import "./mistral.js";
5
- import "./elevenlabs.js";
6
- import "./gmail.js";
7
- import "./google-calendar.js";
8
- import "./twilio-sms.js";
9
- import "./gcs-storage.js";
10
- import "./powens.js";
11
- import "./registry.js";
@@ -1,68 +0,0 @@
1
- import { StabilityEnum } from "../../ownership.js";
2
-
3
- //#region ../../libs/contracts/dist/integrations/providers/mistral.js
4
- const mistralIntegrationSpec = {
5
- meta: {
6
- key: "ai-llm.mistral",
7
- version: 1,
8
- category: "ai-llm",
9
- displayName: "Mistral AI",
10
- title: "Mistral Large Language Model",
11
- description: "Mistral integration providing chat completions and embedding generation.",
12
- domain: "ai",
13
- owners: ["platform.ai"],
14
- tags: [
15
- "ai",
16
- "llm",
17
- "embeddings"
18
- ],
19
- stability: StabilityEnum.Experimental
20
- },
21
- supportedModes: ["managed", "byok"],
22
- capabilities: { provides: [{
23
- key: "ai.chat",
24
- version: 1
25
- }, {
26
- key: "ai.embeddings",
27
- version: 1
28
- }] },
29
- configSchema: {
30
- schema: {
31
- type: "object",
32
- properties: {
33
- model: {
34
- type: "string",
35
- description: "Default chat completion model (e.g., mistral-large-latest)."
36
- },
37
- embeddingModel: {
38
- type: "string",
39
- description: "Embedding model identifier."
40
- }
41
- }
42
- },
43
- example: {
44
- model: "mistral-large-latest",
45
- embeddingModel: "mistral-embed"
46
- }
47
- },
48
- secretSchema: {
49
- schema: {
50
- type: "object",
51
- required: ["apiKey"],
52
- properties: { apiKey: {
53
- type: "string",
54
- description: "Mistral API key with access to chat and embeddings endpoints."
55
- } }
56
- },
57
- example: { apiKey: "mistral-***" }
58
- },
59
- healthCheck: {
60
- method: "custom",
61
- timeoutMs: 5e3
62
- },
63
- docsUrl: "https://docs.mistral.ai/platform/endpoints",
64
- constraints: { rateLimit: { rpm: 600 } },
65
- byokSetup: { setupInstructions: "Generate an API key within the Mistral console and ensure the selected models are enabled for the account." }
66
- };
67
-
68
- //#endregion
@@ -1,68 +0,0 @@
1
- import { StabilityEnum } from "../../ownership.js";
2
-
3
- //#region ../../libs/contracts/dist/integrations/providers/postmark.js
4
- const postmarkIntegrationSpec = {
5
- meta: {
6
- key: "email.postmark",
7
- version: 1,
8
- category: "email",
9
- displayName: "Postmark",
10
- title: "Postmark Transactional Email",
11
- description: "Postmark integration for transactional email delivery.",
12
- domain: "communications",
13
- owners: ["platform.messaging"],
14
- tags: ["email", "transactional"],
15
- stability: StabilityEnum.Stable
16
- },
17
- supportedModes: ["managed", "byok"],
18
- capabilities: {
19
- provides: [{
20
- key: "email.transactional",
21
- version: 1
22
- }],
23
- requires: [{
24
- key: "platform.webhooks",
25
- optional: true,
26
- reason: "Optional for inbound bounce handling"
27
- }]
28
- },
29
- configSchema: {
30
- schema: {
31
- type: "object",
32
- properties: {
33
- messageStream: {
34
- type: "string",
35
- description: "Optional message stream identifier (e.g., transactional)."
36
- },
37
- fromEmail: {
38
- type: "string",
39
- description: "Default From address used for outbound messages."
40
- }
41
- }
42
- },
43
- example: {
44
- messageStream: "outbound",
45
- fromEmail: "notifications@example.com"
46
- }
47
- },
48
- secretSchema: {
49
- schema: {
50
- type: "object",
51
- required: ["serverToken"],
52
- properties: { serverToken: {
53
- type: "string",
54
- description: "Server token for the Postmark account."
55
- } }
56
- },
57
- example: { serverToken: "server-***" }
58
- },
59
- healthCheck: {
60
- method: "ping",
61
- timeoutMs: 3e3
62
- },
63
- docsUrl: "https://postmarkapp.com/developer",
64
- constraints: { rateLimit: { rpm: 500 } },
65
- byokSetup: { setupInstructions: "Create a Postmark server token with outbound send permissions and configure allowed from addresses." }
66
- };
67
-
68
- //#endregion
@@ -1,116 +0,0 @@
1
- import { StabilityEnum } from "../../ownership.js";
2
-
3
- //#region ../../libs/contracts/dist/integrations/providers/powens.js
4
- const powensIntegrationSpec = {
5
- meta: {
6
- key: "openbanking.powens",
7
- version: 1,
8
- category: "open-banking",
9
- displayName: "Powens Open Banking",
10
- title: "Powens Open Banking (Read)",
11
- description: "Read-only Open Banking integration powered by Powens, exposing accounts, transactions, and balances.",
12
- domain: "finance",
13
- owners: ["platform.finance"],
14
- tags: [
15
- "open-banking",
16
- "powens",
17
- "finance"
18
- ],
19
- stability: StabilityEnum.Experimental
20
- },
21
- supportedModes: ["byok"],
22
- capabilities: { provides: [
23
- {
24
- key: "openbanking.accounts.read",
25
- version: 1
26
- },
27
- {
28
- key: "openbanking.transactions.read",
29
- version: 1
30
- },
31
- {
32
- key: "openbanking.balances.read",
33
- version: 1
34
- }
35
- ] },
36
- configSchema: {
37
- schema: {
38
- type: "object",
39
- required: ["environment"],
40
- properties: {
41
- environment: {
42
- type: "string",
43
- enum: ["sandbox", "production"],
44
- description: "Powens environment to target. Sandbox uses Powens test API base URL, production uses live endpoints."
45
- },
46
- baseUrl: {
47
- type: "string",
48
- description: "Optional override for the Powens API base URL. Defaults to Powens environment defaults."
49
- },
50
- region: {
51
- type: "string",
52
- description: "Optional Powens region identifier when targeting a specific data residency cluster."
53
- },
54
- pollingIntervalMs: {
55
- type: "number",
56
- description: "Optional custom polling interval in milliseconds for background sync jobs (defaults to platform standard)."
57
- }
58
- }
59
- },
60
- example: {
61
- environment: "sandbox",
62
- baseUrl: "https://api-sandbox.powens.com/v2",
63
- region: "eu-west-1",
64
- pollingIntervalMs: 3e5
65
- }
66
- },
67
- secretSchema: {
68
- schema: {
69
- type: "object",
70
- required: ["clientId", "clientSecret"],
71
- properties: {
72
- clientId: {
73
- type: "string",
74
- description: "Powens OAuth client identifier obtained from the Powens Console (BYOK project)."
75
- },
76
- clientSecret: {
77
- type: "string",
78
- description: "Powens OAuth client secret used to exchange for access tokens."
79
- },
80
- apiKey: {
81
- type: "string",
82
- description: "Optional Powens API key (if the tenant project exposes a dedicated API token)."
83
- },
84
- webhookSecret: {
85
- type: "string",
86
- description: "Optional webhook signing secret used to verify Powens webhook payloads."
87
- }
88
- }
89
- },
90
- example: {
91
- clientId: "powens-client-id",
92
- clientSecret: "powens-client-secret",
93
- apiKey: "powens-api-key",
94
- webhookSecret: "powens-webhook-secret"
95
- }
96
- },
97
- healthCheck: {
98
- method: "ping",
99
- timeoutMs: 8e3
100
- },
101
- docsUrl: "https://docs.powens.com/",
102
- constraints: { rateLimit: {
103
- rph: 1e4,
104
- rpm: 600
105
- } },
106
- byokSetup: {
107
- setupInstructions: "Create a Powens BYOK project, generate OAuth credentials, and optionally configure webhook delivery for account/transaction updates.",
108
- requiredScopes: [
109
- "accounts:read",
110
- "transactions:read",
111
- "balances:read"
112
- ]
113
- }
114
- };
115
-
116
- //#endregion
@@ -1,73 +0,0 @@
1
- import { StabilityEnum } from "../../ownership.js";
2
-
3
- //#region ../../libs/contracts/dist/integrations/providers/qdrant.js
4
- const qdrantIntegrationSpec = {
5
- meta: {
6
- key: "vectordb.qdrant",
7
- version: 1,
8
- category: "vector-db",
9
- displayName: "Qdrant",
10
- title: "Qdrant Vector Database",
11
- description: "Qdrant integration for vector search and embeddings storage.",
12
- domain: "ai",
13
- owners: ["platform.ai"],
14
- tags: ["vector-db", "search"],
15
- stability: StabilityEnum.Experimental
16
- },
17
- supportedModes: ["managed", "byok"],
18
- capabilities: {
19
- provides: [{
20
- key: "vector-db.search",
21
- version: 1
22
- }, {
23
- key: "vector-db.storage",
24
- version: 1
25
- }],
26
- requires: [{
27
- key: "ai.embeddings",
28
- optional: true,
29
- reason: "Required if vectors are generated via hosted embedding services"
30
- }]
31
- },
32
- configSchema: {
33
- schema: {
34
- type: "object",
35
- properties: {
36
- apiUrl: {
37
- type: "string",
38
- description: "Base URL for the Qdrant instance (e.g., https://qdrant.example.com)."
39
- },
40
- collectionPrefix: {
41
- type: "string",
42
- description: "Prefix applied to all collection names for this tenant."
43
- }
44
- }
45
- },
46
- example: {
47
- apiUrl: "https://qdrant.example.com",
48
- collectionPrefix: "tenant_"
49
- }
50
- },
51
- secretSchema: {
52
- schema: {
53
- type: "object",
54
- properties: { apiKey: {
55
- type: "string",
56
- description: "API key or token when authentication is enabled."
57
- } }
58
- },
59
- example: { apiKey: "qdrant-api-key" }
60
- },
61
- healthCheck: {
62
- method: "ping",
63
- timeoutMs: 4e3
64
- },
65
- docsUrl: "https://qdrant.tech/documentation/quick-start/",
66
- constraints: { quotas: {
67
- collections: 100,
68
- pointsPerCollection: 1e6
69
- } },
70
- byokSetup: { setupInstructions: "Provide the HTTPS endpoint of your Qdrant cluster and generate an API key with read/write access to the collections that will be managed." }
71
- };
72
-
73
- //#endregion
@@ -1,10 +0,0 @@
1
- import "./stripe.js";
2
- import "./postmark.js";
3
- import "./qdrant.js";
4
- import "./mistral.js";
5
- import "./elevenlabs.js";
6
- import "./gmail.js";
7
- import "./google-calendar.js";
8
- import "./twilio-sms.js";
9
- import "./gcs-storage.js";
10
- import "./powens.js";
@@ -1,83 +0,0 @@
1
- import { StabilityEnum } from "../../ownership.js";
2
-
3
- //#region ../../libs/contracts/dist/integrations/providers/stripe.js
4
- const stripeIntegrationSpec = {
5
- meta: {
6
- key: "payments.stripe",
7
- version: 1,
8
- category: "payments",
9
- displayName: "Stripe",
10
- title: "Stripe Payments",
11
- description: "Stripe integration for payment processing, charges, and payouts.",
12
- domain: "payments",
13
- owners: ["platform.payments"],
14
- tags: ["payments", "psp"],
15
- stability: StabilityEnum.Stable
16
- },
17
- supportedModes: ["managed", "byok"],
18
- capabilities: {
19
- provides: [{
20
- key: "payments.psp",
21
- version: 1
22
- }],
23
- requires: [{
24
- key: "platform.webhooks",
25
- optional: true,
26
- reason: "Recommended for reliable event ingestion"
27
- }]
28
- },
29
- configSchema: {
30
- schema: {
31
- type: "object",
32
- properties: {
33
- accountId: {
34
- type: "string",
35
- description: "Connected account ID when using Stripe Connect (BYOK)."
36
- },
37
- region: {
38
- type: "string",
39
- description: "Optional Stripe region or data residency hint."
40
- }
41
- }
42
- },
43
- example: {
44
- accountId: "acct_123",
45
- region: "us-east-1"
46
- }
47
- },
48
- secretSchema: {
49
- schema: {
50
- type: "object",
51
- required: ["apiKey", "webhookSecret"],
52
- properties: {
53
- apiKey: {
54
- type: "string",
55
- description: "Stripe secret API key (sk_live_... or sk_test_...)."
56
- },
57
- webhookSecret: {
58
- type: "string",
59
- description: "Signing secret for webhook verification."
60
- }
61
- }
62
- },
63
- example: {
64
- apiKey: "sk_live_***",
65
- webhookSecret: "whsec_***"
66
- }
67
- },
68
- healthCheck: {
69
- method: "ping",
70
- timeoutMs: 5e3
71
- },
72
- docsUrl: "https://stripe.com/docs/api",
73
- constraints: { rateLimit: {
74
- rpm: 1e3,
75
- rph: 2e4
76
- } },
77
- byokSetup: {
78
- setupInstructions: "Create a restricted Stripe API key with write access to Charges and provide a webhook signing secret.",
79
- requiredScopes: ["charges:write", "customers:read"]
80
- }
81
- };
82
-
83
- //#endregion