ch-api-client-typescript2 3.5.1 → 3.5.4
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 +155 -93
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +62 -27
- package/package.json +1 -1
- package/src/api.ts +186 -104
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}
|
|
@@ -2982,7 +2988,19 @@ export interface CreateServiceReviewCommand {
|
|
|
2982
2988
|
* @type {string}
|
|
2983
2989
|
* @memberof CreateServiceReviewCommand
|
|
2984
2990
|
*/
|
|
2985
|
-
'
|
|
2991
|
+
'name'?: string | null;
|
|
2992
|
+
/**
|
|
2993
|
+
*
|
|
2994
|
+
* @type {string}
|
|
2995
|
+
* @memberof CreateServiceReviewCommand
|
|
2996
|
+
*/
|
|
2997
|
+
'description'?: string | null;
|
|
2998
|
+
/**
|
|
2999
|
+
*
|
|
3000
|
+
* @type {string}
|
|
3001
|
+
* @memberof CreateServiceReviewCommand
|
|
3002
|
+
*/
|
|
3003
|
+
'content'?: string | null;
|
|
2986
3004
|
/**
|
|
2987
3005
|
*
|
|
2988
3006
|
* @type {boolean}
|
|
@@ -3032,6 +3050,12 @@ export interface DealItemModel {
|
|
|
3032
3050
|
* @memberof DealItemModel
|
|
3033
3051
|
*/
|
|
3034
3052
|
'slug'?: string | null;
|
|
3053
|
+
/**
|
|
3054
|
+
*
|
|
3055
|
+
* @type {string}
|
|
3056
|
+
* @memberof DealItemModel
|
|
3057
|
+
*/
|
|
3058
|
+
'description'?: string | null;
|
|
3035
3059
|
/**
|
|
3036
3060
|
*
|
|
3037
3061
|
* @type {boolean}
|
|
@@ -3074,6 +3098,18 @@ export interface DealItemModel {
|
|
|
3074
3098
|
* @memberof DealItemModel
|
|
3075
3099
|
*/
|
|
3076
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;
|
|
3077
3113
|
/**
|
|
3078
3114
|
*
|
|
3079
3115
|
* @type {number}
|
|
@@ -3154,6 +3190,12 @@ export interface DealModel {
|
|
|
3154
3190
|
* @memberof DealModel
|
|
3155
3191
|
*/
|
|
3156
3192
|
'slug'?: string | null;
|
|
3193
|
+
/**
|
|
3194
|
+
*
|
|
3195
|
+
* @type {string}
|
|
3196
|
+
* @memberof DealModel
|
|
3197
|
+
*/
|
|
3198
|
+
'description'?: string | null;
|
|
3157
3199
|
/**
|
|
3158
3200
|
*
|
|
3159
3201
|
* @type {boolean}
|
|
@@ -3201,19 +3243,25 @@ export interface DealModel {
|
|
|
3201
3243
|
* @type {number}
|
|
3202
3244
|
* @memberof DealModel
|
|
3203
3245
|
*/
|
|
3204
|
-
'
|
|
3246
|
+
'lowestPrice'?: number;
|
|
3205
3247
|
/**
|
|
3206
3248
|
*
|
|
3207
|
-
* @type {
|
|
3249
|
+
* @type {number}
|
|
3208
3250
|
* @memberof DealModel
|
|
3209
3251
|
*/
|
|
3210
|
-
'
|
|
3252
|
+
'dealServicesCount'?: number;
|
|
3211
3253
|
/**
|
|
3212
3254
|
*
|
|
3213
|
-
* @type {
|
|
3255
|
+
* @type {number}
|
|
3214
3256
|
* @memberof DealModel
|
|
3215
3257
|
*/
|
|
3216
|
-
'
|
|
3258
|
+
'order'?: number;
|
|
3259
|
+
/**
|
|
3260
|
+
*
|
|
3261
|
+
* @type {AuditableEntity}
|
|
3262
|
+
* @memberof DealModel
|
|
3263
|
+
*/
|
|
3264
|
+
'auditableEntity'?: AuditableEntity;
|
|
3217
3265
|
/**
|
|
3218
3266
|
*
|
|
3219
3267
|
* @type {string}
|
|
@@ -3637,6 +3685,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3637
3685
|
* @memberof DoctorAffiliationItemModel
|
|
3638
3686
|
*/
|
|
3639
3687
|
'hospitalSlug'?: string | null;
|
|
3688
|
+
/**
|
|
3689
|
+
*
|
|
3690
|
+
* @type {string}
|
|
3691
|
+
* @memberof DoctorAffiliationItemModel
|
|
3692
|
+
*/
|
|
3693
|
+
'doctorId'?: string | null;
|
|
3640
3694
|
/**
|
|
3641
3695
|
*
|
|
3642
3696
|
* @type {string}
|
|
@@ -3679,6 +3733,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
3679
3733
|
* @memberof DoctorAffiliationItemModel
|
|
3680
3734
|
*/
|
|
3681
3735
|
'consultationFee'?: number | null;
|
|
3736
|
+
/**
|
|
3737
|
+
*
|
|
3738
|
+
* @type {string}
|
|
3739
|
+
* @memberof DoctorAffiliationItemModel
|
|
3740
|
+
*/
|
|
3741
|
+
'specialtiesSummerized'?: string | null;
|
|
3682
3742
|
/**
|
|
3683
3743
|
*
|
|
3684
3744
|
* @type {number}
|
|
@@ -3722,6 +3782,12 @@ export interface DoctorAffiliationModel {
|
|
|
3722
3782
|
* @memberof DoctorAffiliationModel
|
|
3723
3783
|
*/
|
|
3724
3784
|
'hospitalSlug'?: string | null;
|
|
3785
|
+
/**
|
|
3786
|
+
*
|
|
3787
|
+
* @type {string}
|
|
3788
|
+
* @memberof DoctorAffiliationModel
|
|
3789
|
+
*/
|
|
3790
|
+
'doctorId'?: string | null;
|
|
3725
3791
|
/**
|
|
3726
3792
|
*
|
|
3727
3793
|
* @type {string}
|
|
@@ -3764,6 +3830,12 @@ export interface DoctorAffiliationModel {
|
|
|
3764
3830
|
* @memberof DoctorAffiliationModel
|
|
3765
3831
|
*/
|
|
3766
3832
|
'consultationFee'?: number | null;
|
|
3833
|
+
/**
|
|
3834
|
+
*
|
|
3835
|
+
* @type {string}
|
|
3836
|
+
* @memberof DoctorAffiliationModel
|
|
3837
|
+
*/
|
|
3838
|
+
'specialtiesSummerized'?: string | null;
|
|
3767
3839
|
/**
|
|
3768
3840
|
*
|
|
3769
3841
|
* @type {number}
|
|
@@ -5824,6 +5896,18 @@ export interface HospitalServiceItemModel {
|
|
|
5824
5896
|
* @memberof HospitalServiceItemModel
|
|
5825
5897
|
*/
|
|
5826
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;
|
|
5827
5911
|
/**
|
|
5828
5912
|
*
|
|
5829
5913
|
* @type {number}
|
|
@@ -7949,36 +8033,6 @@ export interface ServiceReviewItemModel {
|
|
|
7949
8033
|
* @memberof ServiceReviewItemModel
|
|
7950
8034
|
*/
|
|
7951
8035
|
'patientName'?: string | null;
|
|
7952
|
-
/**
|
|
7953
|
-
*
|
|
7954
|
-
* @type {Gender}
|
|
7955
|
-
* @memberof ServiceReviewItemModel
|
|
7956
|
-
*/
|
|
7957
|
-
'patientGender'?: Gender;
|
|
7958
|
-
/**
|
|
7959
|
-
*
|
|
7960
|
-
* @type {string}
|
|
7961
|
-
* @memberof ServiceReviewItemModel
|
|
7962
|
-
*/
|
|
7963
|
-
'patientPhoto'?: string | null;
|
|
7964
|
-
/**
|
|
7965
|
-
*
|
|
7966
|
-
* @type {string}
|
|
7967
|
-
* @memberof ServiceReviewItemModel
|
|
7968
|
-
*/
|
|
7969
|
-
'patientPhotoThumbnail'?: string | null;
|
|
7970
|
-
/**
|
|
7971
|
-
*
|
|
7972
|
-
* @type {Date}
|
|
7973
|
-
* @memberof ServiceReviewItemModel
|
|
7974
|
-
*/
|
|
7975
|
-
'patientCreatedDate'?: Date | null;
|
|
7976
|
-
/**
|
|
7977
|
-
*
|
|
7978
|
-
* @type {string}
|
|
7979
|
-
* @memberof ServiceReviewItemModel
|
|
7980
|
-
*/
|
|
7981
|
-
'body'?: string | null;
|
|
7982
8036
|
/**
|
|
7983
8037
|
*
|
|
7984
8038
|
* @type {boolean}
|
|
@@ -8076,36 +8130,6 @@ export interface ServiceReviewModel {
|
|
|
8076
8130
|
* @memberof ServiceReviewModel
|
|
8077
8131
|
*/
|
|
8078
8132
|
'patientName'?: string | null;
|
|
8079
|
-
/**
|
|
8080
|
-
*
|
|
8081
|
-
* @type {Gender}
|
|
8082
|
-
* @memberof ServiceReviewModel
|
|
8083
|
-
*/
|
|
8084
|
-
'patientGender'?: Gender;
|
|
8085
|
-
/**
|
|
8086
|
-
*
|
|
8087
|
-
* @type {string}
|
|
8088
|
-
* @memberof ServiceReviewModel
|
|
8089
|
-
*/
|
|
8090
|
-
'patientPhoto'?: string | null;
|
|
8091
|
-
/**
|
|
8092
|
-
*
|
|
8093
|
-
* @type {string}
|
|
8094
|
-
* @memberof ServiceReviewModel
|
|
8095
|
-
*/
|
|
8096
|
-
'patientPhotoThumbnail'?: string | null;
|
|
8097
|
-
/**
|
|
8098
|
-
*
|
|
8099
|
-
* @type {Date}
|
|
8100
|
-
* @memberof ServiceReviewModel
|
|
8101
|
-
*/
|
|
8102
|
-
'patientCreatedDate'?: Date | null;
|
|
8103
|
-
/**
|
|
8104
|
-
*
|
|
8105
|
-
* @type {string}
|
|
8106
|
-
* @memberof ServiceReviewModel
|
|
8107
|
-
*/
|
|
8108
|
-
'body'?: string | null;
|
|
8109
8133
|
/**
|
|
8110
8134
|
*
|
|
8111
8135
|
* @type {boolean}
|
|
@@ -9208,25 +9232,43 @@ export interface UpdateServiceReviewCommand {
|
|
|
9208
9232
|
* @type {string}
|
|
9209
9233
|
* @memberof UpdateServiceReviewCommand
|
|
9210
9234
|
*/
|
|
9211
|
-
'
|
|
9235
|
+
'name'?: string | null;
|
|
9212
9236
|
/**
|
|
9213
9237
|
*
|
|
9214
|
-
* @type {
|
|
9238
|
+
* @type {string}
|
|
9215
9239
|
* @memberof UpdateServiceReviewCommand
|
|
9216
9240
|
*/
|
|
9217
|
-
'
|
|
9241
|
+
'slug'?: string | null;
|
|
9218
9242
|
/**
|
|
9219
9243
|
*
|
|
9220
|
-
* @type {
|
|
9244
|
+
* @type {string}
|
|
9221
9245
|
* @memberof UpdateServiceReviewCommand
|
|
9222
9246
|
*/
|
|
9223
|
-
'
|
|
9247
|
+
'description'?: string | null;
|
|
9248
|
+
/**
|
|
9249
|
+
*
|
|
9250
|
+
* @type {string}
|
|
9251
|
+
* @memberof UpdateServiceReviewCommand
|
|
9252
|
+
*/
|
|
9253
|
+
'content'?: string | null;
|
|
9224
9254
|
/**
|
|
9225
9255
|
*
|
|
9226
9256
|
* @type {string}
|
|
9227
9257
|
* @memberof UpdateServiceReviewCommand
|
|
9228
9258
|
*/
|
|
9229
9259
|
'languageCode'?: string | null;
|
|
9260
|
+
/**
|
|
9261
|
+
*
|
|
9262
|
+
* @type {boolean}
|
|
9263
|
+
* @memberof UpdateServiceReviewCommand
|
|
9264
|
+
*/
|
|
9265
|
+
'recommended'?: boolean | null;
|
|
9266
|
+
/**
|
|
9267
|
+
*
|
|
9268
|
+
* @type {number}
|
|
9269
|
+
* @memberof UpdateServiceReviewCommand
|
|
9270
|
+
*/
|
|
9271
|
+
'rate'?: number | null;
|
|
9230
9272
|
/**
|
|
9231
9273
|
*
|
|
9232
9274
|
* @type {boolean}
|
|
@@ -12380,6 +12422,9 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
12380
12422
|
* @param {string} [doctorId]
|
|
12381
12423
|
* @param {string} [doctorName]
|
|
12382
12424
|
* @param {string} [doctorSlug]
|
|
12425
|
+
* @param {string} [specialtyId]
|
|
12426
|
+
* @param {string} [exceptDoctorId]
|
|
12427
|
+
* @param {boolean} [consultationEnabled]
|
|
12383
12428
|
* @param {string} [languageCode]
|
|
12384
12429
|
* @param {number} [page]
|
|
12385
12430
|
* @param {number} [limit]
|
|
@@ -12387,7 +12432,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
12387
12432
|
* @param {*} [options] Override http request option.
|
|
12388
12433
|
* @throws {RequiredError}
|
|
12389
12434
|
*/
|
|
12390
|
-
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, 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>;
|
|
12391
12436
|
/**
|
|
12392
12437
|
*
|
|
12393
12438
|
* @summary Get doctor affiliation.
|
|
@@ -12419,6 +12464,9 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
12419
12464
|
* @param {string} [doctorId]
|
|
12420
12465
|
* @param {string} [doctorName]
|
|
12421
12466
|
* @param {string} [doctorSlug]
|
|
12467
|
+
* @param {string} [specialtyId]
|
|
12468
|
+
* @param {string} [exceptDoctorId]
|
|
12469
|
+
* @param {boolean} [consultationEnabled]
|
|
12422
12470
|
* @param {string} [languageCode]
|
|
12423
12471
|
* @param {number} [page]
|
|
12424
12472
|
* @param {number} [limit]
|
|
@@ -12426,7 +12474,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
12426
12474
|
* @param {*} [options] Override http request option.
|
|
12427
12475
|
* @throws {RequiredError}
|
|
12428
12476
|
*/
|
|
12429
|
-
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, 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>>;
|
|
12430
12478
|
/**
|
|
12431
12479
|
*
|
|
12432
12480
|
* @summary Get doctor affiliation.
|
|
@@ -12458,6 +12506,9 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
12458
12506
|
* @param {string} [doctorId]
|
|
12459
12507
|
* @param {string} [doctorName]
|
|
12460
12508
|
* @param {string} [doctorSlug]
|
|
12509
|
+
* @param {string} [specialtyId]
|
|
12510
|
+
* @param {string} [exceptDoctorId]
|
|
12511
|
+
* @param {boolean} [consultationEnabled]
|
|
12461
12512
|
* @param {string} [languageCode]
|
|
12462
12513
|
* @param {number} [page]
|
|
12463
12514
|
* @param {number} [limit]
|
|
@@ -12465,7 +12516,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
12465
12516
|
* @param {*} [options] Override http request option.
|
|
12466
12517
|
* @throws {RequiredError}
|
|
12467
12518
|
*/
|
|
12468
|
-
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, 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>;
|
|
12469
12520
|
/**
|
|
12470
12521
|
*
|
|
12471
12522
|
* @summary Get doctor affiliation.
|
|
@@ -12499,6 +12550,9 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
12499
12550
|
* @param {string} [doctorId]
|
|
12500
12551
|
* @param {string} [doctorName]
|
|
12501
12552
|
* @param {string} [doctorSlug]
|
|
12553
|
+
* @param {string} [specialtyId]
|
|
12554
|
+
* @param {string} [exceptDoctorId]
|
|
12555
|
+
* @param {boolean} [consultationEnabled]
|
|
12502
12556
|
* @param {string} [languageCode]
|
|
12503
12557
|
* @param {number} [page]
|
|
12504
12558
|
* @param {number} [limit]
|
|
@@ -12507,7 +12561,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
|
12507
12561
|
* @throws {RequiredError}
|
|
12508
12562
|
* @memberof DoctorAffiliationsApi
|
|
12509
12563
|
*/
|
|
12510
|
-
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, 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>>;
|
|
12511
12565
|
/**
|
|
12512
12566
|
*
|
|
12513
12567
|
* @summary Get doctor affiliation.
|
|
@@ -16599,6 +16653,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16599
16653
|
/**
|
|
16600
16654
|
*
|
|
16601
16655
|
* @summary Get all ServiceReviews.
|
|
16656
|
+
* @param {string} [id]
|
|
16602
16657
|
* @param {string} [hospitalId]
|
|
16603
16658
|
* @param {string} [serviceId]
|
|
16604
16659
|
* @param {string} [serviceName]
|
|
@@ -16609,14 +16664,14 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16609
16664
|
* @param {number} [rate]
|
|
16610
16665
|
* @param {ReviewType} [reviewType]
|
|
16611
16666
|
* @param {string} [languageCode]
|
|
16612
|
-
* @param {boolean} [
|
|
16667
|
+
* @param {boolean} [showHidden]
|
|
16613
16668
|
* @param {number} [page]
|
|
16614
16669
|
* @param {number} [limit]
|
|
16615
16670
|
* @param {Date} [lastRetrieved]
|
|
16616
16671
|
* @param {*} [options] Override http request option.
|
|
16617
16672
|
* @throws {RequiredError}
|
|
16618
16673
|
*/
|
|
16619
|
-
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,
|
|
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>;
|
|
16620
16675
|
/**
|
|
16621
16676
|
*
|
|
16622
16677
|
* @summary Create a ServiceReview.
|
|
@@ -16636,10 +16691,11 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
16636
16691
|
/**
|
|
16637
16692
|
*
|
|
16638
16693
|
* @param {string} serviceReviewId
|
|
16694
|
+
* @param {string} [languageCode]
|
|
16639
16695
|
* @param {*} [options] Override http request option.
|
|
16640
16696
|
* @throws {RequiredError}
|
|
16641
16697
|
*/
|
|
16642
|
-
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16698
|
+
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16643
16699
|
/**
|
|
16644
16700
|
*
|
|
16645
16701
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -16708,6 +16764,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16708
16764
|
/**
|
|
16709
16765
|
*
|
|
16710
16766
|
* @summary Get all ServiceReviews.
|
|
16767
|
+
* @param {string} [id]
|
|
16711
16768
|
* @param {string} [hospitalId]
|
|
16712
16769
|
* @param {string} [serviceId]
|
|
16713
16770
|
* @param {string} [serviceName]
|
|
@@ -16718,14 +16775,14 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16718
16775
|
* @param {number} [rate]
|
|
16719
16776
|
* @param {ReviewType} [reviewType]
|
|
16720
16777
|
* @param {string} [languageCode]
|
|
16721
|
-
* @param {boolean} [
|
|
16778
|
+
* @param {boolean} [showHidden]
|
|
16722
16779
|
* @param {number} [page]
|
|
16723
16780
|
* @param {number} [limit]
|
|
16724
16781
|
* @param {Date} [lastRetrieved]
|
|
16725
16782
|
* @param {*} [options] Override http request option.
|
|
16726
16783
|
* @throws {RequiredError}
|
|
16727
16784
|
*/
|
|
16728
|
-
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,
|
|
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>>;
|
|
16729
16786
|
/**
|
|
16730
16787
|
*
|
|
16731
16788
|
* @summary Create a ServiceReview.
|
|
@@ -16745,10 +16802,11 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
16745
16802
|
/**
|
|
16746
16803
|
*
|
|
16747
16804
|
* @param {string} serviceReviewId
|
|
16805
|
+
* @param {string} [languageCode]
|
|
16748
16806
|
* @param {*} [options] Override http request option.
|
|
16749
16807
|
* @throws {RequiredError}
|
|
16750
16808
|
*/
|
|
16751
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
16809
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
16752
16810
|
/**
|
|
16753
16811
|
*
|
|
16754
16812
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -16817,6 +16875,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16817
16875
|
/**
|
|
16818
16876
|
*
|
|
16819
16877
|
* @summary Get all ServiceReviews.
|
|
16878
|
+
* @param {string} [id]
|
|
16820
16879
|
* @param {string} [hospitalId]
|
|
16821
16880
|
* @param {string} [serviceId]
|
|
16822
16881
|
* @param {string} [serviceName]
|
|
@@ -16827,14 +16886,14 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16827
16886
|
* @param {number} [rate]
|
|
16828
16887
|
* @param {ReviewType} [reviewType]
|
|
16829
16888
|
* @param {string} [languageCode]
|
|
16830
|
-
* @param {boolean} [
|
|
16889
|
+
* @param {boolean} [showHidden]
|
|
16831
16890
|
* @param {number} [page]
|
|
16832
16891
|
* @param {number} [limit]
|
|
16833
16892
|
* @param {Date} [lastRetrieved]
|
|
16834
16893
|
* @param {*} [options] Override http request option.
|
|
16835
16894
|
* @throws {RequiredError}
|
|
16836
16895
|
*/
|
|
16837
|
-
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,
|
|
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>;
|
|
16838
16897
|
/**
|
|
16839
16898
|
*
|
|
16840
16899
|
* @summary Create a ServiceReview.
|
|
@@ -16854,10 +16913,11 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
16854
16913
|
/**
|
|
16855
16914
|
*
|
|
16856
16915
|
* @param {string} serviceReviewId
|
|
16916
|
+
* @param {string} [languageCode]
|
|
16857
16917
|
* @param {*} [options] Override http request option.
|
|
16858
16918
|
* @throws {RequiredError}
|
|
16859
16919
|
*/
|
|
16860
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
16920
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
16861
16921
|
/**
|
|
16862
16922
|
*
|
|
16863
16923
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -16928,6 +16988,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16928
16988
|
/**
|
|
16929
16989
|
*
|
|
16930
16990
|
* @summary Get all ServiceReviews.
|
|
16991
|
+
* @param {string} [id]
|
|
16931
16992
|
* @param {string} [hospitalId]
|
|
16932
16993
|
* @param {string} [serviceId]
|
|
16933
16994
|
* @param {string} [serviceName]
|
|
@@ -16938,7 +16999,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16938
16999
|
* @param {number} [rate]
|
|
16939
17000
|
* @param {ReviewType} [reviewType]
|
|
16940
17001
|
* @param {string} [languageCode]
|
|
16941
|
-
* @param {boolean} [
|
|
17002
|
+
* @param {boolean} [showHidden]
|
|
16942
17003
|
* @param {number} [page]
|
|
16943
17004
|
* @param {number} [limit]
|
|
16944
17005
|
* @param {Date} [lastRetrieved]
|
|
@@ -16946,7 +17007,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16946
17007
|
* @throws {RequiredError}
|
|
16947
17008
|
* @memberof ServiceReviewsApi
|
|
16948
17009
|
*/
|
|
16949
|
-
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string,
|
|
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>>;
|
|
16950
17011
|
/**
|
|
16951
17012
|
*
|
|
16952
17013
|
* @summary Create a ServiceReview.
|
|
@@ -16968,11 +17029,12 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
16968
17029
|
/**
|
|
16969
17030
|
*
|
|
16970
17031
|
* @param {string} serviceReviewId
|
|
17032
|
+
* @param {string} [languageCode]
|
|
16971
17033
|
* @param {*} [options] Override http request option.
|
|
16972
17034
|
* @throws {RequiredError}
|
|
16973
17035
|
* @memberof ServiceReviewsApi
|
|
16974
17036
|
*/
|
|
16975
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
17037
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
16976
17038
|
/**
|
|
16977
17039
|
*
|
|
16978
17040
|
* @summary Get all ServiceReviewMedias.
|