ch-api-client-typescript2 3.1.5 → 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 +146 -9
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +213 -14
- package/package.json +1 -1
- package/src/api.ts +244 -15
package/lib/api.d.ts
CHANGED
|
@@ -3279,6 +3279,12 @@ export interface DealItemModel {
|
|
|
3279
3279
|
* @memberof DealItemModel
|
|
3280
3280
|
*/
|
|
3281
3281
|
'serviceDuration'?: number;
|
|
3282
|
+
/**
|
|
3283
|
+
*
|
|
3284
|
+
* @type {number}
|
|
3285
|
+
* @memberof DealItemModel
|
|
3286
|
+
*/
|
|
3287
|
+
'order'?: number;
|
|
3282
3288
|
/**
|
|
3283
3289
|
*
|
|
3284
3290
|
* @type {MarketingType}
|
|
@@ -3370,6 +3376,12 @@ export interface DealItemSimpleModel {
|
|
|
3370
3376
|
* @memberof DealItemSimpleModel
|
|
3371
3377
|
*/
|
|
3372
3378
|
'hospitalName'?: string | null;
|
|
3379
|
+
/**
|
|
3380
|
+
*
|
|
3381
|
+
* @type {number}
|
|
3382
|
+
* @memberof DealItemSimpleModel
|
|
3383
|
+
*/
|
|
3384
|
+
'order'?: number;
|
|
3373
3385
|
/**
|
|
3374
3386
|
*
|
|
3375
3387
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -3467,6 +3479,12 @@ export interface DealModel {
|
|
|
3467
3479
|
* @memberof DealModel
|
|
3468
3480
|
*/
|
|
3469
3481
|
'serviceDuration'?: number;
|
|
3482
|
+
/**
|
|
3483
|
+
*
|
|
3484
|
+
* @type {number}
|
|
3485
|
+
* @memberof DealModel
|
|
3486
|
+
*/
|
|
3487
|
+
'order'?: number;
|
|
3470
3488
|
/**
|
|
3471
3489
|
*
|
|
3472
3490
|
* @type {MarketingType}
|
|
@@ -8691,12 +8709,24 @@ export interface ServiceReviewItemModel {
|
|
|
8691
8709
|
* @memberof ServiceReviewItemModel
|
|
8692
8710
|
*/
|
|
8693
8711
|
'reviewType'?: ReviewType;
|
|
8712
|
+
/**
|
|
8713
|
+
*
|
|
8714
|
+
* @type {boolean}
|
|
8715
|
+
* @memberof ServiceReviewItemModel
|
|
8716
|
+
*/
|
|
8717
|
+
'confirmed'?: boolean;
|
|
8694
8718
|
/**
|
|
8695
8719
|
*
|
|
8696
8720
|
* @type {Array<MediaModel>}
|
|
8697
8721
|
* @memberof ServiceReviewItemModel
|
|
8698
8722
|
*/
|
|
8699
8723
|
'medias'?: Array<MediaModel> | null;
|
|
8724
|
+
/**
|
|
8725
|
+
*
|
|
8726
|
+
* @type {AuditableEntity}
|
|
8727
|
+
* @memberof ServiceReviewItemModel
|
|
8728
|
+
*/
|
|
8729
|
+
'auditableEntity'?: AuditableEntity;
|
|
8700
8730
|
}
|
|
8701
8731
|
/**
|
|
8702
8732
|
*
|
|
@@ -8782,12 +8812,24 @@ export interface ServiceReviewModel {
|
|
|
8782
8812
|
* @memberof ServiceReviewModel
|
|
8783
8813
|
*/
|
|
8784
8814
|
'reviewType'?: ReviewType;
|
|
8815
|
+
/**
|
|
8816
|
+
*
|
|
8817
|
+
* @type {boolean}
|
|
8818
|
+
* @memberof ServiceReviewModel
|
|
8819
|
+
*/
|
|
8820
|
+
'confirmed'?: boolean;
|
|
8785
8821
|
/**
|
|
8786
8822
|
*
|
|
8787
8823
|
* @type {Array<MediaModel>}
|
|
8788
8824
|
* @memberof ServiceReviewModel
|
|
8789
8825
|
*/
|
|
8790
8826
|
'medias'?: Array<MediaModel> | null;
|
|
8827
|
+
/**
|
|
8828
|
+
*
|
|
8829
|
+
* @type {AuditableEntity}
|
|
8830
|
+
* @memberof ServiceReviewModel
|
|
8831
|
+
*/
|
|
8832
|
+
'auditableEntity'?: AuditableEntity;
|
|
8791
8833
|
}
|
|
8792
8834
|
/**
|
|
8793
8835
|
*
|
|
@@ -8868,7 +8910,8 @@ export declare enum SnsType {
|
|
|
8868
8910
|
Facebook = "Facebook",
|
|
8869
8911
|
Instagram = "Instagram",
|
|
8870
8912
|
LinkedIn = "LinkedIn",
|
|
8871
|
-
Youtube = "Youtube"
|
|
8913
|
+
Youtube = "Youtube",
|
|
8914
|
+
KakaoTalk = "KakaoTalk"
|
|
8872
8915
|
}
|
|
8873
8916
|
/**
|
|
8874
8917
|
*
|
|
@@ -9875,6 +9918,18 @@ export interface UpdateServiceReviewCommand {
|
|
|
9875
9918
|
* @memberof UpdateServiceReviewCommand
|
|
9876
9919
|
*/
|
|
9877
9920
|
'rate'?: number | null;
|
|
9921
|
+
/**
|
|
9922
|
+
*
|
|
9923
|
+
* @type {string}
|
|
9924
|
+
* @memberof UpdateServiceReviewCommand
|
|
9925
|
+
*/
|
|
9926
|
+
'languageCode'?: string | null;
|
|
9927
|
+
/**
|
|
9928
|
+
*
|
|
9929
|
+
* @type {boolean}
|
|
9930
|
+
* @memberof UpdateServiceReviewCommand
|
|
9931
|
+
*/
|
|
9932
|
+
'confirmed'?: boolean;
|
|
9878
9933
|
}
|
|
9879
9934
|
/**
|
|
9880
9935
|
*
|
|
@@ -11107,6 +11162,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11107
11162
|
* @throws {RequiredError}
|
|
11108
11163
|
*/
|
|
11109
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>;
|
|
11110
11173
|
/**
|
|
11111
11174
|
*
|
|
11112
11175
|
* @summary Pay booking.
|
|
@@ -11163,6 +11226,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
11163
11226
|
* @throws {RequiredError}
|
|
11164
11227
|
*/
|
|
11165
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>>;
|
|
11166
11237
|
/**
|
|
11167
11238
|
*
|
|
11168
11239
|
* @summary Pay booking.
|
|
@@ -11219,6 +11290,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11219
11290
|
* @throws {RequiredError}
|
|
11220
11291
|
*/
|
|
11221
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>;
|
|
11222
11301
|
/**
|
|
11223
11302
|
*
|
|
11224
11303
|
* @summary Pay booking.
|
|
@@ -11278,6 +11357,15 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11278
11357
|
* @memberof BookingsApi
|
|
11279
11358
|
*/
|
|
11280
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>>;
|
|
11281
11369
|
/**
|
|
11282
11370
|
*
|
|
11283
11371
|
* @summary Pay booking.
|
|
@@ -11687,6 +11775,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11687
11775
|
* @throws {RequiredError}
|
|
11688
11776
|
*/
|
|
11689
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>;
|
|
11690
11786
|
/**
|
|
11691
11787
|
*
|
|
11692
11788
|
* @summary Pay consultation.
|
|
@@ -11743,6 +11839,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11743
11839
|
* @throws {RequiredError}
|
|
11744
11840
|
*/
|
|
11745
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>>;
|
|
11746
11850
|
/**
|
|
11747
11851
|
*
|
|
11748
11852
|
* @summary Pay consultation.
|
|
@@ -11799,6 +11903,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11799
11903
|
* @throws {RequiredError}
|
|
11800
11904
|
*/
|
|
11801
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>;
|
|
11802
11914
|
/**
|
|
11803
11915
|
*
|
|
11804
11916
|
* @summary Pay consultation.
|
|
@@ -11858,6 +11970,15 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11858
11970
|
* @memberof ConsultationsApi
|
|
11859
11971
|
*/
|
|
11860
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>>;
|
|
11861
11982
|
/**
|
|
11862
11983
|
*
|
|
11863
11984
|
* @summary Pay consultation.
|
|
@@ -17551,13 +17672,15 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
17551
17672
|
* @param {boolean} [recommended]
|
|
17552
17673
|
* @param {number} [rate]
|
|
17553
17674
|
* @param {ReviewType} [reviewType]
|
|
17675
|
+
* @param {string} [languageCode]
|
|
17676
|
+
* @param {boolean} [returnDefaultValue]
|
|
17554
17677
|
* @param {number} [page]
|
|
17555
17678
|
* @param {number} [limit]
|
|
17556
17679
|
* @param {Date} [lastRetrieved]
|
|
17557
17680
|
* @param {*} [options] Override http request option.
|
|
17558
17681
|
* @throws {RequiredError}
|
|
17559
17682
|
*/
|
|
17560
|
-
apiV2ServicereviewsGet: (hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17683
|
+
apiV2ServicereviewsGet: (hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17561
17684
|
/**
|
|
17562
17685
|
*
|
|
17563
17686
|
* @summary Create a ServiceReview.
|
|
@@ -17577,10 +17700,12 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
17577
17700
|
/**
|
|
17578
17701
|
*
|
|
17579
17702
|
* @param {string} serviceReviewId
|
|
17703
|
+
* @param {string} [languageCode]
|
|
17704
|
+
* @param {boolean} [returnDefaultValue]
|
|
17580
17705
|
* @param {*} [options] Override http request option.
|
|
17581
17706
|
* @throws {RequiredError}
|
|
17582
17707
|
*/
|
|
17583
|
-
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17708
|
+
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17584
17709
|
/**
|
|
17585
17710
|
*
|
|
17586
17711
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -17658,13 +17783,15 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
17658
17783
|
* @param {boolean} [recommended]
|
|
17659
17784
|
* @param {number} [rate]
|
|
17660
17785
|
* @param {ReviewType} [reviewType]
|
|
17786
|
+
* @param {string} [languageCode]
|
|
17787
|
+
* @param {boolean} [returnDefaultValue]
|
|
17661
17788
|
* @param {number} [page]
|
|
17662
17789
|
* @param {number} [limit]
|
|
17663
17790
|
* @param {Date} [lastRetrieved]
|
|
17664
17791
|
* @param {*} [options] Override http request option.
|
|
17665
17792
|
* @throws {RequiredError}
|
|
17666
17793
|
*/
|
|
17667
|
-
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
17794
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
17668
17795
|
/**
|
|
17669
17796
|
*
|
|
17670
17797
|
* @summary Create a ServiceReview.
|
|
@@ -17684,10 +17811,12 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
17684
17811
|
/**
|
|
17685
17812
|
*
|
|
17686
17813
|
* @param {string} serviceReviewId
|
|
17814
|
+
* @param {string} [languageCode]
|
|
17815
|
+
* @param {boolean} [returnDefaultValue]
|
|
17687
17816
|
* @param {*} [options] Override http request option.
|
|
17688
17817
|
* @throws {RequiredError}
|
|
17689
17818
|
*/
|
|
17690
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
17819
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
17691
17820
|
/**
|
|
17692
17821
|
*
|
|
17693
17822
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -17765,13 +17894,15 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
17765
17894
|
* @param {boolean} [recommended]
|
|
17766
17895
|
* @param {number} [rate]
|
|
17767
17896
|
* @param {ReviewType} [reviewType]
|
|
17897
|
+
* @param {string} [languageCode]
|
|
17898
|
+
* @param {boolean} [returnDefaultValue]
|
|
17768
17899
|
* @param {number} [page]
|
|
17769
17900
|
* @param {number} [limit]
|
|
17770
17901
|
* @param {Date} [lastRetrieved]
|
|
17771
17902
|
* @param {*} [options] Override http request option.
|
|
17772
17903
|
* @throws {RequiredError}
|
|
17773
17904
|
*/
|
|
17774
|
-
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
17905
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
17775
17906
|
/**
|
|
17776
17907
|
*
|
|
17777
17908
|
* @summary Create a ServiceReview.
|
|
@@ -17791,10 +17922,12 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
17791
17922
|
/**
|
|
17792
17923
|
*
|
|
17793
17924
|
* @param {string} serviceReviewId
|
|
17925
|
+
* @param {string} [languageCode]
|
|
17926
|
+
* @param {boolean} [returnDefaultValue]
|
|
17794
17927
|
* @param {*} [options] Override http request option.
|
|
17795
17928
|
* @throws {RequiredError}
|
|
17796
17929
|
*/
|
|
17797
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
17930
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
17798
17931
|
/**
|
|
17799
17932
|
*
|
|
17800
17933
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -17874,6 +18007,8 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
17874
18007
|
* @param {boolean} [recommended]
|
|
17875
18008
|
* @param {number} [rate]
|
|
17876
18009
|
* @param {ReviewType} [reviewType]
|
|
18010
|
+
* @param {string} [languageCode]
|
|
18011
|
+
* @param {boolean} [returnDefaultValue]
|
|
17877
18012
|
* @param {number} [page]
|
|
17878
18013
|
* @param {number} [limit]
|
|
17879
18014
|
* @param {Date} [lastRetrieved]
|
|
@@ -17881,7 +18016,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
17881
18016
|
* @throws {RequiredError}
|
|
17882
18017
|
* @memberof ServiceReviewsApi
|
|
17883
18018
|
*/
|
|
17884
|
-
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel, any>>;
|
|
18019
|
+
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel, any>>;
|
|
17885
18020
|
/**
|
|
17886
18021
|
*
|
|
17887
18022
|
* @summary Create a ServiceReview.
|
|
@@ -17903,11 +18038,13 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
17903
18038
|
/**
|
|
17904
18039
|
*
|
|
17905
18040
|
* @param {string} serviceReviewId
|
|
18041
|
+
* @param {string} [languageCode]
|
|
18042
|
+
* @param {boolean} [returnDefaultValue]
|
|
17906
18043
|
* @param {*} [options] Override http request option.
|
|
17907
18044
|
* @throws {RequiredError}
|
|
17908
18045
|
* @memberof ServiceReviewsApi
|
|
17909
18046
|
*/
|
|
17910
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
18047
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
17911
18048
|
/**
|
|
17912
18049
|
*
|
|
17913
18050
|
* @summary Get all ServiceReviewMedias.
|