ch-api-client-typescript2 3.1.3 → 3.2.0
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 +311 -9
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +407 -14
- package/package.json +1 -1
- package/src/api.ts +515 -15
package/lib/api.d.ts
CHANGED
|
@@ -3279,6 +3279,12 @@ export interface DealItemModel {
|
|
|
3279
3279
|
* @memberof DealItemModel
|
|
3280
3280
|
*/
|
|
3281
3281
|
'serviceDuration'?: number;
|
|
3282
|
+
/**
|
|
3283
|
+
*
|
|
3284
|
+
* @type {number}
|
|
3285
|
+
* @memberof DealItemModel
|
|
3286
|
+
*/
|
|
3287
|
+
'order'?: number;
|
|
3282
3288
|
/**
|
|
3283
3289
|
*
|
|
3284
3290
|
* @type {MarketingType}
|
|
@@ -3370,6 +3376,12 @@ export interface DealItemSimpleModel {
|
|
|
3370
3376
|
* @memberof DealItemSimpleModel
|
|
3371
3377
|
*/
|
|
3372
3378
|
'hospitalName'?: string | null;
|
|
3379
|
+
/**
|
|
3380
|
+
*
|
|
3381
|
+
* @type {number}
|
|
3382
|
+
* @memberof DealItemSimpleModel
|
|
3383
|
+
*/
|
|
3384
|
+
'order'?: number;
|
|
3373
3385
|
/**
|
|
3374
3386
|
*
|
|
3375
3387
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -3467,6 +3479,12 @@ export interface DealModel {
|
|
|
3467
3479
|
* @memberof DealModel
|
|
3468
3480
|
*/
|
|
3469
3481
|
'serviceDuration'?: number;
|
|
3482
|
+
/**
|
|
3483
|
+
*
|
|
3484
|
+
* @type {number}
|
|
3485
|
+
* @memberof DealModel
|
|
3486
|
+
*/
|
|
3487
|
+
'order'?: number;
|
|
3470
3488
|
/**
|
|
3471
3489
|
*
|
|
3472
3490
|
* @type {MarketingType}
|
|
@@ -8691,12 +8709,24 @@ export interface ServiceReviewItemModel {
|
|
|
8691
8709
|
* @memberof ServiceReviewItemModel
|
|
8692
8710
|
*/
|
|
8693
8711
|
'reviewType'?: ReviewType;
|
|
8712
|
+
/**
|
|
8713
|
+
*
|
|
8714
|
+
* @type {boolean}
|
|
8715
|
+
* @memberof ServiceReviewItemModel
|
|
8716
|
+
*/
|
|
8717
|
+
'confirmed'?: boolean;
|
|
8694
8718
|
/**
|
|
8695
8719
|
*
|
|
8696
8720
|
* @type {Array<MediaModel>}
|
|
8697
8721
|
* @memberof ServiceReviewItemModel
|
|
8698
8722
|
*/
|
|
8699
8723
|
'medias'?: Array<MediaModel> | null;
|
|
8724
|
+
/**
|
|
8725
|
+
*
|
|
8726
|
+
* @type {AuditableEntity}
|
|
8727
|
+
* @memberof ServiceReviewItemModel
|
|
8728
|
+
*/
|
|
8729
|
+
'auditableEntity'?: AuditableEntity;
|
|
8700
8730
|
}
|
|
8701
8731
|
/**
|
|
8702
8732
|
*
|
|
@@ -8782,12 +8812,24 @@ export interface ServiceReviewModel {
|
|
|
8782
8812
|
* @memberof ServiceReviewModel
|
|
8783
8813
|
*/
|
|
8784
8814
|
'reviewType'?: ReviewType;
|
|
8815
|
+
/**
|
|
8816
|
+
*
|
|
8817
|
+
* @type {boolean}
|
|
8818
|
+
* @memberof ServiceReviewModel
|
|
8819
|
+
*/
|
|
8820
|
+
'confirmed'?: boolean;
|
|
8785
8821
|
/**
|
|
8786
8822
|
*
|
|
8787
8823
|
* @type {Array<MediaModel>}
|
|
8788
8824
|
* @memberof ServiceReviewModel
|
|
8789
8825
|
*/
|
|
8790
8826
|
'medias'?: Array<MediaModel> | null;
|
|
8827
|
+
/**
|
|
8828
|
+
*
|
|
8829
|
+
* @type {AuditableEntity}
|
|
8830
|
+
* @memberof ServiceReviewModel
|
|
8831
|
+
*/
|
|
8832
|
+
'auditableEntity'?: AuditableEntity;
|
|
8791
8833
|
}
|
|
8792
8834
|
/**
|
|
8793
8835
|
*
|
|
@@ -8868,7 +8910,8 @@ export declare enum SnsType {
|
|
|
8868
8910
|
Facebook = "Facebook",
|
|
8869
8911
|
Instagram = "Instagram",
|
|
8870
8912
|
LinkedIn = "LinkedIn",
|
|
8871
|
-
Youtube = "Youtube"
|
|
8913
|
+
Youtube = "Youtube",
|
|
8914
|
+
KakaoTalk = "KakaoTalk"
|
|
8872
8915
|
}
|
|
8873
8916
|
/**
|
|
8874
8917
|
*
|
|
@@ -8920,6 +8963,25 @@ export interface SpecialtiesModel {
|
|
|
8920
8963
|
*/
|
|
8921
8964
|
'metaData'?: PagedListMetaData;
|
|
8922
8965
|
}
|
|
8966
|
+
/**
|
|
8967
|
+
*
|
|
8968
|
+
* @export
|
|
8969
|
+
* @interface SpecialtiesSimpleModel
|
|
8970
|
+
*/
|
|
8971
|
+
export interface SpecialtiesSimpleModel {
|
|
8972
|
+
/**
|
|
8973
|
+
*
|
|
8974
|
+
* @type {Array<SpecialtyItemSimpleModel>}
|
|
8975
|
+
* @memberof SpecialtiesSimpleModel
|
|
8976
|
+
*/
|
|
8977
|
+
'items'?: Array<SpecialtyItemSimpleModel> | null;
|
|
8978
|
+
/**
|
|
8979
|
+
*
|
|
8980
|
+
* @type {PagedListMetaData}
|
|
8981
|
+
* @memberof SpecialtiesSimpleModel
|
|
8982
|
+
*/
|
|
8983
|
+
'metaData'?: PagedListMetaData;
|
|
8984
|
+
}
|
|
8923
8985
|
/**
|
|
8924
8986
|
*
|
|
8925
8987
|
* @export
|
|
@@ -9011,6 +9073,43 @@ export interface SpecialtyItemModel {
|
|
|
9011
9073
|
*/
|
|
9012
9074
|
'medias'?: Array<MediaModel> | null;
|
|
9013
9075
|
}
|
|
9076
|
+
/**
|
|
9077
|
+
*
|
|
9078
|
+
* @export
|
|
9079
|
+
* @interface SpecialtyItemSimpleModel
|
|
9080
|
+
*/
|
|
9081
|
+
export interface SpecialtyItemSimpleModel {
|
|
9082
|
+
/**
|
|
9083
|
+
*
|
|
9084
|
+
* @type {string}
|
|
9085
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9086
|
+
*/
|
|
9087
|
+
'id'?: string;
|
|
9088
|
+
/**
|
|
9089
|
+
*
|
|
9090
|
+
* @type {string}
|
|
9091
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9092
|
+
*/
|
|
9093
|
+
'name'?: string | null;
|
|
9094
|
+
/**
|
|
9095
|
+
*
|
|
9096
|
+
* @type {string}
|
|
9097
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9098
|
+
*/
|
|
9099
|
+
'slug'?: string | null;
|
|
9100
|
+
/**
|
|
9101
|
+
*
|
|
9102
|
+
* @type {string}
|
|
9103
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9104
|
+
*/
|
|
9105
|
+
'specialtyTypeId'?: string;
|
|
9106
|
+
/**
|
|
9107
|
+
*
|
|
9108
|
+
* @type {boolean}
|
|
9109
|
+
* @memberof SpecialtyItemSimpleModel
|
|
9110
|
+
*/
|
|
9111
|
+
'confirmed'?: boolean;
|
|
9112
|
+
}
|
|
9014
9113
|
/**
|
|
9015
9114
|
*
|
|
9016
9115
|
* @export
|
|
@@ -9819,6 +9918,18 @@ export interface UpdateServiceReviewCommand {
|
|
|
9819
9918
|
* @memberof UpdateServiceReviewCommand
|
|
9820
9919
|
*/
|
|
9821
9920
|
'rate'?: number | null;
|
|
9921
|
+
/**
|
|
9922
|
+
*
|
|
9923
|
+
* @type {string}
|
|
9924
|
+
* @memberof UpdateServiceReviewCommand
|
|
9925
|
+
*/
|
|
9926
|
+
'languageCode'?: string | null;
|
|
9927
|
+
/**
|
|
9928
|
+
*
|
|
9929
|
+
* @type {boolean}
|
|
9930
|
+
* @memberof UpdateServiceReviewCommand
|
|
9931
|
+
*/
|
|
9932
|
+
'confirmed'?: boolean;
|
|
9822
9933
|
}
|
|
9823
9934
|
/**
|
|
9824
9935
|
*
|
|
@@ -14657,6 +14768,30 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14657
14768
|
* @throws {RequiredError}
|
|
14658
14769
|
*/
|
|
14659
14770
|
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14771
|
+
/**
|
|
14772
|
+
*
|
|
14773
|
+
* @summary Get all HospitalServiceMedias.
|
|
14774
|
+
* @param {string} hospitalId
|
|
14775
|
+
* @param {string} hospitalSpecialtyId
|
|
14776
|
+
* @param {string} [id]
|
|
14777
|
+
* @param {MediaType} [mediaType]
|
|
14778
|
+
* @param {number} [page]
|
|
14779
|
+
* @param {number} [limit]
|
|
14780
|
+
* @param {Date} [lastRetrieved]
|
|
14781
|
+
* @param {*} [options] Override http request option.
|
|
14782
|
+
* @throws {RequiredError}
|
|
14783
|
+
*/
|
|
14784
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet: (hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14785
|
+
/**
|
|
14786
|
+
*
|
|
14787
|
+
* @summary Get HospitalServiceMedia.
|
|
14788
|
+
* @param {string} hospitalId
|
|
14789
|
+
* @param {string} hospitalSpecialtyId
|
|
14790
|
+
* @param {string} mediaId
|
|
14791
|
+
* @param {*} [options] Override http request option.
|
|
14792
|
+
* @throws {RequiredError}
|
|
14793
|
+
*/
|
|
14794
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet: (hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14660
14795
|
/**
|
|
14661
14796
|
*
|
|
14662
14797
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15015,6 +15150,30 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15015
15150
|
* @throws {RequiredError}
|
|
15016
15151
|
*/
|
|
15017
15152
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
15153
|
+
/**
|
|
15154
|
+
*
|
|
15155
|
+
* @summary Get all HospitalServiceMedias.
|
|
15156
|
+
* @param {string} hospitalId
|
|
15157
|
+
* @param {string} hospitalSpecialtyId
|
|
15158
|
+
* @param {string} [id]
|
|
15159
|
+
* @param {MediaType} [mediaType]
|
|
15160
|
+
* @param {number} [page]
|
|
15161
|
+
* @param {number} [limit]
|
|
15162
|
+
* @param {Date} [lastRetrieved]
|
|
15163
|
+
* @param {*} [options] Override http request option.
|
|
15164
|
+
* @throws {RequiredError}
|
|
15165
|
+
*/
|
|
15166
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15167
|
+
/**
|
|
15168
|
+
*
|
|
15169
|
+
* @summary Get HospitalServiceMedia.
|
|
15170
|
+
* @param {string} hospitalId
|
|
15171
|
+
* @param {string} hospitalSpecialtyId
|
|
15172
|
+
* @param {string} mediaId
|
|
15173
|
+
* @param {*} [options] Override http request option.
|
|
15174
|
+
* @throws {RequiredError}
|
|
15175
|
+
*/
|
|
15176
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15018
15177
|
/**
|
|
15019
15178
|
*
|
|
15020
15179
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15373,6 +15532,30 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15373
15532
|
* @throws {RequiredError}
|
|
15374
15533
|
*/
|
|
15375
15534
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
15535
|
+
/**
|
|
15536
|
+
*
|
|
15537
|
+
* @summary Get all HospitalServiceMedias.
|
|
15538
|
+
* @param {string} hospitalId
|
|
15539
|
+
* @param {string} hospitalSpecialtyId
|
|
15540
|
+
* @param {string} [id]
|
|
15541
|
+
* @param {MediaType} [mediaType]
|
|
15542
|
+
* @param {number} [page]
|
|
15543
|
+
* @param {number} [limit]
|
|
15544
|
+
* @param {Date} [lastRetrieved]
|
|
15545
|
+
* @param {*} [options] Override http request option.
|
|
15546
|
+
* @throws {RequiredError}
|
|
15547
|
+
*/
|
|
15548
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
15549
|
+
/**
|
|
15550
|
+
*
|
|
15551
|
+
* @summary Get HospitalServiceMedia.
|
|
15552
|
+
* @param {string} hospitalId
|
|
15553
|
+
* @param {string} hospitalSpecialtyId
|
|
15554
|
+
* @param {string} mediaId
|
|
15555
|
+
* @param {*} [options] Override http request option.
|
|
15556
|
+
* @throws {RequiredError}
|
|
15557
|
+
*/
|
|
15558
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
15376
15559
|
/**
|
|
15377
15560
|
*
|
|
15378
15561
|
* @summary Get all HospitalSpecialties.
|
|
@@ -15748,6 +15931,32 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15748
15931
|
* @memberof HospitalsApi
|
|
15749
15932
|
*/
|
|
15750
15933
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
15934
|
+
/**
|
|
15935
|
+
*
|
|
15936
|
+
* @summary Get all HospitalServiceMedias.
|
|
15937
|
+
* @param {string} hospitalId
|
|
15938
|
+
* @param {string} hospitalSpecialtyId
|
|
15939
|
+
* @param {string} [id]
|
|
15940
|
+
* @param {MediaType} [mediaType]
|
|
15941
|
+
* @param {number} [page]
|
|
15942
|
+
* @param {number} [limit]
|
|
15943
|
+
* @param {Date} [lastRetrieved]
|
|
15944
|
+
* @param {*} [options] Override http request option.
|
|
15945
|
+
* @throws {RequiredError}
|
|
15946
|
+
* @memberof HospitalsApi
|
|
15947
|
+
*/
|
|
15948
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasGet(hospitalId: string, hospitalSpecialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
15949
|
+
/**
|
|
15950
|
+
*
|
|
15951
|
+
* @summary Get HospitalServiceMedia.
|
|
15952
|
+
* @param {string} hospitalId
|
|
15953
|
+
* @param {string} hospitalSpecialtyId
|
|
15954
|
+
* @param {string} mediaId
|
|
15955
|
+
* @param {*} [options] Override http request option.
|
|
15956
|
+
* @throws {RequiredError}
|
|
15957
|
+
* @memberof HospitalsApi
|
|
15958
|
+
*/
|
|
15959
|
+
apiV2HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasMediaIdGet(hospitalId: string, hospitalSpecialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
15751
15960
|
/**
|
|
15752
15961
|
*
|
|
15753
15962
|
* @summary Get all HospitalSpecialties.
|
|
@@ -17397,13 +17606,15 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
17397
17606
|
* @param {boolean} [recommended]
|
|
17398
17607
|
* @param {number} [rate]
|
|
17399
17608
|
* @param {ReviewType} [reviewType]
|
|
17609
|
+
* @param {string} [languageCode]
|
|
17610
|
+
* @param {boolean} [returnDefaultValue]
|
|
17400
17611
|
* @param {number} [page]
|
|
17401
17612
|
* @param {number} [limit]
|
|
17402
17613
|
* @param {Date} [lastRetrieved]
|
|
17403
17614
|
* @param {*} [options] Override http request option.
|
|
17404
17615
|
* @throws {RequiredError}
|
|
17405
17616
|
*/
|
|
17406
|
-
apiV2ServicereviewsGet: (hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17617
|
+
apiV2ServicereviewsGet: (hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17407
17618
|
/**
|
|
17408
17619
|
*
|
|
17409
17620
|
* @summary Create a ServiceReview.
|
|
@@ -17423,10 +17634,12 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
17423
17634
|
/**
|
|
17424
17635
|
*
|
|
17425
17636
|
* @param {string} serviceReviewId
|
|
17637
|
+
* @param {string} [languageCode]
|
|
17638
|
+
* @param {boolean} [returnDefaultValue]
|
|
17426
17639
|
* @param {*} [options] Override http request option.
|
|
17427
17640
|
* @throws {RequiredError}
|
|
17428
17641
|
*/
|
|
17429
|
-
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17642
|
+
apiV2ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17430
17643
|
/**
|
|
17431
17644
|
*
|
|
17432
17645
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -17504,13 +17717,15 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
17504
17717
|
* @param {boolean} [recommended]
|
|
17505
17718
|
* @param {number} [rate]
|
|
17506
17719
|
* @param {ReviewType} [reviewType]
|
|
17720
|
+
* @param {string} [languageCode]
|
|
17721
|
+
* @param {boolean} [returnDefaultValue]
|
|
17507
17722
|
* @param {number} [page]
|
|
17508
17723
|
* @param {number} [limit]
|
|
17509
17724
|
* @param {Date} [lastRetrieved]
|
|
17510
17725
|
* @param {*} [options] Override http request option.
|
|
17511
17726
|
* @throws {RequiredError}
|
|
17512
17727
|
*/
|
|
17513
|
-
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
17728
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
17514
17729
|
/**
|
|
17515
17730
|
*
|
|
17516
17731
|
* @summary Create a ServiceReview.
|
|
@@ -17530,10 +17745,12 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
17530
17745
|
/**
|
|
17531
17746
|
*
|
|
17532
17747
|
* @param {string} serviceReviewId
|
|
17748
|
+
* @param {string} [languageCode]
|
|
17749
|
+
* @param {boolean} [returnDefaultValue]
|
|
17533
17750
|
* @param {*} [options] Override http request option.
|
|
17534
17751
|
* @throws {RequiredError}
|
|
17535
17752
|
*/
|
|
17536
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
17753
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
17537
17754
|
/**
|
|
17538
17755
|
*
|
|
17539
17756
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -17611,13 +17828,15 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
17611
17828
|
* @param {boolean} [recommended]
|
|
17612
17829
|
* @param {number} [rate]
|
|
17613
17830
|
* @param {ReviewType} [reviewType]
|
|
17831
|
+
* @param {string} [languageCode]
|
|
17832
|
+
* @param {boolean} [returnDefaultValue]
|
|
17614
17833
|
* @param {number} [page]
|
|
17615
17834
|
* @param {number} [limit]
|
|
17616
17835
|
* @param {Date} [lastRetrieved]
|
|
17617
17836
|
* @param {*} [options] Override http request option.
|
|
17618
17837
|
* @throws {RequiredError}
|
|
17619
17838
|
*/
|
|
17620
|
-
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
17839
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
17621
17840
|
/**
|
|
17622
17841
|
*
|
|
17623
17842
|
* @summary Create a ServiceReview.
|
|
@@ -17637,10 +17856,12 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
17637
17856
|
/**
|
|
17638
17857
|
*
|
|
17639
17858
|
* @param {string} serviceReviewId
|
|
17859
|
+
* @param {string} [languageCode]
|
|
17860
|
+
* @param {boolean} [returnDefaultValue]
|
|
17640
17861
|
* @param {*} [options] Override http request option.
|
|
17641
17862
|
* @throws {RequiredError}
|
|
17642
17863
|
*/
|
|
17643
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
17864
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
17644
17865
|
/**
|
|
17645
17866
|
*
|
|
17646
17867
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -17720,6 +17941,8 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
17720
17941
|
* @param {boolean} [recommended]
|
|
17721
17942
|
* @param {number} [rate]
|
|
17722
17943
|
* @param {ReviewType} [reviewType]
|
|
17944
|
+
* @param {string} [languageCode]
|
|
17945
|
+
* @param {boolean} [returnDefaultValue]
|
|
17723
17946
|
* @param {number} [page]
|
|
17724
17947
|
* @param {number} [limit]
|
|
17725
17948
|
* @param {Date} [lastRetrieved]
|
|
@@ -17727,7 +17950,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
17727
17950
|
* @throws {RequiredError}
|
|
17728
17951
|
* @memberof ServiceReviewsApi
|
|
17729
17952
|
*/
|
|
17730
|
-
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel, any>>;
|
|
17953
|
+
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel, any>>;
|
|
17731
17954
|
/**
|
|
17732
17955
|
*
|
|
17733
17956
|
* @summary Create a ServiceReview.
|
|
@@ -17749,11 +17972,13 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
17749
17972
|
/**
|
|
17750
17973
|
*
|
|
17751
17974
|
* @param {string} serviceReviewId
|
|
17975
|
+
* @param {string} [languageCode]
|
|
17976
|
+
* @param {boolean} [returnDefaultValue]
|
|
17752
17977
|
* @param {*} [options] Override http request option.
|
|
17753
17978
|
* @throws {RequiredError}
|
|
17754
17979
|
* @memberof ServiceReviewsApi
|
|
17755
17980
|
*/
|
|
17756
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
17981
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
17757
17982
|
/**
|
|
17758
17983
|
*
|
|
17759
17984
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -18157,6 +18382,25 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
18157
18382
|
* @throws {RequiredError}
|
|
18158
18383
|
*/
|
|
18159
18384
|
apiV2SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18385
|
+
/**
|
|
18386
|
+
*
|
|
18387
|
+
* @summary Get all Specialties Simple.
|
|
18388
|
+
* @param {string} [id]
|
|
18389
|
+
* @param {string} [name]
|
|
18390
|
+
* @param {string} [description]
|
|
18391
|
+
* @param {string} [specialtyTypeId]
|
|
18392
|
+
* @param {string} [hospitalId]
|
|
18393
|
+
* @param {Date} [created]
|
|
18394
|
+
* @param {string} [languageCode]
|
|
18395
|
+
* @param {Array<string>} [ids]
|
|
18396
|
+
* @param {boolean} [returnDefaultValue]
|
|
18397
|
+
* @param {number} [page]
|
|
18398
|
+
* @param {number} [limit]
|
|
18399
|
+
* @param {Date} [lastRetrieved]
|
|
18400
|
+
* @param {*} [options] Override http request option.
|
|
18401
|
+
* @throws {RequiredError}
|
|
18402
|
+
*/
|
|
18403
|
+
apiV2SpecialtiesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18160
18404
|
/**
|
|
18161
18405
|
*
|
|
18162
18406
|
* @param {string} slug
|
|
@@ -18222,6 +18466,25 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
18222
18466
|
* @throws {RequiredError}
|
|
18223
18467
|
*/
|
|
18224
18468
|
apiV2SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
18469
|
+
/**
|
|
18470
|
+
*
|
|
18471
|
+
* @summary Get all Specialties Simple.
|
|
18472
|
+
* @param {string} [id]
|
|
18473
|
+
* @param {string} [name]
|
|
18474
|
+
* @param {string} [description]
|
|
18475
|
+
* @param {string} [specialtyTypeId]
|
|
18476
|
+
* @param {string} [hospitalId]
|
|
18477
|
+
* @param {Date} [created]
|
|
18478
|
+
* @param {string} [languageCode]
|
|
18479
|
+
* @param {Array<string>} [ids]
|
|
18480
|
+
* @param {boolean} [returnDefaultValue]
|
|
18481
|
+
* @param {number} [page]
|
|
18482
|
+
* @param {number} [limit]
|
|
18483
|
+
* @param {Date} [lastRetrieved]
|
|
18484
|
+
* @param {*} [options] Override http request option.
|
|
18485
|
+
* @throws {RequiredError}
|
|
18486
|
+
*/
|
|
18487
|
+
apiV2SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesSimpleModel>>;
|
|
18225
18488
|
/**
|
|
18226
18489
|
*
|
|
18227
18490
|
* @param {string} slug
|
|
@@ -18287,6 +18550,25 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
18287
18550
|
* @throws {RequiredError}
|
|
18288
18551
|
*/
|
|
18289
18552
|
apiV2SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
18553
|
+
/**
|
|
18554
|
+
*
|
|
18555
|
+
* @summary Get all Specialties Simple.
|
|
18556
|
+
* @param {string} [id]
|
|
18557
|
+
* @param {string} [name]
|
|
18558
|
+
* @param {string} [description]
|
|
18559
|
+
* @param {string} [specialtyTypeId]
|
|
18560
|
+
* @param {string} [hospitalId]
|
|
18561
|
+
* @param {Date} [created]
|
|
18562
|
+
* @param {string} [languageCode]
|
|
18563
|
+
* @param {Array<string>} [ids]
|
|
18564
|
+
* @param {boolean} [returnDefaultValue]
|
|
18565
|
+
* @param {number} [page]
|
|
18566
|
+
* @param {number} [limit]
|
|
18567
|
+
* @param {Date} [lastRetrieved]
|
|
18568
|
+
* @param {*} [options] Override http request option.
|
|
18569
|
+
* @throws {RequiredError}
|
|
18570
|
+
*/
|
|
18571
|
+
apiV2SpecialtiesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesSimpleModel>;
|
|
18290
18572
|
/**
|
|
18291
18573
|
*
|
|
18292
18574
|
* @param {string} slug
|
|
@@ -18355,6 +18637,26 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
18355
18637
|
* @memberof SpecialtiesApi
|
|
18356
18638
|
*/
|
|
18357
18639
|
apiV2SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel, any>>;
|
|
18640
|
+
/**
|
|
18641
|
+
*
|
|
18642
|
+
* @summary Get all Specialties Simple.
|
|
18643
|
+
* @param {string} [id]
|
|
18644
|
+
* @param {string} [name]
|
|
18645
|
+
* @param {string} [description]
|
|
18646
|
+
* @param {string} [specialtyTypeId]
|
|
18647
|
+
* @param {string} [hospitalId]
|
|
18648
|
+
* @param {Date} [created]
|
|
18649
|
+
* @param {string} [languageCode]
|
|
18650
|
+
* @param {Array<string>} [ids]
|
|
18651
|
+
* @param {boolean} [returnDefaultValue]
|
|
18652
|
+
* @param {number} [page]
|
|
18653
|
+
* @param {number} [limit]
|
|
18654
|
+
* @param {Date} [lastRetrieved]
|
|
18655
|
+
* @param {*} [options] Override http request option.
|
|
18656
|
+
* @throws {RequiredError}
|
|
18657
|
+
* @memberof SpecialtiesApi
|
|
18658
|
+
*/
|
|
18659
|
+
apiV2SpecialtiesSimpleGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesSimpleModel, any>>;
|
|
18358
18660
|
/**
|
|
18359
18661
|
*
|
|
18360
18662
|
* @param {string} slug
|