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.
- package/dist/sdk/types.gen.d.ts +9 -9
- package/package.json +1 -1
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -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
|
-
|
|
230
|
+
comment?: string;
|
|
231
231
|
};
|
|
232
232
|
export type CacheNodeProps = {
|
|
233
|
-
|
|
233
|
+
size?: number;
|
|
234
234
|
};
|
|
235
235
|
export type ContainerNodeProps = {
|
|
236
|
-
|
|
236
|
+
image?: string;
|
|
237
237
|
};
|
|
238
238
|
export type CronJobNodeProps = {
|
|
239
|
-
|
|
239
|
+
cronTab?: string;
|
|
240
240
|
};
|
|
241
241
|
export type DatabaseNodeProps = {
|
|
242
|
-
|
|
242
|
+
space?: number;
|
|
243
243
|
};
|
|
244
244
|
export type FunctionNodeProps = {
|
|
245
|
-
|
|
245
|
+
space?: number;
|
|
246
246
|
};
|
|
247
247
|
export type MessageQueueNodeProps = {
|
|
248
|
-
|
|
248
|
+
foobar?: string;
|
|
249
249
|
};
|
|
250
250
|
export type ProxyNodeProps = {
|
|
251
|
-
|
|
251
|
+
domain?: string;
|
|
252
252
|
};
|
|
253
253
|
export type VmNodeProps = {
|
|
254
|
-
|
|
254
|
+
os?: string;
|
|
255
255
|
};
|
|
256
256
|
export type CommentNode = BaseNode & {
|
|
257
257
|
typ: 'comment';
|