ch-admin-api-client-typescript 4.0.8 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -3400,6 +3400,12 @@ export interface CreateChatUserCommand {
3400
3400
  * @memberof CreateChatUserCommand
3401
3401
  */
3402
3402
  'discoveryKeys'?: Array<string> | null;
3403
+ /**
3404
+ *
3405
+ * @type {string}
3406
+ * @memberof CreateChatUserCommand
3407
+ */
3408
+ 'hospitalId'?: string;
3403
3409
  }
3404
3410
  /**
3405
3411
  *
@@ -5078,6 +5084,18 @@ export interface DealItemModel {
5078
5084
  * @memberof DealItemModel
5079
5085
  */
5080
5086
  'photoThumbnail'?: string | null;
5087
+ /**
5088
+ *
5089
+ * @type {number}
5090
+ * @memberof DealItemModel
5091
+ */
5092
+ 'lowestPrice'?: number;
5093
+ /**
5094
+ *
5095
+ * @type {number}
5096
+ * @memberof DealItemModel
5097
+ */
5098
+ 'dealServicesCount'?: number;
5081
5099
  /**
5082
5100
  *
5083
5101
  * @type {number}
@@ -5200,6 +5218,18 @@ export interface DealModel {
5200
5218
  * @memberof DealModel
5201
5219
  */
5202
5220
  'photoThumbnail'?: string | null;
5221
+ /**
5222
+ *
5223
+ * @type {number}
5224
+ * @memberof DealModel
5225
+ */
5226
+ 'lowestPrice'?: number;
5227
+ /**
5228
+ *
5229
+ * @type {number}
5230
+ * @memberof DealModel
5231
+ */
5232
+ 'dealServicesCount'?: number;
5203
5233
  /**
5204
5234
  *
5205
5235
  * @type {number}
@@ -7597,6 +7627,12 @@ export interface HospitalItemModel {
7597
7627
  * @memberof HospitalItemModel
7598
7628
  */
7599
7629
  'countryId'?: string;
7630
+ /**
7631
+ *
7632
+ * @type {Array<MediaModel>}
7633
+ * @memberof HospitalItemModel
7634
+ */
7635
+ 'medias'?: Array<MediaModel> | null;
7600
7636
  /**
7601
7637
  *
7602
7638
  * @type {LocationModel}
@@ -7738,6 +7774,12 @@ export interface HospitalModel {
7738
7774
  * @memberof HospitalModel
7739
7775
  */
7740
7776
  'countryId'?: string;
7777
+ /**
7778
+ *
7779
+ * @type {Array<MediaModel>}
7780
+ * @memberof HospitalModel
7781
+ */
7782
+ 'medias'?: Array<MediaModel> | null;
7741
7783
  /**
7742
7784
  *
7743
7785
  * @type {LocationModel}
@@ -7889,6 +7931,48 @@ export interface HospitalServiceItemModel {
7889
7931
  * @memberof HospitalServiceItemModel
7890
7932
  */
7891
7933
  'specialtyName'?: string | null;
7934
+ /**
7935
+ *
7936
+ * @type {string}
7937
+ * @memberof HospitalServiceItemModel
7938
+ */
7939
+ 'hospitalSpecialtyName'?: string | null;
7940
+ /**
7941
+ *
7942
+ * @type {string}
7943
+ * @memberof HospitalServiceItemModel
7944
+ */
7945
+ 'hospitalSpecialtySlug'?: string | null;
7946
+ /**
7947
+ *
7948
+ * @type {string}
7949
+ * @memberof HospitalServiceItemModel
7950
+ */
7951
+ 'hospitalSpecialtyId'?: string;
7952
+ /**
7953
+ *
7954
+ * @type {Procedure}
7955
+ * @memberof HospitalServiceItemModel
7956
+ */
7957
+ 'procedure'?: Procedure;
7958
+ /**
7959
+ *
7960
+ * @type {number}
7961
+ * @memberof HospitalServiceItemModel
7962
+ */
7963
+ 'minPrice'?: number | null;
7964
+ /**
7965
+ *
7966
+ * @type {number}
7967
+ * @memberof HospitalServiceItemModel
7968
+ */
7969
+ 'maxPrice'?: number | null;
7970
+ /**
7971
+ *
7972
+ * @type {boolean}
7973
+ * @memberof HospitalServiceItemModel
7974
+ */
7975
+ 'priceReuqest'?: boolean;
7892
7976
  /**
7893
7977
  *
7894
7978
  * @type {number}
@@ -7980,6 +8064,36 @@ export interface HospitalServiceModel {
7980
8064
  * @memberof HospitalServiceModel
7981
8065
  */
7982
8066
  'specialtyName'?: string | null;
