shoal-web-sdk 0.0.67 → 0.0.69

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.
@@ -1,7 +1,6 @@
1
1
  export type ClientOptions = {
2
2
  baseUrl: 'http://localhost:8080/core-service' | 'https://api-dev.shoalstack.com/core-service' | (string & {});
3
3
  };
4
- export type ErrorType = unknown;
5
4
  export type HealthResponse = {
6
5
  status: string;
7
6
  };
@@ -252,7 +251,7 @@ export type Node = {
252
251
  };
253
252
  export type NodeType = 'cache' | 'comment' | 'container' | 'cronjob' | 'database' | 'function' | 'message_queue' | 'proxy' | 'vm';
254
253
  export type CommentNodeProps = {
255
- comment?: string;
254
+ [key: string]: unknown;
256
255
  };
257
256
  export type CacheNodeProps = {
258
257
  size?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.67",
3
+ "version": "0.0.69",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",