shoal-web-sdk 0.0.68 → 0.0.70

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
- [key: string]: unknown;
254
+ comment?: string;
256
255
  };
257
256
  export type CacheNodeProps = {
258
257
  size?: number;
@@ -267,7 +266,7 @@ export type DatabaseNodeProps = {
267
266
  space?: number;
268
267
  };
269
268
  export type FunctionNodeProps = {
270
- space?: number;
269
+ cpus?: number;
271
270
  };
272
271
  export type MessageQueueNodeProps = {
273
272
  foobar?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.68",
3
+ "version": "0.0.70",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",