ch-admin-api-client-typescript 2.1.6 → 2.2.1

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.
Files changed (5) hide show
  1. package/lib/api.d.ts +1134 -493
  2. package/lib/api.d.ts.map +1 -1
  3. package/lib/api.js +6069 -4582
  4. package/package.json +1 -1
  5. package/src/api.ts +3929 -2623
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
  *
@@ -1686,6 +1680,86 @@ export declare enum ChargeStatus {
1686
1680
  Succeeded = "Succeeded",
1687
1681
  Failed = "Failed"
1688
1682
  }
1683
+ /**
1684
+ *
1685
+ * @export
1686
+ * @interface ChatUserModel
1687
+ */
1688
+ export interface ChatUserModel {
1689
+ /**
1690
+ *
1691
+ * @type {string}
1692
+ * @memberof ChatUserModel
1693
+ */
1694
+ 'id'?: string | null;
1695
+ /**
1696
+ *
1697
+ * @type {string}
1698
+ * @memberof ChatUserModel
1699
+ */
1700
+ 'nickname'?: string | null;
1701
+ /**
1702
+ *
1703
+ * @type {string}
1704
+ * @memberof ChatUserModel
1705
+ */
1706
+ 'profileUrl'?: string | null;
1707
+ /**
1708
+ *
1709
+ * @type {string}
1710
+ * @memberof ChatUserModel
1711
+ */
1712
+ 'accessToken'?: string | null;
1713
+ /**
1714
+ *
1715
+ * @type {number}
1716
+ * @memberof ChatUserModel
1717
+ */
1718
+ 'isActive'?: number;
1719
+ /**
1720
+ *
1721
+ * @type {number}
1722
+ * @memberof ChatUserModel
1723
+ */
1724
+ 'isOnline'?: number;
1725
+ /**
1726
+ *
1727
+ * @type {Array<string>}
1728
+ * @memberof ChatUserModel
1729
+ */
1730
+ 'discoveryKeys'?: Array<string> | null;
1731
+ /**
1732
+ *
1733
+ * @type {Date}
1734
+ * @memberof ChatUserModel
1735
+ */
1736
+ 'createdAt'?: Date | null;
1737
+ /**
1738
+ *
1739
+ * @type {Date}
1740
+ * @memberof ChatUserModel
1741
+ */
1742
+ 'lastSeenAt'?: Date | null;
1743
+ }
1744
+ /**
1745
+ *
1746
+ * @export
1747
+ * @interface ChatUsersModel
1748
+ */
1749
+ export interface ChatUsersModel {
1750
+ /**
1751
+ *
1752
+ * @type {Array<ChatUserModel>}
1753
+ * @memberof ChatUsersModel
1754
+ */
1755
+ 'users'?: Array<ChatUserModel> | null;
1756
+ /**
1757
+ *
1758
+ * @type {string}
1759
+ * @memberof ChatUsersModel
1760
+ */
1761
+ 'next'?: string | null;
1762
+ }
1689
1763
  /**
1690
1764
  *
1691
1765
  * @export
@@ -1705,6 +1779,37 @@ export interface CheckNotificationsCommand {
1705
1779
  */
1706
1780
  'isDelete'?: boolean;
1707
1781
  }
1782
+ /**
1783
+ *
1784
+ * @export
1785
+ * @interface CommunicationUserTokenModel
1786
+ */
1787
+ export interface CommunicationUserTokenModel {
1788
+ /**
1789
+ *
1790
+ * @type {string}
1791
+ * @memberof CommunicationUserTokenModel
1792
+ */
1793
+ 'token'?: string | null;
1794
+ /**
1795
+ *
1796
+ * @type {Date}
1797
+ * @memberof CommunicationUserTokenModel
1798
+ */
1799
+ 'expiresOn'?: Date;
1800
+ /**
1801
+ *
1802
+ * @type {string}
1803
+ * @memberof CommunicationUserTokenModel
1804
+ */
1805
+ 'communicationUserId'?: string | null;
1806
+ /**
1807
+ *
1808
+ * @type {string}
1809
+ * @memberof CommunicationUserTokenModel
1810
+ */
1811
+ 'gateway'?: string | null;
1812
+ }
1708
1813
  /**
1709
1814
  *
1710
1815
  * @export
@@ -3196,6 +3301,43 @@ export interface CreateArticleSourceCommand {
3196
3301
  */
3197
3302
  'order'?: number;
3198
3303
  }
3304
+ /**
3305
+ *
3306
+ * @export
3307
+ * @interface CreateChatUserCommand
3308
+ */
3309
+ export interface CreateChatUserCommand {
3310
+ /**
3311
+ *
3312
+ * @type {string}
3313
+ * @memberof CreateChatUserCommand
3314
+ */
3315
+ 'userId'?: string;
3316
+ /**
3317
+ *
3318
+ * @type {string}
3319
+ * @memberof CreateChatUserCommand
3320
+ */
3321
+ 'nickname'?: string | null;
3322
+ /**
3323
+ *
3324
+ * @type {string}
3325
+ * @memberof CreateChatUserCommand
3326
+ */
3327
+ 'profileUrl'?: string | null;
3328
+ /**
3329
+ *
3330
+ * @type {boolean}
3331
+ * @memberof CreateChatUserCommand
3332
+ */
3333
+ 'issueAccessToken'?: boolean;
3334
+ /**
3335
+ *
3336
+ * @type {Array<string>}
3337
+ * @memberof CreateChatUserCommand
3338
+ */
3339
+ 'discoveryKeys'?: Array<string> | null;
3340
+ }
3199
3341
  /**
3200
3342
  *
3201
3343
  * @export
@@ -7759,6 +7901,18 @@ export interface HospitalServiceItemModel {
7759
7901
  * @memberof HospitalServiceItemModel
7760
7902
  */
7761
7903
  'specialtyName'?: string | null;
7904
+ /**
7905
+ *
7906
+ * @type {string}
7907
+ * @memberof HospitalServiceItemModel
7908
+ */
7909
+ 'serviceCategoryId'?: string;
7910
+ /**
7911
+ *
7912
+ * @type {string}
7913
+ * @memberof HospitalServiceItemModel
7914
+ */
7915
+ 'serviceCategoryName'?: string | null;
7762
7916
  /**
7763
7917
  *
7764
7918
  * @type {MarketingType}
@@ -7880,6 +8034,18 @@ export interface HospitalServiceModel {
7880
8034
  * @memberof HospitalServiceModel
7881
8035
  */
7882
8036
  'specialtyName'?: string | null;
8037
+ /**
8038
+ *
8039
+ * @type {string}
8040
+ * @memberof HospitalServiceModel
8041
+ */
8042
+ 'serviceCategoryId'?: string;
8043
+ /**
8044
+ *
8045
+ * @type {string}
8046
+ * @memberof HospitalServiceModel
8047
+ */
8048
+ 'serviceCategoryName'?: string | null;
7883
8049
  /**
7884
8050
  *
7885
8051
  * @type {MarketingType}
@@ -8058,6 +8224,12 @@ export interface HospitalSpecialtyItemModel {
8058
8224
  * @memberof HospitalSpecialtyItemModel
8059
8225
  */
8060
8226
  'specialtyTypeName'?: string | null;
8227
+ /**
8228
+ *
8229
+ * @type {MarketingType}
8230
+ * @memberof HospitalSpecialtyItemModel
8231
+ */
8232
+ 'marketingType'?: MarketingType;
8061
8233
  /**
8062
8234
  *
8063
8235
  * @type {number}
@@ -8113,6 +8285,12 @@ export interface HospitalSpecialtyModel {
8113
8285
  * @memberof HospitalSpecialtyModel
8114
8286
  */
8115
8287
  'specialtyTypeName'?: string | null;
8288
+ /**
8289
+ *
8290
+ * @type {MarketingType}
8291
+ * @memberof HospitalSpecialtyModel
8292
+ */
8293
+ 'marketingType'?: MarketingType;
8116
8294
  /**
8117
8295
  *
8118
8296
  * @type {number}
@@ -9785,6 +9963,12 @@ export interface Service {
9785
9963
  * @memberof Service
9786
9964
  */
9787
9965
  'serviceCategoryId'?: string | null;
9966
+ /**
9967
+ *
9968
+ * @type {ServiceCategory}
9969
+ * @memberof Service
9970
+ */
9971
+ 'serviceCategory'?: ServiceCategory;
9788
9972
  /**
9789
9973
  *
9790
9974
  * @type {number}
@@ -9841,6 +10025,55 @@ export interface ServiceCategoriesModel {
9841
10025
  */
9842
10026
  'metaData'?: PagedListMetaData;
9843
10027
  }
10028
+ /**
10029
+ *
10030
+ * @export
10031
+ * @interface ServiceCategory
10032
+ */
10033
+ export interface ServiceCategory {
10034
+ /**
10035
+ *
10036
+ * @type {string}
10037
+ * @memberof ServiceCategory
10038
+ */
10039
+ 'id'?: string;
10040
+ /**
10041
+ *
10042
+ * @type {string}
10043
+ * @memberof ServiceCategory
10044
+ */
10045
+ 'name'?: string | null;
10046
+ /**
10047
+ *
10048
+ * @type {string}
10049
+ * @memberof ServiceCategory
10050
+ */
10051
+ 'normalizedName'?: string | null;
10052
+ /**
10053
+ *
10054
+ * @type {string}
10055
+ * @memberof ServiceCategory
10056
+ */
10057
+ 'description'?: string | null;
10058
+ /**
10059
+ *
10060
+ * @type {string}
10061
+ * @memberof ServiceCategory
10062
+ */
10063
+ 'normalizedDescription'?: string | null;
10064
+ /**
10065
+ *
10066
+ * @type {number}
10067
+ * @memberof ServiceCategory
10068
+ */
10069
+ 'order'?: number;
10070
+ /**
10071
+ *
10072
+ * @type {Array<Service>}
10073
+ * @memberof ServiceCategory
10074
+ */
10075
+ 'services'?: Array<Service> | null;
10076
+ }
9844
10077
  /**
9845
10078
  *
9846
10079
  * @export
@@ -9885,10 +10118,10 @@ export interface ServiceCategoryItemModel {
9885
10118
  'serviceCount'?: number;
9886
10119
  /**
9887
10120
  *
9888
- * @type {Array<ServiceItemModel>}
10121
+ * @type {Array<HospitalServiceItemModel>}
9889
10122
  * @memberof ServiceCategoryItemModel
9890
10123
  */
