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.
- package/dist/sdk/types.gen.d.ts +2 -7
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -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';
|