ch-admin-api-client-typescript 2.1.2 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +1204 -115
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1861 -204
- package/package.json +1 -1
- package/src/api.ts +2074 -255
package/lib/api.d.ts
CHANGED
|
@@ -1686,6 +1686,25 @@ export declare enum ChargeStatus {
|
|
|
1686
1686
|
Succeeded = "Succeeded",
|
|
1687
1687
|
Failed = "Failed"
|
|
1688
1688
|
}
|
|
1689
|
+
/**
|
|
1690
|
+
*
|
|
1691
|
+
* @export
|
|
1692
|
+
* @interface CheckNotificationsCommand
|
|
1693
|
+
*/
|
|
1694
|
+
export interface CheckNotificationsCommand {
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {string}
|
|
1698
|
+
* @memberof CheckNotificationsCommand
|
|
1699
|
+
*/
|
|
1700
|
+
'notificationId'?: string | null;
|
|
1701
|
+
/**
|
|
1702
|
+
*
|
|
1703
|
+
* @type {boolean}
|
|
1704
|
+
* @memberof CheckNotificationsCommand
|
|
1705
|
+
*/
|
|
1706
|
+
'isDelete'?: boolean;
|
|
1707
|
+
}
|
|
1689
1708
|
/**
|
|
1690
1709
|
*
|
|
1691
1710
|
* @export
|
|
@@ -3387,6 +3406,19 @@ export interface CreateDealServiceCommand {
|
|
|
3387
3406
|
*/
|
|
3388
3407
|
'order'?: number;
|
|
3389
3408
|
}
|
|
3409
|
+
/**
|
|
3410
|
+
*
|
|
3411
|
+
* @export
|
|
3412
|
+
* @interface CreateDoctorAffiliationCommand
|
|
3413
|
+
*/
|
|
3414
|
+
export interface CreateDoctorAffiliationCommand {
|
|
3415
|
+
/**
|
|
3416
|
+
*
|
|
3417
|
+
* @type {string}
|
|
3418
|
+
* @memberof CreateDoctorAffiliationCommand
|
|
3419
|
+
*/
|
|
3420
|
+
'hospitalId'?: string;
|
|
3421
|
+
}
|
|
3390
3422
|
/**
|
|
3391
3423
|
*
|
|
3392
3424
|
* @export
|
|
@@ -3607,6 +3639,25 @@ export interface CreateDoctorPortfolioCommand {
|
|
|
3607
3639
|
*/
|
|
3608
3640
|
'photoAfterThumbnail'?: string | null;
|
|
3609
3641
|
}
|
|
3642
|
+
/**
|
|
3643
|
+
*
|
|
3644
|
+
* @export
|
|
3645
|
+
* @interface CreateDoctorSpecialtyCommand
|
|
3646
|
+
*/
|
|
3647
|
+
export interface CreateDoctorSpecialtyCommand {
|
|
3648
|
+
/**
|
|
3649
|
+
*
|
|
3650
|
+
* @type {string}
|
|
3651
|
+
* @memberof CreateDoctorSpecialtyCommand
|
|
3652
|
+
*/
|
|
3653
|
+
'specialtyId'?: string;
|
|
3654
|
+
/**
|
|
3655
|
+
*
|
|
3656
|
+
* @type {number}
|
|
3657
|
+
* @memberof CreateDoctorSpecialtyCommand
|
|
3658
|
+
*/
|
|
3659
|
+
'order'?: number;
|
|
3660
|
+
}
|
|
3610
3661
|
/**
|
|
3611
3662
|
*
|
|
3612
3663
|
* @export
|
|
@@ -4723,6 +4774,19 @@ export interface DealsModel {
|
|
|
4723
4774
|
*/
|
|
4724
4775
|
'metaData'?: PagedListMetaData;
|
|
4725
4776
|
}
|
|
4777
|
+
/**
|
|
4778
|
+
*
|
|
4779
|
+
* @export
|
|
4780
|
+
* @interface DeleteDoctorAffiliationCommand
|
|
4781
|
+
*/
|
|
4782
|
+
export interface DeleteDoctorAffiliationCommand {
|
|
4783
|
+
/**
|
|
4784
|
+
*
|
|
4785
|
+
* @type {string}
|
|
4786
|
+
* @memberof DeleteDoctorAffiliationCommand
|
|
4787
|
+
*/
|
|
4788
|
+
'hospitalId'?: string;
|
|
4789
|
+
}
|
|
4726
4790
|
/**
|
|
4727
4791
|
*
|
|
4728
4792
|
* @export
|
|
@@ -5112,6 +5176,73 @@ export interface DoctorAffiliation {
|
|
|
5112
5176
|
*/
|
|
5113
5177
|
'order'?: number;
|
|
5114
5178
|
}
|
|
5179
|
+
/**
|
|
5180
|
+
*
|
|
5181
|
+
* @export
|
|
5182
|
+
* @interface DoctorAffiliationModel
|
|
5183
|
+
*/
|
|
5184
|
+
export interface DoctorAffiliationModel {
|
|
5185
|
+
/**
|
|
5186
|
+
*
|
|
5187
|
+
* @type {string}
|
|
5188
|
+
* @memberof DoctorAffiliationModel
|
|
5189
|
+
*/
|
|
5190
|
+
'hospitalId'?: string;
|
|
5191
|
+
/**
|
|
5192
|
+
*
|
|
5193
|
+
* @type {string}
|
|
5194
|
+
* @memberof DoctorAffiliationModel
|
|
5195
|
+
*/
|
|
5196
|
+
'hospitalName'?: string | null;
|
|
5197
|
+
/**
|
|
5198
|
+
*
|
|
5199
|
+
* @type {string}
|
|
5200
|
+
* @memberof DoctorAffiliationModel
|
|
5201
|
+
*/
|
|
5202
|
+
'hospitalSlug'?: string | null;
|
|
5203
|
+
/**
|
|
5204
|
+
*
|
|
5205
|
+
* @type {string}
|
|
5206
|
+
* @memberof DoctorAffiliationModel
|
|
5207
|
+
*/
|
|
5208
|
+
'countryId'?: string;
|
|
5209
|
+
/**
|
|
5210
|
+
*
|
|
5211
|
+
* @type {string}
|
|
5212
|
+
* @memberof DoctorAffiliationModel
|
|
5213
|
+
*/
|
|
5214
|
+
'countryName'?: string | null;
|
|
5215
|
+
/**
|
|
5216
|
+
*
|
|
5217
|
+
* @type {string}
|
|
5218
|
+
* @memberof DoctorAffiliationModel
|
|
5219
|
+
*/
|
|
5220
|
+
'stateName'?: string | null;
|
|
5221
|
+
/**
|
|
5222
|
+
*
|
|
5223
|
+
* @type {string}
|
|
5224
|
+
* @memberof DoctorAffiliationModel
|
|
5225
|
+
*/
|
|
5226
|
+
'cityName'?: string | null;
|
|
5227
|
+
/**
|
|
5228
|
+
*
|
|
5229
|
+
* @type {string}
|
|
5230
|
+
* @memberof DoctorAffiliationModel
|
|
5231
|
+
*/
|
|
5232
|
+
'doctorId'?: string;
|
|
5233
|
+
/**
|
|
5234
|
+
*
|
|
5235
|
+
* @type {string}
|
|
5236
|
+
* @memberof DoctorAffiliationModel
|
|
5237
|
+
*/
|
|
5238
|
+
'doctorName'?: string | null;
|
|
5239
|
+
/**
|
|
5240
|
+
*
|
|
5241
|
+
* @type {number}
|
|
5242
|
+
* @memberof DoctorAffiliationModel
|
|
5243
|
+
*/
|
|
5244
|
+
'order'?: number;
|
|
5245
|
+
}
|
|
5115
5246
|
/**
|
|
5116
5247
|
*
|
|
5117
5248
|
* @export
|
|
@@ -8008,6 +8139,111 @@ export interface HospitalsModel {
|
|
|
8008
8139
|
*/
|
|
8009
8140
|
'metaData'?: PagedListMetaData;
|
|
8010
8141
|
}
|
|
8142
|
+
/**
|
|
8143
|
+
*
|
|
8144
|
+
* @export
|
|
8145
|
+
* @interface LanguageItemModel
|
|
8146
|
+
*/
|
|
8147
|
+
export interface LanguageItemModel {
|
|
8148
|
+
/**
|
|
8149
|
+
*
|
|
8150
|
+
* @type {string}
|
|
8151
|
+
* @memberof LanguageItemModel
|
|
8152
|
+
*/
|
|
8153
|
+
'id'?: string;
|
|
8154
|
+
/**
|
|
8155
|
+
*
|
|
8156
|
+
* @type {string}
|
|
8157
|
+
* @memberof LanguageItemModel
|
|
8158
|
+
*/
|
|
8159
|
+
'code'?: string | null;
|
|
8160
|
+
/**
|
|
8161
|
+
*
|
|
8162
|
+
* @type {string}
|
|
8163
|
+
* @memberof LanguageItemModel
|
|
8164
|
+
*/
|
|
8165
|
+
'name'?: string | null;
|
|
8166
|
+
/**
|
|
8167
|
+
*
|
|
8168
|
+
* @type {string}
|
|
8169
|
+
* @memberof LanguageItemModel
|
|
8170
|
+
*/
|
|
8171
|
+
'description'?: string | null;
|
|
8172
|
+
/**
|
|
8173
|
+
*
|
|
8174
|
+
* @type {boolean}
|
|
8175
|
+
* @memberof LanguageItemModel
|
|
8176
|
+
*/
|
|
8177
|
+
'published'?: boolean;
|
|
8178
|
+
/**
|
|
8179
|
+
*
|
|
8180
|
+
* @type {number}
|
|
8181
|
+
* @memberof LanguageItemModel
|
|
8182
|
+
*/
|
|
8183
|
+
'order'?: number;
|
|
8184
|
+
}
|
|
8185
|
+
/**
|
|
8186
|
+
*
|
|
8187
|
+
* @export
|
|
8188
|
+
* @interface LanguageModel
|
|
8189
|
+
*/
|
|
8190
|
+
export interface LanguageModel {
|
|
8191
|
+
/**
|
|
8192
|
+
*
|
|
8193
|
+
* @type {string}
|
|
8194
|
+
* @memberof LanguageModel
|
|
8195
|
+
*/
|
|
8196
|
+
'id'?: string;
|
|
8197
|
+
/**
|
|
8198
|
+
*
|
|
8199
|
+
* @type {string}
|
|
8200
|
+
* @memberof LanguageModel
|
|
8201
|
+
*/
|
|
8202
|
+
'code'?: string | null;
|
|
8203
|
+
/**
|
|
8204
|
+
*
|
|
8205
|
+
* @type {string}
|
|
8206
|
+
* @memberof LanguageModel
|
|
8207
|
+
*/
|
|
8208
|
+
'name'?: string | null;
|
|
8209
|
+
/**
|
|
8210
|
+
*
|
|
8211
|
+
* @type {string}
|
|
8212
|
+
* @memberof LanguageModel
|
|
8213
|
+
*/
|
|
8214
|
+
'description'?: string | null;
|
|
8215
|
+
/**
|
|
8216
|
+
*
|
|
8217
|
+
* @type {boolean}
|
|
8218
|
+
* @memberof LanguageModel
|
|
8219
|
+
*/
|
|
8220
|
+
'published'?: boolean;
|
|
8221
|
+
/**
|
|
8222
|
+
*
|
|
8223
|
+
* @type {number}
|
|
8224
|
+
* @memberof LanguageModel
|
|
8225
|
+
*/
|
|
8226
|
+
'order'?: number;
|
|
8227
|
+
}
|
|
8228
|
+
/**
|
|
8229
|
+
*
|
|
8230
|
+
* @export
|
|
8231
|
+
* @interface LanguagesModel
|
|
8232
|
+
*/
|
|
8233
|
+
export interface LanguagesModel {
|
|
8234
|
+
/**
|
|
8235
|
+
*
|
|
8236
|
+
* @type {Array<LanguageItemModel>}
|
|
8237
|
+
* @memberof LanguagesModel
|
|
8238
|
+
*/
|
|
8239
|
+
'items'?: Array<LanguageItemModel> | null;
|
|
8240
|
+
/**
|
|
8241
|
+
*
|
|
8242
|
+
* @type {PagedListMetaData}
|
|
8243
|
+
* @memberof LanguagesModel
|
|
8244
|
+
*/
|
|
8245
|
+
'metaData'?: PagedListMetaData;
|
|
8246
|
+
}
|
|
8011
8247
|
/**
|
|
8012
8248
|
*
|
|
8013
8249
|
* @export
|
|
@@ -8549,6 +8785,124 @@ export interface MembershipInvitation {
|
|
|
8549
8785
|
*/
|
|
8550
8786
|
'email'?: string | null;
|
|
8551
8787
|
}
|
|
8788
|
+
/**
|
|
8789
|
+
*
|
|
8790
|
+
* @export
|
|
8791
|
+
* @enum {string}
|
|
8792
|
+
*/
|
|
8793
|
+
export declare enum NotificationCode {
|
|
8794
|
+
WelcomeEmail = "WelcomeEmail",
|
|
8795
|
+
DirectMessageSent = "DirectMessageSent",
|
|
8796
|
+
BookingNew = "BookingNew",
|
|
8797
|
+
BookingUpdated = "BookingUpdated",
|
|
8798
|
+
BookingRejected = "BookingRejected",
|
|
8799
|
+
BookingApproved = "BookingApproved",
|
|
8800
|
+
BookingPaid = "BookingPaid",
|
|
8801
|
+
BookingCanceled = "BookingCanceled",
|
|
8802
|
+
BookingRefundRequested = "BookingRefundRequested",
|
|
8803
|
+
BookingRefunded = "BookingRefunded",
|
|
8804
|
+
ConsultationNew = "ConsultationNew",
|
|
8805
|
+
ConsultationUpdated = "ConsultationUpdated",
|
|
8806
|
+
ConsultationRejected = "ConsultationRejected",
|
|
8807
|
+
ConsultationApproved = "ConsultationApproved",
|
|
8808
|
+
ConsultationPaid = "ConsultationPaid",
|
|
8809
|
+
ConsultationCanceled = "ConsultationCanceled",
|
|
8810
|
+
ConsultationRefundRequested = "ConsultationRefundRequested",
|
|
8811
|
+
ConsultationRefunded = "ConsultationRefunded",
|
|
8812
|
+
ConsultationReady = "ConsultationReady"
|
|
8813
|
+
}
|
|
8814
|
+
/**
|
|
8815
|
+
*
|
|
8816
|
+
* @export
|
|
8817
|
+
* @interface NotificationModel
|
|
8818
|
+
*/
|
|
8819
|
+
export interface NotificationModel {
|
|
8820
|
+
/**
|
|
8821
|
+
*
|
|
8822
|
+
* @type {string}
|
|
8823
|
+
* @memberof NotificationModel
|
|
8824
|
+
*/
|
|
8825
|
+
'id'?: string;
|
|
8826
|
+
/**
|
|
8827
|
+
*
|
|
8828
|
+
* @type {NotificationCode}
|
|
8829
|
+
* @memberof NotificationModel
|
|
8830
|
+
*/
|
|
8831
|
+
'notificationCode'?: NotificationCode;
|
|
8832
|
+
/**
|
|
8833
|
+
*
|
|
8834
|
+
* @type {string}
|
|
8835
|
+
* @memberof NotificationModel
|
|
8836
|
+
*/
|
|
8837
|
+
'notificationTargetId'?: string;
|
|
8838
|
+
/**
|
|
8839
|
+
*
|
|
8840
|
+
* @type {string}
|
|
8841
|
+
* @memberof NotificationModel
|
|
8842
|
+
*/
|
|
8843
|
+
'senderId'?: string | null;
|
|
8844
|
+
/**
|
|
8845
|
+
*
|
|
8846
|
+
* @type {string}
|
|
8847
|
+
* @memberof NotificationModel
|
|
8848
|
+
*/
|
|
8849
|
+
'senderName'?: string | null;
|
|
8850
|
+
/**
|
|
8851
|
+
*
|
|
8852
|
+
* @type {string}
|
|
8853
|
+
* @memberof NotificationModel
|
|
8854
|
+
*/
|
|
8855
|
+
'receiverId'?: string | null;
|
|
8856
|
+
/**
|
|
8857
|
+
*
|
|
8858
|
+
* @type {string}
|
|
8859
|
+
* @memberof NotificationModel
|
|
8860
|
+
*/
|
|
8861
|
+
'receiverName'?: string | null;
|
|
8862
|
+
/**
|
|
8863
|
+
*
|
|
8864
|
+
* @type {string}
|
|
8865
|
+
* @memberof NotificationModel
|
|
8866
|
+
*/
|
|
8867
|
+
'message'?: string | null;
|
|
8868
|
+
/**
|
|
8869
|
+
*
|
|
8870
|
+
* @type {Date}
|
|
8871
|
+
* @memberof NotificationModel
|
|
8872
|
+
*/
|
|
8873
|
+
'createdAt'?: Date;
|
|
8874
|
+
/**
|
|
8875
|
+
*
|
|
8876
|
+
* @type {boolean}
|
|
8877
|
+
* @memberof NotificationModel
|
|
8878
|
+
*/
|
|
8879
|
+
'isChecked'?: boolean;
|
|
8880
|
+
}
|
|
8881
|
+
/**
|
|
8882
|
+
*
|
|
8883
|
+
* @export
|
|
8884
|
+
* @interface NotificationsModel
|
|
8885
|
+
*/
|
|
8886
|
+
export interface NotificationsModel {
|
|
8887
|
+
/**
|
|
8888
|
+
*
|
|
8889
|
+
* @type {Array<NotificationModel>}
|
|
8890
|
+
* @memberof NotificationsModel
|
|
8891
|
+
*/
|
|
8892
|
+
'items'?: Array<NotificationModel> | null;
|
|
8893
|
+
/**
|
|
8894
|
+
*
|
|
8895
|
+
* @type {PagedListMetaData}
|
|
8896
|
+
* @memberof NotificationsModel
|
|
8897
|
+
*/
|
|
8898
|
+
'metaData'?: PagedListMetaData;
|
|
8899
|
+
/**
|
|
8900
|
+
*
|
|
8901
|
+
* @type {number}
|
|
8902
|
+
* @memberof NotificationsModel
|
|
8903
|
+
*/
|
|
8904
|
+
'unreadCount'?: number;
|
|
8905
|
+
}
|
|
8552
8906
|
/**
|
|
8553
8907
|
*
|
|
8554
8908
|
* @export
|
|
@@ -10805,15 +11159,34 @@ export interface UpdateContributorCommand {
|
|
|
10805
11159
|
/**
|
|
10806
11160
|
*
|
|
10807
11161
|
* @export
|
|
10808
|
-
* @interface
|
|
11162
|
+
* @interface UpdateContributorSnsHandleCommand
|
|
10809
11163
|
*/
|
|
10810
|
-
export interface
|
|
11164
|
+
export interface UpdateContributorSnsHandleCommand {
|
|
10811
11165
|
/**
|
|
10812
11166
|
*
|
|
10813
|
-
* @type {
|
|
10814
|
-
* @memberof
|
|
11167
|
+
* @type {SnsType}
|
|
11168
|
+
* @memberof UpdateContributorSnsHandleCommand
|
|
10815
11169
|
*/
|
|
10816
|
-
'
|
|
11170
|
+
'snsType'?: SnsType;
|
|
11171
|
+
/**
|
|
11172
|
+
*
|
|
11173
|
+
* @type {string}
|
|
11174
|
+
* @memberof UpdateContributorSnsHandleCommand
|
|
11175
|
+
*/
|
|
11176
|
+
'handle'?: string | null;
|
|
11177
|
+
}
|
|
11178
|
+
/**
|
|
11179
|
+
*
|
|
11180
|
+
* @export
|
|
11181
|
+
* @interface UpdateCountryCommand
|
|
11182
|
+
*/
|
|
11183
|
+
export interface UpdateCountryCommand {
|
|
11184
|
+
/**
|
|
11185
|
+
*
|
|
11186
|
+
* @type {string}
|
|
11187
|
+
* @memberof UpdateCountryCommand
|
|
11188
|
+
*/
|
|
11189
|
+
'name'?: string | null;
|
|
10817
11190
|
/**
|
|
10818
11191
|
*
|
|
10819
11192
|
* @type {string}
|
|
@@ -11140,6 +11513,19 @@ export interface UpdateDoctorPortfolioCommand {
|
|
|
11140
11513
|
*/
|
|
11141
11514
|
'photoAfterThumbnail'?: string | null;
|
|
11142
11515
|
}
|
|
11516
|
+
/**
|
|
11517
|
+
*
|
|
11518
|
+
* @export
|
|
11519
|
+
* @interface UpdateDoctorSpecialtyCommand
|
|
11520
|
+
*/
|
|
11521
|
+
export interface UpdateDoctorSpecialtyCommand {
|
|
11522
|
+
/**
|
|
11523
|
+
*
|
|
11524
|
+
* @type {number}
|
|
11525
|
+
* @memberof UpdateDoctorSpecialtyCommand
|
|
11526
|
+
*/
|
|
11527
|
+
'order'?: number;
|
|
11528
|
+
}
|
|
11143
11529
|
/**
|
|
11144
11530
|
*
|
|
11145
11531
|
* @export
|
|
@@ -11449,6 +11835,19 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11449
11835
|
*/
|
|
11450
11836
|
'order'?: number;
|
|
11451
11837
|
}
|
|
11838
|
+
/**
|
|
11839
|
+
*
|
|
11840
|
+
* @export
|
|
11841
|
+
* @interface UpdateHospitalSpecialtyCommand
|
|
11842
|
+
*/
|
|
11843
|
+
export interface UpdateHospitalSpecialtyCommand {
|
|
11844
|
+
/**
|
|
11845
|
+
*
|
|
11846
|
+
* @type {number}
|
|
11847
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11848
|
+
*/
|
|
11849
|
+
'order'?: number;
|
|
11850
|
+
}
|
|
11452
11851
|
/**
|
|
11453
11852
|
*
|
|
11454
11853
|
* @export
|
|
@@ -12355,7 +12754,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12355
12754
|
*
|
|
12356
12755
|
* @summary GetAll ArticleContributors.
|
|
12357
12756
|
* @param {string} articleId
|
|
12358
|
-
* @param {string} [articleId2]
|
|
12359
12757
|
* @param {string} [articleName]
|
|
12360
12758
|
* @param {string} [contributorId]
|
|
12361
12759
|
* @param {string} [contributorName]
|
|
@@ -12369,7 +12767,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12369
12767
|
* @param {*} [options] Override http request option.
|
|
12370
12768
|
* @throws {RequiredError}
|
|
12371
12769
|
*/
|
|
12372
|
-
apiV1ArticlesArticleIdContributorsGet: (articleId: string,
|
|
12770
|
+
apiV1ArticlesArticleIdContributorsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12373
12771
|
/**
|
|
12374
12772
|
*
|
|
12375
12773
|
* @summary Create ArticleContributor.
|
|
@@ -12507,7 +12905,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12507
12905
|
*
|
|
12508
12906
|
* @summary GetAll ArticleContributors.
|
|
12509
12907
|
* @param {string} articleId
|
|
12510
|
-
* @param {string} [articleId2]
|
|
12511
12908
|
* @param {string} [articleName]
|
|
12512
12909
|
* @param {string} [contributorId]
|
|
12513
12910
|
* @param {string} [contributorName]
|
|
@@ -12521,7 +12918,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12521
12918
|
* @param {*} [options] Override http request option.
|
|
12522
12919
|
* @throws {RequiredError}
|
|
12523
12920
|
*/
|
|
12524
|
-
apiV1ArticlesArticleIdTagsGet: (articleId: string,
|
|
12921
|
+
apiV1ArticlesArticleIdTagsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12525
12922
|
/**
|
|
12526
12923
|
*
|
|
12527
12924
|
* @param {string} articleId
|
|
@@ -12630,7 +13027,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12630
13027
|
*
|
|
12631
13028
|
* @summary GetAll ArticleContributors.
|
|
12632
13029
|
* @param {string} articleId
|
|
12633
|
-
* @param {string} [articleId2]
|
|
12634
13030
|
* @param {string} [articleName]
|
|
12635
13031
|
* @param {string} [contributorId]
|
|
12636
13032
|
* @param {string} [contributorName]
|
|
@@ -12644,7 +13040,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12644
13040
|
* @param {*} [options] Override http request option.
|
|
12645
13041
|
* @throws {RequiredError}
|
|
12646
13042
|
*/
|
|
12647
|
-
apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
13043
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
|
|
12648
13044
|
/**
|
|
12649
13045
|
*
|
|
12650
13046
|
* @summary Create ArticleContributor.
|
|
@@ -12782,7 +13178,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12782
13178
|
*
|
|
12783
13179
|
* @summary GetAll ArticleContributors.
|
|
12784
13180
|
* @param {string} articleId
|
|
12785
|
-
* @param {string} [articleId2]
|
|
12786
13181
|
* @param {string} [articleName]
|
|
12787
13182
|
* @param {string} [contributorId]
|
|
12788
13183
|
* @param {string} [contributorName]
|
|
@@ -12796,7 +13191,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12796
13191
|
* @param {*} [options] Override http request option.
|
|
12797
13192
|
* @throws {RequiredError}
|
|
12798
13193
|
*/
|
|
12799
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
13194
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
|
|
12800
13195
|
/**
|
|
12801
13196
|
*
|
|
12802
13197
|
* @param {string} articleId
|
|
@@ -12905,7 +13300,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12905
13300
|
*
|
|
12906
13301
|
* @summary GetAll ArticleContributors.
|
|
12907
13302
|
* @param {string} articleId
|
|
12908
|
-
* @param {string} [articleId2]
|
|
12909
13303
|
* @param {string} [articleName]
|
|
12910
13304
|
* @param {string} [contributorId]
|
|
12911
13305
|
* @param {string} [contributorName]
|
|
@@ -12919,7 +13313,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12919
13313
|
* @param {*} [options] Override http request option.
|
|
12920
13314
|
* @throws {RequiredError}
|
|
12921
13315
|
*/
|
|
12922
|
-
apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
13316
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
|
|
12923
13317
|
/**
|
|
12924
13318
|
*
|
|
12925
13319
|
* @summary Create ArticleContributor.
|
|
@@ -13057,7 +13451,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
13057
13451
|
*
|
|
13058
13452
|
* @summary GetAll ArticleContributors.
|
|
13059
13453
|
* @param {string} articleId
|
|
13060
|
-
* @param {string} [articleId2]
|
|
13061
13454
|
* @param {string} [articleName]
|
|
13062
13455
|
* @param {string} [contributorId]
|
|
13063
13456
|
* @param {string} [contributorName]
|
|
@@ -13071,7 +13464,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
13071
13464
|
* @param {*} [options] Override http request option.
|
|
13072
13465
|
* @throws {RequiredError}
|
|
13073
13466
|
*/
|
|
13074
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
13467
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
|
|
13075
13468
|
/**
|
|
13076
13469
|
*
|
|
13077
13470
|
* @param {string} articleId
|
|
@@ -13185,7 +13578,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13185
13578
|
*
|
|
13186
13579
|
* @summary GetAll ArticleContributors.
|
|
13187
13580
|
* @param {string} articleId
|
|
13188
|
-
* @param {string} [articleId2]
|
|
13189
13581
|
* @param {string} [articleName]
|
|
13190
13582
|
* @param {string} [contributorId]
|
|
13191
13583
|
* @param {string} [contributorName]
|
|
@@ -13200,7 +13592,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13200
13592
|
* @throws {RequiredError}
|
|
13201
13593
|
* @memberof ArticlesApi
|
|
13202
13594
|
*/
|
|
13203
|
-
apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
13595
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
|
|
13204
13596
|
/**
|
|
13205
13597
|
*
|
|
13206
13598
|
* @summary Create ArticleContributor.
|
|
@@ -13352,7 +13744,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13352
13744
|
*
|
|
13353
13745
|
* @summary GetAll ArticleContributors.
|
|
13354
13746
|
* @param {string} articleId
|
|
13355
|
-
* @param {string} [articleId2]
|
|
13356
13747
|
* @param {string} [articleName]
|
|
13357
13748
|
* @param {string} [contributorId]
|
|
13358
13749
|
* @param {string} [contributorName]
|
|
@@ -13367,7 +13758,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13367
13758
|
* @throws {RequiredError}
|
|
13368
13759
|
* @memberof ArticlesApi
|
|
13369
13760
|
*/
|
|
13370
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
13761
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
|
|
13371
13762
|
/**
|
|
13372
13763
|
*
|
|
13373
13764
|
* @param {string} articleId
|
|
@@ -14016,6 +14407,16 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
14016
14407
|
* @throws {RequiredError}
|
|
14017
14408
|
*/
|
|
14018
14409
|
apiV1ContributorsContributorIdHandlesHandleIdGet: (contributorId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14410
|
+
/**
|
|
14411
|
+
*
|
|
14412
|
+
* @summary Update ContributorHandle.
|
|
14413
|
+
* @param {string} contributorId
|
|
14414
|
+
* @param {string} handleId
|
|
14415
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14416
|
+
* @param {*} [options] Override http request option.
|
|
14417
|
+
* @throws {RequiredError}
|
|
14418
|
+
*/
|
|
14419
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut: (contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14019
14420
|
/**
|
|
14020
14421
|
*
|
|
14021
14422
|
* @summary Get ContributorHandle.
|
|
@@ -14126,6 +14527,16 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
14126
14527
|
* @throws {RequiredError}
|
|
14127
14528
|
*/
|
|
14128
14529
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14530
|
+
/**
|
|
14531
|
+
*
|
|
14532
|
+
* @summary Update ContributorHandle.
|
|
14533
|
+
* @param {string} contributorId
|
|
14534
|
+
* @param {string} handleId
|
|
14535
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14536
|
+
* @param {*} [options] Override http request option.
|
|
14537
|
+
* @throws {RequiredError}
|
|
14538
|
+
*/
|
|
14539
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14129
14540
|
/**
|
|
14130
14541
|
*
|
|
14131
14542
|
* @summary Get ContributorHandle.
|
|
@@ -14236,6 +14647,16 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
14236
14647
|
* @throws {RequiredError}
|
|
14237
14648
|
*/
|
|
14238
14649
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
14650
|
+
/**
|
|
14651
|
+
*
|
|
14652
|
+
* @summary Update ContributorHandle.
|
|
14653
|
+
* @param {string} contributorId
|
|
14654
|
+
* @param {string} handleId
|
|
14655
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14656
|
+
* @param {*} [options] Override http request option.
|
|
14657
|
+
* @throws {RequiredError}
|
|
14658
|
+
*/
|
|
14659
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
14239
14660
|
/**
|
|
14240
14661
|
*
|
|
14241
14662
|
* @summary Get ContributorHandle.
|
|
@@ -14353,6 +14774,17 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
14353
14774
|
* @memberof ContributorsApi
|
|
14354
14775
|
*/
|
|
14355
14776
|
apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
14777
|
+
/**
|
|
14778
|
+
*
|
|
14779
|
+
* @summary Update ContributorHandle.
|
|
14780
|
+
* @param {string} contributorId
|
|
14781
|
+
* @param {string} handleId
|
|
14782
|
+
* @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
|
|
14783
|
+
* @param {*} [options] Override http request option.
|
|
14784
|
+
* @throws {RequiredError}
|
|
14785
|
+
* @memberof ContributorsApi
|
|
14786
|
+
*/
|
|
14787
|
+
apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
14356
14788
|
/**
|
|
14357
14789
|
*
|
|
14358
14790
|
* @summary Get ContributorHandle.
|
|
@@ -15585,6 +16017,24 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15585
16017
|
* @export
|
|
15586
16018
|
*/
|
|
15587
16019
|
export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
16020
|
+
/**
|
|
16021
|
+
*
|
|
16022
|
+
* @summary Delete DoctorAffiliation.
|
|
16023
|
+
* @param {string} doctorId
|
|
16024
|
+
* @param {DeleteDoctorAffiliationCommand} [deleteDoctorAffiliationCommand]
|
|
16025
|
+
* @param {*} [options] Override http request option.
|
|
16026
|
+
* @throws {RequiredError}
|
|
16027
|
+
*/
|
|
16028
|
+
apiV1DoctorsDoctorIdAffiliationsDelete: (doctorId: string, deleteDoctorAffiliationCommand?: DeleteDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16029
|
+
/**
|
|
16030
|
+
*
|
|
16031
|
+
* @summary Create DoctorAffiliation.
|
|
16032
|
+
* @param {string} doctorId
|
|
16033
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
16034
|
+
* @param {*} [options] Override http request option.
|
|
16035
|
+
* @throws {RequiredError}
|
|
16036
|
+
*/
|
|
16037
|
+
apiV1DoctorsDoctorIdAffiliationsPost: (doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15588
16038
|
/**
|
|
15589
16039
|
*
|
|
15590
16040
|
* @summary Delete DoctorCertificate.
|
|
@@ -15824,7 +16274,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15824
16274
|
*
|
|
15825
16275
|
* @summary Get All DoctorSpecialties.
|
|
15826
16276
|
* @param {string} doctorId
|
|
15827
|
-
* @param {string} [doctorId2]
|
|
15828
16277
|
* @param {string} [doctorName]
|
|
15829
16278
|
* @param {string} [specialtyId]
|
|
15830
16279
|
* @param {string} [specialtyName]
|
|
@@ -15834,7 +16283,16 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15834
16283
|
* @param {*} [options] Override http request option.
|
|
15835
16284
|
* @throws {RequiredError}
|
|
15836
16285
|
*/
|
|
15837
|
-
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string,
|
|
16286
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16287
|
+
/**
|
|
16288
|
+
*
|
|
16289
|
+
* @summary Link a doctor to a specialty.
|
|
16290
|
+
* @param {string} doctorId
|
|
16291
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16292
|
+
* @param {*} [options] Override http request option.
|
|
16293
|
+
* @throws {RequiredError}
|
|
16294
|
+
*/
|
|
16295
|
+
apiV1DoctorsDoctorIdSpecialtiesPost: (doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15838
16296
|
/**
|
|
15839
16297
|
*
|
|
15840
16298
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -15855,16 +16313,17 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15855
16313
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15856
16314
|
/**
|
|
15857
16315
|
*
|
|
15858
|
-
* @summary
|
|
16316
|
+
* @summary Update DoctorSpecialty.
|
|
15859
16317
|
* @param {string} doctorId
|
|
15860
16318
|
* @param {string} specialtyId
|
|
16319
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
15861
16320
|
* @param {*} [options] Override http request option.
|
|
15862
16321
|
* @throws {RequiredError}
|
|
15863
16322
|
*/
|
|
15864
|
-
|
|
16323
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut: (doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15865
16324
|
/**
|
|
15866
16325
|
*
|
|
15867
|
-
* @summary Get all
|
|
16326
|
+
* @summary Get all Doctors.
|
|
15868
16327
|
* @param {string} [countryId]
|
|
15869
16328
|
* @param {string} [hospitalId]
|
|
15870
16329
|
* @param {MarketingType} [marketingType]
|
|
@@ -15911,6 +16370,24 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15911
16370
|
* @export
|
|
15912
16371
|
*/
|
|
15913
16372
|
export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
|
|
16373
|
+
/**
|
|
16374
|
+
*
|
|
16375
|
+
* @summary Delete DoctorAffiliation.
|
|
16376
|
+
* @param {string} doctorId
|
|
16377
|
+
* @param {DeleteDoctorAffiliationCommand} [deleteDoctorAffiliationCommand]
|
|
16378
|
+
* @param {*} [options] Override http request option.
|
|
16379
|
+
* @throws {RequiredError}
|
|
16380
|
+
*/
|
|
16381
|
+
apiV1DoctorsDoctorIdAffiliationsDelete(doctorId: string, deleteDoctorAffiliationCommand?: DeleteDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
16382
|
+
/**
|
|
16383
|
+
*
|
|
16384
|
+
* @summary Create DoctorAffiliation.
|
|
16385
|
+
* @param {string} doctorId
|
|
16386
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
16387
|
+
* @param {*} [options] Override http request option.
|
|
16388
|
+
* @throws {RequiredError}
|
|
16389
|
+
*/
|
|
16390
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
15914
16391
|
/**
|
|
15915
16392
|
*
|
|
15916
16393
|
* @summary Delete DoctorCertificate.
|
|
@@ -16145,12 +16622,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16145
16622
|
* @param {*} [options] Override http request option.
|
|
16146
16623
|
* @throws {RequiredError}
|
|
16147
16624
|
*/
|
|
16148
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16625
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
16149
16626
|
/**
|
|
16150
16627
|
*
|
|
16151
16628
|
* @summary Get All DoctorSpecialties.
|
|
16152
16629
|
* @param {string} doctorId
|
|
16153
|
-
* @param {string} [doctorId2]
|
|
16154
16630
|
* @param {string} [doctorName]
|
|
16155
16631
|
* @param {string} [specialtyId]
|
|
16156
16632
|
* @param {string} [specialtyName]
|
|
@@ -16160,7 +16636,16 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16160
16636
|
* @param {*} [options] Override http request option.
|
|
16161
16637
|
* @throws {RequiredError}
|
|
16162
16638
|
*/
|
|
16163
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
16639
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
16640
|
+
/**
|
|
16641
|
+
*
|
|
16642
|
+
* @summary Link a doctor to a specialty.
|
|
16643
|
+
* @param {string} doctorId
|
|
16644
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16645
|
+
* @param {*} [options] Override http request option.
|
|
16646
|
+
* @throws {RequiredError}
|
|
16647
|
+
*/
|
|
16648
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16164
16649
|
/**
|
|
16165
16650
|
*
|
|
16166
16651
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16181,16 +16666,17 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16181
16666
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16182
16667
|
/**
|
|
16183
16668
|
*
|
|
16184
|
-
* @summary
|
|
16669
|
+
* @summary Update DoctorSpecialty.
|
|
16185
16670
|
* @param {string} doctorId
|
|
16186
16671
|
* @param {string} specialtyId
|
|
16672
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16187
16673
|
* @param {*} [options] Override http request option.
|
|
16188
16674
|
* @throws {RequiredError}
|
|
16189
16675
|
*/
|
|
16190
|
-
|
|
16676
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16191
16677
|
/**
|
|
16192
16678
|
*
|
|
16193
|
-
* @summary Get all
|
|
16679
|
+
* @summary Get all Doctors.
|
|
16194
16680
|
* @param {string} [countryId]
|
|
16195
16681
|
* @param {string} [hospitalId]
|
|
16196
16682
|
* @param {MarketingType} [marketingType]
|
|
@@ -16237,6 +16723,24 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16237
16723
|
* @export
|
|
16238
16724
|
*/
|
|
16239
16725
|
export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
16726
|
+
/**
|
|
16727
|
+
*
|
|
16728
|
+
* @summary Delete DoctorAffiliation.
|
|
16729
|
+
* @param {string} doctorId
|
|
16730
|
+
* @param {DeleteDoctorAffiliationCommand} [deleteDoctorAffiliationCommand]
|
|
16731
|
+
* @param {*} [options] Override http request option.
|
|
16732
|
+
* @throws {RequiredError}
|
|
16733
|
+
*/
|
|
16734
|
+
apiV1DoctorsDoctorIdAffiliationsDelete(doctorId: string, deleteDoctorAffiliationCommand?: DeleteDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
16735
|
+
/**
|
|
16736
|
+
*
|
|
16737
|
+
* @summary Create DoctorAffiliation.
|
|
16738
|
+
* @param {string} doctorId
|
|
16739
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
16740
|
+
* @param {*} [options] Override http request option.
|
|
16741
|
+
* @throws {RequiredError}
|
|
16742
|
+
*/
|
|
16743
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
16240
16744
|
/**
|
|
16241
16745
|
*
|
|
16242
16746
|
* @summary Delete DoctorCertificate.
|
|
@@ -16471,12 +16975,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16471
16975
|
* @param {*} [options] Override http request option.
|
|
16472
16976
|
* @throws {RequiredError}
|
|
16473
16977
|
*/
|
|
16474
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<
|
|
16978
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
16475
16979
|
/**
|
|
16476
16980
|
*
|
|
16477
16981
|
* @summary Get All DoctorSpecialties.
|
|
16478
16982
|
* @param {string} doctorId
|
|
16479
|
-
* @param {string} [doctorId2]
|
|
16480
16983
|
* @param {string} [doctorName]
|
|
16481
16984
|
* @param {string} [specialtyId]
|
|
16482
16985
|
* @param {string} [specialtyName]
|
|
@@ -16486,7 +16989,16 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16486
16989
|
* @param {*} [options] Override http request option.
|
|
16487
16990
|
* @throws {RequiredError}
|
|
16488
16991
|
*/
|
|
16489
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
16992
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
16993
|
+
/**
|
|
16994
|
+
*
|
|
16995
|
+
* @summary Link a doctor to a specialty.
|
|
16996
|
+
* @param {string} doctorId
|
|
16997
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16998
|
+
* @param {*} [options] Override http request option.
|
|
16999
|
+
* @throws {RequiredError}
|
|
17000
|
+
*/
|
|
17001
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16490
17002
|
/**
|
|
16491
17003
|
*
|
|
16492
17004
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16507,16 +17019,17 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16507
17019
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16508
17020
|
/**
|
|
16509
17021
|
*
|
|
16510
|
-
* @summary
|
|
17022
|
+
* @summary Update DoctorSpecialty.
|
|
16511
17023
|
* @param {string} doctorId
|
|
16512
17024
|
* @param {string} specialtyId
|
|
17025
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16513
17026
|
* @param {*} [options] Override http request option.
|
|
16514
17027
|
* @throws {RequiredError}
|
|
16515
17028
|
*/
|
|
16516
|
-
|
|
17029
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16517
17030
|
/**
|
|
16518
17031
|
*
|
|
16519
|
-
* @summary Get all
|
|
17032
|
+
* @summary Get all Doctors.
|
|
16520
17033
|
* @param {string} [countryId]
|
|
16521
17034
|
* @param {string} [hospitalId]
|
|
16522
17035
|
* @param {MarketingType} [marketingType]
|
|
@@ -16565,6 +17078,26 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16565
17078
|
* @extends {BaseAPI}
|
|
16566
17079
|
*/
|
|
16567
17080
|
export declare class DoctorsApi extends BaseAPI {
|
|
17081
|
+
/**
|
|
17082
|
+
*
|
|
17083
|
+
* @summary Delete DoctorAffiliation.
|
|
17084
|
+
* @param {string} doctorId
|
|
17085
|
+
* @param {DeleteDoctorAffiliationCommand} [deleteDoctorAffiliationCommand]
|
|
17086
|
+
* @param {*} [options] Override http request option.
|
|
17087
|
+
* @throws {RequiredError}
|
|
17088
|
+
* @memberof DoctorsApi
|
|
17089
|
+
*/
|
|
17090
|
+
apiV1DoctorsDoctorIdAffiliationsDelete(doctorId: string, deleteDoctorAffiliationCommand?: DeleteDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
17091
|
+
/**
|
|
17092
|
+
*
|
|
17093
|
+
* @summary Create DoctorAffiliation.
|
|
17094
|
+
* @param {string} doctorId
|
|
17095
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
17096
|
+
* @param {*} [options] Override http request option.
|
|
17097
|
+
* @throws {RequiredError}
|
|
17098
|
+
* @memberof DoctorsApi
|
|
17099
|
+
*/
|
|
17100
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
16568
17101
|
/**
|
|
16569
17102
|
*
|
|
16570
17103
|
* @summary Delete DoctorCertificate.
|
|
@@ -16822,12 +17355,11 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16822
17355
|
* @throws {RequiredError}
|
|
16823
17356
|
* @memberof DoctorsApi
|
|
16824
17357
|
*/
|
|
16825
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17358
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
16826
17359
|
/**
|
|
16827
17360
|
*
|
|
16828
17361
|
* @summary Get All DoctorSpecialties.
|
|
16829
17362
|
* @param {string} doctorId
|
|
16830
|
-
* @param {string} [doctorId2]
|
|
16831
17363
|
* @param {string} [doctorName]
|
|
16832
17364
|
* @param {string} [specialtyId]
|
|
16833
17365
|
* @param {string} [specialtyName]
|
|
@@ -16838,7 +17370,17 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16838
17370
|
* @throws {RequiredError}
|
|
16839
17371
|
* @memberof DoctorsApi
|
|
16840
17372
|
*/
|
|
16841
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string,
|
|
17373
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
|
|
17374
|
+
/**
|
|
17375
|
+
*
|
|
17376
|
+
* @summary Link a doctor to a specialty.
|
|
17377
|
+
* @param {string} doctorId
|
|
17378
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
17379
|
+
* @param {*} [options] Override http request option.
|
|
17380
|
+
* @throws {RequiredError}
|
|
17381
|
+
* @memberof DoctorsApi
|
|
17382
|
+
*/
|
|
17383
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
16842
17384
|
/**
|
|
16843
17385
|
*
|
|
16844
17386
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -16861,17 +17403,18 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16861
17403
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
16862
17404
|
/**
|
|
16863
17405
|
*
|
|
16864
|
-
* @summary
|
|
17406
|
+
* @summary Update DoctorSpecialty.
|
|
16865
17407
|
* @param {string} doctorId
|
|
16866
17408
|
* @param {string} specialtyId
|
|
17409
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16867
17410
|
* @param {*} [options] Override http request option.
|
|
16868
17411
|
* @throws {RequiredError}
|
|
16869
17412
|
* @memberof DoctorsApi
|
|
16870
17413
|
*/
|
|
16871
|
-
|
|
17414
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
16872
17415
|
/**
|
|
16873
17416
|
*
|
|
16874
|
-
* @summary Get all
|
|
17417
|
+
* @summary Get all Doctors.
|
|
16875
17418
|
* @param {string} [countryId]
|
|
16876
17419
|
* @param {string} [hospitalId]
|
|
16877
17420
|
* @param {MarketingType} [marketingType]
|
|
@@ -16964,9 +17507,8 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16964
17507
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet: (hospitalId: string, accreditationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16965
17508
|
/**
|
|
16966
17509
|
*
|
|
16967
|
-
* @summary Get all
|
|
16968
|
-
* @param {string}
|
|
16969
|
-
* @param {string} [hospitalId]
|
|
17510
|
+
* @summary Get all HospitalAccreditations.
|
|
17511
|
+
* @param {string} hospitalId
|
|
16970
17512
|
* @param {string} [hospitalName]
|
|
16971
17513
|
* @param {string} [accreditationId]
|
|
16972
17514
|
* @param {string} [accreditationName]
|
|
@@ -16976,7 +17518,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16976
17518
|
* @param {*} [options] Override http request option.
|
|
16977
17519
|
* @throws {RequiredError}
|
|
16978
17520
|
*/
|
|
16979
|
-
apiV1HospitalsHospitalIdAccreditationsGet: (
|
|
17521
|
+
apiV1HospitalsHospitalIdAccreditationsGet: (hospitalId: string, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16980
17522
|
/**
|
|
16981
17523
|
*
|
|
16982
17524
|
* @summary Create HospitalAccreditation.
|
|
@@ -17215,13 +17757,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17215
17757
|
/**
|
|
17216
17758
|
*
|
|
17217
17759
|
* @summary Get all HospitalServices.
|
|
17218
|
-
* @param {string}
|
|
17760
|
+
* @param {string} hospitalId
|
|
17761
|
+
* @param {string} [hospitalName]
|
|
17762
|
+
* @param {string} [hospitalSlug]
|
|
17219
17763
|
* @param {string} [id]
|
|
17220
17764
|
* @param {string} [name]
|
|
17221
17765
|
* @param {string} [description]
|
|
17222
|
-
* @param {string} [hospitalId]
|
|
17223
|
-
* @param {string} [hospitalName]
|
|
17224
|
-
* @param {string} [hospitalSlug]
|
|
17225
17766
|
* @param {string} [specialtyId]
|
|
17226
17767
|
* @param {string} [specialtyTypeId]
|
|
17227
17768
|
* @param {string} [specialtyTypeName]
|
|
@@ -17235,7 +17776,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17235
17776
|
* @param {*} [options] Override http request option.
|
|
17236
17777
|
* @throws {RequiredError}
|
|
17237
17778
|
*/
|
|
17238
|
-
apiV1HospitalsHospitalIdServicesGet: (
|
|
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>;
|
|
17239
17780
|
/**
|
|
17240
17781
|
*
|
|
17241
17782
|
* @summary Create HospitalService.
|
|
@@ -17319,6 +17860,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17319
17860
|
* @throws {RequiredError}
|
|
17320
17861
|
*/
|
|
17321
17862
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17863
|
+
/**
|
|
17864
|
+
*
|
|
17865
|
+
* @summary Update HospitalSpecialty.
|
|
17866
|
+
* @param {string} hospitalId
|
|
17867
|
+
* @param {string} specialtyId
|
|
17868
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
17869
|
+
* @param {*} [options] Override http request option.
|
|
17870
|
+
* @throws {RequiredError}
|
|
17871
|
+
*/
|
|
17872
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17322
17873
|
/**
|
|
17323
17874
|
*
|
|
17324
17875
|
* @summary Create Hospital.
|
|
@@ -17385,9 +17936,8 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17385
17936
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationModel>>;
|
|
17386
17937
|
/**
|
|
17387
17938
|
*
|
|
17388
|
-
* @summary Get all
|
|
17389
|
-
* @param {string}
|
|
17390
|
-
* @param {string} [hospitalId]
|
|
17939
|
+
* @summary Get all HospitalAccreditations.
|
|
17940
|
+
* @param {string} hospitalId
|
|
17391
17941
|
* @param {string} [hospitalName]
|
|
17392
17942
|
* @param {string} [accreditationId]
|
|
17393
17943
|
* @param {string} [accreditationName]
|
|
@@ -17397,7 +17947,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17397
17947
|
* @param {*} [options] Override http request option.
|
|
17398
17948
|
* @throws {RequiredError}
|
|
17399
17949
|
*/
|
|
17400
|
-
apiV1HospitalsHospitalIdAccreditationsGet(
|
|
17950
|
+
apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationsModel>>;
|
|
17401
17951
|
/**
|
|
17402
17952
|
*
|
|
17403
17953
|
* @summary Create HospitalAccreditation.
|
|
@@ -17636,13 +18186,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17636
18186
|
/**
|
|
17637
18187
|
*
|
|
17638
18188
|
* @summary Get all HospitalServices.
|
|
17639
|
-
* @param {string}
|
|
18189
|
+
* @param {string} hospitalId
|
|
18190
|
+
* @param {string} [hospitalName]
|
|
18191
|
+
* @param {string} [hospitalSlug]
|
|
17640
18192
|
* @param {string} [id]
|
|
17641
18193
|
* @param {string} [name]
|
|
17642
18194
|
* @param {string} [description]
|
|
17643
|
-
* @param {string} [hospitalId]
|
|
17644
|
-
* @param {string} [hospitalName]
|
|
17645
|
-
* @param {string} [hospitalSlug]
|
|
17646
18195
|
* @param {string} [specialtyId]
|
|
17647
18196
|
* @param {string} [specialtyTypeId]
|
|
17648
18197
|
* @param {string} [specialtyTypeName]
|
|
@@ -17656,7 +18205,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17656
18205
|
* @param {*} [options] Override http request option.
|
|
17657
18206
|
* @throws {RequiredError}
|
|
17658
18207
|
*/
|
|
17659
|
-
apiV1HospitalsHospitalIdServicesGet(
|
|
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>>;
|
|
17660
18209
|
/**
|
|
17661
18210
|
*
|
|
17662
18211
|
* @summary Create HospitalService.
|
|
@@ -17740,6 +18289,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17740
18289
|
* @throws {RequiredError}
|
|
17741
18290
|
*/
|
|
17742
18291
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
18292
|
+
/**
|
|
18293
|
+
*
|
|
18294
|
+
* @summary Update HospitalSpecialty.
|
|
18295
|
+
* @param {string} hospitalId
|
|
18296
|
+
* @param {string} specialtyId
|
|
18297
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18298
|
+
* @param {*} [options] Override http request option.
|
|
18299
|
+
* @throws {RequiredError}
|
|
18300
|
+
*/
|
|
18301
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
17743
18302
|
/**
|
|
17744
18303
|
*
|
|
17745
18304
|
* @summary Create Hospital.
|
|
@@ -17806,9 +18365,8 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
17806
18365
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: any): AxiosPromise<HospitalAccreditationModel>;
|
|
17807
18366
|
/**
|
|
17808
18367
|
*
|
|
17809
|
-
* @summary Get all
|
|
17810
|
-
* @param {string}
|
|
17811
|
-
* @param {string} [hospitalId]
|
|
18368
|
+
* @summary Get all HospitalAccreditations.
|
|
18369
|
+
* @param {string} hospitalId
|
|
17812
18370
|
* @param {string} [hospitalName]
|
|
17813
18371
|
* @param {string} [accreditationId]
|
|
17814
18372
|
* @param {string} [accreditationName]
|
|
@@ -17818,7 +18376,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
17818
18376
|
* @param {*} [options] Override http request option.
|
|
17819
18377
|
* @throws {RequiredError}
|
|
17820
18378
|
*/
|
|
17821
|
-
apiV1HospitalsHospitalIdAccreditationsGet(
|
|
18379
|
+
apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalAccreditationsModel>;
|
|
17822
18380
|
/**
|
|
17823
18381
|
*
|
|
17824
18382
|
* @summary Create HospitalAccreditation.
|
|
@@ -18057,13 +18615,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18057
18615
|
/**
|
|
18058
18616
|
*
|
|
18059
18617
|
* @summary Get all HospitalServices.
|
|
18060
|
-
* @param {string}
|
|
18618
|
+
* @param {string} hospitalId
|
|
18619
|
+
* @param {string} [hospitalName]
|
|
18620
|
+
* @param {string} [hospitalSlug]
|
|
18061
18621
|
* @param {string} [id]
|
|
18062
18622
|
* @param {string} [name]
|
|
18063
18623
|
* @param {string} [description]
|
|
18064
|
-
* @param {string} [hospitalId]
|
|
18065
|
-
* @param {string} [hospitalName]
|
|
18066
|
-
* @param {string} [hospitalSlug]
|
|
18067
18624
|
* @param {string} [specialtyId]
|
|
18068
18625
|
* @param {string} [specialtyTypeId]
|
|
18069
18626
|
* @param {string} [specialtyTypeName]
|
|
@@ -18077,7 +18634,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18077
18634
|
* @param {*} [options] Override http request option.
|
|
18078
18635
|
* @throws {RequiredError}
|
|
18079
18636
|
*/
|
|
18080
|
-
apiV1HospitalsHospitalIdServicesGet(
|
|
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>;
|
|
18081
18638
|
/**
|
|
18082
18639
|
*
|
|
18083
18640
|
* @summary Create HospitalService.
|
|
@@ -18161,6 +18718,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
18161
18718
|
* @throws {RequiredError}
|
|
18162
18719
|
*/
|
|
18163
18720
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18721
|
+
/**
|
|
18722
|
+
*
|
|
18723
|
+
* @summary Update HospitalSpecialty.
|
|
18724
|
+
* @param {string} hospitalId
|
|
18725
|
+
* @param {string} specialtyId
|
|
18726
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
18727
|
+
* @param {*} [options] Override http request option.
|
|
18728
|
+
* @throws {RequiredError}
|
|
18729
|
+
*/
|
|
18730
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
18164
18731
|
/**
|
|
18165
18732
|
*
|
|
18166
18733
|
* @summary Create Hospital.
|
|
@@ -18232,9 +18799,8 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18232
18799
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationModel>>;
|
|
18233
18800
|
/**
|
|
18234
18801
|
*
|
|
18235
|
-
* @summary Get all
|
|
18236
|
-
* @param {string}
|
|
18237
|
-
* @param {string} [hospitalId]
|
|
18802
|
+
* @summary Get all HospitalAccreditations.
|
|
18803
|
+
* @param {string} hospitalId
|
|
18238
18804
|
* @param {string} [hospitalName]
|
|
18239
18805
|
* @param {string} [accreditationId]
|
|
18240
18806
|
* @param {string} [accreditationName]
|
|
@@ -18245,7 +18811,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18245
18811
|
* @throws {RequiredError}
|
|
18246
18812
|
* @memberof HospitalsApi
|
|
18247
18813
|
*/
|
|
18248
|
-
apiV1HospitalsHospitalIdAccreditationsGet(
|
|
18814
|
+
apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationsModel>>;
|
|
18249
18815
|
/**
|
|
18250
18816
|
*
|
|
18251
18817
|
* @summary Create HospitalAccreditation.
|
|
@@ -18507,13 +19073,12 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18507
19073
|
/**
|
|
18508
19074
|
*
|
|
18509
19075
|
* @summary Get all HospitalServices.
|
|
18510
|
-
* @param {string}
|
|
19076
|
+
* @param {string} hospitalId
|
|
19077
|
+
* @param {string} [hospitalName]
|
|
19078
|
+
* @param {string} [hospitalSlug]
|
|
18511
19079
|
* @param {string} [id]
|
|
18512
19080
|
* @param {string} [name]
|
|
18513
19081
|
* @param {string} [description]
|
|
18514
|
-
* @param {string} [hospitalId]
|
|
18515
|
-
* @param {string} [hospitalName]
|
|
18516
|
-
* @param {string} [hospitalSlug]
|
|
18517
19082
|
* @param {string} [specialtyId]
|
|
18518
19083
|
* @param {string} [specialtyTypeId]
|
|
18519
19084
|
* @param {string} [specialtyTypeName]
|
|
@@ -18528,7 +19093,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18528
19093
|
* @throws {RequiredError}
|
|
18529
19094
|
* @memberof HospitalsApi
|
|
18530
19095
|
*/
|
|
18531
|
-
apiV1HospitalsHospitalIdServicesGet(
|
|
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>>;
|
|
18532
19097
|
/**
|
|
18533
19098
|
*
|
|
18534
19099
|
* @summary Create HospitalService.
|
|
@@ -18620,6 +19185,17 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18620
19185
|
* @memberof HospitalsApi
|
|
18621
19186
|
*/
|
|
18622
19187
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
19188
|
+
/**
|
|
19189
|
+
*
|
|
19190
|
+
* @summary Update HospitalSpecialty.
|
|
19191
|
+
* @param {string} hospitalId
|
|
19192
|
+
* @param {string} specialtyId
|
|
19193
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
19194
|
+
* @param {*} [options] Override http request option.
|
|
19195
|
+
* @throws {RequiredError}
|
|
19196
|
+
* @memberof HospitalsApi
|
|
19197
|
+
*/
|
|
19198
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
18623
19199
|
/**
|
|
18624
19200
|
*
|
|
18625
19201
|
* @summary Create Hospital.
|
|
@@ -18641,57 +19217,365 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18641
19217
|
apiV1HospitalsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
18642
19218
|
}
|
|
18643
19219
|
/**
|
|
18644
|
-
*
|
|
19220
|
+
* ImagesApi - axios parameter creator
|
|
18645
19221
|
* @export
|
|
18646
19222
|
*/
|
|
18647
|
-
export declare const
|
|
19223
|
+
export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
18648
19224
|
/**
|
|
18649
|
-
*
|
|
18650
|
-
* @summary Get all services.
|
|
18651
|
-
* @param {string} [id]
|
|
18652
|
-
* @param {string} [name]
|
|
18653
|
-
* @param {string} [description]
|
|
18654
|
-
* @param {string} [hospitalId]
|
|
18655
|
-
* @param {string} [hospitalName]
|
|
18656
|
-
* @param {string} [hospitalSlug]
|
|
18657
|
-
* @param {string} [specialtyId]
|
|
18658
|
-
* @param {string} [specialtyTypeId]
|
|
18659
|
-
* @param {string} [specialtyTypeName]
|
|
18660
|
-
* @param {MarketingType} [marketingType]
|
|
18661
|
-
* @param {Procedure} [procedure]
|
|
18662
|
-
* @param {Date} [created]
|
|
18663
|
-
* @param {string} [languageCode]
|
|
18664
|
-
* @param {number} [page]
|
|
18665
|
-
* @param {number} [limit]
|
|
18666
|
-
* @param {Date} [lastRetrieved]
|
|
19225
|
+
*
|
|
18667
19226
|
* @param {*} [options] Override http request option.
|
|
18668
19227
|
* @throws {RequiredError}
|
|
18669
19228
|
*/
|
|
18670
|
-
|
|
19229
|
+
apiV1ImagesPost: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19230
|
+
};
|
|
19231
|
+
/**
|
|
19232
|
+
* ImagesApi - functional programming interface
|
|
19233
|
+
* @export
|
|
19234
|
+
*/
|
|
19235
|
+
export declare const ImagesApiFp: (configuration?: Configuration | undefined) => {
|
|
18671
19236
|
/**
|
|
18672
19237
|
*
|
|
18673
|
-
* @summary Get service by slug.
|
|
18674
|
-
* @param {string} slug
|
|
18675
|
-
* @param {string} [languageCode]
|
|
18676
19238
|
* @param {*} [options] Override http request option.
|
|
18677
19239
|
* @throws {RequiredError}
|
|
18678
19240
|
*/
|
|
18679
|
-
|
|
19241
|
+
apiV1ImagesPost(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<MediaModel>>>;
|
|
18680
19242
|
};
|
|
18681
19243
|
/**
|
|
18682
|
-
*
|
|
19244
|
+
* ImagesApi - factory interface
|
|
18683
19245
|
* @export
|
|
18684
19246
|
*/
|
|
18685
|
-
export declare const
|
|
19247
|
+
export declare const ImagesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
18686
19248
|
/**
|
|
18687
|
-
*
|
|
18688
|
-
* @
|
|
18689
|
-
* @
|
|
18690
|
-
|
|
18691
|
-
|
|
18692
|
-
|
|
18693
|
-
|
|
18694
|
-
|
|
19249
|
+
*
|
|
19250
|
+
* @param {*} [options] Override http request option.
|
|
19251
|
+
* @throws {RequiredError}
|
|
19252
|
+
*/
|
|
19253
|
+
apiV1ImagesPost(options?: any): AxiosPromise<Array<MediaModel>>;
|
|
19254
|
+
};
|
|
19255
|
+
/**
|
|
19256
|
+
* ImagesApi - object-oriented interface
|
|
19257
|
+
* @export
|
|
19258
|
+
* @class ImagesApi
|
|
19259
|
+
* @extends {BaseAPI}
|
|
19260
|
+
*/
|
|
19261
|
+
export declare class ImagesApi extends BaseAPI {
|
|
19262
|
+
/**
|
|
19263
|
+
*
|
|
19264
|
+
* @param {*} [options] Override http request option.
|
|
19265
|
+
* @throws {RequiredError}
|
|
19266
|
+
* @memberof ImagesApi
|
|
19267
|
+
*/
|
|
19268
|
+
apiV1ImagesPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel[]>>;
|
|
19269
|
+
}
|
|
19270
|
+
/**
|
|
19271
|
+
* LanguagesApi - axios parameter creator
|
|
19272
|
+
* @export
|
|
19273
|
+
*/
|
|
19274
|
+
export declare const LanguagesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
19275
|
+
/**
|
|
19276
|
+
*
|
|
19277
|
+
* @summary Get Language by code.
|
|
19278
|
+
* @param {string} code
|
|
19279
|
+
* @param {*} [options] Override http request option.
|
|
19280
|
+
* @throws {RequiredError}
|
|
19281
|
+
*/
|
|
19282
|
+
apiV1LanguagesCodeGet: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19283
|
+
/**
|
|
19284
|
+
*
|
|
19285
|
+
* @summary Get all Languages.
|
|
19286
|
+
* @param {string} [id]
|
|
19287
|
+
* @param {string} [name]
|
|
19288
|
+
* @param {string} [code]
|
|
19289
|
+
* @param {string} [description]
|
|
19290
|
+
* @param {number} [page]
|
|
19291
|
+
* @param {number} [limit]
|
|
19292
|
+
* @param {Date} [lastRetrieved]
|
|
19293
|
+
* @param {*} [options] Override http request option.
|
|
19294
|
+
* @throws {RequiredError}
|
|
19295
|
+
*/
|
|
19296
|
+
apiV1LanguagesGet: (id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19297
|
+
/**
|
|
19298
|
+
*
|
|
19299
|
+
* @summary Get Language.
|
|
19300
|
+
* @param {string} id
|
|
19301
|
+
* @param {*} [options] Override http request option.
|
|
19302
|
+
* @throws {RequiredError}
|
|
19303
|
+
*/
|
|
19304
|
+
apiV1LanguagesIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19305
|
+
};
|
|
19306
|
+
/**
|
|
19307
|
+
* LanguagesApi - functional programming interface
|
|
19308
|
+
* @export
|
|
19309
|
+
*/
|
|
19310
|
+
export declare const LanguagesApiFp: (configuration?: Configuration | undefined) => {
|
|
19311
|
+
/**
|
|
19312
|
+
*
|
|
19313
|
+
* @summary Get Language by code.
|
|
19314
|
+
* @param {string} code
|
|
19315
|
+
* @param {*} [options] Override http request option.
|
|
19316
|
+
* @throws {RequiredError}
|
|
19317
|
+
*/
|
|
19318
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
19319
|
+
/**
|
|
19320
|
+
*
|
|
19321
|
+
* @summary Get all Languages.
|
|
19322
|
+
* @param {string} [id]
|
|
19323
|
+
* @param {string} [name]
|
|
19324
|
+
* @param {string} [code]
|
|
19325
|
+
* @param {string} [description]
|
|
19326
|
+
* @param {number} [page]
|
|
19327
|
+
* @param {number} [limit]
|
|
19328
|
+
* @param {Date} [lastRetrieved]
|
|
19329
|
+
* @param {*} [options] Override http request option.
|
|
19330
|
+
* @throws {RequiredError}
|
|
19331
|
+
*/
|
|
19332
|
+
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
19333
|
+
/**
|
|
19334
|
+
*
|
|
19335
|
+
* @summary Get Language.
|
|
19336
|
+
* @param {string} id
|
|
19337
|
+
* @param {*} [options] Override http request option.
|
|
19338
|
+
* @throws {RequiredError}
|
|
19339
|
+
*/
|
|
19340
|
+
apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
19341
|
+
};
|
|
19342
|
+
/**
|
|
19343
|
+
* LanguagesApi - factory interface
|
|
19344
|
+
* @export
|
|
19345
|
+
*/
|
|
19346
|
+
export declare const LanguagesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
19347
|
+
/**
|
|
19348
|
+
*
|
|
19349
|
+
* @summary Get Language by code.
|
|
19350
|
+
* @param {string} code
|
|
19351
|
+
* @param {*} [options] Override http request option.
|
|
19352
|
+
* @throws {RequiredError}
|
|
19353
|
+
*/
|
|
19354
|
+
apiV1LanguagesCodeGet(code: string, options?: any): AxiosPromise<LanguageModel>;
|
|
19355
|
+
/**
|
|
19356
|
+
*
|
|
19357
|
+
* @summary Get all Languages.
|
|
19358
|
+
* @param {string} [id]
|
|
19359
|
+
* @param {string} [name]
|
|
19360
|
+
* @param {string} [code]
|
|
19361
|
+
* @param {string} [description]
|
|
19362
|
+
* @param {number} [page]
|
|
19363
|
+
* @param {number} [limit]
|
|
19364
|
+
* @param {Date} [lastRetrieved]
|
|
19365
|
+
* @param {*} [options] Override http request option.
|
|
19366
|
+
* @throws {RequiredError}
|
|
19367
|
+
*/
|
|
19368
|
+
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LanguagesModel>;
|
|
19369
|
+
/**
|
|
19370
|
+
*
|
|
19371
|
+
* @summary Get Language.
|
|
19372
|
+
* @param {string} id
|
|
19373
|
+
* @param {*} [options] Override http request option.
|
|
19374
|
+
* @throws {RequiredError}
|
|
19375
|
+
*/
|
|
19376
|
+
apiV1LanguagesIdGet(id: string, options?: any): AxiosPromise<LanguageModel>;
|
|
19377
|
+
};
|
|
19378
|
+
/**
|
|
19379
|
+
* LanguagesApi - object-oriented interface
|
|
19380
|
+
* @export
|
|
19381
|
+
* @class LanguagesApi
|
|
19382
|
+
* @extends {BaseAPI}
|
|
19383
|
+
*/
|
|
19384
|
+
export declare class LanguagesApi extends BaseAPI {
|
|
19385
|
+
/**
|
|
19386
|
+
*
|
|
19387
|
+
* @summary Get Language by code.
|
|
19388
|
+
* @param {string} code
|
|
19389
|
+
* @param {*} [options] Override http request option.
|
|
19390
|
+
* @throws {RequiredError}
|
|
19391
|
+
* @memberof LanguagesApi
|
|
19392
|
+
*/
|
|
19393
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
19394
|
+
/**
|
|
19395
|
+
*
|
|
19396
|
+
* @summary Get all Languages.
|
|
19397
|
+
* @param {string} [id]
|
|
19398
|
+
* @param {string} [name]
|
|
19399
|
+
* @param {string} [code]
|
|
19400
|
+
* @param {string} [description]
|
|
19401
|
+
* @param {number} [page]
|
|
19402
|
+
* @param {number} [limit]
|
|
19403
|
+
* @param {Date} [lastRetrieved]
|
|
19404
|
+
* @param {*} [options] Override http request option.
|
|
19405
|
+
* @throws {RequiredError}
|
|
19406
|
+
* @memberof LanguagesApi
|
|
19407
|
+
*/
|
|
19408
|
+
apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
19409
|
+
/**
|
|
19410
|
+
*
|
|
19411
|
+
* @summary Get Language.
|
|
19412
|
+
* @param {string} id
|
|
19413
|
+
* @param {*} [options] Override http request option.
|
|
19414
|
+
* @throws {RequiredError}
|
|
19415
|
+
* @memberof LanguagesApi
|
|
19416
|
+
*/
|
|
19417
|
+
apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
19418
|
+
}
|
|
19419
|
+
/**
|
|
19420
|
+
* NotificationsApi - axios parameter creator
|
|
19421
|
+
* @export
|
|
19422
|
+
*/
|
|
19423
|
+
export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
19424
|
+
/**
|
|
19425
|
+
*
|
|
19426
|
+
* @summary Check notification.
|
|
19427
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
19428
|
+
* @param {*} [options] Override http request option.
|
|
19429
|
+
* @throws {RequiredError}
|
|
19430
|
+
*/
|
|
19431
|
+
apiV1NotificationsCheckPost: (checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19432
|
+
/**
|
|
19433
|
+
*
|
|
19434
|
+
* @summary Get all notifications.
|
|
19435
|
+
* @param {NotificationCode} [notificationCode]
|
|
19436
|
+
* @param {boolean} [unreadCountOnly]
|
|
19437
|
+
* @param {number} [page]
|
|
19438
|
+
* @param {number} [limit]
|
|
19439
|
+
* @param {Date} [lastRetrieved]
|
|
19440
|
+
* @param {*} [options] Override http request option.
|
|
19441
|
+
* @throws {RequiredError}
|
|
19442
|
+
*/
|
|
19443
|
+
apiV1NotificationsGet: (notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19444
|
+
};
|
|
19445
|
+
/**
|
|
19446
|
+
* NotificationsApi - functional programming interface
|
|
19447
|
+
* @export
|
|
19448
|
+
*/
|
|
19449
|
+
export declare const NotificationsApiFp: (configuration?: Configuration | undefined) => {
|
|
19450
|
+
/**
|
|
19451
|
+
*
|
|
19452
|
+
* @summary Check notification.
|
|
19453
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
19454
|
+
* @param {*} [options] Override http request option.
|
|
19455
|
+
* @throws {RequiredError}
|
|
19456
|
+
*/
|
|
19457
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19458
|
+
/**
|
|
19459
|
+
*
|
|
19460
|
+
* @summary Get all notifications.
|
|
19461
|
+
* @param {NotificationCode} [notificationCode]
|
|
19462
|
+
* @param {boolean} [unreadCountOnly]
|
|
19463
|
+
* @param {number} [page]
|
|
19464
|
+
* @param {number} [limit]
|
|
19465
|
+
* @param {Date} [lastRetrieved]
|
|
19466
|
+
* @param {*} [options] Override http request option.
|
|
19467
|
+
* @throws {RequiredError}
|
|
19468
|
+
*/
|
|
19469
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<NotificationsModel>>;
|
|
19470
|
+
};
|
|
19471
|
+
/**
|
|
19472
|
+
* NotificationsApi - factory interface
|
|
19473
|
+
* @export
|
|
19474
|
+
*/
|
|
19475
|
+
export declare const NotificationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
19476
|
+
/**
|
|
19477
|
+
*
|
|
19478
|
+
* @summary Check notification.
|
|
19479
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
19480
|
+
* @param {*} [options] Override http request option.
|
|
19481
|
+
* @throws {RequiredError}
|
|
19482
|
+
*/
|
|
19483
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
19484
|
+
/**
|
|
19485
|
+
*
|
|
19486
|
+
* @summary Get all notifications.
|
|
19487
|
+
* @param {NotificationCode} [notificationCode]
|
|
19488
|
+
* @param {boolean} [unreadCountOnly]
|
|
19489
|
+
* @param {number} [page]
|
|
19490
|
+
* @param {number} [limit]
|
|
19491
|
+
* @param {Date} [lastRetrieved]
|
|
19492
|
+
* @param {*} [options] Override http request option.
|
|
19493
|
+
* @throws {RequiredError}
|
|
19494
|
+
*/
|
|
19495
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<NotificationsModel>;
|
|
19496
|
+
};
|
|
19497
|
+
/**
|
|
19498
|
+
* NotificationsApi - object-oriented interface
|
|
19499
|
+
* @export
|
|
19500
|
+
* @class NotificationsApi
|
|
19501
|
+
* @extends {BaseAPI}
|
|
19502
|
+
*/
|
|
19503
|
+
export declare class NotificationsApi extends BaseAPI {
|
|
19504
|
+
/**
|
|
19505
|
+
*
|
|
19506
|
+
* @summary Check notification.
|
|
19507
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
19508
|
+
* @param {*} [options] Override http request option.
|
|
19509
|
+
* @throws {RequiredError}
|
|
19510
|
+
* @memberof NotificationsApi
|
|
19511
|
+
*/
|
|
19512
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19513
|
+
/**
|
|
19514
|
+
*
|
|
19515
|
+
* @summary Get all notifications.
|
|
19516
|
+
* @param {NotificationCode} [notificationCode]
|
|
19517
|
+
* @param {boolean} [unreadCountOnly]
|
|
19518
|
+
* @param {number} [page]
|
|
19519
|
+
* @param {number} [limit]
|
|
19520
|
+
* @param {Date} [lastRetrieved]
|
|
19521
|
+
* @param {*} [options] Override http request option.
|
|
19522
|
+
* @throws {RequiredError}
|
|
19523
|
+
* @memberof NotificationsApi
|
|
19524
|
+
*/
|
|
19525
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel>>;
|
|
19526
|
+
}
|
|
19527
|
+
/**
|
|
19528
|
+
* ServicesApi - axios parameter creator
|
|
19529
|
+
* @export
|
|
19530
|
+
*/
|
|
19531
|
+
export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
19532
|
+
/**
|
|
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]
|
|
19538
|
+
* @param {string} [hospitalId]
|
|
19539
|
+
* @param {string} [hospitalName]
|
|
19540
|
+
* @param {string} [hospitalSlug]
|
|
19541
|
+
* @param {string} [specialtyId]
|
|
19542
|
+
* @param {string} [specialtyTypeId]
|
|
19543
|
+
* @param {string} [specialtyTypeName]
|
|
19544
|
+
* @param {MarketingType} [marketingType]
|
|
19545
|
+
* @param {Procedure} [procedure]
|
|
19546
|
+
* @param {Date} [created]
|
|
19547
|
+
* @param {string} [languageCode]
|
|
19548
|
+
* @param {number} [page]
|
|
19549
|
+
* @param {number} [limit]
|
|
19550
|
+
* @param {Date} [lastRetrieved]
|
|
19551
|
+
* @param {*} [options] Override http request option.
|
|
19552
|
+
* @throws {RequiredError}
|
|
19553
|
+
*/
|
|
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>;
|
|
19555
|
+
/**
|
|
19556
|
+
*
|
|
19557
|
+
* @summary Get service by slug.
|
|
19558
|
+
* @param {string} slug
|
|
19559
|
+
* @param {string} [languageCode]
|
|
19560
|
+
* @param {*} [options] Override http request option.
|
|
19561
|
+
* @throws {RequiredError}
|
|
19562
|
+
*/
|
|
19563
|
+
apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19564
|
+
};
|
|
19565
|
+
/**
|
|
19566
|
+
* ServicesApi - functional programming interface
|
|
19567
|
+
* @export
|
|
19568
|
+
*/
|
|
19569
|
+
export declare const ServicesApiFp: (configuration?: Configuration | undefined) => {
|
|
19570
|
+
/**
|
|
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]
|
|
19576
|
+
* @param {string} [hospitalId]
|
|
19577
|
+
* @param {string} [hospitalName]
|
|
19578
|
+
* @param {string} [hospitalSlug]
|
|
18695
19579
|
* @param {string} [specialtyId]
|
|
18696
19580
|
* @param {string} [specialtyTypeId]
|
|
18697
19581
|
* @param {string} [specialtyTypeName]
|
|
@@ -19072,6 +19956,56 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
19072
19956
|
* @throws {RequiredError}
|
|
19073
19957
|
*/
|
|
19074
19958
|
apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19959
|
+
/**
|
|
19960
|
+
*
|
|
19961
|
+
* @summary Get all SpecialtyMedias.
|
|
19962
|
+
* @param {string} specialtyId
|
|
19963
|
+
* @param {string} [id]
|
|
19964
|
+
* @param {MediaType} [mediaType]
|
|
19965
|
+
* @param {number} [page]
|
|
19966
|
+
* @param {number} [limit]
|
|
19967
|
+
* @param {Date} [lastRetrieved]
|
|
19968
|
+
* @param {*} [options] Override http request option.
|
|
19969
|
+
* @throws {RequiredError}
|
|
19970
|
+
*/
|
|
19971
|
+
apiV1SpecialtiesSpecialtyIdMediasGet: (specialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19972
|
+
/**
|
|
19973
|
+
*
|
|
19974
|
+
* @summary Delete SpecialtyMedia
|
|
19975
|
+
* @param {string} specialtyId
|
|
19976
|
+
* @param {string} mediaId
|
|
19977
|
+
* @param {*} [options] Override http request option.
|
|
19978
|
+
* @throws {RequiredError}
|
|
19979
|
+
*/
|
|
19980
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete: (specialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19981
|
+
/**
|
|
19982
|
+
*
|
|
19983
|
+
* @summary Get SpecialtyMedia.
|
|
19984
|
+
* @param {string} specialtyId
|
|
19985
|
+
* @param {string} mediaId
|
|
19986
|
+
* @param {*} [options] Override http request option.
|
|
19987
|
+
* @throws {RequiredError}
|
|
19988
|
+
*/
|
|
19989
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdGet: (specialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19990
|
+
/**
|
|
19991
|
+
*
|
|
19992
|
+
* @summary Update SpecialtyMedia.
|
|
19993
|
+
* @param {string} specialtyId
|
|
19994
|
+
* @param {string} mediaId
|
|
19995
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
19996
|
+
* @param {*} [options] Override http request option.
|
|
19997
|
+
* @throws {RequiredError}
|
|
19998
|
+
*/
|
|
19999
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdPut: (specialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20000
|
+
/**
|
|
20001
|
+
*
|
|
20002
|
+
* @summary Create SpecialtyMedia.
|
|
20003
|
+
* @param {string} specialtyId
|
|
20004
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
20005
|
+
* @param {*} [options] Override http request option.
|
|
20006
|
+
* @throws {RequiredError}
|
|
20007
|
+
*/
|
|
20008
|
+
apiV1SpecialtiesSpecialtyIdMediasPost: (specialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19075
20009
|
/**
|
|
19076
20010
|
*
|
|
19077
20011
|
* @summary Update Specialty.
|
|
@@ -19139,6 +20073,56 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
19139
20073
|
* @throws {RequiredError}
|
|
19140
20074
|
*/
|
|
19141
20075
|
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
20076
|
+
/**
|
|
20077
|
+
*
|
|
20078
|
+
* @summary Get all SpecialtyMedias.
|
|
20079
|
+
* @param {string} specialtyId
|
|
20080
|
+
* @param {string} [id]
|
|
20081
|
+
* @param {MediaType} [mediaType]
|
|
20082
|
+
* @param {number} [page]
|
|
20083
|
+
* @param {number} [limit]
|
|
20084
|
+
* @param {Date} [lastRetrieved]
|
|
20085
|
+
* @param {*} [options] Override http request option.
|
|
20086
|
+
* @throws {RequiredError}
|
|
20087
|
+
*/
|
|
20088
|
+
apiV1SpecialtiesSpecialtyIdMediasGet(specialtyId: 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>>;
|
|
20089
|
+
/**
|
|
20090
|
+
*
|
|
20091
|
+
* @summary Delete SpecialtyMedia
|
|
20092
|
+
* @param {string} specialtyId
|
|
20093
|
+
* @param {string} mediaId
|
|
20094
|
+
* @param {*} [options] Override http request option.
|
|
20095
|
+
* @throws {RequiredError}
|
|
20096
|
+
*/
|
|
20097
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(specialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20098
|
+
/**
|
|
20099
|
+
*
|
|
20100
|
+
* @summary Get SpecialtyMedia.
|
|
20101
|
+
* @param {string} specialtyId
|
|
20102
|
+
* @param {string} mediaId
|
|
20103
|
+
* @param {*} [options] Override http request option.
|
|
20104
|
+
* @throws {RequiredError}
|
|
20105
|
+
*/
|
|
20106
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20107
|
+
/**
|
|
20108
|
+
*
|
|
20109
|
+
* @summary Update SpecialtyMedia.
|
|
20110
|
+
* @param {string} specialtyId
|
|
20111
|
+
* @param {string} mediaId
|
|
20112
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
20113
|
+
* @param {*} [options] Override http request option.
|
|
20114
|
+
* @throws {RequiredError}
|
|
20115
|
+
*/
|
|
20116
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdPut(specialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20117
|
+
/**
|
|
20118
|
+
*
|
|
20119
|
+
* @summary Create SpecialtyMedia.
|
|
20120
|
+
* @param {string} specialtyId
|
|
20121
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
20122
|
+
* @param {*} [options] Override http request option.
|
|
20123
|
+
* @throws {RequiredError}
|
|
20124
|
+
*/
|
|
20125
|
+
apiV1SpecialtiesSpecialtyIdMediasPost(specialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
19142
20126
|
/**
|
|
19143
20127
|
*
|
|
19144
20128
|
* @summary Update Specialty.
|
|
@@ -19206,6 +20190,56 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
19206
20190
|
* @throws {RequiredError}
|
|
19207
20191
|
*/
|
|
19208
20192
|
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
20193
|
+
/**
|
|
20194
|
+
*
|
|
20195
|
+
* @summary Get all SpecialtyMedias.
|
|
20196
|
+
* @param {string} specialtyId
|
|
20197
|
+
* @param {string} [id]
|
|
20198
|
+
* @param {MediaType} [mediaType]
|
|
20199
|
+
* @param {number} [page]
|
|
20200
|
+
* @param {number} [limit]
|
|
20201
|
+
* @param {Date} [lastRetrieved]
|
|
20202
|
+
* @param {*} [options] Override http request option.
|
|
20203
|
+
* @throws {RequiredError}
|
|
20204
|
+
*/
|
|
20205
|
+
apiV1SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
20206
|
+
/**
|
|
20207
|
+
*
|
|
20208
|
+
* @summary Delete SpecialtyMedia
|
|
20209
|
+
* @param {string} specialtyId
|
|
20210
|
+
* @param {string} mediaId
|
|
20211
|
+
* @param {*} [options] Override http request option.
|
|
20212
|
+
* @throws {RequiredError}
|
|
20213
|
+
*/
|
|
20214
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(specialtyId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
20215
|
+
/**
|
|
20216
|
+
*
|
|
20217
|
+
* @summary Get SpecialtyMedia.
|
|
20218
|
+
* @param {string} specialtyId
|
|
20219
|
+
* @param {string} mediaId
|
|
20220
|
+
* @param {*} [options] Override http request option.
|
|
20221
|
+
* @throws {RequiredError}
|
|
20222
|
+
*/
|
|
20223
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
20224
|
+
/**
|
|
20225
|
+
*
|
|
20226
|
+
* @summary Update SpecialtyMedia.
|
|
20227
|
+
* @param {string} specialtyId
|
|
20228
|
+
* @param {string} mediaId
|
|
20229
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
20230
|
+
* @param {*} [options] Override http request option.
|
|
20231
|
+
* @throws {RequiredError}
|
|
20232
|
+
*/
|
|
20233
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdPut(specialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
20234
|
+
/**
|
|
20235
|
+
*
|
|
20236
|
+
* @summary Create SpecialtyMedia.
|
|
20237
|
+
* @param {string} specialtyId
|
|
20238
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
20239
|
+
* @param {*} [options] Override http request option.
|
|
20240
|
+
* @throws {RequiredError}
|
|
20241
|
+
*/
|
|
20242
|
+
apiV1SpecialtiesSpecialtyIdMediasPost(specialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
19209
20243
|
/**
|
|
19210
20244
|
*
|
|
19211
20245
|
* @summary Update Specialty.
|
|
@@ -19280,6 +20314,61 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
19280
20314
|
* @memberof SpecialtiesApi
|
|
19281
20315
|
*/
|
|
19282
20316
|
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
20317
|
+
/**
|
|
20318
|
+
*
|
|
20319
|
+
* @summary Get all SpecialtyMedias.
|
|
20320
|
+
* @param {string} specialtyId
|
|
20321
|
+
* @param {string} [id]
|
|
20322
|
+
* @param {MediaType} [mediaType]
|
|
20323
|
+
* @param {number} [page]
|
|
20324
|
+
* @param {number} [limit]
|
|
20325
|
+
* @param {Date} [lastRetrieved]
|
|
20326
|
+
* @param {*} [options] Override http request option.
|
|
20327
|
+
* @throws {RequiredError}
|
|
20328
|
+
* @memberof SpecialtiesApi
|
|
20329
|
+
*/
|
|
20330
|
+
apiV1SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
20331
|
+
/**
|
|
20332
|
+
*
|
|
20333
|
+
* @summary Delete SpecialtyMedia
|
|
20334
|
+
* @param {string} specialtyId
|
|
20335
|
+
* @param {string} mediaId
|
|
20336
|
+
* @param {*} [options] Override http request option.
|
|
20337
|
+
* @throws {RequiredError}
|
|
20338
|
+
* @memberof SpecialtiesApi
|
|
20339
|
+
*/
|
|
20340
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(specialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20341
|
+
/**
|
|
20342
|
+
*
|
|
20343
|
+
* @summary Get SpecialtyMedia.
|
|
20344
|
+
* @param {string} specialtyId
|
|
20345
|
+
* @param {string} mediaId
|
|
20346
|
+
* @param {*} [options] Override http request option.
|
|
20347
|
+
* @throws {RequiredError}
|
|
20348
|
+
* @memberof SpecialtiesApi
|
|
20349
|
+
*/
|
|
20350
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
20351
|
+
/**
|
|
20352
|
+
*
|
|
20353
|
+
* @summary Update SpecialtyMedia.
|
|
20354
|
+
* @param {string} specialtyId
|
|
20355
|
+
* @param {string} mediaId
|
|
20356
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
20357
|
+
* @param {*} [options] Override http request option.
|
|
20358
|
+
* @throws {RequiredError}
|
|
20359
|
+
* @memberof SpecialtiesApi
|
|
20360
|
+
*/
|
|
20361
|
+
apiV1SpecialtiesSpecialtyIdMediasMediaIdPut(specialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
20362
|
+
/**
|
|
20363
|
+
*
|
|
20364
|
+
* @summary Create SpecialtyMedia.
|
|
20365
|
+
* @param {string} specialtyId
|
|
20366
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
20367
|
+
* @param {*} [options] Override http request option.
|
|
20368
|
+
* @throws {RequiredError}
|
|
20369
|
+
* @memberof SpecialtiesApi
|
|
20370
|
+
*/
|
|
20371
|
+
apiV1SpecialtiesSpecialtyIdMediasPost(specialtyId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
19283
20372
|
/**
|
|
19284
20373
|
*
|
|
19285
20374
|
* @summary Update Specialty.
|