9891
- 'services'?: Array<ServiceItemModel> | null;
10124
+ 'services'?: Array<HospitalServiceItemModel> | null;
9892
10125
  }
9893
10126
  /**
9894
10127
  *
@@ -9934,373 +10167,112 @@ export interface ServiceCategoryModel {
9934
10167
  'serviceCount'?: number;
9935
10168
  /**
9936
10169
  *
9937
- * @type {Array<ServiceItemModel>}
10170
+ * @type {Array<HospitalServiceItemModel>}
9938
10171
  * @memberof ServiceCategoryModel
9939
10172
  */
9940
- 'services'?: Array<ServiceItemModel> | null;
10173
+ 'services'?: Array<HospitalServiceItemModel> | null;
9941
10174
  }
9942
10175
  /**
9943
10176
  *
9944
10177
  * @export
9945
- * @interface ServiceItemModel
10178
+ * @interface SnsHandle
9946
10179
  */
9947
- export interface ServiceItemModel {
10180
+ export interface SnsHandle {
9948
10181
  /**
9949
10182
  *
9950
10183
  * @type {string}
9951
- * @memberof ServiceItemModel
10184
+ * @memberof SnsHandle
9952
10185
  */
9953
10186
  'id'?: string;
9954
10187
  /**
9955
10188
  *
9956
- * @type {string}
9957
- * @memberof ServiceItemModel
10189
+ * @type {SnsType}
10190
+ * @memberof SnsHandle
9958
10191
  */
9959
- 'name'?: string | null;
10192
+ 'snsType'?: SnsType;
9960
10193
  /**
9961
10194
  *
9962
10195
  * @type {string}
9963
- * @memberof ServiceItemModel
10196
+ * @memberof SnsHandle
9964
10197
  */
9965
- 'slug'?: string | null;
10198
+ 'handle'?: string | null;
10199
+ }
10200
+ /**
10201
+ *
10202
+ * @export
10203
+ * @interface SnsHandleModel
10204
+ */
10205
+ export interface SnsHandleModel {
9966
10206
  /**
9967
10207
  *
9968
10208
  * @type {string}
9969
- * @memberof ServiceItemModel
10209
+ * @memberof SnsHandleModel
9970
10210
  */
9971
- 'description'?: string | null;
10211
+ 'id'?: string;
9972
10212
  /**
9973
10213
  *
9974
- * @type {string}
9975
- * @memberof ServiceItemModel
10214
+ * @type {SnsType}
10215
+ * @memberof SnsHandleModel
9976
10216
  */
9977
- 'content'?: string | null;
10217
+ 'snsType'?: SnsType;
9978
10218
  /**
9979
10219
  *
9980
10220
  * @type {string}
9981
- * @memberof ServiceItemModel
10221
+ * @memberof SnsHandleModel
9982
10222
  */
9983
- 'hospitalId'?: string;
10223
+ 'handle'?: string | null;
10224
+ }
10225
+ /**
10226
+ *
10227
+ * @export
10228
+ * @enum {string}
10229
+ */
10230
+ export declare enum SnsType {
10231
+ Twitter = "Twitter",
10232
+ Facebook = "Facebook",
10233
+ Instagram = "Instagram"
10234
+ }
10235
+ /**
10236
+ *
10237
+ * @export
10238
+ * @interface Source
10239
+ */
10240
+ export interface Source {
9984
10241
  /**
9985
10242
  *
9986
10243
  * @type {string}
9987
- * @memberof ServiceItemModel
10244
+ * @memberof Source
9988
10245
  */
9989
- 'hospitalName'?: string | null;
10246
+ 'id'?: string;
9990
10247
  /**
9991
10248
  *
9992
10249
  * @type {string}
9993
- * @memberof ServiceItemModel
10250
+ * @memberof Source
9994
10251
  */
9995
- 'specialtyTypeId'?: string | null;
10252
+ 'name'?: string | null;
9996
10253
  /**
9997
10254
  *
9998
10255
  * @type {string}
9999
- * @memberof ServiceItemModel
10256
+ * @memberof Source
10000
10257
  */
10001
- 'specialtyTypeName'?: string | null;
10258
+ 'referenceUrl'?: string | null;
10002
10259
  /**
10003
10260
  *
10004
- * @type {string}
10005
- * @memberof ServiceItemModel
10261
+ * @type {number}
10262
+ * @memberof Source
10006
10263
  */
10007
- 'specialtyId'?: string;
10264
+ 'order'?: number;
10265
+ }
10266
+ /**
10267
+ *
10268
+ * @export
10269
+ * @interface SourceModel
10270
+ */
10271
+ export interface SourceModel {
10008
10272
  /**
10009
10273
  *
10010
10274
  * @type {string}
10011
- * @memberof ServiceItemModel
10012
- */
10013
- 'specialtyName'?: string | null;
10014
- /**
10015
- *
10016
- * @type {MarketingType}
10017
- * @memberof ServiceItemModel
10018
- */
10019
- 'marketingType'?: MarketingType;
10020
- /**
10021
- *
10022
- * @type {Procedure}
10023
- * @memberof ServiceItemModel
10024
- */
10025
- 'procedure'?: Procedure;
10026
- /**
10027
- *
10028
- * @type {number}
10029
- * @memberof ServiceItemModel
10030
- */
10031
- 'minPrice'?: number | null;
10032
- /**
10033
- *
10034
- * @type {number}
10035
- * @memberof ServiceItemModel
10036
- */
10037
- 'maxPrice'?: number | null;
10038
- /**
10039
- *
10040
- * @type {boolean}
10041
- * @memberof ServiceItemModel
10042
- */
10043
- 'priceReuqest'?: boolean;
10044
- /**
10045
- *
10046
- * @type {number}
10047
- * @memberof ServiceItemModel
10048
- */
10049
- 'order'?: number;
10050
- /**
10051
- *
10052
- * @type {AuditableEntity}
10053
- * @memberof ServiceItemModel
10054
- */
10055
- 'auditableEntity'?: AuditableEntity;
10056
- /**
10057
- *
10058
- * @type {boolean}
10059
- * @memberof ServiceItemModel
10060
- */
10061
- 'confirmed'?: boolean;
10062
- }
10063
- /**
10064
- *
10065
- * @export
10066
- * @interface ServiceModel
10067
- */
10068
- export interface ServiceModel {
10069
- /**
10070
- *
10071
- * @type {string}
10072
- * @memberof ServiceModel
10073
- */
10074
- 'id'?: string;
10075
- /**
10076
- *
10077
- * @type {string}
10078
- * @memberof ServiceModel
10079
- */
10080
- 'name'?: string | null;
10081
- /**
10082
- *
10083
- * @type {string}
10084
- * @memberof ServiceModel
10085
- */
10086
- 'slug'?: string | null;
10087
- /**
10088
- *
10089
- * @type {string}
10090
- * @memberof ServiceModel
10091
- */
10092
- 'description'?: string | null;
10093
- /**
10094
- *
10095
- * @type {string}
10096
- * @memberof ServiceModel
10097
- */
10098
- 'content'?: string | null;
10099
- /**
10100
- *
10101
- * @type {string}
10102
- * @memberof ServiceModel
10103
- */
10104
- 'hospitalId'?: string;
10105
- /**
10106
- *
10107
- * @type {string}
10108
- * @memberof ServiceModel
10109
- */
10110
- 'hospitalName'?: string | null;
10111
- /**
10112
- *
10113
- * @type {string}
10114
- * @memberof ServiceModel
10115
- */
10116
- 'specialtyTypeId'?: string | null;
10117
- /**
10118
- *
10119
- * @type {string}
10120
- * @memberof ServiceModel
10121
- */
10122
- 'specialtyTypeName'?: string | null;
10123
- /**
10124
- *
10125
- * @type {string}
10126
- * @memberof ServiceModel
10127
- */
10128
- 'specialtyId'?: string;
10129
- /**
10130
- *
10131
- * @type {string}
10132
- * @memberof ServiceModel
10133
- */
10134
- 'specialtyName'?: string | null;
10135
- /**
10136
- *
10137
- * @type {MarketingType}
10138
- * @memberof ServiceModel
10139
- */
10140
- 'marketingType'?: MarketingType;
10141
- /**
10142
- *
10143
- * @type {Procedure}
10144
- * @memberof ServiceModel
10145
- */
10146
- 'procedure'?: Procedure;
10147
- /**
10148
- *
10149
- * @type {number}
10150
- * @memberof ServiceModel
10151
- */
10152
- 'minPrice'?: number | null;
10153
- /**
10154
- *
10155
- * @type {number}
10156
- * @memberof ServiceModel
10157
- */
10158
- 'maxPrice'?: number | null;
10159
- /**
10160
- *
10161
- * @type {boolean}
10162
- * @memberof ServiceModel
10163
- */
10164
- 'priceReuqest'?: boolean;
10165
- /**
10166
- *
10167
- * @type {number}
10168
- * @memberof ServiceModel
10169
- */
10170
- 'order'?: number;
10171
- /**
10172
- *
10173
- * @type {AuditableEntity}
10174
- * @memberof ServiceModel
10175
- */
10176
- 'auditableEntity'?: AuditableEntity;
10177
- /**
10178
- *
10179
- * @type {boolean}
10180
- * @memberof ServiceModel
10181
- */
10182
- 'confirmed'?: boolean;
10183
- }
10184
- /**
10185
- *
10186
- * @export
10187
- * @interface ServicesModel
10188
- */
10189
- export interface ServicesModel {
10190
- /**
10191
- *
10192
- * @type {Array<ServiceItemModel>}
10193
- * @memberof ServicesModel
10194
- */
10195
- 'items'?: Array<ServiceItemModel> | null;
10196
- /**
10197
- *
10198
- * @type {PagedListMetaData}
10199
- * @memberof ServicesModel
10200
- */
10201
- 'metaData'?: PagedListMetaData;
10202
- }
10203
- /**
10204
- *
10205
- * @export
10206
- * @interface SnsHandle
10207
- */
10208
- export interface SnsHandle {
10209
- /**
10210
- *
10211
- * @type {string}
10212
- * @memberof SnsHandle
10213
- */
10214
- 'id'?: string;
10215
- /**
10216
- *
10217
- * @type {SnsType}
10218
- * @memberof SnsHandle
10219
- */
10220
- 'snsType'?: SnsType;
10221
- /**
10222
- *
10223
- * @type {string}
10224
- * @memberof SnsHandle
10225
- */
10226
- 'handle'?: string | null;
10227
- }
10228
- /**
10229
- *
10230
- * @export
10231
- * @interface SnsHandleModel
10232
- */
10233
- export interface SnsHandleModel {
10234
- /**
10235
- *
10236
- * @type {string}
10237
- * @memberof SnsHandleModel
10238
- */
10239
- 'id'?: string;
10240
- /**
10241
- *
10242
- * @type {SnsType}
10243
- * @memberof SnsHandleModel
10244
- */
10245
- 'snsType'?: SnsType;
10246
- /**
10247
- *
10248
- * @type {string}
10249
- * @memberof SnsHandleModel
10250
- */
10251
- 'handle'?: string | null;
10252
- }
10253
- /**
10254
- *
10255
- * @export
10256
- * @enum {string}
10257
- */
10258
- export declare enum SnsType {
10259
- Twitter = "Twitter",
10260
- Facebook = "Facebook",
10261
- Instagram = "Instagram"
10262
- }
10263
- /**
10264
- *
10265
- * @export
10266
- * @interface Source
10267
- */
10268
- export interface Source {
10269
- /**
10270
- *
10271
- * @type {string}
10272
- * @memberof Source
10273
- */
10274
- 'id'?: string;
10275
- /**
10276
- *
10277
- * @type {string}
10278
- * @memberof Source
10279
- */
10280
- 'name'?: string | null;
10281
- /**
10282
- *
10283
- * @type {string}
10284
- * @memberof Source
10285
- */
10286
- 'referenceUrl'?: string | null;
10287
- /**
10288
- *
10289
- * @type {number}
10290
- * @memberof Source
10291
- */
10292
- 'order'?: number;
10293
- }
10294
- /**
10295
- *
10296
- * @export
10297
- * @interface SourceModel
10298
- */
10299
- export interface SourceModel {
10300
- /**
10301
- *
10302
- * @type {string}
10303
- * @memberof SourceModel
10275
+ * @memberof SourceModel
10304
10276
  */
10305
10277
  'id'?: string;
10306
10278
  /**
@@ -11101,6 +11073,37 @@ export interface UpdateArticleSourceCommand {
11101
11073
  */
11102
11074
  'order'?: number;
11103
11075
  }
11076
+ /**
11077
+ *
11078
+ * @export
11079
+ * @interface UpdateChatUserCommand
11080
+ */
11081
+ export interface UpdateChatUserCommand {
11082
+ /**
11083
+ *
11084
+ * @type {string}
11085
+ * @memberof UpdateChatUserCommand
11086
+ */
11087
+ 'nickname'?: string | null;
11088
+ /**
11089
+ *
11090
+ * @type {string}
11091
+ * @memberof UpdateChatUserCommand
11092
+ */
11093
+ 'profileUrl'?: string | null;
11094
+ /**
11095
+ *
11096
+ * @type {boolean}
11097
+ * @memberof UpdateChatUserCommand
11098
+ */
11099
+ 'issueAccessToken'?: boolean;
11100
+ /**
11101
+ *
11102
+ * @type {Array<string>}
11103
+ * @memberof UpdateChatUserCommand
11104
+ */
11105
+ 'discoveryKeys'?: Array<string> | null;
11106
+ }
11104
11107
  /**
11105
11108
  *
11106
11109
  * @export
@@ -11929,10 +11932,10 @@ export interface UpdateServiceCategoryCommand {
11929
11932
  'serviceCount'?: number;
11930
11933
  /**
11931
11934
  *
11932
- * @type {Array<ServiceItemModel>}
11935
+ * @type {Array<HospitalServiceItemModel>}
11933
11936
  * @memberof UpdateServiceCategoryCommand
11934
11937
  */
11935
- 'services'?: Array<ServiceItemModel> | null;
11938
+ 'services'?: Array<HospitalServiceItemModel> | null;
11936
11939
  /**
11937
11940
  *
11938
11941
  * @type {Array<string>}
@@ -14096,6 +14099,330 @@ export declare class BookingsApi extends BaseAPI {
14096
14099
  */
14097
14100
  apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
14098
14101
  }
