@icewhale/zimaos-localstorage-openapi
Advanced tools
Comparing version 1.3.2-alpha1 to 1.3.2-alpha10
@@ -133,2 +133,8 @@ /** | ||
/** | ||
* Whether the disk is missding in RAID | ||
* @type {boolean} | ||
* @memberof Device | ||
*/ | ||
'missing'?: boolean; | ||
/** | ||
* | ||
@@ -420,40 +426,2 @@ * @type {string} | ||
* @export | ||
* @interface GetMergeInitStatus200Response | ||
*/ | ||
export interface GetMergeInitStatus200Response { | ||
/** | ||
* message returned by server side if there is any | ||
* @type {string} | ||
* @memberof GetMergeInitStatus200Response | ||
*/ | ||
'message'?: string; | ||
/** | ||
* | ||
* @type {MergeStatus} | ||
* @memberof GetMergeInitStatus200Response | ||
*/ | ||
'data'?: MergeStatus; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface GetMerges200Response | ||
*/ | ||
export interface GetMerges200Response { | ||
/** | ||
* message returned by server side if there is any | ||
* @type {string} | ||
* @memberof GetMerges200Response | ||
*/ | ||
'message'?: string; | ||
/** | ||
* | ||
* @type {Array<Merge>} | ||
* @memberof GetMerges200Response | ||
*/ | ||
'data'?: Array<Merge>; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface GetMounts200Response | ||
@@ -516,62 +484,2 @@ */ | ||
* @export | ||
* @interface Merge | ||
*/ | ||
export interface Merge { | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof Merge | ||
*/ | ||
'id'?: number; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Merge | ||
*/ | ||
'fstype'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Merge | ||
*/ | ||
'mount_point': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Merge | ||
*/ | ||
'source_base_path'?: string; | ||
/** | ||
* | ||
* @type {Array<string>} | ||
* @memberof Merge | ||
*/ | ||
'source_volume_uuids'?: Array<string>; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Merge | ||
*/ | ||
'created_at'?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Merge | ||
*/ | ||
'updated_at'?: string; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @enum {string} | ||
*/ | ||
export declare const MergeStatus: { | ||
readonly Initialized: "initialized"; | ||
readonly Uninitialized: "uninitialized"; | ||
readonly Error: "error"; | ||
}; | ||
export type MergeStatus = typeof MergeStatus[keyof typeof MergeStatus]; | ||
/** | ||
* | ||
* @export | ||
* @interface Mount | ||
@@ -800,5 +708,12 @@ */ | ||
* @memberof Raid | ||
* @deprecated | ||
*/ | ||
'status'?: RaidStatusEnum; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof Raid | ||
*/ | ||
'raid_status'?: RaidRaidStatusEnum; | ||
/** | ||
* The size of the smallest disk in RAID. | ||
@@ -816,2 +731,14 @@ * @type {number} | ||
export type RaidStatusEnum = typeof RaidStatusEnum[keyof typeof RaidStatusEnum]; | ||
export declare const RaidRaidStatusEnum: { | ||
readonly Ok: "ok"; | ||
readonly Degraded: "degraded"; | ||
readonly Rebuilding: "rebuilding"; | ||
readonly Reshape: "reshape"; | ||
readonly Recovering: "recovering"; | ||
readonly Fail: "fail"; | ||
readonly Urge: "urge"; | ||
readonly Inactive: "inactive"; | ||
readonly Creating: "creating"; | ||
}; | ||
export type RaidRaidStatusEnum = typeof RaidRaidStatusEnum[keyof typeof RaidRaidStatusEnum]; | ||
/** | ||
@@ -882,21 +809,2 @@ * | ||
* @export | ||
* @interface SetMerge200Response | ||
*/ | ||
export interface SetMerge200Response { | ||
/** | ||
* message returned by server side if there is any | ||
* @type {string} | ||
* @memberof SetMerge200Response | ||
*/ | ||
'message'?: string; | ||
/** | ||
* | ||
* @type {Merge} | ||
* @memberof SetMerge200Response | ||
*/ | ||
'data'?: Merge; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface Storage | ||
@@ -1330,156 +1238,2 @@ */ | ||
/** | ||
* MergeMethodsApi - axios parameter creator | ||
* @export | ||
*/ | ||
export declare const MergeMethodsApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
* (TODO) | ||
* @summary Get merge initialization status | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getMergeInitStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
* (TODO) | ||
* @summary Get merges | ||
* @param {string} [mountPoint] Filter the results by mount point | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getMerges: (mountPoint?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
* (TODO) | ||
* @summary Initialize a merge | ||
* @param {MountPoint} mountPoint | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
initMerge: (mountPoint: MountPoint, options?: RawAxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
* (TODO) | ||
* @summary Set a merge | ||
* @param {Merge} merge | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
setMerge: (merge: Merge, options?: RawAxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
/** | ||
* MergeMethodsApi - functional programming interface | ||
* @export | ||
*/ | ||
export declare const MergeMethodsApiFp: (configuration?: Configuration) => { | ||
/** | ||
* (TODO) | ||
* @summary Get merge initialization status | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getMergeInitStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMergeInitStatus200Response>>; | ||
/** | ||
* (TODO) | ||
* @summary Get merges | ||
* @param {string} [mountPoint] Filter the results by mount point | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getMerges(mountPoint?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMerges200Response>>; | ||
/** | ||
* (TODO) | ||
* @summary Initialize a merge | ||
* @param {MountPoint} mountPoint | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
initMerge(mountPoint: MountPoint, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMergeInitStatus200Response>>; | ||
/** | ||
* (TODO) | ||
* @summary Set a merge | ||
* @param {Merge} merge | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
setMerge(merge: Merge, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetMerge200Response>>; | ||
}; | ||
/** | ||
* MergeMethodsApi - factory interface | ||
* @export | ||
*/ | ||
export declare const MergeMethodsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
* (TODO) | ||
* @summary Get merge initialization status | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getMergeInitStatus(options?: RawAxiosRequestConfig): AxiosPromise<GetMergeInitStatus200Response>; | ||
/** | ||
* (TODO) | ||
* @summary Get merges | ||
* @param {string} [mountPoint] Filter the results by mount point | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
getMerges(mountPoint?: string, options?: RawAxiosRequestConfig): AxiosPromise<GetMerges200Response>; | ||
/** | ||
* (TODO) | ||
* @summary Initialize a merge | ||
* @param {MountPoint} mountPoint | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
initMerge(mountPoint: MountPoint, options?: RawAxiosRequestConfig): AxiosPromise<GetMergeInitStatus200Response>; | ||
/** | ||
* (TODO) | ||
* @summary Set a merge | ||
* @param {Merge} merge | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
*/ | ||
setMerge(merge: Merge, options?: RawAxiosRequestConfig): AxiosPromise<SetMerge200Response>; | ||
}; | ||
/** | ||
* MergeMethodsApi - object-oriented interface | ||
* @export | ||
* @class MergeMethodsApi | ||
* @extends {BaseAPI} | ||
*/ | ||
export declare class MergeMethodsApi extends BaseAPI { | ||
/** | ||
* (TODO) | ||
* @summary Get merge initialization status | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
* @memberof MergeMethodsApi | ||
*/ | ||
getMergeInitStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMergeInitStatus200Response, any>>; | ||
/** | ||
* (TODO) | ||
* @summary Get merges | ||
* @param {string} [mountPoint] Filter the results by mount point | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
* @memberof MergeMethodsApi | ||
*/ | ||
getMerges(mountPoint?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMerges200Response, any>>; | ||
/** | ||
* (TODO) | ||
* @summary Initialize a merge | ||
* @param {MountPoint} mountPoint | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
* @memberof MergeMethodsApi | ||
*/ | ||
initMerge(mountPoint: MountPoint, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMergeInitStatus200Response, any>>; | ||
/** | ||
* (TODO) | ||
* @summary Set a merge | ||
* @param {Merge} merge | ||
* @param {*} [options] Override http request option. | ||
* @throws {RequiredError} | ||
* @memberof MergeMethodsApi | ||
*/ | ||
setMerge(merge: Merge, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SetMerge200Response, any>>; | ||
} | ||
/** | ||
* MountMethodsApi - axios parameter creator | ||
@@ -1486,0 +1240,0 @@ * @export |
{ | ||
"name": "@icewhale/zimaos-localstorage-openapi", | ||
"version": "v1.3.2-alpha1", | ||
"version": "v1.3.2-alpha10", | ||
"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
258163
6279