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

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
@@ -3387,6 +3387,19 @@ export interface CreateDealServiceCommand {
3387
3387
  */
3388
3388
  'order'?: number;
3389
3389
  }
3390
+ /**
3391
+ *
3392
+ * @export
3393
+ * @interface CreateDoctorAffiliationCommand
3394
+ */
3395
+ export interface CreateDoctorAffiliationCommand {
3396
+ /**
3397
+ *
3398
+ * @type {string}
3399
+ * @memberof CreateDoctorAffiliationCommand
3400
+ */
3401
+ 'hospitalId'?: string;
3402
+ }
3390
3403
  /**
3391
3404
  *
3392
3405
  * @export
@@ -4723,6 +4736,19 @@ export interface DealsModel {
4723
4736
  */
4724
4737
  'metaData'?: PagedListMetaData;
4725
4738
  }
4739
+ /**
4740
+ *
4741
+ * @export
4742
+ * @interface DeleteDoctorAffiliationCommand
4743
+ */
4744
+ export interface DeleteDoctorAffiliationCommand {
4745
+ /**
4746
+ *
4747
+ * @type {string}
4748
+ * @memberof DeleteDoctorAffiliationCommand
4749
+ */
4750
+ 'hospitalId'?: string;
4751
+ }
4726
4752
  /**
4727
4753
  *
4728
4754
  * @export
@@ -5112,6 +5138,73 @@ export interface DoctorAffiliation {
5112
5138
  */
5113
5139
  'order'?: number;
5114
5140
  }
5141
+ /**
5142
+ *
5143
+ * @export
5144
+ * @interface DoctorAffiliationModel
5145
+ */
5146
+ export interface DoctorAffiliationModel {
5147
+ /**
5148
+ *
5149
+ * @type {string}
5150
+ * @memberof DoctorAffiliationModel
5151
+ */
5152
+ 'hospitalId'?: string;
5153
+ /**
5154
+ *
5155
+ * @type {string}
5156
+ * @memberof DoctorAffiliationModel
5157
+ */
5158
+ 'hospitalName'?: string | null;
5159
+ /**
5160
+ *
5161
+ * @type {string}
5162
+ * @memberof DoctorAffiliationModel
5163
+ */
5164
+ 'hospitalSlug'?: string | null;
5165
+ /**
5166
+ *
5167
+ * @type {string}
5168
+ * @memberof DoctorAffiliationModel
5169
+ */
5170
+ 'countryId'?: string;
5171
+ /**
5172
+ *
5173
+ * @type {string}
5174
+ * @memberof DoctorAffiliationModel
5175
+ */
5176
+ 'countryName'?: string | null;
5177
+ /**
5178
+ *
5179
+ * @type {string}
5180
+ * @memberof DoctorAffiliationModel
5181
+ */
5182
+ 'stateName'?: string | null;
5183
+ /**
5184
+ *
5185
+ * @type {string}
5186
+ * @memberof DoctorAffiliationModel
5187
+ */
5188
+ 'cityName'?: string | null;
5189
+ /**
5190
+ *
5191
+ * @type {string}
5192
+ * @memberof DoctorAffiliationModel
5193
+ */
5194
+ 'doctorId'?: string;
5195
+ /**
5196
+ *
5197
+ * @type {string}
5198
+ * @memberof DoctorAffiliationModel
5199
+ */
5200
+ 'doctorName'?: string | null;
5201
+ /**
5202
+ *
5203
+ * @type {number}
5204
+ * @memberof DoctorAffiliationModel
5205
+ */
5206
+ 'order'?: number;
5207
+ }
5115
5208
  /**
5116
5209
  *
5117
5210
  * @export
@@ -15585,6 +15678,24 @@ export declare class DealsApi extends BaseAPI {
15585
15678
  * @export
15586
15679
  */
15587
15680
  export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
