ch-api-client-typescript2 3.2.0 → 3.2.4
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 +78 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +170 -0
- package/package.json +1 -1
- package/src/api.ts +154 -0
package/lib/api.d.ts
CHANGED
|
@@ -9279,6 +9279,12 @@ export interface SpecialtyTypeItemModel {
|
|
|
9279
9279
|
* @memberof SpecialtyTypeItemModel
|
|
9280
9280
|
*/
|
|
9281
9281
|
'confirmed'?: boolean;
|
|
9282
|
+
/**
|
|
9283
|
+
*
|
|
9284
|
+
* @type {Array<MediaModel>}
|
|
9285
|
+
* @memberof SpecialtyTypeItemModel
|
|
9286
|
+
*/
|
|
9287
|
+
'medias'?: Array<MediaModel> | null;
|
|
9282
9288
|
}
|
|
9283
9289
|
/**
|
|
9284
9290
|
*
|
|
@@ -9352,6 +9358,12 @@ export interface SpecialtyTypeModel {
|
|
|
9352
9358
|
* @memberof SpecialtyTypeModel
|
|
9353
9359
|
*/
|
|
9354
9360
|
'confirmed'?: boolean;
|
|
9361
|
+
/**
|
|
9362
|
+
*
|
|
9363
|
+
* @type {Array<MediaModel>}
|
|
9364
|
+
* @memberof SpecialtyTypeModel
|
|
9365
|
+
*/
|
|
9366
|
+
'medias'?: Array<MediaModel> | null;
|
|
9355
9367
|
/**
|
|
9356
9368
|
*
|
|
9357
9369
|
* @type {string}
|
|
@@ -11162,6 +11174,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11162
11174
|
* @throws {RequiredError}
|
|
11163
11175
|
*/
|
|
11164
11176
|
apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11177
|
+
/**
|
|
11178
|
+
*
|
|
11179
|
+
* @summary Mark as Paid booking.
|
|
11180
|
+
* @param {string} bookingId
|
|
11181
|
+
* @param {*} [options] Override http request option.
|
|
11182
|
+
* @throws {RequiredError}
|
|
11183
|
+
*/
|
|
11184
|
+
apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11165
11185
|
/**
|
|
11166
11186
|
*
|
|
11167
11187
|
* @summary Pay booking.
|
|
@@ -11218,6 +11238,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
11218
11238
|
* @throws {RequiredError}
|
|
11219
11239
|
*/
|
|
11220
11240
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
11241
|
+
/**
|
|
11242
|
+
*
|
|
11243
|
+
* @summary Mark as Paid booking.
|
|
11244
|
+
* @param {string} bookingId
|
|
11245
|
+
* @param {*} [options] Override http request option.
|
|
11246
|
+
* @throws {RequiredError}
|
|
11247
|
+
*/
|
|
11248
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
11221
11249
|
/**
|
|
11222
11250
|
*
|
|
11223
11251
|
* @summary Pay booking.
|
|
@@ -11274,6 +11302,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11274
11302
|
* @throws {RequiredError}
|
|
11275
11303
|
*/
|
|
11276
11304
|
apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
|
|
11305
|
+
/**
|
|
11306
|
+
*
|
|
11307
|
+
* @summary Mark as Paid booking.
|
|
11308
|
+
* @param {string} bookingId
|
|
11309
|
+
* @param {*} [options] Override http request option.
|
|
11310
|
+
* @throws {RequiredError}
|
|
11311
|
+
*/
|
|
11312
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
|
|
11277
11313
|
/**
|
|
11278
11314
|
*
|
|
11279
11315
|
* @summary Pay booking.
|
|
@@ -11333,6 +11369,15 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11333
11369
|
* @memberof BookingsApi
|
|
11334
11370
|
*/
|
|
11335
11371
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11372
|
+
/**
|
|
11373
|
+
*
|
|
11374
|
+
* @summary Mark as Paid booking.
|
|
11375
|
+
* @param {string} bookingId
|
|
11376
|
+
* @param {*} [options] Override http request option.
|
|
11377
|
+
* @throws {RequiredError}
|
|
11378
|
+
* @memberof BookingsApi
|
|
11379
|
+
*/
|
|
11380
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11336
11381
|
/**
|
|
11337
11382
|
*
|
|
11338
11383
|
* @summary Pay booking.
|
|
@@ -11742,6 +11787,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11742
11787
|
* @throws {RequiredError}
|
|
11743
11788
|
*/
|
|
11744
11789
|
apiV2ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11790
|
+
/**
|
|
11791
|
+
*
|
|
11792
|
+
* @summary Mark as Paid booking.
|
|
11793
|
+
* @param {string} consultationId
|
|
11794
|
+
* @param {*} [options] Override http request option.
|
|
11795
|
+
* @throws {RequiredError}
|
|
11796
|
+
*/
|
|
11797
|
+
apiV2ConsultationsConsultationIdPaidPost: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11745
11798
|
/**
|
|
11746
11799
|
*
|
|
11747
11800
|
* @summary Pay consultation.
|
|
@@ -11798,6 +11851,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11798
11851
|
* @throws {RequiredError}
|
|
11799
11852
|
*/
|
|
11800
11853
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
11854
|
+
/**
|
|
11855
|
+
*
|
|
11856
|
+
* @summary Mark as Paid booking.
|
|
11857
|
+
* @param {string} consultationId
|
|
11858
|
+
* @param {*} [options] Override http request option.
|
|
11859
|
+
* @throws {RequiredError}
|
|
11860
|
+
*/
|
|
11861
|
+
apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
11801
11862
|
/**
|
|
11802
11863
|
*
|
|
11803
11864
|
* @summary Pay consultation.
|
|
@@ -11854,6 +11915,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11854
11915
|
* @throws {RequiredError}
|
|
11855
11916
|
*/
|
|
11856
11917
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
|
|
11918
|
+
/**
|
|
11919
|
+
*
|
|
11920
|
+
* @summary Mark as Paid booking.
|
|
11921
|
+
* @param {string} consultationId
|
|
11922
|
+
* @param {*} [options] Override http request option.
|
|
11923
|
+
* @throws {RequiredError}
|
|
11924
|
+
*/
|
|
11925
|
+
apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: any): AxiosPromise<string>;
|
|
11857
11926
|
/**
|
|
11858
11927
|
*
|
|
11859
11928
|
* @summary Pay consultation.
|
|
@@ -11913,6 +11982,15 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11913
11982
|
* @memberof ConsultationsApi
|
|
11914
11983
|
*/
|
|
11915
11984
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
11985
|
+
/**
|
|
11986
|
+
*
|
|
11987
|
+
* @summary Mark as Paid booking.
|
|
11988
|
+
* @param {string} consultationId
|
|
11989
|
+
* @param {*} [options] Override http request option.
|
|
11990
|
+
* @throws {RequiredError}
|
|
11991
|
+
* @memberof ConsultationsApi
|
|
11992
|
+
*/
|
|
11993
|
+
apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11916
11994
|
/**
|
|
11917
11995
|
*
|
|
11918
11996
|
* @summary Pay consultation.
|