meadow-integration 1.0.1 → 1.0.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 (52) hide show
  1. package/CONTRIBUTING.md +50 -0
  2. package/README.md +223 -7
  3. package/docs/README.md +107 -7
  4. package/docs/_sidebar.md +38 -0
  5. package/docs/_topbar.md +7 -0
  6. package/docs/cli-reference.md +242 -0
  7. package/docs/comprehensions.md +98 -0
  8. package/docs/cover.md +11 -0
  9. package/docs/css/docuserve.css +73 -0
  10. package/docs/examples-walkthrough.md +138 -0
  11. package/docs/index.html +37 -20
  12. package/docs/integration-adapter.md +109 -0
  13. package/docs/mapping-files.md +140 -0
  14. package/docs/programmatic-api.md +173 -0
  15. package/docs/rest-api-reference.md +731 -0
  16. package/docs/retold-catalog.json +153 -0
  17. package/docs/retold-keyword-index.json +4828 -0
  18. package/examples/Example-001-CSV-Check.sh +29 -0
  19. package/examples/Example-002-CSV-Transform-Implicit.sh +31 -0
  20. package/examples/Example-003-CSV-Transform-CLI-Options.sh +39 -0
  21. package/examples/Example-004-CSV-Transform-Mapping-File.sh +41 -0
  22. package/examples/Example-005-Multi-Entity-Bookstore.sh +60 -0
  23. package/examples/Example-006-Multi-CSV-Intersect.sh +74 -0
  24. package/examples/Example-007-Comprehension-To-Array.sh +41 -0
  25. package/examples/Example-008-Comprehension-To-CSV.sh +51 -0
  26. package/examples/Example-009-JSON-Array-Transform.sh +46 -0
  27. package/examples/Example-010-Programmatic-API.js +138 -0
  28. package/examples/README.md +44 -0
  29. package/examples/output/.gitignore +2 -0
  30. package/package.json +7 -4
  31. package/source/Meadow-Integration.js +3 -1
  32. package/source/cli/Meadow-Integration-CLI-Program.js +4 -1
  33. package/source/cli/commands/Meadow-Integration-Command-ObjectArrayToCSV.js +49 -32
  34. package/source/cli/commands/Meadow-Integration-Command-Serve.js +51 -0
  35. package/source/restserver/Meadow-Integration-Server-Endpoints.js +83 -0
  36. package/source/restserver/Meadow-Integration-Server.js +86 -0
  37. package/source/restserver/endpoints/Endpoint-CSVCheck.js +91 -0
  38. package/source/restserver/endpoints/Endpoint-CSVTransform.js +189 -0
  39. package/source/restserver/endpoints/Endpoint-ComprehensionArray.js +121 -0
  40. package/source/restserver/endpoints/Endpoint-ComprehensionIntersect.js +166 -0
  41. package/source/restserver/endpoints/Endpoint-ComprehensionPush.js +209 -0
  42. package/source/restserver/endpoints/Endpoint-EntityFromTabularFolder.js +252 -0
  43. package/source/restserver/endpoints/Endpoint-JSONArrayTransform.js +238 -0
  44. package/source/restserver/endpoints/Endpoint-ObjectArrayToCSV.js +231 -0
  45. package/source/restserver/endpoints/Endpoint-TSVCheck.js +93 -0
  46. package/source/restserver/endpoints/Endpoint-TSVTransform.js +191 -0
  47. package/test/Meadow-Integration-Server_test.js +1170 -0
  48. package/test/data/test-comprehension-secondary.json +8 -0
  49. package/test/data/test-comprehension.json +8 -0
  50. package/test/data/test-small.csv +6 -0
  51. package/test/data/test-small.json +7 -0
  52. package/test/data/test-small.tsv +6 -0
