ch-api-client-typescript2 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 CHANGED
@@ -355,44 +355,6 @@ export interface AdminMessageModel {
355
355
  */
356
356
  'updated_at'?: number;
357
357
  }
358
- /**
359
- *
360
- * @export
361
- * @interface ApproveBookingCommand
362
- */
363
- export interface ApproveBookingCommand {
364
- /**
365
- *
366
- * @type {Date}
367
- * @memberof ApproveBookingCommand
368
- */
369
- 'confirmedDateStart'?: Date | null;
370
- /**
371
- *
372
- * @type {Date}
373
- * @memberof ApproveBookingCommand
374
- */
375
- 'confirmedDateEnd'?: Date | null;
376
- }
377
- /**
378
- *
379
- * @export
380
- * @interface ApproveConsultationCommand
381
- */
382
- export interface ApproveConsultationCommand {
383
- /**
384
- *
385
- * @type {Date}
386
- * @memberof ApproveConsultationCommand
387
- */
388
- 'confirmedDateStart'?: Date | null;
389
- /**
390
- *
391
- * @type {Date}
392
- * @memberof ApproveConsultationCommand
393
- */
394
- 'confirmedDateEnd'?: Date | null;
395
- }
396
358
  /**
397
359
  *
398
360
  * @export
@@ -8208,44 +8170,6 @@ export declare enum RefundPolicy {
8208
8170
  Refundable = "Refundable",
8209
8171
  PartialRefundable = "PartialRefundable"
8210
8172
  }
8211
- /**
8212
- *
8213
- * @export
8214
- * @interface RejectBookingCommand
8215
- */
8216
- export interface RejectBookingCommand {
8217
- /**
8218
- *
8219
- * @type {RejectReason}
8220
- * @memberof RejectBookingCommand
8221
- */
8222
- 'rejectReason'?: RejectReason;
8223
- /**
8224
- *
8225
- * @type {string}
8226
- * @memberof RejectBookingCommand
8227
- */
8228
- 'rejectComment'?: string | null;
8229
- }
8230
- /**
8231
- *
8232
- * @export
8233
- * @interface RejectConsultationCommand
8234
- */
8235
- export interface RejectConsultationCommand {
8236
- /**
8237
- *
8238
- * @type {RejectReason}
8239
- * @memberof RejectConsultationCommand
8240
- */
8241
- 'rejectReason'?: RejectReason;
8242
- /**
8243
- *
8244
- * @type {string}
8245
- * @memberof RejectConsultationCommand
8246
- */
8247
- 'rejectComment'?: string | null;
8248
- }
8249
8173
  /**
8250
8174
  *
8251
8175
  * @export
@@ -11038,31 +10962,6 @@ export declare class ArticlesApi extends BaseAPI {
11038
10962
  * @export
11039
10963
  */
11040
10964
  export declare const BookingsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
