ch-api-client-typescript2 2.9.6 → 2.9.7
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 +487 -41
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +524 -88
- package/package.json +1 -1
- package/src/api.ts +761 -101
package/lib/api.d.ts
CHANGED
|
@@ -6223,6 +6223,30 @@ export interface HospitalModel {
|
|
|
6223
6223
|
* @memberof HospitalModel
|
|
6224
6224
|
*/
|
|
6225
6225
|
'languageCode'?: string | null;
|
|
6226
|
+
/**
|
|
6227
|
+
*
|
|
6228
|
+
* @type {string}
|
|
6229
|
+
* @memberof HospitalModel
|
|
6230
|
+
*/
|
|
6231
|
+
'contactTel'?: string | null;
|
|
6232
|
+
/**
|
|
6233
|
+
*
|
|
6234
|
+
* @type {string}
|
|
6235
|
+
* @memberof HospitalModel
|
|
6236
|
+
*/
|
|
6237
|
+
'contactEmail'?: string | null;
|
|
6238
|
+
/**
|
|
6239
|
+
*
|
|
6240
|
+
* @type {Array<WorkingDay>}
|
|
6241
|
+
* @memberof HospitalModel
|
|
6242
|
+
*/
|
|
6243
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
6244
|
+
/**
|
|
6245
|
+
*
|
|
6246
|
+
* @type {Array<SnsHandle>}
|
|
6247
|
+
* @memberof HospitalModel
|
|
6248
|
+
*/
|
|
6249
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
6226
6250
|
}
|
|
6227
6251
|
/**
|
|
6228
6252
|
*
|
|
@@ -6362,6 +6386,12 @@ export interface HospitalServiceItemModel {
|
|
|
6362
6386
|
* @memberof HospitalServiceItemModel
|
|
6363
6387
|
*/
|
|
6364
6388
|
'order'?: number;
|
|
6389
|
+
/**
|
|
6390
|
+
*
|
|
6391
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6392
|
+
* @memberof HospitalServiceItemModel
|
|
6393
|
+
*/
|
|
6394
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6365
6395
|
/**
|
|
6366
6396
|
*
|
|
6367
6397
|
* @type {boolean}
|
|
@@ -6531,6 +6561,12 @@ export interface HospitalServiceModel {
|
|
|
6531
6561
|
* @memberof HospitalServiceModel
|
|
6532
6562
|
*/
|
|
6533
6563
|
'order'?: number;
|
|
6564
|
+
/**
|
|
6565
|
+
*
|
|
6566
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6567
|
+
* @memberof HospitalServiceModel
|
|
6568
|
+
*/
|
|
6569
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6534
6570
|
/**
|
|
6535
6571
|
*
|
|
6536
6572
|
* @type {boolean}
|
|
@@ -6612,6 +6648,25 @@ export interface HospitalSimpleItemModel {
|
|
|
6612
6648
|
*/
|
|
6613
6649
|
'confirmed'?: boolean;
|
|
6614
6650
|
}
|
|
6651
|
+
/**
|
|
6652
|
+
*
|
|
6653
|
+
* @export
|
|
6654
|
+
* @interface HospitalSnsHandlesModel
|
|
6655
|
+
*/
|
|
6656
|
+
export interface HospitalSnsHandlesModel {
|
|
6657
|
+
/**
|
|
6658
|
+
*
|
|
6659
|
+
* @type {Array<SnsHandleModel>}
|
|
6660
|
+
* @memberof HospitalSnsHandlesModel
|
|
6661
|
+
*/
|
|
6662
|
+
'items'?: Array<SnsHandleModel> | null;
|
|
6663
|
+
/**
|
|
6664
|
+
*
|
|
6665
|
+
* @type {PagedListMetaData}
|
|
6666
|
+
* @memberof HospitalSnsHandlesModel
|
|
6667
|
+
*/
|
|
6668
|
+
'metaData'?: PagedListMetaData;
|
|
6669
|
+
}
|
|
6615
6670
|
/**
|
|
6616
6671
|
*
|
|
6617
6672
|
* @export
|
|
@@ -6788,6 +6843,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6788
6843
|
* @memberof HospitalSpecialtyItemModel
|
|
6789
6844
|
*/
|
|
6790
6845
|
'backgroundThumbnail'?: string | null;
|
|
6846
|
+
/**
|
|
6847
|
+
*
|
|
6848
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6849
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6850
|
+
*/
|
|
6851
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6791
6852
|
/**
|
|
6792
6853
|
*
|
|
6793
6854
|
* @type {Array<MediaModel>}
|
|
@@ -6939,6 +7000,12 @@ export interface HospitalSpecialtyModel {
|
|
|
6939
7000
|
* @memberof HospitalSpecialtyModel
|
|
6940
7001
|
*/
|
|
6941
7002
|
'backgroundThumbnail'?: string | null;
|
|
7003
|
+
/**
|
|
7004
|
+
*
|
|
7005
|
+
* @type {Array<LocalizedUrlModel>}
|
|
7006
|
+
* @memberof HospitalSpecialtyModel
|
|
7007
|
+
*/
|
|
7008
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6942
7009
|
/**
|
|
6943
7010
|
*
|
|
6944
7011
|
* @type {Array<MediaModel>}
|
|
@@ -7000,6 +7067,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
7000
7067
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
7001
7068
|
*/
|
|
7002
7069
|
'confirmed'?: boolean;
|
|
7070
|
+
/**
|
|
7071
|
+
*
|
|
7072
|
+
* @type {Array<LocalizedUrlModel>}
|
|
7073
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7074
|
+
*/
|
|
7075
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
7003
7076
|
}
|
|
7004
7077
|
/**
|
|
7005
7078
|
*
|
|
@@ -8730,6 +8803,31 @@ export interface ServiceReviewsModel {
|
|
|
8730
8803
|
*/
|
|
8731
8804
|
'metaData'?: PagedListMetaData;
|
|
8732
8805
|
}
|
|
8806
|
+
/**
|
|
8807
|
+
*
|
|
8808
|
+
* @export
|
|
8809
|
+
* @interface SnsHandle
|
|
8810
|
+
*/
|
|
8811
|
+
export interface SnsHandle {
|
|
8812
|
+
/**
|
|
8813
|
+
*
|
|
8814
|
+
* @type {string}
|
|
8815
|
+
* @memberof SnsHandle
|
|
8816
|
+
*/
|
|
8817
|
+
'id'?: string;
|
|
8818
|
+
/**
|
|
8819
|
+
*
|
|
8820
|
+
* @type {SnsType}
|
|
8821
|
+
* @memberof SnsHandle
|
|
8822
|
+
*/
|
|
8823
|
+
'snsType'?: SnsType;
|
|
8824
|
+
/**
|
|
8825
|
+
*
|
|
8826
|
+
* @type {string}
|
|
8827
|
+
* @memberof SnsHandle
|
|
8828
|
+
*/
|
|
8829
|
+
'handle'?: string | null;
|
|
8830
|
+
}
|
|
8733
8831
|
/**
|
|
8734
8832
|
*
|
|
8735
8833
|
* @export
|
|
@@ -8763,7 +8861,9 @@ export interface SnsHandleModel {
|
|
|
8763
8861
|
export declare enum SnsType {
|
|
8764
8862
|
Twitter = "Twitter",
|
|
8765
8863
|
Facebook = "Facebook",
|
|
8766
|
-
Instagram = "Instagram"
|
|
8864
|
+
Instagram = "Instagram",
|
|
8865
|
+
LinkedIn = "LinkedIn",
|
|
8866
|
+
Youtube = "Youtube"
|
|
8767
8867
|
}
|
|
8768
8868
|
/**
|
|
8769
8869
|
*
|
|
@@ -8881,6 +8981,12 @@ export interface SpecialtyItemModel {
|
|
|
8881
8981
|
* @memberof SpecialtyItemModel
|
|
8882
8982
|
*/
|
|
8883
8983
|
'confirmed'?: boolean;
|
|
8984
|
+
/**
|
|
8985
|
+
*
|
|
8986
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8987
|
+
* @memberof SpecialtyItemModel
|
|
8988
|
+
*/
|
|
8989
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8884
8990
|
/**
|
|
8885
8991
|
*
|
|
8886
8992
|
* @type {AuditableEntity}
|
|
@@ -8966,6 +9072,12 @@ export interface SpecialtyModel {
|
|
|
8966
9072
|
* @memberof SpecialtyModel
|
|
8967
9073
|
*/
|
|
8968
9074
|
'confirmed'?: boolean;
|
|
9075
|
+
/**
|
|
9076
|
+
*
|
|
9077
|
+
* @type {Array<LocalizedUrlModel>}
|
|
9078
|
+
* @memberof SpecialtyModel
|
|
9079
|
+
*/
|
|
9080
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8969
9081
|
/**
|
|
8970
9082
|
*
|
|
8971
9083
|
* @type {AuditableEntity}
|
|
@@ -9902,20 +10014,140 @@ export interface UserModel {
|
|
|
9902
10014
|
'locations'?: Array<UserLocationModel> | null;
|
|
9903
10015
|
}
|
|
9904
10016
|
/**
|
|
9905
|
-
*
|
|
10017
|
+
*
|
|
9906
10018
|
* @export
|
|
10019
|
+
* @interface WorkingDay
|
|
9907
10020
|
*/
|
|
9908
|
-
export
|
|
10021
|
+
export interface WorkingDay {
|
|
9909
10022
|
/**
|
|
9910
10023
|
*
|
|
9911
|
-
* @
|
|
9912
|
-
* @
|
|
9913
|
-
|
|
9914
|
-
|
|
9915
|
-
|
|
9916
|
-
*
|
|
10024
|
+
* @type {string}
|
|
10025
|
+
* @memberof WorkingDay
|
|
10026
|
+
*/
|
|
10027
|
+
'id'?: string;
|
|
10028
|
+
/**
|
|
10029
|
+
*
|
|
10030
|
+
* @type {string}
|
|
10031
|
+
* @memberof WorkingDay
|
|
10032
|
+
*/
|
|
10033
|
+
'dayOfWeek'?: string | null;
|
|
10034
|
+
/**
|
|
10035
|
+
*
|
|
10036
|
+
* @type {Date}
|
|
10037
|
+
* @memberof WorkingDay
|
|
10038
|
+
*/
|
|
10039
|
+
'timeFrom'?: Date;
|
|
10040
|
+
/**
|
|
10041
|
+
*
|
|
10042
|
+
* @type {Date}
|
|
10043
|
+
* @memberof WorkingDay
|
|
9917
10044
|
*/
|
|
9918
|
-
|
|
10045
|
+
'timeTo'?: Date;
|
|
10046
|
+
/**
|
|
10047
|
+
*
|
|
10048
|
+
* @type {boolean}
|
|
10049
|
+
* @memberof WorkingDay
|
|
10050
|
+
*/
|
|
10051
|
+
'checkHoliday'?: boolean;
|
|
10052
|
+
}
|
|
10053
|
+
/**
|
|
10054
|
+
*
|
|
10055
|
+
* @export
|
|
10056
|
+
* @interface WorkingDayItemModel
|
|
10057
|
+
*/
|
|
10058
|
+
export interface WorkingDayItemModel {
|
|
10059
|
+
/**
|
|
10060
|
+
*
|
|
10061
|
+
* @type {string}
|
|
10062
|
+
* @memberof WorkingDayItemModel
|
|
10063
|
+
*/
|
|
10064
|
+
'id'?: string;
|
|
10065
|
+
/**
|
|
10066
|
+
*
|
|
10067
|
+
* @type {string}
|
|
10068
|
+
* @memberof WorkingDayItemModel
|
|
10069
|
+
*/
|
|
10070
|
+
'dayOfWeek'?: string | null;
|
|
10071
|
+
/**
|
|
10072
|
+
*
|
|
10073
|
+
* @type {Date}
|
|
10074
|
+
* @memberof WorkingDayItemModel
|
|
10075
|
+
*/
|
|
10076
|
+
'timeFrom'?: Date;
|
|
10077
|
+
/**
|
|
10078
|
+
*
|
|
10079
|
+
* @type {Date}
|
|
10080
|
+
* @memberof WorkingDayItemModel
|
|
10081
|
+
*/
|
|
10082
|
+
'timeTo'?: Date;
|
|
10083
|
+
/**
|
|
10084
|
+
*
|
|
10085
|
+
* @type {boolean}
|
|
10086
|
+
* @memberof WorkingDayItemModel
|
|
10087
|
+
*/
|
|
10088
|
+
'checkHoliday'?: boolean;
|
|
10089
|
+
}
|
|
10090
|
+
/**
|
|
10091
|
+
*
|
|
10092
|
+
* @export
|
|
10093
|
+
* @interface WorkingDayModel
|
|
10094
|
+
*/
|
|
10095
|
+
export interface WorkingDayModel {
|
|
10096
|
+
/**
|
|
10097
|
+
*
|
|
10098
|
+
* @type {string}
|
|
10099
|
+
* @memberof WorkingDayModel
|
|
10100
|
+
*/
|
|
10101
|
+
'id'?: string;
|
|
10102
|
+
/**
|
|
10103
|
+
*
|
|
10104
|
+
* @type {string}
|
|
10105
|
+
* @memberof WorkingDayModel
|
|
10106
|
+
*/
|
|
10107
|
+
'dayOfWeek'?: string | null;
|
|
10108
|
+
/**
|
|
10109
|
+
*
|
|
10110
|
+
* @type {Date}
|
|
10111
|
+
* @memberof WorkingDayModel
|
|
10112
|
+
*/
|
|
10113
|
+
'timeFrom'?: Date;
|
|
10114
|
+
/**
|
|
10115
|
+
*
|
|
10116
|
+
* @type {Date}
|
|
10117
|
+
* @memberof WorkingDayModel
|
|
10118
|
+
*/
|
|
10119
|
+
'timeTo'?: Date;
|
|
10120
|
+
/**
|
|
10121
|
+
*
|
|
10122
|
+
* @type {boolean}
|
|
10123
|
+
* @memberof WorkingDayModel
|
|
10124
|
+
*/
|
|
10125
|
+
'checkHoliday'?: boolean;
|
|
10126
|
+
}
|
|
10127
|
+
/**
|
|
10128
|
+
*
|
|
10129
|
+
* @export
|
|
10130
|
+
* @interface WorkingDaysModel
|
|
10131
|
+
*/
|
|
10132
|
+
export interface WorkingDaysModel {
|
|
10133
|
+
/**
|
|
10134
|
+
*
|
|
10135
|
+
* @type {Array<WorkingDayItemModel>}
|
|
10136
|
+
* @memberof WorkingDaysModel
|
|
10137
|
+
*/
|
|
10138
|
+
'items'?: Array<WorkingDayItemModel> | null;
|
|
10139
|
+
/**
|
|
10140
|
+
*
|
|
10141
|
+
* @type {PagedListMetaData}
|
|
10142
|
+
* @memberof WorkingDaysModel
|
|
10143
|
+
*/
|
|
10144
|
+
'metaData'?: PagedListMetaData;
|
|
10145
|
+
}
|
|
10146
|
+
/**
|
|
10147
|
+
* AboutUsApi - axios parameter creator
|
|
10148
|
+
* @export
|
|
10149
|
+
*/
|
|
10150
|
+
export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
9919
10151
|
/**
|
|
9920
10152
|
*
|
|
9921
10153
|
* @summary Get all AboutUsList.
|
|
@@ -9939,6 +10171,16 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
9939
10171
|
* @throws {RequiredError}
|
|
9940
10172
|
*/
|
|
9941
10173
|
apiV2AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10174
|
+
/**
|
|
10175
|
+
*
|
|
10176
|
+
* @summary Get AboutUs.
|
|
10177
|
+
* @param {string} hospitalId
|
|
10178
|
+
* @param {string} [languageCode]
|
|
10179
|
+
* @param {boolean} [returnDefaultValue]
|
|
10180
|
+
* @param {*} [options] Override http request option.
|
|
10181
|
+
* @throws {RequiredError}
|
|
10182
|
+
*/
|
|
10183
|
+
apiV2AboutusHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9942
10184
|
/**
|
|
9943
10185
|
*
|
|
9944
10186
|
* @param {string} slug
|
|
@@ -9954,16 +10196,6 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
9954
10196
|
* @export
|
|
9955
10197
|
*/
|
|
9956
10198
|
export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
|
|
9957
|
-
/**
|
|
9958
|
-
*
|
|
9959
|
-
* @summary Get AboutUs.
|
|
9960
|
-
* @param {string} aboutUsId
|
|
9961
|
-
* @param {string} [languageCode]
|
|
9962
|
-
* @param {boolean} [returnDefaultValue]
|
|
9963
|
-
* @param {*} [options] Override http request option.
|
|
9964
|
-
* @throws {RequiredError}
|
|
9965
|
-
*/
|
|
9966
|
-
apiV2AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
9967
10199
|
/**
|
|
9968
10200
|
*
|
|
9969
10201
|
* @summary Get all AboutUsList.
|
|
@@ -9987,6 +10219,16 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
9987
10219
|
* @throws {RequiredError}
|
|
9988
10220
|
*/
|
|
9989
10221
|
apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
|
|
10222
|
+
/**
|
|
10223
|
+
*
|
|
10224
|
+
* @summary Get AboutUs.
|
|
10225
|
+
* @param {string} hospitalId
|
|
10226
|
+
* @param {string} [languageCode]
|
|
10227
|
+
* @param {boolean} [returnDefaultValue]
|
|
10228
|
+
* @param {*} [options] Override http request option.
|
|
10229
|
+
* @throws {RequiredError}
|
|
10230
|
+
*/
|
|
10231
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
9990
10232
|
/**
|
|
9991
10233
|
*
|
|
9992
10234
|
* @param {string} slug
|
|
@@ -10002,16 +10244,6 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
10002
10244
|
* @export
|
|
10003
10245
|
*/
|
|
10004
10246
|
export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10005
|
-
/**
|
|
10006
|
-
*
|
|
10007
|
-
* @summary Get AboutUs.
|
|
10008
|
-
* @param {string} aboutUsId
|
|
10009
|
-
* @param {string} [languageCode]
|
|
10010
|
-
* @param {boolean} [returnDefaultValue]
|
|
10011
|
-
* @param {*} [options] Override http request option.
|
|
10012
|
-
* @throws {RequiredError}
|
|
10013
|
-
*/
|
|
10014
|
-
apiV2AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
10015
10247
|
/**
|
|
10016
10248
|
*
|
|
10017
10249
|
* @summary Get all AboutUsList.
|
|
@@ -10035,6 +10267,16 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
|
|
|
10035
10267
|
* @throws {RequiredError}
|
|
10036
10268
|
*/
|
|
10037
10269
|
apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
|
|
10270
|
+
/**
|
|
10271
|
+
*
|
|
10272
|
+
* @summary Get AboutUs.
|
|
10273
|
+
* @param {string} hospitalId
|
|
10274
|
+
* @param {string} [languageCode]
|
|
10275
|
+
* @param {boolean} [returnDefaultValue]
|
|
10276
|
+
* @param {*} [options] Override http request option.
|
|
10277
|
+
* @throws {RequiredError}
|
|
10278
|
+
*/
|
|
10279
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
10038
10280
|
/**
|
|
10039
10281
|
*
|
|
10040
10282
|
* @param {string} slug
|
|
@@ -10052,17 +10294,6 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
|
|
|
10052
10294
|
* @extends {BaseAPI}
|
|
10053
10295
|
*/
|
|
10054
10296
|
export declare class AboutUsApi extends BaseAPI {
|
|
10055
|
-
/**
|
|
10056
|
-
*
|
|
10057
|
-
* @summary Get AboutUs.
|
|
10058
|
-
* @param {string} aboutUsId
|
|
10059
|
-
* @param {string} [languageCode]
|
|
10060
|
-
* @param {boolean} [returnDefaultValue]
|
|
10061
|
-
* @param {*} [options] Override http request option.
|
|
10062
|
-
* @throws {RequiredError}
|
|
10063
|
-
* @memberof AboutUsApi
|
|
10064
|
-
*/
|
|
10065
|
-
apiV2AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel, any>>;
|
|
10066
10297
|
/**
|
|
10067
10298
|
*
|
|
10068
10299
|
* @summary Get all AboutUsList.
|
|
@@ -10087,6 +10318,17 @@ export declare class AboutUsApi extends BaseAPI {
|
|
|
10087
10318
|
* @memberof AboutUsApi
|
|
10088
10319
|
*/
|
|
10089
10320
|
apiV2AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, overviewTitle?: string, normalizedOverviewTitle?: string, overview?: string, content?: string, customStyle?: string, background?: string, backgroundThumbnail?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel, any>>;
|
|
10321
|
+
/**
|
|
10322
|
+
*
|
|
10323
|
+
* @summary Get AboutUs.
|
|
10324
|
+
* @param {string} hospitalId
|
|
10325
|
+
* @param {string} [languageCode]
|
|
10326
|
+
* @param {boolean} [returnDefaultValue]
|
|
10327
|
+
* @param {*} [options] Override http request option.
|
|
10328
|
+
* @throws {RequiredError}
|
|
10329
|
+
* @memberof AboutUsApi
|
|
10330
|
+
*/
|
|
10331
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel, any>>;
|
|
10090
10332
|
/**
|
|
10091
10333
|
*
|
|
10092
10334
|
* @param {string} slug
|
|
@@ -14561,6 +14803,30 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14561
14803
|
* @throws {RequiredError}
|
|
14562
14804
|
*/
|
|
14563
14805
|
apiV2HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14806
|
+
/**
|
|
14807
|
+
*
|
|
14808
|
+
* @summary Get all HospitalHandles.
|
|
14809
|
+
* @param {string} hospitalId
|
|
14810
|
+
* @param {string} [hospitalId2]
|
|
14811
|
+
* @param {string} [id]
|
|
14812
|
+
* @param {SnsType} [snsType]
|
|
14813
|
+
* @param {string} [handle]
|
|
14814
|
+
* @param {number} [page]
|
|
14815
|
+
* @param {number} [limit]
|
|
14816
|
+
* @param {Date} [lastRetrieved]
|
|
14817
|
+
* @param {*} [options] Override http request option.
|
|
14818
|
+
* @throws {RequiredError}
|
|
14819
|
+
*/
|
|
14820
|
+
apiV2HospitalsHospitalIdHandlesGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14821
|
+
/**
|
|
14822
|
+
*
|
|
14823
|
+
* @summary Get HospitalHandle.
|
|
14824
|
+
* @param {string} hospitalId
|
|
14825
|
+
* @param {string} handleId
|
|
14826
|
+
* @param {*} [options] Override http request option.
|
|
14827
|
+
* @throws {RequiredError}
|
|
14828
|
+
*/
|
|
14829
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14564
14830
|
/**
|
|
14565
14831
|
*
|
|
14566
14832
|
* @summary Get all HospitalMedias.
|
|
@@ -14705,6 +14971,32 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14705
14971
|
* @throws {RequiredError}
|
|
14706
14972
|
*/
|
|
14707
14973
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14974
|
+
/**
|
|
14975
|
+
*
|
|
14976
|
+
* @summary Get all HospitalWorkingDays.
|
|
14977
|
+
* @param {string} hospitalId
|
|
14978
|
+
* @param {string} [hospitalId2]
|
|
14979
|
+
* @param {string} [id]
|
|
14980
|
+
* @param {string} [dayOfWeek]
|
|
14981
|
+
* @param {Date} [timeFrom]
|
|
14982
|
+
* @param {Date} [timeTo]
|
|
14983
|
+
* @param {boolean} [checkHoliday]
|
|
14984
|
+
* @param {number} [page]
|
|
14985
|
+
* @param {number} [limit]
|
|
14986
|
+
* @param {Date} [lastRetrieved]
|
|
14987
|
+
* @param {*} [options] Override http request option.
|
|
14988
|
+
* @throws {RequiredError}
|
|
14989
|
+
*/
|
|
14990
|
+
apiV2HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14991
|
+
/**
|
|
14992
|
+
*
|
|
14993
|
+
* @summary Get HospitalWorkingDay.
|
|
14994
|
+
* @param {string} hospitalId
|
|
14995
|
+
* @param {string} workingDayId
|
|
14996
|
+
* @param {*} [options] Override http request option.
|
|
14997
|
+
* @throws {RequiredError}
|
|
14998
|
+
*/
|
|
14999
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14708
15000
|
/**
|
|
14709
15001
|
*
|
|
14710
15002
|
* @summary Get all Hospitals.
|
|
@@ -14871,6 +15163,30 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14871
15163
|
* @throws {RequiredError}
|
|
14872
15164
|
*/
|
|
14873
15165
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
15166
|
+
/**
|
|
15167
|
+
*
|
|
15168
|
+
* @summary Get all HospitalHandles.
|
|
15169
|
+
* @param {string} hospitalId
|
|
15170
|
+
* @param {string} [hospitalId2]
|
|
15171
|
+
* @param {string} [id]
|
|
15172
|
+
* @param {SnsType} [snsType]
|
|
15173
|
+
* @param {string} [handle]
|
|
15174
|
+
* @param {number} [page]
|
|
15175
|
+
* @param {number} [limit]
|
|
15176
|
+
* @param {Date} [lastRetrieved]
|
|
15177
|
+
* @param {*} [options] Override http request option.
|
|
15178
|
+
* @throws {RequiredError}
|
|
15179
|
+
*/
|
|
15180
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
|
|
15181
|
+
/**
|
|
15182
|
+
*
|
|
15183
|
+
* @summary Get HospitalHandle.
|
|
15184
|
+
* @param {string} hospitalId
|
|
15185
|
+
* @param {string} handleId
|
|
15186
|
+
* @param {*} [options] Override http request option.
|
|
15187
|
+
* @throws {RequiredError}
|
|
15188
|
+
*/
|
|
15189
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14874
15190
|
/**
|
|
14875
15191
|
*
|
|
14876
15192
|
* @summary Get all HospitalMedias.
|
|
@@ -15015,6 +15331,32 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15015
15331
|
* @throws {RequiredError}
|
|
15016
15332
|
*/
|
|
15017
15333
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15334
|
+
/**
|
|
15335
|
+
*
|
|
15336
|
+
* @summary Get all HospitalWorkingDays.
|
|
15337
|
+
* @param {string} hospitalId
|
|
15338
|
+
* @param {string} [hospitalId2]
|
|
15339
|
+
* @param {string} [id]
|
|
15340
|
+
* @param {string} [dayOfWeek]
|
|
15341
|
+
* @param {Date} [timeFrom]
|
|
15342
|
+
* @param {Date} [timeTo]
|
|
15343
|
+
* @param {boolean} [checkHoliday]
|
|
15344
|
+
* @param {number} [page]
|
|
15345
|
+
* @param {number} [limit]
|
|
15346
|
+
* @param {Date} [lastRetrieved]
|
|
15347
|
+
* @param {*} [options] Override http request option.
|
|
15348
|
+
* @throws {RequiredError}
|
|
15349
|
+
*/
|
|
15350
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
|
|
15351
|
+
/**
|
|
15352
|
+
*
|
|
15353
|
+
* @summary Get HospitalWorkingDay.
|
|
15354
|
+
* @param {string} hospitalId
|
|
15355
|
+
* @param {string} workingDayId
|
|
15356
|
+
* @param {*} [options] Override http request option.
|
|
15357
|
+
* @throws {RequiredError}
|
|
15358
|
+
*/
|
|
15359
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
15018
15360
|
/**
|
|
15019
15361
|
*
|
|
15020
15362
|
* @summary Get all Hospitals.
|
|
@@ -15181,6 +15523,30 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15181
15523
|
* @throws {RequiredError}
|
|
15182
15524
|
*/
|
|
15183
15525
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
15526
|
+
/**
|
|
15527
|
+
*
|
|
15528
|
+
* @summary Get all HospitalHandles.
|
|
15529
|
+
* @param {string} hospitalId
|
|
15530
|
+
* @param {string} [hospitalId2]
|
|
15531
|
+
* @param {string} [id]
|
|
15532
|
+
* @param {SnsType} [snsType]
|
|
15533
|
+
* @param {string} [handle]
|
|
15534
|
+
* @param {number} [page]
|
|
15535
|
+
* @param {number} [limit]
|
|
15536
|
+
* @param {Date} [lastRetrieved]
|
|
15537
|
+
* @param {*} [options] Override http request option.
|
|
15538
|
+
* @throws {RequiredError}
|
|
15539
|
+
*/
|
|
15540
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
|
|
15541
|
+
/**
|
|
15542
|
+
*
|
|
15543
|
+
* @summary Get HospitalHandle.
|
|
15544
|
+
* @param {string} hospitalId
|
|
15545
|
+
* @param {string} handleId
|
|
15546
|
+
* @param {*} [options] Override http request option.
|
|
15547
|
+
* @throws {RequiredError}
|
|
15548
|
+
*/
|
|
15549
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
15184
15550
|
/**
|
|
15185
15551
|
*
|
|
15186
15552
|
* @summary Get all HospitalMedias.
|
|
@@ -15325,6 +15691,32 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15325
15691
|
* @throws {RequiredError}
|
|
15326
15692
|
*/
|
|
15327
15693
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
15694
|
+
/**
|
|
15695
|
+
*
|
|
15696
|
+
* @summary Get all HospitalWorkingDays.
|
|
15697
|
+
* @param {string} hospitalId
|
|
15698
|
+
* @param {string} [hospitalId2]
|
|
15699
|
+
* @param {string} [id]
|
|
15700
|
+
* @param {string} [dayOfWeek]
|
|
15701
|
+
* @param {Date} [timeFrom]
|
|
15702
|
+
* @param {Date} [timeTo]
|
|
15703
|
+
* @param {boolean} [checkHoliday]
|
|
15704
|
+
* @param {number} [page]
|
|
15705
|
+
* @param {number} [limit]
|
|
15706
|
+
* @param {Date} [lastRetrieved]
|
|
15707
|
+
* @param {*} [options] Override http request option.
|
|
15708
|
+
* @throws {RequiredError}
|
|
15709
|
+
*/
|
|
15710
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
|
|
15711
|
+
/**
|
|
15712
|
+
*
|
|
15713
|
+
* @summary Get HospitalWorkingDay.
|
|
15714
|
+
* @param {string} hospitalId
|
|
15715
|
+
* @param {string} workingDayId
|
|
15716
|
+
* @param {*} [options] Override http request option.
|
|
15717
|
+
* @throws {RequiredError}
|
|
15718
|
+
*/
|
|
15719
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
|
|
15328
15720
|
/**
|
|
15329
15721
|
*
|
|
15330
15722
|
* @summary Get all Hospitals.
|
|
@@ -15503,6 +15895,32 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15503
15895
|
* @memberof HospitalsApi
|
|
15504
15896
|
*/
|
|
15505
15897
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
|
|
15898
|
+
/**
|
|
15899
|
+
*
|
|
15900
|
+
* @summary Get all HospitalHandles.
|
|
15901
|
+
* @param {string} hospitalId
|
|
15902
|
+
* @param {string} [hospitalId2]
|
|
15903
|
+
* @param {string} [id]
|
|
15904
|
+
* @param {SnsType} [snsType]
|
|
15905
|
+
* @param {string} [handle]
|
|
15906
|
+
* @param {number} [page]
|
|
15907
|
+
* @param {number} [limit]
|
|
15908
|
+
* @param {Date} [lastRetrieved]
|
|
15909
|
+
* @param {*} [options] Override http request option.
|
|
15910
|
+
* @throws {RequiredError}
|
|
15911
|
+
* @memberof HospitalsApi
|
|
15912
|
+
*/
|
|
15913
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel, any>>;
|
|
15914
|
+
/**
|
|
15915
|
+
*
|
|
15916
|
+
* @summary Get HospitalHandle.
|
|
15917
|
+
* @param {string} hospitalId
|
|
15918
|
+
* @param {string} handleId
|
|
15919
|
+
* @param {*} [options] Override http request option.
|
|
15920
|
+
* @throws {RequiredError}
|
|
15921
|
+
* @memberof HospitalsApi
|
|
15922
|
+
*/
|
|
15923
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
|
|
15506
15924
|
/**
|
|
15507
15925
|
*
|
|
15508
15926
|
* @summary Get all HospitalMedias.
|
|
@@ -15656,6 +16074,34 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15656
16074
|
* @memberof HospitalsApi
|
|
15657
16075
|
*/
|
|
15658
16076
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
16077
|
+
/**
|
|
16078
|
+
*
|
|
16079
|
+
* @summary Get all HospitalWorkingDays.
|
|
16080
|
+
* @param {string} hospitalId
|
|
16081
|
+
* @param {string} [hospitalId2]
|
|
16082
|
+
* @param {string} [id]
|
|
16083
|
+
* @param {string} [dayOfWeek]
|
|
16084
|
+
* @param {Date} [timeFrom]
|
|
16085
|
+
* @param {Date} [timeTo]
|
|
16086
|
+
* @param {boolean} [checkHoliday]
|
|
16087
|
+
* @param {number} [page]
|
|
16088
|
+
* @param {number} [limit]
|
|
16089
|
+
* @param {Date} [lastRetrieved]
|
|
16090
|
+
* @param {*} [options] Override http request option.
|
|
16091
|
+
* @throws {RequiredError}
|
|
16092
|
+
* @memberof HospitalsApi
|
|
16093
|
+
*/
|
|
16094
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel, any>>;
|
|
16095
|
+
/**
|
|
16096
|
+
*
|
|
16097
|
+
* @summary Get HospitalWorkingDay.
|
|
16098
|
+
* @param {string} hospitalId
|
|
16099
|
+
* @param {string} workingDayId
|
|
16100
|
+
* @param {*} [options] Override http request option.
|
|
16101
|
+
* @throws {RequiredError}
|
|
16102
|
+
* @memberof HospitalsApi
|
|
16103
|
+
*/
|
|
16104
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel, any>>;
|
|
15659
16105
|
/**
|
|
15660
16106
|
*
|
|
15661
16107
|
* @summary Get all Hospitals.
|