ch-admin-api-client-typescript 2.1.3 → 2.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -198,12 +198,6 @@ export interface ApproveConsultationCommand {
198
198
  * @memberof ApproveConsultationCommand
199
199
  */
200
200
  'confirmedDateEnd'?: Date | null;
201
- /**
202
- *
203
- * @type {string}
204
- * @memberof ApproveConsultationCommand
205
- */
206
- 'callerId'?: string | null;
207
201
  }
208
202
  /**
209
203
  *
@@ -1686,6 +1680,56 @@ export declare enum ChargeStatus {
1686
1680
  Succeeded = "Succeeded",
1687
1681
  Failed = "Failed"
1688
1682
  }
1683
+ /**
1684
+ *
1685
+ * @export
1686
+ * @interface CheckNotificationsCommand
1687
+ */
1688
+ export interface CheckNotificationsCommand {
1689
+ /**
1690
+ *
1691
+ * @type {string}
1692
+ * @memberof CheckNotificationsCommand
1693
+ */
1694
+ 'notificationId'?: string | null;
1695
+ /**
1696
+ *
1697
+ * @type {boolean}
1698
+ * @memberof CheckNotificationsCommand
1699
+ */
1700
+ 'isDelete'?: boolean;
1701
+ }
1702
+ /**
1703
+ *
1704
+ * @export
1705
+ * @interface CommunicationUserTokenModel
1706
+ */
1707
+ export interface CommunicationUserTokenModel {
1708
+ /**
1709
+ *
1710
+ * @type {string}
1711
+ * @memberof CommunicationUserTokenModel
1712
+ */
1713
+ 'token'?: string | null;
1714
+ /**
1715
+ *
1716
+ * @type {Date}
1717
+ * @memberof CommunicationUserTokenModel
1718
+ */
1719
+ 'expiresOn'?: Date;
1720
+ /**
1721
+ *
1722
+ * @type {string}
1723
+ * @memberof CommunicationUserTokenModel
1724
+ */
1725
+ 'communicationUserId'?: string | null;
1726
+ /**
1727
+ *
1728
+ * @type {string}
1729
+ * @memberof CommunicationUserTokenModel
1730
+ */
1731
+ 'gateway'?: string | null;
1732
+ }
1689
1733
  /**
1690
1734
  *
1691
1735
  * @export
@@ -3620,6 +3664,25 @@ export interface CreateDoctorPortfolioCommand {
3620
3664
  */
3621
3665
  'photoAfterThumbnail'?: string | null;
3622
3666
  }
3667
+ /**
3668
+ *
3669
+ * @export
3670
+ * @interface CreateDoctorSpecialtyCommand
3671
+ */
3672
+ export interface CreateDoctorSpecialtyCommand {
3673
+ /**
3674
+ *
3675
+ * @type {string}
3676
+ * @memberof CreateDoctorSpecialtyCommand
3677
+ */
3678
+ 'specialtyId'?: string;
3679
+ /**
3680
+ *
3681
+ * @type {number}
3682
+ * @memberof CreateDoctorSpecialtyCommand
3683
+ */
3684
+ 'order'?: number;
3685
+ }
3623
3686
  /**
3624
3687
  *
3625
3688
  * @export
@@ -7721,6 +7784,18 @@ export interface HospitalServiceItemModel {
7721
7784
  * @memberof HospitalServiceItemModel
7722
7785
  */
7723
7786
  'specialtyName'?: string | null;
7787
+ /**
7788
+ *
7789
+ * @type {string}
7790
+ * @memberof HospitalServiceItemModel
7791
+ */
7792
+ 'serviceCategoryId'?: string;
7793
+ /**
7794
+ *
7795
+ * @type {string}
7796
+ * @memberof HospitalServiceItemModel
7797
+ */
7798
+ 'serviceCategoryName'?: string | null;
7724
7799
  /**
7725
7800
  *
7726
7801
  * @type {MarketingType}
@@ -7842,6 +7917,18 @@ export interface HospitalServiceModel {
7842
7917
  * @memberof HospitalServiceModel
7843
7918
  */
7844
7919
  'specialtyName'?: string | null;
7920
+ /**
7921
+ *
7922
+ * @type {string}
7923
+ * @memberof HospitalServiceModel
7924
+ */
7925
+ 'serviceCategoryId'?: string;
7926
+ /**
7927
+ *
7928
+ * @type {string}
7929
+ * @memberof HospitalServiceModel
7930
+ */
7931
+ 'serviceCategoryName'?: string | null;
7845
7932
  /**
7846
7933
  *
7847
7934
  * @type {MarketingType}
@@ -8020,6 +8107,12 @@ export interface HospitalSpecialtyItemModel {
8020
8107
  * @memberof HospitalSpecialtyItemModel
8021
8108
  */
8022
8109
  'specialtyTypeName'?: string | null;
8110
+ /**
8111
+ *
8112
+ * @type {MarketingType}
8113
+ * @memberof HospitalSpecialtyItemModel
8114
+ */
8115
+ 'marketingType'?: MarketingType;
8023
8116
  /**
8024
8117
  *
8025
8118
  * @type {number}
@@ -8075,6 +8168,12 @@ export interface HospitalSpecialtyModel {
8075
8168
  * @memberof HospitalSpecialtyModel
8076
8169
  */
8077
8170
  'specialtyTypeName'?: string | null;
8171
+ /**
8172
+ *
8173
+ * @type {MarketingType}
8174
+ * @memberof HospitalSpecialtyModel
8175
+ */
8176
+ 'marketingType'?: MarketingType;
8078
8177
  /**
8079
8178
  *
8080
8179
  * @type {number}
@@ -8101,6 +8200,111 @@ export interface HospitalsModel {
8101
8200
  */
8102
8201
  'metaData'?: PagedListMetaData;
8103
8202
  }
8203
+ /**
8204
+ *
8205
+ * @export
8206
+ * @interface LanguageItemModel
8207
+ */
8208
+ export interface LanguageItemModel {
8209
+ /**
8210
+ *
8211
+ * @type {string}
8212
+ * @memberof LanguageItemModel
8213
+ */
8214
+ 'id'?: string;
8215
+ /**
8216
+ *
8217
+ * @type {string}
8218
+ * @memberof LanguageItemModel
8219
+ */
8220
+ 'code'?: string | null;
8221
+ /**
8222
+ *
8223
+ * @type {string}
8224
+ * @memberof LanguageItemModel
8225
+ */
8226
+ 'name'?: string | null;
8227
+ /**
8228
+ *
8229
+ * @type {string}
8230
+ * @memberof LanguageItemModel
8231
+ */
8232
+ 'description'?: string | null;
8233
+ /**
8234
+ *
8235
+ * @type {boolean}
8236
+ * @memberof LanguageItemModel
8237
+ */
8238
+ 'published'?: boolean;
8239
+ /**
8240
+ *
8241
+ * @type {number}
8242
+ * @memberof LanguageItemModel
8243
+ */
8244
+ 'order'?: number;
8245
+ }
8246
+ /**
8247
+ *
8248
+ * @export
8249
+ * @interface LanguageModel
8250
+ */
8251
+ export interface LanguageModel {
8252
+ /**
8253
+ *
8254
+ * @type {string}
8255
+ * @memberof LanguageModel
8256
+ */
8257
+ 'id'?: string;
8258
+ /**
8259
+ *
8260
+ * @type {string}
8261
+ * @memberof LanguageModel
8262
+ */
8263
+ 'code'?: string | null;
8264
+ /**
8265
+ *
8266
+ * @type {string}
8267
+ * @memberof LanguageModel
8268
+ */
8269
+ 'name'?: string | null;
8270
+ /**
8271
+ *
8272
+ * @type {string}
8273
+ * @memberof LanguageModel
8274
+ */
8275
+ 'description'?: string | null;
8276
+ /**
8277
+ *
8278
+ * @type {boolean}
8279
+ * @memberof LanguageModel
8280
+ */
8281
+ 'published'?: boolean;
8282
+ /**
8283
+ *
8284
+ * @type {number}
8285
+ * @memberof LanguageModel
8286
+ */
8287
+ 'order'?: number;
8288
+ }
8289
+ /**
8290
+ *
8291
+ * @export
8292
+ * @interface LanguagesModel
8293
+ */
8294
+ export interface LanguagesModel {
8295
+ /**
8296
+ *
8297
+ * @type {Array<LanguageItemModel>}
8298
+ * @memberof LanguagesModel
8299
+ */
8300
+ 'items'?: Array<LanguageItemModel> | null;
8301
+ /**
8302
+ *
8303
+ * @type {PagedListMetaData}
8304
+ * @memberof LanguagesModel
8305
+ */
8306
+ 'metaData'?: PagedListMetaData;
8307
+ }
8104
8308
  /**
8105
8309
  *
8106
8310
  * @export
@@ -8642,6 +8846,124 @@ export interface MembershipInvitation {
8642
8846
  */
8643
8847
  'email'?: string | null;
8644
8848
  }
8849
+ /**
8850
+ *
8851
+ * @export
8852
+ * @enum {string}
8853
+ */
8854
+ export declare enum NotificationCode {
8855
+ WelcomeEmail = "WelcomeEmail",
8856
+ DirectMessageSent = "DirectMessageSent",
8857
+ BookingNew = "BookingNew",
8858
+ BookingUpdated = "BookingUpdated",
8859
+ BookingRejected = "BookingRejected",
8860
+ BookingApproved = "BookingApproved",
8861
+ BookingPaid = "BookingPaid",
8862
+ BookingCanceled = "BookingCanceled",
8863
+ BookingRefundRequested = "BookingRefundRequested",
8864
+ BookingRefunded = "BookingRefunded",
8865
+ ConsultationNew = "ConsultationNew",
8866
+ ConsultationUpdated = "ConsultationUpdated",
8867
+ ConsultationRejected = "ConsultationRejected",
8868
+ ConsultationApproved = "ConsultationApproved",
8869
+ ConsultationPaid = "ConsultationPaid",
8870
+ ConsultationCanceled = "ConsultationCanceled",
8871
+ ConsultationRefundRequested = "ConsultationRefundRequested",
8872
+ ConsultationRefunded = "ConsultationRefunded",
8873
+ ConsultationReady = "ConsultationReady"
8874
+ }
8875
+ /**
8876
+ *
8877
+ * @export
8878
+ * @interface NotificationModel
8879
+ */
8880
+ export interface NotificationModel {
8881
+ /**
8882
+ *
8883
+ * @type {string}
8884
+ * @memberof NotificationModel
8885
+ */
8886
+ 'id'?: string;
8887
+ /**
8888
+ *
8889
+ * @type {NotificationCode}
8890
+ * @memberof NotificationModel
8891
+ */
8892
+ 'notificationCode'?: NotificationCode;
8893
+ /**
8894
+ *
8895
+ * @type {string}
8896
+ * @memberof NotificationModel
8897
+ */
8898
+ 'notificationTargetId'?: string;
8899
+ /**
8900
+ *
8901
+ * @type {string}
8902
+ * @memberof NotificationModel
8903
+ */
8904
+ 'senderId'?: string | null;
8905
+ /**
8906
+ *
8907
+ * @type {string}
8908
+ * @memberof NotificationModel
8909
+ */
8910
+ 'senderName'?: string | null;
8911
+ /**
8912
+ *
8913
+ * @type {string}
8914
+ * @memberof NotificationModel
8915
+ */
8916
+ 'receiverId'?: string | null;
8917
+ /**
8918
+ *
8919
+ * @type {string}
8920
+ * @memberof NotificationModel
8921
+ */
8922
+ 'receiverName'?: string | null;
8923
+ /**
8924
+ *
8925
+ * @type {string}
8926
+ * @memberof NotificationModel
8927
+ */
8928
+ 'message'?: string | null;
8929
+ /**
8930
+ *
8931
+ * @type {Date}
8932
+ * @memberof NotificationModel
8933
+ */
8934
+ 'createdAt'?: Date;
8935
+ /**
8936
+ *
8937
+ * @type {boolean}
8938
+ * @memberof NotificationModel
8939
+ */
8940
+ 'isChecked'?: boolean;
8941
+ }
8942
+ /**
8943
+ *
8944
+ * @export
8945
+ * @interface NotificationsModel
8946
+ */
8947
+ export interface NotificationsModel {
8948
+ /**
8949
+ *
8950
+ * @type {Array<NotificationModel>}
8951
+ * @memberof NotificationsModel
8952
+ */
8953
+ 'items'?: Array<NotificationModel> | null;
8954
+ /**
8955
+ *
8956
+ * @type {PagedListMetaData}
8957
+ * @memberof NotificationsModel
8958
+ */
8959
+ 'metaData'?: PagedListMetaData;
8960
+ /**
8961
+ *
8962
+ * @type {number}
8963
+ * @memberof NotificationsModel
8964
+ */
8965
+ 'unreadCount'?: number;
8966
+ }
8645
8967
  /**
8646
8968
  *
8647
8969
  * @export
@@ -9524,6 +9846,12 @@ export interface Service {
9524
9846
  * @memberof Service
9525
9847
  */
9526
9848
  'serviceCategoryId'?: string | null;
9849
+ /**
9850
+ *
9851
+ * @type {ServiceCategory}
9852
+ * @memberof Service
9853
+ */
9854
+ 'serviceCategory'?: ServiceCategory;
9527
9855
  /**
9528
9856
  *
9529
9857
  * @type {number}
@@ -9583,361 +9911,149 @@ export interface ServiceCategoriesModel {
9583
9911
  /**
9584
9912
  *
9585
9913
  * @export
9586
- * @interface ServiceCategoryItemModel
9914
+ * @interface ServiceCategory
9587
9915
  */
