ch-admin-api-client-typescript 2.1.4 → 2.1.8
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 +1027 -574
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1658 -405
- package/package.json +1 -1
- package/src/api.ts +2236 -1224
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
|
|
@@ -3639,6 +3664,25 @@ export interface CreateDoctorPortfolioCommand {
|
|
|
3639
3664
|
*/
|
|
3640
3665
|
'photoAfterThumbnail'?: string | null;
|
|
3641
3666
|
}
|
|
3667
|
+
/**
|
|
3668
|
+
*
|
|
3669
|
+
* @export
|
|
3670
|
+
* @interface CreateDoctorSpecialtyCommand
|
|
3671
|
+
*/
|
|
3672
|
+
export interface CreateDoctorSpecialtyCommand {
|
|
3673
|
+
/**
|
|
3674
|
+
*
|
|
3675
|
+
* @type {string}
|
|
3676
|
+
* @memberof CreateDoctorSpecialtyCommand
|
|
3677
|
+
*/
|
|
3678
|
+
'specialtyId'?: string;
|
|
3679
|
+
/**
|
|
3680
|
+
*
|
|
3681
|
+
* @type {number}
|
|
3682
|
+
* @memberof CreateDoctorSpecialtyCommand
|
|
3683
|
+
*/
|
|
3684
|
+
'order'?: number;
|
|
3685
|
+
}
|
|
3642
3686
|
/**
|
|
3643
3687
|
*
|
|
3644
3688
|
* @export
|
|
@@ -7740,6 +7784,18 @@ export interface HospitalServiceItemModel {
|
|
|
7740
7784
|
* @memberof HospitalServiceItemModel
|
|
7741
7785
|
*/
|
|
7742
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;
|
|
7743
7799
|
/**
|
|
7744
7800
|
*
|
|
7745
7801
|
* @type {MarketingType}
|
|
@@ -7861,6 +7917,18 @@ export interface HospitalServiceModel {
|
|
|
7861
7917
|
* @memberof HospitalServiceModel
|
|
7862
7918
|
*/
|
|
7863
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;
|
|
7864
7932
|
/**
|
|
7865
7933
|
*
|
|
7866
7934
|
* @type {MarketingType}
|
|
@@ -8039,6 +8107,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8039
8107
|
* @memberof HospitalSpecialtyItemModel
|
|
8040
8108
|
*/
|
|
8041
8109
|
'specialtyTypeName'?: string | null;
|
|
8110
|
+
/**
|
|
8111
|
+
*
|
|
8112
|
+
* @type {MarketingType}
|
|
8113
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8114
|
+
*/
|
|
8115
|
+
'marketingType'?: MarketingType;
|
|
8042
8116
|
/**
|
|
8043
8117
|
*
|
|
8044
8118
|
* @type {number}
|
|
@@ -8094,6 +8168,12 @@ export interface HospitalSpecialtyModel {
|
|
|
8094
8168
|
* @memberof HospitalSpecialtyModel
|
|
8095
8169
|
*/
|
|
8096
8170
|
'specialtyTypeName'?: string | null;
|
|
8171
|
+
/**
|
|
8172
|
+
*
|
|
8173
|
+
* @type {MarketingType}
|
|
8174
|
+
* @memberof HospitalSpecialtyModel
|
|
8175
|
+
*/
|
|
8176
|
+
'marketingType'?: MarketingType;
|
|
8097
8177
|
/**
|
|
8098
8178
|
*
|
|
8099
8179
|
* @type {number}
|
|
@@ -9766,6 +9846,12 @@ export interface Service {
|
|
|
9766
9846
|
* @memberof Service
|
|
9767
9847
|
*/
|
|
9768
9848
|
'serviceCategoryId'?: string | null;
|
|
9849
|
+
/**
|
|
9850
|
+
*
|
|
9851
|
+
* @type {ServiceCategory}
|
|
9852
|
+
* @memberof Service
|
|
9853
|
+
*/
|
|
9854
|
+
'serviceCategory'?: ServiceCategory;
|
|
9769
9855
|
/**
|
|
9770
9856
|
*
|
|
9771
9857
|
* @type {number}
|
|
@@ -9822,6 +9908,55 @@ export interface ServiceCategoriesModel {
|
|
|
9822
9908
|
*/
|
|
9823
9909
|
'metaData'?: PagedListMetaData;
|
|
9824
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
|
+
}
|
|
9825
9960
|
/**
|
|
9826
9961
|
*
|
|
9827
9962
|
* @export
|
|
@@ -9866,10 +10001,10 @@ export interface ServiceCategoryItemModel {
|
|
|
9866
10001
|
'serviceCount'?: number;
|
|
9867
10002
|
/**
|
|
9868
10003
|
*
|
|
9869
|
-
* @type {Array<
|
|
10004
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
9870
10005
|
* @memberof ServiceCategoryItemModel
|
|
9871
10006
|
*/
|
|
9872
|
-
'services'?: Array<
|
|
10007
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
9873
10008
|
}
|
|
9874
10009
|
/**
|
|
9875
10010
|
*
|
|
@@ -9915,465 +10050,204 @@ export interface ServiceCategoryModel {
|
|
|
9915
10050
|
'serviceCount'?: number;
|
|
9916
10051
|
/**
|
|
9917
10052
|
*
|
|
9918
|
-
* @type {Array<
|
|
10053
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
9919
10054
|
* @memberof ServiceCategoryModel
|
|
9920
10055
|
*/
|
|
9921
|
-
'services'?: Array<
|
|
10056
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
9922
10057
|
}
|
|
9923
10058
|
/**
|
|
9924
10059
|
*
|
|
9925
10060
|
* @export
|
|
9926
|
-
* @interface
|
|
10061
|
+
* @interface SnsHandle
|
|
9927
10062
|
*/
|
|
9928
|
-
export interface
|
|
10063
|
+
export interface SnsHandle {
|
|
9929
10064
|
/**
|
|
9930
10065
|
*
|
|
9931
10066
|
* @type {string}
|
|
9932
|
-
* @memberof
|
|
10067
|
+
* @memberof SnsHandle
|
|
9933
10068
|
*/
|
|
9934
10069
|
'id'?: string;
|
|
9935
10070
|
/**
|
|
9936
10071
|
*
|
|
9937
|
-
* @type {
|
|
9938
|
-
* @memberof
|
|
10072
|
+
* @type {SnsType}
|
|
10073
|
+
* @memberof SnsHandle
|
|
9939
10074
|
*/
|
|
9940
|
-
'
|
|
10075
|
+
'snsType'?: SnsType;
|
|
9941
10076
|
/**
|
|
9942
10077
|
*
|
|
9943
10078
|
* @type {string}
|
|
9944
|
-
* @memberof
|
|
10079
|
+
* @memberof SnsHandle
|
|
9945
10080
|
*/
|
|
9946
|
-
'
|
|
10081
|
+
'handle'?: string | null;
|
|
10082
|
+
}
|
|
10083
|
+
/**
|
|
10084
|
+
*
|
|
10085
|
+
* @export
|
|
10086
|
+
* @interface SnsHandleModel
|
|
10087
|
+
*/
|
|
10088
|
+
export interface SnsHandleModel {
|
|
9947
10089
|
/**
|
|
9948
10090
|
*
|
|
9949
10091
|
* @type {string}
|
|
9950
|
-
* @memberof
|
|
10092
|
+
* @memberof SnsHandleModel
|
|
9951
10093
|
*/
|
|
9952
|
-
'
|
|
10094
|
+
'id'?: string;
|
|
9953
10095
|
/**
|
|
9954
10096
|
*
|
|
9955
|
-
* @type {
|
|
9956
|
-
* @memberof
|
|
10097
|
+
* @type {SnsType}
|
|
10098
|
+
* @memberof SnsHandleModel
|
|
9957
10099
|
*/
|
|
9958
|
-
'
|
|
10100
|
+
'snsType'?: SnsType;
|
|
9959
10101
|
/**
|
|
9960
10102
|
*
|
|
9961
10103
|
* @type {string}
|
|
9962
|
-
* @memberof
|
|
10104
|
+
* @memberof SnsHandleModel
|
|
9963
10105
|
*/
|
|
9964
|
-
'
|
|
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 {
|
|
9965
10124
|
/**
|
|
9966
10125
|
*
|
|
9967
10126
|
* @type {string}
|
|
9968
|
-
* @memberof
|
|
10127
|
+
* @memberof Source
|
|
9969
10128
|
*/
|
|
9970
|
-
'
|
|
10129
|
+
'id'?: string;
|
|
9971
10130
|
/**
|
|
9972
10131
|
*
|
|
9973
10132
|
* @type {string}
|
|
9974
|
-
* @memberof
|
|
10133
|
+
* @memberof Source
|
|
9975
10134
|
*/
|
|
9976
|
-
'
|
|
10135
|
+
'name'?: string | null;
|
|
9977
10136
|
/**
|
|
9978
10137
|
*
|
|
9979
10138
|
* @type {string}
|
|
9980
|
-
* @memberof
|
|
10139
|
+
* @memberof Source
|
|
9981
10140
|
*/
|
|
9982
|
-
'
|
|
10141
|
+
'referenceUrl'?: string | null;
|
|
9983
10142
|
/**
|
|
9984
10143
|
*
|
|
9985
|
-
* @type {
|
|
9986
|
-
* @memberof
|
|
10144
|
+
* @type {number}
|
|
10145
|
+
* @memberof Source
|
|
9987
10146
|
*/
|
|
9988
|
-
'
|
|
10147
|
+
'order'?: number;
|
|
10148
|
+
}
|
|
10149
|
+
/**
|
|
10150
|
+
*
|
|
10151
|
+
* @export
|
|
10152
|
+
* @interface SourceModel
|
|
10153
|
+
*/
|
|
10154
|
+
export interface SourceModel {
|
|
9989
10155
|
/**
|
|
9990
10156
|
*
|
|
9991
10157
|
* @type {string}
|
|
9992
|
-
* @memberof
|
|
9993
|
-
*/
|
|
9994
|
-
'specialtyName'?: string | null;
|
|
9995
|
-
/**
|
|
9996
|
-
*
|
|
9997
|
-
* @type {MarketingType}
|
|
9998
|
-
* @memberof ServiceItemModel
|
|
9999
|
-
*/
|
|
10000
|
-
'marketingType'?: MarketingType;
|
|
10001
|
-
/**
|
|
10002
|
-
*
|
|
10003
|
-
* @type {Procedure}
|
|
10004
|
-
* @memberof ServiceItemModel
|
|
10005
|
-
*/
|
|
10006
|
-
'procedure'?: Procedure;
|
|
10007
|
-
/**
|
|
10008
|
-
*
|
|
10009
|
-
* @type {number}
|
|
10010
|
-
* @memberof ServiceItemModel
|
|
10158
|
+
* @memberof SourceModel
|
|
10011
10159
|
*/
|
|
10012
|
-
'
|
|
10160
|
+
'id'?: string;
|
|
10013
10161
|
/**
|
|
10014
10162
|
*
|
|
10015
|
-
* @type {
|
|
10016
|
-
* @memberof
|
|
10163
|
+
* @type {string}
|
|
10164
|
+
* @memberof SourceModel
|
|
10017
10165
|
*/
|
|
10018
|
-
'
|
|
10166
|
+
'name'?: string | null;
|
|
10019
10167
|
/**
|
|
10020
10168
|
*
|
|
10021
|
-
* @type {
|
|
10022
|
-
* @memberof
|
|
10169
|
+
* @type {string}
|
|
10170
|
+
* @memberof SourceModel
|
|
10023
10171
|
*/
|
|
10024
|
-
'
|
|
10172
|
+
'referenceUrl'?: string | null;
|
|
10025
10173
|
/**
|
|
10026
10174
|
*
|
|
10027
10175
|
* @type {number}
|
|
10028
|
-
* @memberof
|
|
10176
|
+
* @memberof SourceModel
|
|
10029
10177
|
*/
|
|
10030
10178
|
'order'?: number;
|
|
10179
|
+
}
|
|
10180
|
+
/**
|
|
10181
|
+
*
|
|
10182
|
+
* @export
|
|
10183
|
+
* @interface SpecialtiesModel
|
|
10184
|
+
*/
|
|
10185
|
+
export interface SpecialtiesModel {
|
|
10031
10186
|
/**
|
|
10032
10187
|
*
|
|
10033
|
-
* @type {
|
|
10034
|
-
* @memberof
|
|
10188
|
+
* @type {Array<SpecialtyItemModel>}
|
|
10189
|
+
* @memberof SpecialtiesModel
|
|
10035
10190
|
*/
|
|
10036
|
-
'
|
|
10191
|
+
'items'?: Array<SpecialtyItemModel> | null;
|
|
10037
10192
|
/**
|
|
10038
10193
|
*
|
|
10039
|
-
* @type {
|
|
10040
|
-
* @memberof
|
|
10194
|
+
* @type {PagedListMetaData}
|
|
10195
|
+
* @memberof SpecialtiesModel
|
|
10041
10196
|
*/
|
|
10042
|
-
'
|
|
10197
|
+
'metaData'?: PagedListMetaData;
|
|
10043
10198
|
}
|
|
10044
10199
|
/**
|
|
10045
10200
|
*
|
|
10046
10201
|
* @export
|
|
10047
|
-
* @interface
|
|
10202
|
+
* @interface Specialty
|
|
10048
10203
|
*/
|
|
10049
|
-
export interface
|
|
10204
|
+
export interface Specialty {
|
|
10050
10205
|
/**
|
|
10051
10206
|
*
|
|
10052
10207
|
* @type {string}
|
|
10053
|
-
* @memberof
|
|
10208
|
+
* @memberof Specialty
|
|
10054
10209
|
*/
|
|
10055
10210
|
'id'?: string;
|
|
10056
10211
|
/**
|
|
10057
10212
|
*
|
|
10058
10213
|
* @type {string}
|
|
10059
|
-
* @memberof
|
|
10214
|
+
* @memberof Specialty
|
|
10060
10215
|
*/
|
|
10061
10216
|
'name'?: string | null;
|
|
10062
10217
|
/**
|
|
10063
10218
|
*
|
|
10064
10219
|
* @type {string}
|
|
10065
|
-
* @memberof
|
|
10220
|
+
* @memberof Specialty
|
|
10066
10221
|
*/
|
|
10067
|
-
'
|
|
10222
|
+
'normalizedName'?: string | null;
|
|
10068
10223
|
/**
|
|
10069
10224
|
*
|
|
10070
10225
|
* @type {string}
|
|
10071
|
-
* @memberof
|
|
10226
|
+
* @memberof Specialty
|
|
10072
10227
|
*/
|
|
10073
10228
|
'description'?: string | null;
|
|
10074
10229
|
/**
|
|
10075
10230
|
*
|
|
10076
10231
|
* @type {string}
|
|
10077
|
-
* @memberof
|
|
10232
|
+
* @memberof Specialty
|
|
10078
10233
|
*/
|
|
10079
10234
|
'content'?: string | null;
|
|
10080
10235
|
/**
|
|
10081
10236
|
*
|
|
10082
10237
|
* @type {string}
|
|
10083
|
-
* @memberof
|
|
10238
|
+
* @memberof Specialty
|
|
10084
10239
|
*/
|
|
10085
|
-
'
|
|
10240
|
+
'specialtyTypeId'?: string;
|
|
10086
10241
|
/**
|
|
10087
10242
|
*
|
|
10088
|
-
* @type {
|
|
10089
|
-
* @memberof
|
|
10243
|
+
* @type {SpecialtyType}
|
|
10244
|
+
* @memberof Specialty
|
|
10090
10245
|
*/
|
|
10091
|
-
'
|
|
10246
|
+
'specialtyType'?: SpecialtyType;
|
|
10092
10247
|
/**
|
|
10093
10248
|
*
|
|
10094
|
-
* @type {
|
|
10095
|
-
* @memberof
|
|
10096
|
-
*/
|
|
10097
|
-
'specialtyTypeId'?: string | null;
|
|
10098
|
-
/**
|
|
10099
|
-
*
|
|
10100
|
-
* @type {string}
|
|
10101
|
-
* @memberof ServiceModel
|
|
10102
|
-
*/
|
|
10103
|
-
'specialtyTypeName'?: string | null;
|
|
10104
|
-
/**
|
|
10105
|
-
*
|
|
10106
|
-
* @type {string}
|
|
10107
|
-
* @memberof ServiceModel
|
|
10108
|
-
*/
|
|
10109
|
-
'specialtyId'?: string;
|
|
10110
|
-
/**
|
|
10111
|
-
*
|
|
10112
|
-
* @type {string}
|
|
10113
|
-
* @memberof ServiceModel
|
|
10114
|
-
*/
|
|
10115
|
-
'specialtyName'?: string | null;
|
|
10116
|
-
/**
|
|
10117
|
-
*
|
|
10118
|
-
* @type {MarketingType}
|
|
10119
|
-
* @memberof ServiceModel
|
|
10120
|
-
*/
|
|
10121
|
-
'marketingType'?: MarketingType;
|
|
10122
|
-
/**
|
|
10123
|
-
*
|
|
10124
|
-
* @type {Procedure}
|
|
10125
|
-
* @memberof ServiceModel
|
|
10126
|
-
*/
|
|
10127
|
-
'procedure'?: Procedure;
|
|
10128
|
-
/**
|
|
10129
|
-
*
|
|
10130
|
-
* @type {number}
|
|
10131
|
-
* @memberof ServiceModel
|
|
10132
|
-
*/
|
|
10133
|
-
'minPrice'?: number | null;
|
|
10134
|
-
/**
|
|
10135
|
-
*
|
|
10136
|
-
* @type {number}
|
|
10137
|
-
* @memberof ServiceModel
|
|
10138
|
-
*/
|
|
10139
|
-
'maxPrice'?: number | null;
|
|
10140
|
-
/**
|
|
10141
|
-
*
|
|
10142
|
-
* @type {boolean}
|
|
10143
|
-
* @memberof ServiceModel
|
|
10144
|
-
*/
|
|
10145
|
-
'priceReuqest'?: boolean;
|
|
10146
|
-
/**
|
|
10147
|
-
*
|
|
10148
|
-
* @type {number}
|
|
10149
|
-
* @memberof ServiceModel
|
|
10150
|
-
*/
|
|
10151
|
-
'order'?: number;
|
|
10152
|
-
/**
|
|
10153
|
-
*
|
|
10154
|
-
* @type {AuditableEntity}
|
|
10155
|
-
* @memberof ServiceModel
|
|
10156
|
-
*/
|
|
10157
|
-
'auditableEntity'?: AuditableEntity;
|
|
10158
|
-
/**
|
|
10159
|
-
*
|
|
10160
|
-
* @type {boolean}
|
|
10161
|
-
* @memberof ServiceModel
|
|
10162
|
-
*/
|
|
10163
|
-
'confirmed'?: boolean;
|
|
10164
|
-
}
|
|
10165
|
-
/**
|
|
10166
|
-
*
|
|
10167
|
-
* @export
|
|
10168
|
-
* @interface ServicesModel
|
|
10169
|
-
*/
|
|
10170
|
-
export interface ServicesModel {
|
|
10171
|
-
/**
|
|
10172
|
-
*
|
|
10173
|
-
* @type {Array<ServiceItemModel>}
|
|
10174
|
-
* @memberof ServicesModel
|
|
10175
|
-
*/
|
|
10176
|
-
'items'?: Array<ServiceItemModel> | null;
|
|
10177
|
-
/**
|
|
10178
|
-
*
|
|
10179
|
-
* @type {PagedListMetaData}
|
|
10180
|
-
* @memberof ServicesModel
|
|
10181
|
-
*/
|
|
10182
|
-
'metaData'?: PagedListMetaData;
|
|
10183
|
-
}
|
|
10184
|
-
/**
|
|
10185
|
-
*
|
|
10186
|
-
* @export
|
|
10187
|
-
* @interface SnsHandle
|
|
10188
|
-
*/
|
|
10189
|
-
export interface SnsHandle {
|
|
10190
|
-
/**
|
|
10191
|
-
*
|
|
10192
|
-
* @type {string}
|
|
10193
|
-
* @memberof SnsHandle
|
|
10194
|
-
*/
|
|
10195
|
-
'id'?: string;
|
|
10196
|
-
/**
|
|
10197
|
-
*
|
|
10198
|
-
* @type {SnsType}
|
|
10199
|
-
* @memberof SnsHandle
|
|
10200
|
-
*/
|
|
10201
|
-
'snsType'?: SnsType;
|
|
10202
|
-
/**
|
|
10203
|
-
*
|
|
10204
|
-
* @type {string}
|
|
10205
|
-
* @memberof SnsHandle
|
|
10206
|
-
*/
|
|
10207
|
-
'handle'?: string | null;
|
|
10208
|
-
}
|
|
10209
|
-
/**
|
|
10210
|
-
*
|
|
10211
|
-
* @export
|
|
10212
|
-
* @interface SnsHandleModel
|
|
10213
|
-
*/
|
|
10214
|
-
export interface SnsHandleModel {
|
|
10215
|
-
/**
|
|
10216
|
-
*
|
|
10217
|
-
* @type {string}
|
|
10218
|
-
* @memberof SnsHandleModel
|
|
10219
|
-
*/
|
|
10220
|
-
'id'?: string;
|
|
10221
|
-
/**
|
|
10222
|
-
*
|
|
10223
|
-
* @type {SnsType}
|
|
10224
|
-
* @memberof SnsHandleModel
|
|
10225
|
-
*/
|
|
10226
|
-
'snsType'?: SnsType;
|
|
10227
|
-
/**
|
|
10228
|
-
*
|
|
10229
|
-
* @type {string}
|
|
10230
|
-
* @memberof SnsHandleModel
|
|
10231
|
-
*/
|
|
10232
|
-
'handle'?: string | null;
|
|
10233
|
-
}
|
|
10234
|
-
/**
|
|
10235
|
-
*
|
|
10236
|
-
* @export
|
|
10237
|
-
* @enum {string}
|
|
10238
|
-
*/
|
|
10239
|
-
export declare enum SnsType {
|
|
10240
|
-
Twitter = "Twitter",
|
|
10241
|
-
Facebook = "Facebook",
|
|
10242
|
-
Instagram = "Instagram"
|
|
10243
|
-
}
|
|
10244
|
-
/**
|
|
10245
|
-
*
|
|
10246
|
-
* @export
|
|
10247
|
-
* @interface Source
|
|
10248
|
-
*/
|
|
10249
|
-
export interface Source {
|
|
10250
|
-
/**
|
|
10251
|
-
*
|
|
10252
|
-
* @type {string}
|
|
10253
|
-
* @memberof Source
|
|
10254
|
-
*/
|
|
10255
|
-
'id'?: string;
|
|
10256
|
-
/**
|
|
10257
|
-
*
|
|
10258
|
-
* @type {string}
|
|
10259
|
-
* @memberof Source
|
|
10260
|
-
*/
|
|
10261
|
-
'name'?: string | null;
|
|
10262
|
-
/**
|
|
10263
|
-
*
|
|
10264
|
-
* @type {string}
|
|
10265
|
-
* @memberof Source
|
|
10266
|
-
*/
|
|
10267
|
-
'referenceUrl'?: string | null;
|
|
10268
|
-
/**
|
|
10269
|
-
*
|
|
10270
|
-
* @type {number}
|
|
10271
|
-
* @memberof Source
|
|
10272
|
-
*/
|
|
10273
|
-
'order'?: number;
|
|
10274
|
-
}
|
|
10275
|
-
/**
|
|
10276
|
-
*
|
|
10277
|
-
* @export
|
|
10278
|
-
* @interface SourceModel
|
|
10279
|
-
*/
|
|
10280
|
-
export interface SourceModel {
|
|
10281
|
-
/**
|
|
10282
|
-
*
|
|
10283
|
-
* @type {string}
|
|
10284
|
-
* @memberof SourceModel
|
|
10285
|
-
*/
|
|
10286
|
-
'id'?: string;
|
|
10287
|
-
/**
|
|
10288
|
-
*
|
|
10289
|
-
* @type {string}
|
|
10290
|
-
* @memberof SourceModel
|
|
10291
|
-
*/
|
|
10292
|
-
'name'?: string | null;
|
|
10293
|
-
/**
|
|
10294
|
-
*
|
|
10295
|
-
* @type {string}
|
|
10296
|
-
* @memberof SourceModel
|
|
10297
|
-
*/
|
|
10298
|
-
'referenceUrl'?: string | null;
|
|
10299
|
-
/**
|
|
10300
|
-
*
|
|
10301
|
-
* @type {number}
|
|
10302
|
-
* @memberof SourceModel
|
|
10303
|
-
*/
|
|
10304
|
-
'order'?: number;
|
|
10305
|
-
}
|
|
10306
|
-
/**
|
|
10307
|
-
*
|
|
10308
|
-
* @export
|
|
10309
|
-
* @interface SpecialtiesModel
|
|
10310
|
-
*/
|
|
10311
|
-
export interface SpecialtiesModel {
|
|
10312
|
-
/**
|
|
10313
|
-
*
|
|
10314
|
-
* @type {Array<SpecialtyItemModel>}
|
|
10315
|
-
* @memberof SpecialtiesModel
|
|
10316
|
-
*/
|
|
10317
|
-
'items'?: Array<SpecialtyItemModel> | null;
|
|
10318
|
-
/**
|
|
10319
|
-
*
|
|
10320
|
-
* @type {PagedListMetaData}
|
|
10321
|
-
* @memberof SpecialtiesModel
|
|
10322
|
-
*/
|
|
10323
|
-
'metaData'?: PagedListMetaData;
|
|
10324
|
-
}
|
|
10325
|
-
/**
|
|
10326
|
-
*
|
|
10327
|
-
* @export
|
|
10328
|
-
* @interface Specialty
|
|
10329
|
-
*/
|
|
10330
|
-
export interface Specialty {
|
|
10331
|
-
/**
|
|
10332
|
-
*
|
|
10333
|
-
* @type {string}
|
|
10334
|
-
* @memberof Specialty
|
|
10335
|
-
*/
|
|
10336
|
-
'id'?: string;
|
|
10337
|
-
/**
|
|
10338
|
-
*
|
|
10339
|
-
* @type {string}
|
|
10340
|
-
* @memberof Specialty
|
|
10341
|
-
*/
|
|
10342
|
-
'name'?: string | null;
|
|
10343
|
-
/**
|
|
10344
|
-
*
|
|
10345
|
-
* @type {string}
|
|
10346
|
-
* @memberof Specialty
|
|
10347
|
-
*/
|
|
10348
|
-
'normalizedName'?: string | null;
|
|
10349
|
-
/**
|
|
10350
|
-
*
|
|
10351
|
-
* @type {string}
|
|
10352
|
-
* @memberof Specialty
|
|
10353
|
-
*/
|
|
10354
|
-
'description'?: string | null;
|
|
10355
|
-
/**
|
|
10356
|
-
*
|
|
10357
|
-
* @type {string}
|
|
10358
|
-
* @memberof Specialty
|
|
10359
|
-
*/
|
|
10360
|
-
'content'?: string | null;
|
|
10361
|
-
/**
|
|
10362
|
-
*
|
|
10363
|
-
* @type {string}
|
|
10364
|
-
* @memberof Specialty
|
|
10365
|
-
*/
|
|
10366
|
-
'specialtyTypeId'?: string;
|
|
10367
|
-
/**
|
|
10368
|
-
*
|
|
10369
|
-
* @type {SpecialtyType}
|
|
10370
|
-
* @memberof Specialty
|
|
10371
|
-
*/
|
|
10372
|
-
'specialtyType'?: SpecialtyType;
|
|
10373
|
-
/**
|
|
10374
|
-
*
|
|
10375
|
-
* @type {Array<HospitalSpecialty>}
|
|
10376
|
-
* @memberof Specialty
|
|
10249
|
+
* @type {Array<HospitalSpecialty>}
|
|
10250
|
+
* @memberof Specialty
|
|
10377
10251
|
*/
|
|
10378
10252
|
'hospitalSpecialties'?: Array<HospitalSpecialty> | null;
|
|
10379
10253
|
/**
|
|
@@ -11137,6 +11011,25 @@ export interface UpdateContributorCommand {
|
|
|
11137
11011
|
*/
|
|
11138
11012
|
'hospitalId'?: string;
|
|
11139
11013
|
}
|
|
11014
|
+
/**
|
|
11015
|
+
*
|
|
11016
|
+
* @export
|
|
11017
|
+
* @interface UpdateContributorSnsHandleCommand
|
|
11018
|
+
*/
|
|
11019
|
+
export interface UpdateContributorSnsHandleCommand {
|
|
11020
|
+
/**
|
|
11021
|
+
*
|
|
11022
|
+
* @type {SnsType}
|
|
11023
|
+
* @memberof UpdateContributorSnsHandleCommand
|
|
11024
|
+
*/
|
|
11025
|
+
'snsType'?: SnsType;
|
|
11026
|
+
/**
|
|
11027
|
+
*
|
|
11028
|
+
* @type {string}
|
|
11029
|
+
* @memberof UpdateContributorSnsHandleCommand
|
|
11030
|
+
*/
|
|
11031
|
+
'handle'?: string | null;
|
|
11032
|
+
}
|
|
11140
11033
|
/**
|
|
11141
11034
|
*
|
|
11142
11035
|
* @export
|
|
@@ -11475,6 +11368,19 @@ export interface UpdateDoctorPortfolioCommand {
|
|
|
11475
11368
|
*/
|
|
11476
11369
|
'photoAfterThumbnail'?: string | null;
|
|
11477
11370
|
}
|
|
11371
|
+
/**
|
|
11372
|
+
*
|
|
11373
|
+
* @export
|
|
11374
|
+
* @interface UpdateDoctorSpecialtyCommand
|
|
11375
|
+
*/
|
|
11376
|
+
export interface UpdateDoctorSpecialtyCommand {
|
|
11377
|
+
/**
|
|
11378
|
+
*
|
|
11379
|
+
* @type {number}
|
|
11380
|
+
* @memberof UpdateDoctorSpecialtyCommand
|
|
11381
|
+
*/
|
|
11382
|
+
'order'?: number;
|
|
11383
|
+
}
|
|
11478
11384
|
/**
|
|
11479
11385
|
*
|
|
11480
11386
|
* @export
|
|
@@ -11784,6 +11690,19 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11784
11690
|
*/
|
|
11785
11691
|
'order'?: number;
|
|
11786
11692
|
}
|
|
11693
|
+
/**
|
|
11694
|
+
*
|
|
11695
|
+
* @export
|
|
11696
|
+
* @interface UpdateHospitalSpecialtyCommand
|
|
11697
|
+
*/
|
|
11698
|
+
export interface UpdateHospitalSpecialtyCommand {
|
|
11699
|
+
/**
|
|
11700
|
+
*
|
|
11701
|
+
* @type {number}
|
|
11702
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11703
|
+
*/
|
|
11704
|
+
'order'?: number;
|
|
11705
|
+
}
|
|
11787
11706
|
/**
|
|
11788
11707
|
*
|
|
11789
11708
|
* @export
|
|
@@ -11865,10 +11784,10 @@ export interface UpdateServiceCategoryCommand {
|
|
|
11865
11784
|
'serviceCount'?: number;
|
|
11866
11785
|
/**
|
|
11867
11786
|
*
|
|
11868
|
-
* @type {Array<
|
|
11787
|
+
* @type {Array<HospitalServiceItemModel>}
|
|
11869
11788
|
* @memberof UpdateServiceCategoryCommand
|
|
11870
11789
|
*/
|
|
11871
|
-
'services'?: Array<
|
|
11790
|
+
'services'?: Array<HospitalServiceItemModel> | null;
|
|
11872
11791
|
/**
|
|
11873
11792
|
*
|
|
11874
11793
|
* @type {Array<string>}
|
|
@@ -12690,7 +12609,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12690
12609
|
*
|
|
12691
12610
|
* @summary GetAll ArticleContributors.
|
|
12692
12611
|
* @param {string} articleId
|
|
12693
|
-
* @param {string} [articleId2]
|
|
12694
12612
|
* @param {string} [articleName]
|
|
12695
12613
|
* @param {string} [contributorId]
|
|
12696
12614
|
* @param {string} [contributorName]
|
|
@@ -12704,7 +12622,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12704
12622
|
* @param {*} [options] Override http request option.
|
|
12705
12623
|
* @throws {RequiredError}
|
|
12706
12624
|
*/
|
|
12707
|
-
apiV1ArticlesArticleIdContributorsGet: (articleId: string,
|
|
12625
|
+
apiV1ArticlesArticleIdContributorsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12708
12626
|
/**
|
|
12709
12627
|
*
|
|
12710
12628
|
* @summary Create ArticleContributor.
|
|
@@ -12842,7 +12760,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12842
12760
|
*
|
|
12843
12761
|
* @summary GetAll ArticleContributors.
|
|
12844
12762
|
* @param {string} articleId
|
|
12845
|
-
* @param {string} [articleId2]
|
|
12846
12763
|
* @param {string} [articleName]
|
|
12847
12764
|
* @param {string} [contributorId]
|
|
12848
12765
|
* @param {string} [contributorName]
|
|
@@ -12856,7 +12773,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12856
12773
|
* @param {*} [options] Override http request option.
|
|
12857
12774
|
* @throws {RequiredError}
|
|
12858
12775
|
*/
|
|
12859
|
-
apiV1ArticlesArticleIdTagsGet: (articleId: string,
|
|
12776
|
+
apiV1ArticlesArticleIdTagsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12860
12777
|
/**
|
|
12861
12778
|
*
|
|
12862
12779
|
* @param {string} articleId
|
|
@@ -12965,7 +12882,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12965
12882
|
*
|
|
12966
12883
|
* @summary GetAll ArticleContributors.
|
|
12967
12884
|
* @param {string} articleId
|
|
12968
|
-
* @param {string} [articleId2]
|
|
12969
12885
|
* @param {string} [articleName]
|
|
12970
12886
|
* @param {string} [contributorId]
|
|
12971
12887
|
* @param {string} [contributorName]
|
|
@@ -12979,7 +12895,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12979
12895
|
* @param {*} [options] Override http request option.
|
|
12980
12896
|
* @throws {RequiredError}
|
|
12981
12897
|
*/
|
|
12982
|
-
apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
12898
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
|
|
12983
12899
|
/**
|
|
12984
12900
|
*
|
|
12985
12901
|
* @summary Create ArticleContributor.
|
|
@@ -13117,7 +13033,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13117
13033
|
*
|
|
13118
13034
|
* @summary GetAll ArticleContributors.
|
|
13119
13035
|
* @param {string} articleId
|
|
13120
|
-
* @param {string} [articleId2]
|
|
13121
13036
|
* @param {string} [articleName]
|
|
13122
13037
|
* @param {string} [contributorId]
|
|
13123
13038
|
* @param {string} [contributorName]
|
|
@@ -13131,7 +13046,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13131
13046
|
* @param {*} [options] Override http request option.
|
|
13132
13047
|
* @throws {RequiredError}
|
|
13133
13048
|
*/
|
|
13134
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
13049
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
|
|
13135
13050
|
/**
|
|
13136
13051
|
*
|
|
13137
13052
|
* @param {string} articleId
|
|
@@ -13240,7 +13155,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
13240
13155
|
*
|
|
13241
13156
|
* @summary GetAll ArticleContributors.
|
|
13242
13157
|
* @param {string} articleId
|
|
13243
|
-
* @param {string} [articleId2]
|
|
13244
13158
|
* @param {string} [articleName]
|
|
13245
13159
|
* @param {string} [contributorId]
|
|
13246
13160
|
* @param {string} [contributorName]
|
|
@@ -13254,7 +13168,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
13254
13168
|
* @param {*} [options] Override http request option.
|
|
13255
13169
|
* @throws {RequiredError}
|
|
13256
13170
|
*/
|
|
13257
|
-
apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
13171
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
|
|
13258
13172
|
/**
|
|
13259
13173
|
*
|
|
13260
13174
|
* @summary Create ArticleContributor.
|
|
@@ -13392,7 +13306,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
13392
13306
|
*
|
|
13393
13307
|
* @summary GetAll ArticleContributors.
|
|
13394
13308
|
* @param {string} articleId
|
|
13395
|
-
* @param {string} [articleId2]
|
|
13396
13309
|
* @param {string} [articleName]
|
|
13397
13310
|
* @param {string} [contributorId]
|
|
13398
13311
|
* @param {string} [contributorName]
|
|
@@ -13406,7 +13319,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
13406
13319
|
* @param {*} [options] Override http request option.
|
|
13407
13320
|
* @throws {RequiredError}
|
|
13408
13321
|
*/
|
|
13409
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
13322
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
|
|
13410
13323
|
/**
|
|
13411
13324
|
*
|
|
13412
13325
|
* @param {string} articleId
|
|
@@ -13520,7 +13433,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13520
13433
|
*
|
|
13521
13434
|
* @summary GetAll ArticleContributors.
|
|
13522
13435
|
* @param {string} articleId
|
|
13523
|
-
* @param {string} [articleId2]
|
|
13524
13436
|
* @param {string} [articleName]
|
|
13525
13437
|
* @param {string} [contributorId]
|
|
13526
13438
|
* @param {string} [contributorName]
|
|
@@ -13535,7 +13447,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13535
13447
|
* @throws {RequiredError}
|
|
13536
13448
|
* @memberof ArticlesApi
|
|
13537
13449
|
*/
|
|
13538
|
-
apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
13450
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
|
|
13539
13451
|
/**
|
|
13540
13452
|
*
|
|
13541
13453
|
* @summary Create ArticleContributor.
|
|
@@ -13687,7 +13599,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13687
13599
|
*
|
|
13688
13600
|
* @summary GetAll ArticleContributors.
|
|
13689
13601
|
* @param {string} articleId
|
|
13690
|
-
* @param {string} [articleId2]
|
|
13691
13602
|
* @param {string} [articleName]
|
|
13692
13603
|
* @param {string} [contributorId]
|
|
13693
13604
|
* @param {string} [contributorName]
|
|
@@ -13702,7 +13613,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13702
13613
|
* @throws {RequiredError}
|
|
13703
13614
|
* @memberof ArticlesApi
|
|
13704
13615
|
*/
|
|
13705
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
13616
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
|
|
13706
13617
|
/**
|
|
13707
13618
|
*
|
|
13708
13619
|
* @param {string} articleId
|
|
@@ -14040,6 +13951,119 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14040
13951
|
*/
|
|
14041
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>>;
|
|
14042
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
|
+
}
|
|
14043
14067
|
/**
|
|
14044
14068
|
* ConsultationsApi - axios parameter creator
|
|
14045
14069
|
* @export
|
|
@@ -14351,6 +14375,16 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
14351
14375
|
* @throws {RequiredError}
|
|
14352
14376
|
*/
|
|
14353
14377
|
apiV1ContributorsContributorIdHandlesHandleIdGet: (contributorId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14378
|
+
/**
|
|
14379
|
+
*
|
|
14380
|
+
* @summary Update ContributorHandle.
|
|
14381
|
+
* @param {string} contributorId
|
|
14382
|
+
* @param {string} handleId
|
|
14383
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14384
|
+
* @param {*} [options] Override http request option.
|
|
14385
|
+
* @throws {RequiredError}
|
|
14386
|
+
*/
|
|
14387
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut: (contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14354
14388
|
/**
|
|
14355
14389
|
*
|
|
14356
14390
|
* @summary Get ContributorHandle.
|
|
@@ -14461,6 +14495,16 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
14461
14495
|
* @throws {RequiredError}
|
|
14462
14496
|
*/
|
|
14463
14497
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14498
|
+
/**
|
|
14499
|
+
*
|
|
14500
|
+
* @summary Update ContributorHandle.
|
|
14501
|
+
* @param {string} contributorId
|
|
14502
|
+
* @param {string} handleId
|
|
14503
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14504
|
+
* @param {*} [options] Override http request option.
|
|
14505
|
+
* @throws {RequiredError}
|
|
14506
|
+
*/
|
|
14507
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14464
14508
|
/**
|
|
14465
14509
|
*
|
|
14466
14510
|
* @summary Get ContributorHandle.
|
|
@@ -14571,6 +14615,16 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
14571
14615
|
* @throws {RequiredError}
|
|
14572
14616
|
*/
|
|
14573
14617
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
14618
|
+
/**
|
|
14619
|
+
*
|
|
14620
|
+
* @summary Update ContributorHandle.
|
|
14621
|
+
* @param {string} contributorId
|
|
14622
|
+
* @param {string} handleId
|
|
14623
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14624
|
+
* @param {*} [options] Override http request option.
|
|
14625
|
+
* @throws {RequiredError}
|
|
14626
|
+
*/
|
|
14627
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
14574
14628
|
/**
|
|
14575
14629
|
*
|
|
14576
14630
|
* @summary Get ContributorHandle.
|
|
@@ -14688,6 +14742,17 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
14688
14742
|
* @memberof ContributorsApi
|
|
14689
14743
|
*/
|
|
14690
14744
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
14745
|
+
/**
|
|
14746
|
+
*
|
|
14747
|
+
* @summary Update ContributorHandle.
|
|
14748
|
+
* @param {string} contributorId
|
|
14749
|
+
* @param {string} handleId
|
|
14750
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14751
|
+
* @param {*} [options] Override http request option.
|
|
14752
|
+
* @throws {RequiredError}
|
|
14753
|
+
* @memberof ContributorsApi
|
|
14754
|
+
*/
|
|
14755
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
14691
14756
|
/**
|
|
14692
14757
|
*
|
|
14693
14758
|
* @summary Get ContributorHandle.
|
|
@@ -16177,7 +16242,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16177
16242
|
*
|
|
16178
16243
|
* @summary Get All DoctorSpecialties.
|
|
16179
16244
|
* @param {string} doctorId
|
|
16180
|
-
* @param {string} [doctorId2]
|
|
16181
16245
|
* @param {string} [doctorName]
|
|
16182
16246
|
* @param {string} [specialtyId]
|
|
16183
16247
|
* @param {string} [specialtyName]
|
|
@@ -16187,7 +16251,16 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16187
16251
|
* @param {*} [options] Override http request option.
|
|
16188
16252
|
* @throws {RequiredError}
|
|
16189
16253
|
*/
|
|
16190
|
-
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string,
|
|
16254
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16255
|
+
/**
|
|
16256
|
+
*
|
|
16257
|
+
* @summary Link a doctor to a specialty.
|
|
16258
|
+
* @param {string} doctorId
|
|
16259
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16260
|
+
* @param {*} [options] Override http request option.
|
|
16261
|
+
* @throws {RequiredError}
|
|
16262
|
+
*/
|
|
16263
|
+
apiV1DoctorsDoctorIdSpecialtiesPost: (doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16191
16264
|
/**
|
|
16192
16265
|
*
|
|
16193
16266
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16208,13 +16281,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16208
16281
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16209
16282
|
/**
|
|
16210
16283
|
*
|
|
16211
|
-
* @summary
|
|
16284
|
+
* @summary Update DoctorSpecialty.
|
|
16212
16285
|
* @param {string} doctorId
|
|
16213
16286
|
* @param {string} specialtyId
|
|
16287
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16214
16288
|
* @param {*} [options] Override http request option.
|
|
16215
16289
|
* @throws {RequiredError}
|
|
16216
16290
|
*/
|
|
16217
|
-
|
|
16291
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut: (doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16218
16292
|
/**
|
|
16219
16293
|
*
|
|
16220
16294
|
* @summary Get all Doctors.
|
|
@@ -16516,12 +16590,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16516
16590
|
* @param {*} [options] Override http request option.
|
|
16517
16591
|
* @throws {RequiredError}
|
|
16518
16592
|
*/
|
|
16519
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16593
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
16520
16594
|
/**
|
|
16521
16595
|
*
|
|
16522
16596
|
* @summary Get All DoctorSpecialties.
|
|
16523
16597
|
* @param {string} doctorId
|
|
16524
|
-
* @param {string} [doctorId2]
|
|
16525
16598
|
* @param {string} [doctorName]
|
|
16526
16599
|
* @param {string} [specialtyId]
|
|
16527
16600
|
* @param {string} [specialtyName]
|
|
@@ -16531,7 +16604,16 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16531
16604
|
* @param {*} [options] Override http request option.
|
|
16532
16605
|
* @throws {RequiredError}
|
|
16533
16606
|
*/
|
|
16534
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
16607
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
16608
|
+
/**
|
|
16609
|
+
*
|
|
16610
|
+
* @summary Link a doctor to a specialty.
|
|
16611
|
+
* @param {string} doctorId
|
|
16612
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16613
|
+
* @param {*} [options] Override http request option.
|
|
16614
|
+
* @throws {RequiredError}
|
|
16615
|
+
*/
|
|
16616
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16535
16617
|
/**
|
|
16536
16618
|
*
|
|
16537
16619
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16552,13 +16634,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16552
16634
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16553
16635
|
/**
|
|
16554
16636
|
*
|
|
16555
|
-
* @summary
|
|
16637
|
+
* @summary Update DoctorSpecialty.
|
|
16556
16638
|
* @param {string} doctorId
|
|
16557
16639
|
* @param {string} specialtyId
|
|
16640
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16558
16641
|
* @param {*} [options] Override http request option.
|
|
16559
16642
|
* @throws {RequiredError}
|
|
16560
16643
|
*/
|
|
16561
|
-
|
|
16644
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16562
16645
|
/**
|
|
16563
16646
|
*
|
|
16564
16647
|
* @summary Get all Doctors.
|
|
@@ -16860,12 +16943,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16860
16943
|
* @param {*} [options] Override http request option.
|
|
16861
16944
|
* @throws {RequiredError}
|
|
16862
16945
|
*/
|
|
16863
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<
|
|
16946
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
16864
16947
|
/**
|
|
16865
16948
|
*
|
|
16866
16949
|
* @summary Get All DoctorSpecialties.
|
|
16867
16950
|
* @param {string} doctorId
|
|
16868
|
-
* @param {string} [doctorId2]
|
|
16869
16951
|
* @param {string} [doctorName]
|
|
16870
16952
|
* @param {string} [specialtyId]
|
|
16871
16953
|
* @param {string} [specialtyName]
|
|
@@ -16875,7 +16957,16 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16875
16957
|
* @param {*} [options] Override http request option.
|
|
16876
16958
|
* @throws {RequiredError}
|
|
16877
16959
|
*/
|
|
16878
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
16960
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
16961
|
+
/**
|
|
16962
|
+
*
|
|
16963
|
+
* @summary Link a doctor to a specialty.
|
|
16964
|
+
* @param {string} doctorId
|
|
16965
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16966
|
+
* @param {*} [options] Override http request option.
|
|
16967
|
+
* @throws {RequiredError}
|
|
16968
|
+
*/
|
|
16969
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16879
16970
|
/**
|
|
16880
16971
|
*
|
|
16881
16972
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16896,13 +16987,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16896
16987
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16897
16988
|
/**
|
|
16898
16989
|
*
|
|
16899
|
-
* @summary
|
|
16990
|
+
* @summary Update DoctorSpecialty.
|
|
16900
16991
|
* @param {string} doctorId
|
|
16901
16992
|
* @param {string} specialtyId
|
|
16993
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16902
16994
|
* @param {*} [options] Override http request option.
|
|
16903
16995
|
* @throws {RequiredError}
|
|
16904
16996
|
*/
|
|
16905
|
-
|
|
16997
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16906
16998
|
/**
|
|
16907
16999
|
*
|
|
16908
17000
|
* @summary Get all Doctors.
|
|
@@ -17231,12 +17323,11 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17231
17323
|
* @throws {RequiredError}
|
|
17232
17324
|
* @memberof DoctorsApi
|
|
17233
17325
|
*/
|
|
17234
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17326
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
17235
17327
|
/**
|
|
17236
17328
|
*
|
|
17237
17329
|
* @summary Get All DoctorSpecialties.
|
|
17238
17330
|
* @param {string} doctorId
|
|
17239
|
-
* @param {string} [doctorId2]
|
|
17240
17331
|
* @param {string} [doctorName]
|
|
17241
17332
|
* @param {string} [specialtyId]
|
|
17242
17333
|
* @param {string} [specialtyName]
|
|
@@ -17247,7 +17338,17 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17247
17338
|
* @throws {RequiredError}
|
|
17248
17339
|
* @memberof DoctorsApi
|
|
17249
17340
|
*/
|
|
17250
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
17341
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
|
|
17342
|
+
/**
|
|
17343
|
+
*
|
|
17344
|
+
* @summary Link a doctor to a specialty.
|
|
17345
|
+
* @param {string} doctorId
|
|
17346
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
17347
|
+
* @param {*} [options] Override http request option.
|
|
17348
|
+
* @throws {RequiredError}
|
|
17349
|
+
* @memberof DoctorsApi
|
|
17350
|
+
*/
|
|
17351
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17251
17352
|
/**
|
|
17252
17353
|
*
|
|
17253
17354
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -17270,14 +17371,15 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17270
17371
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17271
17372
|
/**
|
|
17272
17373
|
*
|
|
17273
|
-
* @summary
|
|
17374
|
+
* @summary Update DoctorSpecialty.
|
|
17274
17375
|
* @param {string} doctorId
|
|
17275
17376
|
* @param {string} specialtyId
|
|
17377
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
17276
17378
|
* @param {*} [options] Override http request option.
|
|
17277
17379
|
* @throws {RequiredError}
|
|
17278
17380
|
* @memberof DoctorsApi
|
|
17279
17381
|
*/
|
|
17280
|
-
|
|
17382
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17281
17383
|
/**
|
|
17282
17384
|
*
|
|
17283
17385
|
* @summary Get all Doctors.
|
|
@@ -17582,57 +17684,113 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17582
17684
|
* @param {*} [options] Override http request option.
|
|
17583
17685
|
* @throws {RequiredError}
|
|
17584
17686
|
*/
|
|
17585
|
-
apiV1HospitalsHospitalIdMediasMediaIdDelete: (hospitalId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
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>;
|
|
17725
|
+
/**
|
|
17726
|
+
*
|
|
17727
|
+
* @summary Get all HospitalSpecialties.
|
|
17728
|
+
* @param {string} hospitalId
|
|
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]
|
|
17739
|
+
* @param {*} [options] Override http request option.
|
|
17740
|
+
* @throws {RequiredError}
|
|
17741
|
+
*/
|
|
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>;
|
|
17586
17743
|
/**
|
|
17587
17744
|
*
|
|
17588
|
-
* @summary
|
|
17745
|
+
* @summary Create HospitalSpecialty.
|
|
17589
17746
|
* @param {string} hospitalId
|
|
17590
|
-
* @param {
|
|
17747
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
17591
17748
|
* @param {*} [options] Override http request option.
|
|
17592
17749
|
* @throws {RequiredError}
|
|
17593
17750
|
*/
|
|
17594
|
-
|
|
17751
|
+
apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17595
17752
|
/**
|
|
17596
17753
|
*
|
|
17597
|
-
* @summary
|
|
17754
|
+
* @summary Delete HospitalSpecialty.
|
|
17598
17755
|
* @param {string} hospitalId
|
|
17599
|
-
* @param {string}
|
|
17600
|
-
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
17756
|
+
* @param {string} specialtyId
|
|
17601
17757
|
* @param {*} [options] Override http request option.
|
|
17602
17758
|
* @throws {RequiredError}
|
|
17603
17759
|
*/
|
|
17604
|
-
|
|
17760
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17605
17761
|
/**
|
|
17606
17762
|
*
|
|
17607
|
-
* @summary
|
|
17763
|
+
* @summary Get HospitalSpecialty.
|
|
17608
17764
|
* @param {string} hospitalId
|
|
17609
|
-
* @param {
|
|
17765
|
+
* @param {string} specialtyId
|
|
17610
17766
|
* @param {*} [options] Override http request option.
|
|
17611
17767
|
* @throws {RequiredError}
|
|
17612
17768
|
*/
|
|
17613
|
-
|
|
17769
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17614
17770
|
/**
|
|
17615
17771
|
*
|
|
17616
|
-
* @summary Update
|
|
17772
|
+
* @summary Update HospitalSpecialty.
|
|
17617
17773
|
* @param {string} hospitalId
|
|
17618
|
-
* @param {
|
|
17774
|
+
* @param {string} specialtyId
|
|
17775
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
17619
17776
|
* @param {*} [options] Override http request option.
|
|
17620
17777
|
* @throws {RequiredError}
|
|
17621
17778
|
*/
|
|
17622
|
-
|
|
17779
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17623
17780
|
/**
|
|
17624
17781
|
*
|
|
17625
17782
|
* @summary Get all HospitalServices.
|
|
17626
|
-
* @param {string}
|
|
17783
|
+
* @param {string} hospitalId
|
|
17784
|
+
* @param {string} specialtyId
|
|
17785
|
+
* @param {string} [hospitalName]
|
|
17786
|
+
* @param {string} [hospitalSlug]
|
|
17627
17787
|
* @param {string} [id]
|
|
17628
17788
|
* @param {string} [name]
|
|
17629
17789
|
* @param {string} [description]
|
|
17630
|
-
* @param {string} [
|
|
17631
|
-
* @param {string} [hospitalName]
|
|
17632
|
-
* @param {string} [hospitalSlug]
|
|
17633
|
-
* @param {string} [specialtyId]
|
|
17790
|
+
* @param {string} [specialtyName]
|
|
17634
17791
|
* @param {string} [specialtyTypeId]
|
|
17635
17792
|
* @param {string} [specialtyTypeName]
|
|
17793
|
+
* @param {string} [serviceCategoryId]
|
|
17636
17794
|
* @param {MarketingType} [marketingType]
|
|
17637
17795
|
* @param {Procedure} [procedure]
|
|
17638
17796
|
* @param {Date} [created]
|
|
@@ -17643,90 +17801,109 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17643
17801
|
* @param {*} [options] Override http request option.
|
|
17644
17802
|
* @throws {RequiredError}
|
|
17645
17803
|
*/
|
|
17646
|
-
|
|
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>;
|
|
17647
17805
|
/**
|
|
17648
17806
|
*
|
|
17649
17807
|
* @summary Create HospitalService.
|
|
17650
17808
|
* @param {string} hospitalId
|
|
17809
|
+
* @param {string} specialtyId
|
|
17651
17810
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
17652
17811
|
* @param {*} [options] Override http request option.
|
|
17653
17812
|
* @throws {RequiredError}
|
|
17654
17813
|
*/
|
|
17655
|
-
|
|
17814
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17656
17815
|
/**
|
|
17657
17816
|
*
|
|
17658
17817
|
* @summary Delete HospitalService
|
|
17659
17818
|
* @param {string} hospitalId
|
|
17819
|
+
* @param {string} specialtyId
|
|
17660
17820
|
* @param {string} serviceId
|
|
17661
17821
|
* @param {*} [options] Override http request option.
|
|
17662
17822
|
* @throws {RequiredError}
|
|
17663
17823
|
*/
|
|
17664
|
-
|
|
17824
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17665
17825
|
/**
|
|
17666
17826
|
*
|
|
17667
17827
|
* @summary Get HospitalService.
|
|
17668
17828
|
* @param {string} hospitalId
|
|
17829
|
+
* @param {string} specialtyId
|
|
17669
17830
|
* @param {string} serviceId
|
|
17670
17831
|
* @param {string} [languageCode]
|
|
17671
17832
|
* @param {*} [options] Override http request option.
|
|
17672
17833
|
* @throws {RequiredError}
|
|
17673
17834
|
*/
|
|
17674
|
-
|
|
17835
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17675
17836
|
/**
|
|
17676
17837
|
*
|
|
17677
|
-
* @summary
|
|
17838
|
+
* @summary Get all HospitalServiceMedias.
|
|
17678
17839
|
* @param {string} hospitalId
|
|
17840
|
+
* @param {string} specialtyId
|
|
17679
17841
|
* @param {string} serviceId
|
|
17680
|
-
* @param {
|
|
17842
|
+
* @param {string} [id]
|
|
17843
|
+
* @param {MediaType} [mediaType]
|
|
17844
|
+
* @param {number} [page]
|
|
17845
|
+
* @param {number} [limit]
|
|
17846
|
+
* @param {Date} [lastRetrieved]
|
|
17681
17847
|
* @param {*} [options] Override http request option.
|
|
17682
17848
|
* @throws {RequiredError}
|
|
17683
17849
|
*/
|
|
17684
|
-
|
|
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>;
|
|
17685
17851
|
/**
|
|
17686
17852
|
*
|
|
17687
|
-
* @summary
|
|
17853
|
+
* @summary Delete HospitalServiceMedia
|
|
17688
17854
|
* @param {string} hospitalId
|
|
17689
|
-
* @param {string}
|
|
17690
|
-
* @param {string}
|
|
17691
|
-
* @param {string}
|
|
17692
|
-
* @param {string} [specialtyName]
|
|
17693
|
-
* @param {string} [specialtyTypeId]
|
|
17694
|
-
* @param {MarketingType} [marketingType]
|
|
17695
|
-
* @param {Date} [created]
|
|
17696
|
-
* @param {number} [page]
|
|
17697
|
-
* @param {number} [limit]
|
|
17698
|
-
* @param {Date} [lastRetrieved]
|
|
17855
|
+
* @param {string} specialtyId
|
|
17856
|
+
* @param {string} serviceId
|
|
17857
|
+
* @param {string} mediaId
|
|
17699
17858
|
* @param {*} [options] Override http request option.
|
|
17700
17859
|
* @throws {RequiredError}
|
|
17701
17860
|
*/
|
|
17702
|
-
|
|
17861
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17703
17862
|
/**
|
|
17704
17863
|
*
|
|
17705
|
-
* @summary
|
|
17864
|
+
* @summary Get HospitalServiceMedia.
|
|
17706
17865
|
* @param {string} hospitalId
|
|
17707
|
-
* @param {
|
|
17866
|
+
* @param {string} specialtyId
|
|
17867
|
+
* @param {string} serviceId
|
|
17868
|
+
* @param {string} mediaId
|
|
17708
17869
|
* @param {*} [options] Override http request option.
|
|
17709
17870
|
* @throws {RequiredError}
|
|
17710
17871
|
*/
|
|
17711
|
-
|
|
17872
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17712
17873
|
/**
|
|
17713
17874
|
*
|
|
17714
|
-
* @summary
|
|
17875
|
+
* @summary Update HospitalServiceMedia.
|
|
17715
17876
|
* @param {string} hospitalId
|
|
17716
17877
|
* @param {string} specialtyId
|
|
17878
|
+
* @param {string} serviceId
|
|
17879
|
+
* @param {string} mediaId
|
|
17880
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
17717
17881
|
* @param {*} [options] Override http request option.
|
|
17718
17882
|
* @throws {RequiredError}
|
|
17719
17883
|
*/
|
|
17720
|
-
|
|
17884
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17721
17885
|
/**
|
|
17722
17886
|
*
|
|
17723
|
-
* @summary
|
|
17887
|
+
* @summary Create HospitalServiceMedia.
|
|
17888
|
+
* @param {string} hospitalId
|
|
17889
|
+
* @param {string} specialtyId
|
|
17890
|
+
* @param {string} serviceId
|
|
17891
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
17892
|
+
* @param {*} [options] Override http request option.
|
|
17893
|
+
* @throws {RequiredError}
|
|
17894
|
+
*/
|
|
17895
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17896
|
+
/**
|
|
17897
|
+
*
|
|
17898
|
+
* @summary Update HospitalService.
|
|
17724
17899
|
* @param {string} hospitalId
|
|
17725
17900
|
* @param {string} specialtyId
|
|
17901
|
+
* @param {string} serviceId
|
|
17902
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
17726
17903
|
* @param {*} [options] Override http request option.
|
|
17727
17904
|
* @throws {RequiredError}
|
|
17728
17905
|
*/
|
|
17729
|
-
|
|
17906
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17730
17907
|
/**
|
|
17731
17908
|
*
|
|
17732
17909
|
* @summary Create Hospital.
|
|
@@ -18040,19 +18217,75 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18040
18217
|
* @throws {RequiredError}
|
|
18041
18218
|
*/
|
|
18042
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>>;
|
|
18043
18275
|
/**
|
|
18044
18276
|
*
|
|
18045
18277
|
* @summary Get all HospitalServices.
|
|
18046
|
-
* @param {string}
|
|
18278
|
+
* @param {string} hospitalId
|
|
18279
|
+
* @param {string} specialtyId
|
|
18280
|
+
* @param {string} [hospitalName]
|
|
18281
|
+
* @param {string} [hospitalSlug]
|
|
18047
18282
|
* @param {string} [id]
|
|
18048
18283
|
* @param {string} [name]
|
|
18049
18284
|
* @param {string} [description]
|
|
18050
|
-
* @param {string} [
|
|
18051
|
-
* @param {string} [hospitalName]
|
|
18052
|
-
* @param {string} [hospitalSlug]
|
|
18053
|
-
* @param {string} [specialtyId]
|
|
18285
|
+
* @param {string} [specialtyName]
|
|
18054
18286
|
* @param {string} [specialtyTypeId]
|
|
18055
18287
|
* @param {string} [specialtyTypeName]
|
|
18288
|
+
* @param {string} [serviceCategoryId]
|
|
18056
18289
|
* @param {MarketingType} [marketingType]
|
|
18057
18290
|
* @param {Procedure} [procedure]
|
|
18058
18291
|
* @param {Date} [created]
|
|
@@ -18063,90 +18296,109 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18063
18296
|
* @param {*} [options] Override http request option.
|
|
18064
18297
|
* @throws {RequiredError}
|
|
18065
18298
|
*/
|
|
18066
|
-
|
|
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>>;
|
|
18067
18300
|
/**
|
|
18068
18301
|
*
|
|
18069
18302
|
* @summary Create HospitalService.
|
|
18070
18303
|
* @param {string} hospitalId
|
|
18304
|
+
* @param {string} specialtyId
|
|
18071
18305
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
18072
18306
|
* @param {*} [options] Override http request option.
|
|
18073
18307
|
* @throws {RequiredError}
|
|
18074
18308
|
*/
|
|
18075
|
-
|
|
18309
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
18076
18310
|
/**
|
|
18077
18311
|
*
|
|
18078
18312
|
* @summary Delete HospitalService
|
|
18079
18313
|
* @param {string} hospitalId
|
|
18314
|
+
* @param {string} specialtyId
|
|
18080
18315
|
* @param {string} serviceId
|
|
18081
18316
|
* @param {*} [options] Override http request option.
|
|
18082
18317
|
* @throws {RequiredError}
|
|
18083
18318
|
*/
|
|
18084
|
-
|
|
18319
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18085
18320
|
/**
|
|
18086
18321
|
*
|
|
18087
18322
|
* @summary Get HospitalService.
|
|
18088
18323
|
* @param {string} hospitalId
|
|
18324
|
+
* @param {string} specialtyId
|
|
18089
18325
|
* @param {string} serviceId
|
|
18090
18326
|
* @param {string} [languageCode]
|
|
18091
18327
|
* @param {*} [options] Override http request option.
|
|
18092
18328
|
* @throws {RequiredError}
|
|
18093
18329
|
*/
|
|
18094
|
-
|
|
18330
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
18095
18331
|
/**
|
|
18096
18332
|
*
|
|
18097
|
-
* @summary
|
|
18333
|
+
* @summary Get all HospitalServiceMedias.
|
|
18098
18334
|
* @param {string} hospitalId
|
|
18335
|
+
* @param {string} specialtyId
|
|
18099
18336
|
* @param {string} serviceId
|
|
18100
|
-
* @param {
|
|
18337
|
+
* @param {string} [id]
|
|
18338
|
+
* @param {MediaType} [mediaType]
|
|
18339
|
+
* @param {number} [page]
|
|
18340
|
+
* @param {number} [limit]
|
|
18341
|
+
* @param {Date} [lastRetrieved]
|
|
18101
18342
|
* @param {*} [options] Override http request option.
|
|
18102
18343
|
* @throws {RequiredError}
|
|
18103
18344
|
*/
|
|
18104
|
-
|
|
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>>;
|
|
18105
18346
|
/**
|
|
18106
18347
|
*
|
|
18107
|
-
* @summary
|
|
18348
|
+
* @summary Delete HospitalServiceMedia
|
|
18108
18349
|
* @param {string} hospitalId
|
|
18109
|
-
* @param {string}
|
|
18110
|
-
* @param {string}
|
|
18111
|
-
* @param {string}
|
|
18112
|
-
* @param {string} [specialtyName]
|
|
18113
|
-
* @param {string} [specialtyTypeId]
|
|
18114
|
-
* @param {MarketingType} [marketingType]
|
|
18115
|
-
* @param {Date} [created]
|
|
18116
|
-
* @param {number} [page]
|
|
18117
|
-
* @param {number} [limit]
|
|
18118
|
-
* @param {Date} [lastRetrieved]
|
|
18350
|
+
* @param {string} specialtyId
|
|
18351
|
+
* @param {string} serviceId
|
|
18352
|
+
* @param {string} mediaId
|
|
18119
18353
|
* @param {*} [options] Override http request option.
|
|
18120
18354
|
* @throws {RequiredError}
|
|
18121
18355
|
*/
|
|
18122
|
-
|
|
18356
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18123
18357
|
/**
|
|
18124
18358
|
*
|
|
18125
|
-
* @summary
|
|
18359
|
+
* @summary Get HospitalServiceMedia.
|
|
18126
18360
|
* @param {string} hospitalId
|
|
18127
|
-
* @param {
|
|
18361
|
+
* @param {string} specialtyId
|
|
18362
|
+
* @param {string} serviceId
|
|
18363
|
+
* @param {string} mediaId
|
|
18128
18364
|
* @param {*} [options] Override http request option.
|
|
18129
18365
|
* @throws {RequiredError}
|
|
18130
18366
|
*/
|
|
18131
|
-
|
|
18367
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
18132
18368
|
/**
|
|
18133
18369
|
*
|
|
18134
|
-
* @summary
|
|
18370
|
+
* @summary Update HospitalServiceMedia.
|
|
18135
18371
|
* @param {string} hospitalId
|
|
18136
18372
|
* @param {string} specialtyId
|
|
18373
|
+
* @param {string} serviceId
|
|
18374
|
+
* @param {string} mediaId
|
|
18375
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18137
18376
|
* @param {*} [options] Override http request option.
|
|
18138
18377
|
* @throws {RequiredError}
|
|
18139
18378
|
*/
|
|
18140
|
-
|
|
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>>;
|
|
18141
18380
|
/**
|
|
18142
18381
|
*
|
|
18143
|
-
* @summary
|
|
18382
|
+
* @summary Create HospitalServiceMedia.
|
|
18383
|
+
* @param {string} hospitalId
|
|
18384
|
+
* @param {string} specialtyId
|
|
18385
|
+
* @param {string} serviceId
|
|
18386
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
18387
|
+
* @param {*} [options] Override http request option.
|
|
18388
|
+
* @throws {RequiredError}
|
|
18389
|
+
*/
|
|
18390
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
18391
|
+
/**
|
|
18392
|
+
*
|
|
18393
|
+
* @summary Update HospitalService.
|
|
18144
18394
|
* @param {string} hospitalId
|
|
18145
18395
|
* @param {string} specialtyId
|
|
18396
|
+
* @param {string} serviceId
|
|
18397
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
18146
18398
|
* @param {*} [options] Override http request option.
|
|
18147
18399
|
* @throws {RequiredError}
|
|
18148
18400
|
*/
|
|
18149
|
-
|
|
18401
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18150
18402
|
/**
|
|
18151
18403
|
*
|
|
18152
18404
|
* @summary Create Hospital.
|
|
@@ -18446,33 +18698,89 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18446
18698
|
*
|
|
18447
18699
|
* @summary Create HospitalMedia.
|
|
18448
18700
|
* @param {string} hospitalId
|
|
18449
|
-
* @param {CreateMediaCommand} [createMediaCommand]
|
|
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.
|
|
18736
|
+
* @param {string} hospitalId
|
|
18737
|
+
* @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
|
|
18738
|
+
* @param {*} [options] Override http request option.
|
|
18739
|
+
* @throws {RequiredError}
|
|
18740
|
+
*/
|
|
18741
|
+
apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18742
|
+
/**
|
|
18743
|
+
*
|
|
18744
|
+
* @summary Delete HospitalSpecialty.
|
|
18745
|
+
* @param {string} hospitalId
|
|
18746
|
+
* @param {string} specialtyId
|
|
18747
|
+
* @param {*} [options] Override http request option.
|
|
18748
|
+
* @throws {RequiredError}
|
|
18749
|
+
*/
|
|
18750
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
|
|
18751
|
+
/**
|
|
18752
|
+
*
|
|
18753
|
+
* @summary Get HospitalSpecialty.
|
|
18754
|
+
* @param {string} hospitalId
|
|
18755
|
+
* @param {string} specialtyId
|
|
18450
18756
|
* @param {*} [options] Override http request option.
|
|
18451
18757
|
* @throws {RequiredError}
|
|
18452
18758
|
*/
|
|
18453
|
-
|
|
18759
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18454
18760
|
/**
|
|
18455
18761
|
*
|
|
18456
|
-
* @summary Update
|
|
18762
|
+
* @summary Update HospitalSpecialty.
|
|
18457
18763
|
* @param {string} hospitalId
|
|
18458
|
-
* @param {
|
|
18764
|
+
* @param {string} specialtyId
|
|
18765
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18459
18766
|
* @param {*} [options] Override http request option.
|
|
18460
18767
|
* @throws {RequiredError}
|
|
18461
18768
|
*/
|
|
18462
|
-
|
|
18769
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18463
18770
|
/**
|
|
18464
18771
|
*
|
|
18465
18772
|
* @summary Get all HospitalServices.
|
|
18466
|
-
* @param {string}
|
|
18773
|
+
* @param {string} hospitalId
|
|
18774
|
+
* @param {string} specialtyId
|
|
18775
|
+
* @param {string} [hospitalName]
|
|
18776
|
+
* @param {string} [hospitalSlug]
|
|
18467
18777
|
* @param {string} [id]
|
|
18468
18778
|
* @param {string} [name]
|
|
18469
18779
|
* @param {string} [description]
|
|
18470
|
-
* @param {string} [
|
|
18471
|
-
* @param {string} [hospitalName]
|
|
18472
|
-
* @param {string} [hospitalSlug]
|
|
18473
|
-
* @param {string} [specialtyId]
|
|
18780
|
+
* @param {string} [specialtyName]
|
|
18474
18781
|
* @param {string} [specialtyTypeId]
|
|
18475
18782
|
* @param {string} [specialtyTypeName]
|
|
18783
|
+
* @param {string} [serviceCategoryId]
|
|
18476
18784
|
* @param {MarketingType} [marketingType]
|
|
18477
18785
|
* @param {Procedure} [procedure]
|
|
18478
18786
|
* @param {Date} [created]
|
|
@@ -18483,90 +18791,109 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18483
18791
|
* @param {*} [options] Override http request option.
|
|
18484
18792
|
* @throws {RequiredError}
|
|
18485
18793
|
*/
|
|
18486
|
-
|
|
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>;
|
|
18487
18795
|
/**
|
|
18488
18796
|
*
|
|
18489
18797
|
* @summary Create HospitalService.
|
|
18490
18798
|
* @param {string} hospitalId
|
|
18799
|
+
* @param {string} specialtyId
|
|
18491
18800
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
18492
18801
|
* @param {*} [options] Override http request option.
|
|
18493
18802
|
* @throws {RequiredError}
|
|
18494
18803
|
*/
|
|
18495
|
-
|
|
18804
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
18496
18805
|
/**
|
|
18497
18806
|
*
|
|
18498
18807
|
* @summary Delete HospitalService
|
|
18499
18808
|
* @param {string} hospitalId
|
|
18809
|
+
* @param {string} specialtyId
|
|
18500
18810
|
* @param {string} serviceId
|
|
18501
18811
|
* @param {*} [options] Override http request option.
|
|
18502
18812
|
* @throws {RequiredError}
|
|
18503
18813
|
*/
|
|
18504
|
-
|
|
18814
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
|
|
18505
18815
|
/**
|
|
18506
18816
|
*
|
|
18507
18817
|
* @summary Get HospitalService.
|
|
18508
18818
|
* @param {string} hospitalId
|
|
18819
|
+
* @param {string} specialtyId
|
|
18509
18820
|
* @param {string} serviceId
|
|
18510
18821
|
* @param {string} [languageCode]
|
|
18511
18822
|
* @param {*} [options] Override http request option.
|
|
18512
18823
|
* @throws {RequiredError}
|
|
18513
18824
|
*/
|
|
18514
|
-
|
|
18825
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
18515
18826
|
/**
|
|
18516
18827
|
*
|
|
18517
|
-
* @summary
|
|
18828
|
+
* @summary Get all HospitalServiceMedias.
|
|
18518
18829
|
* @param {string} hospitalId
|
|
18830
|
+
* @param {string} specialtyId
|
|
18519
18831
|
* @param {string} serviceId
|
|
18520
|
-
* @param {
|
|
18832
|
+
* @param {string} [id]
|
|
18833
|
+
* @param {MediaType} [mediaType]
|
|
18834
|
+
* @param {number} [page]
|
|
18835
|
+
* @param {number} [limit]
|
|
18836
|
+
* @param {Date} [lastRetrieved]
|
|
18521
18837
|
* @param {*} [options] Override http request option.
|
|
18522
18838
|
* @throws {RequiredError}
|
|
18523
18839
|
*/
|
|
18524
|
-
|
|
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>;
|
|
18525
18841
|
/**
|
|
18526
18842
|
*
|
|
18527
|
-
* @summary
|
|
18843
|
+
* @summary Delete HospitalServiceMedia
|
|
18528
18844
|
* @param {string} hospitalId
|
|
18529
|
-
* @param {string}
|
|
18530
|
-
* @param {string}
|
|
18531
|
-
* @param {string}
|
|
18532
|
-
* @param {string} [specialtyName]
|
|
18533
|
-
* @param {string} [specialtyTypeId]
|
|
18534
|
-
* @param {MarketingType} [marketingType]
|
|
18535
|
-
* @param {Date} [created]
|
|
18536
|
-
* @param {number} [page]
|
|
18537
|
-
* @param {number} [limit]
|
|
18538
|
-
* @param {Date} [lastRetrieved]
|
|
18845
|
+
* @param {string} specialtyId
|
|
18846
|
+
* @param {string} serviceId
|
|
18847
|
+
* @param {string} mediaId
|
|
18539
18848
|
* @param {*} [options] Override http request option.
|
|
18540
18849
|
* @throws {RequiredError}
|
|
18541
18850
|
*/
|
|
18542
|
-
|
|
18851
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
18543
18852
|
/**
|
|
18544
18853
|
*
|
|
18545
|
-
* @summary
|
|
18854
|
+
* @summary Get HospitalServiceMedia.
|
|
18546
18855
|
* @param {string} hospitalId
|
|
18547
|
-
* @param {
|
|
18856
|
+
* @param {string} specialtyId
|
|
18857
|
+
* @param {string} serviceId
|
|
18858
|
+
* @param {string} mediaId
|
|
18548
18859
|
* @param {*} [options] Override http request option.
|
|
18549
18860
|
* @throws {RequiredError}
|
|
18550
18861
|
*/
|
|
18551
|
-
|
|
18862
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
18552
18863
|
/**
|
|
18553
18864
|
*
|
|
18554
|
-
* @summary
|
|
18865
|
+
* @summary Update HospitalServiceMedia.
|
|
18555
18866
|
* @param {string} hospitalId
|
|
18556
18867
|
* @param {string} specialtyId
|
|
18868
|
+
* @param {string} serviceId
|
|
18869
|
+
* @param {string} mediaId
|
|
18870
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
18557
18871
|
* @param {*} [options] Override http request option.
|
|
18558
18872
|
* @throws {RequiredError}
|
|
18559
18873
|
*/
|
|
18560
|
-
|
|
18874
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
18561
18875
|
/**
|
|
18562
18876
|
*
|
|
18563
|
-
* @summary
|
|
18877
|
+
* @summary Create HospitalServiceMedia.
|
|
18564
18878
|
* @param {string} hospitalId
|
|
18565
18879
|
* @param {string} specialtyId
|
|
18880
|
+
* @param {string} serviceId
|
|
18881
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
18566
18882
|
* @param {*} [options] Override http request option.
|
|
18567
18883
|
* @throws {RequiredError}
|
|
18568
18884
|
*/
|
|
18569
|
-
|
|
18885
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
18886
|
+
/**
|
|
18887
|
+
*
|
|
18888
|
+
* @summary Update HospitalService.
|
|
18889
|
+
* @param {string} hospitalId
|
|
18890
|
+
* @param {string} specialtyId
|
|
18891
|
+
* @param {string} serviceId
|
|
18892
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
18893
|
+
* @param {*} [options] Override http request option.
|
|
18894
|
+
* @throws {RequiredError}
|
|
18895
|
+
*/
|
|
18896
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
18570
18897
|
/**
|
|
18571
18898
|
*
|
|
18572
18899
|
* @summary Create Hospital.
|
|
@@ -18909,19 +19236,80 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18909
19236
|
* @memberof HospitalsApi
|
|
18910
19237
|
*/
|
|
18911
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>>;
|
|
18912
19299
|
/**
|
|
18913
19300
|
*
|
|
18914
19301
|
* @summary Get all HospitalServices.
|
|
18915
|
-
* @param {string}
|
|
19302
|
+
* @param {string} hospitalId
|
|
19303
|
+
* @param {string} specialtyId
|
|
19304
|
+
* @param {string} [hospitalName]
|
|
19305
|
+
* @param {string} [hospitalSlug]
|
|
18916
19306
|
* @param {string} [id]
|
|
18917
19307
|
* @param {string} [name]
|
|
18918
19308
|
* @param {string} [description]
|
|
18919
|
-
* @param {string} [
|
|
18920
|
-
* @param {string} [hospitalName]
|
|
18921
|
-
* @param {string} [hospitalSlug]
|
|
18922
|
-
* @param {string} [specialtyId]
|
|
19309
|
+
* @param {string} [specialtyName]
|
|
18923
19310
|
* @param {string} [specialtyTypeId]
|
|
18924
19311
|
* @param {string} [specialtyTypeName]
|
|
19312
|
+
* @param {string} [serviceCategoryId]
|
|
18925
19313
|
* @param {MarketingType} [marketingType]
|
|
18926
19314
|
* @param {Procedure} [procedure]
|
|
18927
19315
|
* @param {Date} [created]
|
|
@@ -18933,98 +19321,118 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18933
19321
|
* @throws {RequiredError}
|
|
18934
19322
|
* @memberof HospitalsApi
|
|
18935
19323
|
*/
|
|
18936
|
-
|
|
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>>;
|
|
18937
19325
|
/**
|
|
18938
19326
|
*
|
|
18939
19327
|
* @summary Create HospitalService.
|
|
18940
19328
|
* @param {string} hospitalId
|
|
19329
|
+
* @param {string} specialtyId
|
|
18941
19330
|
* @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
|
|
18942
19331
|
* @param {*} [options] Override http request option.
|
|
18943
19332
|
* @throws {RequiredError}
|
|
18944
19333
|
* @memberof HospitalsApi
|
|
18945
19334
|
*/
|
|
18946
|
-
|
|
19335
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
18947
19336
|
/**
|
|
18948
19337
|
*
|
|
18949
19338
|
* @summary Delete HospitalService
|
|
18950
19339
|
* @param {string} hospitalId
|
|
19340
|
+
* @param {string} specialtyId
|
|
18951
19341
|
* @param {string} serviceId
|
|
18952
19342
|
* @param {*} [options] Override http request option.
|
|
18953
19343
|
* @throws {RequiredError}
|
|
18954
19344
|
* @memberof HospitalsApi
|
|
18955
19345
|
*/
|
|
18956
|
-
|
|
19346
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
18957
19347
|
/**
|
|
18958
19348
|
*
|
|
18959
19349
|
* @summary Get HospitalService.
|
|
18960
19350
|
* @param {string} hospitalId
|
|
19351
|
+
* @param {string} specialtyId
|
|
18961
19352
|
* @param {string} serviceId
|
|
18962
19353
|
* @param {string} [languageCode]
|
|
18963
19354
|
* @param {*} [options] Override http request option.
|
|
18964
19355
|
* @throws {RequiredError}
|
|
18965
19356
|
* @memberof HospitalsApi
|
|
18966
19357
|
*/
|
|
18967
|
-
|
|
19358
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
18968
19359
|
/**
|
|
18969
19360
|
*
|
|
18970
|
-
* @summary
|
|
19361
|
+
* @summary Get all HospitalServiceMedias.
|
|
18971
19362
|
* @param {string} hospitalId
|
|
19363
|
+
* @param {string} specialtyId
|
|
18972
19364
|
* @param {string} serviceId
|
|
18973
|
-
* @param {
|
|
19365
|
+
* @param {string} [id]
|
|
19366
|
+
* @param {MediaType} [mediaType]
|
|
19367
|
+
* @param {number} [page]
|
|
19368
|
+
* @param {number} [limit]
|
|
19369
|
+
* @param {Date} [lastRetrieved]
|
|
18974
19370
|
* @param {*} [options] Override http request option.
|
|
18975
19371
|
* @throws {RequiredError}
|
|
18976
19372
|
* @memberof HospitalsApi
|
|
18977
19373
|
*/
|
|
18978
|
-
|
|
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>>;
|
|
18979
19375
|
/**
|
|
18980
19376
|
*
|
|
18981
|
-
* @summary
|
|
19377
|
+
* @summary Delete HospitalServiceMedia
|
|
18982
19378
|
* @param {string} hospitalId
|
|
18983
|
-
* @param {string}
|
|
18984
|
-
* @param {string}
|
|
18985
|
-
* @param {string}
|
|
18986
|
-
* @param {string} [specialtyName]
|
|
18987
|
-
* @param {string} [specialtyTypeId]
|
|
18988
|
-
* @param {MarketingType} [marketingType]
|
|
18989
|
-
* @param {Date} [created]
|
|
18990
|
-
* @param {number} [page]
|
|
18991
|
-
* @param {number} [limit]
|
|
18992
|
-
* @param {Date} [lastRetrieved]
|
|
19379
|
+
* @param {string} specialtyId
|
|
19380
|
+
* @param {string} serviceId
|
|
19381
|
+
* @param {string} mediaId
|
|
18993
19382
|
* @param {*} [options] Override http request option.
|
|
18994
19383
|
* @throws {RequiredError}
|
|
18995
19384
|
* @memberof HospitalsApi
|
|
18996
19385
|
*/
|
|
18997
|
-
|
|
19386
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
18998
19387
|
/**
|
|
18999
19388
|
*
|
|
19000
|
-
* @summary
|
|
19389
|
+
* @summary Get HospitalServiceMedia.
|
|
19001
19390
|
* @param {string} hospitalId
|
|
19002
|
-
* @param {
|
|
19391
|
+
* @param {string} specialtyId
|
|
19392
|
+
* @param {string} serviceId
|
|
19393
|
+
* @param {string} mediaId
|
|
19003
19394
|
* @param {*} [options] Override http request option.
|
|
19004
19395
|
* @throws {RequiredError}
|
|
19005
19396
|
* @memberof HospitalsApi
|
|
19006
19397
|
*/
|
|
19007
|
-
|
|
19398
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19008
19399
|
/**
|
|
19009
19400
|
*
|
|
19010
|
-
* @summary
|
|
19401
|
+
* @summary Update HospitalServiceMedia.
|
|
19011
19402
|
* @param {string} hospitalId
|
|
19012
19403
|
* @param {string} specialtyId
|
|
19404
|
+
* @param {string} serviceId
|
|
19405
|
+
* @param {string} mediaId
|
|
19406
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
19013
19407
|
* @param {*} [options] Override http request option.
|
|
19014
19408
|
* @throws {RequiredError}
|
|
19015
19409
|
* @memberof HospitalsApi
|
|
19016
19410
|
*/
|
|
19017
|
-
|
|
19411
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19018
19412
|
/**
|
|
19019
19413
|
*
|
|
19020
|
-
* @summary
|
|
19414
|
+
* @summary Create HospitalServiceMedia.
|
|
19021
19415
|
* @param {string} hospitalId
|
|
19022
19416
|
* @param {string} specialtyId
|
|
19417
|
+
* @param {string} serviceId
|
|
19418
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
19023
19419
|
* @param {*} [options] Override http request option.
|
|
19024
19420
|
* @throws {RequiredError}
|
|
19025
19421
|
* @memberof HospitalsApi
|
|
19026
19422
|
*/
|
|
19027
|
-
|
|
19423
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19424
|
+
/**
|
|
19425
|
+
*
|
|
19426
|
+
* @summary Update HospitalService.
|
|
19427
|
+
* @param {string} hospitalId
|
|
19428
|
+
* @param {string} specialtyId
|
|
19429
|
+
* @param {string} serviceId
|
|
19430
|
+
* @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
|
|
19431
|
+
* @param {*} [options] Override http request option.
|
|
19432
|
+
* @throws {RequiredError}
|
|
19433
|
+
* @memberof HospitalsApi
|
|
19434
|
+
*/
|
|
19435
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19028
19436
|
/**
|
|
19029
19437
|
*
|
|
19030
19438
|
* @summary Create Hospital.
|
|
@@ -19359,17 +19767,19 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
19359
19767
|
*/
|
|
19360
19768
|
export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
19361
19769
|
/**
|
|
19362
|
-
*
|
|
19363
|
-
* @summary Get all
|
|
19364
|
-
* @param {string} [id]
|
|
19365
|
-
* @param {string} [name]
|
|
19366
|
-
* @param {string} [description]
|
|
19770
|
+
*
|
|
19771
|
+
* @summary Get all HospitalServices.
|
|
19367
19772
|
* @param {string} [hospitalId]
|
|
19368
19773
|
* @param {string} [hospitalName]
|
|
19369
19774
|
* @param {string} [hospitalSlug]
|
|
19775
|
+
* @param {string} [id]
|
|
19776
|
+
* @param {string} [name]
|
|
19777
|
+
* @param {string} [description]
|
|
19370
19778
|
* @param {string} [specialtyId]
|
|
19779
|
+
* @param {string} [specialtyName]
|
|
19371
19780
|
* @param {string} [specialtyTypeId]
|
|
19372
19781
|
* @param {string} [specialtyTypeName]
|
|
19782
|
+
* @param {string} [serviceCategoryId]
|
|
19373
19783
|
* @param {MarketingType} [marketingType]
|
|
19374
19784
|
* @param {Procedure} [procedure]
|
|
19375
19785
|
* @param {Date} [created]
|
|
@@ -19380,10 +19790,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
19380
19790
|
* @param {*} [options] Override http request option.
|
|
19381
19791
|
* @throws {RequiredError}
|
|
19382
19792
|
*/
|
|
19383
|
-
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>;
|
|
19384
19803
|
/**
|
|
19385
19804
|
*
|
|
19386
|
-
* @summary Get
|
|
19805
|
+
* @summary Get HospitalService by slug.
|
|
19387
19806
|
* @param {string} slug
|
|
19388
19807
|
* @param {string} [languageCode]
|
|
19389
19808
|
* @param {*} [options] Override http request option.
|
|
@@ -19397,17 +19816,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
19397
19816
|
*/
|
|
19398
19817
|
export declare const ServicesApiFp: (configuration?: Configuration | undefined) => {
|
|
19399
19818
|
/**
|
|
19400
|
-
*
|
|
19401
|
-
* @summary Get all
|
|
19402
|
-
* @param {string} [id]
|
|
19403
|
-
* @param {string} [name]
|
|
19404
|
-
* @param {string} [description]
|
|
19819
|
+
*
|
|
19820
|
+
* @summary Get all HospitalServices.
|
|
19405
19821
|
* @param {string} [hospitalId]
|
|
19406
19822
|
* @param {string} [hospitalName]
|
|
19407
19823
|
* @param {string} [hospitalSlug]
|
|
19824
|
+
* @param {string} [id]
|
|
19825
|
+
* @param {string} [name]
|
|
19826
|
+
* @param {string} [description]
|
|
19408
19827
|
* @param {string} [specialtyId]
|
|
19828
|
+
* @param {string} [specialtyName]
|
|
19409
19829
|
* @param {string} [specialtyTypeId]
|
|
19410
19830
|
* @param {string} [specialtyTypeName]
|
|
19831
|
+
* @param {string} [serviceCategoryId]
|
|
19411
19832
|
* @param {MarketingType} [marketingType]
|
|
19412
19833
|
* @param {Procedure} [procedure]
|
|
19413
19834
|
* @param {Date} [created]
|
|
@@ -19418,16 +19839,25 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
19418
19839
|
* @param {*} [options] Override http request option.
|
|
19419
19840
|
* @throws {RequiredError}
|
|
19420
19841
|
*/
|
|
19421
|
-
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>>;
|
|
19422
19852
|
/**
|
|
19423
19853
|
*
|
|
19424
|
-
* @summary Get
|
|
19854
|
+
* @summary Get HospitalService by slug.
|
|
19425
19855
|
* @param {string} slug
|
|
19426
19856
|
* @param {string} [languageCode]
|
|
19427
19857
|
* @param {*} [options] Override http request option.
|
|
19428
19858
|
* @throws {RequiredError}
|
|
19429
19859
|
*/
|
|
19430
|
-
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>>;
|
|
19431
19861
|
};
|
|
19432
19862
|
/**
|
|
19433
19863
|
* ServicesApi - factory interface
|
|
@@ -19435,17 +19865,19 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
19435
19865
|
*/
|
|
19436
19866
|
export declare const ServicesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
19437
19867
|
/**
|
|
19438
|
-
*
|
|
19439
|
-
* @summary Get all
|
|
19440
|
-
* @param {string} [id]
|
|
19441
|
-
* @param {string} [name]
|
|
19442
|
-
* @param {string} [description]
|
|
19868
|
+
*
|
|
19869
|
+
* @summary Get all HospitalServices.
|
|
19443
19870
|
* @param {string} [hospitalId]
|
|
19444
19871
|
* @param {string} [hospitalName]
|
|
19445
19872
|
* @param {string} [hospitalSlug]
|
|
19873
|
+
* @param {string} [id]
|
|
19874
|
+
* @param {string} [name]
|
|
19875
|
+
* @param {string} [description]
|
|
19446
19876
|
* @param {string} [specialtyId]
|
|
19877
|
+
* @param {string} [specialtyName]
|
|
19447
19878
|
* @param {string} [specialtyTypeId]
|
|
19448
19879
|
* @param {string} [specialtyTypeName]
|
|
19880
|
+
* @param {string} [serviceCategoryId]
|
|
19449
19881
|
* @param {MarketingType} [marketingType]
|
|
19450
19882
|
* @param {Procedure} [procedure]
|
|
19451
19883
|
* @param {Date} [created]
|
|
@@ -19456,16 +19888,25 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
19456
19888
|
* @param {*} [options] Override http request option.
|
|
19457
19889
|
* @throws {RequiredError}
|
|
19458
19890
|
*/
|
|
19459
|
-
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>;
|
|
19460
19901
|
/**
|
|
19461
19902
|
*
|
|
19462
|
-
* @summary Get
|
|
19903
|
+
* @summary Get HospitalService by slug.
|
|
19463
19904
|
* @param {string} slug
|
|
19464
19905
|
* @param {string} [languageCode]
|
|
19465
19906
|
* @param {*} [options] Override http request option.
|
|
19466
19907
|
* @throws {RequiredError}
|
|
19467
19908
|
*/
|
|
19468
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<
|
|
19909
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19469
19910
|
};
|
|
19470
19911
|
/**
|
|
19471
19912
|
* ServicesApi - object-oriented interface
|
|
@@ -19475,17 +19916,19 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
19475
19916
|
*/
|
|
19476
19917
|
export declare class ServicesApi extends BaseAPI {
|
|
19477
19918
|
/**
|
|
19478
|
-
*
|
|
19479
|
-
* @summary Get all
|
|
19480
|
-
* @param {string} [id]
|
|
19481
|
-
* @param {string} [name]
|
|
19482
|
-
* @param {string} [description]
|
|
19919
|
+
*
|
|
19920
|
+
* @summary Get all HospitalServices.
|
|
19483
19921
|
* @param {string} [hospitalId]
|
|
19484
19922
|
* @param {string} [hospitalName]
|
|
19485
19923
|
* @param {string} [hospitalSlug]
|
|
19924
|
+
* @param {string} [id]
|
|
19925
|
+
* @param {string} [name]
|
|
19926
|
+
* @param {string} [description]
|
|
19486
19927
|
* @param {string} [specialtyId]
|
|
19928
|
+
* @param {string} [specialtyName]
|
|
19487
19929
|
* @param {string} [specialtyTypeId]
|
|
19488
19930
|
* @param {string} [specialtyTypeName]
|
|
19931
|
+
* @param {string} [serviceCategoryId]
|
|
19489
19932
|
* @param {MarketingType} [marketingType]
|
|
19490
19933
|
* @param {Procedure} [procedure]
|
|
19491
19934
|
* @param {Date} [created]
|
|
@@ -19497,17 +19940,27 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
19497
19940
|
* @throws {RequiredError}
|
|
19498
19941
|
* @memberof ServicesApi
|
|
19499
19942
|
*/
|
|
19500
|
-
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>>;
|
|
19501
19954
|
/**
|
|
19502
19955
|
*
|
|
19503
|
-
* @summary Get
|
|
19956
|
+
* @summary Get HospitalService by slug.
|
|
19504
19957
|
* @param {string} slug
|
|
19505
19958
|
* @param {string} [languageCode]
|
|
19506
19959
|
* @param {*} [options] Override http request option.
|
|
19507
19960
|
* @throws {RequiredError}
|
|
19508
19961
|
* @memberof ServicesApi
|
|
19509
19962
|
*/
|
|
19510
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19963
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
19511
19964
|
}
|
|
19512
19965
|
/**
|
|
19513
19966
|
* ServicesCategoriesApi - axios parameter creator
|