14102
+ /**
14103
+ * ChatUsersApi - axios parameter creator
14104
+ * @export
14105
+ */
14106
+ export declare const ChatUsersApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
14107
+ /**
14108
+ *
14109
+ * @summary Get all chatUsers.
14110
+ * @param {number} [limit]
14111
+ * @param {string} [token]
14112
+ * @param {string} [userIds]
14113
+ * @param {string} [nickname]
14114
+ * @param {string} [nicknameStartswith]
14115
+ * @param {*} [options] Override http request option.
14116
+ * @throws {RequiredError}
14117
+ */
14118
+ apiV1ChatusersGet: (limit?: number | undefined, token?: string | undefined, userIds?: string | undefined, nickname?: string | undefined, nicknameStartswith?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14119
+ /**
14120
+ *
14121
+ * @summary Create a chatUser.
14122
+ * @param {CreateChatUserCommand} [createChatUserCommand]
14123
+ * @param {*} [options] Override http request option.
14124
+ * @throws {RequiredError}
14125
+ */
14126
+ apiV1ChatusersPost: (createChatUserCommand?: CreateChatUserCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14127
+ /**
14128
+ *
14129
+ * @summary Delete chatUser.
14130
+ * @param {string} userId
14131
+ * @param {*} [options] Override http request option.
14132
+ * @throws {RequiredError}
14133
+ */
14134
+ apiV1ChatusersUserIdDelete: (userId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14135
+ /**
14136
+ *
14137
+ * @summary Get chatUser.
14138
+ * @param {string} userId
14139
+ * @param {*} [options] Override http request option.
14140
+ * @throws {RequiredError}
14141
+ */
14142
+ apiV1ChatusersUserIdGet: (userId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14143
+ /**
14144
+ *
14145
+ * @summary Update chatUser.
14146
+ * @param {string} userId
14147
+ * @param {UpdateChatUserCommand} [updateChatUserCommand]
14148
+ * @param {*} [options] Override http request option.
14149
+ * @throws {RequiredError}
14150
+ */
14151
+ apiV1ChatusersUserIdPut: (userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14152
+ };
14153
+ /**
14154
+ * ChatUsersApi - functional programming interface
14155
+ * @export
14156
+ */
14157
+ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined) => {
14158
+ /**
14159
+ *
14160
+ * @summary Get all chatUsers.
14161
+ * @param {number} [limit]
14162
+ * @param {string} [token]
14163
+ * @param {string} [userIds]
14164
+ * @param {string} [nickname]
14165
+ * @param {string} [nicknameStartswith]
14166
+ * @param {*} [options] Override http request option.
14167
+ * @throws {RequiredError}
14168
+ */
14169
+ apiV1ChatusersGet(limit?: number | undefined, token?: string | undefined, userIds?: string | undefined, nickname?: string | undefined, nicknameStartswith?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUsersModel>>;
14170
+ /**
14171
+ *
14172
+ * @summary Create a chatUser.
14173
+ * @param {CreateChatUserCommand} [createChatUserCommand]
14174
+ * @param {*} [options] Override http request option.
14175
+ * @throws {RequiredError}
14176
+ */
14177
+ apiV1ChatusersPost(createChatUserCommand?: CreateChatUserCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
14178
+ /**
14179
+ *
14180
+ * @summary Delete chatUser.
14181
+ * @param {string} userId
14182
+ * @param {*} [options] Override http request option.
14183
+ * @throws {RequiredError}
14184
+ */
14185
+ apiV1ChatusersUserIdDelete(userId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
14186
+ /**
14187
+ *
14188
+ * @summary Get chatUser.
14189
+ * @param {string} userId
14190
+ * @param {*} [options] Override http request option.
14191
+ * @throws {RequiredError}
14192
+ */
14193
+ apiV1ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
14194
+ /**
14195
+ *
14196
+ * @summary Update chatUser.
14197
+ * @param {string} userId
14198
+ * @param {UpdateChatUserCommand} [updateChatUserCommand]
14199
+ * @param {*} [options] Override http request option.
14200
+ * @throws {RequiredError}
14201
+ */
14202
+ apiV1ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
14203
+ };
14204
+ /**
14205
+ * ChatUsersApi - factory interface
14206
+ * @export
14207
+ */
14208
+ export declare const ChatUsersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
14209
+ /**
14210
+ *
14211
+ * @summary Get all chatUsers.
14212
+ * @param {number} [limit]
14213
+ * @param {string} [token]
14214
+ * @param {string} [userIds]
14215
+ * @param {string} [nickname]
14216
+ * @param {string} [nicknameStartswith]
14217
+ * @param {*} [options] Override http request option.
14218
+ * @throws {RequiredError}
14219
+ */
14220
+ apiV1ChatusersGet(limit?: number | undefined, token?: string | undefined, userIds?: string | undefined, nickname?: string | undefined, nicknameStartswith?: string | undefined, options?: any): AxiosPromise<ChatUsersModel>;
14221
+ /**
14222
+ *
14223
+ * @summary Create a chatUser.
14224
+ * @param {CreateChatUserCommand} [createChatUserCommand]
14225
+ * @param {*} [options] Override http request option.
14226
+ * @throws {RequiredError}
14227
+ */
14228
+ apiV1ChatusersPost(createChatUserCommand?: CreateChatUserCommand | undefined, options?: any): AxiosPromise<ChatUserModel>;
14229
+ /**
14230
+ *
14231
+ * @summary Delete chatUser.
14232
+ * @param {string} userId
14233
+ * @param {*} [options] Override http request option.
14234
+ * @throws {RequiredError}
14235
+ */
14236
+ apiV1ChatusersUserIdDelete(userId: string, options?: any): AxiosPromise<boolean>;
14237
+ /**
14238
+ *
14239
+ * @summary Get chatUser.
14240
+ * @param {string} userId
14241
+ * @param {*} [options] Override http request option.
14242
+ * @throws {RequiredError}
14243
+ */
14244
+ apiV1ChatusersUserIdGet(userId: string, options?: any): AxiosPromise<ChatUserModel>;
14245
+ /**
14246
+ *
14247
+ * @summary Update chatUser.
14248
+ * @param {string} userId
14249
+ * @param {UpdateChatUserCommand} [updateChatUserCommand]
14250
+ * @param {*} [options] Override http request option.
14251
+ * @throws {RequiredError}
14252
+ */
14253
+ apiV1ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: any): AxiosPromise<ChatUserModel>;
14254
+ };
14255
+ /**
14256
+ * ChatUsersApi - object-oriented interface
14257
+ * @export
14258
+ * @class ChatUsersApi
14259
+ * @extends {BaseAPI}
14260
+ */
14261
+ export declare class ChatUsersApi extends BaseAPI {
14262
+ /**
14263
+ *
14264
+ * @summary Get all chatUsers.
14265
+ * @param {number} [limit]
14266
+ * @param {string} [token]
14267
+ * @param {string} [userIds]
14268
+ * @param {string} [nickname]
14269
+ * @param {string} [nicknameStartswith]
14270
+ * @param {*} [options] Override http request option.
14271
+ * @throws {RequiredError}
14272
+ * @memberof ChatUsersApi
14273
+ */
14274
+ apiV1ChatusersGet(limit?: number, token?: string, userIds?: string, nickname?: string, nicknameStartswith?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUsersModel>>;
14275
+ /**
14276
+ *
14277
+ * @summary Create a chatUser.
14278
+ * @param {CreateChatUserCommand} [createChatUserCommand]
14279
+ * @param {*} [options] Override http request option.
14280
+ * @throws {RequiredError}
14281
+ * @memberof ChatUsersApi
14282
+ */
14283
+ apiV1ChatusersPost(createChatUserCommand?: CreateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
14284
+ /**
14285
+ *
14286
+ * @summary Delete chatUser.
14287
+ * @param {string} userId
14288
+ * @param {*} [options] Override http request option.
14289
+ * @throws {RequiredError}
14290
+ * @memberof ChatUsersApi
14291
+ */
14292
+ apiV1ChatusersUserIdDelete(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
14293
+ /**
14294
+ *
14295
+ * @summary Get chatUser.
14296
+ * @param {string} userId
14297
+ * @param {*} [options] Override http request option.
14298
+ * @throws {RequiredError}
14299
+ * @memberof ChatUsersApi
14300
+ */
14301
+ apiV1ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
14302
+ /**
14303
+ *
14304
+ * @summary Update chatUser.
14305
+ * @param {string} userId
14306
+ * @param {UpdateChatUserCommand} [updateChatUserCommand]
14307
+ * @param {*} [options] Override http request option.
14308
+ * @throws {RequiredError}
14309
+ * @memberof ChatUsersApi
14310
+ */
14311
+ apiV1ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
14312
+ }
14313
+ /**
14314
+ * CommunicationsApi - axios parameter creator
14315
+ * @export
14316
+ */
14317
+ export declare const CommunicationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
14318
+ /**
14319
+ *
14320
+ * @summary Delete CommunicationUser.
14321
+ * @param {*} [options] Override http request option.
14322
+ * @throws {RequiredError}
14323
+ */
14324
+ apiV1CommunicationsDelete: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
14325
+ /**
14326
+ *
14327
+ * @summary Get CommunicationUser.
14328
+ * @param {*} [options] Override http request option.
14329
+ * @throws {RequiredError}
14330
+ */
14331
+ apiV1CommunicationsGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
14332
+ /**
14333
+ *
14334
+ * @summary Revoke CommunicationUser.
14335
+ * @param {*} [options] Override http request option.
14336
+ * @throws {RequiredError}
14337
+ */
14338
+ apiV1CommunicationsPut: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
14339
+ };
14340
+ /**
14341
+ * CommunicationsApi - functional programming interface
14342
+ * @export
14343
+ */
14344
+ export declare const CommunicationsApiFp: (configuration?: Configuration | undefined) => {
14345
+ /**
14346
+ *
14347
+ * @summary Delete CommunicationUser.
14348
+ * @param {*} [options] Override http request option.
14349
+ * @throws {RequiredError}
14350
+ */
14351
+ apiV1CommunicationsDelete(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<number>>;
14352
+ /**
14353
+ *
14354
+ * @summary Get CommunicationUser.
14355
+ * @param {*} [options] Override http request option.
14356
+ * @throws {RequiredError}
14357
+ */
14358
+ apiV1CommunicationsGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
14359
+ /**
14360
+ *
14361
+ * @summary Revoke CommunicationUser.
14362
+ * @param {*} [options] Override http request option.
14363
+ * @throws {RequiredError}
14364
+ */
14365
+ apiV1CommunicationsPut(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
14366
+ };
14367
+ /**
14368
+ * CommunicationsApi - factory interface
14369
+ * @export
14370
+ */
14371
+ export declare const CommunicationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
14372
+ /**
14373
+ *
14374
+ * @summary Delete CommunicationUser.
14375
+ * @param {*} [options] Override http request option.
14376
+ * @throws {RequiredError}
14377
+ */
14378
+ apiV1CommunicationsDelete(options?: any): AxiosPromise<number>;
14379
+ /**
14380
+ *
14381
+ * @summary Get CommunicationUser.
14382
+ * @param {*} [options] Override http request option.
14383
+ * @throws {RequiredError}
14384
+ */
14385
+ apiV1CommunicationsGet(options?: any): AxiosPromise<CommunicationUserTokenModel>;
14386
+ /**
14387
+ *
14388
+ * @summary Revoke CommunicationUser.
14389
+ * @param {*} [options] Override http request option.
14390
+ * @throws {RequiredError}
14391
+ */
14392
+ apiV1CommunicationsPut(options?: any): AxiosPromise<CommunicationUserTokenModel>;
14393
+ };
14394
+ /**
14395
+ * CommunicationsApi - object-oriented interface
14396
+ * @export
14397
+ * @class CommunicationsApi
14398
+ * @extends {BaseAPI}
14399
+ */
14400
+ export declare class CommunicationsApi extends BaseAPI {
14401
+ /**
14402
+ *
14403
+ * @summary Delete CommunicationUser.
14404
+ * @param {*} [options] Override http request option.
14405
+ * @throws {RequiredError}
14406
+ * @memberof CommunicationsApi
14407
+ */
14408
+ apiV1CommunicationsDelete(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<number>>;
14409
+ /**
14410
+ *
14411
+ * @summary Get CommunicationUser.
14412
+ * @param {*} [options] Override http request option.
14413
+ * @throws {RequiredError}
14414
+ * @memberof CommunicationsApi
14415
+ */
14416
+ apiV1CommunicationsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
14417
+ /**
14418
+ *
14419
+ * @summary Revoke CommunicationUser.
14420
+ * @param {*} [options] Override http request option.
14421
+ * @throws {RequiredError}
14422
+ * @memberof CommunicationsApi
14423
+ */
14424
+ apiV1CommunicationsPut(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
14425
+ }
14099
14426
  /**
14100
14427
  * ConsultationsApi - axios parameter creator
14101
14428
  * @export
@@ -17754,18 +18081,75 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
17754
18081
  * @throws {RequiredError}
17755
18082
  */
17756
18083
  apiV1HospitalsHospitalIdPut: (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18084
+ /**
18085
+ *
18086
+ * @summary Get all HospitalSpecialties.
18087
+ * @param {string} hospitalId
18088
+ * @param {string} [hospitalName]
18089
+ * @param {string} [hospitalSlug]
18090
+ * @param {string} [specialtyId]
18091
+ * @param {string} [specialtyName]
18092
+ * @param {string} [specialtyTypeId]
18093
+ * @param {MarketingType} [marketingType]
18094
+ * @param {Date} [created]
18095
+ * @param {number} [page]
18096
+ * @param {number} [limit]
18097
+ * @param {Date} [lastRetrieved]
18098
+ * @param {*} [options] Override http request option.
18099
+ * @throws {RequiredError}
18100
+ */
18101
+ 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>;
18102
+ /**
18103
+ *
18104
+ * @summary Create HospitalSpecialty.
18105
+ * @param {string} hospitalId
18106
+ * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18107
+ * @param {*} [options] Override http request option.
18108
+ * @throws {RequiredError}
18109
+ */
18110
+ apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18111
+ /**
18112
+ *
18113
+ * @summary Delete HospitalSpecialty.
18114
+ * @param {string} hospitalId
18115
+ * @param {string} specialtyId
18116
+ * @param {*} [options] Override http request option.
18117
+ * @throws {RequiredError}
18118
+ */
18119
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18120
+ /**
18121
+ *
18122
+ * @summary Get HospitalSpecialty.
18123
+ * @param {string} hospitalId
18124
+ * @param {string} specialtyId
18125
+ * @param {*} [options] Override http request option.
18126
+ * @throws {RequiredError}
18127
+ */
18128
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18129
+ /**
18130
+ *
18131
+ * @summary Update HospitalSpecialty.
18132
+ * @param {string} hospitalId
18133
+ * @param {string} specialtyId
18134
+ * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
18135
+ * @param {*} [options] Override http request option.
18136
+ * @throws {RequiredError}
18137
+ */
18138
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17757
18139
  /**
17758
18140
  *
17759
18141
  * @summary Get all HospitalServices.
17760
18142
  * @param {string} hospitalId
18143
+ * @param {string} specialtyId
17761
18144
  * @param {string} [hospitalName]
17762
18145
  * @param {string} [hospitalSlug]
17763
18146
  * @param {string} [id]
17764
18147
  * @param {string} [name]
17765
18148
  * @param {string} [description]
17766
- * @param {string} [specialtyId]
18149
+ * @param {string} [specialtyName]
17767
18150
  * @param {string} [specialtyTypeId]
17768
18151
  * @param {string} [specialtyTypeName]
18152
+ * @param {string} [serviceCategoryId]
17769
18153
  * @param {MarketingType} [marketingType]
17770
18154
  * @param {Procedure} [procedure]
17771
18155
  * @param {Date} [created]
@@ -17776,100 +18160,109 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
17776
18160
  * @param {*} [options] Override http request option.
17777
18161
  * @throws {RequiredError}
17778
18162
  */
17779
- apiV1HospitalsHospitalIdServicesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: 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>;
18163
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17780
18164
  /**
17781
18165
  *
17782
18166
  * @summary Create HospitalService.
17783
18167
  * @param {string} hospitalId
18168
+ * @param {string} specialtyId
17784
18169
  * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
17785
18170
  * @param {*} [options] Override http request option.
17786
18171
  * @throws {RequiredError}
17787
18172
  */
17788
- apiV1HospitalsHospitalIdServicesPost: (hospitalId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18173
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17789
18174
  /**
17790
18175
  *
17791
18176
  * @summary Delete HospitalService
17792
18177
  * @param {string} hospitalId
18178
+ * @param {string} specialtyId
17793
18179
  * @param {string} serviceId
17794
18180
  * @param {*} [options] Override http request option.
17795
18181
  * @throws {RequiredError}
17796
18182
  */
17797
- apiV1HospitalsHospitalIdServicesServiceIdDelete: (hospitalId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18183
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17798
18184
  /**
17799
18185
  *
17800
18186
  * @summary Get HospitalService.
17801
18187
  * @param {string} hospitalId
18188
+ * @param {string} specialtyId
17802
18189
  * @param {string} serviceId
17803
18190
  * @param {string} [languageCode]
17804
18191
  * @param {*} [options] Override http request option.
17805
18192
  * @throws {RequiredError}
17806
18193
  */
17807
- apiV1HospitalsHospitalIdServicesServiceIdGet: (hospitalId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18194
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17808
18195
  /**
17809
18196
  *
17810
- * @summary Update HospitalService.
18197
+ * @summary Get all HospitalServiceMedias.
17811
18198
  * @param {string} hospitalId
18199
+ * @param {string} specialtyId
17812
18200
  * @param {string} serviceId
17813
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
18201
+ * @param {string} [id]
18202
+ * @param {MediaType} [mediaType]
18203
+ * @param {number} [page]
18204
+ * @param {number} [limit]
18205
+ * @param {Date} [lastRetrieved]
17814
18206
  * @param {*} [options] Override http request option.
17815
18207
  * @throws {RequiredError}
17816
18208
  */
17817
- apiV1HospitalsHospitalIdServicesServiceIdPut: (hospitalId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18209
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet: (hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17818
18210
  /**
17819
18211
  *
17820
- * @summary Get all HospitalSpecialties.
18212
+ * @summary Delete HospitalServiceMedia
17821
18213
  * @param {string} hospitalId
17822
- * @param {string} [hospitalName]
17823
- * @param {string} [hospitalSlug]
17824
- * @param {string} [specialtyId]
17825
- * @param {string} [specialtyName]
17826
- * @param {string} [specialtyTypeId]
17827
- * @param {MarketingType} [marketingType]
17828
- * @param {Date} [created]
17829
- * @param {number} [page]
17830
- * @param {number} [limit]
17831
- * @param {Date} [lastRetrieved]
18214
+ * @param {string} specialtyId
18215
+ * @param {string} serviceId
18216
+ * @param {string} mediaId
17832
18217
  * @param {*} [options] Override http request option.
17833
18218
  * @throws {RequiredError}
17834
18219
  */
17835
- 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>;
18220
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17836
18221
  /**
17837
18222
  *
17838
- * @summary Create HospitalSpecialty.
18223
+ * @summary Get HospitalServiceMedia.
17839
18224
  * @param {string} hospitalId
17840
- * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18225
+ * @param {string} specialtyId
18226
+ * @param {string} serviceId
18227
+ * @param {string} mediaId
17841
18228
  * @param {*} [options] Override http request option.
17842
18229
  * @throws {RequiredError}
17843
18230
  */
17844
- apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18231
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17845
18232
  /**
17846
18233
  *
17847
- * @summary Delete HospitalSpecialty.
18234
+ * @summary Update HospitalServiceMedia.
17848
18235
  * @param {string} hospitalId
17849
18236
  * @param {string} specialtyId
18237
+ * @param {string} serviceId
18238
+ * @param {string} mediaId
18239
+ * @param {UpdateMediaCommand} [updateMediaCommand]
17850
18240
  * @param {*} [options] Override http request option.
17851
18241
  * @throws {RequiredError}
17852
18242
  */
17853
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18243
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17854
18244
  /**
17855
18245
  *
17856
- * @summary Get HospitalSpecialty.
18246
+ * @summary Create HospitalServiceMedia.
17857
18247
  * @param {string} hospitalId
17858
18248
  * @param {string} specialtyId
18249
+ * @param {string} serviceId
18250
+ * @param {CreateMediaCommand} [createMediaCommand]
17859
18251
  * @param {*} [options] Override http request option.
17860
18252
  * @throws {RequiredError}
17861
18253
  */
17862
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18254
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17863
18255
  /**
17864
18256
  *
17865
- * @summary Update HospitalSpecialty.
18257
+ * @summary Update HospitalService.
17866
18258
  * @param {string} hospitalId
17867
18259
  * @param {string} specialtyId
17868
- * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
18260
+ * @param {string} serviceId
18261
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
17869
18262
  * @param {*} [options] Override http request option.
17870
18263
  * @throws {RequiredError}
17871
18264
  */
17872
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18265
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17873
18266
  /**
17874
18267
  *
17875
18268
  * @summary Create Hospital.
@@ -18183,18 +18576,75 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
18183
18576
  * @throws {RequiredError}
18184
18577
  */
18185
18578
  apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18579
+ /**
18580
+ *
18581
+ * @summary Get all HospitalSpecialties.
18582
+ * @param {string} hospitalId
18583
+ * @param {string} [hospitalName]
18584
+ * @param {string} [hospitalSlug]
18585
+ * @param {string} [specialtyId]
18586
+ * @param {string} [specialtyName]
18587
+ * @param {string} [specialtyTypeId]
18588
+ * @param {MarketingType} [marketingType]
18589
+ * @param {Date} [created]
18590
+ * @param {number} [page]
18591
+ * @param {number} [limit]
18592
+ * @param {Date} [lastRetrieved]
18593
+ * @param {*} [options] Override http request option.
18594
+ * @throws {RequiredError}
18595
+ */
18596
+ 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>>;
18597
+ /**
18598
+ *
18599
+ * @summary Create HospitalSpecialty.
18600
+ * @param {string} hospitalId
18601
+ * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18602
+ * @param {*} [options] Override http request option.
18603
+ * @throws {RequiredError}
18604
+ */
18605
+ apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18606
+ /**
18607
+ *
18608
+ * @summary Delete HospitalSpecialty.
18609
+ * @param {string} hospitalId
18610
+ * @param {string} specialtyId
18611
+ * @param {*} [options] Override http request option.
18612
+ * @throws {RequiredError}
18613
+ */
18614
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18615
+ /**
18616
+ *
18617
+ * @summary Get HospitalSpecialty.
18618
+ * @param {string} hospitalId
18619
+ * @param {string} specialtyId
18620
+ * @param {*} [options] Override http request option.
18621
+ * @throws {RequiredError}
18622
+ */
18623
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18624
+ /**
18625
+ *
18626
+ * @summary Update HospitalSpecialty.
18627
+ * @param {string} hospitalId
18628
+ * @param {string} specialtyId
18629
+ * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
18630
+ * @param {*} [options] Override http request option.
18631
+ * @throws {RequiredError}
18632
+ */
18633
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18186
18634
  /**
18187
18635
  *
18188
18636
  * @summary Get all HospitalServices.
18189
18637
  * @param {string} hospitalId
18638
+ * @param {string} specialtyId
18190
18639
  * @param {string} [hospitalName]
18191
18640
  * @param {string} [hospitalSlug]
18192
18641
  * @param {string} [id]
18193
18642
  * @param {string} [name]
18194
18643
  * @param {string} [description]
18195
- * @param {string} [specialtyId]
18644
+ * @param {string} [specialtyName]
18196
18645
  * @param {string} [specialtyTypeId]
18197
18646
  * @param {string} [specialtyTypeName]
18647
+ * @param {string} [serviceCategoryId]
18198
18648
  * @param {MarketingType} [marketingType]
18199
18649
  * @param {Procedure} [procedure]
18200
18650
  * @param {Date} [created]
@@ -18205,100 +18655,109 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
18205
18655
  * @param {*} [options] Override http request option.
18206
18656
  * @throws {RequiredError}
18207
18657
  */
18208
- apiV1HospitalsHospitalIdServicesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: 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>>;
18658
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
18209
18659
  /**
18210
18660
  *
18211
18661
  * @summary Create HospitalService.
18212
18662
  * @param {string} hospitalId
18663
+ * @param {string} specialtyId
18213
18664
  * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
18214
18665
  * @param {*} [options] Override http request option.
18215
18666
  * @throws {RequiredError}
18216
18667
  */
18217
- apiV1HospitalsHospitalIdServicesPost(hospitalId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
18668
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
18218
18669
  /**
18219
18670
  *
18220
18671
  * @summary Delete HospitalService
18221
18672
  * @param {string} hospitalId
18673
+ * @param {string} specialtyId
18222
18674
  * @param {string} serviceId
18223
18675
  * @param {*} [options] Override http request option.
18224
18676
  * @throws {RequiredError}
18225
18677
  */
18226
- apiV1HospitalsHospitalIdServicesServiceIdDelete(hospitalId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18678
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18227
18679
  /**
18228
18680
  *
18229
18681
  * @summary Get HospitalService.
18230
18682
  * @param {string} hospitalId
18683
+ * @param {string} specialtyId
18231
18684
  * @param {string} serviceId
18232
18685
  * @param {string} [languageCode]
18233
18686
  * @param {*} [options] Override http request option.
18234
18687
  * @throws {RequiredError}
18235
18688
  */
18236
- apiV1HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
18689
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
18237
18690
  /**
18238
18691
  *
18239
- * @summary Update HospitalService.
18692
+ * @summary Get all HospitalServiceMedias.
18240
18693
  * @param {string} hospitalId
18694
+ * @param {string} specialtyId
18241
18695
  * @param {string} serviceId
18242
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
18696
+ * @param {string} [id]
18697
+ * @param {MediaType} [mediaType]
18698
+ * @param {number} [page]
18699
+ * @param {number} [limit]
18700
+ * @param {Date} [lastRetrieved]
18243
18701
  * @param {*} [options] Override http request option.
18244
18702
  * @throws {RequiredError}
18245
18703
  */
18246
- apiV1HospitalsHospitalIdServicesServiceIdPut(hospitalId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18704
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
18247
18705
  /**
18248
18706
  *
18249
- * @summary Get all HospitalSpecialties.
18707
+ * @summary Delete HospitalServiceMedia
18250
18708
  * @param {string} hospitalId
18251
- * @param {string} [hospitalName]
18252
- * @param {string} [hospitalSlug]
18253
- * @param {string} [specialtyId]
18254
- * @param {string} [specialtyName]
18255
- * @param {string} [specialtyTypeId]
18256
- * @param {MarketingType} [marketingType]
18257
- * @param {Date} [created]
18258
- * @param {number} [page]
18259
- * @param {number} [limit]
18260
- * @param {Date} [lastRetrieved]
18709
+ * @param {string} specialtyId
18710
+ * @param {string} serviceId
18711
+ * @param {string} mediaId
18261
18712
  * @param {*} [options] Override http request option.
18262
18713
  * @throws {RequiredError}
18263
18714
  */
18264
- 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>>;
18715
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18265
18716
  /**
18266
18717
  *
18267
- * @summary Create HospitalSpecialty.
18718
+ * @summary Get HospitalServiceMedia.
18268
18719
  * @param {string} hospitalId
18269
- * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18720
+ * @param {string} specialtyId
18721
+ * @param {string} serviceId
18722
+ * @param {string} mediaId
18270
18723
  * @param {*} [options] Override http request option.
18271
18724
  * @throws {RequiredError}
18272
18725
  */
18273
- apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18726
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18274
18727
  /**
18275
18728
  *
18276
- * @summary Delete HospitalSpecialty.
18729
+ * @summary Update HospitalServiceMedia.
18277
18730
  * @param {string} hospitalId
18278
18731
  * @param {string} specialtyId
18732
+ * @param {string} serviceId
18733
+ * @param {string} mediaId
18734
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18279
18735
  * @param {*} [options] Override http request option.
18280
18736
  * @throws {RequiredError}
18281
18737
  */
18282
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18738
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18283
18739
  /**
18284
18740
  *
18285
- * @summary Get HospitalSpecialty.
18741
+ * @summary Create HospitalServiceMedia.
18286
18742
  * @param {string} hospitalId
18287
18743
  * @param {string} specialtyId
18744
+ * @param {string} serviceId
18745
+ * @param {CreateMediaCommand} [createMediaCommand]
18288
18746
  * @param {*} [options] Override http request option.
18289
18747
  * @throws {RequiredError}
18290
18748
  */
18291
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18749
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18292
18750
  /**
18293
18751
  *
18294
- * @summary Update HospitalSpecialty.
18752
+ * @summary Update HospitalService.
18295
18753
  * @param {string} hospitalId
18296
18754
  * @param {string} specialtyId
18297
- * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
18755
+ * @param {string} serviceId
18756
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
18298
18757
  * @param {*} [options] Override http request option.
18299
18758
  * @throws {RequiredError}
18300
18759
  */
18301
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18760
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18302
18761
  /**
18303
18762
  *
18304
18763
  * @summary Create Hospital.
@@ -18577,53 +19036,110 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
18577
19036
  apiV1HospitalsHospitalIdMediasMediaIdDelete(hospitalId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
18578
19037
  /**
18579
19038
  *
18580
- * @summary Get HospitalMedia.
19039
+ * @summary Get HospitalMedia.
19040
+ * @param {string} hospitalId
19041
+ * @param {string} mediaId
19042
+ * @param {*} [options] Override http request option.
19043
+ * @throws {RequiredError}
19044
+ */
19045
+ apiV1HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
19046
+ /**
19047
+ *
19048
+ * @summary Update HospitalMedia.
19049
+ * @param {string} hospitalId
19050
+ * @param {string} mediaId
19051
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19052
+ * @param {*} [options] Override http request option.
19053
+ * @throws {RequiredError}
19054
+ */
19055
+ apiV1HospitalsHospitalIdMediasMediaIdPut(hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
19056
+ /**
19057
+ *
19058
+ * @summary Create HospitalMedia.
19059
+ * @param {string} hospitalId
19060
+ * @param {CreateMediaCommand} [createMediaCommand]
19061
+ * @param {*} [options] Override http request option.
19062
+ * @throws {RequiredError}
19063
+ */
19064
+ apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
19065
+ /**
19066
+ *
19067
+ * @summary Update Hospital.
19068
+ * @param {string} hospitalId
19069
+ * @param {UpdateHospitalCommand} [updateHospitalCommand]
19070
+ * @param {*} [options] Override http request option.
19071
+ * @throws {RequiredError}
19072
+ */
19073
+ apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
19074
+ /**
19075
+ *
19076
+ * @summary Get all HospitalSpecialties.
19077
+ * @param {string} hospitalId
19078
+ * @param {string} [hospitalName]
19079
+ * @param {string} [hospitalSlug]
19080
+ * @param {string} [specialtyId]
19081
+ * @param {string} [specialtyName]
19082
+ * @param {string} [specialtyTypeId]
19083
+ * @param {MarketingType} [marketingType]
19084
+ * @param {Date} [created]
19085
+ * @param {number} [page]
19086
+ * @param {number} [limit]
19087
+ * @param {Date} [lastRetrieved]
19088
+ * @param {*} [options] Override http request option.
19089
+ * @throws {RequiredError}
19090
+ */
19091
+ 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>;
19092
+ /**
19093
+ *
19094
+ * @summary Create HospitalSpecialty.
18581
19095
  * @param {string} hospitalId
18582
- * @param {string} mediaId
19096
+ * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18583
19097
  * @param {*} [options] Override http request option.
18584
19098
  * @throws {RequiredError}
18585
19099
  */
18586
- apiV1HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
19100
+ apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
18587
19101
  /**
18588
19102
  *
18589
- * @summary Update HospitalMedia.
19103
+ * @summary Delete HospitalSpecialty.
18590
19104
  * @param {string} hospitalId
18591
- * @param {string} mediaId
18592
- * @param {UpdateMediaCommand} [updateMediaCommand]
19105
+ * @param {string} specialtyId
18593
19106
  * @param {*} [options] Override http request option.
18594
19107
  * @throws {RequiredError}
18595
19108
  */
18596
- apiV1HospitalsHospitalIdMediasMediaIdPut(hospitalId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
19109
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
18597
19110
  /**
18598
19111
  *
18599
- * @summary Create HospitalMedia.
19112
+ * @summary Get HospitalSpecialty.
18600
19113
  * @param {string} hospitalId
18601
- * @param {CreateMediaCommand} [createMediaCommand]
19114
+ * @param {string} specialtyId
18602
19115
  * @param {*} [options] Override http request option.
18603
19116
  * @throws {RequiredError}
18604
19117
  */
18605
- apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
19118
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
18606
19119
  /**
18607
19120
  *
18608
- * @summary Update Hospital.
19121
+ * @summary Update HospitalSpecialty.
18609
19122
  * @param {string} hospitalId
18610
- * @param {UpdateHospitalCommand} [updateHospitalCommand]
19123
+ * @param {string} specialtyId
19124
+ * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
18611
19125
  * @param {*} [options] Override http request option.
18612
19126
  * @throws {RequiredError}
18613
19127
  */
18614
- apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
19128
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
18615
19129
  /**
18616
19130
  *
18617
19131
  * @summary Get all HospitalServices.
18618
19132
  * @param {string} hospitalId
19133
+ * @param {string} specialtyId
18619
19134
  * @param {string} [hospitalName]
18620
19135
  * @param {string} [hospitalSlug]
18621
19136
  * @param {string} [id]
18622
19137
  * @param {string} [name]
18623
19138
  * @param {string} [description]
18624
- * @param {string} [specialtyId]
19139
+ * @param {string} [specialtyName]
18625
19140
  * @param {string} [specialtyTypeId]
18626
19141
  * @param {string} [specialtyTypeName]
19142
+ * @param {string} [serviceCategoryId]
18627
19143
  * @param {MarketingType} [marketingType]
18628
19144
  * @param {Procedure} [procedure]
18629
19145
  * @param {Date} [created]
@@ -18634,100 +19150,109 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
18634
19150
  * @param {*} [options] Override http request option.
18635
19151
  * @throws {RequiredError}
18636
19152
  */
18637
- apiV1HospitalsHospitalIdServicesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: 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>;
19153
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
18638
19154
  /**
18639
19155
  *
18640
19156
  * @summary Create HospitalService.
18641
19157
  * @param {string} hospitalId
19158
+ * @param {string} specialtyId
18642
19159
  * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
18643
19160
  * @param {*} [options] Override http request option.
18644
19161
  * @throws {RequiredError}
18645
19162
  */
18646
- apiV1HospitalsHospitalIdServicesPost(hospitalId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
19163
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
18647
19164
  /**
18648
19165
  *
18649
19166
  * @summary Delete HospitalService
18650
19167
  * @param {string} hospitalId
19168
+ * @param {string} specialtyId
18651
19169
  * @param {string} serviceId
18652
19170
  * @param {*} [options] Override http request option.
18653
19171
  * @throws {RequiredError}
18654
19172
  */
18655
- apiV1HospitalsHospitalIdServicesServiceIdDelete(hospitalId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
19173
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
18656
19174
  /**
18657
19175
  *
18658
19176
  * @summary Get HospitalService.
18659
19177
  * @param {string} hospitalId
19178
+ * @param {string} specialtyId
18660
19179
  * @param {string} serviceId
18661
19180
  * @param {string} [languageCode]
18662
19181
  * @param {*} [options] Override http request option.
18663
19182
  * @throws {RequiredError}
18664
19183
  */
18665
- apiV1HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
19184
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
18666
19185
  /**
18667
19186
  *
18668
- * @summary Update HospitalService.
19187
+ * @summary Get all HospitalServiceMedias.
18669
19188
  * @param {string} hospitalId
19189
+ * @param {string} specialtyId
18670
19190
  * @param {string} serviceId
18671
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
19191
+ * @param {string} [id]
19192
+ * @param {MediaType} [mediaType]
19193
+ * @param {number} [page]
19194
+ * @param {number} [limit]
19195
+ * @param {Date} [lastRetrieved]
18672
19196
  * @param {*} [options] Override http request option.
18673
19197
  * @throws {RequiredError}
18674
19198
  */
18675
- apiV1HospitalsHospitalIdServicesServiceIdPut(hospitalId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
19199
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
18676
19200
  /**
18677
19201
  *
18678
- * @summary Get all HospitalSpecialties.
19202
+ * @summary Delete HospitalServiceMedia
18679
19203
  * @param {string} hospitalId
18680
- * @param {string} [hospitalName]
18681
- * @param {string} [hospitalSlug]
18682
- * @param {string} [specialtyId]
18683
- * @param {string} [specialtyName]
18684
- * @param {string} [specialtyTypeId]
18685
- * @param {MarketingType} [marketingType]
18686
- * @param {Date} [created]
18687
- * @param {number} [page]
18688
- * @param {number} [limit]
18689
- * @param {Date} [lastRetrieved]
19204
+ * @param {string} specialtyId
19205
+ * @param {string} serviceId
19206
+ * @param {string} mediaId
18690
19207
  * @param {*} [options] Override http request option.
18691
19208
  * @throws {RequiredError}
18692
19209
  */
18693
- 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>;
19210
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
18694
19211
  /**
18695
19212
  *
18696
- * @summary Create HospitalSpecialty.
19213
+ * @summary Get HospitalServiceMedia.
18697
19214
  * @param {string} hospitalId
18698
- * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
19215
+ * @param {string} specialtyId
19216
+ * @param {string} serviceId
19217
+ * @param {string} mediaId
18699
19218
  * @param {*} [options] Override http request option.
18700
19219
  * @throws {RequiredError}
18701
19220
  */
18702
- apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
19221
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
18703
19222
  /**
18704
19223
  *
18705
- * @summary Delete HospitalSpecialty.
19224
+ * @summary Update HospitalServiceMedia.
18706
19225
  * @param {string} hospitalId
18707
19226
  * @param {string} specialtyId
19227
+ * @param {string} serviceId
19228
+ * @param {string} mediaId
19229
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18708
19230
  * @param {*} [options] Override http request option.
18709
19231
  * @throws {RequiredError}
18710
19232
  */
18711
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
19233
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
18712
19234
  /**
18713
19235
  *
18714
- * @summary Get HospitalSpecialty.
19236
+ * @summary Create HospitalServiceMedia.
18715
19237
  * @param {string} hospitalId
18716
19238
  * @param {string} specialtyId
19239
+ * @param {string} serviceId
19240
+ * @param {CreateMediaCommand} [createMediaCommand]
18717
19241
  * @param {*} [options] Override http request option.
18718
19242
  * @throws {RequiredError}
18719
19243
  */
18720
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
19244
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
18721
19245
  /**
18722
19246
  *
18723
- * @summary Update HospitalSpecialty.
19247
+ * @summary Update HospitalService.
18724
19248
  * @param {string} hospitalId
18725
19249
  * @param {string} specialtyId
18726
- * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
19250
+ * @param {string} serviceId
19251
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
18727
19252
  * @param {*} [options] Override http request option.
18728
19253
  * @throws {RequiredError}
18729
19254
  */
18730
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
19255
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
18731
19256
  /**
18732
19257
  *
18733
19258
  * @summary Create Hospital.
@@ -19070,18 +19595,80 @@ export declare class HospitalsApi extends BaseAPI {
19070
19595
  * @memberof HospitalsApi
19071
19596
  */
19072
19597
  apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19598
+ /**
19599
+ *
19600
+ * @summary Get all HospitalSpecialties.
19601
+ * @param {string} hospitalId
19602
+ * @param {string} [hospitalName]
19603
+ * @param {string} [hospitalSlug]
19604
+ * @param {string} [specialtyId]
19605
+ * @param {string} [specialtyName]
19606
+ * @param {string} [specialtyTypeId]
19607
+ * @param {MarketingType} [marketingType]
19608
+ * @param {Date} [created]
19609
+ * @param {number} [page]
19610
+ * @param {number} [limit]
19611
+ * @param {Date} [lastRetrieved]
19612
+ * @param {*} [options] Override http request option.
19613
+ * @throws {RequiredError}
19614
+ * @memberof HospitalsApi
19615
+ */
19616
+ 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>>;
19617
+ /**
19618
+ *
19619
+ * @summary Create HospitalSpecialty.
19620
+ * @param {string} hospitalId
19621
+ * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
19622
+ * @param {*} [options] Override http request option.
19623
+ * @throws {RequiredError}
19624
+ * @memberof HospitalsApi
19625
+ */
19626
+ apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19627
+ /**
19628
+ *
19629
+ * @summary Delete HospitalSpecialty.
19630
+ * @param {string} hospitalId
19631
+ * @param {string} specialtyId
19632
+ * @param {*} [options] Override http request option.
19633
+ * @throws {RequiredError}
19634
+ * @memberof HospitalsApi
19635
+ */
19636
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19637
+ /**
19638
+ *
19639
+ * @summary Get HospitalSpecialty.
19640
+ * @param {string} hospitalId
19641
+ * @param {string} specialtyId
19642
+ * @param {*} [options] Override http request option.
19643
+ * @throws {RequiredError}
19644
+ * @memberof HospitalsApi
19645
+ */
19646
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19647
+ /**
19648
+ *
19649
+ * @summary Update HospitalSpecialty.
19650
+ * @param {string} hospitalId
19651
+ * @param {string} specialtyId
19652
+ * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
19653
+ * @param {*} [options] Override http request option.
19654
+ * @throws {RequiredError}
19655
+ * @memberof HospitalsApi
19656
+ */
19657
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19073
19658
  /**
19074
19659
  *
19075
19660
  * @summary Get all HospitalServices.
19076
19661
  * @param {string} hospitalId
19662
+ * @param {string} specialtyId
19077
19663
  * @param {string} [hospitalName]
19078
19664
  * @param {string} [hospitalSlug]
19079
19665
  * @param {string} [id]
19080
19666
  * @param {string} [name]
19081
19667
  * @param {string} [description]
19082
- * @param {string} [specialtyId]
19668
+ * @param {string} [specialtyName]
19083
19669
  * @param {string} [specialtyTypeId]
19084
19670
  * @param {string} [specialtyTypeName]
19671
+ * @param {string} [serviceCategoryId]
19085
19672
  * @param {MarketingType} [marketingType]
19086
19673
  * @param {Procedure} [procedure]
19087
19674
  * @param {Date} [created]
@@ -19093,109 +19680,118 @@ export declare class HospitalsApi extends BaseAPI {
19093
19680
  * @throws {RequiredError}
19094
19681
  * @memberof HospitalsApi
19095
19682
  */
19096
- apiV1HospitalsHospitalIdServicesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyTypeId?: string, specialtyTypeName?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
19683
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
19097
19684
  /**
19098
19685
  *
19099
19686
  * @summary Create HospitalService.
19100
19687
  * @param {string} hospitalId
19688
+ * @param {string} specialtyId
19101
19689
  * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
19102
19690
  * @param {*} [options] Override http request option.
19103
19691
  * @throws {RequiredError}
19104
19692
  * @memberof HospitalsApi
19105
19693
  */
19106
- apiV1HospitalsHospitalIdServicesPost(hospitalId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19694
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19107
19695
  /**
19108
19696
  *
19109
19697
  * @summary Delete HospitalService
19110
19698
  * @param {string} hospitalId
19699
+ * @param {string} specialtyId
19111
19700
  * @param {string} serviceId
19112
19701
  * @param {*} [options] Override http request option.
19113
19702
  * @throws {RequiredError}
19114
19703
  * @memberof HospitalsApi
19115
19704
  */
19116
- apiV1HospitalsHospitalIdServicesServiceIdDelete(hospitalId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19705
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19117
19706
  /**
19118
19707
  *
19119
19708
  * @summary Get HospitalService.
19120
19709
  * @param {string} hospitalId
19710
+ * @param {string} specialtyId
19121
19711
  * @param {string} serviceId
19122
19712
  * @param {string} [languageCode]
19123
19713
  * @param {*} [options] Override http request option.
19124
19714
  * @throws {RequiredError}
19125
19715
  * @memberof HospitalsApi
19126
19716
  */
19127
- apiV1HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19717
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19128
19718
  /**
19129
19719
  *
19130
- * @summary Update HospitalService.
19720
+ * @summary Get all HospitalServiceMedias.
19131
19721
  * @param {string} hospitalId
19722
+ * @param {string} specialtyId
19132
19723
  * @param {string} serviceId
19133
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
19724
+ * @param {string} [id]
19725
+ * @param {MediaType} [mediaType]
19726
+ * @param {number} [page]
19727
+ * @param {number} [limit]
19728
+ * @param {Date} [lastRetrieved]
19134
19729
  * @param {*} [options] Override http request option.
19135
19730
  * @throws {RequiredError}
19136
19731
  * @memberof HospitalsApi
19137
19732
  */
19138
- apiV1HospitalsHospitalIdServicesServiceIdPut(hospitalId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19733
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
19139
19734
  /**
19140
19735
  *
19141
- * @summary Get all HospitalSpecialties.
19736
+ * @summary Delete HospitalServiceMedia
19142
19737
  * @param {string} hospitalId
19143
- * @param {string} [hospitalName]
19144
- * @param {string} [hospitalSlug]
19145
- * @param {string} [specialtyId]
19146
- * @param {string} [specialtyName]
19147
- * @param {string} [specialtyTypeId]
19148
- * @param {MarketingType} [marketingType]
19149
- * @param {Date} [created]
19150
- * @param {number} [page]
19151
- * @param {number} [limit]
19152
- * @param {Date} [lastRetrieved]
19738
+ * @param {string} specialtyId
19739
+ * @param {string} serviceId
19740
+ * @param {string} mediaId
19153
19741
  * @param {*} [options] Override http request option.
19154
19742
  * @throws {RequiredError}
19155
19743
  * @memberof HospitalsApi
19156
19744
  */
19157
- 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>>;
19745
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19158
19746
  /**
19159
19747
  *
19160
- * @summary Create HospitalSpecialty.
19748
+ * @summary Get HospitalServiceMedia.
19161
19749
  * @param {string} hospitalId
19162
- * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
19750
+ * @param {string} specialtyId
19751
+ * @param {string} serviceId
19752
+ * @param {string} mediaId
19163
19753
  * @param {*} [options] Override http request option.
19164
19754
  * @throws {RequiredError}
19165
19755
  * @memberof HospitalsApi
19166
19756
  */
19167
- apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19757
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19168
19758
  /**
19169
19759
  *
19170
- * @summary Delete HospitalSpecialty.
19760
+ * @summary Update HospitalServiceMedia.
19171
19761
  * @param {string} hospitalId
19172
19762
  * @param {string} specialtyId
19763
+ * @param {string} serviceId
19764
+ * @param {string} mediaId
19765
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19173
19766
  * @param {*} [options] Override http request option.
19174
19767
  * @throws {RequiredError}
19175
19768
  * @memberof HospitalsApi
19176
19769
  */
19177
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19770
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19178
19771
  /**
19179
19772
  *
19180
- * @summary Get HospitalSpecialty.
19773
+ * @summary Create HospitalServiceMedia.
19181
19774
  * @param {string} hospitalId
19182
19775
  * @param {string} specialtyId
19776
+ * @param {string} serviceId
19777
+ * @param {CreateMediaCommand} [createMediaCommand]
19183
19778
  * @param {*} [options] Override http request option.
19184
19779
  * @throws {RequiredError}
19185
19780
  * @memberof HospitalsApi
19186
19781
  */
19187
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19782
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19188
19783
  /**
19189
19784
  *
19190
- * @summary Update HospitalSpecialty.
19785
+ * @summary Update HospitalService.
19191
19786
  * @param {string} hospitalId
19192
19787
  * @param {string} specialtyId
19193
- * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
19788
+ * @param {string} serviceId
19789
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
19194
19790
  * @param {*} [options] Override http request option.
19195
19791
  * @throws {RequiredError}
19196
19792
  * @memberof HospitalsApi
19197
19793
  */
19198
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19794
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19199
19795
  /**
19200
19796
  *
19201
19797
  * @summary Create Hospital.
@@ -19530,17 +20126,19 @@ export declare class NotificationsApi extends BaseAPI {
19530
20126
  */
19531
20127
  export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
19532
20128
  /**
19533
- * Sample request: GET /api/v1/hospitals/services
19534
- * @summary Get all services.
19535
- * @param {string} [id]
19536
- * @param {string} [name]
19537
- * @param {string} [description]
20129
+ *
20130
+ * @summary Get all HospitalServices.
19538
20131
  * @param {string} [hospitalId]
19539
20132
  * @param {string} [hospitalName]
19540
20133
  * @param {string} [hospitalSlug]
20134
+ * @param {string} [id]
20135
+ * @param {string} [name]
20136
+ * @param {string} [description]
19541
20137
  * @param {string} [specialtyId]
20138
+ * @param {string} [specialtyName]
19542
20139
  * @param {string} [specialtyTypeId]
19543
20140
  * @param {string} [specialtyTypeName]
20141
+ * @param {string} [serviceCategoryId]
19544
20142
  * @param {MarketingType} [marketingType]
19545
20143
  * @param {Procedure} [procedure]
19546
20144
  * @param {Date} [created]
@@ -19551,10 +20149,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
19551
20149
  * @param {*} [options] Override http request option.
19552
20150
  * @throws {RequiredError}
19553
20151
  */
19554
- apiV1ServicesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: 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>;
20152
+ 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>;
20153
+ /**
20154
+ *
20155
+ * @summary Get HospitalService.
20156
+ * @param {string} serviceId
20157
+ * @param {string} [languageCode]
20158
+ * @param {*} [options] Override http request option.
20159
+ * @throws {RequiredError}
20160
+ */
20161
+ apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19555
20162
  /**
19556
20163
  *
19557
- * @summary Get service by slug.
20164
+ * @summary Get HospitalService by slug.
19558
20165
  * @param {string} slug
19559
20166
  * @param {string} [languageCode]
19560
20167
  * @param {*} [options] Override http request option.
@@ -19568,17 +20175,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
19568
20175
  */
19569
20176
  export declare const ServicesApiFp: (configuration?: Configuration | undefined) => {
19570
20177
  /**
19571
- * Sample request: GET /api/v1/hospitals/services
19572
- * @summary Get all services.
19573
- * @param {string} [id]
19574
- * @param {string} [name]
19575
- * @param {string} [description]
20178
+ *
20179
+ * @summary Get all HospitalServices.
19576
20180
  * @param {string} [hospitalId]
19577
20181
  * @param {string} [hospitalName]
19578
20182
  * @param {string} [hospitalSlug]
20183
+ * @param {string} [id]
20184
+ * @param {string} [name]
20185
+ * @param {string} [description]
19579
20186
  * @param {string} [specialtyId]
20187
+ * @param {string} [specialtyName]
19580
20188
  * @param {string} [specialtyTypeId]
19581
20189
  * @param {string} [specialtyTypeName]
20190
+ * @param {string} [serviceCategoryId]
19582
20191
  * @param {MarketingType} [marketingType]
19583
20192
  * @param {Procedure} [procedure]
19584
20193
  * @param {Date} [created]
@@ -19589,16 +20198,25 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
19589
20198
  * @param {*} [options] Override http request option.
19590
20199
  * @throws {RequiredError}
19591
20200
  */
19592
- apiV1ServicesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: 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<ServicesModel>>;
20201
+ 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>>;
20202
+ /**
20203
+ *
20204
+ * @summary Get HospitalService.
20205
+ * @param {string} serviceId
20206
+ * @param {string} [languageCode]
20207
+ * @param {*} [options] Override http request option.
20208
+ * @throws {RequiredError}
20209
+ */
20210
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
19593
20211
  /**
19594
20212
  *
19595
- * @summary Get service by slug.
20213
+ * @summary Get HospitalService by slug.
19596
20214
  * @param {string} slug
19597
20215
  * @param {string} [languageCode]
19598
20216
  * @param {*} [options] Override http request option.
19599
20217
  * @throws {RequiredError}
19600
20218
  */
19601
- apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceModel>>;
20219
+ apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
19602
20220
  };
19603
20221
  /**
19604
20222
  * ServicesApi - factory interface
@@ -19606,17 +20224,19 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
19606
20224
  */
19607
20225
  export declare const ServicesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
19608
20226
  /**
19609
- * Sample request: GET /api/v1/hospitals/services
19610
- * @summary Get all services.
19611
- * @param {string} [id]
19612
- * @param {string} [name]
19613
- * @param {string} [description]
20227
+ *
20228
+ * @summary Get all HospitalServices.
19614
20229
  * @param {string} [hospitalId]
19615
20230
  * @param {string} [hospitalName]
19616
20231
  * @param {string} [hospitalSlug]
20232
+ * @param {string} [id]
20233
+ * @param {string} [name]
20234
+ * @param {string} [description]
19617
20235
  * @param {string} [specialtyId]
20236
+ * @param {string} [specialtyName]
19618
20237
  * @param {string} [specialtyTypeId]
19619
20238
  * @param {string} [specialtyTypeName]
20239
+ * @param {string} [serviceCategoryId]
19620
20240
  * @param {MarketingType} [marketingType]
19621
20241
  * @param {Procedure} [procedure]
19622
20242
  * @param {Date} [created]
@@ -19627,16 +20247,25 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
19627
20247
  * @param {*} [options] Override http request option.
19628
20248
  * @throws {RequiredError}
19629
20249
  */
19630
- apiV1ServicesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: 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<ServicesModel>;
20250
+ 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>;
20251
+ /**
20252
+ *
20253
+ * @summary Get HospitalService.
20254
+ * @param {string} serviceId
20255
+ * @param {string} [languageCode]
20256
+ * @param {*} [options] Override http request option.
20257
+ * @throws {RequiredError}
20258
+ */
20259
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
19631
20260
  /**
19632
20261
  *
19633
- * @summary Get service by slug.
20262
+ * @summary Get HospitalService by slug.
19634
20263
  * @param {string} slug
19635
20264
  * @param {string} [languageCode]
19636
20265
  * @param {*} [options] Override http request option.
19637
20266
  * @throws {RequiredError}
19638
20267
  */
19639
- apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceModel>;
20268
+ apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
19640
20269
  };
19641
20270
  /**
19642
20271
  * ServicesApi - object-oriented interface
@@ -19646,17 +20275,19 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
19646
20275
  */
19647
20276
  export declare class ServicesApi extends BaseAPI {
19648
20277
  /**
19649
- * Sample request: GET /api/v1/hospitals/services
19650
- * @summary Get all services.
19651
- * @param {string} [id]
19652
- * @param {string} [name]
19653
- * @param {string} [description]
20278
+ *
20279
+ * @summary Get all HospitalServices.
19654
20280
  * @param {string} [hospitalId]
19655
20281
  * @param {string} [hospitalName]
19656
20282
  * @param {string} [hospitalSlug]
20283
+ * @param {string} [id]
20284
+ * @param {string} [name]
20285
+ * @param {string} [description]
19657
20286
  * @param {string} [specialtyId]
20287
+ * @param {string} [specialtyName]
19658
20288
  * @param {string} [specialtyTypeId]
19659
20289
  * @param {string} [specialtyTypeName]
20290
+ * @param {string} [serviceCategoryId]
19660
20291
  * @param {MarketingType} [marketingType]
19661
20292
  * @param {Procedure} [procedure]
19662
20293
  * @param {Date} [created]
@@ -19668,17 +20299,27 @@ export declare class ServicesApi extends BaseAPI {
19668
20299
  * @throws {RequiredError}
19669
20300
  * @memberof ServicesApi
19670
20301
  */
19671
- apiV1ServicesGet(id?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyTypeId?: string, specialtyTypeName?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicesModel>>;
20302
+ 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>>;
20303
+ /**
20304
+ *
20305
+ * @summary Get HospitalService.
20306
+ * @param {string} serviceId
20307
+ * @param {string} [languageCode]
20308
+ * @param {*} [options] Override http request option.
20309
+ * @throws {RequiredError}
20310
+ * @memberof ServicesApi
20311
+ */
20312
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19672
20313
  /**
19673
20314
  *
19674
- * @summary Get service by slug.
20315
+ * @summary Get HospitalService by slug.
19675
20316
  * @param {string} slug
19676
20317
  * @param {string} [languageCode]
19677
20318
  * @param {*} [options] Override http request option.
19678
20319
  * @throws {RequiredError}
19679
20320
  * @memberof ServicesApi
19680
20321
  */
19681
- apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceModel>>;
20322
+ apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19682
20323
  }
19683
20324
  /**
19684
20325
  * ServicesCategoriesApi - axios parameter creator