meadow-integration 1.0.41 → 1.0.43

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 (57) 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/Meadow-Integration-Engine.js +34 -0
  51. package/source/services/clone/Meadow-Service-DeleteCursorStore.js +105 -0
  52. package/source/services/clone/Meadow-Service-Sync-Entity-OngoingEventualConsistency.js +327 -92
  53. package/source/services/clone/Meadow-Service-Sync.js +2 -0
  54. package/test/Meadow-Integration-BisectionSync_test.js +15 -5
  55. package/test/Meadow-Integration-NewStrategies_test.js +15 -5
  56. package/test/Meadow-Integration-OngoingEventualConsistencyDeleteCursor_test.js +228 -0
  57. package/test/Meadow-Integration-OngoingEventualConsistencyDeleteSync_test.js +311 -0
@@ -0,0 +1,56 @@
1
+ meadow-integration/
2
+ ├── package.json
3
+ ├── Dockerfile
4
+ ├── docker-compose.yml
5
+ ├── scripts/
6
+ │ └── run.sh
7
+ ├── source/
8
+ │ ├── Meadow-Integration.js # Main export (programmatic API)
9
+ │ ├── Meadow-Service-Integration-Adapter.js # IntegrationAdapter service
10
+ │ ├── Meadow-Service-Integration-GUIDMap.js # GUIDMap service
11
+ │ ├── cli/
12
+ │ │ ├── Meadow-Integration-CLI-Program.js # CLI program setup
13
+ │ │ ├── Meadow-Integration-CLI-Run.js # CLI entry point
14
+ │ │ ├── Default-Meadow-Integration-Configuration.json
15
+ │ │ └── commands/
16
+ │ │ ├── Meadow-Integration-Command-CSVCheck.js
17
+ │ │ ├── Meadow-Integration-Command-CSVTransform.js
18
+ │ │ ├── Meadow-Integration-Command-TSVCheck.js
19
+ │ │ ├── Meadow-Integration-Command-TSVTransform.js
20
+ │ │ ├── Meadow-Integration-Command-JSONArrayTransform.js
21
+ │ │ ├── Meadow-Integration-Command-ComprehensionIntersect.js
22
+ │ │ ├── Meadow-Integration-Command-ComprehensionArray.js
23
+ │ │ ├── Meadow-Integration-Command-ComprehensionPush.js
24
+ │ │ ├── Meadow-Integration-Command-ObjectArrayToCSV.js
25
+ │ │ ├── Meadow-Integration-Command-EntityFromTabularFolder.js
26
+ │ │ ├── Meadow-Integration-Command-DataClone.js
27
+ │ │ ├── Meadow-Integration-Command-ConvertXLSMToXLSX.js
28
+ │ │ └── Meadow-Integration-Command-Serve.js
29
+ │ ├── restserver/
30
+ │ │ ├── Meadow-Integration-Server.js # REST server class
31
+ │ │ ├── Meadow-Integration-Server-Endpoints.js # Endpoint registration
32
+ │ │ └── endpoints/
33
+ │ │ ├── Endpoint-CSVCheck.js
34
+ │ │ ├── Endpoint-CSVTransform.js
35
+ │ │ ├── Endpoint-TSVCheck.js
36
+ │ │ ├── Endpoint-TSVTransform.js
37
+ │ │ ├── Endpoint-JSONArrayTransform.js
38
+ │ │ ├── Endpoint-ComprehensionIntersect.js
39
+ │ │ ├── Endpoint-ComprehensionArray.js
40
+ │ │ ├── Endpoint-ComprehensionPush.js
41
+ │ │ ├── Endpoint-ObjectArrayToCSV.js
42
+ │ │ └── Endpoint-EntityFromTabularFolder.js
43
+ │ └── services/
44
+ │ ├── clone/
45
+ │ │ ├── Meadow-Service-ConnectionManager.js # Database connection pooling
46
+ │ │ ├── Meadow-Service-RestClient.js # Authenticated REST client
47
+ │ │ ├── Meadow-Service-Sync.js # Sync orchestrator
48
+ │ │ ├── Meadow-Service-Sync-Entity-Initial.js # Initial sync strategy
49
+ │ │ ├── Meadow-Service-Sync-Entity-Ongoing.js # Ongoing sync strategy
50
+ │ │ └── Meadow-Service-Operation.js # Timing and progress tracking
51
+ │ └── tabular/
52
+ │ ├── Service-TabularCheck.js # Statistics collection
53
+ │ └── Service-TabularTransform.js # Record transformation
54
+ ├── test/
55
+ ├── examples/
56
+ └── docs/