11041
- /**
11042
- *
11043
- * @summary Approve booking.
11044
- * @param {string} bookingId
11045
- * @param {ApproveBookingCommand} [approveBookingCommand]
11046
- * @param {*} [options] Override http request option.
11047
- * @throws {RequiredError}
11048
- */
11049
- apiV2BookingsBookingIdApprovePut: (bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11050
- /**
11051
- *
11052
- * @summary Cancel booking.
11053
- * @param {string} bookingId
11054
- * @param {*} [options] Override http request option.
11055
- * @throws {RequiredError}
11056
- */
11057
- apiV2BookingsBookingIdCancelPut: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11058
- /**
11059
- *
11060
- * @summary Delete booking.
11061
- * @param {string} bookingId
11062
- * @param {*} [options] Override http request option.
11063
- * @throws {RequiredError}
11064
- */
11065
- apiV2BookingsBookingIdDelete: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11066
10965
  /**
11067
10966
  *
11068
10967
  * @summary Get booking.
@@ -11071,14 +10970,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
11071
10970
  * @throws {RequiredError}
11072
10971
  */
11073
10972
  apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11074
- /**
11075
- *
11076
- * @summary Mark as Paid booking.
11077
- * @param {string} bookingId
11078
- * @param {*} [options] Override http request option.
11079
- * @throws {RequiredError}
11080
- */
11081
- apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11082
10973
  /**
11083
10974
  *
11084
10975
  * @summary Pay booking.
@@ -11096,15 +10987,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
11096
10987
  * @throws {RequiredError}
11097
10988
  */
11098
10989
  apiV2BookingsBookingIdPut: (bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11099
- /**
11100
- *
11101
- * @summary Reject booking.
11102
- * @param {string} bookingId
11103
- * @param {RejectBookingCommand} [rejectBookingCommand]
11104
- * @param {*} [options] Override http request option.
11105
- * @throws {RequiredError}
11106
- */
11107
- apiV2BookingsBookingIdRejectPut: (bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11108
10990
  /**
11109
10991
  *
11110
10992
  * @summary Get all bookings.
@@ -11136,31 +11018,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
11136
11018
  * @export
11137
11019
  */
11138
11020
  export declare const BookingsApiFp: (configuration?: Configuration | undefined) => {
11139
- /**
11140
- *
11141
- * @summary Approve booking.
11142
- * @param {string} bookingId
11143
- * @param {ApproveBookingCommand} [approveBookingCommand]
11144
- * @param {*} [options] Override http request option.
11145
- * @throws {RequiredError}
11146
- */
11147
- apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
11148
- /**
11149
- *
11150
- * @summary Cancel booking.
11151
- * @param {string} bookingId
11152
- * @param {*} [options] Override http request option.
11153
- * @throws {RequiredError}
11154
- */
11155
- apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
11156
- /**
11157
- *
11158
- * @summary Delete booking.
11159
- * @param {string} bookingId
11160
- * @param {*} [options] Override http request option.
11161
- * @throws {RequiredError}
11162
- */
11163
- apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
11164
11021
  /**
11165
11022
  *
11166
11023
  * @summary Get booking.
@@ -11169,14 +11026,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
11169
11026
  * @throws {RequiredError}
11170
11027
  */
11171
11028
  apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
11172
- /**
11173
- *
11174
- * @summary Mark as Paid booking.
11175
- * @param {string} bookingId
11176
- * @param {*} [options] Override http request option.
11177
- * @throws {RequiredError}
11178
- */
11179
- apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
11180
11029
  /**
11181
11030
  *
11182
11031
  * @summary Pay booking.
@@ -11194,15 +11043,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
11194
11043
  * @throws {RequiredError}
11195
11044
  */
11196
11045
  apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
11197
- /**
11198
- *
11199
- * @summary Reject booking.
11200
- * @param {string} bookingId
11201
- * @param {RejectBookingCommand} [rejectBookingCommand]
11202
- * @param {*} [options] Override http request option.
11203
- * @throws {RequiredError}
11204
- */
11205
- apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
11206
11046
  /**
11207
11047
  *
11208
11048
  * @summary Get all bookings.
@@ -11234,31 +11074,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
11234
11074
  * @export
11235
11075
  */
11236
11076
  export declare const BookingsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
11237
- /**
11238
- *
11239
- * @summary Approve booking.
11240
- * @param {string} bookingId
11241
- * @param {ApproveBookingCommand} [approveBookingCommand]
11242
- * @param {*} [options] Override http request option.
11243
- * @throws {RequiredError}
11244
- */
11245
- apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: any): AxiosPromise<boolean>;
11246
- /**
11247
- *
11248
- * @summary Cancel booking.
11249
- * @param {string} bookingId
11250
- * @param {*} [options] Override http request option.
11251
- * @throws {RequiredError}
11252
- */
11253
- apiV2BookingsBookingIdCancelPut(bookingId: string, options?: any): AxiosPromise<boolean>;
11254
- /**
11255
- *
11256
- * @summary Delete booking.
11257
- * @param {string} bookingId
11258
- * @param {*} [options] Override http request option.
11259
- * @throws {RequiredError}
11260
- */
11261
- apiV2BookingsBookingIdDelete(bookingId: string, options?: any): AxiosPromise<boolean>;
11262
11077
  /**
11263
11078
  *
11264
11079
  * @summary Get booking.
@@ -11267,14 +11082,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
11267
11082
  * @throws {RequiredError}
11268
11083
  */
11269
11084
  apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
11270
- /**
11271
- *
11272
- * @summary Mark as Paid booking.
11273
- * @param {string} bookingId
11274
- * @param {*} [options] Override http request option.
11275
- * @throws {RequiredError}
11276
- */
11277
- apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
11278
11085
  /**
11279
11086
  *
11280
11087
  * @summary Pay booking.
@@ -11292,15 +11099,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
11292
11099
  * @throws {RequiredError}
11293
11100
  */
11294
11101
  apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: any): AxiosPromise<BookingModel>;
11295
- /**
11296
- *
11297
- * @summary Reject booking.
11298
- * @param {string} bookingId
11299
- * @param {RejectBookingCommand} [rejectBookingCommand]
11300
- * @param {*} [options] Override http request option.
11301
- * @throws {RequiredError}
11302
- */
11303
- apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: any): AxiosPromise<boolean>;
11304
11102
  /**
11305
11103
  *
11306
11104
  * @summary Get all bookings.
@@ -11334,34 +11132,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
11334
11132
  * @extends {BaseAPI}
11335
11133
  */
11336
11134
  export declare class BookingsApi extends BaseAPI {
11337
- /**
11338
- *
11339
- * @summary Approve booking.
11340
- * @param {string} bookingId
11341
- * @param {ApproveBookingCommand} [approveBookingCommand]
11342
- * @param {*} [options] Override http request option.
11343
- * @throws {RequiredError}
11344
- * @memberof BookingsApi
11345
- */
11346
- apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
11347
- /**
11348
- *
11349
- * @summary Cancel booking.
11350
- * @param {string} bookingId
11351
- * @param {*} [options] Override http request option.
11352
- * @throws {RequiredError}
11353
- * @memberof BookingsApi
11354
- */
11355
- apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
11356
- /**
11357
- *
11358
- * @summary Delete booking.
11359
- * @param {string} bookingId
11360
- * @param {*} [options] Override http request option.
11361
- * @throws {RequiredError}
11362
- * @memberof BookingsApi
11363
- */
11364
- apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
11365
11135
  /**
11366
11136
  *
11367
11137
  * @summary Get booking.
@@ -11371,15 +11141,6 @@ export declare class BookingsApi extends BaseAPI {
11371
11141
  * @memberof BookingsApi
11372
11142
  */
11373
11143
  apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
11374
- /**
11375
- *
11376
- * @summary Mark as Paid booking.
11377
- * @param {string} bookingId
11378
- * @param {*} [options] Override http request option.
11379
- * @throws {RequiredError}
11380
- * @memberof BookingsApi
11381
- */
11382
- apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
11383
11144
  /**
11384
11145
  *
11385
11146
  * @summary Pay booking.
@@ -11399,16 +11160,6 @@ export declare class BookingsApi extends BaseAPI {
11399
11160
  * @memberof BookingsApi
11400
11161
  */
11401
11162
  apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
11402
- /**
11403
- *
11404
- * @summary Reject booking.
11405
- * @param {string} bookingId
11406
- * @param {RejectBookingCommand} [rejectBookingCommand]
11407
- * @param {*} [options] Override http request option.
11408
- * @throws {RequiredError}
11409
- * @memberof BookingsApi
11410
- */
11411
- apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
11412
11163
  /**
11413
11164
  *
11414
11165
  * @summary Get all bookings.
@@ -11791,31 +11542,6 @@ export declare class CommunicationsApi extends BaseAPI {
11791
11542
  * @export
11792
11543
  */
11793
11544
  export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
11794
- /**
11795
- *
11796
- * @summary Approve consultation.
11797
- * @param {string} consultationId
11798
- * @param {ApproveConsultationCommand} [approveConsultationCommand]
11799
- * @param {*} [options] Override http request option.
11800
- * @throws {RequiredError}
11801
- */
11802
- apiV2ConsultationsConsultationIdApprovePut: (consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11803
- /**
11804
- *
11805
- * @summary Cancel consultation.
11806
- * @param {string} consultationId
11807
- * @param {*} [options] Override http request option.
11808
- * @throws {RequiredError}
11809
- */
11810
- apiV2ConsultationsConsultationIdCancelPut: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11811
- /**
11812
- *
11813
- * @summary Delete consultation.
11814
- * @param {string} consultationId
11815
- * @param {*} [options] Override http request option.
11816
- * @throws {RequiredError}
11817
- */
11818
- apiV2ConsultationsConsultationIdDelete: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11819
11545
  /**
11820
11546
  *
11821
11547
  * @summary Get consultation.
@@ -11841,15 +11567,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
11841
11567
  * @throws {RequiredError}
11842
11568
  */
11843
11569
  apiV2ConsultationsConsultationIdPut: (consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11844
- /**
11845
- *
11846
- * @summary Reject consultation.
11847
- * @param {string} consultationId
11848
- * @param {RejectConsultationCommand} [rejectConsultationCommand]
11849
- * @param {*} [options] Override http request option.
11850
- * @throws {RequiredError}
11851
- */
11852
- apiV2ConsultationsConsultationIdRejectPut: (consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11853
11570
  /**
11854
11571
  *
11855
11572
  * @summary Get all consultations.
@@ -11881,31 +11598,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
11881
11598
  * @export
11882
11599
  */
11883
11600
  export declare const ConsultationsApiFp: (configuration?: Configuration | undefined) => {
11884
- /**
11885
- *
11886
- * @summary Approve consultation.
11887
- * @param {string} consultationId
11888
- * @param {ApproveConsultationCommand} [approveConsultationCommand]
11889
- * @param {*} [options] Override http request option.
11890
- * @throws {RequiredError}
11891
- */
11892
- apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
11893
- /**
11894
- *
11895
- * @summary Cancel consultation.
11896
- * @param {string} consultationId
11897
- * @param {*} [options] Override http request option.
11898
- * @throws {RequiredError}
11899
- */
11900
- apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
11901
- /**
11902
- *
11903
- * @summary Delete consultation.
11904
- * @param {string} consultationId
11905
- * @param {*} [options] Override http request option.
11906
- * @throws {RequiredError}
11907
- */
11908
- apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
11909
11601
  /**
11910
11602
  *
11911
11603
  * @summary Get consultation.
@@ -11931,15 +11623,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
11931
11623
  * @throws {RequiredError}
11932
11624
  */
11933
11625
  apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
11934
- /**
11935
- *
11936
- * @summary Reject consultation.
11937
- * @param {string} consultationId
11938
- * @param {RejectConsultationCommand} [rejectConsultationCommand]
11939
- * @param {*} [options] Override http request option.
11940
- * @throws {RequiredError}
11941
- */
11942
- apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
11943
11626
  /**
11944
11627
  *
11945
11628
  * @summary Get all consultations.
@@ -11971,31 +11654,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
11971
11654
  * @export
11972
11655
  */
11973
11656
  export declare const ConsultationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
11974
- /**
11975
- *
11976
- * @summary Approve consultation.
11977
- * @param {string} consultationId
11978
- * @param {ApproveConsultationCommand} [approveConsultationCommand]
11979
- * @param {*} [options] Override http request option.
11980
- * @throws {RequiredError}
11981
- */
11982
- apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
11983
- /**
11984
- *
11985
- * @summary Cancel consultation.
11986
- * @param {string} consultationId
11987
- * @param {*} [options] Override http request option.
11988
- * @throws {RequiredError}
11989
- */
11990
- apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: any): AxiosPromise<boolean>;
11991
- /**
11992
- *
11993
- * @summary Delete consultation.
11994
- * @param {string} consultationId
11995
- * @param {*} [options] Override http request option.
11996
- * @throws {RequiredError}
11997
- */
11998
- apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: any): AxiosPromise<boolean>;
11999
11657
  /**
12000
11658
  *
12001
11659
  * @summary Get consultation.
@@ -12021,15 +11679,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
12021
11679
  * @throws {RequiredError}
12022
11680
  */
12023
11681
  apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: any): AxiosPromise<ConsultationModel>;
12024
- /**
12025
- *
12026
- * @summary Reject consultation.
12027
- * @param {string} consultationId
12028
- * @param {RejectConsultationCommand} [rejectConsultationCommand]
12029
- * @param {*} [options] Override http request option.
12030
- * @throws {RequiredError}
12031
- */
12032
- apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
12033
11682
  /**
12034
11683
  *
12035
11684
  * @summary Get all consultations.
@@ -12063,34 +11712,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
12063
11712
  * @extends {BaseAPI}
12064
11713
  */
12065
11714
  export declare class ConsultationsApi extends BaseAPI {
12066
- /**
12067
- *
12068
- * @summary Approve consultation.
12069
- * @param {string} consultationId
12070
- * @param {ApproveConsultationCommand} [approveConsultationCommand]
12071
- * @param {*} [options] Override http request option.
12072
- * @throws {RequiredError}
12073
- * @memberof ConsultationsApi
12074
- */
12075
- apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
12076
- /**
12077
- *
12078
- * @summary Cancel consultation.
12079
- * @param {string} consultationId
12080
- * @param {*} [options] Override http request option.
12081
- * @throws {RequiredError}
12082
- * @memberof ConsultationsApi
12083
- */
12084
- apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
12085
- /**
12086
- *
12087
- * @summary Delete consultation.
12088
- * @param {string} consultationId
12089
- * @param {*} [options] Override http request option.
12090
- * @throws {RequiredError}
12091
- * @memberof ConsultationsApi
12092
- */
12093
- apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
12094
11715
  /**
12095
11716
  *
12096
11717
  * @summary Get consultation.
@@ -12119,16 +11740,6 @@ export declare class ConsultationsApi extends BaseAPI {
12119
11740
  * @memberof ConsultationsApi
12120
11741
  */
12121
11742
  apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
12122
- /**
12123
- *
12124
- * @summary Reject consultation.
12125
- * @param {string} consultationId
12126
- * @param {RejectConsultationCommand} [rejectConsultationCommand]
12127
- * @param {*} [options] Override http request option.
12128
- * @throws {RequiredError}
12129
- * @memberof ConsultationsApi
12130
- */
12131
- apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
12132
11743
  /**
12133
11744
  *
12134
11745
  * @summary Get all consultations.