ch-api-client-typescript2 3.4.9 → 3.5.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 +102 -62
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +37 -30
- package/package.json +1 -1
- package/src/api.ts +116 -72
package/lib/api.d.ts
CHANGED
|
@@ -2982,7 +2982,19 @@ export interface CreateServiceReviewCommand {
|
|
|
2982
2982
|
* @type {string}
|
|
2983
2983
|
* @memberof CreateServiceReviewCommand
|
|
2984
2984
|
*/
|
|
2985
|
-
'
|
|
2985
|
+
'name'?: string | null;
|
|
2986
|
+
/**
|
|
2987
|
+
*
|
|
2988
|
+
* @type {string}
|
|
2989
|
+
* @memberof CreateServiceReviewCommand
|
|
2990
|
+
*/
|
|
2991
|
+
'description'?: string | null;
|
|
2992
|
+
/**
|
|
2993
|
+
*
|
|
2994
|
+
* @type {string}
|
|
2995
|
+
* @memberof CreateServiceReviewCommand
|
|
2996
|
+
*/
|
|
2997
|
+
'content'?: string | null;
|
|
2986
2998
|
/**
|
|
2987
2999
|
*
|
|
2988
3000
|
* @type {boolean}
|
|
@@ -7900,55 +7912,55 @@ export interface ServiceReviewItemModel {
|
|
|
7900
7912
|
* @type {string}
|
|
7901
7913
|
* @memberof ServiceReviewItemModel
|
|
7902
7914
|
*/
|
|
7903
|
-
'
|
|
7915
|
+
'languageCode'?: string | null;
|
|
7904
7916
|
/**
|
|
7905
7917
|
*
|
|
7906
7918
|
* @type {string}
|
|
7907
7919
|
* @memberof ServiceReviewItemModel
|
|
7908
7920
|
*/
|
|
7909
|
-
'
|
|
7921
|
+
'name'?: string | null;
|
|
7910
7922
|
/**
|
|
7911
7923
|
*
|
|
7912
7924
|
* @type {string}
|
|
7913
7925
|
* @memberof ServiceReviewItemModel
|
|
7914
7926
|
*/
|
|
7915
|
-
'
|
|
7927
|
+
'slug'?: string | null;
|
|
7916
7928
|
/**
|
|
7917
7929
|
*
|
|
7918
|
-
* @type {
|
|
7930
|
+
* @type {boolean}
|
|
7919
7931
|
* @memberof ServiceReviewItemModel
|
|
7920
7932
|
*/
|
|
7921
|
-
'
|
|
7933
|
+
'confirmed'?: boolean;
|
|
7922
7934
|
/**
|
|
7923
7935
|
*
|
|
7924
|
-
* @type {
|
|
7936
|
+
* @type {string}
|
|
7925
7937
|
* @memberof ServiceReviewItemModel
|
|
7926
7938
|
*/
|
|
7927
|
-
'
|
|
7939
|
+
'serviceId'?: string;
|
|
7928
7940
|
/**
|
|
7929
7941
|
*
|
|
7930
7942
|
* @type {string}
|
|
7931
7943
|
* @memberof ServiceReviewItemModel
|
|
7932
7944
|
*/
|
|
7933
|
-
'
|
|
7945
|
+
'serviceName'?: string | null;
|
|
7934
7946
|
/**
|
|
7935
7947
|
*
|
|
7936
7948
|
* @type {string}
|
|
7937
7949
|
* @memberof ServiceReviewItemModel
|
|
7938
7950
|
*/
|
|
7939
|
-
'
|
|
7951
|
+
'serviceSlug'?: string | null;
|
|
7940
7952
|
/**
|
|
7941
7953
|
*
|
|
7942
|
-
* @type {
|
|
7954
|
+
* @type {string}
|
|
7943
7955
|
* @memberof ServiceReviewItemModel
|
|
7944
7956
|
*/
|
|
7945
|
-
'
|
|
7957
|
+
'patientId'?: string | null;
|
|
7946
7958
|
/**
|
|
7947
7959
|
*
|
|
7948
7960
|
* @type {string}
|
|
7949
7961
|
* @memberof ServiceReviewItemModel
|
|
7950
7962
|
*/
|
|
7951
|
-
'
|
|
7963
|
+
'patientName'?: string | null;
|
|
7952
7964
|
/**
|
|
7953
7965
|
*
|
|
7954
7966
|
* @type {boolean}
|
|
@@ -7967,12 +7979,6 @@ export interface ServiceReviewItemModel {
|
|
|
7967
7979
|
* @memberof ServiceReviewItemModel
|
|
7968
7980
|
*/
|
|
7969
7981
|
'reviewType'?: ReviewType;
|
|
7970
|
-
/**
|
|
7971
|
-
*
|
|
7972
|
-
* @type {boolean}
|
|
7973
|
-
* @memberof ServiceReviewItemModel
|
|
7974
|
-
*/
|
|
7975
|
-
'confirmed'?: boolean;
|
|
7976
7982
|
/**
|
|
7977
7983
|
*
|
|
7978
7984
|
* @type {Array<MediaModel>}
|
|
@@ -8003,55 +8009,55 @@ export interface ServiceReviewModel {
|
|
|
8003
8009
|
* @type {string}
|
|
8004
8010
|
* @memberof ServiceReviewModel
|
|
8005
8011
|
*/
|
|
8006
|
-
'
|
|
8012
|
+
'languageCode'?: string | null;
|
|
8007
8013
|
/**
|
|
8008
8014
|
*
|
|
8009
8015
|
* @type {string}
|
|
8010
8016
|
* @memberof ServiceReviewModel
|
|
8011
8017
|
*/
|
|
8012
|
-
'
|
|
8018
|
+
'name'?: string | null;
|
|
8013
8019
|
/**
|
|
8014
8020
|
*
|
|
8015
8021
|
* @type {string}
|
|
8016
8022
|
* @memberof ServiceReviewModel
|
|
8017
8023
|
*/
|
|
8018
|
-
'
|
|
8024
|
+
'slug'?: string | null;
|
|
8019
8025
|
/**
|
|
8020
8026
|
*
|
|
8021
|
-
* @type {
|
|
8027
|
+
* @type {boolean}
|
|
8022
8028
|
* @memberof ServiceReviewModel
|
|
8023
8029
|
*/
|
|
8024
|
-
'
|
|
8030
|
+
'confirmed'?: boolean;
|
|
8025
8031
|
/**
|
|
8026
8032
|
*
|
|
8027
|
-
* @type {
|
|
8033
|
+
* @type {string}
|
|
8028
8034
|
* @memberof ServiceReviewModel
|
|
8029
8035
|
*/
|
|
8030
|
-
'
|
|
8036
|
+
'serviceId'?: string;
|
|
8031
8037
|
/**
|
|
8032
8038
|
*
|
|
8033
8039
|
* @type {string}
|
|
8034
8040
|
* @memberof ServiceReviewModel
|
|
8035
8041
|
*/
|
|
8036
|
-
'
|
|
8042
|
+
'serviceName'?: string | null;
|
|
8037
8043
|
/**
|
|
8038
8044
|
*
|
|
8039
8045
|
* @type {string}
|
|
8040
8046
|
* @memberof ServiceReviewModel
|
|
8041
8047
|
*/
|
|
8042
|
-
'
|
|
8048
|
+
'serviceSlug'?: string | null;
|
|
8043
8049
|
/**
|
|
8044
8050
|
*
|
|
8045
|
-
* @type {
|
|
8051
|
+
* @type {string}
|
|
8046
8052
|
* @memberof ServiceReviewModel
|
|
8047
8053
|
*/
|
|
8048
|
-
'
|
|
8054
|
+
'patientId'?: string | null;
|
|
8049
8055
|
/**
|
|
8050
8056
|
*
|
|
8051
8057
|
* @type {string}
|
|
8052
8058
|
* @memberof ServiceReviewModel
|
|
8053
8059
|
*/
|
|
8054
|
-
'
|
|
8060
|
+
'patientName'?: string | null;
|
|
8055
8061
|
/**
|
|
8056
8062
|
*
|
|
8057
8063
|
* @type {boolean}
|
|
@@ -8070,12 +8076,6 @@ export interface ServiceReviewModel {
|
|
|
8070
8076
|
* @memberof ServiceReviewModel
|
|
8071
8077
|
*/
|
|
8072
8078
|
'reviewType'?: ReviewType;
|
|
8073
|
-
/**
|
|
8074
|
-
*
|
|
8075
|
-
* @type {boolean}
|
|
8076
|
-
* @memberof ServiceReviewModel
|
|
8077
|
-
*/
|
|
8078
|
-
'confirmed'?: boolean;
|
|
8079
8079
|
/**
|
|
8080
8080
|
*
|
|
8081
8081
|
* @type {Array<MediaModel>}
|
|
@@ -8088,6 +8088,24 @@ export interface ServiceReviewModel {
|
|
|
8088
8088
|
* @memberof ServiceReviewModel
|
|
8089
8089
|
*/
|
|
8090
8090
|
'auditableEntity'?: AuditableEntity;
|
|
8091
|
+
/**
|
|
8092
|
+
*
|
|
8093
|
+
* @type {string}
|
|
8094
|
+
* @memberof ServiceReviewModel
|
|
8095
|
+
*/
|
|
8096
|
+
'description'?: string | null;
|
|
8097
|
+
/**
|
|
8098
|
+
*
|
|
8099
|
+
* @type {string}
|
|
8100
|
+
* @memberof ServiceReviewModel
|
|
8101
|
+
*/
|
|
8102
|
+
'overview'?: string | null;
|
|
8103
|
+
/**
|
|
8104
|
+
*
|
|
8105
|
+
* @type {string}
|
|
8106
|
+
* @memberof ServiceReviewModel
|
|
8107
|
+
*/
|
|
8108
|
+
'content'?: string | null;
|
|
8091
8109
|
}
|
|
8092
8110
|
/**
|
|
8093
8111
|
*
|
|
@@ -9142,25 +9160,43 @@ export interface UpdateServiceReviewCommand {
|
|
|
9142
9160
|
* @type {string}
|
|
9143
9161
|
* @memberof UpdateServiceReviewCommand
|
|
9144
9162
|
*/
|
|
9145
|
-
'
|
|
9163
|
+
'name'?: string | null;
|
|
9146
9164
|
/**
|
|
9147
9165
|
*
|
|
9148
|
-
* @type {
|
|
9166
|
+
* @type {string}
|
|
9149
9167
|
* @memberof UpdateServiceReviewCommand
|
|
9150
9168
|
*/
|
|
9151
|
-
'
|
|
9169
|
+
'slug'?: string | null;
|
|
9152
9170
|
/**
|
|
9153
9171
|
*
|
|
9154
|
-
* @type {
|
|
9172
|
+
* @type {string}
|
|
9155
9173
|
* @memberof UpdateServiceReviewCommand
|
|
9156
9174
|
*/
|
|
9157
|
-
'
|
|
9175
|
+
'description'?: string | null;
|
|
9176
|
+
/**
|
|
9177
|
+
*
|
|
9178
|
+
* @type {string}
|
|
9179
|
+
* @memberof UpdateServiceReviewCommand
|
|
9180
|
+
*/
|
|
9181
|
+
'content'?: string | null;
|
|
9158
9182
|
/**
|
|
9159
9183
|
*
|
|
9160
9184
|
* @type {string}
|
|
9161
9185
|
* @memberof UpdateServiceReviewCommand
|
|
9162
9186
|
*/
|
|
9163
9187
|
'languageCode'?: string | null;
|
|
9188
|
+
/**
|
|
9189
|
+
*
|
|
9190
|
+
* @type {boolean}
|
|
9191
|
+
* @memberof UpdateServiceReviewCommand
|
|
9192
|
+
*/
|
|
9193
|
+
'recommended'?: boolean | null;
|
|
9194
|
+
/**
|
|
9195
|
+
*
|
|
9196
|
+
* @type {number}
|
|
9197
|
+
* @memberof UpdateServiceReviewCommand
|
|
9198
|
+
*/
|
|
9199
|
+
'rate'?: number | null;
|
|
9164
9200
|
/**
|
|
9165
9201
|
*
|
|
9166
9202
|
* @type {boolean}
|
|
@@ -12478,7 +12514,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12478
12514
|
apiV2DoctorsDoctorIdCertificatesCertificateIdGet: (doctorId: string, certificateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12479
12515
|
/**
|
|
12480
12516
|
*
|
|
12481
|
-
* @summary
|
|
12517
|
+
* @summary Get All DoctorCertificate.
|
|
12482
12518
|
* @param {string} doctorId
|
|
12483
12519
|
* @param {string} [doctorName]
|
|
12484
12520
|
* @param {string} [certificateId]
|
|
@@ -12678,7 +12714,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
12678
12714
|
apiV2DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
|
|
12679
12715
|
/**
|
|
12680
12716
|
*
|
|
12681
|
-
* @summary
|
|
12717
|
+
* @summary Get All DoctorCertificate.
|
|
12682
12718
|
* @param {string} doctorId
|
|
12683
12719
|
* @param {string} [doctorName]
|
|
12684
12720
|
* @param {string} [certificateId]
|
|
@@ -12878,7 +12914,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
12878
12914
|
apiV2DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: any): AxiosPromise<DoctorCertificateModel>;
|
|
12879
12915
|
/**
|
|
12880
12916
|
*
|
|
12881
|
-
* @summary
|
|
12917
|
+
* @summary Get All DoctorCertificate.
|
|
12882
12918
|
* @param {string} doctorId
|
|
12883
12919
|
* @param {string} [doctorName]
|
|
12884
12920
|
* @param {string} [certificateId]
|
|
@@ -13081,7 +13117,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
13081
13117
|
apiV2DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel, any>>;
|
|
13082
13118
|
/**
|
|
13083
13119
|
*
|
|
13084
|
-
* @summary
|
|
13120
|
+
* @summary Get All DoctorCertificate.
|
|
13085
13121
|
* @param {string} doctorId
|
|
13086
13122
|
* @param {string} [doctorName]
|
|
13087
13123
|
* @param {string} [certificateId]
|
|
@@ -16533,7 +16569,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16533
16569
|
/**
|
|
16534
16570
|
*
|
|
16535
16571
|
* @summary Get all ServiceReviews.
|
|
16536
|
-
* @param {string} [
|
|
16572
|
+
* @param {string} [id]
|
|
16537
16573
|
* @param {string} [serviceId]
|
|
16538
16574
|
* @param {string} [serviceName]
|
|
16539
16575
|
* @param {string} [patientId]
|
|
@@ -16543,14 +16579,14 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16543
16579
|
* @param {number} [rate]
|
|
16544
16580
|
* @param {ReviewType} [reviewType]
|
|
16545
16581
|
* @param {string} [languageCode]
|
|
16546
|
-
* @param {boolean} [
|
|
16582
|
+
* @param {boolean} [showHidden]
|
|
16547
16583
|
* @param {number} [page]
|
|
16548
16584
|
* @param {number} [limit]
|
|
16549
16585
|
* @param {Date} [lastRetrieved]
|
|
16550
16586
|
* @param {*} [options] Override http request option.
|
|
16551
16587
|
* @throws {RequiredError}
|
|
16552
16588
|
*/
|
|
16553
|
-
apiV2ServicereviewsGet: (
|
|
16589
|
+
apiV2ServicereviewsGet: (id?: 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, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16554
16590
|
/**
|
|
16555
16591
|
*
|
|
16556
16592
|
* @summary Create a ServiceReview.
|
|
@@ -16570,10 +16606,11 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16570
16606
|
/**
|
|
16571
16607
|
*
|
|
16572
16608
|
* @param {string} serviceReviewId
|
|
16609
|
+
* @param {string} [languageCode]
|
|
16573
16610
|
* @param {*} [options] Override http request option.
|
|
16574
16611
|
* @throws {RequiredError}
|
|
16575
16612
|
*/
|
|
16576
|
-
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16613
|
+
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16577
16614
|
/**
|
|
16578
16615
|
*
|
|
16579
16616
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -16642,7 +16679,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16642
16679
|
/**
|
|
16643
16680
|
*
|
|
16644
16681
|
* @summary Get all ServiceReviews.
|
|
16645
|
-
* @param {string} [
|
|
16682
|
+
* @param {string} [id]
|
|
16646
16683
|
* @param {string} [serviceId]
|
|
16647
16684
|
* @param {string} [serviceName]
|
|
16648
16685
|
* @param {string} [patientId]
|
|
@@ -16652,14 +16689,14 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16652
16689
|
* @param {number} [rate]
|
|
16653
16690
|
* @param {ReviewType} [reviewType]
|
|
16654
16691
|
* @param {string} [languageCode]
|
|
16655
|
-
* @param {boolean} [
|
|
16692
|
+
* @param {boolean} [showHidden]
|
|
16656
16693
|
* @param {number} [page]
|
|
16657
16694
|
* @param {number} [limit]
|
|
16658
16695
|
* @param {Date} [lastRetrieved]
|
|
16659
16696
|
* @param {*} [options] Override http request option.
|
|
16660
16697
|
* @throws {RequiredError}
|
|
16661
16698
|
*/
|
|
16662
|
-
apiV2ServicereviewsGet(
|
|
16699
|
+
apiV2ServicereviewsGet(id?: 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, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
16663
16700
|
/**
|
|
16664
16701
|
*
|
|
16665
16702
|
* @summary Create a ServiceReview.
|
|
@@ -16679,10 +16716,11 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16679
16716
|
/**
|
|
16680
16717
|
*
|
|
16681
16718
|
* @param {string} serviceReviewId
|
|
16719
|
+
* @param {string} [languageCode]
|
|
16682
16720
|
* @param {*} [options] Override http request option.
|
|
16683
16721
|
* @throws {RequiredError}
|
|
16684
16722
|
*/
|
|
16685
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
16723
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
16686
16724
|
/**
|
|
16687
16725
|
*
|
|
16688
16726
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -16751,7 +16789,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16751
16789
|
/**
|
|
16752
16790
|
*
|
|
16753
16791
|
* @summary Get all ServiceReviews.
|
|
16754
|
-
* @param {string} [
|
|
16792
|
+
* @param {string} [id]
|
|
16755
16793
|
* @param {string} [serviceId]
|
|
16756
16794
|
* @param {string} [serviceName]
|
|
16757
16795
|
* @param {string} [patientId]
|
|
@@ -16761,14 +16799,14 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16761
16799
|
* @param {number} [rate]
|
|
16762
16800
|
* @param {ReviewType} [reviewType]
|
|
16763
16801
|
* @param {string} [languageCode]
|
|
16764
|
-
* @param {boolean} [
|
|
16802
|
+
* @param {boolean} [showHidden]
|
|
16765
16803
|
* @param {number} [page]
|
|
16766
16804
|
* @param {number} [limit]
|
|
16767
16805
|
* @param {Date} [lastRetrieved]
|
|
16768
16806
|
* @param {*} [options] Override http request option.
|
|
16769
16807
|
* @throws {RequiredError}
|
|
16770
16808
|
*/
|
|
16771
|
-
apiV2ServicereviewsGet(
|
|
16809
|
+
apiV2ServicereviewsGet(id?: 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, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
16772
16810
|
/**
|
|
16773
16811
|
*
|
|
16774
16812
|
* @summary Create a ServiceReview.
|
|
@@ -16788,10 +16826,11 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16788
16826
|
/**
|
|
16789
16827
|
*
|
|
16790
16828
|
* @param {string} serviceReviewId
|
|
16829
|
+
* @param {string} [languageCode]
|
|
16791
16830
|
* @param {*} [options] Override http request option.
|
|
16792
16831
|
* @throws {RequiredError}
|
|
16793
16832
|
*/
|
|
16794
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
16833
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
16795
16834
|
/**
|
|
16796
16835
|
*
|
|
16797
16836
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -16862,7 +16901,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16862
16901
|
/**
|
|
16863
16902
|
*
|
|
16864
16903
|
* @summary Get all ServiceReviews.
|
|
16865
|
-
* @param {string} [
|
|
16904
|
+
* @param {string} [id]
|
|
16866
16905
|
* @param {string} [serviceId]
|
|
16867
16906
|
* @param {string} [serviceName]
|
|
16868
16907
|
* @param {string} [patientId]
|
|
@@ -16872,7 +16911,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16872
16911
|
* @param {number} [rate]
|
|
16873
16912
|
* @param {ReviewType} [reviewType]
|
|
16874
16913
|
* @param {string} [languageCode]
|
|
16875
|
-
* @param {boolean} [
|
|
16914
|
+
* @param {boolean} [showHidden]
|
|
16876
16915
|
* @param {number} [page]
|
|
16877
16916
|
* @param {number} [limit]
|
|
16878
16917
|
* @param {Date} [lastRetrieved]
|
|
@@ -16880,7 +16919,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16880
16919
|
* @throws {RequiredError}
|
|
16881
16920
|
* @memberof ServiceReviewsApi
|
|
16882
16921
|
*/
|
|
16883
|
-
apiV2ServicereviewsGet(
|
|
16922
|
+
apiV2ServicereviewsGet(id?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel, any>>;
|
|
16884
16923
|
/**
|
|
16885
16924
|
*
|
|
16886
16925
|
* @summary Create a ServiceReview.
|
|
@@ -16902,11 +16941,12 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16902
16941
|
/**
|
|
16903
16942
|
*
|
|
16904
16943
|
* @param {string} serviceReviewId
|
|
16944
|
+
* @param {string} [languageCode]
|
|
16905
16945
|
* @param {*} [options] Override http request option.
|
|
16906
16946
|
* @throws {RequiredError}
|
|
16907
16947
|
* @memberof ServiceReviewsApi
|
|
16908
16948
|
*/
|
|
16909
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
16949
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
16910
16950
|
/**
|
|
16911
16951
|
*
|
|
16912
16952
|
* @summary Get all ServiceReviewMedias.
|