shoal-web-sdk 0.0.55 → 0.0.56

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.
@@ -227,31 +227,31 @@ export type BaseNode = {
227
227
  };
228
228
  export type NodeType = 'cache' | 'comment' | 'container' | 'cronjob' | 'database' | 'function' | 'message_queue' | 'proxy' | 'vm';
229
229
  export type CommentNodeProps = {
230
- [key: string]: unknown;
230
+ comment?: string;
231
231
  };
232
232
  export type CacheNodeProps = {
233
- [key: string]: unknown;
233
+ size?: number;
234
234
  };
235
235
  export type ContainerNodeProps = {
236
- [key: string]: unknown;
236
+ image?: string;
237
237
  };
238
238
  export type CronJobNodeProps = {
239
- [key: string]: unknown;
239
+ cronTab?: string;
240
240
  };
241
241
  export type DatabaseNodeProps = {
242
- [key: string]: unknown;
242
+ space?: number;
243
243
  };
244
244
  export type FunctionNodeProps = {
245
- [key: string]: unknown;
245
+ space?: number;
246
246
  };
247
247
  export type MessageQueueNodeProps = {
248
- [key: string]: unknown;
248
+ foobar?: string;
249
249
  };
250
250
  export type ProxyNodeProps = {
251
- [key: string]: unknown;
251
+ domain?: string;
252
252
  };
253
253
  export type VmNodeProps = {
254
- [key: string]: unknown;
254
+ os?: string;
255
255
  };
256
256
  export type CommentNode = BaseNode & {
257
257
  typ: 'comment';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "0.0.55",
3
+ "version": "0.0.56",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",