9588
- export interface ServiceCategoryItemModel {
9916
+ export interface ServiceCategory {
9589
9917
  /**
9590
9918
  *
9591
9919
  * @type {string}
9592
- * @memberof ServiceCategoryItemModel
9920
+ * @memberof ServiceCategory
9593
9921
  */
9594
9922
  'id'?: string;
9595
9923
  /**
9596
9924
  *
9597
9925
  * @type {string}
9598
- * @memberof ServiceCategoryItemModel
9926
+ * @memberof ServiceCategory
9599
9927
  */
9600
9928
  'name'?: string | null;
9601
9929
  /**
9602
9930
  *
9603
9931
  * @type {string}
9604
- * @memberof ServiceCategoryItemModel
9932
+ * @memberof ServiceCategory
9605
9933
  */
9606
9934
  'normalizedName'?: string | null;
9607
9935
  /**
9608
9936
  *
9609
9937
  * @type {string}
9610
- * @memberof ServiceCategoryItemModel
9938
+ * @memberof ServiceCategory
9611
9939
  */
9612
9940
  'description'?: string | null;
9613
9941
  /**
9614
9942
  *
9615
- * @type {number}
9616
- * @memberof ServiceCategoryItemModel
9943
+ * @type {string}
9944
+ * @memberof ServiceCategory
9617
9945
  */
9618
- 'order'?: number;
9946
+ 'normalizedDescription'?: string | null;
9619
9947
  /**
9620
9948
  *
9621
9949
  * @type {number}
9622
- * @memberof ServiceCategoryItemModel
9950
+ * @memberof ServiceCategory
9623
9951
  */
9624
- 'serviceCount'?: number;
9952
+ 'order'?: number;
9625
9953
  /**
9626
9954
  *
9627
- * @type {Array<ServiceItemModel>}
9628
- * @memberof ServiceCategoryItemModel
9955
+ * @type {Array<Service>}
9956
+ * @memberof ServiceCategory
9629
9957
  */
9630
- 'services'?: Array<ServiceItemModel> | null;
9958
+ 'services'?: Array<Service> | null;
9631
9959
  }
9632
9960
  /**
9633
9961
  *
9634
9962
  * @export
9635
- * @interface ServiceCategoryModel
9963
+ * @interface ServiceCategoryItemModel
9636
9964
  */
9637
- export interface ServiceCategoryModel {
9965
+ export interface ServiceCategoryItemModel {
9638
9966
  /**
9639
9967
  *
9640
9968
  * @type {string}
9641
- * @memberof ServiceCategoryModel
9969
+ * @memberof ServiceCategoryItemModel
9642
9970
  */
9643
9971
  'id'?: string;
9644
9972
  /**
9645
9973
  *
9646
9974
  * @type {string}
9647
- * @memberof ServiceCategoryModel
9975
+ * @memberof ServiceCategoryItemModel
9648
9976
  */
9649
9977
  'name'?: string | null;
9650
9978
  /**
9651
9979
  *
9652
9980
  * @type {string}
9653
- * @memberof ServiceCategoryModel
9981
+ * @memberof ServiceCategoryItemModel
9654
9982
  */
9655
9983
  'normalizedName'?: string | null;
9656
9984
  /**
9657
9985
  *
9658
9986
  * @type {string}
9659
- * @memberof ServiceCategoryModel
9987
+ * @memberof ServiceCategoryItemModel
9660
9988
  */
9661
9989
  'description'?: string | null;
9662
9990
  /**
9663
9991
  *
9664
9992
  * @type {number}
9665
- * @memberof ServiceCategoryModel
9993
+ * @memberof ServiceCategoryItemModel
9666
9994
  */
9667
9995
  'order'?: number;
9668
9996
  /**
9669
9997
  *
9670
9998
  * @type {number}
9671
- * @memberof ServiceCategoryModel
9999
+ * @memberof ServiceCategoryItemModel
9672
10000
  */
9673
10001
  'serviceCount'?: number;
9674
10002
  /**
9675
10003
  *
9676
- * @type {Array<ServiceItemModel>}
9677
- * @memberof ServiceCategoryModel
10004
+ * @type {Array<HospitalServiceItemModel>}
10005
+ * @memberof ServiceCategoryItemModel
9678
10006
  */
9679
- 'services'?: Array<ServiceItemModel> | null;
10007
+ 'services'?: Array<HospitalServiceItemModel> | null;
9680
10008
  }
9681
10009
  /**
9682
10010
  *
9683
10011
  * @export
9684
- * @interface ServiceItemModel
10012
+ * @interface ServiceCategoryModel
9685
10013
  */
9686
- export interface ServiceItemModel {
10014
+ export interface ServiceCategoryModel {
9687
10015
  /**
9688
10016
  *
9689
10017
  * @type {string}
9690
- * @memberof ServiceItemModel
10018
+ * @memberof ServiceCategoryModel
9691
10019
  */
9692
10020
  'id'?: string;
9693
10021
  /**
9694
10022
  *
9695
10023
  * @type {string}
9696
- * @memberof ServiceItemModel
10024
+ * @memberof ServiceCategoryModel
9697
10025
  */
9698
10026
  'name'?: string | null;
9699
10027
  /**
9700
10028
  *
9701
10029
  * @type {string}
9702
- * @memberof ServiceItemModel
10030
+ * @memberof ServiceCategoryModel
9703
10031
  */
9704
- 'slug'?: string | null;
10032
+ 'normalizedName'?: string | null;
9705
10033
  /**
9706
10034
  *
9707
10035
  * @type {string}
9708
- * @memberof ServiceItemModel
10036
+ * @memberof ServiceCategoryModel
9709
10037
  */
9710
10038
  'description'?: string | null;
9711
- /**
9712
- *
9713
- * @type {string}
9714
- * @memberof ServiceItemModel
9715
- */
9716
- 'content'?: string | null;
9717
- /**
9718
- *
9719
- * @type {string}
9720
- * @memberof ServiceItemModel
9721
- */
9722
- 'hospitalId'?: string;
9723
- /**
9724
- *
9725
- * @type {string}
9726
- * @memberof ServiceItemModel
9727
- */
9728
- 'hospitalName'?: string | null;
9729
- /**
9730
- *
9731
- * @type {string}
9732
- * @memberof ServiceItemModel
9733
- */
9734
- 'specialtyTypeId'?: string | null;
9735
- /**
9736
- *
9737
- * @type {string}
9738
- * @memberof ServiceItemModel
9739
- */
9740
- 'specialtyTypeName'?: string | null;
9741
- /**
9742
- *
9743
- * @type {string}
9744
- * @memberof ServiceItemModel
9745
- */
9746
- 'specialtyId'?: string;
9747
- /**
9748
- *
9749
- * @type {string}
9750
- * @memberof ServiceItemModel
9751
- */
9752
- 'specialtyName'?: string | null;
9753
- /**
9754
- *
9755
- * @type {MarketingType}
9756
- * @memberof ServiceItemModel
9757
- */
9758
- 'marketingType'?: MarketingType;
9759
- /**
9760
- *
9761
- * @type {Procedure}
9762
- * @memberof ServiceItemModel
9763
- */
9764
- 'procedure'?: Procedure;
9765
- /**
9766
- *
9767
- * @type {number}
9768
- * @memberof ServiceItemModel
9769
- */
9770
- 'minPrice'?: number | null;
9771
- /**
9772
- *
9773
- * @type {number}
9774
- * @memberof ServiceItemModel
9775
- */
9776
- 'maxPrice'?: number | null;
9777
- /**
9778
- *
9779
- * @type {boolean}
9780
- * @memberof ServiceItemModel
9781
- */
9782
- 'priceReuqest'?: boolean;
9783
10039
  /**
9784
10040
  *
9785
10041
  * @type {number}
9786
- * @memberof ServiceItemModel
10042
+ * @memberof ServiceCategoryModel
9787
10043
  */
9788
10044
  'order'?: number;
9789
- /**
9790
- *
9791
- * @type {AuditableEntity}
9792
- * @memberof ServiceItemModel
9793
- */
9794
- 'auditableEntity'?: AuditableEntity;
9795
- /**
9796
- *
9797
- * @type {boolean}
9798
- * @memberof ServiceItemModel
9799
- */
9800
- 'confirmed'?: boolean;
9801
- }
9802
- /**
9803
- *
9804
- * @export
9805
- * @interface ServiceModel
9806
- */
9807
- export interface ServiceModel {
9808
- /**
9809
- *
9810
- * @type {string}
9811
- * @memberof ServiceModel
9812
- */
9813
- 'id'?: string;
9814
- /**
9815
- *
9816
- * @type {string}
9817
- * @memberof ServiceModel
9818
- */
9819
- 'name'?: string | null;
9820
- /**
9821
- *
9822
- * @type {string}
9823
- * @memberof ServiceModel
9824
- */
9825
- 'slug'?: string | null;
9826
- /**
9827
- *
9828
- * @type {string}
9829
- * @memberof ServiceModel
9830
- */
9831
- 'description'?: string | null;
9832
- /**
9833
- *
9834
- * @type {string}
9835
- * @memberof ServiceModel
9836
- */
9837
- 'content'?: string | null;
9838
- /**
9839
- *
9840
- * @type {string}
9841
- * @memberof ServiceModel
9842
- */
9843
- 'hospitalId'?: string;
9844
- /**
9845
- *
9846
- * @type {string}
9847
- * @memberof ServiceModel
9848
- */
9849
- 'hospitalName'?: string | null;
9850
- /**
9851
- *
9852
- * @type {string}
9853
- * @memberof ServiceModel
9854
- */
9855
- 'specialtyTypeId'?: string | null;
9856
- /**
9857
- *
9858
- * @type {string}
9859
- * @memberof ServiceModel
9860
- */
9861
- 'specialtyTypeName'?: string | null;
9862
- /**
9863
- *
9864
- * @type {string}
9865
- * @memberof ServiceModel
9866
- */
9867
- 'specialtyId'?: string;
9868
- /**
9869
- *
9870
- * @type {string}
9871
- * @memberof ServiceModel
9872
- */
9873
- 'specialtyName'?: string | null;
9874
- /**
9875
- *
9876
- * @type {MarketingType}
9877
- * @memberof ServiceModel
9878
- */
9879
- 'marketingType'?: MarketingType;
9880
- /**
9881
- *
9882
- * @type {Procedure}
9883
- * @memberof ServiceModel
9884
- */
9885
- 'procedure'?: Procedure;
9886
- /**
9887
- *
9888
- * @type {number}
9889
- * @memberof ServiceModel
9890
- */
9891
- 'minPrice'?: number | null;
9892
- /**
9893
- *
9894
- * @type {number}
9895
- * @memberof ServiceModel
9896
- */
9897
- 'maxPrice'?: number | null;
9898
- /**
9899
- *
9900
- * @type {boolean}
9901
- * @memberof ServiceModel
9902
- */
9903
- 'priceReuqest'?: boolean;
9904
10045
  /**
9905
10046
  *
9906
10047
  * @type {number}
9907
- * @memberof ServiceModel
9908
- */
9909
- 'order'?: number;
9910
- /**
9911
- *
9912
- * @type {AuditableEntity}
9913
- * @memberof ServiceModel
9914
- */
9915
- 'auditableEntity'?: AuditableEntity;
9916
- /**
9917
- *
9918
- * @type {boolean}
9919
- * @memberof ServiceModel
9920
- */
9921
- 'confirmed'?: boolean;
9922
- }
9923
- /**
9924
- *
9925
- * @export
9926
- * @interface ServicesModel
9927
- */
9928
- export interface ServicesModel {
9929
- /**
9930
- *
9931
- * @type {Array<ServiceItemModel>}
9932
- * @memberof ServicesModel
10048
+ * @memberof ServiceCategoryModel
9933
10049
  */
9934
- 'items'?: Array<ServiceItemModel> | null;
10050
+ 'serviceCount'?: number;
9935
10051
  /**
9936
10052
  *
9937
- * @type {PagedListMetaData}
9938
- * @memberof ServicesModel
10053
+ * @type {Array<HospitalServiceItemModel>}
10054
+ * @memberof ServiceCategoryModel
9939
10055
  */
9940
- 'metaData'?: PagedListMetaData;
10056
+ 'services'?: Array<HospitalServiceItemModel> | null;
9941
10057
  }
9942
10058
  /**
9943
10059
  *
@@ -10895,6 +11011,25 @@ export interface UpdateContributorCommand {
10895
11011
  */
10896
11012
  'hospitalId'?: string;
10897
11013
  }
11014
+ /**
11015
+ *
11016
+ * @export
11017
+ * @interface UpdateContributorSnsHandleCommand
11018
+ */
11019
+ export interface UpdateContributorSnsHandleCommand {
11020
+ /**
11021
+ *
11022
+ * @type {SnsType}
11023
+ * @memberof UpdateContributorSnsHandleCommand
11024
+ */
11025
+ 'snsType'?: SnsType;
11026
+ /**
11027
+ *
11028
+ * @type {string}
11029
+ * @memberof UpdateContributorSnsHandleCommand
11030
+ */
11031
+ 'handle'?: string | null;
11032
+ }
10898
11033
  /**
10899
11034
  *
10900
11035
  * @export
@@ -11233,6 +11368,19 @@ export interface UpdateDoctorPortfolioCommand {
11233
11368
  */
11234
11369
  'photoAfterThumbnail'?: string | null;
11235
11370
  }
11371
+ /**
11372
+ *
11373
+ * @export
11374
+ * @interface UpdateDoctorSpecialtyCommand
11375
+ */
11376
+ export interface UpdateDoctorSpecialtyCommand {
11377
+ /**
11378
+ *
11379
+ * @type {number}
11380
+ * @memberof UpdateDoctorSpecialtyCommand
11381
+ */
11382
+ 'order'?: number;
11383
+ }
11236
11384
  /**
11237
11385
  *
11238
11386
  * @export
@@ -11542,6 +11690,19 @@ export interface UpdateHospitalServiceCommand {
11542
11690
  */
11543
11691
  'order'?: number;
11544
11692
  }
