ch-admin-api-client-typescript 5.70.0 → 5.72.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/hospitals-api.d.ts +47 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +89 -0
- package/lib/api/patients-api.d.ts +32 -15
- package/lib/api/patients-api.d.ts.map +1 -1
- package/lib/api/patients-api.js +30 -17
- package/lib/models/index.d.ts +0 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +0 -1
- package/lib/models/notification-code.d.ts +1 -0
- package/lib/models/notification-code.d.ts.map +1 -1
- package/lib/models/notification-code.js +1 -0
- package/package.json +1 -1
- package/lib/models/get-patient-walk-in-query.d.ts +0 -37
- package/lib/models/get-patient-walk-in-query.d.ts.map +0 -1
- package/lib/models/get-patient-walk-in-query.js +0 -15
|
@@ -134,6 +134,7 @@ import { UpdateMediaCommand } from '../models';
|
|
|
134
134
|
import { UpdateNoticeCommand } from '../models';
|
|
135
135
|
import { UpdatePageCommand } from '../models';
|
|
136
136
|
import { UpdatePolicyCommand } from '../models';
|
|
137
|
+
import { WebAppEnvironmentsModel } from '../models';
|
|
137
138
|
import { WorkingDayModel } from '../models';
|
|
138
139
|
import { WorkingDaysModel } from '../models';
|
|
139
140
|
/**
|
|
@@ -1974,6 +1975,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1974
1975
|
* @throws {RequiredError}
|
|
1975
1976
|
*/
|
|
1976
1977
|
apiV1HospitalsHospitalIdTranslatePost: (hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1978
|
+
/**
|
|
1979
|
+
*
|
|
1980
|
+
* @summary Get whatsApp settings (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
1981
|
+
* @param {string} hospitalId
|
|
1982
|
+
* @param {*} [options] Override http request option.
|
|
1983
|
+
* @throws {RequiredError}
|
|
1984
|
+
*/
|
|
1985
|
+
apiV1HospitalsHospitalIdWhatsappsettingsGet: (hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1977
1986
|
/**
|
|
1978
1987
|
*
|
|
1979
1988
|
* @summary Batch HospitalWorkingDays. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
@@ -3916,6 +3925,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3916
3925
|
* @throws {RequiredError}
|
|
3917
3926
|
*/
|
|
3918
3927
|
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3928
|
+
/**
|
|
3929
|
+
*
|
|
3930
|
+
* @summary Get whatsApp settings (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
3931
|
+
* @param {string} hospitalId
|
|
3932
|
+
* @param {*} [options] Override http request option.
|
|
3933
|
+
* @throws {RequiredError}
|
|
3934
|
+
*/
|
|
3935
|
+
apiV1HospitalsHospitalIdWhatsappsettingsGet(hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WebAppEnvironmentsModel>>;
|
|
3919
3936
|
/**
|
|
3920
3937
|
*
|
|
3921
3938
|
* @summary Batch HospitalWorkingDays. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
@@ -5858,6 +5875,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5858
5875
|
* @throws {RequiredError}
|
|
5859
5876
|
*/
|
|
5860
5877
|
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: any): AxiosPromise<boolean>;
|
|
5878
|
+
/**
|
|
5879
|
+
*
|
|
5880
|
+
* @summary Get whatsApp settings (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
5881
|
+
* @param {string} hospitalId
|
|
5882
|
+
* @param {*} [options] Override http request option.
|
|
5883
|
+
* @throws {RequiredError}
|
|
5884
|
+
*/
|
|
5885
|
+
apiV1HospitalsHospitalIdWhatsappsettingsGet(hospitalId: string, options?: any): AxiosPromise<WebAppEnvironmentsModel>;
|
|
5861
5886
|
/**
|
|
5862
5887
|
*
|
|
5863
5888
|
* @summary Batch HospitalWorkingDays. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
@@ -11045,6 +11070,19 @@ export interface HospitalsApiApiV1HospitalsHospitalIdTranslatePostRequest {
|
|
|
11045
11070
|
*/
|
|
11046
11071
|
readonly translateHospitalCommand?: TranslateHospitalCommand;
|
|
11047
11072
|
}
|
|
11073
|
+
/**
|
|
11074
|
+
* Request parameters for apiV1HospitalsHospitalIdWhatsappsettingsGet operation in HospitalsApi.
|
|
11075
|
+
* @export
|
|
11076
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdWhatsappsettingsGetRequest
|
|
11077
|
+
*/
|
|
11078
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdWhatsappsettingsGetRequest {
|
|
11079
|
+
/**
|
|
11080
|
+
*
|
|
11081
|
+
* @type {string}
|
|
11082
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdWhatsappsettingsGet
|
|
11083
|
+
*/
|
|
11084
|
+
readonly hospitalId: string;
|
|
11085
|
+
}
|
|
11048
11086
|
/**
|
|
11049
11087
|
* Request parameters for apiV1HospitalsHospitalIdWorkingdaysBatchPatch operation in HospitalsApi.
|
|
11050
11088
|
* @export
|
|
@@ -12876,6 +12914,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
12876
12914
|
* @memberof HospitalsApi
|
|
12877
12915
|
*/
|
|
12878
12916
|
apiV1HospitalsHospitalIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
12917
|
+
/**
|
|
12918
|
+
*
|
|
12919
|
+
* @summary Get whatsApp settings (Auth policies: RequireDoctorOrPatientManagerRole)
|
|
12920
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdWhatsappsettingsGetRequest} requestParameters Request parameters.
|
|
12921
|
+
* @param {*} [options] Override http request option.
|
|
12922
|
+
* @throws {RequiredError}
|
|
12923
|
+
* @memberof HospitalsApi
|
|
12924
|
+
*/
|
|
12925
|
+
apiV1HospitalsHospitalIdWhatsappsettingsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdWhatsappsettingsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebAppEnvironmentsModel, any>>;
|
|
12879
12926
|
/**
|
|
12880
12927
|
*
|
|
12881
12928
|
* @summary Batch HospitalWorkingDays. (Auth policies: RequireLocalManagerOrContentManagerRole)
|