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.
- package/BUILDING-AND-PUBLISHING.md +2 -2
- package/README.md +27 -8
- package/docs/README.md +1 -1
- package/docs/_cover.md +1 -1
- package/docs/_topbar.md +1 -1
- package/docs/_version.json +3 -3
- package/docs/architecture.md +14 -225
- package/docs/css/docuserve.css +327 -0
- package/docs/data-clone/diagrams/architecture-diagram.excalidraw +1756 -0
- package/docs/data-clone/diagrams/architecture-diagram.mmd +8 -0
- package/docs/data-clone/diagrams/architecture-diagram.svg +2 -0
- package/docs/data-clone/overview.md +2 -32
- package/docs/diagrams/configuration-cascade-2.excalidraw +831 -0
- package/docs/diagrams/configuration-cascade-2.mmd +8 -0
- package/docs/diagrams/configuration-cascade-2.svg +2 -0
- package/docs/diagrams/configuration-cascade.excalidraw +831 -0
- package/docs/diagrams/configuration-cascade.mmd +8 -0
- package/docs/diagrams/configuration-cascade.svg +2 -0
- package/docs/diagrams/data-synchronization-pipeline.excalidraw +3278 -0
- package/docs/diagrams/data-synchronization-pipeline.mmd +42 -0
- package/docs/diagrams/data-synchronization-pipeline.svg +2 -0
- package/docs/diagrams/data-transformation-pipeline.excalidraw +2929 -0
- package/docs/diagrams/data-transformation-pipeline.mmd +31 -0
- package/docs/diagrams/data-transformation-pipeline.svg +2 -0
- package/docs/diagrams/docker-deployment.excalidraw +1963 -0
- package/docs/diagrams/docker-deployment.mmd +23 -0
- package/docs/diagrams/docker-deployment.svg +2 -0
- package/docs/diagrams/high-level-system-architecture.excalidraw +5752 -0
- package/docs/diagrams/high-level-system-architecture.mmd +66 -0
- package/docs/diagrams/high-level-system-architecture.svg +2 -0
- package/docs/diagrams/module-structure.excalidraw +15206 -0
- package/docs/diagrams/module-structure.mmd +56 -0
- package/docs/diagrams/module-structure.svg +2 -0
- package/docs/diagrams/sync-mode-comparison.excalidraw +3660 -0
- package/docs/diagrams/sync-mode-comparison.mmd +33 -0
- package/docs/diagrams/sync-mode-comparison.svg +2 -0
- package/docs/implementation-reference.md +2 -58
- package/docs/index.html +2 -2
- package/docs/retold-catalog.json +388 -284
- package/docs/retold-keyword-index.json +24830 -16291
- package/example-applications/mapping-demo/README.md +2 -10
- package/example-applications/mapping-demo/diagrams/architecture.excalidraw +1866 -0
- package/example-applications/mapping-demo/diagrams/architecture.mmd +8 -0
- package/example-applications/mapping-demo/diagrams/architecture.svg +2 -0
- package/example-applications/mapping-demo/package.json +0 -3
- package/example-applications/mapping-demo/web/mapping-demo-editor.js +5 -5
- package/example-applications/mapping-demo/web/mapping-demo-editor.min.js +2 -2
- package/example-applications/mapping-demo/web/pict.min.js +2 -2
- package/package.json +7 -7
- package/source/Meadow-Integration-Engine.js +34 -0
- package/source/services/clone/Meadow-Service-DeleteCursorStore.js +105 -0
- package/source/services/clone/Meadow-Service-Sync-Entity-OngoingEventualConsistency.js +327 -92
- package/source/services/clone/Meadow-Service-Sync.js +2 -0
- package/test/Meadow-Integration-BisectionSync_test.js +15 -5
- package/test/Meadow-Integration-NewStrategies_test.js +15 -5
- package/test/Meadow-Integration-OngoingEventualConsistencyDeleteCursor_test.js +228 -0
- 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/
|