@elkindev/dbgraph 1.0.0
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/LICENSE +21 -0
- package/README.md +317 -0
- package/dist/chunk-2ESYSVXG.js +48 -0
- package/dist/chunk-CK6XTW3E.js +31 -0
- package/dist/chunk-JN26WCE7.js +231 -0
- package/dist/chunk-PQBJ4PR5.js +7994 -0
- package/dist/chunk-PXNV4PMV.js +3790 -0
- package/dist/chunk-TH4OVS4W.js +119 -0
- package/dist/cli.js +1827 -0
- package/dist/connectivity-outcome-GLCSH4UL.js +7 -0
- package/dist/errors-IVGCGSZR.js +31 -0
- package/dist/esm-WVQHRQ3J.js +5195 -0
- package/dist/index.cjs +125968 -0
- package/dist/index.d.cts +2692 -0
- package/dist/index.d.ts +2692 -0
- package/dist/index.js +8230 -0
- package/dist/lib-HSEC5IHY.js +32422 -0
- package/dist/mcp.js +7886 -0
- package/dist/mysql2-JRR5EBJC.js +15624 -0
- package/dist/open-WLBPYZLW.js +602 -0
- package/dist/parse-config-5TLAZCR3.js +8 -0
- package/dist/src-5YCYYWGV.js +147 -0
- package/dist/tedious-3WZBQM6C.js +59836 -0
- package/package.json +72 -0
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DBGRAPH_VERSION,
|
|
3
|
+
EDGE_CONFIDENCE_VALUES,
|
|
4
|
+
EDGE_KINDS,
|
|
5
|
+
INDEX_LEVELS,
|
|
6
|
+
LEVENSHTEIN_THRESHOLD,
|
|
7
|
+
MONGODB_CAPABILITIES,
|
|
8
|
+
MSSQL_CAPABILITIES,
|
|
9
|
+
MYSQL_CAPABILITIES,
|
|
10
|
+
MongodbCapabilityProbe,
|
|
11
|
+
MssqlCapabilityProbe,
|
|
12
|
+
MysqlCapabilityProbe,
|
|
13
|
+
NODE_KINDS,
|
|
14
|
+
PG_CAPABILITIES,
|
|
15
|
+
PgCapabilityProbe,
|
|
16
|
+
SQLITE_CAPABILITIES,
|
|
17
|
+
SqliteCapabilityProbe,
|
|
18
|
+
TYPO_CAP,
|
|
19
|
+
applyLevel,
|
|
20
|
+
canonicalQName,
|
|
21
|
+
capabilitiesFor,
|
|
22
|
+
createMongodbSchemaAdapter,
|
|
23
|
+
createMssqlSchemaAdapter,
|
|
24
|
+
createMysqlSchemaAdapter,
|
|
25
|
+
createPgSchemaAdapter,
|
|
26
|
+
createSqliteGraphStore,
|
|
27
|
+
createSqliteSchemaAdapter,
|
|
28
|
+
deriveColumnAnnotations,
|
|
29
|
+
edgeId,
|
|
30
|
+
extractIdentifiers,
|
|
31
|
+
findJoinPath,
|
|
32
|
+
formatDoctor,
|
|
33
|
+
formatExplore,
|
|
34
|
+
formatImpact,
|
|
35
|
+
formatObject,
|
|
36
|
+
formatOutcome,
|
|
37
|
+
formatPath,
|
|
38
|
+
formatPrecheck,
|
|
39
|
+
formatRelated,
|
|
40
|
+
formatSearch,
|
|
41
|
+
formatStatus,
|
|
42
|
+
getImpact,
|
|
43
|
+
getNeighbors,
|
|
44
|
+
nodeId,
|
|
45
|
+
noopLogger,
|
|
46
|
+
normalizeBody,
|
|
47
|
+
normalizeCatalog,
|
|
48
|
+
openConnections,
|
|
49
|
+
renderColumns,
|
|
50
|
+
renderConstraints,
|
|
51
|
+
renderFocusPayload,
|
|
52
|
+
renderIndexes,
|
|
53
|
+
renderTriggers,
|
|
54
|
+
resolveProfile,
|
|
55
|
+
runPrecheck,
|
|
56
|
+
search,
|
|
57
|
+
stableStringify
|
|
58
|
+
} from "./chunk-PQBJ4PR5.js";
|
|
59
|
+
import "./chunk-JN26WCE7.js";
|
|
60
|
+
import {
|
|
61
|
+
ConfigError,
|
|
62
|
+
ConnectionError,
|
|
63
|
+
ConnectivityUnavailableError,
|
|
64
|
+
DbgraphError,
|
|
65
|
+
NormalizationError,
|
|
66
|
+
NotFoundError,
|
|
67
|
+
PermissionError,
|
|
68
|
+
QueryError,
|
|
69
|
+
SchemaVersionError,
|
|
70
|
+
StorageError,
|
|
71
|
+
StrategyExhaustionError,
|
|
72
|
+
TransportError,
|
|
73
|
+
UnsupportedDialectError
|
|
74
|
+
} from "./chunk-TH4OVS4W.js";
|
|
75
|
+
import "./chunk-CK6XTW3E.js";
|
|
76
|
+
import "./chunk-2ESYSVXG.js";
|
|
77
|
+
export {
|
|
78
|
+
ConfigError,
|
|
79
|
+
ConnectionError,
|
|
80
|
+
ConnectivityUnavailableError,
|
|
81
|
+
DBGRAPH_VERSION,
|
|
82
|
+
DbgraphError,
|
|
83
|
+
EDGE_CONFIDENCE_VALUES,
|
|
84
|
+
EDGE_KINDS,
|
|
85
|
+
INDEX_LEVELS,
|
|
86
|
+
LEVENSHTEIN_THRESHOLD,
|
|
87
|
+
MONGODB_CAPABILITIES,
|
|
88
|
+
MSSQL_CAPABILITIES,
|
|
89
|
+
MYSQL_CAPABILITIES,
|
|
90
|
+
MongodbCapabilityProbe,
|
|
91
|
+
MssqlCapabilityProbe,
|
|
92
|
+
MysqlCapabilityProbe,
|
|
93
|
+
NODE_KINDS,
|
|
94
|
+
NormalizationError,
|
|
95
|
+
NotFoundError,
|
|
96
|
+
PG_CAPABILITIES,
|
|
97
|
+
PermissionError,
|
|
98
|
+
PgCapabilityProbe,
|
|
99
|
+
QueryError,
|
|
100
|
+
SQLITE_CAPABILITIES,
|
|
101
|
+
SchemaVersionError,
|
|
102
|
+
SqliteCapabilityProbe,
|
|
103
|
+
StorageError,
|
|
104
|
+
StrategyExhaustionError,
|
|
105
|
+
TYPO_CAP,
|
|
106
|
+
TransportError,
|
|
107
|
+
UnsupportedDialectError,
|
|
108
|
+
applyLevel,
|
|
109
|
+
canonicalQName,
|
|
110
|
+
capabilitiesFor,
|
|
111
|
+
createMongodbSchemaAdapter,
|
|
112
|
+
createMssqlSchemaAdapter,
|
|
113
|
+
createMysqlSchemaAdapter,
|
|
114
|
+
createPgSchemaAdapter,
|
|
115
|
+
createSqliteGraphStore,
|
|
116
|
+
createSqliteSchemaAdapter,
|
|
117
|
+
deriveColumnAnnotations,
|
|
118
|
+
edgeId,
|
|
119
|
+
extractIdentifiers,
|
|
120
|
+
findJoinPath,
|
|
121
|
+
formatDoctor,
|
|
122
|
+
formatExplore,
|
|
123
|
+
formatImpact,
|
|
124
|
+
formatObject,
|
|
125
|
+
formatOutcome,
|
|
126
|
+
formatPath,
|
|
127
|
+
formatPrecheck,
|
|
128
|
+
formatRelated,
|
|
129
|
+
formatSearch,
|
|
130
|
+
formatStatus,
|
|
131
|
+
getImpact,
|
|
132
|
+
getNeighbors,
|
|
133
|
+
nodeId,
|
|
134
|
+
noopLogger,
|
|
135
|
+
normalizeBody,
|
|
136
|
+
normalizeCatalog,
|
|
137
|
+
openConnections,
|
|
138
|
+
renderColumns,
|
|
139
|
+
renderConstraints,
|
|
140
|
+
renderFocusPayload,
|
|
141
|
+
renderIndexes,
|
|
142
|
+
renderTriggers,
|
|
143
|
+
resolveProfile,
|
|
144
|
+
runPrecheck,
|
|
145
|
+
search,
|
|
146
|
+
stableStringify
|
|
147
|
+
};
|