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.
- package/dist/sdk/types.gen.d.ts +2 -2
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
269
|
+
cpus?: number;
|
|
270
270
|
};
|
|
271
271
|
export type MessageQueueNodeProps = {
|
|
272
272
|
foobar?: string;
|