meadow-integration 1.0.41 → 1.0.42

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 (56) hide show
  1. package/BUILDING-AND-PUBLISHING.md +2 -2
  2. package/README.md +27 -8
  3. package/docs/README.md +1 -1
  4. package/docs/_cover.md +1 -1
  5. package/docs/_topbar.md +1 -1
  6. package/docs/_version.json +3 -3
  7. package/docs/architecture.md +14 -225
  8. package/docs/css/docuserve.css +327 -0
  9. package/docs/data-clone/diagrams/architecture-diagram.excalidraw +1756 -0
  10. package/docs/data-clone/diagrams/architecture-diagram.mmd +8 -0
  11. package/docs/data-clone/diagrams/architecture-diagram.svg +2 -0
  12. package/docs/data-clone/overview.md +2 -32
  13. package/docs/diagrams/configuration-cascade-2.excalidraw +831 -0
  14. package/docs/diagrams/configuration-cascade-2.mmd +8 -0
  15. package/docs/diagrams/configuration-cascade-2.svg +2 -0
  16. package/docs/diagrams/configuration-cascade.excalidraw +831 -0
  17. package/docs/diagrams/configuration-cascade.mmd +8 -0
  18. package/docs/diagrams/configuration-cascade.svg +2 -0
  19. package/docs/diagrams/data-synchronization-pipeline.excalidraw +3278 -0
  20. package/docs/diagrams/data-synchronization-pipeline.mmd +42 -0
  21. package/docs/diagrams/data-synchronization-pipeline.svg +2 -0
  22. package/docs/diagrams/data-transformation-pipeline.excalidraw +2929 -0
  23. package/docs/diagrams/data-transformation-pipeline.mmd +31 -0
  24. package/docs/diagrams/data-transformation-pipeline.svg +2 -0
  25. package/docs/diagrams/docker-deployment.excalidraw +1963 -0
  26. package/docs/diagrams/docker-deployment.mmd +23 -0
  27. package/docs/diagrams/docker-deployment.svg +2 -0
  28. package/docs/diagrams/high-level-system-architecture.excalidraw +5752 -0
  29. package/docs/diagrams/high-level-system-architecture.mmd +66 -0
  30. package/docs/diagrams/high-level-system-architecture.svg +2 -0
  31. package/docs/diagrams/module-structure.excalidraw +15206 -0
  32. package/docs/diagrams/module-structure.mmd +56 -0
  33. package/docs/diagrams/module-structure.svg +2 -0
  34. package/docs/diagrams/sync-mode-comparison.excalidraw +3660 -0
  35. package/docs/diagrams/sync-mode-comparison.mmd +33 -0
  36. package/docs/diagrams/sync-mode-comparison.svg +2 -0
  37. package/docs/implementation-reference.md +2 -58
  38. package/docs/index.html +2 -2
  39. package/docs/retold-catalog.json +388 -284
  40. package/docs/retold-keyword-index.json +24830 -16291
  41. package/example-applications/mapping-demo/README.md +2 -10
  42. package/example-applications/mapping-demo/diagrams/architecture.excalidraw +1866 -0
  43. package/example-applications/mapping-demo/diagrams/architecture.mmd +8 -0
  44. package/example-applications/mapping-demo/diagrams/architecture.svg +2 -0
  45. package/example-applications/mapping-demo/package.json +0 -3
  46. package/example-applications/mapping-demo/web/mapping-demo-editor.js +5 -5
  47. package/example-applications/mapping-demo/web/mapping-demo-editor.min.js +2 -2
  48. package/example-applications/mapping-demo/web/pict.min.js +2 -2
  49. package/package.json +7 -7
  50. package/source/services/clone/Meadow-Service-DeleteCursorStore.js +105 -0
  51. package/source/services/clone/Meadow-Service-Sync-Entity-OngoingEventualConsistency.js +327 -92
  52. package/source/services/clone/Meadow-Service-Sync.js +2 -0
  53. package/test/Meadow-Integration-BisectionSync_test.js +15 -5
  54. package/test/Meadow-Integration-NewStrategies_test.js +15 -5
  55. package/test/Meadow-Integration-OngoingEventualConsistencyDeleteCursor_test.js +228 -0
  56. package/test/Meadow-Integration-OngoingEventualConsistencyDeleteSync_test.js +311 -0
@@ -85,15 +85,7 @@ tracks these in a `GUIDMap` so repeat loads are safe upserts.
85
85
 
86
86
  ## Architecture
87
87
 
88
- ```
89
- server.js
90
- ├── SQLite (in-memory) ← meadow-connection-sqlite
91
- ├── Meadow DAL (Book entity) ← meadow + inline schema
92
- ├── meadow-endpoints (Book) ← auto-generates /1.0/Book(s) REST routes
93
- ├── Demo pipeline endpoints ← /1.0/Demo/*
94
- │ ├── TabularTransform ← parse + map = comprehension
95
- │ └── IntegrationAdapter ← comprehension → upsert via REST
96
- └── Static web UI ← web/index.html
97
- ```
88
+ <!-- bespoke diagram: edit diagrams/architecture.mmd or .hints.json, then: npx pict-renderer-graph build modules/meadow/meadow-integration/example-applications/mapping-demo -->
89
+ ![Architecture](diagrams/architecture.svg)
98
90
 
99
91
  All components run on a single Orator (Restify) server at port 8092.