ch-admin-api-client-typescript 2.9.9 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +0 -82
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -106
- package/package.json +1 -1
- package/src/api.ts +0 -125
package/lib/api.d.ts
CHANGED
|
@@ -13573,37 +13573,6 @@ export interface UserModel {
|
|
|
13573
13573
|
*/
|
|
13574
13574
|
'locations'?: Array<UserLocationModel> | null;
|
|
13575
13575
|
}
|
|
13576
|
-
/**
|
|
13577
|
-
*
|
|
13578
|
-
* @export
|
|
13579
|
-
* @interface WeatherForecast
|
|
13580
|
-
*/
|
|
13581
|
-
export interface WeatherForecast {
|
|
13582
|
-
/**
|
|
13583
|
-
*
|
|
13584
|
-
* @type {Date}
|
|
13585
|
-
* @memberof WeatherForecast
|
|
13586
|
-
*/
|
|
13587
|
-
'date'?: Date;
|
|
13588
|
-
/**
|
|
13589
|
-
*
|
|
13590
|
-
* @type {number}
|
|
13591
|
-
* @memberof WeatherForecast
|
|
13592
|
-
*/
|
|
13593
|
-
'temperatureC'?: number;
|
|
13594
|
-
/**
|
|
13595
|
-
*
|
|
13596
|
-
* @type {number}
|
|
13597
|
-
* @memberof WeatherForecast
|
|
13598
|
-
*/
|
|
13599
|
-
'temperatureF'?: number;
|
|
13600
|
-
/**
|
|
13601
|
-
*
|
|
13602
|
-
* @type {string}
|
|
13603
|
-
* @memberof WeatherForecast
|
|
13604
|
-
*/
|
|
13605
|
-
'summary'?: string | null;
|
|
13606
|
-
}
|
|
13607
13576
|
/**
|
|
13608
13577
|
*
|
|
13609
13578
|
* @export
|
|
@@ -28577,55 +28546,4 @@ export declare class TranslationApi extends BaseAPI {
|
|
|
28577
28546
|
*/
|
|
28578
28547
|
apiV1TranslationTranslatePost(translateCommand?: TranslateCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
28579
28548
|
}
|
|
28580
|
-
/**
|
|
28581
|
-
* WeatherForecastApi - axios parameter creator
|
|
28582
|
-
* @export
|
|
28583
|
-
*/
|
|
28584
|
-
export declare const WeatherForecastApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
28585
|
-
/**
|
|
28586
|
-
*
|
|
28587
|
-
* @param {*} [options] Override http request option.
|
|
28588
|
-
* @throws {RequiredError}
|
|
28589
|
-
*/
|
|
28590
|
-
apiV1WeatherforecastGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28591
|
-
};
|
|
28592
|
-
/**
|
|
28593
|
-
* WeatherForecastApi - functional programming interface
|
|
28594
|
-
* @export
|
|
28595
|
-
*/
|
|
28596
|
-
export declare const WeatherForecastApiFp: (configuration?: Configuration | undefined) => {
|
|
28597
|
-
/**
|
|
28598
|
-
*
|
|
28599
|
-
* @param {*} [options] Override http request option.
|
|
28600
|
-
* @throws {RequiredError}
|
|
28601
|
-
*/
|
|
28602
|
-
apiV1WeatherforecastGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<WeatherForecast>>>;
|
|
28603
|
-
};
|
|
28604
|
-
/**
|
|
28605
|
-
* WeatherForecastApi - factory interface
|
|
28606
|
-
* @export
|
|
28607
|
-
*/
|
|
28608
|
-
export declare const WeatherForecastApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
28609
|
-
/**
|
|
28610
|
-
*
|
|
28611
|
-
* @param {*} [options] Override http request option.
|
|
28612
|
-
* @throws {RequiredError}
|
|
28613
|
-
*/
|
|
28614
|
-
apiV1WeatherforecastGet(options?: any): AxiosPromise<Array<WeatherForecast>>;
|
|
28615
|
-
};
|
|
28616
|
-
/**
|
|
28617
|
-
* WeatherForecastApi - object-oriented interface
|
|
28618
|
-
* @export
|
|
28619
|
-
* @class WeatherForecastApi
|
|
28620
|
-
* @extends {BaseAPI}
|
|
28621
|
-
*/
|
|
28622
|
-
export declare class WeatherForecastApi extends BaseAPI {
|
|
28623
|
-
/**
|
|
28624
|
-
*
|
|
28625
|
-
* @param {*} [options] Override http request option.
|
|
28626
|
-
* @throws {RequiredError}
|
|
28627
|
-
* @memberof WeatherForecastApi
|
|
28628
|
-
*/
|
|
28629
|
-
apiV1WeatherforecastGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WeatherForecast[]>>;
|
|
28630
|
-
}
|
|
28631
28549
|
//# sourceMappingURL=api.d.ts.map
|