dbml-metaquery 1.0.1 → 1.1.1
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/README.md +10 -0
- package/dist/cli.bun.js +17285 -0
- package/dist/cli.js +4 -1
- package/dist/cli.js.map +3 -3
- package/dist/graph.d.ts +3 -0
- package/dist/index.bun.js +17056 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +3 -3
- package/package.json +8 -5
- package/src/cli.ts +0 -271
package/dist/cli.js
CHANGED
|
@@ -17189,6 +17189,9 @@ class DbmlGraph {
|
|
|
17189
17189
|
}
|
|
17190
17190
|
return summary;
|
|
17191
17191
|
}
|
|
17192
|
+
getGraph() {
|
|
17193
|
+
return this.graph.copy();
|
|
17194
|
+
}
|
|
17192
17195
|
searchSchema(query) {
|
|
17193
17196
|
const q = query.toLowerCase();
|
|
17194
17197
|
const results = [];
|
|
@@ -17459,5 +17462,5 @@ switch (command) {
|
|
|
17459
17462
|
process.exit(1);
|
|
17460
17463
|
}
|
|
17461
17464
|
|
|
17462
|
-
//# debugId=
|
|
17465
|
+
//# debugId=DF0FACBFB677B9B164756E2164756E21
|
|
17463
17466
|
//# sourceMappingURL=cli.js.map
|