11693
+ /**
11694
+ *
11695
+ * @export
11696
+ * @interface UpdateHospitalSpecialtyCommand
11697
+ */
11698
+ export interface UpdateHospitalSpecialtyCommand {
11699
+ /**
11700
+ *
11701
+ * @type {number}
11702
+ * @memberof UpdateHospitalSpecialtyCommand
11703
+ */
11704
+ 'order'?: number;
11705
+ }
11545
11706
  /**
11546
11707
  *
11547
11708
  * @export
@@ -11623,10 +11784,10 @@ export interface UpdateServiceCategoryCommand {
11623
11784
  'serviceCount'?: number;
11624
11785
  /**
11625
11786
  *
11626
- * @type {Array<ServiceItemModel>}
11787
+ * @type {Array<HospitalServiceItemModel>}
11627
11788
  * @memberof UpdateServiceCategoryCommand
11628
11789
  */
11629
- 'services'?: Array<ServiceItemModel> | null;
11790
+ 'services'?: Array<HospitalServiceItemModel> | null;
11630
11791
  /**
11631
11792
  *
11632
11793
  * @type {Array<string>}
@@ -12448,7 +12609,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
12448
12609
  *
12449
12610
  * @summary GetAll ArticleContributors.
12450
12611
  * @param {string} articleId
12451
- * @param {string} [articleId2]
12452
12612
  * @param {string} [articleName]
12453
12613
  * @param {string} [contributorId]
12454
12614
  * @param {string} [contributorName]
@@ -12462,7 +12622,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
12462
12622
  * @param {*} [options] Override http request option.
12463
12623
  * @throws {RequiredError}
12464
12624
  */
