ch-api-client-typescript2 3.5.2 → 3.5.5
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 +143 -37
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -14
- package/package.json +1 -1
- package/src/api.ts +165 -43
package/lib/api.d.ts
CHANGED
|
@@ -562,6 +562,12 @@ export interface ArticleItemModel {
|
|
|
562
562
|
* @memberof ArticleItemModel
|
|
563
563
|
*/
|
|
564
564
|
'slug'?: string | null;
|
|
565
|
+
/**
|
|
566
|
+
*
|
|
567
|
+
* @type {string}
|
|
568
|
+
* @memberof ArticleItemModel
|
|
569
|
+
*/
|
|
570
|
+
'description'?: string | null;
|
|
565
571
|
/**
|
|
566
572
|
*
|
|
567
573
|
* @type {boolean}
|
|
@@ -659,6 +665,12 @@ export interface ArticleModel {
|
|
|
659
665
|
* @memberof ArticleModel
|
|
660
666
|
*/
|
|
661
667
|
'slug'?: string | null;
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof ArticleModel
|
|
672
|
+
*/
|
|
673
|
+
'description'?: string | null;
|
|
662
674
|
/**
|
|
663
675
|
*
|
|
664
676
|
* @type {boolean}
|
|
@@ -725,12 +737,6 @@ export interface ArticleModel {
|
|
|
725
737
|
* @memberof ArticleModel
|
|
726
738
|
*/
|
|
727
739
|
'auditableEntity'?: AuditableEntity;
|
|
728
|
-
/**
|
|
729
|
-
*
|
|
730
|
-
* @type {string}
|
|
731
|
-
* @memberof ArticleModel
|
|
732
|
-
*/
|
|
733
|
-
'description'?: string | null;
|
|
734
740
|
/**
|
|
735
741
|
*
|
|
736
742
|
* @type {string}
|
|
@@ -3044,6 +3050,12 @@ export interface DealItemModel {
|
|
|
3044
3050
|
* @memberof DealItemModel
|
|
3045
3051
|
*/
|
|
3046
3052
|
'slug'?: string | null;
|
|
3053
|
+
/**
|
|
3054
|
+
*
|
|
3055
|
+
* @type {string}
|
|
3056
|
+
* @memberof DealItemModel
|
|
3057
|
+
*/
|
|
3058
|
+
'description'?: string | null;
|
|
3047
3059
|
/**
|
|
3048
3060
|
*
|
|
3049
3061
|
* @type {boolean}
|
|
@@ -3086,6 +3098,18 @@ export interface DealItemModel {
|
|
|
3086
3098
|
* @memberof DealItemModel
|
|
3087
3099
|
*/
|
|
3088
3100
|
'photoThumbnail'?: string | null;
|
|
3101
|
+
/**
|
|
3102
|
+
*
|
|
3103
|
+
* @type {number}
|
|
3104
|
+
* @memberof DealItemModel
|
|
3105
|
+
*/
|
|
3106
|
+
'lowestPrice'?: number;
|
|
3107
|
+
/**
|
|
3108
|
+
*
|
|
3109
|
+
* @type {number}
|
|
3110
|
+
* @memberof DealItemModel
|
|
3111
|
+
*/
|
|
3112
|
+
'dealServicesCount'?: number;
|
|
3089
3113
|
/**
|
|
3090
3114
|
*
|
|
3091
3115
|
* @type {number}
|
|
@@ -3166,6 +3190,12 @@ export interface DealModel {
|
|
|
3166
3190
|
* @memberof DealModel
|
|
3167
3191
|
*/
|
|
3168
3192
|
'slug'?: string | null;
|
|
3193
|
+
/**
|
|
3194
|
+
*
|
|
3195
|
+
* @type {string}
|
|
3196
|
+
* @memberof DealModel
|
|
3197
|
+
*/
|
|
3198
|
+
'description'?: string | null;
|
|
3169
3199
|
/**
|
|
3170
3200
|
*
|
|
3171
3201
|
* @type {boolean}
|
|
@@ -3213,19 +3243,25 @@ export interface DealModel {
|
|
|
3213
3243
|
* @type {number}
|
|
3214
3244
|
* @memberof DealModel
|
|
3215
3245
|
*/
|
|
3216
|
-
'
|
|
3246
|
+
'lowestPrice'?: number;
|
|
3217
3247
|
/**
|
|
3218
3248
|
*
|
|
3219
|
-
* @type {
|
|
3249
|
+
* @type {number}
|
|
3220
3250
|
* @memberof DealModel
|
|
3221
3251
|
*/
|
|
3222
|
-
'
|
|
3252
|
+
'dealServicesCount'?: number;
|
|
3223
3253
|
/**
|
|
3224
3254
|
*
|
|
3225
|
-
* @type {
|
|
3255
|
+
* @type {number}
|
|
3226
3256
|
* @memberof DealModel
|
|
3227
3257
|
*/
|
|
3228
|
-
'
|
|
3258
|
+
'order'?: number;
|
|
3259
|
+
/**
|
|
3260
|
+
*
|
|
3261
|
+
* @type {AuditableEntity}
|
|
3262
|
+
* @memberof DealModel
|
|
3263
|
+
*/
|
|
3264
|
+
'auditableEntity'?: AuditableEntity;
|
|
3229
3265
|
/**
|
|
3230
3266
|
*
|
|
3231
3267
|
* @type {string}
|
|
@@ -3649,6 +3685,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3649
3685
|
* @memberof DoctorAffiliationItemModel
|
|
3650
3686
|
*/
|
|
3651
3687
|
'hospitalSlug'?: string | null;
|
|
3688
|
+
/**
|
|
3689
|
+
*
|
|
3690
|
+
* @type {string}
|
|
3691
|
+
* @memberof DoctorAffiliationItemModel
|
|
3692
|
+
*/
|
|
3693
|
+
'doctorId'?: string | null;
|
|
3652
3694
|
/**
|
|
3653
3695
|
*
|
|
3654
3696
|
* @type {string}
|
|
@@ -3691,6 +3733,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3691
3733
|
* @memberof DoctorAffiliationItemModel
|
|
3692
3734
|
*/
|
|
3693
3735
|
'consultationFee'?: number | null;
|
|
3736
|
+
/**
|
|
3737
|
+
*
|
|
3738
|
+
* @type {string}
|
|
3739
|
+
* @memberof DoctorAffiliationItemModel
|
|
3740
|
+
*/
|
|
3741
|
+
'specialtiesSummerized'?: string | null;
|
|
3694
3742
|
/**
|
|
3695
3743
|
*
|
|
3696
3744
|
* @type {number}
|
|
@@ -3734,6 +3782,12 @@ export interface DoctorAffiliationModel {
|
|
|
3734
3782
|
* @memberof DoctorAffiliationModel
|
|
3735
3783
|
*/
|
|
3736
3784
|
'hospitalSlug'?: string | null;
|
|
3785
|
+
/**
|
|
3786
|
+
*
|
|
3787
|
+
* @type {string}
|
|
3788
|
+
* @memberof DoctorAffiliationModel
|
|
3789
|
+
*/
|
|
3790
|
+
'doctorId'?: string | null;
|
|
3737
3791
|
/**
|
|
3738
3792
|
*
|
|
3739
3793
|
* @type {string}
|
|
@@ -3776,6 +3830,12 @@ export interface DoctorAffiliationModel {
|
|
|
3776
3830
|
* @memberof DoctorAffiliationModel
|
|
3777
3831
|
*/
|
|
3778
3832
|
'consultationFee'?: number | null;
|
|
3833
|
+
/**
|
|
3834
|
+
*
|
|
3835
|
+
* @type {string}
|
|
3836
|
+
* @memberof DoctorAffiliationModel
|
|
3837
|
+
*/
|
|
3838
|
+
'specialtiesSummerized'?: string | null;
|
|
3779
3839
|
/**
|
|
3780
3840
|
*
|
|
3781
3841
|
* @type {number}
|
|
@@ -5836,6 +5896,18 @@ export interface HospitalServiceItemModel {
|
|
|
5836
5896
|
* @memberof HospitalServiceItemModel
|
|
5837
5897
|
*/
|
|
5838
5898
|
'confirmed'?: boolean;
|
|
5899
|
+
/**
|
|
5900
|
+
*
|
|
5901
|
+
* @type {string}
|
|
5902
|
+
* @memberof HospitalServiceItemModel
|
|
5903
|
+
*/
|
|
5904
|
+
'hospitalSpecialtyName'?: string | null;
|
|
5905
|
+
/**
|
|
5906
|
+
*
|
|
5907
|
+
* @type {string}
|
|
5908
|
+
* @memberof HospitalServiceItemModel
|
|
5909
|
+
*/
|
|
5910
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
5839
5911
|
/**
|
|
5840
5912
|
*
|
|
5841
5913
|
* @type {number}
|
|
@@ -7925,6 +7997,24 @@ export interface ServiceReviewItemModel {
|
|
|
7925
7997
|
* @memberof ServiceReviewItemModel
|
|
7926
7998
|
*/
|
|
7927
7999
|
'slug'?: string | null;
|
|
8000
|
+
/**
|
|
8001
|
+
*
|
|
8002
|
+
* @type {string}
|
|
8003
|
+
* @memberof ServiceReviewItemModel
|
|
8004
|
+
*/
|
|
8005
|
+
'description'?: string | null;
|
|
8006
|
+
/**
|
|
8007
|
+
*
|
|
8008
|
+
* @type {string}
|
|
8009
|
+
* @memberof ServiceReviewItemModel
|
|
8010
|
+
*/
|
|
8011
|
+
'overview'?: string | null;
|
|
8012
|
+
/**
|
|
8013
|
+
*
|
|
8014
|
+
* @type {string}
|
|
8015
|
+
* @memberof ServiceReviewItemModel
|
|
8016
|
+
*/
|
|
8017
|
+
'content'?: string | null;
|
|
7928
8018
|
/**
|
|
7929
8019
|
*
|
|
7930
8020
|
* @type {boolean}
|
|
@@ -8022,6 +8112,24 @@ export interface ServiceReviewModel {
|
|
|
8022
8112
|
* @memberof ServiceReviewModel
|
|
8023
8113
|
*/
|
|
8024
8114
|
'slug'?: string | null;
|
|
8115
|
+
/**
|
|
8116
|
+
*
|
|
8117
|
+
* @type {string}
|
|
8118
|
+
* @memberof ServiceReviewModel
|
|
8119
|
+
*/
|
|
8120
|
+
'description'?: string | null;
|
|
8121
|
+
/**
|
|
8122
|
+
*
|
|
8123
|
+
* @type {string}
|
|
8124
|
+
* @memberof ServiceReviewModel
|
|
8125
|
+
*/
|
|
8126
|
+
'overview'?: string | null;
|
|
8127
|
+
/**
|
|
8128
|
+
*
|
|
8129
|
+
* @type {string}
|
|
8130
|
+
* @memberof ServiceReviewModel
|
|
8131
|
+
*/
|
|
8132
|
+
'content'?: string | null;
|
|
8025
8133
|
/**
|
|
8026
8134
|
*
|
|
8027
8135
|
* @type {boolean}
|
|
@@ -8088,24 +8196,6 @@ export interface ServiceReviewModel {
|
|
|
8088
8196
|
* @memberof ServiceReviewModel
|
|
8089
8197
|
*/
|
|
8090
8198
|
'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;
|
|
8109
8199
|
}
|
|
8110
8200
|
/**
|
|
8111
8201
|
*
|
|
@@ -12350,6 +12440,9 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
12350
12440
|
* @param {string} [doctorId]
|
|
12351
12441
|
* @param {string} [doctorName]
|
|
12352
12442
|
* @param {string} [doctorSlug]
|
|
12443
|
+
* @param {string} [specialtyId]
|
|
12444
|
+
* @param {string} [exceptDoctorId]
|
|
12445
|
+
* @param {boolean} [consultationEnabled]
|
|
12353
12446
|
* @param {string} [languageCode]
|
|
12354
12447
|
* @param {number} [page]
|
|
12355
12448
|
* @param {number} [limit]
|
|
@@ -12357,7 +12450,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
12357
12450
|
* @param {*} [options] Override http request option.
|
|
12358
12451
|
* @throws {RequiredError}
|
|
12359
12452
|
*/
|
|
12360
|
-
apiV2DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12453
|
+
apiV2DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, exceptDoctorId?: string | undefined, consultationEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12361
12454
|
/**
|
|
12362
12455
|
*
|
|
12363
12456
|
* @summary Get doctor affiliation.
|
|
@@ -12389,6 +12482,9 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
12389
12482
|
* @param {string} [doctorId]
|
|
12390
12483
|
* @param {string} [doctorName]
|
|
12391
12484
|
* @param {string} [doctorSlug]
|
|
12485
|
+
* @param {string} [specialtyId]
|
|
12486
|
+
* @param {string} [exceptDoctorId]
|
|
12487
|
+
* @param {boolean} [consultationEnabled]
|
|
12392
12488
|
* @param {string} [languageCode]
|
|
12393
12489
|
* @param {number} [page]
|
|
12394
12490
|
* @param {number} [limit]
|
|
@@ -12396,7 +12492,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
12396
12492
|
* @param {*} [options] Override http request option.
|
|
12397
12493
|
* @throws {RequiredError}
|
|
12398
12494
|
*/
|
|
12399
|
-
apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12495
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, exceptDoctorId?: string | undefined, consultationEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12400
12496
|
/**
|
|
12401
12497
|
*
|
|
12402
12498
|
* @summary Get doctor affiliation.
|
|
@@ -12428,6 +12524,9 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
12428
12524
|
* @param {string} [doctorId]
|
|
12429
12525
|
* @param {string} [doctorName]
|
|
12430
12526
|
* @param {string} [doctorSlug]
|
|
12527
|
+
* @param {string} [specialtyId]
|
|
12528
|
+
* @param {string} [exceptDoctorId]
|
|
12529
|
+
* @param {boolean} [consultationEnabled]
|
|
12431
12530
|
* @param {string} [languageCode]
|
|
12432
12531
|
* @param {number} [page]
|
|
12433
12532
|
* @param {number} [limit]
|
|
@@ -12435,7 +12534,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
12435
12534
|
* @param {*} [options] Override http request option.
|
|
12436
12535
|
* @throws {RequiredError}
|
|
12437
12536
|
*/
|
|
12438
|
-
apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
12537
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, specialtyId?: string | undefined, exceptDoctorId?: string | undefined, consultationEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
12439
12538
|
/**
|
|
12440
12539
|
*
|
|
12441
12540
|
* @summary Get doctor affiliation.
|
|
@@ -12469,6 +12568,9 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
12469
12568
|
* @param {string} [doctorId]
|
|
12470
12569
|
* @param {string} [doctorName]
|
|
12471
12570
|
* @param {string} [doctorSlug]
|
|
12571
|
+
* @param {string} [specialtyId]
|
|
12572
|
+
* @param {string} [exceptDoctorId]
|
|
12573
|
+
* @param {boolean} [consultationEnabled]
|
|
12472
12574
|
* @param {string} [languageCode]
|
|
12473
12575
|
* @param {number} [page]
|
|
12474
12576
|
* @param {number} [limit]
|
|
@@ -12477,7 +12579,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
12477
12579
|
* @throws {RequiredError}
|
|
12478
12580
|
* @memberof DoctorAffiliationsApi
|
|
12479
12581
|
*/
|
|
12480
|
-
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
12582
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, specialtyId?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
12481
12583
|
/**
|
|
12482
12584
|
*
|
|
12483
12585
|
* @summary Get doctor affiliation.
|
|
@@ -16570,6 +16672,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16570
16672
|
*
|
|
16571
16673
|
* @summary Get all ServiceReviews.
|
|
16572
16674
|
* @param {string} [id]
|
|
16675
|
+
* @param {string} [hospitalId]
|
|
16573
16676
|
* @param {string} [serviceId]
|
|
16574
16677
|
* @param {string} [serviceName]
|
|
16575
16678
|
* @param {string} [patientId]
|
|
@@ -16586,7 +16689,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16586
16689
|
* @param {*} [options] Override http request option.
|
|
16587
16690
|
* @throws {RequiredError}
|
|
16588
16691
|
*/
|
|
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>;
|
|
16692
|
+
apiV2ServicereviewsGet: (id?: string | undefined, 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, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16590
16693
|
/**
|
|
16591
16694
|
*
|
|
16592
16695
|
* @summary Create a ServiceReview.
|
|
@@ -16680,6 +16783,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16680
16783
|
*
|
|
16681
16784
|
* @summary Get all ServiceReviews.
|
|
16682
16785
|
* @param {string} [id]
|
|
16786
|
+
* @param {string} [hospitalId]
|
|
16683
16787
|
* @param {string} [serviceId]
|
|
16684
16788
|
* @param {string} [serviceName]
|
|
16685
16789
|
* @param {string} [patientId]
|
|
@@ -16696,7 +16800,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16696
16800
|
* @param {*} [options] Override http request option.
|
|
16697
16801
|
* @throws {RequiredError}
|
|
16698
16802
|
*/
|
|
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>>;
|
|
16803
|
+
apiV2ServicereviewsGet(id?: string | undefined, 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, 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>>;
|
|
16700
16804
|
/**
|
|
16701
16805
|
*
|
|
16702
16806
|
* @summary Create a ServiceReview.
|
|
@@ -16790,6 +16894,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16790
16894
|
*
|
|
16791
16895
|
* @summary Get all ServiceReviews.
|
|
16792
16896
|
* @param {string} [id]
|
|
16897
|
+
* @param {string} [hospitalId]
|
|
16793
16898
|
* @param {string} [serviceId]
|
|
16794
16899
|
* @param {string} [serviceName]
|
|
16795
16900
|
* @param {string} [patientId]
|
|
@@ -16806,7 +16911,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16806
16911
|
* @param {*} [options] Override http request option.
|
|
16807
16912
|
* @throws {RequiredError}
|
|
16808
16913
|
*/
|
|
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>;
|
|
16914
|
+
apiV2ServicereviewsGet(id?: string | undefined, 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, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
16810
16915
|
/**
|
|
16811
16916
|
*
|
|
16812
16917
|
* @summary Create a ServiceReview.
|
|
@@ -16902,6 +17007,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16902
17007
|
*
|
|
16903
17008
|
* @summary Get all ServiceReviews.
|
|
16904
17009
|
* @param {string} [id]
|
|
17010
|
+
* @param {string} [hospitalId]
|
|
16905
17011
|
* @param {string} [serviceId]
|
|
16906
17012
|
* @param {string} [serviceName]
|
|
16907
17013
|
* @param {string} [patientId]
|
|
@@ -16919,7 +17025,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16919
17025
|
* @throws {RequiredError}
|
|
16920
17026
|
* @memberof ServiceReviewsApi
|
|
16921
17027
|
*/
|
|
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>>;
|
|
17028
|
+
apiV2ServicereviewsGet(id?: string, hospitalId?: 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>>;
|
|
16923
17029
|
/**
|
|
16924
17030
|
*
|
|
16925
17031
|
* @summary Create a ServiceReview.
|