8067
+ /**
8068
+ *
8069
+ * @type {string}
8070
+ * @memberof HospitalServiceModel
8071
+ */
8072
+ 'hospitalSpecialtyId'?: string;
8073
+ /**
8074
+ *
8075
+ * @type {Procedure}
8076
+ * @memberof HospitalServiceModel
8077
+ */
8078
+ 'procedure'?: Procedure;
8079
+ /**
8080
+ *
8081
+ * @type {number}
8082
+ * @memberof HospitalServiceModel
8083
+ */
8084
+ 'minPrice'?: number | null;
8085
+ /**
8086
+ *
8087
+ * @type {number}
8088
+ * @memberof HospitalServiceModel
8089
+ */
8090
+ 'maxPrice'?: number | null;
8091
+ /**
8092
+ *
8093
+ * @type {boolean}
8094
+ * @memberof HospitalServiceModel
8095
+ */
8096
+ 'priceReuqest'?: boolean;
7983
8097
  /**
7984
8098
  *
7985
8099
  * @type {number}
@@ -8046,30 +8160,6 @@ export interface HospitalServiceModel {
8046
8160
  * @memberof HospitalServiceModel
8047
8161
  */
8048
8162
  'serviceCategoryName'?: string | null;
8049
- /**
8050
- *
8051
- * @type {Procedure}
8052
- * @memberof HospitalServiceModel
8053
- */
8054
- 'procedure'?: Procedure;
8055
- /**
8056
- *
8057
- * @type {number}
8058
- * @memberof HospitalServiceModel
8059
- */
8060
- 'minPrice'?: number | null;
8061
- /**
8062
- *
8063
- * @type {number}
8064
- * @memberof HospitalServiceModel
8065
- */
8066
- 'maxPrice'?: number | null;
8067
- /**
8068
- *
8069
- * @type {boolean}
8070
- * @memberof HospitalServiceModel
8071
- */
8072
- 'priceReuqest'?: boolean;
8073
8163
  /**
8074
8164
  *
8075
8165
  * @type {string}
@@ -14410,7 +14500,6 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
14410
14500
  * @param {string} [id]
14411
14501
  * @param {string} [name]
14412
14502
  * @param {string} [description]
14413
- * @param {ArticleStatus} [status]
14414
14503
  * @param {MarketingType} [marketingType]
14415
14504
  * @param {string} [userId]
14416
14505
  * @param {string} [userName]
@@ -14429,7 +14518,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
14429
14518
  * @param {*} [options] Override http request option.
14430
14519
  * @throws {RequiredError}
14431
14520
  */
14432
- apiV1ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14521
+ apiV1ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14433
14522
  /**
14434
14523
  *
14435
14524
  * @summary Create a Article.
@@ -14681,7 +14770,6 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
14681
14770
  * @param {string} [id]
14682
14771
  * @param {string} [name]
14683
14772
  * @param {string} [description]
14684
- * @param {ArticleStatus} [status]
14685
14773
  * @param {MarketingType} [marketingType]
14686
14774
  * @param {string} [userId]
14687
14775
  * @param {string} [userName]
@@ -14700,7 +14788,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
14700
14788
  * @param {*} [options] Override http request option.
14701
14789
  * @throws {RequiredError}
14702
14790
  */
14703
- apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
14791
+ apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
14704
14792
  /**
14705
14793
  *
14706
14794
  * @summary Create a Article.
@@ -14952,7 +15040,6 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
14952
15040
  * @param {string} [id]
14953
15041
  * @param {string} [name]
14954
15042
  * @param {string} [description]
14955
- * @param {ArticleStatus} [status]
14956
15043
  * @param {MarketingType} [marketingType]
14957
15044
  * @param {string} [userId]
14958
15045
  * @param {string} [userName]
@@ -14971,7 +15058,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
14971
15058
  * @param {*} [options] Override http request option.
14972
15059
  * @throws {RequiredError}
14973
15060
  */
14974
- apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
15061
+ apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
14975
15062
  /**
14976
15063
  *
14977
15064
  * @summary Create a Article.
@@ -15247,7 +15334,6 @@ export declare class ArticlesApi extends BaseAPI {
15247
15334
  * @param {string} [id]
15248
15335
  * @param {string} [name]
15249
15336
  * @param {string} [description]
15250
- * @param {ArticleStatus} [status]
15251
15337
  * @param {MarketingType} [marketingType]
15252
15338
  * @param {string} [userId]
15253
15339
  * @param {string} [userName]
@@ -15267,7 +15353,7 @@ export declare class ArticlesApi extends BaseAPI {
15267
15353
  * @throws {RequiredError}
15268
15354
  * @memberof ArticlesApi
15269
15355
  */
