ch-api-client-typescript2 3.5.2 → 3.5.3
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 +107 -19
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -14
- package/package.json +1 -1
- package/src/api.ts +129 -25
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}
|
|
@@ -12347,9 +12419,12 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
12347
12419
|
* @summary Get all doctor affiliations.
|
|
12348
12420
|
* @param {string} [hospitalId]
|
|
12349
12421
|
* @param {string} [hospitalName]
|
|
12422
|
+
* @param {string} [specialtyId]
|
|
12350
12423
|
* @param {string} [doctorId]
|
|
12351
12424
|
* @param {string} [doctorName]
|
|
12352
12425
|
* @param {string} [doctorSlug]
|
|
12426
|
+
* @param {string} [exceptDoctorId]
|
|
12427
|
+
* @param {boolean} [consultationEnabled]
|
|
12353
12428
|
* @param {string} [languageCode]
|
|
12354
12429
|
* @param {number} [page]
|
|
12355
12430
|
* @param {number} [limit]
|
|
@@ -12357,7 +12432,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
12357
12432
|
* @param {*} [options] Override http request option.
|
|
12358
12433
|
* @throws {RequiredError}
|
|
12359
12434
|
*/
|
|
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>;
|
|
12435
|
+
apiV2DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: 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
12436
|
/**
|
|
12362
12437
|
*
|
|
12363
12438
|
* @summary Get doctor affiliation.
|
|
@@ -12386,9 +12461,12 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
12386
12461
|
* @summary Get all doctor affiliations.
|
|
12387
12462
|
* @param {string} [hospitalId]
|
|
12388
12463
|
* @param {string} [hospitalName]
|
|
12464
|
+
* @param {string} [specialtyId]
|
|
12389
12465
|
* @param {string} [doctorId]
|
|
12390
12466
|
* @param {string} [doctorName]
|
|
12391
12467
|
* @param {string} [doctorSlug]
|
|
12468
|
+
* @param {string} [exceptDoctorId]
|
|
12469
|
+
* @param {boolean} [consultationEnabled]
|
|
12392
12470
|
* @param {string} [languageCode]
|
|
12393
12471
|
* @param {number} [page]
|
|
12394
12472
|
* @param {number} [limit]
|
|
@@ -12396,7 +12474,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
12396
12474
|
* @param {*} [options] Override http request option.
|
|
12397
12475
|
* @throws {RequiredError}
|
|
12398
12476
|
*/
|
|
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>>;
|
|
12477
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: 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
12478
|
/**
|
|
12401
12479
|
*
|
|
12402
12480
|
* @summary Get doctor affiliation.
|
|
@@ -12425,9 +12503,12 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
12425
12503
|
* @summary Get all doctor affiliations.
|
|
12426
12504
|
* @param {string} [hospitalId]
|
|
12427
12505
|
* @param {string} [hospitalName]
|
|
12506
|
+
* @param {string} [specialtyId]
|
|
12428
12507
|
* @param {string} [doctorId]
|
|
12429
12508
|
* @param {string} [doctorName]
|
|
12430
12509
|
* @param {string} [doctorSlug]
|
|
12510
|
+
* @param {string} [exceptDoctorId]
|
|
12511
|
+
* @param {boolean} [consultationEnabled]
|
|
12431
12512
|
* @param {string} [languageCode]
|
|
12432
12513
|
* @param {number} [page]
|
|
12433
12514
|
* @param {number} [limit]
|
|
@@ -12435,7 +12516,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
12435
12516
|
* @param {*} [options] Override http request option.
|
|
12436
12517
|
* @throws {RequiredError}
|
|
12437
12518
|
*/
|
|
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>;
|
|
12519
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: 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
12520
|
/**
|
|
12440
12521
|
*
|
|
12441
12522
|
* @summary Get doctor affiliation.
|
|
@@ -12466,9 +12547,12 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
12466
12547
|
* @summary Get all doctor affiliations.
|
|
12467
12548
|
* @param {string} [hospitalId]
|
|
12468
12549
|
* @param {string} [hospitalName]
|
|
12550
|
+
* @param {string} [specialtyId]
|
|
12469
12551
|
* @param {string} [doctorId]
|
|
12470
12552
|
* @param {string} [doctorName]
|
|
12471
12553
|
* @param {string} [doctorSlug]
|
|
12554
|
+
* @param {string} [exceptDoctorId]
|
|
12555
|
+
* @param {boolean} [consultationEnabled]
|
|
12472
12556
|
* @param {string} [languageCode]
|
|
12473
12557
|
* @param {number} [page]
|
|
12474
12558
|
* @param {number} [limit]
|
|
@@ -12477,7 +12561,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
12477
12561
|
* @throws {RequiredError}
|
|
12478
12562
|
* @memberof DoctorAffiliationsApi
|
|
12479
12563
|
*/
|
|
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>>;
|
|
12564
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, specialtyId?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, exceptDoctorId?: string, consultationEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
12481
12565
|
/**
|
|
12482
12566
|
*
|
|
12483
12567
|
* @summary Get doctor affiliation.
|
|
@@ -16570,6 +16654,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16570
16654
|
*
|
|
16571
16655
|
* @summary Get all ServiceReviews.
|
|
16572
16656
|
* @param {string} [id]
|
|
16657
|
+
* @param {string} [hospitalId]
|
|
16573
16658
|
* @param {string} [serviceId]
|
|
16574
16659
|
* @param {string} [serviceName]
|
|
16575
16660
|
* @param {string} [patientId]
|
|
@@ -16586,7 +16671,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16586
16671
|
* @param {*} [options] Override http request option.
|
|
16587
16672
|
* @throws {RequiredError}
|
|
16588
16673
|
*/
|
|
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>;
|
|
16674
|
+
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
16675
|
/**
|
|
16591
16676
|
*
|
|
16592
16677
|
* @summary Create a ServiceReview.
|
|
@@ -16680,6 +16765,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16680
16765
|
*
|
|
16681
16766
|
* @summary Get all ServiceReviews.
|
|
16682
16767
|
* @param {string} [id]
|
|
16768
|
+
* @param {string} [hospitalId]
|
|
16683
16769
|
* @param {string} [serviceId]
|
|
16684
16770
|
* @param {string} [serviceName]
|
|
16685
16771
|
* @param {string} [patientId]
|
|
@@ -16696,7 +16782,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16696
16782
|
* @param {*} [options] Override http request option.
|
|
16697
16783
|
* @throws {RequiredError}
|
|
16698
16784
|
*/
|
|
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>>;
|
|
16785
|
+
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
16786
|
/**
|
|
16701
16787
|
*
|
|
16702
16788
|
* @summary Create a ServiceReview.
|
|
@@ -16790,6 +16876,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16790
16876
|
*
|
|
16791
16877
|
* @summary Get all ServiceReviews.
|
|
16792
16878
|
* @param {string} [id]
|
|
16879
|
+
* @param {string} [hospitalId]
|
|
16793
16880
|
* @param {string} [serviceId]
|
|
16794
16881
|
* @param {string} [serviceName]
|
|
16795
16882
|
* @param {string} [patientId]
|
|
@@ -16806,7 +16893,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16806
16893
|
* @param {*} [options] Override http request option.
|
|
16807
16894
|
* @throws {RequiredError}
|
|
16808
16895
|
*/
|
|
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>;
|
|
16896
|
+
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
16897
|
/**
|
|
16811
16898
|
*
|
|
16812
16899
|
* @summary Create a ServiceReview.
|
|
@@ -16902,6 +16989,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16902
16989
|
*
|
|
16903
16990
|
* @summary Get all ServiceReviews.
|
|
16904
16991
|
* @param {string} [id]
|
|
16992
|
+
* @param {string} [hospitalId]
|
|
16905
16993
|
* @param {string} [serviceId]
|
|
16906
16994
|
* @param {string} [serviceName]
|
|
16907
16995
|
* @param {string} [patientId]
|
|
@@ -16919,7 +17007,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16919
17007
|
* @throws {RequiredError}
|
|
16920
17008
|
* @memberof ServiceReviewsApi
|
|
16921
17009
|
*/
|
|
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>>;
|
|
17010
|
+
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
17011
|
/**
|
|
16924
17012
|
*
|
|
16925
17013
|
* @summary Create a ServiceReview.
|