15681
+ /**
15682
+ *
15683
+ * @summary Delete DoctorAffiliation.
15684
+ * @param {string} doctorId
15685
+ * @param {DeleteDoctorAffiliationCommand} [deleteDoctorAffiliationCommand]
15686
+ * @param {*} [options] Override http request option.
15687
+ * @throws {RequiredError}
15688
+ */
15689
+ apiV1DoctorsDoctorIdAffiliationsDelete: (doctorId: string, deleteDoctorAffiliationCommand?: DeleteDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15690
+ /**
15691
+ *
15692
+ * @summary Create DoctorAffiliation.
15693
+ * @param {string} doctorId
15694
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
15695
+ * @param {*} [options] Override http request option.
15696
+ * @throws {RequiredError}
15697
+ */
15698
+ apiV1DoctorsDoctorIdAffiliationsPost: (doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15588
15699
  /**
15589
15700
  *
15590
15701
  * @summary Delete DoctorCertificate.
@@ -15911,6 +16022,24 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15911
16022
  * @export
15912
16023
  */
15913
16024
  export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
16025
+ /**
16026
+ *
16027
+ * @summary Delete DoctorAffiliation.
16028
+ * @param {string} doctorId
16029
+ * @param {DeleteDoctorAffiliationCommand} [deleteDoctorAffiliationCommand]
16030
+ * @param {*} [options] Override http request option.
16031
+ * @throws {RequiredError}
16032
+ */
16033
+ apiV1DoctorsDoctorIdAffiliationsDelete(doctorId: string, deleteDoctorAffiliationCommand?: DeleteDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
16034
+ /**
16035
+ *
16036
+ * @summary Create DoctorAffiliation.
16037
+ * @param {string} doctorId
16038
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
16039
+ * @param {*} [options] Override http request option.
16040
+ * @throws {RequiredError}
16041
+ */
16042
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
15914
16043
  /**
15915
16044
  *
15916
16045
  * @summary Delete DoctorCertificate.
@@ -16237,6 +16366,24 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16237
16366
  * @export
16238
16367
  */
16239
16368
  export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
16369
+ /**
16370
+ *
16371
+ * @summary Delete DoctorAffiliation.
16372
+ * @param {string} doctorId
16373
+ * @param {DeleteDoctorAffiliationCommand} [deleteDoctorAffiliationCommand]
16374
+ * @param {*} [options] Override http request option.
16375
+ * @throws {RequiredError}
16376
+ */
16377
+ apiV1DoctorsDoctorIdAffiliationsDelete(doctorId: string, deleteDoctorAffiliationCommand?: DeleteDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<boolean>;
16378
+ /**
16379
+ *
16380
+ * @summary Create DoctorAffiliation.
16381
+ * @param {string} doctorId
16382
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
16383
+ * @param {*} [options] Override http request option.
16384
+ * @throws {RequiredError}
16385
+ */
16386
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
16240
16387
  /**
16241
16388
  *
16242
16389
  * @summary Delete DoctorCertificate.
@@ -16565,6 +16712,26 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16565
16712
  * @extends {BaseAPI}
16566
16713
  */
16567
16714
  export declare class DoctorsApi extends BaseAPI {
16715
+ /**
16716
+ *
16717
+ * @summary Delete DoctorAffiliation.
16718
+ * @param {string} doctorId
16719
+ * @param {DeleteDoctorAffiliationCommand} [deleteDoctorAffiliationCommand]
16720
+ * @param {*} [options] Override http request option.
16721
+ * @throws {RequiredError}
16722
+ * @memberof DoctorsApi
16723
+ */
16724
+ apiV1DoctorsDoctorIdAffiliationsDelete(doctorId: string, deleteDoctorAffiliationCommand?: DeleteDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
16725
+ /**
16726
+ *
16727
+ * @summary Create DoctorAffiliation.
16728
+ * @param {string} doctorId
16729
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
16730
+ * @param {*} [options] Override http request option.
16731
+ * @throws {RequiredError}
16732
+ * @memberof DoctorsApi
16733
+ */
16734
+ apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
16568
16735
  /**
16569
16736
  *
16570
16737
  * @summary Delete DoctorCertificate.
@@ -18640,6 +18807,57 @@ export declare class HospitalsApi extends BaseAPI {
18640
18807
  */
18641
18808
  apiV1HospitalsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
18642
18809
  }
18810
+ /**
18811
+ * ImagesApi - axios parameter creator
18812
+ * @export
18813
+ */
18814
+ export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
18815
+ /**
18816
+ *
18817
+ * @param {*} [options] Override http request option.
18818
+ * @throws {RequiredError}
18819
+ */
18820
+ apiV1ImagesPost: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
18821
+ };
18822
+ /**
18823
+ * ImagesApi - functional programming interface
18824
+ * @export
18825
+ */
18826
+ export declare const ImagesApiFp: (configuration?: Configuration | undefined) => {
18827
+ /**
18828
+ *
18829
+ * @param {*} [options] Override http request option.
18830
+ * @throws {RequiredError}
18831
+ */
18832
+ apiV1ImagesPost(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<MediaModel>>>;
18833
+ };
18834
+ /**
18835
+ * ImagesApi - factory interface
18836
+ * @export
18837
+ */
18838
+ export declare const ImagesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
18839
+ /**
18840
+ *
18841
+ * @param {*} [options] Override http request option.
18842
+ * @throws {RequiredError}
18843
+ */
18844
+ apiV1ImagesPost(options?: any): AxiosPromise<Array<MediaModel>>;
18845
+ };
18846
+ /**
18847
+ * ImagesApi - object-oriented interface
18848
+ * @export
18849
+ * @class ImagesApi
18850
+ * @extends {BaseAPI}
18851
+ */
18852
+ export declare class ImagesApi extends BaseAPI {
18853
+ /**
18854
+ *
18855
+ * @param {*} [options] Override http request option.
18856
+ * @throws {RequiredError}
18857
+ * @memberof ImagesApi
18858
+ */
18859
+ apiV1ImagesPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel[]>>;
18860
+ }
18643
18861
  /**
18644
18862
  * ServicesApi - axios parameter creator
18645
18863
  * @export
@@ -19072,6 +19290,56 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
19072
19290
  * @throws {RequiredError}
19073
19291
  */
19074
19292
  apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19293
+ /**
19294
+ *
19295
+ * @summary Get all SpecialtyMedias.
19296
+ * @param {string} specialtyId
19297
+ * @param {string} [id]
19298
+ * @param {MediaType} [mediaType]
19299
+ * @param {number} [page]
19300
+ * @param {number} [limit]
19301
+ * @param {Date} [lastRetrieved]
19302
+ * @param {*} [options] Override http request option.
19303
+ * @throws {RequiredError}
19304
+ */
19305
+ apiV1SpecialtiesSpecialtyIdMediasGet: (specialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19306
+ /**
19307
+ *
19308
+ * @summary Delete SpecialtyMedia
19309
+ * @param {string} specialtyId
19310
+ * @param {string} mediaId
19311
+ * @param {*} [options] Override http request option.
19312
+ * @throws {RequiredError}
19313
+ */
19314
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete: (specialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19315
+ /**
19316
+ *
19317
+ * @summary Get SpecialtyMedia.
19318
+ * @param {string} specialtyId
19319
+ * @param {string} mediaId
19320
+ * @param {*} [options] Override http request option.
19321
+ * @throws {RequiredError}
19322
+ */
19323
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdGet: (specialtyId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19324
+ /**
19325
+ *
19326
+ * @summary Update SpecialtyMedia.
19327
+ * @param {string} specialtyId
19328
+ * @param {string} mediaId
19329
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19330
+ * @param {*} [options] Override http request option.
19331
+ * @throws {RequiredError}
19332
+ */
19333
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdPut: (specialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19334
+ /**
19335
+ *
19336
+ * @summary Create SpecialtyMedia.
19337
+ * @param {string} specialtyId
19338
+ * @param {CreateMediaCommand} [createMediaCommand]
19339
+ * @param {*} [options] Override http request option.
19340
+ * @throws {RequiredError}
19341
+ */
19342
+ apiV1SpecialtiesSpecialtyIdMediasPost: (specialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19075
19343
  /**
19076
19344
  *
19077
19345
  * @summary Update Specialty.
@@ -19139,6 +19407,56 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
19139
19407
  * @throws {RequiredError}
19140
19408
  */
19141
19409
  apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
19410
+ /**
19411
+ *
19412
+ * @summary Get all SpecialtyMedias.
19413
+ * @param {string} specialtyId
19414
+ * @param {string} [id]
19415
+ * @param {MediaType} [mediaType]
19416
+ * @param {number} [page]
19417
+ * @param {number} [limit]
19418
+ * @param {Date} [lastRetrieved]
19419
+ * @param {*} [options] Override http request option.
19420
+ * @throws {RequiredError}
19421
+ */
19422
+ apiV1SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
19423
+ /**
19424
+ *
19425
+ * @summary Delete SpecialtyMedia
19426
+ * @param {string} specialtyId
19427
+ * @param {string} mediaId
19428
+ * @param {*} [options] Override http request option.
19429
+ * @throws {RequiredError}
19430
+ */
19431
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(specialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
19432
+ /**
19433
+ *
19434
+ * @summary Get SpecialtyMedia.
19435
+ * @param {string} specialtyId
19436
+ * @param {string} mediaId
19437
+ * @param {*} [options] Override http request option.
19438
+ * @throws {RequiredError}
19439
+ */
19440
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
19441
+ /**
19442
+ *
19443
+ * @summary Update SpecialtyMedia.
19444
+ * @param {string} specialtyId
19445
+ * @param {string} mediaId
19446
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19447
+ * @param {*} [options] Override http request option.
19448
+ * @throws {RequiredError}
19449
+ */
19450
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdPut(specialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
19451
+ /**
19452
+ *
19453
+ * @summary Create SpecialtyMedia.
19454
+ * @param {string} specialtyId
19455
+ * @param {CreateMediaCommand} [createMediaCommand]
19456
+ * @param {*} [options] Override http request option.
19457
+ * @throws {RequiredError}
19458
+ */
19459
+ apiV1SpecialtiesSpecialtyIdMediasPost(specialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
19142
19460
  /**
19143
19461
  *
19144
19462
  * @summary Update Specialty.
@@ -19206,6 +19524,56 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
19206
19524
  * @throws {RequiredError}
19207
19525
  */
19208
19526
  apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
19527
+ /**
19528
+ *
19529
+ * @summary Get all SpecialtyMedias.
19530
+ * @param {string} specialtyId
19531
+ * @param {string} [id]
19532
+ * @param {MediaType} [mediaType]
19533
+ * @param {number} [page]
19534
+ * @param {number} [limit]
19535
+ * @param {Date} [lastRetrieved]
19536
+ * @param {*} [options] Override http request option.
19537
+ * @throws {RequiredError}
19538
+ */
19539
+ apiV1SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
19540
+ /**
19541
+ *
19542
+ * @summary Delete SpecialtyMedia
19543
+ * @param {string} specialtyId
19544
+ * @param {string} mediaId
19545
+ * @param {*} [options] Override http request option.
19546
+ * @throws {RequiredError}
19547
+ */
19548
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(specialtyId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
19549
+ /**
19550
+ *
19551
+ * @summary Get SpecialtyMedia.
19552
+ * @param {string} specialtyId
19553
+ * @param {string} mediaId
19554
+ * @param {*} [options] Override http request option.
19555
+ * @throws {RequiredError}
19556
+ */
19557
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
19558
+ /**
19559
+ *
19560
+ * @summary Update SpecialtyMedia.
19561
+ * @param {string} specialtyId
19562
+ * @param {string} mediaId
19563
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19564
+ * @param {*} [options] Override http request option.
19565
+ * @throws {RequiredError}
19566
+ */
19567
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdPut(specialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
19568
+ /**
19569
+ *
19570
+ * @summary Create SpecialtyMedia.
19571
+ * @param {string} specialtyId
19572
+ * @param {CreateMediaCommand} [createMediaCommand]
19573
+ * @param {*} [options] Override http request option.
19574
+ * @throws {RequiredError}
19575
+ */
19576
+ apiV1SpecialtiesSpecialtyIdMediasPost(specialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
19209
19577
  /**
19210
19578
  *
19211
19579
  * @summary Update Specialty.
@@ -19280,6 +19648,61 @@ export declare class SpecialtiesApi extends BaseAPI {
19280
19648
  * @memberof SpecialtiesApi
19281
19649
  */
19282
19650
  apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
19651
+ /**
19652
+ *
19653
+ * @summary Get all SpecialtyMedias.
19654
+ * @param {string} specialtyId
19655
+ * @param {string} [id]
19656
+ * @param {MediaType} [mediaType]
19657
+ * @param {number} [page]
19658
+ * @param {number} [limit]
19659
+ * @param {Date} [lastRetrieved]
19660
+ * @param {*} [options] Override http request option.
19661
+ * @throws {RequiredError}
19662
+ * @memberof SpecialtiesApi
19663
+ */
19664
+ apiV1SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
19665
+ /**
19666
+ *
19667
+ * @summary Delete SpecialtyMedia
19668
+ * @param {string} specialtyId
19669
+ * @param {string} mediaId
19670
+ * @param {*} [options] Override http request option.
19671
+ * @throws {RequiredError}
19672
+ * @memberof SpecialtiesApi
19673
+ */
19674
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdDelete(specialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19675
+ /**
19676
+ *
19677
+ * @summary Get SpecialtyMedia.
19678
+ * @param {string} specialtyId
19679
+ * @param {string} mediaId
19680
+ * @param {*} [options] Override http request option.
19681
+ * @throws {RequiredError}
19682
+ * @memberof SpecialtiesApi
19683
+ */
19684
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19685
+ /**
19686
+ *
19687
+ * @summary Update SpecialtyMedia.
19688
+ * @param {string} specialtyId
19689
+ * @param {string} mediaId
19690
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19691
+ * @param {*} [options] Override http request option.
19692
+ * @throws {RequiredError}
19693
+ * @memberof SpecialtiesApi
19694
+ */
19695
+ apiV1SpecialtiesSpecialtyIdMediasMediaIdPut(specialtyId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19696
+ /**
19697
+ *
19698
+ * @summary Create SpecialtyMedia.
19699
+ * @param {string} specialtyId
19700
+ * @param {CreateMediaCommand} [createMediaCommand]
19701
+ * @param {*} [options] Override http request option.
19702
+ * @throws {RequiredError}
19703
+ * @memberof SpecialtiesApi
19704
+ */
19705
+ apiV1SpecialtiesSpecialtyIdMediasPost(specialtyId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19283
19706
  /**
19284
19707
  *
19285
19708
  * @summary Update Specialty.