15270
- apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
15356
+ apiV1ArticlesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
15271
15357
  /**
15272
15358
  *
15273
15359
  * @summary Create a Article.
@@ -18744,6 +18830,56 @@ export declare class DealsApi extends BaseAPI {
18744
18830
  * @export
18745
18831
  */
18746
18832
  export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
18833
+ /**
18834
+ *
18835
+ * @summary Get all DoctorAffiliationMedias.
18836
+ * @param {string} doctorAffiliationId
18837
+ * @param {string} [id]
18838
+ * @param {MediaType} [mediaType]
18839
+ * @param {number} [page]
18840
+ * @param {number} [limit]
18841
+ * @param {Date} [lastRetrieved]
18842
+ * @param {*} [options] Override http request option.
18843
+ * @throws {RequiredError}
18844
+ */
18845
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasGet: (doctorAffiliationId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18846
+ /**
18847
+ *
18848
+ * @summary Delete DoctorAffiliationMedia
18849
+ * @param {string} doctorAffiliationId
18850
+ * @param {string} mediaId
18851
+ * @param {*} [options] Override http request option.
18852
+ * @throws {RequiredError}
18853
+ */
18854
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdDelete: (doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18855
+ /**
18856
+ *
18857
+ * @summary Get DoctorAffiliationMedia.
18858
+ * @param {string} doctorAffiliationId
18859
+ * @param {string} mediaId
18860
+ * @param {*} [options] Override http request option.
18861
+ * @throws {RequiredError}
18862
+ */
18863
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet: (doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18864
+ /**
18865
+ *
18866
+ * @summary Update DoctorAffiliationMedia.
18867
+ * @param {string} doctorAffiliationId
18868
+ * @param {string} mediaId
18869
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18870
+ * @param {*} [options] Override http request option.
18871
+ * @throws {RequiredError}
18872
+ */
18873
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdPut: (doctorAffiliationId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18874
+ /**
18875
+ *
18876
+ * @summary Create DoctorAffiliationMedia.
18877
+ * @param {string} doctorAffiliationId
18878
+ * @param {CreateMediaCommand} [createMediaCommand]
18879
+ * @param {*} [options] Override http request option.
18880
+ * @throws {RequiredError}
18881
+ */
18882
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasPost: (doctorAffiliationId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18747
18883
  /**
18748
18884
  *
18749
18885
  * @summary Get all doctor affiliations.
@@ -18801,6 +18937,56 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
18801
18937
  * @export
18802
18938
  */
18803
18939
  export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | undefined) => {
18940
+ /**
18941
+ *
18942
+ * @summary Get all DoctorAffiliationMedias.
18943
+ * @param {string} doctorAffiliationId
18944
+ * @param {string} [id]
18945
+ * @param {MediaType} [mediaType]
18946
+ * @param {number} [page]
18947
+ * @param {number} [limit]
18948
+ * @param {Date} [lastRetrieved]
18949
+ * @param {*} [options] Override http request option.
18950
+ * @throws {RequiredError}
18951
+ */
18952
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasGet(doctorAffiliationId: 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>>;
18953
+ /**
18954
+ *
18955
+ * @summary Delete DoctorAffiliationMedia
18956
+ * @param {string} doctorAffiliationId
18957
+ * @param {string} mediaId
18958
+ * @param {*} [options] Override http request option.
18959
+ * @throws {RequiredError}
18960
+ */
18961
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdDelete(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18962
+ /**
18963
+ *
18964
+ * @summary Get DoctorAffiliationMedia.
18965
+ * @param {string} doctorAffiliationId
18966
+ * @param {string} mediaId
18967
+ * @param {*} [options] Override http request option.
18968
+ * @throws {RequiredError}
18969
+ */
18970
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18971
+ /**
18972
+ *
18973
+ * @summary Update DoctorAffiliationMedia.
18974
+ * @param {string} doctorAffiliationId
18975
+ * @param {string} mediaId
18976
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18977
+ * @param {*} [options] Override http request option.
18978
+ * @throws {RequiredError}
18979
+ */
18980
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdPut(doctorAffiliationId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18981
+ /**
18982
+ *
18983
+ * @summary Create DoctorAffiliationMedia.
18984
+ * @param {string} doctorAffiliationId
18985
+ * @param {CreateMediaCommand} [createMediaCommand]
18986
+ * @param {*} [options] Override http request option.
18987
+ * @throws {RequiredError}
18988
+ */
18989
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasPost(doctorAffiliationId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18804
18990
  /**
18805
18991
  *
18806
18992
  * @summary Get all doctor affiliations.
@@ -18858,6 +19044,56 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
18858
19044
  * @export
18859
19045
  */
18860
19046
  export declare const DoctorAffiliationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
19047
+ /**
19048
+ *
19049
+ * @summary Get all DoctorAffiliationMedias.
19050
+ * @param {string} doctorAffiliationId
19051
+ * @param {string} [id]
19052
+ * @param {MediaType} [mediaType]
19053
+ * @param {number} [page]
19054
+ * @param {number} [limit]
19055
+ * @param {Date} [lastRetrieved]
19056
+ * @param {*} [options] Override http request option.
19057
+ * @throws {RequiredError}
19058
+ */
19059
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasGet(doctorAffiliationId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
19060
+ /**
19061
+ *
19062
+ * @summary Delete DoctorAffiliationMedia
19063
+ * @param {string} doctorAffiliationId
19064
+ * @param {string} mediaId
19065
+ * @param {*} [options] Override http request option.
19066
+ * @throws {RequiredError}
19067
+ */
19068
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdDelete(doctorAffiliationId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
19069
+ /**
19070
+ *
19071
+ * @summary Get DoctorAffiliationMedia.
19072
+ * @param {string} doctorAffiliationId
19073
+ * @param {string} mediaId
19074
+ * @param {*} [options] Override http request option.
19075
+ * @throws {RequiredError}
19076
+ */
19077
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
19078
+ /**
19079
+ *
19080
+ * @summary Update DoctorAffiliationMedia.
19081
+ * @param {string} doctorAffiliationId
19082
+ * @param {string} mediaId
19083
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19084
+ * @param {*} [options] Override http request option.
19085
+ * @throws {RequiredError}
19086
+ */
19087
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdPut(doctorAffiliationId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
19088
+ /**
19089
+ *
19090
+ * @summary Create DoctorAffiliationMedia.
19091
+ * @param {string} doctorAffiliationId
19092
+ * @param {CreateMediaCommand} [createMediaCommand]
19093
+ * @param {*} [options] Override http request option.
19094
+ * @throws {RequiredError}
19095
+ */
19096
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasPost(doctorAffiliationId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
18861
19097
  /**
18862
19098
  *
18863
19099
  * @summary Get all doctor affiliations.
@@ -18917,6 +19153,61 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
18917
19153
  * @extends {BaseAPI}
18918
19154
  */
18919
19155
  export declare class DoctorAffiliationsApi extends BaseAPI {
19156
+ /**
19157
+ *
19158
+ * @summary Get all DoctorAffiliationMedias.
19159
+ * @param {string} doctorAffiliationId
19160
+ * @param {string} [id]
19161
+ * @param {MediaType} [mediaType]
19162
+ * @param {number} [page]
19163
+ * @param {number} [limit]
19164
+ * @param {Date} [lastRetrieved]
19165
+ * @param {*} [options] Override http request option.
19166
+ * @throws {RequiredError}
19167
+ * @memberof DoctorAffiliationsApi
19168
+ */
19169
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasGet(doctorAffiliationId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
19170
+ /**
19171
+ *
19172
+ * @summary Delete DoctorAffiliationMedia
19173
+ * @param {string} doctorAffiliationId
19174
+ * @param {string} mediaId
19175
+ * @param {*} [options] Override http request option.
19176
+ * @throws {RequiredError}
19177
+ * @memberof DoctorAffiliationsApi
19178
+ */
19179
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdDelete(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19180
+ /**
19181
+ *
19182
+ * @summary Get DoctorAffiliationMedia.
19183
+ * @param {string} doctorAffiliationId
19184
+ * @param {string} mediaId
19185
+ * @param {*} [options] Override http request option.
19186
+ * @throws {RequiredError}
19187
+ * @memberof DoctorAffiliationsApi
19188
+ */
19189
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19190
+ /**
19191
+ *
19192
+ * @summary Update DoctorAffiliationMedia.
19193
+ * @param {string} doctorAffiliationId
19194
+ * @param {string} mediaId
19195
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19196
+ * @param {*} [options] Override http request option.
19197
+ * @throws {RequiredError}
19198
+ * @memberof DoctorAffiliationsApi
19199
+ */
19200
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdPut(doctorAffiliationId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19201
+ /**
19202
+ *
19203
+ * @summary Create DoctorAffiliationMedia.
19204
+ * @param {string} doctorAffiliationId
19205
+ * @param {CreateMediaCommand} [createMediaCommand]
19206
+ * @param {*} [options] Override http request option.
19207
+ * @throws {RequiredError}
19208
+ * @memberof DoctorAffiliationsApi
19209
+ */
19210
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasPost(doctorAffiliationId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
18920
19211
  /**
18921
19212
  *
18922
19213
  * @summary Get all doctor affiliations.