ch-admin-api-client-typescript 4.0.9 → 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 +205 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +495 -0
- package/package.json +1 -1
- package/src/api.ts +432 -0
package/lib/api.d.ts
CHANGED
|
@@ -18756,6 +18756,56 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18756
18756
|
* @export
|
|
18757
18757
|
*/
|
|
18758
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>;
|
|
18759
18809
|
/**
|
|
18760
18810
|
*
|
|
18761
18811
|
* @summary Get all doctor affiliations.
|
|
@@ -18813,6 +18863,56 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
|
|
|
18813
18863
|
* @export
|
|
18814
18864
|
*/
|
|
18815
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>>;
|
|
18816
18916
|
/**
|
|
18817
18917
|
*
|
|
18818
18918
|
* @summary Get all doctor affiliations.
|
|
@@ -18870,6 +18970,56 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
|
|
|
18870
18970
|
* @export
|
|
18871
18971
|
*/
|
|
18872
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>;
|
|
18873
19023
|
/**
|
|
18874
19024
|
*
|
|
18875
19025
|
* @summary Get all doctor affiliations.
|
|
@@ -18929,6 +19079,61 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
|
|
|
18929
19079
|
* @extends {BaseAPI}
|
|
18930
19080
|
*/
|
|
18931
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>>;
|
|
18932
19137
|
/**
|
|
18933
19138
|
*
|
|
18934
19139
|
* @summary Get all doctor affiliations.
|