12465
- apiV1ArticlesArticleIdContributorsGet: (articleId: string, articleId2?: string | undefined, 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>;
12625
+ apiV1ArticlesArticleIdContributorsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12466
12626
  /**
12467
12627
  *
12468
12628
  * @summary Create ArticleContributor.
@@ -12600,7 +12760,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
12600
12760
  *
12601
12761
  * @summary GetAll ArticleContributors.
12602
12762
  * @param {string} articleId
12603
- * @param {string} [articleId2]
12604
12763
  * @param {string} [articleName]
12605
12764
  * @param {string} [contributorId]
12606
12765
  * @param {string} [contributorName]
@@ -12614,7 +12773,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
12614
12773
  * @param {*} [options] Override http request option.
12615
12774
  * @throws {RequiredError}
12616
12775
  */
12617
- apiV1ArticlesArticleIdTagsGet: (articleId: string, articleId2?: string | undefined, 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>;
12776
+ apiV1ArticlesArticleIdTagsGet: (articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12618
12777
  /**
12619
12778
  *
12620
12779
  * @param {string} articleId
@@ -12723,7 +12882,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
12723
12882
  *
12724
12883
  * @summary GetAll ArticleContributors.
12725
12884
  * @param {string} articleId
12726
- * @param {string} [articleId2]
12727
12885
  * @param {string} [articleName]
12728
12886
  * @param {string} [contributorId]
12729
12887
  * @param {string} [contributorName]
@@ -12737,7 +12895,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
12737
12895
  * @param {*} [options] Override http request option.
12738
12896
  * @throws {RequiredError}
12739
12897
  */
12740
- apiV1ArticlesArticleIdContributorsGet(articleId: string, articleId2?: string | undefined, 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>>;
12898
+ apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
12741
12899
  /**
12742
12900
  *
12743
12901
  * @summary Create ArticleContributor.
@@ -12875,7 +13033,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
12875
13033
  *
12876
13034
  * @summary GetAll ArticleContributors.
12877
13035
  * @param {string} articleId
12878
- * @param {string} [articleId2]
12879
13036
  * @param {string} [articleName]
12880
13037
  * @param {string} [contributorId]
12881
13038
  * @param {string} [contributorName]
@@ -12889,7 +13046,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
12889
13046
  * @param {*} [options] Override http request option.
12890
13047
  * @throws {RequiredError}
12891
13048
  */
12892
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleId2?: string | undefined, 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>>;
13049
+ apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
12893
13050
  /**
12894
13051
  *
12895
13052
  * @param {string} articleId
@@ -12998,7 +13155,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
12998
13155
  *
12999
13156
  * @summary GetAll ArticleContributors.
13000
13157
  * @param {string} articleId
13001
- * @param {string} [articleId2]
13002
13158
  * @param {string} [articleName]
13003
13159
  * @param {string} [contributorId]
13004
13160
  * @param {string} [contributorName]
@@ -13012,7 +13168,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
13012
13168
  * @param {*} [options] Override http request option.
13013
13169
  * @throws {RequiredError}
13014
13170
  */
13015
- apiV1ArticlesArticleIdContributorsGet(articleId: string, articleId2?: string | undefined, 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>;
13171
+ apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
13016
13172
  /**
13017
13173
  *
13018
13174
  * @summary Create ArticleContributor.
@@ -13150,7 +13306,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
13150
13306
  *
13151
13307
  * @summary GetAll ArticleContributors.
13152
13308
  * @param {string} articleId
13153
- * @param {string} [articleId2]
13154
13309
  * @param {string} [articleName]
13155
13310
  * @param {string} [contributorId]
13156
13311
  * @param {string} [contributorName]
@@ -13164,7 +13319,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
13164
13319
  * @param {*} [options] Override http request option.
13165
13320
  * @throws {RequiredError}
13166
13321
  */
13167
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleId2?: string | undefined, 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>;
13322
+ apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticleContributorsModel>;
13168
13323
  /**
13169
13324
  *
13170
13325
  * @param {string} articleId
@@ -13278,7 +13433,6 @@ export declare class ArticlesApi extends BaseAPI {
13278
13433
  *
13279
13434
  * @summary GetAll ArticleContributors.
13280
13435
  * @param {string} articleId
13281
- * @param {string} [articleId2]
13282
13436
  * @param {string} [articleName]
13283
13437
  * @param {string} [contributorId]
13284
13438
  * @param {string} [contributorName]
@@ -13293,7 +13447,7 @@ export declare class ArticlesApi extends BaseAPI {
13293
13447
  * @throws {RequiredError}
13294
13448
  * @memberof ArticlesApi
13295
13449
  */
13296
- apiV1ArticlesArticleIdContributorsGet(articleId: string, articleId2?: 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>>;
13450
+ apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
13297
13451
  /**
13298
13452
  *
13299
13453
  * @summary Create ArticleContributor.
@@ -13445,7 +13599,6 @@ export declare class ArticlesApi extends BaseAPI {
13445
13599
  *
13446
13600
  * @summary GetAll ArticleContributors.
13447
13601
  * @param {string} articleId
13448
- * @param {string} [articleId2]
13449
13602
  * @param {string} [articleName]
13450
13603
  * @param {string} [contributorId]
13451
13604
  * @param {string} [contributorName]
@@ -13460,7 +13613,7 @@ export declare class ArticlesApi extends BaseAPI {
13460
13613
  * @throws {RequiredError}
13461
13614
  * @memberof ArticlesApi
13462
13615
  */
13463
- apiV1ArticlesArticleIdTagsGet(articleId: string, articleId2?: 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>>;
13616
+ apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
13464
13617
  /**
13465
13618
  *
13466
13619
  * @param {string} articleId
@@ -13799,31 +13952,144 @@ export declare class BookingsApi extends BaseAPI {
13799
13952
  apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
13800
13953
  }
13801
13954
  /**
13802
- * ConsultationsApi - axios parameter creator
13955
+ * CommunicationsApi - axios parameter creator
13803
13956
  * @export
13804
13957
  */
13805
- export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13958
+ export declare const CommunicationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13806
13959
  /**
13807
13960
  *
13808
- * @summary Approve consultation.
13809
- * @param {string} consultationId
13810
- * @param {ApproveConsultationCommand} [approveConsultationCommand]
13961
+ * @summary Delete CommunicationUser.
13811
13962
  * @param {*} [options] Override http request option.
13812
13963
  * @throws {RequiredError}
13813
13964
  */
13814
- apiV1ConsultationsConsultationIdApprovePut: (consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13965
+ apiV1CommunicationsDelete: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
13815
13966
  /**
13816
13967
  *
13817
- * @summary Cancel consultation.
13818
- * @param {string} consultationId
13968
+ * @summary Get CommunicationUser.
13819
13969
  * @param {*} [options] Override http request option.
13820
13970
  * @throws {RequiredError}
13821
13971
  */
13822
- apiV1ConsultationsConsultationIdCancelPut: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13972
+ apiV1CommunicationsGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
13823
13973
  /**
13824
13974
  *
13825
- * @summary Delete consultation.
13826
- * @param {string} consultationId
13975
+ * @summary Revoke CommunicationUser.
13976
+ * @param {*} [options] Override http request option.
13977
+ * @throws {RequiredError}
13978
+ */
13979
+ apiV1CommunicationsPut: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
13980
+ };
13981
+ /**
13982
+ * CommunicationsApi - functional programming interface
13983
+ * @export
13984
+ */
13985
+ export declare const CommunicationsApiFp: (configuration?: Configuration | undefined) => {
13986
+ /**
13987
+ *
13988
+ * @summary Delete CommunicationUser.
13989
+ * @param {*} [options] Override http request option.
13990
+ * @throws {RequiredError}
13991
+ */
13992
+ apiV1CommunicationsDelete(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<number>>;
13993
+ /**
13994
+ *
13995
+ * @summary Get CommunicationUser.
13996
+ * @param {*} [options] Override http request option.
13997
+ * @throws {RequiredError}
13998
+ */
13999
+ apiV1CommunicationsGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
14000
+ /**
14001
+ *
14002
+ * @summary Revoke CommunicationUser.
14003
+ * @param {*} [options] Override http request option.
14004
+ * @throws {RequiredError}
14005
+ */
14006
+ apiV1CommunicationsPut(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
14007
+ };
14008
+ /**
14009
+ * CommunicationsApi - factory interface
14010
+ * @export
14011
+ */
14012
+ export declare const CommunicationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
14013
+ /**
14014
+ *
14015
+ * @summary Delete CommunicationUser.
14016
+ * @param {*} [options] Override http request option.
14017
+ * @throws {RequiredError}
14018
+ */
14019
+ apiV1CommunicationsDelete(options?: any): AxiosPromise<number>;
14020
+ /**
14021
+ *
14022
+ * @summary Get CommunicationUser.
14023
+ * @param {*} [options] Override http request option.
14024
+ * @throws {RequiredError}
14025
+ */
14026
+ apiV1CommunicationsGet(options?: any): AxiosPromise<CommunicationUserTokenModel>;
14027
+ /**
14028
+ *
14029
+ * @summary Revoke CommunicationUser.
14030
+ * @param {*} [options] Override http request option.
14031
+ * @throws {RequiredError}
14032
+ */
14033
+ apiV1CommunicationsPut(options?: any): AxiosPromise<CommunicationUserTokenModel>;
14034
+ };
14035
+ /**
14036
+ * CommunicationsApi - object-oriented interface
14037
+ * @export
14038
+ * @class CommunicationsApi
14039
+ * @extends {BaseAPI}
14040
+ */
14041
+ export declare class CommunicationsApi extends BaseAPI {
14042
+ /**
14043
+ *
14044
+ * @summary Delete CommunicationUser.
14045
+ * @param {*} [options] Override http request option.
14046
+ * @throws {RequiredError}
14047
+ * @memberof CommunicationsApi
14048
+ */
14049
+ apiV1CommunicationsDelete(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<number>>;
14050
+ /**
14051
+ *
14052
+ * @summary Get CommunicationUser.
14053
+ * @param {*} [options] Override http request option.
14054
+ * @throws {RequiredError}
14055
+ * @memberof CommunicationsApi
14056
+ */
14057
+ apiV1CommunicationsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
14058
+ /**
14059
+ *
14060
+ * @summary Revoke CommunicationUser.
14061
+ * @param {*} [options] Override http request option.
14062
+ * @throws {RequiredError}
14063
+ * @memberof CommunicationsApi
14064
+ */
14065
+ apiV1CommunicationsPut(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
14066
+ }
14067
+ /**
14068
+ * ConsultationsApi - axios parameter creator
14069
+ * @export
14070
+ */
14071
+ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
14072
+ /**
14073
+ *
14074
+ * @summary Approve consultation.
14075
+ * @param {string} consultationId
14076
+ * @param {ApproveConsultationCommand} [approveConsultationCommand]
14077
+ * @param {*} [options] Override http request option.
14078
+ * @throws {RequiredError}
14079
+ */
14080
+ apiV1ConsultationsConsultationIdApprovePut: (consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14081
+ /**
14082
+ *
14083
+ * @summary Cancel consultation.
14084
+ * @param {string} consultationId
14085
+ * @param {*} [options] Override http request option.
14086
+ * @throws {RequiredError}
14087
+ */
14088
+ apiV1ConsultationsConsultationIdCancelPut: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14089
+ /**
14090
+ *
14091
+ * @summary Delete consultation.
14092
+ * @param {string} consultationId
13827
14093
  * @param {*} [options] Override http request option.
13828
14094
  * @throws {RequiredError}
13829
14095
  */
@@ -14109,6 +14375,16 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
14109
14375
  * @throws {RequiredError}
14110
14376
  */
14111
14377
  apiV1ContributorsContributorIdHandlesHandleIdGet: (contributorId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14378
+ /**
14379
+ *
14380
+ * @summary Update ContributorHandle.
14381
+ * @param {string} contributorId
14382
+ * @param {string} handleId
14383
+ * @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
14384
+ * @param {*} [options] Override http request option.
14385
+ * @throws {RequiredError}
14386
+ */
14387
+ apiV1ContributorsContributorIdHandlesHandleIdPut: (contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14112
14388
  /**
14113
14389
  *
14114
14390
  * @summary Get ContributorHandle.
@@ -14219,6 +14495,16 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
14219
14495
  * @throws {RequiredError}
14220
14496
  */
14221
14497
  apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
14498
+ /**
14499
+ *
14500
+ * @summary Update ContributorHandle.
14501
+ * @param {string} contributorId
14502
+ * @param {string} handleId
14503
+ * @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
14504
+ * @param {*} [options] Override http request option.
14505
+ * @throws {RequiredError}
14506
+ */
14507
+ apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
14222
14508
  /**
14223
14509
  *
14224
14510
  * @summary Get ContributorHandle.
@@ -14329,6 +14615,16 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
14329
14615
  * @throws {RequiredError}
14330
14616
  */
14331
14617
  apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
14618
+ /**
14619
+ *
14620
+ * @summary Update ContributorHandle.
14621
+ * @param {string} contributorId
14622
+ * @param {string} handleId
14623
+ * @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
14624
+ * @param {*} [options] Override http request option.
14625
+ * @throws {RequiredError}
14626
+ */
14627
+ apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
14332
14628
  /**
14333
14629
  *
14334
14630
  * @summary Get ContributorHandle.
@@ -14446,6 +14742,17 @@ export declare class ContributorsApi extends BaseAPI {
14446
14742
  * @memberof ContributorsApi
14447
14743
  */
14448
14744
  apiV1ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
14745
+ /**
14746
+ *
14747
+ * @summary Update ContributorHandle.
14748
+ * @param {string} contributorId
14749
+ * @param {string} handleId
14750
+ * @param {UpdateContributorSnsHandleCommand} [updateContributorSnsHandleCommand]
14751
+ * @param {*} [options] Override http request option.
14752
+ * @throws {RequiredError}
14753
+ * @memberof ContributorsApi
14754
+ */
14755
+ apiV1ContributorsContributorIdHandlesHandleIdPut(contributorId: string, handleId: string, updateContributorSnsHandleCommand?: UpdateContributorSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
14449
14756
  /**
14450
14757
  *
14451
14758
  * @summary Get ContributorHandle.
@@ -15935,7 +16242,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15935
16242
  *
15936
16243
  * @summary Get All DoctorSpecialties.
15937
16244
  * @param {string} doctorId
15938
- * @param {string} [doctorId2]
15939
16245
  * @param {string} [doctorName]
15940
16246
  * @param {string} [specialtyId]
15941
16247
  * @param {string} [specialtyName]
@@ -15945,7 +16251,16 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15945
16251
  * @param {*} [options] Override http request option.
15946
16252
  * @throws {RequiredError}
15947
16253
  */
15948
- apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorId2?: string | undefined, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16254
+ apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16255
+ /**
16256
+ *
16257
+ * @summary Link a doctor to a specialty.
16258
+ * @param {string} doctorId
16259
+ * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
16260
+ * @param {*} [options] Override http request option.
16261
+ * @throws {RequiredError}
16262
+ */
16263
+ apiV1DoctorsDoctorIdSpecialtiesPost: (doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15949
16264
  /**
15950
16265
  *
15951
16266
  * @summary Remove link between the doctor and the specialty.
@@ -15966,16 +16281,17 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15966
16281
  apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15967
16282
  /**
15968
16283
  *
15969
- * @summary Link a doctor to a specialty.
16284
+ * @summary Update DoctorSpecialty.
15970
16285
  * @param {string} doctorId
15971
16286
  * @param {string} specialtyId
16287
+ * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
15972
16288
  * @param {*} [options] Override http request option.
15973
16289
  * @throws {RequiredError}
15974
16290
  */
15975
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPost: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16291
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut: (doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15976
16292
  /**
15977
16293
  *
15978
- * @summary Get all Doctor.
16294
+ * @summary Get all Doctors.
15979
16295
  * @param {string} [countryId]
15980
16296
  * @param {string} [hospitalId]
15981
16297
  * @param {MarketingType} [marketingType]
@@ -16274,12 +16590,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16274
16590
  * @param {*} [options] Override http request option.
16275
16591
  * @throws {RequiredError}
16276
16592
  */
16277
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
16593
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16278
16594
  /**
16279
16595
  *
16280
16596
  * @summary Get All DoctorSpecialties.
16281
16597
  * @param {string} doctorId
16282
- * @param {string} [doctorId2]
16283
16598
  * @param {string} [doctorName]
16284
16599
  * @param {string} [specialtyId]
16285
16600
  * @param {string} [specialtyName]
@@ -16289,7 +16604,16 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16289
16604
  * @param {*} [options] Override http request option.
16290
16605
  * @throws {RequiredError}
16291
16606
  */
16292
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorId2?: string | undefined, 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>>;
16607
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
16608
+ /**
16609
+ *
16610
+ * @summary Link a doctor to a specialty.
16611
+ * @param {string} doctorId
16612
+ * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
16613
+ * @param {*} [options] Override http request option.
16614
+ * @throws {RequiredError}
16615
+ */
16616
+ apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
16293
16617
  /**
16294
16618
  *
16295
16619
  * @summary Remove link between the doctor and the specialty.
@@ -16310,16 +16634,17 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16310
16634
  apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
16311
16635
  /**
16312
16636
  *
16313
- * @summary Link a doctor to a specialty.
16637
+ * @summary Update DoctorSpecialty.
16314
16638
  * @param {string} doctorId
16315
16639
  * @param {string} specialtyId
16640
+ * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
16316
16641
  * @param {*} [options] Override http request option.
16317
16642
  * @throws {RequiredError}
16318
16643
  */
16319
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPost(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
16644
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
16320
16645
  /**
16321
16646
  *
16322
- * @summary Get all Doctor.
16647
+ * @summary Get all Doctors.
16323
16648
  * @param {string} [countryId]
16324
16649
  * @param {string} [hospitalId]
16325
16650
  * @param {MarketingType} [marketingType]
@@ -16618,12 +16943,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16618
16943
  * @param {*} [options] Override http request option.
16619
16944
  * @throws {RequiredError}
16620
16945
  */
16621
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<void>;
16946
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<boolean>;
16622
16947
  /**
16623
16948
  *
16624
16949
  * @summary Get All DoctorSpecialties.
16625
16950
  * @param {string} doctorId
16626
- * @param {string} [doctorId2]
16627
16951
  * @param {string} [doctorName]
16628
16952
  * @param {string} [specialtyId]
16629
16953
  * @param {string} [specialtyName]
@@ -16633,7 +16957,16 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16633
16957
  * @param {*} [options] Override http request option.
16634
16958
  * @throws {RequiredError}
16635
16959
  */
16636
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorId2?: string | undefined, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
16960
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
16961
+ /**
16962
+ *
16963
+ * @summary Link a doctor to a specialty.
16964
+ * @param {string} doctorId
16965
+ * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
16966
+ * @param {*} [options] Override http request option.
16967
+ * @throws {RequiredError}
16968
+ */
16969
+ apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
16637
16970
  /**
16638
16971
  *
16639
16972
  * @summary Remove link between the doctor and the specialty.
@@ -16654,16 +16987,17 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16654
16987
  apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
16655
16988
  /**
16656
16989
  *
16657
- * @summary Link a doctor to a specialty.
16990
+ * @summary Update DoctorSpecialty.
16658
16991
  * @param {string} doctorId
16659
16992
  * @param {string} specialtyId
16993
+ * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
16660
16994
  * @param {*} [options] Override http request option.
16661
16995
  * @throws {RequiredError}
16662
16996
  */
16663
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPost(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
16997
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
16664
16998
  /**
16665
16999
  *
16666
- * @summary Get all Doctor.
17000
+ * @summary Get all Doctors.
16667
17001
  * @param {string} [countryId]
16668
17002
  * @param {string} [hospitalId]
16669
17003
  * @param {MarketingType} [marketingType]
@@ -16989,12 +17323,11 @@ export declare class DoctorsApi extends BaseAPI {
16989
17323
  * @throws {RequiredError}
16990
17324
  * @memberof DoctorsApi
16991
17325
  */
16992
- apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
17326
+ apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
16993
17327
  /**
16994
17328
  *
16995
17329
  * @summary Get All DoctorSpecialties.
16996
17330
  * @param {string} doctorId
16997
- * @param {string} [doctorId2]
16998
17331
  * @param {string} [doctorName]
16999
17332
  * @param {string} [specialtyId]
17000
17333
  * @param {string} [specialtyName]
@@ -17005,7 +17338,17 @@ export declare class DoctorsApi extends BaseAPI {
17005
17338
  * @throws {RequiredError}
17006
17339
  * @memberof DoctorsApi
17007
17340
  */
17008
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorId2?: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
17341
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
17342
+ /**
17343
+ *
17344
+ * @summary Link a doctor to a specialty.
17345
+ * @param {string} doctorId
17346
+ * @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
17347
+ * @param {*} [options] Override http request option.
17348
+ * @throws {RequiredError}
17349
+ * @memberof DoctorsApi
17350
+ */
17351
+ apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
17009
17352
  /**
17010
17353
  *
17011
17354
  * @summary Remove link between the doctor and the specialty.
@@ -17028,17 +17371,18 @@ export declare class DoctorsApi extends BaseAPI {
17028
17371
  apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
17029
17372
  /**
17030
17373
  *
17031
- * @summary Link a doctor to a specialty.
17374
+ * @summary Update DoctorSpecialty.
17032
17375
  * @param {string} doctorId
17033
17376
  * @param {string} specialtyId
17377
+ * @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
17034
17378
  * @param {*} [options] Override http request option.
17035
17379
  * @throws {RequiredError}
17036
17380
  * @memberof DoctorsApi
17037
17381
  */
17038
- apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPost(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
17382
+ apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
17039
17383
  /**
17040
17384
  *
17041
- * @summary Get all Doctor.
17385
+ * @summary Get all Doctors.
17042
17386
  * @param {string} [countryId]
17043
17387
  * @param {string} [hospitalId]
17044
17388
  * @param {MarketingType} [marketingType]
@@ -17131,9 +17475,8 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
17131
17475
  apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet: (hospitalId: string, accreditationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17132
17476
  /**
17133
17477
  *
17134
- * @summary Get all HospitalAccreditation.
17135
- * @param {string} hospitalId2
17136
- * @param {string} [hospitalId]
17478
+ * @summary Get all HospitalAccreditations.
17479
+ * @param {string} hospitalId
17137
17480
  * @param {string} [hospitalName]
17138
17481
  * @param {string} [accreditationId]
17139
17482
  * @param {string} [accreditationName]
@@ -17143,7 +17486,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
17143
17486
  * @param {*} [options] Override http request option.
17144
17487
  * @throws {RequiredError}
17145
17488
  */
17146
- apiV1HospitalsHospitalIdAccreditationsGet: (hospitalId2: string, hospitalId?: string | undefined, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17489
+ 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>;
17147
17490
  /**
17148
17491
  *
17149
17492
  * @summary Create HospitalAccreditation.
@@ -17381,160 +17724,235 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
17381
17724
  apiV1HospitalsHospitalIdPut: (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17382
17725
  /**
17383
17726
  *
17384
- * @summary Get all HospitalServices.
17385
- * @param {string} hospitalId2
17386
- * @param {string} [id]
17387
- * @param {string} [name]
17388
- * @param {string} [description]
17389
- * @param {string} [hospitalId]
17727
+ * @summary Get all HospitalSpecialties.
17728
+ * @param {string} hospitalId
17390
17729
  * @param {string} [hospitalName]
17391
17730
  * @param {string} [hospitalSlug]
17392
17731
  * @param {string} [specialtyId]
17732
+ * @param {string} [specialtyName]
17393
17733
  * @param {string} [specialtyTypeId]
17394
- * @param {string} [specialtyTypeName]
17395
17734
  * @param {MarketingType} [marketingType]
17396
- * @param {Procedure} [procedure]
17397
17735
  * @param {Date} [created]
17398
- * @param {string} [languageCode]
17399
17736
  * @param {number} [page]
17400
17737
  * @param {number} [limit]
17401
17738
  * @param {Date} [lastRetrieved]
17402
17739
  * @param {*} [options] Override http request option.
17403
17740
  * @throws {RequiredError}
17404
17741
  */
17405
- apiV1HospitalsHospitalIdServicesGet: (hospitalId2: string, 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>;
17742
+ apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17406
17743
  /**
17407
17744
  *
17408
- * @summary Create HospitalService.
17745
+ * @summary Create HospitalSpecialty.
17409
17746
  * @param {string} hospitalId
17410
- * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
17747
+ * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
17411
17748
  * @param {*} [options] Override http request option.
17412
17749
  * @throws {RequiredError}
17413
17750
  */
17414
- apiV1HospitalsHospitalIdServicesPost: (hospitalId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17751
+ apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17415
17752
  /**
17416
17753
  *
17417
- * @summary Delete HospitalService
17754
+ * @summary Delete HospitalSpecialty.
17418
17755
  * @param {string} hospitalId
17419
- * @param {string} serviceId
17756
+ * @param {string} specialtyId
17420
17757
  * @param {*} [options] Override http request option.
17421
17758
  * @throws {RequiredError}
17422
17759
  */
17423
- apiV1HospitalsHospitalIdServicesServiceIdDelete: (hospitalId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17760
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17424
17761
  /**
17425
17762
  *
17426
- * @summary Get HospitalService.
17763
+ * @summary Get HospitalSpecialty.
17427
17764
  * @param {string} hospitalId
17428
- * @param {string} serviceId
17429
- * @param {string} [languageCode]
17765
+ * @param {string} specialtyId
17430
17766
  * @param {*} [options] Override http request option.
17431
17767
  * @throws {RequiredError}
17432
17768
  */
17433
- apiV1HospitalsHospitalIdServicesServiceIdGet: (hospitalId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17769
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17434
17770
  /**
17435
17771
  *
17436
- * @summary Update HospitalService.
17772
+ * @summary Update HospitalSpecialty.
17437
17773
  * @param {string} hospitalId
17438
- * @param {string} serviceId
17439
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
17774
+ * @param {string} specialtyId
17775
+ * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
17440
17776
  * @param {*} [options] Override http request option.
17441
17777
  * @throws {RequiredError}
17442
17778
  */
17443
- apiV1HospitalsHospitalIdServicesServiceIdPut: (hospitalId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17779
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17444
17780
  /**
17445
17781
  *
17446
- * @summary Get all HospitalSpecialties.
17782
+ * @summary Get all HospitalServices.
17447
17783
  * @param {string} hospitalId
17784
+ * @param {string} specialtyId
17448
17785
  * @param {string} [hospitalName]
17449
17786
  * @param {string} [hospitalSlug]
17450
- * @param {string} [specialtyId]
17787
+ * @param {string} [id]
17788
+ * @param {string} [name]
17789
+ * @param {string} [description]
17451
17790
  * @param {string} [specialtyName]
17452
17791
  * @param {string} [specialtyTypeId]
17792
+ * @param {string} [specialtyTypeName]
17793
+ * @param {string} [serviceCategoryId]
17453
17794
  * @param {MarketingType} [marketingType]
17795
+ * @param {Procedure} [procedure]
17454
17796
  * @param {Date} [created]
17797
+ * @param {string} [languageCode]
17455
17798
  * @param {number} [page]
17456
17799
  * @param {number} [limit]
17457
17800
  * @param {Date} [lastRetrieved]
17458
17801
  * @param {*} [options] Override http request option.
17459
17802
  * @throws {RequiredError}
17460
17803
  */
17461
- apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17804
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17462
17805
  /**
17463
17806
  *
17464
- * @summary Create HospitalSpecialty.
17807
+ * @summary Create HospitalService.
17465
17808
  * @param {string} hospitalId
17466
- * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
17809
+ * @param {string} specialtyId
17810
+ * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
17467
17811
  * @param {*} [options] Override http request option.
17468
17812
  * @throws {RequiredError}
17469
17813
  */
17470
- apiV1HospitalsHospitalIdSpecialtiesPost: (hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17814
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost: (hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17471
17815
  /**
17472
17816
  *
17473
- * @summary Delete HospitalSpecialty.
17817
+ * @summary Delete HospitalService
17474
17818
  * @param {string} hospitalId
17475
17819
  * @param {string} specialtyId
17820
+ * @param {string} serviceId
17476
17821
  * @param {*} [options] Override http request option.
17477
17822
  * @throws {RequiredError}
17478
17823
  */
17479
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17824
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17480
17825
  /**
17481
17826
  *
17482
- * @summary Get HospitalSpecialty.
17827
+ * @summary Get HospitalService.
17483
17828
  * @param {string} hospitalId
17484
17829
  * @param {string} specialtyId
17485
- * @param {*} [options] Override http request option.
17486
- * @throws {RequiredError}
17487
- */
17488
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17489
- /**
17490
- *
17491
- * @summary Create Hospital.
17492
- * @param {CreateHospitalCommand} [createHospitalCommand]
17493
- * @param {*} [options] Override http request option.
17494
- * @throws {RequiredError}
17495
- */
17496
- apiV1HospitalsPost: (createHospitalCommand?: CreateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17497
- /**
17498
- *
17499
- * @summary Get Hospital by slug.
17500
- * @param {string} slug
17830
+ * @param {string} serviceId
17501
17831
  * @param {string} [languageCode]
17502
17832
  * @param {*} [options] Override http request option.
17503
17833
  * @throws {RequiredError}
17504
17834
  */
17505
- apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17506
- };
17507
- /**
17508
- * HospitalsApi - functional programming interface
17509
- * @export
17510
- */
17511
- export declare const HospitalsApiFp: (configuration?: Configuration | undefined) => {
17835
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17512
17836
  /**
17513
17837
  *
17514
- * @summary Get all Hospitals.
17515
- * @param {string} [hospitalId]
17516
- * @param {string} [name]
17517
- * @param {string} [description]
17518
- * @param {string} [countryId]
17519
- * @param {Date} [created]
17520
- * @param {MarketingType} [marketingType]
17521
- * @param {string} [specialtyTypeId]
17522
- * @param {string} [specialtyId]
17523
- * @param {string} [serviceId]
17524
- * @param {string} [exceptHospitalId]
17525
- * @param {boolean} [showHidden]
17526
- * @param {string} [languageCode]
17527
- * @param {Array<string>} [ids]
17838
+ * @summary Get all HospitalServiceMedias.
17839
+ * @param {string} hospitalId
17840
+ * @param {string} specialtyId
17841
+ * @param {string} serviceId
17842
+ * @param {string} [id]
17843
+ * @param {MediaType} [mediaType]
17528
17844
  * @param {number} [page]
17529
17845
  * @param {number} [limit]
17530
17846
  * @param {Date} [lastRetrieved]
17531
17847
  * @param {*} [options] Override http request option.
17532
17848
  * @throws {RequiredError}
17533
17849
  */
17534
- apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
17850
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet: (hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17535
17851
  /**
17536
17852
  *
17537
- * @summary Delete HospitalAccreditation.
17853
+ * @summary Delete HospitalServiceMedia
17854
+ * @param {string} hospitalId
17855
+ * @param {string} specialtyId
17856
+ * @param {string} serviceId
17857
+ * @param {string} mediaId
17858
+ * @param {*} [options] Override http request option.
17859
+ * @throws {RequiredError}
17860
+ */
17861
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17862
+ /**
17863
+ *
17864
+ * @summary Get HospitalServiceMedia.
17865
+ * @param {string} hospitalId
17866
+ * @param {string} specialtyId
17867
+ * @param {string} serviceId
17868
+ * @param {string} mediaId
17869
+ * @param {*} [options] Override http request option.
17870
+ * @throws {RequiredError}
17871
+ */
17872
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17873
+ /**
17874
+ *
17875
+ * @summary Update HospitalServiceMedia.
17876
+ * @param {string} hospitalId
17877
+ * @param {string} specialtyId
17878
+ * @param {string} serviceId
17879
+ * @param {string} mediaId
17880
+ * @param {UpdateMediaCommand} [updateMediaCommand]
17881
+ * @param {*} [options] Override http request option.
17882
+ * @throws {RequiredError}
17883
+ */
17884
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17885
+ /**
17886
+ *
17887
+ * @summary Create HospitalServiceMedia.
17888
+ * @param {string} hospitalId
17889
+ * @param {string} specialtyId
17890
+ * @param {string} serviceId
17891
+ * @param {CreateMediaCommand} [createMediaCommand]
17892
+ * @param {*} [options] Override http request option.
17893
+ * @throws {RequiredError}
17894
+ */
17895
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17896
+ /**
17897
+ *
17898
+ * @summary Update HospitalService.
17899
+ * @param {string} hospitalId
17900
+ * @param {string} specialtyId
17901
+ * @param {string} serviceId
17902
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
17903
+ * @param {*} [options] Override http request option.
17904
+ * @throws {RequiredError}
17905
+ */
17906
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut: (hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17907
+ /**
17908
+ *
17909
+ * @summary Create Hospital.
17910
+ * @param {CreateHospitalCommand} [createHospitalCommand]
17911
+ * @param {*} [options] Override http request option.
17912
+ * @throws {RequiredError}
17913
+ */
17914
+ apiV1HospitalsPost: (createHospitalCommand?: CreateHospitalCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17915
+ /**
17916
+ *
17917
+ * @summary Get Hospital by slug.
17918
+ * @param {string} slug
17919
+ * @param {string} [languageCode]
17920
+ * @param {*} [options] Override http request option.
17921
+ * @throws {RequiredError}
17922
+ */
17923
+ apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17924
+ };
17925
+ /**
17926
+ * HospitalsApi - functional programming interface
17927
+ * @export
17928
+ */
17929
+ export declare const HospitalsApiFp: (configuration?: Configuration | undefined) => {
17930
+ /**
17931
+ *
17932
+ * @summary Get all Hospitals.
17933
+ * @param {string} [hospitalId]
17934
+ * @param {string} [name]
17935
+ * @param {string} [description]
17936
+ * @param {string} [countryId]
17937
+ * @param {Date} [created]
17938
+ * @param {MarketingType} [marketingType]
17939
+ * @param {string} [specialtyTypeId]
17940
+ * @param {string} [specialtyId]
17941
+ * @param {string} [serviceId]
17942
+ * @param {string} [exceptHospitalId]
17943
+ * @param {boolean} [showHidden]
17944
+ * @param {string} [languageCode]
17945
+ * @param {Array<string>} [ids]
17946
+ * @param {number} [page]
17947
+ * @param {number} [limit]
17948
+ * @param {Date} [lastRetrieved]
17949
+ * @param {*} [options] Override http request option.
17950
+ * @throws {RequiredError}
17951
+ */
17952
+ apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
17953
+ /**
17954
+ *
17955
+ * @summary Delete HospitalAccreditation.
17538
17956
  * @param {string} hospitalId
17539
17957
  * @param {string} accreditationId
17540
17958
  * @param {*} [options] Override http request option.
@@ -17552,9 +17970,8 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
17552
17970
  apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationModel>>;
17553
17971
  /**
17554
17972
  *
17555
- * @summary Get all HospitalAccreditation.
17556
- * @param {string} hospitalId2
17557
- * @param {string} [hospitalId]
17973
+ * @summary Get all HospitalAccreditations.
17974
+ * @param {string} hospitalId
17558
17975
  * @param {string} [hospitalName]
17559
17976
  * @param {string} [accreditationId]
17560
17977
  * @param {string} [accreditationName]
@@ -17564,7 +17981,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
17564
17981
  * @param {*} [options] Override http request option.
17565
17982
  * @throws {RequiredError}
17566
17983
  */
17567
- apiV1HospitalsHospitalIdAccreditationsGet(hospitalId2: string, hospitalId?: string | undefined, 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>>;
17984
+ 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>>;
17568
17985
  /**
17569
17986
  *
17570
17987
  * @summary Create HospitalAccreditation.
@@ -17800,19 +18217,75 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
17800
18217
  * @throws {RequiredError}
17801
18218
  */
17802
18219
  apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18220
+ /**
18221
+ *
18222
+ * @summary Get all HospitalSpecialties.
18223
+ * @param {string} hospitalId
18224
+ * @param {string} [hospitalName]
18225
+ * @param {string} [hospitalSlug]
18226
+ * @param {string} [specialtyId]
18227
+ * @param {string} [specialtyName]
18228
+ * @param {string} [specialtyTypeId]
18229
+ * @param {MarketingType} [marketingType]
18230
+ * @param {Date} [created]
18231
+ * @param {number} [page]
18232
+ * @param {number} [limit]
18233
+ * @param {Date} [lastRetrieved]
18234
+ * @param {*} [options] Override http request option.
18235
+ * @throws {RequiredError}
18236
+ */
18237
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
18238
+ /**
18239
+ *
18240
+ * @summary Create HospitalSpecialty.
18241
+ * @param {string} hospitalId
18242
+ * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18243
+ * @param {*} [options] Override http request option.
18244
+ * @throws {RequiredError}
18245
+ */
18246
+ apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18247
+ /**
18248
+ *
18249
+ * @summary Delete HospitalSpecialty.
18250
+ * @param {string} hospitalId
18251
+ * @param {string} specialtyId
18252
+ * @param {*} [options] Override http request option.
18253
+ * @throws {RequiredError}
18254
+ */
18255
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18256
+ /**
18257
+ *
18258
+ * @summary Get HospitalSpecialty.
18259
+ * @param {string} hospitalId
18260
+ * @param {string} specialtyId
18261
+ * @param {*} [options] Override http request option.
18262
+ * @throws {RequiredError}
18263
+ */
18264
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18265
+ /**
18266
+ *
18267
+ * @summary Update HospitalSpecialty.
18268
+ * @param {string} hospitalId
18269
+ * @param {string} specialtyId
18270
+ * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
18271
+ * @param {*} [options] Override http request option.
18272
+ * @throws {RequiredError}
18273
+ */
18274
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
17803
18275
  /**
17804
18276
  *
17805
18277
  * @summary Get all HospitalServices.
17806
- * @param {string} hospitalId2
18278
+ * @param {string} hospitalId
18279
+ * @param {string} specialtyId
18280
+ * @param {string} [hospitalName]
18281
+ * @param {string} [hospitalSlug]
17807
18282
  * @param {string} [id]
17808
18283
  * @param {string} [name]
17809
18284
  * @param {string} [description]
17810
- * @param {string} [hospitalId]
17811
- * @param {string} [hospitalName]
17812
- * @param {string} [hospitalSlug]
17813
- * @param {string} [specialtyId]
18285
+ * @param {string} [specialtyName]
17814
18286
  * @param {string} [specialtyTypeId]
17815
18287
  * @param {string} [specialtyTypeName]
18288
+ * @param {string} [serviceCategoryId]
17816
18289
  * @param {MarketingType} [marketingType]
17817
18290
  * @param {Procedure} [procedure]
17818
18291
  * @param {Date} [created]
@@ -17823,90 +18296,109 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
17823
18296
  * @param {*} [options] Override http request option.
17824
18297
  * @throws {RequiredError}
17825
18298
  */
17826
- apiV1HospitalsHospitalIdServicesGet(hospitalId2: string, id?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
18299
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
17827
18300
  /**
17828
18301
  *
17829
18302
  * @summary Create HospitalService.
17830
18303
  * @param {string} hospitalId
18304
+ * @param {string} specialtyId
17831
18305
  * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
17832
18306
  * @param {*} [options] Override http request option.
17833
18307
  * @throws {RequiredError}
17834
18308
  */
17835
- apiV1HospitalsHospitalIdServicesPost(hospitalId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
18309
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
17836
18310
  /**
17837
18311
  *
17838
18312
  * @summary Delete HospitalService
17839
18313
  * @param {string} hospitalId
18314
+ * @param {string} specialtyId
17840
18315
  * @param {string} serviceId
17841
18316
  * @param {*} [options] Override http request option.
17842
18317
  * @throws {RequiredError}
17843
18318
  */
17844
- apiV1HospitalsHospitalIdServicesServiceIdDelete(hospitalId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18319
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17845
18320
  /**
17846
18321
  *
17847
18322
  * @summary Get HospitalService.
17848
18323
  * @param {string} hospitalId
18324
+ * @param {string} specialtyId
17849
18325
  * @param {string} serviceId
17850
18326
  * @param {string} [languageCode]
17851
18327
  * @param {*} [options] Override http request option.
17852
18328
  * @throws {RequiredError}
17853
18329
  */
17854
- apiV1HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
18330
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
17855
18331
  /**
17856
18332
  *
17857
- * @summary Update HospitalService.
18333
+ * @summary Get all HospitalServiceMedias.
17858
18334
  * @param {string} hospitalId
18335
+ * @param {string} specialtyId
17859
18336
  * @param {string} serviceId
17860
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
18337
+ * @param {string} [id]
18338
+ * @param {MediaType} [mediaType]
18339
+ * @param {number} [page]
18340
+ * @param {number} [limit]
18341
+ * @param {Date} [lastRetrieved]
17861
18342
  * @param {*} [options] Override http request option.
17862
18343
  * @throws {RequiredError}
17863
18344
  */
17864
- apiV1HospitalsHospitalIdServicesServiceIdPut(hospitalId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18345
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
17865
18346
  /**
17866
18347
  *
17867
- * @summary Get all HospitalSpecialties.
18348
+ * @summary Delete HospitalServiceMedia
17868
18349
  * @param {string} hospitalId
17869
- * @param {string} [hospitalName]
17870
- * @param {string} [hospitalSlug]
17871
- * @param {string} [specialtyId]
17872
- * @param {string} [specialtyName]
17873
- * @param {string} [specialtyTypeId]
17874
- * @param {MarketingType} [marketingType]
17875
- * @param {Date} [created]
17876
- * @param {number} [page]
17877
- * @param {number} [limit]
17878
- * @param {Date} [lastRetrieved]
18350
+ * @param {string} specialtyId
18351
+ * @param {string} serviceId
18352
+ * @param {string} mediaId
17879
18353
  * @param {*} [options] Override http request option.
17880
18354
  * @throws {RequiredError}
17881
18355
  */
17882
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
18356
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17883
18357
  /**
17884
18358
  *
17885
- * @summary Create HospitalSpecialty.
18359
+ * @summary Get HospitalServiceMedia.
17886
18360
  * @param {string} hospitalId
17887
- * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18361
+ * @param {string} specialtyId
18362
+ * @param {string} serviceId
18363
+ * @param {string} mediaId
17888
18364
  * @param {*} [options] Override http request option.
17889
18365
  * @throws {RequiredError}
17890
18366
  */
17891
- apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18367
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
17892
18368
  /**
17893
18369
  *
17894
- * @summary Delete HospitalSpecialty.
18370
+ * @summary Update HospitalServiceMedia.
18371
+ * @param {string} hospitalId
18372
+ * @param {string} specialtyId
18373
+ * @param {string} serviceId
18374
+ * @param {string} mediaId
18375
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18376
+ * @param {*} [options] Override http request option.
18377
+ * @throws {RequiredError}
18378
+ */
18379
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18380
+ /**
18381
+ *
18382
+ * @summary Create HospitalServiceMedia.
17895
18383
  * @param {string} hospitalId
17896
18384
  * @param {string} specialtyId
18385
+ * @param {string} serviceId
18386
+ * @param {CreateMediaCommand} [createMediaCommand]
17897
18387
  * @param {*} [options] Override http request option.
17898
18388
  * @throws {RequiredError}
17899
18389
  */
17900
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18390
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
17901
18391
  /**
17902
18392
  *
17903
- * @summary Get HospitalSpecialty.
18393
+ * @summary Update HospitalService.
17904
18394
  * @param {string} hospitalId
17905
18395
  * @param {string} specialtyId
18396
+ * @param {string} serviceId
18397
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
17906
18398
  * @param {*} [options] Override http request option.
17907
18399
  * @throws {RequiredError}
17908
18400
  */
17909
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
18401
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
17910
18402
  /**
17911
18403
  *
17912
18404
  * @summary Create Hospital.
@@ -17973,9 +18465,8 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
17973
18465
  apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: any): AxiosPromise<HospitalAccreditationModel>;
17974
18466
  /**
17975
18467
  *
17976
- * @summary Get all HospitalAccreditation.
17977
- * @param {string} hospitalId2
17978
- * @param {string} [hospitalId]
18468
+ * @summary Get all HospitalAccreditations.
18469
+ * @param {string} hospitalId
17979
18470
  * @param {string} [hospitalName]
17980
18471
  * @param {string} [accreditationId]
17981
18472
  * @param {string} [accreditationName]
@@ -17985,7 +18476,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
17985
18476
  * @param {*} [options] Override http request option.
17986
18477
  * @throws {RequiredError}
17987
18478
  */
17988
- apiV1HospitalsHospitalIdAccreditationsGet(hospitalId2: string, hospitalId?: string | undefined, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalAccreditationsModel>;
18479
+ 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>;
17989
18480
  /**
17990
18481
  *
17991
18482
  * @summary Create HospitalAccreditation.
@@ -18223,111 +18714,186 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
18223
18714
  apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand | undefined, options?: any): AxiosPromise<boolean>;
18224
18715
  /**
18225
18716
  *
18226
- * @summary Get all HospitalServices.
18227
- * @param {string} hospitalId2
18228
- * @param {string} [id]
18229
- * @param {string} [name]
18230
- * @param {string} [description]
18231
- * @param {string} [hospitalId]
18717
+ * @summary Get all HospitalSpecialties.
18718
+ * @param {string} hospitalId
18232
18719
  * @param {string} [hospitalName]
18233
18720
  * @param {string} [hospitalSlug]
18234
18721
  * @param {string} [specialtyId]
18722
+ * @param {string} [specialtyName]
18235
18723
  * @param {string} [specialtyTypeId]
18236
- * @param {string} [specialtyTypeName]
18237
18724
  * @param {MarketingType} [marketingType]
18238
- * @param {Procedure} [procedure]
18239
18725
  * @param {Date} [created]
18240
- * @param {string} [languageCode]
18241
18726
  * @param {number} [page]
18242
18727
  * @param {number} [limit]
18243
18728
  * @param {Date} [lastRetrieved]
18244
18729
  * @param {*} [options] Override http request option.
18245
18730
  * @throws {RequiredError}
18246
18731
  */
18247
- apiV1HospitalsHospitalIdServicesGet(hospitalId2: string, id?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
18732
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
18248
18733
  /**
18249
18734
  *
18250
- * @summary Create HospitalService.
18735
+ * @summary Create HospitalSpecialty.
18251
18736
  * @param {string} hospitalId
18252
- * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
18737
+ * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18253
18738
  * @param {*} [options] Override http request option.
18254
18739
  * @throws {RequiredError}
18255
18740
  */
18256
- apiV1HospitalsHospitalIdServicesPost(hospitalId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
18741
+ apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
18257
18742
  /**
18258
18743
  *
18259
- * @summary Delete HospitalService
18744
+ * @summary Delete HospitalSpecialty.
18260
18745
  * @param {string} hospitalId
18261
- * @param {string} serviceId
18746
+ * @param {string} specialtyId
18262
18747
  * @param {*} [options] Override http request option.
18263
18748
  * @throws {RequiredError}
18264
18749
  */
18265
- apiV1HospitalsHospitalIdServicesServiceIdDelete(hospitalId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
18750
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
18266
18751
  /**
18267
18752
  *
18268
- * @summary Get HospitalService.
18753
+ * @summary Get HospitalSpecialty.
18269
18754
  * @param {string} hospitalId
18270
- * @param {string} serviceId
18271
- * @param {string} [languageCode]
18755
+ * @param {string} specialtyId
18272
18756
  * @param {*} [options] Override http request option.
18273
18757
  * @throws {RequiredError}
18274
18758
  */
18275
- apiV1HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
18759
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
18276
18760
  /**
18277
18761
  *
18278
- * @summary Update HospitalService.
18762
+ * @summary Update HospitalSpecialty.
18279
18763
  * @param {string} hospitalId
18280
- * @param {string} serviceId
18281
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
18764
+ * @param {string} specialtyId
18765
+ * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
18282
18766
  * @param {*} [options] Override http request option.
18283
18767
  * @throws {RequiredError}
18284
18768
  */
18285
- apiV1HospitalsHospitalIdServicesServiceIdPut(hospitalId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
18769
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
18286
18770
  /**
18287
18771
  *
18288
- * @summary Get all HospitalSpecialties.
18772
+ * @summary Get all HospitalServices.
18289
18773
  * @param {string} hospitalId
18774
+ * @param {string} specialtyId
18290
18775
  * @param {string} [hospitalName]
18291
18776
  * @param {string} [hospitalSlug]
18292
- * @param {string} [specialtyId]
18777
+ * @param {string} [id]
18778
+ * @param {string} [name]
18779
+ * @param {string} [description]
18293
18780
  * @param {string} [specialtyName]
18294
18781
  * @param {string} [specialtyTypeId]
18782
+ * @param {string} [specialtyTypeName]
18783
+ * @param {string} [serviceCategoryId]
18295
18784
  * @param {MarketingType} [marketingType]
18785
+ * @param {Procedure} [procedure]
18296
18786
  * @param {Date} [created]
18787
+ * @param {string} [languageCode]
18297
18788
  * @param {number} [page]
18298
18789
  * @param {number} [limit]
18299
18790
  * @param {Date} [lastRetrieved]
18300
18791
  * @param {*} [options] Override http request option.
18301
18792
  * @throws {RequiredError}
18302
18793
  */
18303
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
18794
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
18304
18795
  /**
18305
18796
  *
18306
- * @summary Create HospitalSpecialty.
18797
+ * @summary Create HospitalService.
18307
18798
  * @param {string} hospitalId
18308
- * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
18799
+ * @param {string} specialtyId
18800
+ * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
18309
18801
  * @param {*} [options] Override http request option.
18310
18802
  * @throws {RequiredError}
18311
18803
  */
18312
- apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
18804
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
18313
18805
  /**
18314
18806
  *
18315
- * @summary Delete HospitalSpecialty.
18807
+ * @summary Delete HospitalService
18316
18808
  * @param {string} hospitalId
18317
18809
  * @param {string} specialtyId
18810
+ * @param {string} serviceId
18318
18811
  * @param {*} [options] Override http request option.
18319
18812
  * @throws {RequiredError}
18320
18813
  */
18321
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
18814
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: any): AxiosPromise<boolean>;
18322
18815
  /**
18323
18816
  *
18324
- * @summary Get HospitalSpecialty.
18817
+ * @summary Get HospitalService.
18325
18818
  * @param {string} hospitalId
18326
18819
  * @param {string} specialtyId
18820
+ * @param {string} serviceId
18821
+ * @param {string} [languageCode]
18327
18822
  * @param {*} [options] Override http request option.
18328
18823
  * @throws {RequiredError}
18329
18824
  */
18330
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
18825
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
18826
+ /**
18827
+ *
18828
+ * @summary Get all HospitalServiceMedias.
18829
+ * @param {string} hospitalId
18830
+ * @param {string} specialtyId
18831
+ * @param {string} serviceId
18832
+ * @param {string} [id]
18833
+ * @param {MediaType} [mediaType]
18834
+ * @param {number} [page]
18835
+ * @param {number} [limit]
18836
+ * @param {Date} [lastRetrieved]
18837
+ * @param {*} [options] Override http request option.
18838
+ * @throws {RequiredError}
18839
+ */
18840
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
18841
+ /**
18842
+ *
18843
+ * @summary Delete HospitalServiceMedia
18844
+ * @param {string} hospitalId
18845
+ * @param {string} specialtyId
18846
+ * @param {string} serviceId
18847
+ * @param {string} mediaId
18848
+ * @param {*} [options] Override http request option.
18849
+ * @throws {RequiredError}
18850
+ */
18851
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
18852
+ /**
18853
+ *
18854
+ * @summary Get HospitalServiceMedia.
18855
+ * @param {string} hospitalId
18856
+ * @param {string} specialtyId
18857
+ * @param {string} serviceId
18858
+ * @param {string} mediaId
18859
+ * @param {*} [options] Override http request option.
18860
+ * @throws {RequiredError}
18861
+ */
18862
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
18863
+ /**
18864
+ *
18865
+ * @summary Update HospitalServiceMedia.
18866
+ * @param {string} hospitalId
18867
+ * @param {string} specialtyId
18868
+ * @param {string} serviceId
18869
+ * @param {string} mediaId
18870
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18871
+ * @param {*} [options] Override http request option.
18872
+ * @throws {RequiredError}
18873
+ */
18874
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
18875
+ /**
18876
+ *
18877
+ * @summary Create HospitalServiceMedia.
18878
+ * @param {string} hospitalId
18879
+ * @param {string} specialtyId
18880
+ * @param {string} serviceId
18881
+ * @param {CreateMediaCommand} [createMediaCommand]
18882
+ * @param {*} [options] Override http request option.
18883
+ * @throws {RequiredError}
18884
+ */
18885
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
18886
+ /**
18887
+ *
18888
+ * @summary Update HospitalService.
18889
+ * @param {string} hospitalId
18890
+ * @param {string} specialtyId
18891
+ * @param {string} serviceId
18892
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
18893
+ * @param {*} [options] Override http request option.
18894
+ * @throws {RequiredError}
18895
+ */
18896
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand | undefined, options?: any): AxiosPromise<boolean>;
18331
18897
  /**
18332
18898
  *
18333
18899
  * @summary Create Hospital.
@@ -18399,9 +18965,8 @@ export declare class HospitalsApi extends BaseAPI {
18399
18965
  apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationModel>>;
18400
18966
  /**
18401
18967
  *
18402
- * @summary Get all HospitalAccreditation.
18403
- * @param {string} hospitalId2
18404
- * @param {string} [hospitalId]
18968
+ * @summary Get all HospitalAccreditations.
18969
+ * @param {string} hospitalId
18405
18970
  * @param {string} [hospitalName]
18406
18971
  * @param {string} [accreditationId]
18407
18972
  * @param {string} [accreditationName]
@@ -18412,7 +18977,7 @@ export declare class HospitalsApi extends BaseAPI {
18412
18977
  * @throws {RequiredError}
18413
18978
  * @memberof HospitalsApi
18414
18979
  */
18415
- apiV1HospitalsHospitalIdAccreditationsGet(hospitalId2: string, hospitalId?: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationsModel>>;
18980
+ apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationsModel>>;
18416
18981
  /**
18417
18982
  *
18418
18983
  * @summary Create HospitalAccreditation.
@@ -18671,19 +19236,80 @@ export declare class HospitalsApi extends BaseAPI {
18671
19236
  * @memberof HospitalsApi
18672
19237
  */
18673
19238
  apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19239
+ /**
19240
+ *
19241
+ * @summary Get all HospitalSpecialties.
19242
+ * @param {string} hospitalId
19243
+ * @param {string} [hospitalName]
19244
+ * @param {string} [hospitalSlug]
19245
+ * @param {string} [specialtyId]
19246
+ * @param {string} [specialtyName]
19247
+ * @param {string} [specialtyTypeId]
19248
+ * @param {MarketingType} [marketingType]
19249
+ * @param {Date} [created]
19250
+ * @param {number} [page]
19251
+ * @param {number} [limit]
19252
+ * @param {Date} [lastRetrieved]
19253
+ * @param {*} [options] Override http request option.
19254
+ * @throws {RequiredError}
19255
+ * @memberof HospitalsApi
19256
+ */
19257
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
19258
+ /**
19259
+ *
19260
+ * @summary Create HospitalSpecialty.
19261
+ * @param {string} hospitalId
19262
+ * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
19263
+ * @param {*} [options] Override http request option.
19264
+ * @throws {RequiredError}
19265
+ * @memberof HospitalsApi
19266
+ */
19267
+ apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19268
+ /**
19269
+ *
19270
+ * @summary Delete HospitalSpecialty.
19271
+ * @param {string} hospitalId
19272
+ * @param {string} specialtyId
19273
+ * @param {*} [options] Override http request option.
19274
+ * @throws {RequiredError}
19275
+ * @memberof HospitalsApi
19276
+ */
19277
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19278
+ /**
19279
+ *
19280
+ * @summary Get HospitalSpecialty.
19281
+ * @param {string} hospitalId
19282
+ * @param {string} specialtyId
19283
+ * @param {*} [options] Override http request option.
19284
+ * @throws {RequiredError}
19285
+ * @memberof HospitalsApi
19286
+ */
19287
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19288
+ /**
19289
+ *
19290
+ * @summary Update HospitalSpecialty.
19291
+ * @param {string} hospitalId
19292
+ * @param {string} specialtyId
19293
+ * @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
19294
+ * @param {*} [options] Override http request option.
19295
+ * @throws {RequiredError}
19296
+ * @memberof HospitalsApi
19297
+ */
19298
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
18674
19299
  /**
18675
19300
  *
18676
19301
  * @summary Get all HospitalServices.
18677
- * @param {string} hospitalId2
19302
+ * @param {string} hospitalId
19303
+ * @param {string} specialtyId
19304
+ * @param {string} [hospitalName]
19305
+ * @param {string} [hospitalSlug]
18678
19306
  * @param {string} [id]
18679
19307
  * @param {string} [name]
18680
19308
  * @param {string} [description]
18681
- * @param {string} [hospitalId]
18682
- * @param {string} [hospitalName]
18683
- * @param {string} [hospitalSlug]
18684
- * @param {string} [specialtyId]
19309
+ * @param {string} [specialtyName]
18685
19310
  * @param {string} [specialtyTypeId]
18686
19311
  * @param {string} [specialtyTypeName]
19312
+ * @param {string} [serviceCategoryId]
18687
19313
  * @param {MarketingType} [marketingType]
18688
19314
  * @param {Procedure} [procedure]
18689
19315
  * @param {Date} [created]
@@ -18695,98 +19321,118 @@ export declare class HospitalsApi extends BaseAPI {
18695
19321
  * @throws {RequiredError}
18696
19322
  * @memberof HospitalsApi
18697
19323
  */
18698
- apiV1HospitalsHospitalIdServicesGet(hospitalId2: string, id?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyTypeId?: string, specialtyTypeName?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
19324
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
18699
19325
  /**
18700
19326
  *
18701
19327
  * @summary Create HospitalService.
18702
19328
  * @param {string} hospitalId
19329
+ * @param {string} specialtyId
18703
19330
  * @param {CreateHospitalServiceCommand} [createHospitalServiceCommand]
18704
19331
  * @param {*} [options] Override http request option.
18705
19332
  * @throws {RequiredError}
18706
19333
  * @memberof HospitalsApi
18707
19334
  */
18708
- apiV1HospitalsHospitalIdServicesPost(hospitalId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19335
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesPost(hospitalId: string, specialtyId: string, createHospitalServiceCommand?: CreateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
18709
19336
  /**
18710
19337
  *
18711
19338
  * @summary Delete HospitalService
18712
19339
  * @param {string} hospitalId
19340
+ * @param {string} specialtyId
18713
19341
  * @param {string} serviceId
18714
19342
  * @param {*} [options] Override http request option.
18715
19343
  * @throws {RequiredError}
18716
19344
  * @memberof HospitalsApi
18717
19345
  */
18718
- apiV1HospitalsHospitalIdServicesServiceIdDelete(hospitalId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19346
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdDelete(hospitalId: string, specialtyId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
18719
19347
  /**
18720
19348
  *
18721
19349
  * @summary Get HospitalService.
18722
19350
  * @param {string} hospitalId
19351
+ * @param {string} specialtyId
18723
19352
  * @param {string} serviceId
18724
19353
  * @param {string} [languageCode]
18725
19354
  * @param {*} [options] Override http request option.
18726
19355
  * @throws {RequiredError}
18727
19356
  * @memberof HospitalsApi
18728
19357
  */
18729
- apiV1HospitalsHospitalIdServicesServiceIdGet(hospitalId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19358
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
18730
19359
  /**
18731
19360
  *
18732
- * @summary Update HospitalService.
19361
+ * @summary Get all HospitalServiceMedias.
18733
19362
  * @param {string} hospitalId
19363
+ * @param {string} specialtyId
18734
19364
  * @param {string} serviceId
18735
- * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
19365
+ * @param {string} [id]
19366
+ * @param {MediaType} [mediaType]
19367
+ * @param {number} [page]
19368
+ * @param {number} [limit]
19369
+ * @param {Date} [lastRetrieved]
18736
19370
  * @param {*} [options] Override http request option.
18737
19371
  * @throws {RequiredError}
18738
19372
  * @memberof HospitalsApi
18739
19373
  */
18740
- apiV1HospitalsHospitalIdServicesServiceIdPut(hospitalId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19374
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
18741
19375
  /**
18742
19376
  *
18743
- * @summary Get all HospitalSpecialties.
19377
+ * @summary Delete HospitalServiceMedia
18744
19378
  * @param {string} hospitalId
18745
- * @param {string} [hospitalName]
18746
- * @param {string} [hospitalSlug]
18747
- * @param {string} [specialtyId]
18748
- * @param {string} [specialtyName]
18749
- * @param {string} [specialtyTypeId]
18750
- * @param {MarketingType} [marketingType]
18751
- * @param {Date} [created]
18752
- * @param {number} [page]
18753
- * @param {number} [limit]
18754
- * @param {Date} [lastRetrieved]
19379
+ * @param {string} specialtyId
19380
+ * @param {string} serviceId
19381
+ * @param {string} mediaId
18755
19382
  * @param {*} [options] Override http request option.
18756
19383
  * @throws {RequiredError}
18757
19384
  * @memberof HospitalsApi
18758
19385
  */
18759
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
19386
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdDelete(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
18760
19387
  /**
18761
19388
  *
18762
- * @summary Create HospitalSpecialty.
19389
+ * @summary Get HospitalServiceMedia.
18763
19390
  * @param {string} hospitalId
18764
- * @param {CreateHospitalSpecialtyCommand} [createHospitalSpecialtyCommand]
19391
+ * @param {string} specialtyId
19392
+ * @param {string} serviceId
19393
+ * @param {string} mediaId
18765
19394
  * @param {*} [options] Override http request option.
18766
19395
  * @throws {RequiredError}
18767
19396
  * @memberof HospitalsApi
18768
19397
  */
18769
- apiV1HospitalsHospitalIdSpecialtiesPost(hospitalId: string, createHospitalSpecialtyCommand?: CreateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19398
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
18770
19399
  /**
18771
19400
  *
18772
- * @summary Delete HospitalSpecialty.
19401
+ * @summary Update HospitalServiceMedia.
18773
19402
  * @param {string} hospitalId
18774
19403
  * @param {string} specialtyId
19404
+ * @param {string} serviceId
19405
+ * @param {string} mediaId
19406
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18775
19407
  * @param {*} [options] Override http request option.
18776
19408
  * @throws {RequiredError}
18777
19409
  * @memberof HospitalsApi
18778
19410
  */
18779
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19411
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdPut(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
18780
19412
  /**
18781
19413
  *
18782
- * @summary Get HospitalSpecialty.
19414
+ * @summary Create HospitalServiceMedia.
18783
19415
  * @param {string} hospitalId
18784
19416
  * @param {string} specialtyId
19417
+ * @param {string} serviceId
19418
+ * @param {CreateMediaCommand} [createMediaCommand]
18785
19419
  * @param {*} [options] Override http request option.
18786
19420
  * @throws {RequiredError}
18787
19421
  * @memberof HospitalsApi
18788
19422
  */
18789
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
19423
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19424
+ /**
19425
+ *
19426
+ * @summary Update HospitalService.
19427
+ * @param {string} hospitalId
19428
+ * @param {string} specialtyId
19429
+ * @param {string} serviceId
19430
+ * @param {UpdateHospitalServiceCommand} [updateHospitalServiceCommand]
19431
+ * @param {*} [options] Override http request option.
19432
+ * @throws {RequiredError}
19433
+ * @memberof HospitalsApi
19434
+ */
19435
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut(hospitalId: string, specialtyId: string, serviceId: string, updateHospitalServiceCommand?: UpdateHospitalServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
18790
19436
  /**
18791
19437
  *
18792
19438
  * @summary Create Hospital.
@@ -18859,22 +19505,281 @@ export declare class ImagesApi extends BaseAPI {
18859
19505
  apiV1ImagesPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel[]>>;
18860
19506
  }
18861
19507
  /**
18862
- * ServicesApi - axios parameter creator
19508
+ * LanguagesApi - axios parameter creator
18863
19509
  * @export
18864
19510
  */
18865
- export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
19511
+ export declare const LanguagesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
18866
19512
  /**
18867
- * Sample request: GET /api/v1/hospitals/services
18868
- * @summary Get all services.
19513
+ *
19514
+ * @summary Get Language by code.
19515
+ * @param {string} code
19516
+ * @param {*} [options] Override http request option.
19517
+ * @throws {RequiredError}
19518
+ */
19519
+ apiV1LanguagesCodeGet: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19520
+ /**
19521
+ *
19522
+ * @summary Get all Languages.
18869
19523
  * @param {string} [id]
18870
19524
  * @param {string} [name]
19525
+ * @param {string} [code]
18871
19526
  * @param {string} [description]
19527
+ * @param {number} [page]
19528
+ * @param {number} [limit]
19529
+ * @param {Date} [lastRetrieved]
19530
+ * @param {*} [options] Override http request option.
19531
+ * @throws {RequiredError}
19532
+ */
19533
+ 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>;
19534
+ /**
19535
+ *
19536
+ * @summary Get Language.
19537
+ * @param {string} id
19538
+ * @param {*} [options] Override http request option.
19539
+ * @throws {RequiredError}
19540
+ */
19541
+ apiV1LanguagesIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19542
+ };
19543
+ /**
19544
+ * LanguagesApi - functional programming interface
19545
+ * @export
19546
+ */
19547
+ export declare const LanguagesApiFp: (configuration?: Configuration | undefined) => {
19548
+ /**
19549
+ *
19550
+ * @summary Get Language by code.
19551
+ * @param {string} code
19552
+ * @param {*} [options] Override http request option.
19553
+ * @throws {RequiredError}
19554
+ */
19555
+ apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
19556
+ /**
19557
+ *
19558
+ * @summary Get all Languages.
19559
+ * @param {string} [id]
19560
+ * @param {string} [name]
19561
+ * @param {string} [code]
19562
+ * @param {string} [description]
19563
+ * @param {number} [page]
19564
+ * @param {number} [limit]
19565
+ * @param {Date} [lastRetrieved]
19566
+ * @param {*} [options] Override http request option.
19567
+ * @throws {RequiredError}
19568
+ */
19569
+ 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>>;
19570
+ /**
19571
+ *
19572
+ * @summary Get Language.
19573
+ * @param {string} id
19574
+ * @param {*} [options] Override http request option.
19575
+ * @throws {RequiredError}
19576
+ */
19577
+ apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
19578
+ };
19579
+ /**
19580
+ * LanguagesApi - factory interface
19581
+ * @export
19582
+ */
19583
+ export declare const LanguagesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
19584
+ /**
19585
+ *
19586
+ * @summary Get Language by code.
19587
+ * @param {string} code
19588
+ * @param {*} [options] Override http request option.
19589
+ * @throws {RequiredError}
19590
+ */
19591
+ apiV1LanguagesCodeGet(code: string, options?: any): AxiosPromise<LanguageModel>;
19592
+ /**
19593
+ *
19594
+ * @summary Get all Languages.
19595
+ * @param {string} [id]
19596
+ * @param {string} [name]
19597
+ * @param {string} [code]
19598
+ * @param {string} [description]
19599
+ * @param {number} [page]
19600
+ * @param {number} [limit]
19601
+ * @param {Date} [lastRetrieved]
19602
+ * @param {*} [options] Override http request option.
19603
+ * @throws {RequiredError}
19604
+ */
19605
+ 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>;
19606
+ /**
19607
+ *
19608
+ * @summary Get Language.
19609
+ * @param {string} id
19610
+ * @param {*} [options] Override http request option.
19611
+ * @throws {RequiredError}
19612
+ */
19613
+ apiV1LanguagesIdGet(id: string, options?: any): AxiosPromise<LanguageModel>;
19614
+ };
19615
+ /**
19616
+ * LanguagesApi - object-oriented interface
19617
+ * @export
19618
+ * @class LanguagesApi
19619
+ * @extends {BaseAPI}
19620
+ */
19621
+ export declare class LanguagesApi extends BaseAPI {
19622
+ /**
19623
+ *
19624
+ * @summary Get Language by code.
19625
+ * @param {string} code
19626
+ * @param {*} [options] Override http request option.
19627
+ * @throws {RequiredError}
19628
+ * @memberof LanguagesApi
19629
+ */
19630
+ apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
19631
+ /**
19632
+ *
19633
+ * @summary Get all Languages.
19634
+ * @param {string} [id]
19635
+ * @param {string} [name]
19636
+ * @param {string} [code]
19637
+ * @param {string} [description]
19638
+ * @param {number} [page]
19639
+ * @param {number} [limit]
19640
+ * @param {Date} [lastRetrieved]
19641
+ * @param {*} [options] Override http request option.
19642
+ * @throws {RequiredError}
19643
+ * @memberof LanguagesApi
19644
+ */
19645
+ apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
19646
+ /**
19647
+ *
19648
+ * @summary Get Language.
19649
+ * @param {string} id
19650
+ * @param {*} [options] Override http request option.
19651
+ * @throws {RequiredError}
19652
+ * @memberof LanguagesApi
19653
+ */
19654
+ apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
19655
+ }
19656
+ /**
19657
+ * NotificationsApi - axios parameter creator
19658
+ * @export
19659
+ */
19660
+ export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
19661
+ /**
19662
+ *
19663
+ * @summary Check notification.
19664
+ * @param {CheckNotificationsCommand} [checkNotificationsCommand]
19665
+ * @param {*} [options] Override http request option.
19666
+ * @throws {RequiredError}
19667
+ */
19668
+ apiV1NotificationsCheckPost: (checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19669
+ /**
19670
+ *
19671
+ * @summary Get all notifications.
19672
+ * @param {NotificationCode} [notificationCode]
19673
+ * @param {boolean} [unreadCountOnly]
19674
+ * @param {number} [page]
19675
+ * @param {number} [limit]
19676
+ * @param {Date} [lastRetrieved]
19677
+ * @param {*} [options] Override http request option.
19678
+ * @throws {RequiredError}
19679
+ */
19680
+ apiV1NotificationsGet: (notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19681
+ };
19682
+ /**
19683
+ * NotificationsApi - functional programming interface
19684
+ * @export
19685
+ */
19686
+ export declare const NotificationsApiFp: (configuration?: Configuration | undefined) => {
19687
+ /**
19688
+ *
19689
+ * @summary Check notification.
19690
+ * @param {CheckNotificationsCommand} [checkNotificationsCommand]
19691
+ * @param {*} [options] Override http request option.
19692
+ * @throws {RequiredError}
19693
+ */
19694
+ apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
19695
+ /**
19696
+ *
19697
+ * @summary Get all notifications.
19698
+ * @param {NotificationCode} [notificationCode]
19699
+ * @param {boolean} [unreadCountOnly]
19700
+ * @param {number} [page]
19701
+ * @param {number} [limit]
19702
+ * @param {Date} [lastRetrieved]
19703
+ * @param {*} [options] Override http request option.
19704
+ * @throws {RequiredError}
19705
+ */
19706
+ 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>>;
19707
+ };
19708
+ /**
19709
+ * NotificationsApi - factory interface
19710
+ * @export
19711
+ */
19712
+ export declare const NotificationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
19713
+ /**
19714
+ *
19715
+ * @summary Check notification.
19716
+ * @param {CheckNotificationsCommand} [checkNotificationsCommand]
19717
+ * @param {*} [options] Override http request option.
19718
+ * @throws {RequiredError}
19719
+ */
19720
+ apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: any): AxiosPromise<boolean>;
19721
+ /**
19722
+ *
19723
+ * @summary Get all notifications.
19724
+ * @param {NotificationCode} [notificationCode]
19725
+ * @param {boolean} [unreadCountOnly]
19726
+ * @param {number} [page]
19727
+ * @param {number} [limit]
19728
+ * @param {Date} [lastRetrieved]
19729
+ * @param {*} [options] Override http request option.
19730
+ * @throws {RequiredError}
19731
+ */
19732
+ apiV1NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<NotificationsModel>;
19733
+ };
19734
+ /**
19735
+ * NotificationsApi - object-oriented interface
19736
+ * @export
19737
+ * @class NotificationsApi
19738
+ * @extends {BaseAPI}
19739
+ */
19740
+ export declare class NotificationsApi extends BaseAPI {
19741
+ /**
19742
+ *
19743
+ * @summary Check notification.
19744
+ * @param {CheckNotificationsCommand} [checkNotificationsCommand]
19745
+ * @param {*} [options] Override http request option.
19746
+ * @throws {RequiredError}
19747
+ * @memberof NotificationsApi
19748
+ */
19749
+ apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19750
+ /**
19751
+ *
19752
+ * @summary Get all notifications.
19753
+ * @param {NotificationCode} [notificationCode]
19754
+ * @param {boolean} [unreadCountOnly]
19755
+ * @param {number} [page]
19756
+ * @param {number} [limit]
19757
+ * @param {Date} [lastRetrieved]
19758
+ * @param {*} [options] Override http request option.
19759
+ * @throws {RequiredError}
19760
+ * @memberof NotificationsApi
19761
+ */
19762
+ apiV1NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel>>;
19763
+ }
19764
+ /**
19765
+ * ServicesApi - axios parameter creator
19766
+ * @export
19767
+ */
19768
+ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
19769
+ /**
19770
+ *
19771
+ * @summary Get all HospitalServices.
18872
19772
  * @param {string} [hospitalId]
18873
19773
  * @param {string} [hospitalName]
18874
19774
  * @param {string} [hospitalSlug]
19775
+ * @param {string} [id]
19776
+ * @param {string} [name]
19777
+ * @param {string} [description]
18875
19778
  * @param {string} [specialtyId]
19779
+ * @param {string} [specialtyName]
18876
19780
  * @param {string} [specialtyTypeId]
18877
19781
  * @param {string} [specialtyTypeName]
19782
+ * @param {string} [serviceCategoryId]
18878
19783
  * @param {MarketingType} [marketingType]
18879
19784
  * @param {Procedure} [procedure]
18880
19785
  * @param {Date} [created]
@@ -18885,10 +19790,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
18885
19790
  * @param {*} [options] Override http request option.
18886
19791
  * @throws {RequiredError}
18887
19792
  */
18888
- 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>;
19793
+ apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18889
19794
  /**
18890
19795
  *
18891
- * @summary Get service by slug.
19796
+ * @summary Get HospitalService.
19797
+ * @param {string} serviceId
19798
+ * @param {string} [languageCode]
19799
+ * @param {*} [options] Override http request option.
19800
+ * @throws {RequiredError}
19801
+ */
19802
+ apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19803
+ /**
19804
+ *
19805
+ * @summary Get HospitalService by slug.
18892
19806
  * @param {string} slug
18893
19807
  * @param {string} [languageCode]
18894
19808
  * @param {*} [options] Override http request option.
@@ -18902,17 +19816,19 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
18902
19816
  */
18903
19817
  export declare const ServicesApiFp: (configuration?: Configuration | undefined) => {
18904
19818
  /**
18905
- * Sample request: GET /api/v1/hospitals/services
18906
- * @summary Get all services.
18907
- * @param {string} [id]
18908
- * @param {string} [name]
18909
- * @param {string} [description]
19819
+ *
19820
+ * @summary Get all HospitalServices.
18910
19821
  * @param {string} [hospitalId]
18911
19822
  * @param {string} [hospitalName]
18912
19823
  * @param {string} [hospitalSlug]
19824
+ * @param {string} [id]
19825
+ * @param {string} [name]
19826
+ * @param {string} [description]
18913
19827
  * @param {string} [specialtyId]
19828
+ * @param {string} [specialtyName]
18914
19829
  * @param {string} [specialtyTypeId]
18915
19830
  * @param {string} [specialtyTypeName]
19831
+ * @param {string} [serviceCategoryId]
18916
19832
  * @param {MarketingType} [marketingType]
18917
19833
  * @param {Procedure} [procedure]
18918
19834
  * @param {Date} [created]
@@ -18923,16 +19839,25 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
18923
19839
  * @param {*} [options] Override http request option.
18924
19840
  * @throws {RequiredError}
18925
19841
  */
18926
- apiV1ServicesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServicesModel>>;
19842
+ apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
18927
19843
  /**
18928
19844
  *
18929
- * @summary Get service by slug.
19845
+ * @summary Get HospitalService.
19846
+ * @param {string} serviceId
19847
+ * @param {string} [languageCode]
19848
+ * @param {*} [options] Override http request option.
19849
+ * @throws {RequiredError}
19850
+ */
19851
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
19852
+ /**
19853
+ *
19854
+ * @summary Get HospitalService by slug.
18930
19855
  * @param {string} slug
18931
19856
  * @param {string} [languageCode]
18932
19857
  * @param {*} [options] Override http request option.
18933
19858
  * @throws {RequiredError}
18934
19859
  */
18935
- apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceModel>>;
19860
+ apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
18936
19861
  };
18937
19862
  /**
18938
19863
  * ServicesApi - factory interface
@@ -18940,17 +19865,19 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
18940
19865
  */
18941
19866
  export declare const ServicesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
18942
19867
  /**
18943
- * Sample request: GET /api/v1/hospitals/services
18944
- * @summary Get all services.
18945
- * @param {string} [id]
18946
- * @param {string} [name]
18947
- * @param {string} [description]
19868
+ *
19869
+ * @summary Get all HospitalServices.
18948
19870
  * @param {string} [hospitalId]
18949
19871
  * @param {string} [hospitalName]
18950
19872
  * @param {string} [hospitalSlug]
19873
+ * @param {string} [id]
19874
+ * @param {string} [name]
19875
+ * @param {string} [description]
18951
19876
  * @param {string} [specialtyId]
19877
+ * @param {string} [specialtyName]
18952
19878
  * @param {string} [specialtyTypeId]
18953
19879
  * @param {string} [specialtyTypeName]
19880
+ * @param {string} [serviceCategoryId]
18954
19881
  * @param {MarketingType} [marketingType]
18955
19882
  * @param {Procedure} [procedure]
18956
19883
  * @param {Date} [created]
@@ -18961,16 +19888,25 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
18961
19888
  * @param {*} [options] Override http request option.
18962
19889
  * @throws {RequiredError}
18963
19890
  */
18964
- apiV1ServicesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServicesModel>;
19891
+ apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
18965
19892
  /**
18966
19893
  *
18967
- * @summary Get service by slug.
19894
+ * @summary Get HospitalService.
19895
+ * @param {string} serviceId
19896
+ * @param {string} [languageCode]
19897
+ * @param {*} [options] Override http request option.
19898
+ * @throws {RequiredError}
19899
+ */
19900
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
19901
+ /**
19902
+ *
19903
+ * @summary Get HospitalService by slug.
18968
19904
  * @param {string} slug
18969
19905
  * @param {string} [languageCode]
18970
19906
  * @param {*} [options] Override http request option.
18971
19907
  * @throws {RequiredError}
18972
19908
  */
18973
- apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceModel>;
19909
+ apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
18974
19910
  };
18975
19911
  /**
18976
19912
  * ServicesApi - object-oriented interface
@@ -18980,17 +19916,19 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
18980
19916
  */
18981
19917
  export declare class ServicesApi extends BaseAPI {
18982
19918
  /**
18983
- * Sample request: GET /api/v1/hospitals/services
18984
- * @summary Get all services.
18985
- * @param {string} [id]
18986
- * @param {string} [name]
18987
- * @param {string} [description]
19919
+ *
19920
+ * @summary Get all HospitalServices.
18988
19921
  * @param {string} [hospitalId]
18989
19922
  * @param {string} [hospitalName]
18990
19923
  * @param {string} [hospitalSlug]
19924
+ * @param {string} [id]
19925
+ * @param {string} [name]
19926
+ * @param {string} [description]
18991
19927
  * @param {string} [specialtyId]
19928
+ * @param {string} [specialtyName]
18992
19929
  * @param {string} [specialtyTypeId]
18993
19930
  * @param {string} [specialtyTypeName]
19931
+ * @param {string} [serviceCategoryId]
18994
19932
  * @param {MarketingType} [marketingType]
18995
19933
  * @param {Procedure} [procedure]
18996
19934
  * @param {Date} [created]
@@ -19002,17 +19940,27 @@ export declare class ServicesApi extends BaseAPI {
19002
19940
  * @throws {RequiredError}
19003
19941
  * @memberof ServicesApi
19004
19942
  */
19005
- apiV1ServicesGet(id?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyTypeId?: string, specialtyTypeName?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicesModel>>;
19943
+ apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
19944
+ /**
19945
+ *
19946
+ * @summary Get HospitalService.
19947
+ * @param {string} serviceId
19948
+ * @param {string} [languageCode]
19949
+ * @param {*} [options] Override http request option.
19950
+ * @throws {RequiredError}
19951
+ * @memberof ServicesApi
19952
+ */
19953
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19006
19954
  /**
19007
19955
  *
19008
- * @summary Get service by slug.
19956
+ * @summary Get HospitalService by slug.
19009
19957
  * @param {string} slug
19010
19958
  * @param {string} [languageCode]
19011
19959
  * @param {*} [options] Override http request option.
19012
19960
  * @throws {RequiredError}
19013
19961
  * @memberof ServicesApi
19014
19962
  */
19015
- apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceModel>>;
19963
+ apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
19016
19964
  }
19017
19965
  /**
19018
19966
  * ServicesCategoriesApi - axios parameter creator