@eventcatalog/core 4.3.2 → 4.3.4

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 (53) hide show
  1. package/dist/analytics/analytics.cjs +1 -1
  2. package/dist/analytics/analytics.js +2 -2
  3. package/dist/analytics/log-build.cjs +1 -1
  4. package/dist/analytics/log-build.js +3 -3
  5. package/dist/{chunk-BYH34SOZ.js → chunk-5L4FYIAY.js} +1 -1
  6. package/dist/{chunk-T6UEDS2J.js → chunk-CQQE7NTL.js} +1 -1
  7. package/dist/{chunk-W4UBACYZ.js → chunk-OPFRJOPV.js} +1 -1
  8. package/dist/{chunk-25RQCO2H.js → chunk-QFXV3GDK.js} +1 -1
  9. package/dist/{chunk-YBNWZEFQ.js → chunk-XTC5VFLE.js} +1 -1
  10. package/dist/constants.cjs +1 -1
  11. package/dist/constants.js +1 -1
  12. package/dist/docs/api/02-config.md +24 -0
  13. package/dist/docs/cli/governance.md +1 -1
  14. package/dist/docs/cli/snapshots.md +1 -1
  15. package/dist/docs/development/ask-your-architecture/03-mcp-server/getting-started.md +56 -7
  16. package/dist/docs/development/ask-your-architecture/03-mcp-server/introduction.md +8 -3
  17. package/dist/docs/development/deployment/build-ssr-mode.md +1 -9
  18. package/dist/docs/development/developer-tools/api-catalog.md +1 -1
  19. package/dist/docs/development/guides/98-versioning-resources.md +15 -0
  20. package/dist/docs/development/guides/resources/entities/03-model-entity-relationships.md +26 -6
  21. package/dist/docs/development/guides/resources/entities/05-entity-maps.md +2 -0
  22. package/dist/docs/development/guides/resources/entities/06-reference.md +25 -2
  23. package/dist/docs/development/guides/resources/services/07-versioning-and-lifecycle/01-version-services.md +2 -0
  24. package/dist/docs/plugins/asyncapi/02-plugin-configuration.md +30 -2
  25. package/dist/docs/plugins/asyncapi/03-features.md +39 -26
  26. package/dist/docs/plugins/asyncapi/03a-workflows.md +61 -2
  27. package/dist/docs/plugins/openapi/02-plugin-configuration.md +1 -2
  28. package/dist/docs/plugins/openapi/03-features.md +8 -6
  29. package/dist/docs/plugins/openapi/03a-workflows.md +79 -18
  30. package/dist/eventcatalog.cjs +1 -1
  31. package/dist/eventcatalog.js +5 -5
  32. package/dist/generate.cjs +1 -1
  33. package/dist/generate.js +3 -3
  34. package/dist/utils/cli-logger.cjs +1 -1
  35. package/dist/utils/cli-logger.js +2 -2
  36. package/eventcatalog/src/components/LatestVersionRedirect.astro +26 -0
  37. package/eventcatalog/src/components/SideNav/NestedSideBar/index.tsx +21 -27
  38. package/eventcatalog/src/components/SideNav/NestedSideBar/storage.ts +16 -7
  39. package/eventcatalog/src/components/SideNav/NestedSideBar/utils.spec.ts +28 -5
  40. package/eventcatalog/src/components/SideNav/NestedSideBar/utils.ts +15 -2
  41. package/eventcatalog/src/enterprise/custom-documentation/pages/docs/custom/index.astro +8 -24
  42. package/eventcatalog/src/layouts/VerticalSideBarLayout.astro +148 -10
  43. package/eventcatalog/src/pages/docs/services/[id]/[docType]/[docId]/index.astro +25 -0
  44. package/eventcatalog/src/pages/docs/services/[id]/asyncapi/[filename].astro +25 -0
  45. package/eventcatalog/src/pages/docs/services/[id]/changelog/index.astro +25 -0
  46. package/eventcatalog/src/pages/docs/services/[id]/graphql/[filename].astro +25 -0
  47. package/eventcatalog/src/pages/docs/services/[id]/spec/[filename].astro +25 -0
  48. package/eventcatalog/src/pages/docs/services/_latest-version-route.ts +42 -0
  49. package/eventcatalog/src/stores/sidebar-store/builders/service.ts +9 -12
  50. package/eventcatalog/src/stores/sidebar-store/builders/shared.ts +4 -2
  51. package/eventcatalog/src/stores/sidebar-store/state.ts +1 -1
  52. package/package.json +3 -3
  53. package/dist/docs/cli/import.md +0 -26
@@ -1,26 +0,0 @@
1
- ---
2
- id: cli-import
3
- title: Import
4
- sidebar_label: Import
5
- sidebar_position: 18
6
- ---
7
-
8
- # Import CLI Commands
9
-
10
- Manage import in your EventCatalog from the command line.
11
-
12
- ## import
13
-
14
- Import EventCatalog DSL (.ec) files into catalog markdown files. Existing resources with the same version are overridden. Importing a newer version automatically moves the old version into the versioned/ folder.
15
-
16
- **Arguments:**
17
- | Name | Type | Required | Description |
18
- |------|------|----------|-------------|
19
- | files | string | No | One or more .ec file paths to import |
20
- | stdin | boolean | No | Read DSL from stdin |
21
- | dry-run | boolean | No | Preview resources without writing |
22
- | no-init | boolean | No | Skip catalog initialization prompt |
23
-
24
-
25
-
26
- ---