ch-admin-api-client-typescript 2.9.7 → 2.9.8
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
|
@@ -15374,6 +15374,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
15374
15374
|
* @throws {RequiredError}
|
|
15375
15375
|
*/
|
|
15376
15376
|
apiV1BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15377
|
+
/**
|
|
15378
|
+
*
|
|
15379
|
+
* @summary Mark as Paid booking.
|
|
15380
|
+
* @param {string} bookingId
|
|
15381
|
+
* @param {*} [options] Override http request option.
|
|
15382
|
+
* @throws {RequiredError}
|
|
15383
|
+
*/
|
|
15384
|
+
apiV1BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15377
15385
|
/**
|
|
15378
15386
|
*
|
|
15379
15387
|
* @summary Reject booking.
|
|
@@ -15439,6 +15447,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
15439
15447
|
* @throws {RequiredError}
|
|
15440
15448
|
*/
|
|
15441
15449
|
apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
15450
|
+
/**
|
|
15451
|
+
*
|
|
15452
|
+
* @summary Mark as Paid booking.
|
|
15453
|
+
* @param {string} bookingId
|
|
15454
|
+
* @param {*} [options] Override http request option.
|
|
15455
|
+
* @throws {RequiredError}
|
|
15456
|
+
*/
|
|
15457
|
+
apiV1BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
15442
15458
|
/**
|
|
15443
15459
|
*
|
|
15444
15460
|
* @summary Reject booking.
|
|
@@ -15504,6 +15520,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
15504
15520
|
* @throws {RequiredError}
|
|
15505
15521
|
*/
|
|
15506
15522
|
apiV1BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
|
|
15523
|
+
/**
|
|
15524
|
+
*
|
|
15525
|
+
* @summary Mark as Paid booking.
|
|
15526
|
+
* @param {string} bookingId
|
|
15527
|
+
* @param {*} [options] Override http request option.
|
|
15528
|
+
* @throws {RequiredError}
|
|
15529
|
+
*/
|
|
15530
|
+
apiV1BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
|
|
15507
15531
|
/**
|
|
15508
15532
|
*
|
|
15509
15533
|
* @summary Reject booking.
|
|
@@ -15575,6 +15599,15 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
15575
15599
|
* @memberof BookingsApi
|
|
15576
15600
|
*/
|
|
15577
15601
|
apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
|
|
15602
|
+
/**
|
|
15603
|
+
*
|
|
15604
|
+
* @summary Mark as Paid booking.
|
|
15605
|
+
* @param {string} bookingId
|
|
15606
|
+
* @param {*} [options] Override http request option.
|
|
15607
|
+
* @throws {RequiredError}
|
|
15608
|
+
* @memberof BookingsApi
|
|
15609
|
+
*/
|
|
15610
|
+
apiV1BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
15578
15611
|
/**
|
|
15579
15612
|
*
|
|
15580
15613
|
* @summary Reject booking.
|
|
@@ -16453,6 +16486,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
16453
16486
|
* @throws {RequiredError}
|
|
16454
16487
|
*/
|
|
16455
16488
|
apiV1ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16489
|
+
/**
|
|
16490
|
+
*
|
|
16491
|
+
* @summary Mark as Paid booking.
|
|
16492
|
+
* @param {string} consultationId
|
|
16493
|
+
* @param {*} [options] Override http request option.
|
|
16494
|
+
* @throws {RequiredError}
|
|
16495
|
+
*/
|
|
16496
|
+
apiV1ConsultationsConsultationIdPaidPost: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16456
16497
|
/**
|
|
16457
16498
|
*
|
|
16458
16499
|
* @summary Reject consultation.
|
|
@@ -16518,6 +16559,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
16518
16559
|
* @throws {RequiredError}
|
|
16519
16560
|
*/
|
|
16520
16561
|
apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
16562
|
+
/**
|
|
16563
|
+
*
|
|
16564
|
+
* @summary Mark as Paid booking.
|
|
16565
|
+
* @param {string} consultationId
|
|
16566
|
+
* @param {*} [options] Override http request option.
|
|
16567
|
+
* @throws {RequiredError}
|
|
16568
|
+
*/
|
|
16569
|
+
apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
16521
16570
|
/**
|
|
16522
16571
|
*
|
|
16523
16572
|
* @summary Reject consultation.
|
|
@@ -16583,6 +16632,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
16583
16632
|
* @throws {RequiredError}
|
|
16584
16633
|
*/
|
|
16585
16634
|
apiV1ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
|
|
16635
|
+
/**
|
|
16636
|
+
*
|
|
16637
|
+
* @summary Mark as Paid booking.
|
|
16638
|
+
* @param {string} consultationId
|
|
16639
|
+
* @param {*} [options] Override http request option.
|
|
16640
|
+
* @throws {RequiredError}
|
|
16641
|
+
*/
|
|
16642
|
+
apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: any): AxiosPromise<string>;
|
|
16586
16643
|
/**
|
|
16587
16644
|
*
|
|
16588
16645
|
* @summary Reject consultation.
|
|
@@ -16654,6 +16711,15 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
16654
16711
|
* @memberof ConsultationsApi
|
|
16655
16712
|
*/
|
|
16656
16713
|
apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
|
|
16714
|
+
/**
|
|
16715
|
+
*
|
|
16716
|
+
* @summary Mark as Paid booking.
|
|
16717
|
+
* @param {string} consultationId
|
|
16718
|
+
* @param {*} [options] Override http request option.
|
|
16719
|
+
* @throws {RequiredError}
|
|
16720
|
+
* @memberof ConsultationsApi
|
|
16721
|
+
*/
|
|
16722
|
+
apiV1ConsultationsConsultationIdPaidPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
16657
16723
|
/**
|
|
16658
16724
|
*
|
|
16659
16725
|
* @summary Reject consultation.
|