shoal-web-sdk 0.0.69 → 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.
@@ -251,7 +251,7 @@ export type Node = {
251
251
  };
252
252
  export type NodeType = 'cache' | 'comment' | 'container' | 'cronjob' | 'database' | 'function' | 'message_queue' | 'proxy' | 'vm';
253
253
  export type CommentNodeProps = {
254
- [key: string]: unknown;
254
+ comment?: string;
255
255
  };
256
256
  export type CacheNodeProps = {
257
257
  size?: number;
@@ -266,7 +266,7 @@ export type DatabaseNodeProps = {
266
266
  space?: number;
267
267
  };
268
268
  export type FunctionNodeProps = {
269
- space?: number;
269
+ cpus?: number;
270
270
  };
271
271
  export type MessageQueueNodeProps = {
272
272
  foobar?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.69",
3
+ "version": "0.0.70",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",