Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@icewhale/zimaos-localstorage-openapi

Package Overview
Dependencies
Maintainers
0
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@icewhale/zimaos-localstorage-openapi - npm Package Compare versions

Comparing version 1.2.4-alpha7 to 1.2.4-alpha8

134

dist/api.d.ts

@@ -302,2 +302,40 @@ /**

* @export
* @interface GetDiskSleepWaitTime200Response
*/
export interface GetDiskSleepWaitTime200Response {
/**
* message returned by server side if there is any
* @type {string}
* @memberof GetDiskSleepWaitTime200Response
*/
'message'?: string;
/**
*
* @type {number}
* @memberof GetDiskSleepWaitTime200Response
*/
'wait_time'?: number;
}
/**
*
* @export
* @interface GetDiskStandbyStatus200Response
*/
export interface GetDiskStandbyStatus200Response {
/**
* message returned by server side if there is any
* @type {string}
* @memberof GetDiskStandbyStatus200Response
*/
'message'?: string;
/**
*
* @type {boolean}
* @memberof GetDiskStandbyStatus200Response
*/
'standby': boolean;
}
/**
*
* @export
* @interface GetDisks200Response

@@ -767,2 +805,15 @@ */

* @export
* @interface SetDiskSleepWaitTimeRequest
*/
export interface SetDiskSleepWaitTimeRequest {
/**
* the time of how time is free to sleep
* @type {number}
* @memberof SetDiskSleepWaitTimeRequest
*/
'level': number;
}
/**
*
* @export
* @interface SetMerge200Response

@@ -997,2 +1048,15 @@ */

/**
* get how minutes to sleep a disk
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiskSleepWaitTime: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
/**
* get disk sleep status
* @param {string} [devicePath] Filter the results by path
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiskStandbyStatus: (devicePath?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
/**
* Get a list of all disks, or a single disk by path.

@@ -1005,2 +1069,9 @@ * @summary Get disks

getDisks: (free?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
/**
* set sleep disk time the value is 0-251, 1-240 is n * 5, 241 - 251 is n * 30 minutes 0 means never sleep 1 means sleep after 5 s 2 means sleep after 10 s 12 means sleep after 1 minute 241 means sleep after 30 minutes 242 means sleep after 1 hour
* @param {SetDiskSleepWaitTimeRequest} setDiskSleepWaitTimeRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
setDiskSleepWaitTime: (setDiskSleepWaitTimeRequest: SetDiskSleepWaitTimeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
};

@@ -1021,2 +1092,15 @@ /**

/**
* get how minutes to sleep a disk
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiskSleepWaitTime(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDiskSleepWaitTime200Response>>;
/**
* get disk sleep status
* @param {string} [devicePath] Filter the results by path
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiskStandbyStatus(devicePath?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDiskStandbyStatus200Response>>;
/**
* Get a list of all disks, or a single disk by path.

@@ -1029,2 +1113,9 @@ * @summary Get disks

getDisks(free?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDisks200Response>>;
/**
* set sleep disk time the value is 0-251, 1-240 is n * 5, 241 - 251 is n * 30 minutes 0 means never sleep 1 means sleep after 5 s 2 means sleep after 10 s 12 means sleep after 1 minute 241 means sleep after 30 minutes 242 means sleep after 1 hour
* @param {SetDiskSleepWaitTimeRequest} setDiskSleepWaitTimeRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
setDiskSleepWaitTime(setDiskSleepWaitTimeRequest: SetDiskSleepWaitTimeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BaseResponse>>;
};

@@ -1045,2 +1136,15 @@ /**

/**
* get how minutes to sleep a disk
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiskSleepWaitTime(options?: RawAxiosRequestConfig): AxiosPromise<GetDiskSleepWaitTime200Response>;
/**
* get disk sleep status
* @param {string} [devicePath] Filter the results by path
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getDiskStandbyStatus(devicePath?: string, options?: RawAxiosRequestConfig): AxiosPromise<GetDiskStandbyStatus200Response>;
/**
* Get a list of all disks, or a single disk by path.

@@ -1053,2 +1157,9 @@ * @summary Get disks

getDisks(free?: string, options?: RawAxiosRequestConfig): AxiosPromise<GetDisks200Response>;
/**
* set sleep disk time the value is 0-251, 1-240 is n * 5, 241 - 251 is n * 30 minutes 0 means never sleep 1 means sleep after 5 s 2 means sleep after 10 s 12 means sleep after 1 minute 241 means sleep after 30 minutes 242 means sleep after 1 hour
* @param {SetDiskSleepWaitTimeRequest} setDiskSleepWaitTimeRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
setDiskSleepWaitTime(setDiskSleepWaitTimeRequest: SetDiskSleepWaitTimeRequest, options?: RawAxiosRequestConfig): AxiosPromise<BaseResponse>;
};

@@ -1072,2 +1183,17 @@ /**

/**
* get how minutes to sleep a disk
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof DiskMethodsApi
*/
getDiskSleepWaitTime(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDiskSleepWaitTime200Response, any>>;
/**
* get disk sleep status
* @param {string} [devicePath] Filter the results by path
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof DiskMethodsApi
*/
getDiskStandbyStatus(devicePath?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDiskStandbyStatus200Response, any>>;
/**
* Get a list of all disks, or a single disk by path.

@@ -1081,2 +1207,10 @@ * @summary Get disks

getDisks(free?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDisks200Response, any>>;
/**
* set sleep disk time the value is 0-251, 1-240 is n * 5, 241 - 251 is n * 30 minutes 0 means never sleep 1 means sleep after 5 s 2 means sleep after 10 s 12 means sleep after 1 minute 241 means sleep after 30 minutes 242 means sleep after 1 hour
* @param {SetDiskSleepWaitTimeRequest} setDiskSleepWaitTimeRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof DiskMethodsApi
*/
setDiskSleepWaitTime(setDiskSleepWaitTimeRequest: SetDiskSleepWaitTimeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseResponse, any>>;
}

@@ -1083,0 +1217,0 @@ /**

2

package.json
{
"name": "@icewhale/zimaos-localstorage-openapi",
"version": "v1.2.4-alpha7",
"version": "v1.2.4-alpha8",
"scripts": {

@@ -5,0 +5,0 @@ "build": "rm -rf dist && tsc && rm -rf generate",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc