shoal-web-sdk 0.0.61 → 0.0.63

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.
@@ -197,13 +197,6 @@ export type KindeOrganisationBillingAgreement = {
197
197
  entitlement_id?: string;
198
198
  }>;
199
199
  };
200
- export type EdgeVertices = {
201
- src: string;
202
- dst: string;
203
- };
204
- export type AddEdges = {
205
- edges: Array<EdgeVertices>;
206
- };
207
200
  export type Nodes = {
208
201
  nodes: Array<Node>;
209
202
  };
@@ -222,6 +215,8 @@ export type BaseNode = {
222
215
  description?: string;
223
216
  x?: number;
224
217
  y?: number;
218
+ width?: number;
219
+ height?: number;
225
220
  edges?: Array<Edge>;
226
221
  };
227
222
  export type NodeType = 'cache' | 'comment' | 'container' | 'cronjob' | 'database' | 'function' | 'message_queue' | 'proxy' | 'vm';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.61",
3
+ "version": "0.0.63",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",