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