@@ -0,0 +1,153 @@
1
+ {
2
+ "Generated": "2026-02-18T03:35:30.874Z",
3
+ "GitHubOrg": "stevenvelozo",
4
+ "DefaultBranch": "master",
5
+ "Groups": [
6
+ {
7
+ "Name": "Dist",
8
+ "Key": "dist",
9
+ "Description": "",
10
+ "Modules": [
11
+ {
12
+ "Name": "indoctrinate_content_staging",
13
+ "Repo": "indoctrinate_content_staging",
14
+ "Group": "dist",
15
+ "Branch": "master",
16
+ "HasDocs": false,
17
+ "HasCover": false,
18
+ "Sidebar": [],
19
+ "DocFiles": []
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "Name": "Docs",
25
+ "Key": "docs",
26
+ "Description": "",
27
+ "Modules": [
28
+ {
29
+ "Name": "examples",
30
+ "Repo": "examples",
31
+ "Group": "docs",
32
+ "Branch": "master",
33
+ "HasDocs": true,
34
+ "HasCover": false,
35
+ "Sidebar": [],
36
+ "DocFiles": [
37
+ "examples/bookstore/.gitignore",
38
+ "examples/bookstore/BookData.md",
39
+ "examples/bookstore/Generate_Bookstore_Comprehension.sh",
40
+ "examples/bookstore/mapping_books_Author.json",
41
+ "examples/bookstore/mapping_books_Book.json",
42
+ "examples/bookstore/mapping_books_BookAuthorJoin.json",
43
+ "examples/data/books.csv",
44
+ "examples/data/seattle_neighborhoods/Seattle_Data_Information.md",
45
+ "examples/data/seattle_neighborhoods/housing_characteristics_Neighborhoods.csv",
46
+ "examples/data/seattle_neighborhoods/housing_costs_Neighborhoods.csv",
47
+ "examples/data/seattle_neighborhoods/race_ethnicity_Neighborhoods.csv",
48
+ "examples/multi_set_integration/multi_set_step_by_step.md",
49
+ "examples/multi_set_integration/multi_set_step_by_step_overview_diagram.excalidraw.svg",
50
+ "examples/multi_set_integration/part_1_getting_data.md"
51
+ ]
52
+ },
53
+ {
54
+ "Name": "vocabulary",
55
+ "Repo": "vocabulary",
56
+ "Group": "docs",
57
+ "Branch": "master",
58
+ "HasDocs": true,
59
+ "HasCover": false,
60
+ "Sidebar": [],
61
+ "DocFiles": [
62
+ "vocabulary/Column.md",
63
+ "vocabulary/Comprehension.md",
64
+ "vocabulary/Confidence.md",
65
+ "vocabulary/Data Capture Date.md",
66
+ "vocabulary/Data Entry Date.md",
67
+ "vocabulary/Entity.md",
68
+ "vocabulary/Format.md",
69
+ "vocabulary/GUID.md",
70
+ "vocabulary/Join.md",
71
+ "vocabulary/Record.md",
72
+ "vocabulary/Schema.md",
73
+ "vocabulary/Set.md",
74
+ "vocabulary/Snapshot.md",
75
+ "vocabulary/Source.md",
76
+ "vocabulary/Version.md"
77
+ ]
78
+ }
79
+ ]
80
+ },
81
+ {
82
+ "Name": "Examples",
83
+ "Key": "examples",
84
+ "Description": "",
85
+ "Modules": [
86
+ {
87
+ "Name": "output",
88
+ "Repo": "output",
89
+ "Group": "examples",
90
+ "Branch": "master",
91
+ "HasDocs": false,
92
+ "HasCover": false,
93
+ "Sidebar": [],
94
+ "DocFiles": []
95
+ }
96
+ ]
97
+ },
98
+ {
99
+ "Name": "Source",
100
+ "Key": "source",
101
+ "Description": "",
102
+ "Modules": [
103
+ {
104
+ "Name": "cli",
105
+ "Repo": "cli",
106
+ "Group": "source",
107
+ "Branch": "master",
108
+ "HasDocs": false,
109
+ "HasCover": false,
110
+ "Sidebar": [],
111
+ "DocFiles": []
112
+ },
113
+ {
114
+ "Name": "restserver",
115
+ "Repo": "restserver",
116
+ "Group": "source",
117
+ "Branch": "master",
118
+ "HasDocs": false,
119
+ "HasCover": false,
120
+ "Sidebar": [],
121
+ "DocFiles": []
122
+ },
123
+ {
124
+ "Name": "services",
125
+ "Repo": "services",
126
+ "Group": "source",
127
+ "Branch": "master",
128
+ "HasDocs": false,
129
+ "HasCover": false,
130
+ "Sidebar": [],
131
+ "DocFiles": []
132
+ }
133
+ ]
134
+ },
135
+ {
136
+ "Name": "Test",
137
+ "Key": "test",
138
+ "Description": "",
139
+ "Modules": [
140
+ {
141
+ "Name": "data",
142
+ "Repo": "data",
143
+ "Group": "test",
144
+ "Branch": "master",
145
+ "HasDocs": false,
146
+ "HasCover": false,
147
+ "Sidebar": [],
148
+ "DocFiles": []
149
+ }
150
+ ]
151
+ }
152
+ ]
153
+ }