ch-admin-api-client-typescript 2.1.6 → 2.1.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 +837 -555
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1321 -333
- package/package.json +1 -1
- package/src/api.ts +1805 -1080
package/lib/api.d.ts
CHANGED
|
@@ -198,12 +198,6 @@ export interface ApproveConsultationCommand {
|
|
|
198
198
|
* @memberof ApproveConsultationCommand
|
|
199
199
|
*/
|
|
200
200
|
'confirmedDateEnd'?: Date | null;
|
|
201
|
-
/**
|
|
202
|
-
*
|
|
203
|
-
* @type {string}
|
|
204
|
-
* @memberof ApproveConsultationCommand
|
|
205
|
-
*/
|
|
206
|
-
'callerId'?: string | null;
|
|
207
201
|
}
|
|
208
202
|
/**
|
|
209
203
|
*
|
|
@@ -1705,6 +1699,37 @@ export interface CheckNotificationsCommand {
|
|
|
1705
1699
|
*/
|
|
1706
1700
|
'isDelete'?: boolean;
|
|
1707
1701
|
}
|
|
1702
|
+
/**
|
|
1703
|
+
*
|
|
1704
|
+
* @export
|
|
1705
|
+
* @interface CommunicationUserTokenModel
|
|
1706
|
+
*/
|
|
1707
|
+
export interface CommunicationUserTokenModel {
|
|
1708
|
+
/**
|
|
1709
|
+
*
|
|
1710
|
+
* @type {string}
|
|
1711
|
+
* @memberof CommunicationUserTokenModel
|
|
1712
|
+
*/
|
|
1713
|
+
'token'?: string | null;
|
|
1714
|
+
/**
|
|
1715
|
+
*
|
|
1716
|
+
* @type {Date}
|
|
1717
|
+
* @memberof CommunicationUserTokenModel
|
|
1718
|
+
*/
|
|
1719
|
+
'expiresOn'?: Date;
|
|
1720
|
+
/**
|
|
1721
|
+
*
|
|
1722
|
+
* @type {string}
|
|
1723
|
+
* @memberof CommunicationUserTokenModel
|
|
1724
|
+
*/
|
|
1725
|
+
'communicationUserId'?: string | null;
|
|
1726
|
+
/**
|
|
1727
|
+
*
|
|
1728
|
+
* @type {string}
|
|
1729
|
+
* @memberof CommunicationUserTokenModel
|
|
1730
|
+
*/
|
|
1731
|
+
'gateway'?: string | null;
|
|
1732
|
+
}
|
|
1708
1733
|
/**
|
|
1709
1734
|
*
|
|
1710
1735
|
* @export
|
|
@@ -7759,6 +7784,18 @@ export interface HospitalServiceItemModel {
|
|
|
7759
7784
|
* @memberof HospitalServiceItemModel
|
|
7760
7785
|
*/
|
|
7761
7786
|
'specialtyName'?: string | null;
|
|
7787
|
+
/**
|
|
7788
|
+
*
|
|
7789
|
+
* @type {string}
|
|
7790
|
+
* @memberof HospitalServiceItemModel
|
|
7791
|
+
*/
|
|
7792
|
+
'serviceCategoryId'?: string;
|
|
7793
|
+
/**
|
|
7794
|
+
*
|
|
7795
|
+
* @type {string}
|
|
7796
|
+
* @memberof HospitalServiceItemModel
|
|
7797
|
+
*/
|
|
7798
|
+
'serviceCategoryName'?: string | null;
|
|
7762
7799
|
/**
|
|
7763
7800
|
*
|
|
7764
7801
|
* @type {MarketingType}
|
|
@@ -7880,6 +7917,18 @@ export interface HospitalServiceModel {
|
|
|
7880
7917
|
* @memberof HospitalServiceModel
|
|
7881
7918
|
*/
|
|
7882
7919
|
'specialtyName'?: string | null;
|
|
7920
|
+
/**
|
|
7921
|
+
*
|
|
7922
|
+
* @type {string}
|
|
7923
|
+
* @memberof HospitalServiceModel
|
|
7924
|
+
*/
|
|
7925
|
+
'serviceCategoryId'?: string;
|
|
7926
|
+
/**
|
|
7927
|
+
*
|
|
7928
|
+
* @type {string}
|
|
7929
|
+
* @memberof HospitalServiceModel
|
|
7930
|
+
*/
|
|
7931
|
+
'serviceCategoryName'?: string | null;
|
|
7883
7932
|
/**
|
|
7884
7933
|
*
|
|
7885
7934
|
* @type {MarketingType}
|
|
@@ -8058,6 +8107,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8058
8107
|
* @memberof HospitalSpecialtyItemModel
|
|
8059
8108
|
*/
|
|
8060
8109
|
'specialtyTypeName'?: string | null;
|
|
8110
|
+
/**
|
|
8111
|
+
*
|
|
8112
|
+
* @type {MarketingType}
|
|
8113
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8114
|
+
*/
|
|
8115
|
+
'marketingType'?: MarketingType;
|
|
8061
8116
|
/**
|
|
8062
8117
|
*
|
|
8063
8118
|
* @type {number}
|
|
@@ -8113,6 +8168,12 @@ export interface HospitalSpecialtyModel {
|
|
|
8113
8168
|
* @memberof HospitalSpecialtyModel
|
|
8114
8169
|
*/
|
|
8115
8170
|
'specialtyTypeName'?: string | null;
|
|
8171
|
+
/**
|
|
8172
|
+
*
|
|
8173
|
+
* @type {MarketingType}
|
|
8174
|
+
* @memberof HospitalSpecialtyModel
|
|
8175
|
+
*/
|
|
8176
|
+
'marketingType'?: MarketingType;
|
|
8116
8177
|
/**
|
|
8117
8178
|
*
|
|
8118
8179
|
* @type {number}
|
|
@@ -9785,6 +9846,12 @@ export interface Service {
|
|
|
9785
9846
|
* @memberof Service
|
|
9786
9847
|
*/
|
|
9787
9848
|
'serviceCategoryId'?: string | null;
|
|
9849
|
+
/**
|
|
9850
|
+
*
|
|
9851
|
+
* @type {ServiceCategory}
|
|
9852
|
+
* @memberof Service
|
|
9853
|
+
*/
|
|
9854
|
+
'serviceCategory'?: ServiceCategory;
|
|
9788
9855
|
/**
|
|
9789
9856
|
*
|
|
9790
9857
|
* @type {number}
|
|
@@ -9841,6 +9908,55 @@ export interface ServiceCategoriesModel {
|
|
|
9841
9908
|
*/
|
|
9842
9909
|
'metaData'?: PagedListMetaData;
|
|
9843
9910
|
}
|
|
9911
|
+
/**
|
|
9912
|
+
*
|
|
9913
|
+
* @export
|
|
9914
|
+
* @interface ServiceCategory
|
|
9915
|
+
*/
|
|
9916
|
+
export interface ServiceCategory {
|
|
9917
|
+
/**
|
|
9918
|
+
*
|
|
9919
|
+
* @type {string}
|
|
9920
|
+
* @memberof ServiceCategory
|
|
9921
|
+
*/
|
|
9922
|
+
'id'?: string;
|
|
9923
|
+
/**
|
|
9924
|
+
*
|
|
9925
|
+
* @type {string}
|
|
9926
|
+
* @memberof ServiceCategory
|
|
9927
|
+
*/
|
|
9928
|
+
'name'?: string | null;
|
|
9929
|
+
/**
|
|
9930
|
+
*
|
|
9931
|
+
* @type {string}
|
|
9932
|
+
* @memberof ServiceCategory
|
|
9933
|
+
*/
|
|
9934
|
+
'normalizedName'?: string | null;
|
|
9935
|
+
/**
|
|
9936
|
+
*
|
|
9937
|
+
* @type {string}
|
|
9938
|
+
* @memberof ServiceCategory
|
|
9939
|
+
*/
|
|
9940
|
+
'description'?: string | null;
|
|
9941
|
+
/**
|
|
9942
|
+
*
|
|
9943
|
+
* @type {string}
|
|
9944
|
+
* @memberof ServiceCategory
|
|
9945
|
+
*/
|
|
9946
|
+
'normalizedDescription'?: string | null;
|
|
9947
|
+
/**
|
|
9948
|
+
*
|
|
9949
|
+
* @type {number}
|
|
9950
|
+
* @memberof ServiceCategory
|
|
9951
|
+
*/
|
|
9952
|
+
'order'?: number;
|
|
9953
|
+
/**
|
|
9954
|
+
*
|
|
9955
|
+
* @type {Array<Service>}
|
|
9956
|
+
* @memberof ServiceCategory
|
|
9957
|
+
*/
|
|
9958
|
+
'services'?: Array<Service> | null;
|
|
9959
|
+
}
|
|
9844
9960
|
/**
|
|
9845
9961
|
*
|
|
9846
9962
|
* @export
|
|
@@ -9885,10 +10001,10 @@ export interface ServiceCategoryItemModel {
|
|
|
9885
10001
|
'serviceCount'?: number;
|
|
9886
10002
|
/**
|
|
9887
10003
|
*
|
|
9888
|
-
* @type {Array<
|
|
10004
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
9889
10005
|
* @memberof ServiceCategoryItemModel
|
|
9890
10006
|
*/
|
|
9891
|
-
'services'?: Array<
|
|
10007
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
9892
10008
|
}
|
|
9893
10009
|
/**
|
|
9894
10010
|
*
|
|
@@ -9934,483 +10050,222 @@ export interface ServiceCategoryModel {
|
|
|
9934
10050
|
'serviceCount'?: number;
|
|
9935
10051
|
/**
|
|
9936
10052
|
*
|
|
9937
|
-
* @type {Array<
|
|
10053
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
9938
10054
|
* @memberof ServiceCategoryModel
|
|
9939
10055
|
*/
|
|
9940
|
-
'services'?: Array<
|
|
10056
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
9941
10057
|
}
|
|
9942
10058
|
/**
|
|
9943
10059
|
*
|
|
9944
10060
|
* @export
|
|
9945
|
-
* @interface
|
|
10061
|
+
* @interface SnsHandle
|
|
9946
10062
|
*/
|
|
9947
|
-
export interface
|
|
10063
|
+
export interface SnsHandle {
|
|
9948
10064
|
/**
|
|
9949
10065
|
*
|
|
9950
10066
|
* @type {string}
|
|
9951
|
-
* @memberof
|
|
10067
|
+
* @memberof SnsHandle
|
|
9952
10068
|
*/
|
|
9953
10069
|
'id'?: string;
|
|
9954
10070
|
/**
|
|
9955
10071
|
*
|
|
9956
|
-
* @type {
|
|
9957
|
-
* @memberof
|
|
10072
|
+
* @type {SnsType}
|
|
10073
|
+
* @memberof SnsHandle
|
|
9958
10074
|
*/
|
|
9959
|
-
'
|
|
10075
|
+
'snsType'?: SnsType;
|
|
9960
10076
|
/**
|
|
9961
10077
|
*
|
|
9962
10078
|
* @type {string}
|
|
9963
|
-
* @memberof
|
|
10079
|
+
* @memberof SnsHandle
|
|
9964
10080
|
*/
|
|
9965
|
-
'
|
|
10081
|
+
'handle'?: string | null;
|
|
10082
|
+
}
|
|
10083
|
+
/**
|
|
10084
|
+
*
|
|
10085
|
+
* @export
|
|
10086
|
+
* @interface SnsHandleModel
|
|
10087
|
+
*/
|
|
10088
|
+
export interface SnsHandleModel {
|
|
9966
10089
|
/**
|
|
9967
10090
|
*
|
|
9968
10091
|
* @type {string}
|
|
9969
|
-
* @memberof
|
|
10092
|
+
* @memberof SnsHandleModel
|
|
9970
10093
|
*/
|
|
9971
|
-
'
|
|
10094
|
+
'id'?: string;
|
|
9972
10095
|
/**
|
|
9973
10096
|
*
|
|
9974
|
-
* @type {
|
|
9975
|
-
* @memberof
|
|
10097
|
+
* @type {SnsType}
|
|
10098
|
+
* @memberof SnsHandleModel
|
|
9976
10099
|
*/
|
|
9977
|
-
'
|
|
10100
|
+
'snsType'?: SnsType;
|
|
9978
10101
|
/**
|
|
9979
10102
|
*
|
|
9980
10103
|
* @type {string}
|
|
9981
|
-
* @memberof
|
|
10104
|
+
* @memberof SnsHandleModel
|
|
9982
10105
|
*/
|
|
9983
|
-
'
|
|
10106
|
+
'handle'?: string | null;
|
|
10107
|
+
}
|
|
10108
|
+
/**
|
|
10109
|
+
*
|
|
10110
|
+
* @export
|
|
10111
|
+
* @enum {string}
|
|
10112
|
+
*/
|
|
10113
|
+
export declare enum SnsType {
|
|
10114
|
+
Twitter = "Twitter",
|
|
10115
|
+
Facebook = "Facebook",
|
|
10116
|
+
Instagram = "Instagram"
|
|
10117
|
+
}
|
|
10118
|
+
/**
|
|
10119
|
+
*
|
|
10120
|
+
* @export
|
|
10121
|
+
* @interface Source
|
|
10122
|
+
*/
|
|
10123
|
+
export interface Source {
|
|
9984
10124
|
/**
|
|
9985
10125
|
*
|
|
9986
10126
|
* @type {string}
|
|
9987
|
-
* @memberof
|
|
10127
|
+
* @memberof Source
|
|
9988
10128
|
*/
|
|
9989
|
-
'
|
|
10129
|
+
'id'?: string;
|
|
9990
10130
|
/**
|
|
9991
10131
|
*
|
|
9992
10132
|
* @type {string}
|
|
9993
|
-
* @memberof
|
|
10133
|
+
* @memberof Source
|
|
9994
10134
|
*/
|
|
9995
|
-
'
|
|
10135
|
+
'name'?: string | null;
|
|
9996
10136
|
/**
|
|
9997
10137
|
*
|
|
9998
10138
|
* @type {string}
|
|
9999
|
-
* @memberof
|
|
10139
|
+
* @memberof Source
|
|
10000
10140
|
*/
|
|
10001
|
-
'
|
|
10141
|
+
'referenceUrl'?: string | null;
|
|
10002
10142
|
/**
|
|
10003
10143
|
*
|
|
10004
|
-
* @type {
|
|
10005
|
-
* @memberof
|
|
10144
|
+
* @type {number}
|
|
10145
|
+
* @memberof Source
|
|
10006
10146
|
*/
|
|
10007
|
-
'
|
|
10147
|
+
'order'?: number;
|
|
10148
|
+
}
|
|
10149
|
+
/**
|
|
10150
|
+
*
|
|
10151
|
+
* @export
|
|
10152
|
+
* @interface SourceModel
|
|
10153
|
+
*/
|
|
10154
|
+
export interface SourceModel {
|
|
10008
10155
|
/**
|
|
10009
10156
|
*
|
|
10010
10157
|
* @type {string}
|
|
10011
|
-
* @memberof
|
|
10012
|
-
*/
|
|
10013
|
-
'specialtyName'?: string | null;
|
|
10014
|
-
/**
|
|
10015
|
-
*
|
|
10016
|
-
* @type {MarketingType}
|
|
10017
|
-
* @memberof ServiceItemModel
|
|
10018
|
-
*/
|
|
10019
|
-
'marketingType'?: MarketingType;
|
|
10020
|
-
/**
|
|
10021
|
-
*
|
|
10022
|
-
* @type {Procedure}
|
|
10023
|
-
* @memberof ServiceItemModel
|
|
10024
|
-
*/
|
|
10025
|
-
'procedure'?: Procedure;
|
|
10026
|
-
/**
|
|
10027
|
-
*
|
|
10028
|
-
* @type {number}
|
|
10029
|
-
* @memberof ServiceItemModel
|
|
10158
|
+
* @memberof SourceModel
|
|
10030
10159
|
*/
|
|
10031
|
-
'
|
|
10160
|
+
'id'?: string;
|
|
10032
10161
|
/**
|
|
10033
10162
|
*
|
|
10034
|
-
* @type {
|
|
10035
|
-
* @memberof
|
|
10163
|
+
* @type {string}
|
|
10164
|
+
* @memberof SourceModel
|
|
10036
10165
|
*/
|
|
10037
|
-
'
|
|
10166
|
+
'name'?: string | null;
|
|
10038
10167
|
/**
|
|
10039
10168
|
*
|
|
10040
|
-
* @type {
|
|
10041
|
-
* @memberof
|
|
10169
|
+
* @type {string}
|
|
10170
|
+
* @memberof SourceModel
|
|
10042
10171
|
*/
|
|
10043
|
-
'
|
|
10172
|
+
'referenceUrl'?: string | null;
|
|
10044
10173
|
/**
|
|
10045
10174
|
*
|
|
10046
10175
|
* @type {number}
|
|
10047
|
-
* @memberof
|
|
10176
|
+
* @memberof SourceModel
|
|
10048
10177
|
*/
|
|
10049
10178
|
'order'?: number;
|
|
10179
|
+
}
|
|
10180
|
+
/**
|
|
10181
|
+
*
|
|
10182
|
+
* @export
|
|
10183
|
+
* @interface SpecialtiesModel
|
|
10184
|
+
*/
|
|
10185
|
+
export interface SpecialtiesModel {
|
|
10050
10186
|
/**
|
|
10051
10187
|
*
|
|
10052
|
-
* @type {
|
|
10053
|
-
* @memberof
|
|
10188
|
+
* @type {Array<SpecialtyItemModel>}
|
|
10189
|
+
* @memberof SpecialtiesModel
|
|
10054
10190
|
*/
|
|
10055
|
-
'
|
|
10191
|
+
'items'?: Array<SpecialtyItemModel> | null;
|
|
10056
10192
|
/**
|
|
10057
10193
|
*
|
|
10058
|
-
* @type {
|
|
10059
|
-
* @memberof
|
|
10194
|
+
* @type {PagedListMetaData}
|
|
10195
|
+
* @memberof SpecialtiesModel
|
|
10060
10196
|
*/
|
|
10061
|
-
'
|
|
10197
|
+
'metaData'?: PagedListMetaData;
|
|
10062
10198
|
}
|
|
10063
10199
|
/**
|
|
10064
10200
|
*
|
|
10065
10201
|
* @export
|
|
10066
|
-
* @interface
|
|
10202
|
+
* @interface Specialty
|
|
10067
10203
|
*/
|
|
10068
|
-
export interface
|
|
10204
|
+
export interface Specialty {
|
|
10069
10205
|
/**
|
|
10070
10206
|
*
|
|
10071
10207
|
* @type {string}
|
|
10072
|
-
* @memberof
|
|
10208
|
+
* @memberof Specialty
|
|
10073
10209
|
*/
|
|
10074
10210
|
'id'?: string;
|
|
10075
10211
|
/**
|
|
10076
10212
|
*
|
|
10077
10213
|
* @type {string}
|
|
10078
|
-
* @memberof
|
|
10214
|
+
* @memberof Specialty
|
|
10079
10215
|
*/
|
|
10080
10216
|
'name'?: string | null;
|
|
10081
10217
|
/**
|
|
10082
10218
|
*
|
|
10083
10219
|
* @type {string}
|
|
10084
|
-
* @memberof
|
|
10220
|
+
* @memberof Specialty
|
|
10085
10221
|
*/
|
|
10086
|
-
'
|
|
10222
|
+
'normalizedName'?: string | null;
|
|
10087
10223
|
/**
|
|
10088
10224
|
*
|
|
10089
10225
|
* @type {string}
|
|
10090
|
-
* @memberof
|
|
10226
|
+
* @memberof Specialty
|
|
10091
10227
|
*/
|
|
10092
10228
|
'description'?: string | null;
|
|
10093
10229
|
/**
|
|
10094
10230
|
*
|
|
10095
10231
|
* @type {string}
|
|
10096
|
-
* @memberof
|
|
10232
|
+
* @memberof Specialty
|
|
10097
10233
|
*/
|
|
10098
10234
|
'content'?: string | null;
|
|
10099
10235
|
/**
|
|
10100
10236
|
*
|
|
10101
10237
|
* @type {string}
|
|
10102
|
-
* @memberof
|
|
10238
|
+
* @memberof Specialty
|
|
10103
10239
|
*/
|
|
10104
|
-
'
|
|
10240
|
+
'specialtyTypeId'?: string;
|
|
10105
10241
|
/**
|
|
10106
10242
|
*
|
|
10107
|
-
* @type {
|
|
10108
|
-
* @memberof
|
|
10243
|
+
* @type {SpecialtyType}
|
|
10244
|
+
* @memberof Specialty
|
|
10109
10245
|
*/
|
|
10110
|
-
'
|
|
10246
|
+
'specialtyType'?: SpecialtyType;
|
|
10111
10247
|
/**
|
|
10112
10248
|
*
|
|
10113
|
-
* @type {
|
|
10114
|
-
* @memberof
|
|
10249
|
+
* @type {Array<HospitalSpecialty>}
|
|
10250
|
+
* @memberof Specialty
|
|
10115
10251
|
*/
|
|
10116
|
-
'
|
|
10252
|
+
'hospitalSpecialties'?: Array<HospitalSpecialty> | null;
|
|
10117
10253
|
/**
|
|
10118
10254
|
*
|
|
10119
|
-
* @type {
|
|
10120
|
-
* @memberof
|
|
10255
|
+
* @type {Array<DoctorSpecialty>}
|
|
10256
|
+
* @memberof Specialty
|
|
10121
10257
|
*/
|
|
10122
|
-
'
|
|
10258
|
+
'doctorSpecialties'?: Array<DoctorSpecialty> | null;
|
|
10123
10259
|
/**
|
|
10124
10260
|
*
|
|
10125
|
-
* @type {
|
|
10126
|
-
* @memberof
|
|
10261
|
+
* @type {Array<Media>}
|
|
10262
|
+
* @memberof Specialty
|
|
10127
10263
|
*/
|
|
10128
|
-
'
|
|
10264
|
+
'medias'?: Array<Media> | null;
|
|
10129
10265
|
/**
|
|
10130
10266
|
*
|
|
10131
|
-
* @type {
|
|
10132
|
-
* @memberof
|
|
10133
|
-
*/
|
|
10134
|
-
'specialtyName'?: string | null;
|
|
10135
|
-
/**
|
|
10136
|
-
*
|
|
10137
|
-
* @type {MarketingType}
|
|
10138
|
-
* @memberof ServiceModel
|
|
10139
|
-
*/
|
|
10140
|
-
'marketingType'?: MarketingType;
|
|
10141
|
-
/**
|
|
10142
|
-
*
|
|
10143
|
-
* @type {Procedure}
|
|
10144
|
-
* @memberof ServiceModel
|
|
10145
|
-
*/
|
|
10146
|
-
'procedure'?: Procedure;
|
|
10147
|
-
/**
|
|
10148
|
-
*
|
|
10149
|
-
* @type {number}
|
|
10150
|
-
* @memberof ServiceModel
|
|
10151
|
-
*/
|
|
10152
|
-
'minPrice'?: number | null;
|
|
10153
|
-
/**
|
|
10154
|
-
*
|
|
10155
|
-
* @type {number}
|
|
10156
|
-
* @memberof ServiceModel
|
|
10157
|
-
*/
|
|
10158
|
-
'maxPrice'?: number | null;
|
|
10159
|
-
/**
|
|
10160
|
-
*
|
|
10161
|
-
* @type {boolean}
|
|
10162
|
-
* @memberof ServiceModel
|
|
10163
|
-
*/
|
|
10164
|
-
'priceReuqest'?: boolean;
|
|
10165
|
-
/**
|
|
10166
|
-
*
|
|
10167
|
-
* @type {number}
|
|
10168
|
-
* @memberof ServiceModel
|
|
10169
|
-
*/
|
|
10170
|
-
'order'?: number;
|
|
10171
|
-
/**
|
|
10172
|
-
*
|
|
10173
|
-
* @type {AuditableEntity}
|
|
10174
|
-
* @memberof ServiceModel
|
|
10175
|
-
*/
|
|
10176
|
-
'auditableEntity'?: AuditableEntity;
|
|
10177
|
-
/**
|
|
10178
|
-
*
|
|
10179
|
-
* @type {boolean}
|
|
10180
|
-
* @memberof ServiceModel
|
|
10181
|
-
*/
|
|
10182
|
-
'confirmed'?: boolean;
|
|
10183
|
-
}
|
|
10184
|
-
/**
|
|
10185
|
-
*
|
|
10186
|
-
* @export
|
|
10187
|
-
* @interface ServicesModel
|
|
10188
|
-
*/
|
|
10189
|
-
export interface ServicesModel {
|
|
10190
|
-
/**
|
|
10191
|
-
*
|
|
10192
|
-
* @type {Array<ServiceItemModel>}
|
|
10193
|
-
* @memberof ServicesModel
|
|
10194
|
-
*/
|
|
10195
|
-
'items'?: Array<ServiceItemModel> | null;
|
|
10196
|
-
/**
|
|
10197
|
-
*
|
|
10198
|
-
* @type {PagedListMetaData}
|
|
10199
|
-
* @memberof ServicesModel
|
|
10200
|
-
*/
|
|
10201
|
-
'metaData'?: PagedListMetaData;
|
|
10202
|
-
}
|
|
10203
|
-
/**
|
|
10204
|
-
*
|
|
10205
|
-
* @export
|
|
10206
|
-
* @interface SnsHandle
|
|
10207
|
-
*/
|
|
10208
|
-
export interface SnsHandle {
|
|
10209
|
-
/**
|
|
10210
|
-
*
|
|
10211
|
-
* @type {string}
|
|
10212
|
-
* @memberof SnsHandle
|
|
10213
|
-
*/
|
|
10214
|
-
'id'?: string;
|
|
10215
|
-
/**
|
|
10216
|
-
*
|
|
10217
|
-
* @type {SnsType}
|
|
10218
|
-
* @memberof SnsHandle
|
|
10219
|
-
*/
|
|
10220
|
-
'snsType'?: SnsType;
|
|
10221
|
-
/**
|
|
10222
|
-
*
|
|
10223
|
-
* @type {string}
|
|
10224
|
-
* @memberof SnsHandle
|
|
10225
|
-
*/
|
|
10226
|
-
'handle'?: string | null;
|
|
10227
|
-
}
|
|
10228
|
-
/**
|
|
10229
|
-
*
|
|
10230
|
-
* @export
|
|
10231
|
-
* @interface SnsHandleModel
|
|
10232
|
-
*/
|
|
10233
|
-
export interface SnsHandleModel {
|
|
10234
|
-
/**
|
|
10235
|
-
*
|
|
10236
|
-
* @type {string}
|
|
10237
|
-
* @memberof SnsHandleModel
|
|
10238
|
-
*/
|
|
10239
|
-
'id'?: string;
|
|
10240
|
-
/**
|
|
10241
|
-
*
|
|
10242
|
-
* @type {SnsType}
|
|
10243
|
-
* @memberof SnsHandleModel
|
|
10244
|
-
*/
|
|
10245
|
-
'snsType'?: SnsType;
|
|
10246
|
-
/**
|
|
10247
|
-
*
|
|
10248
|
-
* @type {string}
|
|
10249
|
-
* @memberof SnsHandleModel
|
|
10250
|
-
*/
|
|
10251
|
-
'handle'?: string | null;
|
|
10252
|
-
}
|
|
10253
|
-
/**
|
|
10254
|
-
*
|
|
10255
|
-
* @export
|
|
10256
|
-
* @enum {string}
|
|
10257
|
-
*/
|
|
10258
|
-
export declare enum SnsType {
|
|
10259
|
-
Twitter = "Twitter",
|
|
10260
|
-
Facebook = "Facebook",
|
|
10261
|
-
Instagram = "Instagram"
|
|
10262
|
-
}
|
|
10263
|
-
/**
|
|
10264
|
-
*
|
|
10265
|
-
* @export
|
|
10266
|
-
* @interface Source
|
|
10267
|
-
*/
|
|
10268
|
-
export interface Source {
|
|
10269
|
-
/**
|
|
10270
|
-
*
|
|
10271
|
-
* @type {string}
|
|
10272
|
-
* @memberof Source
|
|
10273
|
-
*/
|
|
10274
|
-
'id'?: string;
|
|
10275
|
-
/**
|
|
10276
|
-
*
|
|
10277
|
-
* @type {string}
|
|
10278
|
-
* @memberof Source
|
|
10279
|
-
*/
|
|
10280
|
-
'name'?: string | null;
|
|
10281
|
-
/**
|
|
10282
|
-
*
|
|
10283
|
-
* @type {string}
|
|
10284
|
-
* @memberof Source
|
|
10285
|
-
*/
|
|
10286
|
-
'referenceUrl'?: string | null;
|
|
10287
|
-
/**
|
|
10288
|
-
*
|
|
10289
|
-
* @type {number}
|
|
10290
|
-
* @memberof Source
|
|
10291
|
-
*/
|
|
10292
|
-
'order'?: number;
|
|
10293
|
-
}
|
|
10294
|
-
/**
|
|
10295
|
-
*
|
|
10296
|
-
* @export
|
|
10297
|
-
* @interface SourceModel
|
|
10298
|
-
*/
|
|
10299
|
-
export interface SourceModel {
|
|
10300
|
-
/**
|
|
10301
|
-
*
|
|
10302
|
-
* @type {string}
|
|
10303
|
-
* @memberof SourceModel
|
|
10304
|
-
*/
|
|
10305
|
-
'id'?: string;
|
|
10306
|
-
/**
|
|
10307
|
-
*
|
|
10308
|
-
* @type {string}
|
|
10309
|
-
* @memberof SourceModel
|
|
10310
|
-
*/
|
|
10311
|
-
'name'?: string | null;
|
|
10312
|
-
/**
|
|
10313
|
-
*
|
|
10314
|
-
* @type {string}
|
|
10315
|
-
* @memberof SourceModel
|
|
10316
|
-
*/
|
|
10317
|
-
'referenceUrl'?: string | null;
|
|
10318
|
-
/**
|
|
10319
|
-
*
|
|
10320
|
-
* @type {number}
|
|
10321
|
-
* @memberof SourceModel
|
|
10322
|
-
*/
|
|
10323
|
-
'order'?: number;
|
|
10324
|
-
}
|
|
10325
|
-
/**
|
|
10326
|
-
*
|
|
10327
|
-
* @export
|
|
10328
|
-
* @interface SpecialtiesModel
|
|
10329
|
-
*/
|
|
10330
|
-
export interface SpecialtiesModel {
|
|
10331
|
-
/**
|
|
10332
|
-
*
|
|
10333
|
-
* @type {Array<SpecialtyItemModel>}
|
|
10334
|
-
* @memberof SpecialtiesModel
|
|
10335
|
-
*/
|
|
10336
|
-
'items'?: Array<SpecialtyItemModel> | null;
|
|
10337
|
-
/**
|
|
10338
|
-
*
|
|
10339
|
-
* @type {PagedListMetaData}
|
|
10340
|
-
* @memberof SpecialtiesModel
|
|
10341
|
-
*/
|
|
10342
|
-
'metaData'?: PagedListMetaData;
|
|
10343
|
-
}
|
|
10344
|
-
/**
|
|
10345
|
-
*
|
|
10346
|
-
* @export
|
|
10347
|
-
* @interface Specialty
|
|
10348
|
-
*/
|
|
10349
|
-
export interface Specialty {
|
|
10350
|
-
/**
|
|
10351
|
-
*
|
|
10352
|
-
* @type {string}
|
|
10353
|
-
* @memberof Specialty
|
|
10354
|
-
*/
|
|
10355
|
-
'id'?: string;
|
|
10356
|
-
/**
|
|
10357
|
-
*
|
|
10358
|
-
* @type {string}
|
|
10359
|
-
* @memberof Specialty
|
|
10360
|
-
*/
|
|
10361
|
-
'name'?: string | null;
|
|
10362
|
-
/**
|
|
10363
|
-
*
|
|
10364
|
-
* @type {string}
|
|
10365
|
-
* @memberof Specialty
|
|
10366
|
-
*/
|
|
10367
|
-
'normalizedName'?: string | null;
|
|
10368
|
-
/**
|
|
10369
|
-
*
|
|
10370
|
-
* @type {string}
|
|
10371
|
-
* @memberof Specialty
|
|
10372
|
-
*/
|
|
10373
|
-
'description'?: string | null;
|
|
10374
|
-
/**
|
|
10375
|
-
*
|
|
10376
|
-
* @type {string}
|
|
10377
|
-
* @memberof Specialty
|
|
10378
|
-
*/
|
|
10379
|
-
'content'?: string | null;
|
|
10380
|
-
/**
|
|
10381
|
-
*
|
|
10382
|
-
* @type {string}
|
|
10383
|
-
* @memberof Specialty
|
|
10384
|
-
*/
|
|
10385
|
-
'specialtyTypeId'?: string;
|
|
10386
|
-
/**
|
|
10387
|
-
*
|
|
10388
|
-
* @type {SpecialtyType}
|
|
10389
|
-
* @memberof Specialty
|
|
10390
|
-
*/
|
|
10391
|
-
'specialtyType'?: SpecialtyType;
|
|
10392
|
-
/**
|
|
10393
|
-
*
|
|
10394
|
-
* @type {Array<HospitalSpecialty>}
|
|
10395
|
-
* @memberof Specialty
|
|
10396
|
-
*/
|
|
10397
|
-
'hospitalSpecialties'?: Array<HospitalSpecialty> | null;
|
|
10398
|
-
/**
|
|
10399
|
-
*
|
|
10400
|
-
* @type {Array<DoctorSpecialty>}
|
|
10401
|
-
* @memberof Specialty
|
|
10402
|
-
*/
|
|
10403
|
-
'doctorSpecialties'?: Array<DoctorSpecialty> | null;
|
|
10404
|
-
/**
|
|
10405
|
-
*
|
|
10406
|
-
* @type {Array<Media>}
|
|
10407
|
-
* @memberof Specialty
|
|
10408
|
-
*/
|
|
10409
|
-
'medias'?: Array<Media> | null;
|
|
10410
|
-
/**
|
|
10411
|
-
*
|
|
10412
|
-
* @type {AuditableEntity}
|
|
10413
|
-
* @memberof Specialty
|
|
10267
|
+
* @type {AuditableEntity}
|
|
10268
|
+
* @memberof Specialty
|
|
10414
10269
|
*/
|
|
10415
10270
|
'auditableEntity'?: AuditableEntity;
|
|
10416
10271
|
}
|
|
@@ -11929,10 +11784,10 @@ export interface UpdateServiceCategoryCommand {
|
|
|
11929
11784
|
'serviceCount'?: number;
|
|
11930
11785
|
/**
|
|
11931
11786
|
*
|
|
11932
|
-
* @type {Array<
|
|
11787
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
11933
11788
|
* @memberof UpdateServiceCategoryCommand
|
|
11934
11789
|
*/
|
|
11935
|
-
'services'?: Array<
|
|
11790
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
11936
11791
|
/**
|
|
11937
11792
|
*
|
|
11938
11793
|
* @type {Array<string>}
|
|
@@ -14096,6 +13951,119 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14096
13951
|
*/
|
|
14097
13952
|
apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
|
|
14098
13953
|
}
|
|
13954
|
+
/**
|
|
13955
|
+
* CommunicationsApi - axios parameter creator
|
|
13956
|
+
* @export
|
|
13957
|
+
*/
|
|
13958
|
+
export declare const CommunicationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
13959
|
+
/**
|
|
13960
|
+
*
|
|
13961
|
+
* @summary Delete CommunicationUser.
|
|
13962
|
+
* @param {*} [options] Override http request option.
|
|
13963
|
+
* @throws {RequiredError}
|
|
13964
|
+
*/
|
|
13965
|
+
apiV1CommunicationsDelete: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13966
|
+
/**
|
|
13967
|
+
*
|
|
13968
|
+
* @summary Get CommunicationUser.
|
|
13969
|
+
* @param {*} [options] Override http request option.
|
|
13970
|
+
* @throws {RequiredError}
|
|
13971
|
+
*/
|
|
13972
|
+
apiV1CommunicationsGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13973
|
+
/**
|
|
13974
|
+
*
|
|
13975
|
+
* @summary Revoke CommunicationUser.
|
|
13976
|
+
* @param {*} [options] Override http request option.
|
|
13977
|
+
* @throws {RequiredError}
|
|
13978
|
+
*/
|
|
13979
|
+
apiV1CommunicationsPut: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13980
|
+
};
|
|
13981
|
+
/**
|
|
13982
|
+
* CommunicationsApi - functional programming interface
|
|
13983
|
+
* @export
|
|
13984
|
+
*/
|
|
13985
|
+
export declare const CommunicationsApiFp: (configuration?: Configuration | undefined) => {
|
|
13986
|
+
/**
|
|
13987
|
+
*
|
|
13988
|
+
* @summary Delete CommunicationUser.
|
|
13989
|
+
* @param {*} [options] Override http request option.
|
|
13990
|
+
* @throws {RequiredError}
|
|
13991
|
+
*/
|
|
13992
|
+
apiV1CommunicationsDelete(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<number>>;
|
|
13993
|
+
/**
|
|
13994
|
+
*
|
|
13995
|
+
* @summary Get CommunicationUser.
|
|
13996
|
+
* @param {*} [options] Override http request option.
|
|
13997
|
+
* @throws {RequiredError}
|
|
13998
|
+
*/
|
|
13999
|
+
apiV1CommunicationsGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
|
|
14000
|
+
/**
|
|
14001
|
+
*
|
|
14002
|
+
* @summary Revoke CommunicationUser.
|
|
14003
|
+
* @param {*} [options] Override http request option.
|
|
14004
|
+
* @throws {RequiredError}
|
|
14005
|
+
*/
|
|
14006
|
+
apiV1CommunicationsPut(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
|
|
14007
|
+
};
|
|
14008
|
+
/**
|
|
14009
|
+
* CommunicationsApi - factory interface
|
|
14010
|
+
* @export
|
|
14011
|
+
*/
|
|
14012
|
+
export declare const CommunicationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14013
|
+
/**
|
|
14014
|
+
*
|
|
14015
|
+
* @summary Delete CommunicationUser.
|
|
14016
|
+
* @param {*} [options] Override http request option.
|
|
14017
|
+
* @throws {RequiredError}
|
|
14018
|
+
*/
|
|
14019
|
+
apiV1CommunicationsDelete(options?: any): AxiosPromise<number>;
|
|
14020
|
+
/**
|
|
14021
|
+
*
|
|
14022
|
+
* @summary Get CommunicationUser.
|
|
14023
|
+
* @param {*} [options] Override http request option.
|
|
14024
|
+
* @throws {RequiredError}
|
|
14025
|
+
*/
|
|
14026
|
+
apiV1CommunicationsGet(options?: any): AxiosPromise<CommunicationUserTokenModel>;
|
|
14027
|
+
/**
|
|
14028
|
+
*
|
|
14029
|
+
* @summary Revoke CommunicationUser.
|
|
14030
|
+
* @param {*} [options] Override http request option.
|
|
14031
|
+
* @throws {RequiredError}
|
|
14032
|
+
*/
|
|
14033
|
+
apiV1CommunicationsPut(options?: any): AxiosPromise<CommunicationUserTokenModel>;
|
|
14034
|
+
};
|
|
14035
|
+
/**
|
|
14036
|
+
* CommunicationsApi - object-oriented interface
|
|
14037
|
+
* @export
|
|
14038
|
+
* @class CommunicationsApi
|
|
14039
|
+
* @extends {BaseAPI}
|
|
14040
|
+
*/
|
|
14041
|
+
export declare class CommunicationsApi extends BaseAPI {
|
|
14042
|
+
/**
|
|
14043
|
+
*
|
|
14044
|
+
* @summary Delete CommunicationUser.
|
|
14045
|
+
* @param {*} [options] Override http request option.
|
|
14046
|
+
* @throws {RequiredError}
|
|
14047
|
+
* @memberof CommunicationsApi
|
|
14048
|
+
*/
|
|
14049
|
+
apiV1CommunicationsDelete(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<number>>;
|
|
14050
|
+
/**
|
|
14051
|
+
*
|
|
14052
|
+
* @summary Get CommunicationUser.
|
|
14053
|
+
* @param {*} [options] Override http request option.
|
|
14054
|
+
* @throws {RequiredError}
|
|
14055
|
+
* @memberof CommunicationsApi
|
|
14056
|
+
*/
|
|
14057
|
+
apiV1CommunicationsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
|
|
14058
|
+
/**
|
|
14059
|
+
*
|
|
14060
|
+
* @summary Revoke CommunicationUser.
|
|
14061
|
+
* @param {*} [options] Override http request option.
|
|
14062
|
+
* @throws {RequiredError}
|
|
14063
|
+
* @memberof CommunicationsApi
|
|
14064
|
+
*/
|
|
14065
|
+
apiV1CommunicationsPut(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
|
|
14066
|
+
}
|
|
14099
14067
|
/**
|
|
14100
14068
|
* ConsultationsApi - axios parameter creator
|
|
14101
14069
|
* @export
|
|
@@ -17707,65 +17675,122 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17707
17675
|
* @param {*} [options] Override http request option.
|
|
17708
17676
|
* @throws {RequiredError}
|
|
17709
17677
|
*/
|
|
17710
|
-
apiV1HospitalsHospitalIdMediasGet: (hospitalId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17678
|
+
apiV1HospitalsHospitalIdMediasGet: (hospitalId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17679
|
+
/**
|
|
17680
|
+
*
|
|
17681
|
+
* @summary Delete HospitalMedia
|
|
17682
|
+
* @param {string} hospitalId
|
|
17683
|
+
* @param {string} mediaId
|
|
17684
|
+
* @param {*} [options] Override http request option.
|
|
17685
|
+
* @throws {RequiredError}
|
|
17686
|
+
*/
|
|
17687
|
+
apiV1HospitalsHospitalIdMediasMediaIdDelete: (hospitalId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17688
|
+
/**
|
|
17689
|
+
*
|
|
17690
|
+
* @summary Get HospitalMedia.
|
|
17691
|
+
* @param {string} hospitalId
|
|
17692
|
+
* @param {string} mediaId
|
|
17693
|
+
* @param {*} [options] Override http request option.
|
|
17694
|
+
* @throws {RequiredError}
|
|
17695
|
+
*/
|
|
17696
|
+
apiV1HospitalsHospitalIdMediasMediaIdGet: (hospitalId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17697
|
+
/**
|
|
17698
|
+
*
|
|
17699
|
+
* @summary Update HospitalMedia.
|
|
17700
|
+
* @param {string} hospitalId
|
|
17701
|
+
* @param {string} mediaId
|
|
17702
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
17703
|
+
* @param {*} [options] Override http request option.
|
|
17704
|
+
* @throws {RequiredError}
|
|
17705
|
+
*/
|
|
17706
|
+
apiV1HospitalsHospitalIdMediasMediaIdPut: (hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17707
|
+
/**
|
|
17708
|
+
*
|
|
17709
|
+
* @summary Create HospitalMedia.
|
|
17710
|
+
* @param {string} hospitalId
|
|
17711
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
17712
|
+
* @param {*} [options] Override http request option.
|
|
17713
|
+
* @throws {RequiredError}
|
|
17714
|
+
*/
|
|
17715
|
+
apiV1HospitalsHospitalIdMediasPost: (hospitalId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17716
|
+
/**
|
|
17717
|
+
*
|
|
17718
|
+
* @summary Update Hospital.
|
|
17719
|
+
* @param {string} hospitalId
|
|
17720
|
+
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
17721
|
+
* @param {*} [options] Override http request option.
|
|
17722
|
+
* @throws {RequiredError}
|
|
17723
|
+
*/
|
|
17724
|
+
apiV1HospitalsHospitalIdPut: (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17711
17725
|
/**
|
|
17712
17726
|
*
|
|
17713
|
-
* @summary
|
|
17727
|
+
* @summary Get all HospitalSpecialties.
|
|
17714
17728
|
* @param {string} hospitalId
|
|
17715
|
-
* @param {string}
|
|
17729
|
+
* @param {string} [hospitalName]
|
|
17730
|
+
* @param {string} [hospitalSlug]
|
|
17731
|
+
* @param {string} [specialtyId]
|
|
17732
|
+
* @param {string} [specialtyName]
|
|
17733
|
+
* @param {string} [specialtyTypeId]
|
|
17734
|
+
* @param {MarketingType} [marketingType]
|
|
17735
|
+
* @param {Date} [created]
|
|
17736
|
+
* @param {number} [page]
|
|
17737
|
+
* @param {number} [limit]
|
|
17738
|
+
* @param {Date} [lastRetrieved]
|
|
17716
17739
|
* @param {*} [options] Override http request option.
|
|
17717
17740
|
* @throws {RequiredError}
|
|
17718
17741
|
*/
|
|
17719
|
-
|
|
17742
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17720
17743
|
/**
|
|
17721
17744
|
*
|
|
17722
|
-
* @summary
|
|
17745
|
+
* @summary Create HospitalSpecialty.
|
|
17723
17746
|
* @param {string} hospitalId
|
|
17724
|
-
* @param {
|
|
17747
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
17725
17748
|
* @param {*} [options] Override http request option.
|
|
17726
17749
|
* @throws {RequiredError}
|
|
17727
17750
|
*/
|
|
17728
|
-
|
|
17751
|
+
apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17729
17752
|
/**
|
|
17730
17753
|
*
|
|
17731
|
-
* @summary
|
|
17754
|
+
* @summary Delete HospitalSpecialty.
|
|
17732
17755
|
* @param {string} hospitalId
|
|
17733
|
-
* @param {string}
|
|
17734
|
-
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
17756
|
+
* @param {string} specialtyId
|
|
17735
17757
|
* @param {*} [options] Override http request option.
|
|
17736
17758
|
* @throws {RequiredError}
|
|
17737
17759
|
*/
|
|
17738
|
-
|
|
17760
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17739
17761
|
/**
|
|
17740
17762
|
*
|
|
17741
|
-
* @summary
|
|
17763
|
+
* @summary Get HospitalSpecialty.
|
|
17742
17764
|
* @param {string} hospitalId
|
|
17743
|
-
* @param {
|
|
17765
|
+
* @param {string} specialtyId
|
|
17744
17766
|
* @param {*} [options] Override http request option.
|
|
17745
17767
|
* @throws {RequiredError}
|
|
17746
17768
|
*/
|
|
17747
|
-
|
|
17769
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17748
17770
|
/**
|
|
17749
17771
|
*
|
|
17750
|
-
* @summary Update
|
|
17772
|
+
* @summary Update HospitalSpecialty.
|
|
17751
17773
|
* @param {string} hospitalId
|
|
17752
|
-
* @param {
|
|
17774
|
+
* @param {string} specialtyId
|
|
17775
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
17753
17776
|
* @param {*} [options] Override http request option.
|
|
17754
17777
|
* @throws {RequiredError}
|
|
17755
17778
|
*/
|
|
17756
|
-
|
|
17779
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17757
17780
|
/**
|
|
17758
17781
|
*
|
|
17759
17782
|
* @summary Get all HospitalServices.
|
|
17760
17783
|
* @param {string} hospitalId
|
|
17784
|
+
* @param {string} specialtyId
|
|
17761
17785
|
* @param {string} [hospitalName]
|
|
17762
17786
|
* @param {string} [hospitalSlug]
|
|
17763
17787
|
* @param {string} [id]
|
|
17764
17788
|
* @param {string} [name]
|
|
17765
17789
|
* @param {string} [description]
|
|
17766
|
-
* @param {string} [
|
|
17790
|
+
* @param {string} [specialtyName]
|
|
17767
17791
|
* @param {string} [specialtyTypeId]
|
|
17768
17792
|
* @param {string} [specialtyTypeName]
|
|
17793
|
+
* @param {string} [serviceCategoryId]
|
|
17769
17794
|
* @param {MarketingType} [marketingType]
|
|
17770
17795
|
* @param {Procedure} [procedure]
|
|
17771
17796
|
* @param {Date} [created]
|
|
@@ -17776,100 +17801,109 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17776
17801
|
* @param {*} [options] Override http request option.
|
|
17777
17802
|
* @throws {RequiredError}
|
|
17778
17803
|
*/
|
|
17779
|
-
|
|
17804
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17780
17805
|
/**
|
|
17781
17806
|
*
|
|
17782
17807
|
* @summary Create HospitalService.
|
|
17783
17808
|
* @param {string} hospitalId
|
|
17809
|
+
* @param {string} specialtyId
|
|
17784
17810
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
17785
17811
|
* @param {*} [options] Override http request option.
|
|
17786
17812
|
* @throws {RequiredError}
|
|
17787
17813
|
*/
|
|
17788
|
-
|
|
17814
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17789
17815
|
/**
|
|
17790
17816
|
*
|
|
17791
17817
|
* @summary Delete HospitalService
|
|
17792
17818
|
* @param {string} hospitalId
|
|
17819
|
+
* @param {string} specialtyId
|
|
17793
17820
|
* @param {string} serviceId
|
|
17794
17821
|
* @param {*} [options] Override http request option.
|
|
17795
17822
|
* @throws {RequiredError}
|
|
17796
17823
|
*/
|
|
17797
|
-
|
|
17824
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17798
17825
|
/**
|
|
17799
17826
|
*
|
|
17800
17827
|
* @summary Get HospitalService.
|
|
17801
17828
|
* @param {string} hospitalId
|
|
17829
|
+
* @param {string} specialtyId
|
|
17802
17830
|
* @param {string} serviceId
|
|
17803
17831
|
* @param {string} [languageCode]
|
|
17804
17832
|
* @param {*} [options] Override http request option.
|
|
17805
17833
|
* @throws {RequiredError}
|
|
17806
17834
|
*/
|
|
17807
|
-
|
|
17835
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17808
17836
|
/**
|
|
17809
17837
|
*
|
|
17810
|
-
* @summary
|
|
17838
|
+
* @summary Get all HospitalServiceMedias.
|
|
17811
17839
|
* @param {string} hospitalId
|
|
17840
|
+
* @param {string} specialtyId
|
|
17812
17841
|
* @param {string} serviceId
|
|
17813
|
-
* @param {
|
|
17842
|
+
* @param {string} [id]
|
|
17843
|
+
* @param {MediaType} [mediaType]
|
|
17844
|
+
* @param {number} [page]
|
|
17845
|
+
* @param {number} [limit]
|
|
17846
|
+
* @param {Date} [lastRetrieved]
|
|
17814
17847
|
* @param {*} [options] Override http request option.
|
|
17815
17848
|
* @throws {RequiredError}
|
|
17816
17849
|
*/
|
|
17817
|
-
|
|
17850
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet: (hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17818
17851
|
/**
|
|
17819
17852
|
*
|
|
17820
|
-
* @summary
|
|
17853
|
+
* @summary Delete HospitalServiceMedia
|
|
17821
17854
|
* @param {string} hospitalId
|
|
17822
|
-
* @param {string}
|
|
17823
|
-
* @param {string}
|
|
17824
|
-
* @param {string}
|
|
17825
|
-
* @param {string} [specialtyName]
|
|
17826
|
-
* @param {string} [specialtyTypeId]
|
|
17827
|
-
* @param {MarketingType} [marketingType]
|
|
17828
|
-
* @param {Date} [created]
|
|
17829
|
-
* @param {number} [page]
|
|
17830
|
-
* @param {number} [limit]
|
|
17831
|
-
* @param {Date} [lastRetrieved]
|
|
17855
|
+
* @param {string} specialtyId
|
|
17856
|
+
* @param {string} serviceId
|
|
17857
|
+
* @param {string} mediaId
|
|
17832
17858
|
* @param {*} [options] Override http request option.
|
|
17833
17859
|
* @throws {RequiredError}
|
|
17834
17860
|
*/
|
|
17835
|
-
|
|
17861
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17836
17862
|
/**
|
|
17837
17863
|
*
|
|
17838
|
-
* @summary
|
|
17864
|
+
* @summary Get HospitalServiceMedia.
|
|
17839
17865
|
* @param {string} hospitalId
|
|
17840
|
-
* @param {
|
|
17866
|
+
* @param {string} specialtyId
|
|
17867
|
+
* @param {string} serviceId
|
|
17868
|
+
* @param {string} mediaId
|
|
17841
17869
|
* @param {*} [options] Override http request option.
|
|
17842
17870
|
* @throws {RequiredError}
|
|
17843
17871
|
*/
|
|
17844
|
-
|
|
17872
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17845
17873
|
/**
|
|
17846
17874
|
*
|
|
17847
|
-
* @summary
|
|
17875
|
+
* @summary Update HospitalServiceMedia.
|
|
17848
17876
|
* @param {string} hospitalId
|
|
17849
17877
|
* @param {string} specialtyId
|
|
17878
|
+
* @param {string} serviceId
|
|
17879
|
+
* @param {string} mediaId
|
|
17880
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
17850
17881
|
* @param {*} [options] Override http request option.
|
|
17851
17882
|
* @throws {RequiredError}
|
|
17852
17883
|
*/
|
|
17853
|
-
|
|
17884
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17854
17885
|
/**
|
|
17855
17886
|
*
|
|
17856
|
-
* @summary
|
|
17887
|
+
* @summary Create HospitalServiceMedia.
|
|
17857
17888
|
* @param {string} hospitalId
|
|
17858
17889
|
* @param {string} specialtyId
|
|
17890
|
+
* @param {string} serviceId
|
|
17891
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
17859
17892
|
* @param {*} [options] Override http request option.
|
|
17860
17893
|
* @throws {RequiredError}
|
|
17861
17894
|
*/
|
|
17862
|
-
|
|
17895
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17863
17896
|
/**
|
|
17864
17897
|
*
|
|
17865
|
-
* @summary Update
|
|
17898
|
+
* @summary Update HospitalService.
|
|
17866
17899
|
* @param {string} hospitalId
|
|
17867
17900
|
* @param {string} specialtyId
|
|
17868
|
-
* @param {
|
|
17901
|
+
* @param {string} serviceId
|
|
17902
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
17869
17903
|
* @param {*} [options] Override http request option.
|
|
17870
17904
|
* @throws {RequiredError}
|
|
17871
17905
|
*/
|
|
17872
|
-
|
|
17906
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17873
17907
|
/**
|
|
17874
17908
|
*
|
|
17875
17909
|
* @summary Create Hospital.
|
|
@@ -18183,18 +18217,75 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18183
18217
|
* @throws {RequiredError}
|
|
18184
18218
|
*/
|
|
18185
18219
|
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18220
|
+
/**
|
|
18221
|
+
*
|
|
18222
|
+
* @summary Get all HospitalSpecialties.
|
|
18223
|
+
* @param {string} hospitalId
|
|
18224
|
+
* @param {string} [hospitalName]
|
|
18225
|
+
* @param {string} [hospitalSlug]
|
|
18226
|
+
* @param {string} [specialtyId]
|
|
18227
|
+
* @param {string} [specialtyName]
|
|
18228
|
+
* @param {string} [specialtyTypeId]
|
|
18229
|
+
* @param {MarketingType} [marketingType]
|
|
18230
|
+
* @param {Date} [created]
|
|
18231
|
+
* @param {number} [page]
|
|
18232
|
+
* @param {number} [limit]
|
|
18233
|
+
* @param {Date} [lastRetrieved]
|
|
18234
|
+
* @param {*} [options] Override http request option.
|
|
18235
|
+
* @throws {RequiredError}
|
|
18236
|
+
*/
|
|
18237
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
18238
|
+
/**
|
|
18239
|
+
*
|
|
18240
|
+
* @summary Create HospitalSpecialty.
|
|
18241
|
+
* @param {string} hospitalId
|
|
18242
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
18243
|
+
* @param {*} [options] Override http request option.
|
|
18244
|
+
* @throws {RequiredError}
|
|
18245
|
+
*/
|
|
18246
|
+
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18247
|
+
/**
|
|
18248
|
+
*
|
|
18249
|
+
* @summary Delete HospitalSpecialty.
|
|
18250
|
+
* @param {string} hospitalId
|
|
18251
|
+
* @param {string} specialtyId
|
|
18252
|
+
* @param {*} [options] Override http request option.
|
|
18253
|
+
* @throws {RequiredError}
|
|
18254
|
+
*/
|
|
18255
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18256
|
+
/**
|
|
18257
|
+
*
|
|
18258
|
+
* @summary Get HospitalSpecialty.
|
|
18259
|
+
* @param {string} hospitalId
|
|
18260
|
+
* @param {string} specialtyId
|
|
18261
|
+
* @param {*} [options] Override http request option.
|
|
18262
|
+
* @throws {RequiredError}
|
|
18263
|
+
*/
|
|
18264
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18265
|
+
/**
|
|
18266
|
+
*
|
|
18267
|
+
* @summary Update HospitalSpecialty.
|
|
18268
|
+
* @param {string} hospitalId
|
|
18269
|
+
* @param {string} specialtyId
|
|
18270
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18271
|
+
* @param {*} [options] Override http request option.
|
|
18272
|
+
* @throws {RequiredError}
|
|
18273
|
+
*/
|
|
18274
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18186
18275
|
/**
|
|
18187
18276
|
*
|
|
18188
18277
|
* @summary Get all HospitalServices.
|
|
18189
18278
|
* @param {string} hospitalId
|
|
18279
|
+
* @param {string} specialtyId
|
|
18190
18280
|
* @param {string} [hospitalName]
|
|
18191
18281
|
* @param {string} [hospitalSlug]
|
|
18192
18282
|
* @param {string} [id]
|
|
18193
18283
|
* @param {string} [name]
|
|
18194
18284
|
* @param {string} [description]
|
|
18195
|
-
* @param {string} [
|
|
18285
|
+
* @param {string} [specialtyName]
|
|
18196
18286
|
* @param {string} [specialtyTypeId]
|
|
18197
18287
|
* @param {string} [specialtyTypeName]
|
|
18288
|
+
* @param {string} [serviceCategoryId]
|
|
18198
18289
|
* @param {MarketingType} [marketingType]
|
|
18199
18290
|
* @param {Procedure} [procedure]
|
|
18200
18291
|
* @param {Date} [created]
|
|
@@ -18205,100 +18296,109 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18205
18296
|
* @param {*} [options] Override http request option.
|
|
18206
18297
|
* @throws {RequiredError}
|
|
18207
18298
|
*/
|
|
18208
|
-
|
|
18299
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
|
|
18209
18300
|
/**
|
|
18210
18301
|
*
|
|
18211
18302
|
* @summary Create HospitalService.
|
|
18212
18303
|
* @param {string} hospitalId
|
|
18304
|
+
* @param {string} specialtyId
|
|
18213
18305
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
18214
18306
|
* @param {*} [options] Override http request option.
|
|
18215
18307
|
* @throws {RequiredError}
|
|
18216
18308
|
*/
|
|
18217
|
-
|
|
18309
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
18218
18310
|
/**
|
|
18219
18311
|
*
|
|
18220
18312
|
* @summary Delete HospitalService
|
|
18221
18313
|
* @param {string} hospitalId
|
|
18314
|
+
* @param {string} specialtyId
|
|
18222
18315
|
* @param {string} serviceId
|
|
18223
18316
|
* @param {*} [options] Override http request option.
|
|
18224
18317
|
* @throws {RequiredError}
|
|
18225
18318
|
*/
|
|
18226
|
-
|
|
18319
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18227
18320
|
/**
|
|
18228
18321
|
*
|
|
18229
18322
|
* @summary Get HospitalService.
|
|
18230
18323
|
* @param {string} hospitalId
|
|
18324
|
+
* @param {string} specialtyId
|
|
18231
18325
|
* @param {string} serviceId
|
|
18232
18326
|
* @param {string} [languageCode]
|
|
18233
18327
|
* @param {*} [options] Override http request option.
|
|
18234
18328
|
* @throws {RequiredError}
|
|
18235
18329
|
*/
|
|
18236
|
-
|
|
18330
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
18237
18331
|
/**
|
|
18238
18332
|
*
|
|
18239
|
-
* @summary
|
|
18333
|
+
* @summary Get all HospitalServiceMedias.
|
|
18240
18334
|
* @param {string} hospitalId
|
|
18335
|
+
* @param {string} specialtyId
|
|
18241
18336
|
* @param {string} serviceId
|
|
18242
|
-
* @param {
|
|
18337
|
+
* @param {string} [id]
|
|
18338
|
+
* @param {MediaType} [mediaType]
|
|
18339
|
+
* @param {number} [page]
|
|
18340
|
+
* @param {number} [limit]
|
|
18341
|
+
* @param {Date} [lastRetrieved]
|
|
18243
18342
|
* @param {*} [options] Override http request option.
|
|
18244
18343
|
* @throws {RequiredError}
|
|
18245
18344
|
*/
|
|
18246
|
-
|
|
18345
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
18247
18346
|
/**
|
|
18248
18347
|
*
|
|
18249
|
-
* @summary
|
|
18348
|
+
* @summary Delete HospitalServiceMedia
|
|
18250
18349
|
* @param {string} hospitalId
|
|
18251
|
-
* @param {string}
|
|
18252
|
-
* @param {string}
|
|
18253
|
-
* @param {string}
|
|
18254
|
-
* @param {string} [specialtyName]
|
|
18255
|
-
* @param {string} [specialtyTypeId]
|
|
18256
|
-
* @param {MarketingType} [marketingType]
|
|
18257
|
-
* @param {Date} [created]
|
|
18258
|
-
* @param {number} [page]
|
|
18259
|
-
* @param {number} [limit]
|
|
18260
|
-
* @param {Date} [lastRetrieved]
|
|
18350
|
+
* @param {string} specialtyId
|
|
18351
|
+
* @param {string} serviceId
|
|
18352
|
+
* @param {string} mediaId
|
|
18261
18353
|
* @param {*} [options] Override http request option.
|
|
18262
18354
|
* @throws {RequiredError}
|
|
18263
18355
|
*/
|
|
18264
|
-
|
|
18356
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18265
18357
|
/**
|
|
18266
18358
|
*
|
|
18267
|
-
* @summary
|
|
18359
|
+
* @summary Get HospitalServiceMedia.
|
|
18268
18360
|
* @param {string} hospitalId
|
|
18269
|
-
* @param {
|
|
18361
|
+
* @param {string} specialtyId
|
|
18362
|
+
* @param {string} serviceId
|
|
18363
|
+
* @param {string} mediaId
|
|
18270
18364
|
* @param {*} [options] Override http request option.
|
|
18271
18365
|
* @throws {RequiredError}
|
|
18272
18366
|
*/
|
|
18273
|
-
|
|
18367
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
18274
18368
|
/**
|
|
18275
18369
|
*
|
|
18276
|
-
* @summary
|
|
18370
|
+
* @summary Update HospitalServiceMedia.
|
|
18277
18371
|
* @param {string} hospitalId
|
|
18278
18372
|
* @param {string} specialtyId
|
|
18373
|
+
* @param {string} serviceId
|
|
18374
|
+
* @param {string} mediaId
|
|
18375
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18279
18376
|
* @param {*} [options] Override http request option.
|
|
18280
18377
|
* @throws {RequiredError}
|
|
18281
18378
|
*/
|
|
18282
|
-
|
|
18379
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
18283
18380
|
/**
|
|
18284
18381
|
*
|
|
18285
|
-
* @summary
|
|
18382
|
+
* @summary Create HospitalServiceMedia.
|
|
18286
18383
|
* @param {string} hospitalId
|
|
18287
18384
|
* @param {string} specialtyId
|
|
18385
|
+
* @param {string} serviceId
|
|
18386
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
18288
18387
|
* @param {*} [options] Override http request option.
|
|
18289
18388
|
* @throws {RequiredError}
|
|
18290
18389
|
*/
|
|
18291
|
-
|
|
18390
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
18292
18391
|
/**
|
|
18293
18392
|
*
|
|
18294
|
-
* @summary Update
|
|
18393
|
+
* @summary Update HospitalService.
|
|
18295
18394
|
* @param {string} hospitalId
|
|
18296
18395
|
* @param {string} specialtyId
|
|
18297
|
-
* @param {
|
|
18396
|
+
* @param {string} serviceId
|
|
18397
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
18298
18398
|
* @param {*} [options] Override http request option.
|
|
18299
18399
|
* @throws {RequiredError}
|
|
18300
18400
|
*/
|
|
18301
|
-
|
|
18401
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18302
18402
|
/**
|
|
18303
18403
|
*
|
|
18304
18404
|
* @summary Create Hospital.
|
|
@@ -18577,53 +18677,110 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18577
18677
|
apiV1HospitalsHospitalIdMediasMediaIdDelete(hospitalId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
18578
18678
|
/**
|
|
18579
18679
|
*
|
|
18580
|
-
* @summary Get HospitalMedia.
|
|
18680
|
+
* @summary Get HospitalMedia.
|
|
18681
|
+
* @param {string} hospitalId
|
|
18682
|
+
* @param {string} mediaId
|
|
18683
|
+
* @param {*} [options] Override http request option.
|
|
18684
|
+
* @throws {RequiredError}
|
|
18685
|
+
*/
|
|
18686
|
+
apiV1HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
18687
|
+
/**
|
|
18688
|
+
*
|
|
18689
|
+
* @summary Update HospitalMedia.
|
|
18690
|
+
* @param {string} hospitalId
|
|
18691
|
+
* @param {string} mediaId
|
|
18692
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18693
|
+
* @param {*} [options] Override http request option.
|
|
18694
|
+
* @throws {RequiredError}
|
|
18695
|
+
*/
|
|
18696
|
+
apiV1HospitalsHospitalIdMediasMediaIdPut(hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
18697
|
+
/**
|
|
18698
|
+
*
|
|
18699
|
+
* @summary Create HospitalMedia.
|
|
18700
|
+
* @param {string} hospitalId
|
|
18701
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
18702
|
+
* @param {*} [options] Override http request option.
|
|
18703
|
+
* @throws {RequiredError}
|
|
18704
|
+
*/
|
|
18705
|
+
apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
18706
|
+
/**
|
|
18707
|
+
*
|
|
18708
|
+
* @summary Update Hospital.
|
|
18709
|
+
* @param {string} hospitalId
|
|
18710
|
+
* @param {UpdateHospitalCommand} [updateHospitalCommand]
|
|
18711
|
+
* @param {*} [options] Override http request option.
|
|
18712
|
+
* @throws {RequiredError}
|
|
18713
|
+
*/
|
|
18714
|
+
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
18715
|
+
/**
|
|
18716
|
+
*
|
|
18717
|
+
* @summary Get all HospitalSpecialties.
|
|
18718
|
+
* @param {string} hospitalId
|
|
18719
|
+
* @param {string} [hospitalName]
|
|
18720
|
+
* @param {string} [hospitalSlug]
|
|
18721
|
+
* @param {string} [specialtyId]
|
|
18722
|
+
* @param {string} [specialtyName]
|
|
18723
|
+
* @param {string} [specialtyTypeId]
|
|
18724
|
+
* @param {MarketingType} [marketingType]
|
|
18725
|
+
* @param {Date} [created]
|
|
18726
|
+
* @param {number} [page]
|
|
18727
|
+
* @param {number} [limit]
|
|
18728
|
+
* @param {Date} [lastRetrieved]
|
|
18729
|
+
* @param {*} [options] Override http request option.
|
|
18730
|
+
* @throws {RequiredError}
|
|
18731
|
+
*/
|
|
18732
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
18733
|
+
/**
|
|
18734
|
+
*
|
|
18735
|
+
* @summary Create HospitalSpecialty.
|
|
18581
18736
|
* @param {string} hospitalId
|
|
18582
|
-
* @param {
|
|
18737
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
18583
18738
|
* @param {*} [options] Override http request option.
|
|
18584
18739
|
* @throws {RequiredError}
|
|
18585
18740
|
*/
|
|
18586
|
-
|
|
18741
|
+
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18587
18742
|
/**
|
|
18588
18743
|
*
|
|
18589
|
-
* @summary
|
|
18744
|
+
* @summary Delete HospitalSpecialty.
|
|
18590
18745
|
* @param {string} hospitalId
|
|
18591
|
-
* @param {string}
|
|
18592
|
-
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18746
|
+
* @param {string} specialtyId
|
|
18593
18747
|
* @param {*} [options] Override http request option.
|
|
18594
18748
|
* @throws {RequiredError}
|
|
18595
18749
|
*/
|
|
18596
|
-
|
|
18750
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
|
|
18597
18751
|
/**
|
|
18598
18752
|
*
|
|
18599
|
-
* @summary
|
|
18753
|
+
* @summary Get HospitalSpecialty.
|
|
18600
18754
|
* @param {string} hospitalId
|
|
18601
|
-
* @param {
|
|
18755
|
+
* @param {string} specialtyId
|
|
18602
18756
|
* @param {*} [options] Override http request option.
|
|
18603
18757
|
* @throws {RequiredError}
|
|
18604
18758
|
*/
|
|
18605
|
-
|
|
18759
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18606
18760
|
/**
|
|
18607
18761
|
*
|
|
18608
|
-
* @summary Update
|
|
18762
|
+
* @summary Update HospitalSpecialty.
|
|
18609
18763
|
* @param {string} hospitalId
|
|
18610
|
-
* @param {
|
|
18764
|
+
* @param {string} specialtyId
|
|
18765
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18611
18766
|
* @param {*} [options] Override http request option.
|
|
18612
18767
|
* @throws {RequiredError}
|
|
18613
18768
|
*/
|
|
18614
|
-
|
|
18769
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18615
18770
|
/**
|
|
18616
18771
|
*
|
|
18617
18772
|
* @summary Get all HospitalServices.
|
|
18618
18773
|
* @param {string} hospitalId
|
|
18774
|
+
* @param {string} specialtyId
|
|
18619
18775
|
* @param {string} [hospitalName]
|
|
18620
18776
|
* @param {string} [hospitalSlug]
|
|
18621
18777
|
* @param {string} [id]
|
|
18622
18778
|
* @param {string} [name]
|
|
18623
18779
|
* @param {string} [description]
|
|
18624
|
-
* @param {string} [
|
|
18780
|
+
* @param {string} [specialtyName]
|
|
18625
18781
|
* @param {string} [specialtyTypeId]
|
|
18626
18782
|
* @param {string} [specialtyTypeName]
|
|
18783
|
+
* @param {string} [serviceCategoryId]
|
|
18627
18784
|
* @param {MarketingType} [marketingType]
|
|
18628
18785
|
* @param {Procedure} [procedure]
|
|
18629
18786
|
* @param {Date} [created]
|
|
@@ -18634,100 +18791,109 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18634
18791
|
* @param {*} [options] Override http request option.
|
|
18635
18792
|
* @throws {RequiredError}
|
|
18636
18793
|
*/
|
|
18637
|
-
|
|
18794
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
18638
18795
|
/**
|
|
18639
18796
|
*
|
|
18640
18797
|
* @summary Create HospitalService.
|
|
18641
18798
|
* @param {string} hospitalId
|
|
18799
|
+
* @param {string} specialtyId
|
|
18642
18800
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
18643
18801
|
* @param {*} [options] Override http request option.
|
|
18644
18802
|
* @throws {RequiredError}
|
|
18645
18803
|
*/
|
|
18646
|
-
|
|
18804
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
18647
18805
|
/**
|
|
18648
18806
|
*
|
|
18649
18807
|
* @summary Delete HospitalService
|
|
18650
18808
|
* @param {string} hospitalId
|
|
18809
|
+
* @param {string} specialtyId
|
|
18651
18810
|
* @param {string} serviceId
|
|
18652
18811
|
* @param {*} [options] Override http request option.
|
|
18653
18812
|
* @throws {RequiredError}
|
|
18654
18813
|
*/
|
|
18655
|
-
|
|
18814
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
18656
18815
|
/**
|
|
18657
18816
|
*
|
|
18658
18817
|
* @summary Get HospitalService.
|
|
18659
18818
|
* @param {string} hospitalId
|
|
18819
|
+
* @param {string} specialtyId
|
|
18660
18820
|
* @param {string} serviceId
|
|
18661
18821
|
* @param {string} [languageCode]
|
|
18662
18822
|
* @param {*} [options] Override http request option.
|
|
18663
18823
|
* @throws {RequiredError}
|
|
18664
18824
|
*/
|
|
18665
|
-
|
|
18825
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
18666
18826
|
/**
|
|
18667
18827
|
*
|
|
18668
|
-
* @summary
|
|
18828
|
+
* @summary Get all HospitalServiceMedias.
|
|
18669
18829
|
* @param {string} hospitalId
|
|
18830
|
+
* @param {string} specialtyId
|
|
18670
18831
|
* @param {string} serviceId
|
|
18671
|
-
* @param {
|
|
18832
|
+
* @param {string} [id]
|
|
18833
|
+
* @param {MediaType} [mediaType]
|
|
18834
|
+
* @param {number} [page]
|
|
18835
|
+
* @param {number} [limit]
|
|
18836
|
+
* @param {Date} [lastRetrieved]
|
|
18672
18837
|
* @param {*} [options] Override http request option.
|
|
18673
18838
|
* @throws {RequiredError}
|
|
18674
18839
|
*/
|
|
18675
|
-
|
|
18840
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
18676
18841
|
/**
|
|
18677
18842
|
*
|
|
18678
|
-
* @summary
|
|
18843
|
+
* @summary Delete HospitalServiceMedia
|
|
18679
18844
|
* @param {string} hospitalId
|
|
18680
|
-
* @param {string}
|
|
18681
|
-
* @param {string}
|
|
18682
|
-
* @param {string}
|
|
18683
|
-
* @param {string} [specialtyName]
|
|
18684
|
-
* @param {string} [specialtyTypeId]
|
|
18685
|
-
* @param {MarketingType} [marketingType]
|
|
18686
|
-
* @param {Date} [created]
|
|
18687
|
-
* @param {number} [page]
|
|
18688
|
-
* @param {number} [limit]
|
|
18689
|
-
* @param {Date} [lastRetrieved]
|
|
18845
|
+
* @param {string} specialtyId
|
|
18846
|
+
* @param {string} serviceId
|
|
18847
|
+
* @param {string} mediaId
|
|
18690
18848
|
* @param {*} [options] Override http request option.
|
|
18691
18849
|
* @throws {RequiredError}
|
|
18692
18850
|
*/
|
|
18693
|
-
|
|
18851
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
18694
18852
|
/**
|
|
18695
18853
|
*
|
|
18696
|
-
* @summary
|
|
18854
|
+
* @summary Get HospitalServiceMedia.
|
|
18697
18855
|
* @param {string} hospitalId
|
|
18698
|
-
* @param {
|
|
18856
|
+
* @param {string} specialtyId
|
|
18857
|
+
* @param {string} serviceId
|
|
18858
|
+
* @param {string} mediaId
|
|
18699
18859
|
* @param {*} [options] Override http request option.
|
|
18700
18860
|
* @throws {RequiredError}
|
|
18701
18861
|
*/
|
|
18702
|
-
|
|
18862
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
18703
18863
|
/**
|
|
18704
18864
|
*
|
|
18705
|
-
* @summary
|
|
18865
|
+
* @summary Update HospitalServiceMedia.
|
|
18706
18866
|
* @param {string} hospitalId
|
|
18707
18867
|
* @param {string} specialtyId
|
|
18868
|
+
* @param {string} serviceId
|
|
18869
|
+
* @param {string} mediaId
|
|
18870
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18708
18871
|
* @param {*} [options] Override http request option.
|
|
18709
18872
|
* @throws {RequiredError}
|
|
18710
18873
|
*/
|
|
18711
|
-
|
|
18874
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
18712
18875
|
/**
|
|
18713
18876
|
*
|
|
18714
|
-
* @summary
|
|
18877
|
+
* @summary Create HospitalServiceMedia.
|
|
18715
18878
|
* @param {string} hospitalId
|
|
18716
18879
|
* @param {string} specialtyId
|
|
18880
|
+
* @param {string} serviceId
|
|
18881
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
18717
18882
|
* @param {*} [options] Override http request option.
|
|
18718
18883
|
* @throws {RequiredError}
|
|
18719
18884
|
*/
|
|
18720
|
-
|
|
18885
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
18721
18886
|
/**
|
|
18722
18887
|
*
|
|
18723
|
-
* @summary Update
|
|
18888
|
+
* @summary Update HospitalService.
|
|
18724
18889
|
* @param {string} hospitalId
|
|
18725
18890
|
* @param {string} specialtyId
|
|
18726
|
-
* @param {
|
|
18891
|
+
* @param {string} serviceId
|
|
18892
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
18727
18893
|
* @param {*} [options] Override http request option.
|
|
18728
18894
|
* @throws {RequiredError}
|
|
18729
18895
|
*/
|
|
18730
|
-
|
|
18896
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
18731
18897
|
/**
|
|
18732
18898
|
*
|
|
18733
18899
|
* @summary Create Hospital.
|
|
@@ -19070,18 +19236,80 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19070
19236
|
* @memberof HospitalsApi
|
|
19071
19237
|
*/
|
|
19072
19238
|
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19239
|
+
/**
|
|
19240
|
+
*
|
|
19241
|
+
* @summary Get all HospitalSpecialties.
|
|
19242
|
+
* @param {string} hospitalId
|
|
19243
|
+
* @param {string} [hospitalName]
|
|
19244
|
+
* @param {string} [hospitalSlug]
|
|
19245
|
+
* @param {string} [specialtyId]
|
|
19246
|
+
* @param {string} [specialtyName]
|
|
19247
|
+
* @param {string} [specialtyTypeId]
|
|
19248
|
+
* @param {MarketingType} [marketingType]
|
|
19249
|
+
* @param {Date} [created]
|
|
19250
|
+
* @param {number} [page]
|
|
19251
|
+
* @param {number} [limit]
|
|
19252
|
+
* @param {Date} [lastRetrieved]
|
|
19253
|
+
* @param {*} [options] Override http request option.
|
|
19254
|
+
* @throws {RequiredError}
|
|
19255
|
+
* @memberof HospitalsApi
|
|
19256
|
+
*/
|
|
19257
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
19258
|
+
/**
|
|
19259
|
+
*
|
|
19260
|
+
* @summary Create HospitalSpecialty.
|
|
19261
|
+
* @param {string} hospitalId
|
|
19262
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
19263
|
+
* @param {*} [options] Override http request option.
|
|
19264
|
+
* @throws {RequiredError}
|
|
19265
|
+
* @memberof HospitalsApi
|
|
19266
|
+
*/
|
|
19267
|
+
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
19268
|
+
/**
|
|
19269
|
+
*
|
|
19270
|
+
* @summary Delete HospitalSpecialty.
|
|
19271
|
+
* @param {string} hospitalId
|
|
19272
|
+
* @param {string} specialtyId
|
|
19273
|
+
* @param {*} [options] Override http request option.
|
|
19274
|
+
* @throws {RequiredError}
|
|
19275
|
+
* @memberof HospitalsApi
|
|
19276
|
+
*/
|
|
19277
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19278
|
+
/**
|
|
19279
|
+
*
|
|
19280
|
+
* @summary Get HospitalSpecialty.
|
|
19281
|
+
* @param {string} hospitalId
|
|
19282
|
+
* @param {string} specialtyId
|
|
19283
|
+
* @param {*} [options] Override http request option.
|
|
19284
|
+
* @throws {RequiredError}
|
|
19285
|
+
* @memberof HospitalsApi
|
|
19286
|
+
*/
|
|
19287
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
19288
|
+
/**
|
|
19289
|
+
*
|
|
19290
|
+
* @summary Update HospitalSpecialty.
|
|
19291
|
+
* @param {string} hospitalId
|
|
19292
|
+
* @param {string} specialtyId
|
|
19293
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
19294
|
+
* @param {*} [options] Override http request option.
|
|
19295
|
+
* @throws {RequiredError}
|
|
19296
|
+
* @memberof HospitalsApi
|
|
19297
|
+
*/
|
|
19298
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
19073
19299
|
/**
|
|
19074
19300
|
*
|
|
19075
19301
|
* @summary Get all HospitalServices.
|
|
19076
19302
|
* @param {string} hospitalId
|
|
19303
|
+
* @param {string} specialtyId
|
|
19077
19304
|
* @param {string} [hospitalName]
|
|
19078
19305
|
* @param {string} [hospitalSlug]
|
|
19079
19306
|
* @param {string} [id]
|
|
19080
19307
|
* @param {string} [name]
|
|
19081
19308
|
* @param {string} [description]
|
|
19082
|
-
* @param {string} [
|
|
19309
|
+
* @param {string} [specialtyName]
|
|
19083
19310
|
* @param {string} [specialtyTypeId]
|
|
19084
19311
|
* @param {string} [specialtyTypeName]
|
|
19312
|
+
* @param {string} [serviceCategoryId]
|
|
19085
19313
|
* @param {MarketingType} [marketingType]
|
|
19086
19314
|
* @param {Procedure} [procedure]
|
|
19087
19315
|
* @param {Date} [created]
|
|
@@ -19093,109 +19321,118 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19093
19321
|
* @throws {RequiredError}
|
|
19094
19322
|
* @memberof HospitalsApi
|
|
19095
19323
|
*/
|
|
19096
|
-
|
|
19324
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
19097
19325
|
/**
|
|
19098
19326
|
*
|
|
19099
19327
|
* @summary Create HospitalService.
|
|
19100
19328
|
* @param {string} hospitalId
|
|
19329
|
+
* @param {string} specialtyId
|
|
19101
19330
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
19102
19331
|
* @param {*} [options] Override http request option.
|
|
19103
19332
|
* @throws {RequiredError}
|
|
19104
19333
|
* @memberof HospitalsApi
|
|
19105
19334
|
*/
|
|
19106
|
-
|
|
19335
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
19107
19336
|
/**
|
|
19108
19337
|
*
|
|
19109
19338
|
* @summary Delete HospitalService
|
|
19110
19339
|
* @param {string} hospitalId
|
|
19340
|
+
* @param {string} specialtyId
|
|
19111
19341
|
* @param {string} serviceId
|
|
19112
19342
|
* @param {*} [options] Override http request option.
|
|
19113
19343
|
* @throws {RequiredError}
|
|
19114
19344
|
* @memberof HospitalsApi
|
|
19115
19345
|
*/
|
|
19116
|
-
|
|
19346
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19117
19347
|
/**
|
|
19118
19348
|
*
|
|
19119
19349
|
* @summary Get HospitalService.
|
|
19120
19350
|
* @param {string} hospitalId
|
|
19351
|
+
* @param {string} specialtyId
|
|
19121
19352
|
* @param {string} serviceId
|
|
19122
19353
|
* @param {string} [languageCode]
|
|
19123
19354
|
* @param {*} [options] Override http request option.
|
|
19124
19355
|
* @throws {RequiredError}
|
|
19125
19356
|
* @memberof HospitalsApi
|
|
19126
19357
|
*/
|
|
19127
|
-
|
|
19358
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
19128
19359
|
/**
|
|
19129
19360
|
*
|
|
19130
|
-
* @summary
|
|
19361
|
+
* @summary Get all HospitalServiceMedias.
|
|
19131
19362
|
* @param {string} hospitalId
|
|
19363
|
+
* @param {string} specialtyId
|
|
19132
19364
|
* @param {string} serviceId
|
|
19133
|
-
* @param {
|
|
19365
|
+
* @param {string} [id]
|
|
19366
|
+
* @param {MediaType} [mediaType]
|
|
19367
|
+
* @param {number} [page]
|
|
19368
|
+
* @param {number} [limit]
|
|
19369
|
+
* @param {Date} [lastRetrieved]
|
|
19134
19370
|
* @param {*} [options] Override http request option.
|
|
19135
19371
|
* @throws {RequiredError}
|
|
19136
19372
|
* @memberof HospitalsApi
|
|
19137
19373
|
*/
|
|
19138
|
-
|
|
19374
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
19139
19375
|
/**
|
|
19140
19376
|
*
|
|
19141
|
-
* @summary
|
|
19377
|
+
* @summary Delete HospitalServiceMedia
|
|
19142
19378
|
* @param {string} hospitalId
|
|
19143
|
-
* @param {string}
|
|
19144
|
-
* @param {string}
|
|
19145
|
-
* @param {string}
|
|
19146
|
-
* @param {string} [specialtyName]
|
|
19147
|
-
* @param {string} [specialtyTypeId]
|
|
19148
|
-
* @param {MarketingType} [marketingType]
|
|
19149
|
-
* @param {Date} [created]
|
|
19150
|
-
* @param {number} [page]
|
|
19151
|
-
* @param {number} [limit]
|
|
19152
|
-
* @param {Date} [lastRetrieved]
|
|
19379
|
+
* @param {string} specialtyId
|
|
19380
|
+
* @param {string} serviceId
|
|
19381
|
+
* @param {string} mediaId
|
|
19153
19382
|
* @param {*} [options] Override http request option.
|
|
19154
19383
|
* @throws {RequiredError}
|
|
19155
19384
|
* @memberof HospitalsApi
|
|
19156
19385
|
*/
|
|
19157
|
-
|
|
19386
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19158
19387
|
/**
|
|
19159
19388
|
*
|
|
19160
|
-
* @summary
|
|
19389
|
+
* @summary Get HospitalServiceMedia.
|
|
19161
19390
|
* @param {string} hospitalId
|
|
19162
|
-
* @param {
|
|
19391
|
+
* @param {string} specialtyId
|
|
19392
|
+
* @param {string} serviceId
|
|
19393
|
+
* @param {string} mediaId
|
|
19163
19394
|
* @param {*} [options] Override http request option.
|
|
19164
19395
|
* @throws {RequiredError}
|
|
19165
19396
|
* @memberof HospitalsApi
|
|
19166
19397
|
*/
|
|
19167
|
-
|
|
19398
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19168
19399
|
/**
|
|
19169
19400
|
*
|
|
19170
|
-
* @summary
|
|
19401
|
+
* @summary Update HospitalServiceMedia.
|
|
19171
19402
|
* @param {string} hospitalId
|
|
19172
19403
|
* @param {string} specialtyId
|
|
19404
|
+
* @param {string} serviceId
|
|
19405
|
+
* @param {string} mediaId
|
|
19406
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
19173
19407
|
* @param {*} [options] Override http request option.
|
|
19174
19408
|
* @throws {RequiredError}
|
|
19175
19409
|
* @memberof HospitalsApi
|
|
19176
19410
|
*/
|
|
19177
|
-
|
|
19411
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19178
19412
|
/**
|
|
19179
19413
|
*
|
|
19180
|
-
* @summary
|
|
19414
|
+
* @summary Create HospitalServiceMedia.
|
|
19181
19415
|
* @param {string} hospitalId
|
|
19182
19416
|
* @param {string} specialtyId
|
|
19417
|
+
* @param {string} serviceId
|
|
19418
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
19183
19419
|
* @param {*} [options] Override http request option.
|
|
19184
19420
|
* @throws {RequiredError}
|
|
19185
19421
|
* @memberof HospitalsApi
|
|
19186
19422
|
*/
|
|
19187
|
-
|
|
19423
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19188
19424
|
/**
|
|
19189
19425
|
*
|
|
19190
|
-
* @summary Update
|
|
19426
|
+
* @summary Update HospitalService.
|
|
19191
19427
|
* @param {string} hospitalId
|
|
19192
19428
|
* @param {string} specialtyId
|
|
19193
|
-
* @param {
|
|
19429
|
+
* @param {string} serviceId
|
|
19430
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
19194
19431
|
* @param {*} [options] Override http request option.
|
|
19195
19432
|
* @throws {RequiredError}
|
|
19196
19433
|
* @memberof HospitalsApi
|
|
19197
19434
|
*/
|
|
19198
|
-
|
|
19435
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19199
19436
|
/**
|
|
19200
19437
|
*
|
|
19201
19438
|
* @summary Create Hospital.
|
|
@@ -19530,17 +19767,19 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
19530
19767
|
*/
|
|
19531
19768
|
export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
19532
19769
|
/**
|
|
19533
|
-
*
|
|
19534
|
-
* @summary Get all
|
|
19535
|
-
* @param {string} [id]
|
|
19536
|
-
* @param {string} [name]
|
|
19537
|
-
* @param {string} [description]
|
|
19770
|
+
*
|
|
19771
|
+
* @summary Get all HospitalServices.
|
|
19538
19772
|
* @param {string} [hospitalId]
|
|
19539
19773
|
* @param {string} [hospitalName]
|
|
19540
19774
|
* @param {string} [hospitalSlug]
|
|
19775
|
+
* @param {string} [id]
|
|
19776
|
+
* @param {string} [name]
|
|
19777
|
+
* @param {string} [description]
|
|
19541
19778
|
* @param {string} [specialtyId]
|
|
19779
|
+
* @param {string} [specialtyName]
|
|
19542
19780
|
* @param {string} [specialtyTypeId]
|
|
19543
19781
|
* @param {string} [specialtyTypeName]
|
|
19782
|
+
* @param {string} [serviceCategoryId]
|
|
19544
19783
|
* @param {MarketingType} [marketingType]
|
|
19545
19784
|
* @param {Procedure} [procedure]
|
|
19546
19785
|
* @param {Date} [created]
|
|
@@ -19551,10 +19790,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
19551
19790
|
* @param {*} [options] Override http request option.
|
|
19552
19791
|
* @throws {RequiredError}
|
|
19553
19792
|
*/
|
|
19554
|
-
apiV1ServicesGet: (
|
|
19793
|
+
apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19794
|
+
/**
|
|
19795
|
+
*
|
|
19796
|
+
* @summary Get HospitalService.
|
|
19797
|
+
* @param {string} serviceId
|
|
19798
|
+
* @param {string} [languageCode]
|
|
19799
|
+
* @param {*} [options] Override http request option.
|
|
19800
|
+
* @throws {RequiredError}
|
|
19801
|
+
*/
|
|
19802
|
+
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19555
19803
|
/**
|
|
19556
19804
|
*
|
|
19557
|
-
* @summary Get
|
|
19805
|
+
* @summary Get HospitalService by slug.
|
|
19558
19806
|
* @param {string} slug
|
|
19559
19807
|
* @param {string} [languageCode]
|
|
19560
19808
|
* @param {*} [options] Override http request option.
|
|
@@ -19568,17 +19816,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
19568
19816
|
*/
|
|
19569
19817
|
export declare const ServicesApiFp: (configuration?: Configuration | undefined) => {
|
|
19570
19818
|
/**
|
|
19571
|
-
*
|
|
19572
|
-
* @summary Get all
|
|
19573
|
-
* @param {string} [id]
|
|
19574
|
-
* @param {string} [name]
|
|
19575
|
-
* @param {string} [description]
|
|
19819
|
+
*
|
|
19820
|
+
* @summary Get all HospitalServices.
|
|
19576
19821
|
* @param {string} [hospitalId]
|
|
19577
19822
|
* @param {string} [hospitalName]
|
|
19578
19823
|
* @param {string} [hospitalSlug]
|
|
19824
|
+
* @param {string} [id]
|
|
19825
|
+
* @param {string} [name]
|
|
19826
|
+
* @param {string} [description]
|
|
19579
19827
|
* @param {string} [specialtyId]
|
|
19828
|
+
* @param {string} [specialtyName]
|
|
19580
19829
|
* @param {string} [specialtyTypeId]
|
|
19581
19830
|
* @param {string} [specialtyTypeName]
|
|
19831
|
+
* @param {string} [serviceCategoryId]
|
|
19582
19832
|
* @param {MarketingType} [marketingType]
|
|
19583
19833
|
* @param {Procedure} [procedure]
|
|
19584
19834
|
* @param {Date} [created]
|
|
@@ -19589,16 +19839,25 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
19589
19839
|
* @param {*} [options] Override http request option.
|
|
19590
19840
|
* @throws {RequiredError}
|
|
19591
19841
|
*/
|
|
19592
|
-
apiV1ServicesGet(
|
|
19842
|
+
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
|
|
19843
|
+
/**
|
|
19844
|
+
*
|
|
19845
|
+
* @summary Get HospitalService.
|
|
19846
|
+
* @param {string} serviceId
|
|
19847
|
+
* @param {string} [languageCode]
|
|
19848
|
+
* @param {*} [options] Override http request option.
|
|
19849
|
+
* @throws {RequiredError}
|
|
19850
|
+
*/
|
|
19851
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19593
19852
|
/**
|
|
19594
19853
|
*
|
|
19595
|
-
* @summary Get
|
|
19854
|
+
* @summary Get HospitalService by slug.
|
|
19596
19855
|
* @param {string} slug
|
|
19597
19856
|
* @param {string} [languageCode]
|
|
19598
19857
|
* @param {*} [options] Override http request option.
|
|
19599
19858
|
* @throws {RequiredError}
|
|
19600
19859
|
*/
|
|
19601
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
19860
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19602
19861
|
};
|
|
19603
19862
|
/**
|
|
19604
19863
|
* ServicesApi - factory interface
|
|
@@ -19606,17 +19865,19 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
19606
19865
|
*/
|
|
19607
19866
|
export declare const ServicesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
19608
19867
|
/**
|
|
19609
|
-
*
|
|
19610
|
-
* @summary Get all
|
|
19611
|
-
* @param {string} [id]
|
|
19612
|
-
* @param {string} [name]
|
|
19613
|
-
* @param {string} [description]
|
|
19868
|
+
*
|
|
19869
|
+
* @summary Get all HospitalServices.
|
|
19614
19870
|
* @param {string} [hospitalId]
|
|
19615
19871
|
* @param {string} [hospitalName]
|
|
19616
19872
|
* @param {string} [hospitalSlug]
|
|
19873
|
+
* @param {string} [id]
|
|
19874
|
+
* @param {string} [name]
|
|
19875
|
+
* @param {string} [description]
|
|
19617
19876
|
* @param {string} [specialtyId]
|
|
19877
|
+
* @param {string} [specialtyName]
|
|
19618
19878
|
* @param {string} [specialtyTypeId]
|
|
19619
19879
|
* @param {string} [specialtyTypeName]
|
|
19880
|
+
* @param {string} [serviceCategoryId]
|
|
19620
19881
|
* @param {MarketingType} [marketingType]
|
|
19621
19882
|
* @param {Procedure} [procedure]
|
|
19622
19883
|
* @param {Date} [created]
|
|
@@ -19627,16 +19888,25 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
19627
19888
|
* @param {*} [options] Override http request option.
|
|
19628
19889
|
* @throws {RequiredError}
|
|
19629
19890
|
*/
|
|
19630
|
-
apiV1ServicesGet(
|
|
19891
|
+
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
19892
|
+
/**
|
|
19893
|
+
*
|
|
19894
|
+
* @summary Get HospitalService.
|
|
19895
|
+
* @param {string} serviceId
|
|
19896
|
+
* @param {string} [languageCode]
|
|
19897
|
+
* @param {*} [options] Override http request option.
|
|
19898
|
+
* @throws {RequiredError}
|
|
19899
|
+
*/
|
|
19900
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19631
19901
|
/**
|
|
19632
19902
|
*
|
|
19633
|
-
* @summary Get
|
|
19903
|
+
* @summary Get HospitalService by slug.
|
|
19634
19904
|
* @param {string} slug
|
|
19635
19905
|
* @param {string} [languageCode]
|
|
19636
19906
|
* @param {*} [options] Override http request option.
|
|
19637
19907
|
* @throws {RequiredError}
|
|
19638
19908
|
*/
|
|
19639
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<
|
|
19909
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19640
19910
|
};
|
|
19641
19911
|
/**
|
|
19642
19912
|
* ServicesApi - object-oriented interface
|
|
@@ -19646,17 +19916,19 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
19646
19916
|
*/
|
|
19647
19917
|
export declare class ServicesApi extends BaseAPI {
|
|
19648
19918
|
/**
|
|
19649
|
-
*
|
|
19650
|
-
* @summary Get all
|
|
19651
|
-
* @param {string} [id]
|
|
19652
|
-
* @param {string} [name]
|
|
19653
|
-
* @param {string} [description]
|
|
19919
|
+
*
|
|
19920
|
+
* @summary Get all HospitalServices.
|
|
19654
19921
|
* @param {string} [hospitalId]
|
|
19655
19922
|
* @param {string} [hospitalName]
|
|
19656
19923
|
* @param {string} [hospitalSlug]
|
|
19924
|
+
* @param {string} [id]
|
|
19925
|
+
* @param {string} [name]
|
|
19926
|
+
* @param {string} [description]
|
|
19657
19927
|
* @param {string} [specialtyId]
|
|
19928
|
+
* @param {string} [specialtyName]
|
|
19658
19929
|
* @param {string} [specialtyTypeId]
|
|
19659
19930
|
* @param {string} [specialtyTypeName]
|
|
19931
|
+
* @param {string} [serviceCategoryId]
|
|
19660
19932
|
* @param {MarketingType} [marketingType]
|
|
19661
19933
|
* @param {Procedure} [procedure]
|
|
19662
19934
|
* @param {Date} [created]
|
|
@@ -19668,17 +19940,27 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
19668
19940
|
* @throws {RequiredError}
|
|
19669
19941
|
* @memberof ServicesApi
|
|
19670
19942
|
*/
|
|
19671
|
-
apiV1ServicesGet(
|
|
19943
|
+
apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
19944
|
+
/**
|
|
19945
|
+
*
|
|
19946
|
+
* @summary Get HospitalService.
|
|
19947
|
+
* @param {string} serviceId
|
|
19948
|
+
* @param {string} [languageCode]
|
|
19949
|
+
* @param {*} [options] Override http request option.
|
|
19950
|
+
* @throws {RequiredError}
|
|
19951
|
+
* @memberof ServicesApi
|
|
19952
|
+
*/
|
|
19953
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
19672
19954
|
/**
|
|
19673
19955
|
*
|
|
19674
|
-
* @summary Get
|
|
19956
|
+
* @summary Get HospitalService by slug.
|
|
19675
19957
|
* @param {string} slug
|
|
19676
19958
|
* @param {string} [languageCode]
|
|
19677
19959
|
* @param {*} [options] Override http request option.
|
|
19678
19960
|
* @throws {RequiredError}
|
|
19679
19961
|
* @memberof ServicesApi
|
|
19680
19962
|
*/
|
|
19681
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19963
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
19682
19964
|
}
|
|
19683
19965
|
/**
|
|
19684
19966
|
* ServicesCategoriesApi - axios parameter creator
|