ch-admin-api-client-typescript 4.0.7 → 4.1.0

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
  *
@@ -7889,6 +7895,12 @@ export interface HospitalServiceItemModel {
7889
7895
  * @memberof HospitalServiceItemModel
7890
7896
  */
7891
7897
  'specialtyName'?: string | null;
7898
+ /**
7899
+ *
7900
+ * @type {Procedure}
7901
+ * @memberof HospitalServiceItemModel
7902
+ */
7903
+ 'procedure'?: Procedure;
7892
7904
  /**
7893
7905
  *
7894
7906
  * @type {number}
@@ -7980,6 +7992,12 @@ export interface HospitalServiceModel {
7980
7992
  * @memberof HospitalServiceModel
7981
7993
  */
7982
7994
  'specialtyName'?: string | null;
7995
+ /**
7996
+ *
7997
+ * @type {Procedure}
7998
+ * @memberof HospitalServiceModel
7999
+ */
8000
+ 'procedure'?: Procedure;
7983
8001
  /**
7984
8002
  *
7985
8003
  * @type {number}
@@ -8046,12 +8064,6 @@ export interface HospitalServiceModel {
8046
8064
  * @memberof HospitalServiceModel
8047
8065
  */
8048
8066
  'serviceCategoryName'?: string | null;
8049
- /**
8050
- *
8051
- * @type {Procedure}
8052
- * @memberof HospitalServiceModel
8053
- */
8054
- 'procedure'?: Procedure;
8055
8067
  /**
8056
8068
  *
8057
8069
  * @type {number}
@@ -18744,6 +18756,56 @@ export declare class DealsApi extends BaseAPI {
18744
18756
  * @export
18745
18757
  */
18746
18758
  export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
18759
+ /**
18760
+ *
18761
+ * @summary Get all DoctorAffiliationMedias.
18762
+ * @param {string} doctorAffiliationId
18763
+ * @param {string} [id]
18764
+ * @param {MediaType} [mediaType]
18765
+ * @param {number} [page]
18766
+ * @param {number} [limit]
18767
+ * @param {Date} [lastRetrieved]
18768
+ * @param {*} [options] Override http request option.
18769
+ * @throws {RequiredError}
18770
+ */
18771
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasGet: (doctorAffiliationId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18772
+ /**
18773
+ *
18774
+ * @summary Delete DoctorAffiliationMedia
18775
+ * @param {string} doctorAffiliationId
18776
+ * @param {string} mediaId
18777
+ * @param {*} [options] Override http request option.
18778
+ * @throws {RequiredError}
18779
+ */
18780
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdDelete: (doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18781
+ /**
18782
+ *
18783
+ * @summary Get DoctorAffiliationMedia.
18784
+ * @param {string} doctorAffiliationId
18785
+ * @param {string} mediaId
18786
+ * @param {*} [options] Override http request option.
18787
+ * @throws {RequiredError}
18788
+ */
18789
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet: (doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18790
+ /**
18791
+ *
18792
+ * @summary Update DoctorAffiliationMedia.
18793
+ * @param {string} doctorAffiliationId
18794
+ * @param {string} mediaId
18795
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18796
+ * @param {*} [options] Override http request option.
18797
+ * @throws {RequiredError}
18798
+ */
18799
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdPut: (doctorAffiliationId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18800
+ /**
18801
+ *
18802
+ * @summary Create DoctorAffiliationMedia.
18803
+ * @param {string} doctorAffiliationId
18804
+ * @param {CreateMediaCommand} [createMediaCommand]
18805
+ * @param {*} [options] Override http request option.
18806
+ * @throws {RequiredError}
18807
+ */
18808
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasPost: (doctorAffiliationId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18747
18809
  /**
18748
18810
  *
18749
18811
  * @summary Get all doctor affiliations.
@@ -18801,6 +18863,56 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
18801
18863
  * @export
18802
18864
  */
18803
18865
  export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | undefined) => {
18866
+ /**
18867
+ *
18868
+ * @summary Get all DoctorAffiliationMedias.
18869
+ * @param {string} doctorAffiliationId
18870
+ * @param {string} [id]
18871
+ * @param {MediaType} [mediaType]
18872
+ * @param {number} [page]
18873
+ * @param {number} [limit]
18874
+ * @param {Date} [lastRetrieved]
18875
+ * @param {*} [options] Override http request option.
18876
+ * @throws {RequiredError}
18877
+ */
18878
+ 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>>;
18879
+ /**
18880
+ *
18881
+ * @summary Delete DoctorAffiliationMedia
18882
+ * @param {string} doctorAffiliationId
18883
+ * @param {string} mediaId
18884
+ * @param {*} [options] Override http request option.
18885
+ * @throws {RequiredError}
18886
+ */
18887
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdDelete(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18888
+ /**
18889
+ *
18890
+ * @summary Get DoctorAffiliationMedia.
18891
+ * @param {string} doctorAffiliationId
18892
+ * @param {string} mediaId
18893
+ * @param {*} [options] Override http request option.
18894
+ * @throws {RequiredError}
18895
+ */
18896
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18897
+ /**
18898
+ *
18899
+ * @summary Update DoctorAffiliationMedia.
18900
+ * @param {string} doctorAffiliationId
18901
+ * @param {string} mediaId
18902
+ * @param {UpdateMediaCommand} [updateMediaCommand]
18903
+ * @param {*} [options] Override http request option.
18904
+ * @throws {RequiredError}
18905
+ */
18906
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdPut(doctorAffiliationId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18907
+ /**
18908
+ *
18909
+ * @summary Create DoctorAffiliationMedia.
18910
+ * @param {string} doctorAffiliationId
18911
+ * @param {CreateMediaCommand} [createMediaCommand]
18912
+ * @param {*} [options] Override http request option.
18913
+ * @throws {RequiredError}
18914
+ */
18915
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasPost(doctorAffiliationId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
18804
18916
  /**
18805
18917
  *
18806
18918
  * @summary Get all doctor affiliations.
@@ -18858,6 +18970,56 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
18858
18970
  * @export
18859
18971
  */
18860
18972
  export declare const DoctorAffiliationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
18973
+ /**
18974
+ *
18975
+ * @summary Get all DoctorAffiliationMedias.
18976
+ * @param {string} doctorAffiliationId
18977
+ * @param {string} [id]
18978
+ * @param {MediaType} [mediaType]
18979
+ * @param {number} [page]
18980
+ * @param {number} [limit]
18981
+ * @param {Date} [lastRetrieved]
18982
+ * @param {*} [options] Override http request option.
18983
+ * @throws {RequiredError}
18984
+ */
18985
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasGet(doctorAffiliationId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
18986
+ /**
18987
+ *
18988
+ * @summary Delete DoctorAffiliationMedia
18989
+ * @param {string} doctorAffiliationId
18990
+ * @param {string} mediaId
18991
+ * @param {*} [options] Override http request option.
18992
+ * @throws {RequiredError}
18993
+ */
18994
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdDelete(doctorAffiliationId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
18995
+ /**
18996
+ *
18997
+ * @summary Get DoctorAffiliationMedia.
18998
+ * @param {string} doctorAffiliationId
18999
+ * @param {string} mediaId
19000
+ * @param {*} [options] Override http request option.
19001
+ * @throws {RequiredError}
19002
+ */
19003
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
19004
+ /**
19005
+ *
19006
+ * @summary Update DoctorAffiliationMedia.
19007
+ * @param {string} doctorAffiliationId
19008
+ * @param {string} mediaId
19009
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19010
+ * @param {*} [options] Override http request option.
19011
+ * @throws {RequiredError}
19012
+ */
19013
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdPut(doctorAffiliationId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
19014
+ /**
19015
+ *
19016
+ * @summary Create DoctorAffiliationMedia.
19017
+ * @param {string} doctorAffiliationId
19018
+ * @param {CreateMediaCommand} [createMediaCommand]
19019
+ * @param {*} [options] Override http request option.
19020
+ * @throws {RequiredError}
19021
+ */
19022
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasPost(doctorAffiliationId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
18861
19023
  /**
18862
19024
  *
18863
19025
  * @summary Get all doctor affiliations.
@@ -18917,6 +19079,61 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
18917
19079
  * @extends {BaseAPI}
18918
19080
  */
18919
19081
  export declare class DoctorAffiliationsApi extends BaseAPI {
19082
+ /**
19083
+ *
19084
+ * @summary Get all DoctorAffiliationMedias.
19085
+ * @param {string} doctorAffiliationId
19086
+ * @param {string} [id]
19087
+ * @param {MediaType} [mediaType]
19088
+ * @param {number} [page]
19089
+ * @param {number} [limit]
19090
+ * @param {Date} [lastRetrieved]
19091
+ * @param {*} [options] Override http request option.
19092
+ * @throws {RequiredError}
19093
+ * @memberof DoctorAffiliationsApi
19094
+ */
19095
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasGet(doctorAffiliationId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
19096
+ /**
19097
+ *
19098
+ * @summary Delete DoctorAffiliationMedia
19099
+ * @param {string} doctorAffiliationId
19100
+ * @param {string} mediaId
19101
+ * @param {*} [options] Override http request option.
19102
+ * @throws {RequiredError}
19103
+ * @memberof DoctorAffiliationsApi
19104
+ */
19105
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdDelete(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19106
+ /**
19107
+ *
19108
+ * @summary Get DoctorAffiliationMedia.
19109
+ * @param {string} doctorAffiliationId
19110
+ * @param {string} mediaId
19111
+ * @param {*} [options] Override http request option.
19112
+ * @throws {RequiredError}
19113
+ * @memberof DoctorAffiliationsApi
19114
+ */
19115
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdGet(doctorAffiliationId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19116
+ /**
19117
+ *
19118
+ * @summary Update DoctorAffiliationMedia.
19119
+ * @param {string} doctorAffiliationId
19120
+ * @param {string} mediaId
19121
+ * @param {UpdateMediaCommand} [updateMediaCommand]
19122
+ * @param {*} [options] Override http request option.
19123
+ * @throws {RequiredError}
19124
+ * @memberof DoctorAffiliationsApi
19125
+ */
19126
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasMediaIdPut(doctorAffiliationId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
19127
+ /**
19128
+ *
19129
+ * @summary Create DoctorAffiliationMedia.
19130
+ * @param {string} doctorAffiliationId
19131
+ * @param {CreateMediaCommand} [createMediaCommand]
19132
+ * @param {*} [options] Override http request option.
19133
+ * @throws {RequiredError}
19134
+ * @memberof DoctorAffiliationsApi
19135
+ */
19136
+ apiV1DoctoraffiliationsDoctorAffiliationIdMediasPost(doctorAffiliationId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
18920
19137
  /**
18921
19138
  *
18922
19139
  * @summary Get all doctor affiliations.