shoal-web-sdk 0.0.67 → 0.0.69
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 +1 -2
- 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
|
+
[key: string]: unknown;
|
|
256
255
|
};
|
|
257
256
|
export type CacheNodeProps = {
|
|
258
257
|
size?: number;
|