@uigraph/sdk 1.2.7 → 1.2.8
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 +1 -1
- package/dist/{__index.BVDt3Nmx.d.cts → __index.B1JSpBNJ.d.cts} +4 -0
- package/dist/{__index.BQQp_uAt.d.mts → __index.BjLNt7Hi.d.mts} +4 -0
- package/dist/browser.d.cts +1 -1
- package/dist/browser.d.mts +1 -1
- package/dist/index.cjs +289 -82
- package/dist/index.d.cts +20 -15
- package/dist/index.d.mts +20 -15
- package/dist/index.mjs +287 -83
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@uigraph/sdk)
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
|
|
6
|
-
Official TypeScript SDK for [
|
|
6
|
+
Official TypeScript SDK for [UIGraph](https://github.com/uigraph-oss). Parse SQL and NoSQL schemas, convert Mermaid diagrams, and produce [React Flow](https://reactflow.dev/) node and edge data for architecture and data-model diagrams.
|
|
7
7
|
|
|
8
8
|
## Features
|
|
9
9
|
|
|
@@ -279,10 +279,14 @@ type CustomData = {
|
|
|
279
279
|
columns?: string[];
|
|
280
280
|
rows?: string[][];
|
|
281
281
|
strokeAnimation?: 'dash';
|
|
282
|
+
c4DiagramType?: C4DiagramType;
|
|
282
283
|
c4Kind?: C4ElementKind;
|
|
283
284
|
c4Shape?: C4ElementShape;
|
|
284
285
|
c4BoundaryKind?: C4BoundaryKind;
|
|
285
286
|
c4NodeType?: C4NodeType;
|
|
287
|
+
c4RelDirection?: C4RelDirection;
|
|
288
|
+
c4RelTechnology?: string;
|
|
289
|
+
c4RelDescription?: string;
|
|
286
290
|
boundaryType?: string;
|
|
287
291
|
isExternal?: boolean;
|
|
288
292
|
technology?: string;
|
|
@@ -279,10 +279,14 @@ type CustomData = {
|
|
|
279
279
|
columns?: string[];
|
|
280
280
|
rows?: string[][];
|
|
281
281
|
strokeAnimation?: 'dash';
|
|
282
|
+
c4DiagramType?: C4DiagramType;
|
|
282
283
|
c4Kind?: C4ElementKind;
|
|
283
284
|
c4Shape?: C4ElementShape;
|
|
284
285
|
c4BoundaryKind?: C4BoundaryKind;
|
|
285
286
|
c4NodeType?: C4NodeType;
|
|
287
|
+
c4RelDirection?: C4RelDirection;
|
|
288
|
+
c4RelTechnology?: string;
|
|
289
|
+
c4RelDescription?: string;
|
|
286
290
|
boundaryType?: string;
|
|
287
291
|
isExternal?: boolean;
|
|
288
292
|
technology?: string;
|
package/dist/browser.d.cts
CHANGED
package/dist/browser.d.mts
CHANGED