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
3
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.1.0-alpha7 to 1.2.0-alpha1

94

dist/api.d.ts

@@ -264,2 +264,21 @@ /**

* @export
* @interface GetAllStorages200Response
*/
export interface GetAllStorages200Response {
/**
* message returned by server side if there is any
* @type {string}
* @memberof GetAllStorages200Response
*/
'message'?: string;
/**
*
* @type {Array<StorageAggrgation>}
* @memberof GetAllStorages200Response
*/
'data'?: Array<StorageAggrgation>;
}
/**
*
* @export
* @interface GetDiskInfo200Response

@@ -840,2 +859,48 @@ */

* @export
* @interface StorageAggrgation
*/
export interface StorageAggrgation {
/**
*
* @type {string}
* @memberof StorageAggrgation
*/
'name': string;
/**
*
* @type {string}
* @memberof StorageAggrgation
*/
'font': string;
/**
*
* @type {string}
* @memberof StorageAggrgation
*/
'path': string;
/**
*
* @type {string}
* @memberof StorageAggrgation
*/
'type': StorageAggrgationTypeEnum;
/**
* extensions
* @type {object}
* @memberof StorageAggrgation
*/
'extensions': object;
}
export declare const StorageAggrgationTypeEnum: {
readonly Raid: "raid";
readonly System: "system";
readonly Usb: "USB";
readonly Disk: "disk";
readonly Cloud: "cloud";
readonly Smb: "smb";
};
export type StorageAggrgationTypeEnum = typeof StorageAggrgationTypeEnum[keyof typeof StorageAggrgationTypeEnum];
/**
*
* @export
* @interface UpdateMount200Response

@@ -1501,2 +1566,9 @@ */

* Get a list of all storage, or a single storage by path.
* @summary Get all storages
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getAllStorages: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
/**
* Get a list of all storage, or a single storage by path.
* @summary Get storages

@@ -1533,2 +1605,9 @@ * @param {string} [system] Whether system storage is required

* Get a list of all storage, or a single storage by path.
* @summary Get all storages
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getAllStorages(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAllStorages200Response>>;
/**
* Get a list of all storage, or a single storage by path.
* @summary Get storages

@@ -1565,2 +1644,9 @@ * @param {string} [system] Whether system storage is required

* Get a list of all storage, or a single storage by path.
* @summary Get all storages
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getAllStorages(options?: any): AxiosPromise<GetAllStorages200Response>;
/**
* Get a list of all storage, or a single storage by path.
* @summary Get storages

@@ -1601,2 +1687,10 @@ * @param {string} [system] Whether system storage is required

* Get a list of all storage, or a single storage by path.
* @summary Get all storages
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof StorageMethodsApi
*/
getAllStorages(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAllStorages200Response, any>>;
/**
* Get a list of all storage, or a single storage by path.
* @summary Get storages

@@ -1603,0 +1697,0 @@ * @param {string} [system] Whether system storage is required

2

package.json
{
"name": "@icewhale/zimaos-localstorage-openapi",
"version": "v1.1.0-alpha7",
"version": "v1.2.0-alpha1",
"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