@icewhale/zimaos-localstorage-openapi
Advanced tools
Comparing version 1.1.0-alpha7 to 1.2.0-alpha1
@@ -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 |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
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
151426
3775