ch-api-client-typescript2 3.2.1 → 3.2.2
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 +66 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +170 -0
- package/package.json +1 -1
- package/src/api.ts +142 -0
package/lib/api.d.ts
CHANGED
|
@@ -11162,6 +11162,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11162
11162
|
* @throws {RequiredError}
|
|
11163
11163
|
*/
|
|
11164
11164
|
apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11165
|
+
/**
|
|
11166
|
+
*
|
|
11167
|
+
* @summary Mark as Paid booking.
|
|
11168
|
+
* @param {string} bookingId
|
|
11169
|
+
* @param {*} [options] Override http request option.
|
|
11170
|
+
* @throws {RequiredError}
|
|
11171
|
+
*/
|
|
11172
|
+
apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11165
11173
|
/**
|
|
11166
11174
|
*
|
|
11167
11175
|
* @summary Pay booking.
|
|
@@ -11218,6 +11226,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
11218
11226
|
* @throws {RequiredError}
|
|
11219
11227
|
*/
|
|
11220
11228
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
11229
|
+
/**
|
|
11230
|
+
*
|
|
11231
|
+
* @summary Mark as Paid booking.
|
|
11232
|
+
* @param {string} bookingId
|
|
11233
|
+
* @param {*} [options] Override http request option.
|
|
11234
|
+
* @throws {RequiredError}
|
|
11235
|
+
*/
|
|
11236
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
11221
11237
|
/**
|
|
11222
11238
|
*
|
|
11223
11239
|
* @summary Pay booking.
|
|
@@ -11274,6 +11290,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11274
11290
|
* @throws {RequiredError}
|
|
11275
11291
|
*/
|
|
11276
11292
|
apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
|
|
11293
|
+
/**
|
|
11294
|
+
*
|
|
11295
|
+
* @summary Mark as Paid booking.
|
|
11296
|
+
* @param {string} bookingId
|
|
11297
|
+
* @param {*} [options] Override http request option.
|
|
11298
|
+
* @throws {RequiredError}
|
|
11299
|
+
*/
|
|
11300
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
|
|
11277
11301
|
/**
|
|
11278
11302
|
*
|
|
11279
11303
|
* @summary Pay booking.
|
|
@@ -11333,6 +11357,15 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11333
11357
|
* @memberof BookingsApi
|
|
11334
11358
|
*/
|
|
11335
11359
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11360
|
+
/**
|
|
11361
|
+
*
|
|
11362
|
+
* @summary Mark as Paid booking.
|
|
11363
|
+
* @param {string} bookingId
|
|
11364
|
+
* @param {*} [options] Override http request option.
|
|
11365
|
+
* @throws {RequiredError}
|
|
11366
|
+
* @memberof BookingsApi
|
|
11367
|
+
*/
|
|
11368
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11336
11369
|
/**
|
|
11337
11370
|
*
|
|
11338
11371
|
* @summary Pay booking.
|
|
@@ -11742,6 +11775,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11742
11775
|
* @throws {RequiredError}
|
|
11743
11776
|
*/
|
|
11744
11777
|
apiV2ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11778
|
+
/**
|
|
11779
|
+
*
|
|
11780
|
+
* @summary Mark as Paid booking.
|
|
11781
|
+
* @param {string} consultationId
|
|
11782
|
+
* @param {*} [options] Override http request option.
|
|
11783
|
+
* @throws {RequiredError}
|
|
11784
|
+
*/
|
|
11785
|
+
apiV2ConsultationsConsultationIdPaidPost: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11745
11786
|
/**
|
|
11746
11787
|
*
|
|
11747
11788
|
* @summary Pay consultation.
|
|
@@ -11798,6 +11839,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11798
11839
|
* @throws {RequiredError}
|
|
11799
11840
|
*/
|
|
11800
11841
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
11842
|
+
/**
|
|
11843
|
+
*
|
|
11844
|
+
* @summary Mark as Paid booking.
|
|
11845
|
+
* @param {string} consultationId
|
|
11846
|
+
* @param {*} [options] Override http request option.
|
|
11847
|
+
* @throws {RequiredError}
|
|
11848
|
+
*/
|
|
11849
|
+
apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
11801
11850
|
/**
|
|
11802
11851
|
*
|
|
11803
11852
|
* @summary Pay consultation.
|
|
@@ -11854,6 +11903,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11854
11903
|
* @throws {RequiredError}
|
|
11855
11904
|
*/
|
|
11856
11905
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
|
|
11906
|
+
/**
|
|
11907
|
+
*
|
|
11908
|
+
* @summary Mark as Paid booking.
|
|
11909
|
+
* @param {string} consultationId
|
|
11910
|
+
* @param {*} [options] Override http request option.
|
|
11911
|
+
* @throws {RequiredError}
|
|
11912
|
+
*/
|
|
11913
|
+
apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: any): AxiosPromise<string>;
|
|
11857
11914
|
/**
|
|
11858
11915
|
*
|
|
11859
11916
|
* @summary Pay consultation.
|
|
@@ -11913,6 +11970,15 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11913
11970
|
* @memberof ConsultationsApi
|
|
11914
11971
|
*/
|
|
11915
11972
|
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
11973
|
+
/**
|
|
11974
|
+
*
|
|
11975
|
+
* @summary Mark as Paid booking.
|
|
11976
|
+
* @param {string} consultationId
|
|
11977
|
+
* @param {*} [options] Override http request option.
|
|
11978
|
+
* @throws {RequiredError}
|
|
11979
|
+
* @memberof ConsultationsApi
|
|
11980
|
+
*/
|
|
11981
|
+
apiV2ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11916
11982
|
/**
|
|
11917
11983
|
*
|
|
11918
11984
|
* @summary Pay consultation.
|