@icewhale/zimaos-localstorage-openapi
Advanced tools
Comparing version 0.4.9-alpha8 to 0.4.9-alpha9
@@ -32,2 +32,57 @@ /** | ||
* @export | ||
* @interface Chilren | ||
*/ | ||
export interface Chilren { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Chilren | ||
*/ | ||
'name'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Chilren | ||
*/ | ||
'mount_point'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Chilren | ||
*/ | ||
'path'?: string; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof Chilren | ||
*/ | ||
'size'?: number; | ||
/** | ||
* | ||
* @type {boolean} | ||
* @memberof Chilren | ||
*/ | ||
'supported'?: boolean; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Chilren | ||
*/ | ||
'file_system'?: string; | ||
/** | ||
* | ||
* @type {boolean} | ||
* @memberof Chilren | ||
*/ | ||
'raid'?: boolean; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof Chilren | ||
*/ | ||
'raid_level'?: number; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface Device | ||
@@ -48,2 +103,20 @@ */ | ||
'path'?: string; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof Device | ||
*/ | ||
'size'?: number; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Device | ||
*/ | ||
'model'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Device | ||
*/ | ||
'type'?: string; | ||
} | ||
@@ -142,6 +215,6 @@ /** | ||
* | ||
* @type {Array<Utilization>} | ||
* @type {Array<Chilren>} | ||
* @memberof Disk | ||
*/ | ||
'utilizations'?: Array<Utilization>; | ||
'children'?: Array<Chilren>; | ||
} | ||
@@ -740,33 +813,2 @@ /** | ||
* @export | ||
* @interface Utilization | ||
*/ | ||
export interface Utilization { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Utilization | ||
*/ | ||
'name'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Utilization | ||
*/ | ||
'mount_point'?: string; | ||
/** | ||
* | ||
* @type {boolean} | ||
* @memberof Utilization | ||
*/ | ||
'raid'?: boolean; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof Utilization | ||
*/ | ||
'raid_level'?: number; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface Volume | ||
@@ -828,6 +870,7 @@ */ | ||
* @summary Get disks | ||
* @param {string} [free] Filter the results by path | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getDisks: (options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
getDisks: (free?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
@@ -850,6 +893,7 @@ /** | ||
* @summary Get disks | ||
* @param {string} [free] Filter the results by path | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getDisks(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDisks200Response>>; | ||
getDisks(free?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDisks200Response>>; | ||
}; | ||
@@ -872,6 +916,7 @@ /** | ||
* @summary Get disks | ||
* @param {string} [free] Filter the results by path | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getDisks(options?: any): AxiosPromise<GetDisks200Response>; | ||
getDisks(free?: string, options?: any): AxiosPromise<GetDisks200Response>; | ||
}; | ||
@@ -897,2 +942,3 @@ /** | ||
* @summary Get disks | ||
* @param {string} [free] Filter the results by path | ||
* @param {*} [options] Override http request option. | ||
@@ -902,3 +948,3 @@ * @throws {RequiredError} | ||
*/ | ||
getDisks(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDisks200Response, any>>; | ||
getDisks(free?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDisks200Response, any>>; | ||
} | ||
@@ -905,0 +951,0 @@ /** |
{ | ||
"name": "@icewhale/zimaos-localstorage-openapi", | ||
"version": "v0.4.9-alpha8", | ||
"version": "v0.4.9-alpha9", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "build": "rm -rf dist && tsc && rm -rf generate", |
Sorry, the diff of this file is too big to display
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
154043
3558