ch-admin-api-client-typescript 5.19.58 → 5.19.69
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 +87 -30
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +116 -26
- package/lib/models/application.d.ts +0 -7
- package/lib/models/application.d.ts.map +1 -1
- package/lib/models/batch-hospital-working-days-command.d.ts +26 -0
- package/lib/models/batch-hospital-working-days-command.d.ts.map +1 -0
- package/lib/models/deploy-status.d.ts +1 -0
- package/lib/models/deploy-status.d.ts.map +1 -1
- package/lib/models/deploy-status.js +1 -0
- package/lib/models/hospital-working-days-batch-result-model.d.ts +50 -0
- package/lib/models/hospital-working-days-batch-result-model.d.ts.map +1 -0
- package/{src/models/privacy-settings.ts → lib/models/hospital-working-days-batch-result-model.js} +2 -17
- package/lib/models/index.d.ts +3 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -1
- package/lib/models/voice.d.ts +0 -18
- package/lib/models/voice.d.ts.map +1 -1
- package/lib/models/working-day-input-model.d.ts +55 -0
- package/lib/models/working-day-input-model.d.ts.map +1 -0
- package/lib/models/{privacy-settings.d.ts → working-day-input-model.js} +4 -14
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +3 -1
- package/src/api/hospitals-api.ts +151 -49
- package/src/models/application.ts +0 -9
- package/src/models/batch-hospital-working-days-command.ts +33 -0
- package/src/models/deploy-status.ts +1 -0
- package/src/models/hospital-working-days-batch-result-model.ts +57 -0
- package/src/models/index.ts +3 -1
- package/src/models/voice.ts +0 -18
- package/src/models/working-day-input-model.ts +60 -0
- package/lib/models/privacy-settings.d.ts.map +0 -1
- /package/lib/models/{privacy-settings.js → batch-hospital-working-days-command.js} +0 -0
|
@@ -19,6 +19,7 @@ import { BankAccountInfosModel } from '../models';
|
|
|
19
19
|
import { BatchAppointmentTimetablesResultModel } from '../models';
|
|
20
20
|
import { BatchHospitalAppointmentTimetablesCommand } from '../models';
|
|
21
21
|
import { BatchHospitalSpecialtyAppointmentTimetablesCommand } from '../models';
|
|
22
|
+
import { BatchHospitalWorkingDaysCommand } from '../models';
|
|
22
23
|
import { BatchServiceAppointmentTimetablesCommand } from '../models';
|
|
23
24
|
import { ContactSortingCommand } from '../models';
|
|
24
25
|
import { ContactType } from '../models';
|
|
@@ -66,6 +67,7 @@ import { HospitalSpecialtiesSimpleModel } from '../models';
|
|
|
66
67
|
import { HospitalSpecialtyModel } from '../models';
|
|
67
68
|
import { HospitalTagModel } from '../models';
|
|
68
69
|
import { HospitalTagsModel } from '../models';
|
|
70
|
+
import { HospitalWorkingDaysBatchResultModel } from '../models';
|
|
69
71
|
import { HospitalsModel } from '../models';
|
|
70
72
|
import { HospitalsSimpleModel } from '../models';
|
|
71
73
|
import { LandingModel } from '../models';
|
|
@@ -778,6 +780,9 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
778
780
|
*
|
|
779
781
|
* @summary Get managers
|
|
780
782
|
* @param {string} hospitalId
|
|
783
|
+
* @param {number} [page]
|
|
784
|
+
* @param {number} [limit]
|
|
785
|
+
* @param {Date} [lastRetrieved]
|
|
781
786
|
* @param {string} [id]
|
|
782
787
|
* @param {string} [fullname]
|
|
783
788
|
* @param {string} [email]
|
|
@@ -785,13 +790,10 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
785
790
|
* @param {Date} [dateOfBirth]
|
|
786
791
|
* @param {Date} [created]
|
|
787
792
|
* @param {boolean} [showHidden]
|
|
788
|
-
* @param {number} [page]
|
|
789
|
-
* @param {number} [limit]
|
|
790
|
-
* @param {Date} [lastRetrieved]
|
|
791
793
|
* @param {*} [options] Override http request option.
|
|
792
794
|
* @throws {RequiredError}
|
|
793
795
|
*/
|
|
794
|
-
apiV1HospitalsHospitalIdManagersGet: (hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean,
|
|
796
|
+
apiV1HospitalsHospitalIdManagersGet: (hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
795
797
|
/**
|
|
796
798
|
*
|
|
797
799
|
* @summary Delete manager
|
|
@@ -1701,6 +1703,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1701
1703
|
* @throws {RequiredError}
|
|
1702
1704
|
*/
|
|
1703
1705
|
apiV1HospitalsHospitalIdTranslatePost: (hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1706
|
+
/**
|
|
1707
|
+
*
|
|
1708
|
+
* @summary Batch HospitalWorkingDays.
|
|
1709
|
+
* @param {string} hospitalId
|
|
1710
|
+
* @param {BatchHospitalWorkingDaysCommand} [batchHospitalWorkingDaysCommand]
|
|
1711
|
+
* @param {*} [options] Override http request option.
|
|
1712
|
+
* @throws {RequiredError}
|
|
1713
|
+
*/
|
|
1714
|
+
apiV1HospitalsHospitalIdWorkingdaysBatchPatch: (hospitalId: string, batchHospitalWorkingDaysCommand?: BatchHospitalWorkingDaysCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1704
1715
|
/**
|
|
1705
1716
|
*
|
|
1706
1717
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -2457,6 +2468,9 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2457
2468
|
*
|
|
2458
2469
|
* @summary Get managers
|
|
2459
2470
|
* @param {string} hospitalId
|
|
2471
|
+
* @param {number} [page]
|
|
2472
|
+
* @param {number} [limit]
|
|
2473
|
+
* @param {Date} [lastRetrieved]
|
|
2460
2474
|
* @param {string} [id]
|
|
2461
2475
|
* @param {string} [fullname]
|
|
2462
2476
|
* @param {string} [email]
|
|
@@ -2464,13 +2478,10 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2464
2478
|
* @param {Date} [dateOfBirth]
|
|
2465
2479
|
* @param {Date} [created]
|
|
2466
2480
|
* @param {boolean} [showHidden]
|
|
2467
|
-
* @param {number} [page]
|
|
2468
|
-
* @param {number} [limit]
|
|
2469
|
-
* @param {Date} [lastRetrieved]
|
|
2470
2481
|
* @param {*} [options] Override http request option.
|
|
2471
2482
|
* @throws {RequiredError}
|
|
2472
2483
|
*/
|
|
2473
|
-
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean,
|
|
2484
|
+
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagersModel>>;
|
|
2474
2485
|
/**
|
|
2475
2486
|
*
|
|
2476
2487
|
* @summary Delete manager
|
|
@@ -3380,6 +3391,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3380
3391
|
* @throws {RequiredError}
|
|
3381
3392
|
*/
|
|
3382
3393
|
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
3394
|
+
/**
|
|
3395
|
+
*
|
|
3396
|
+
* @summary Batch HospitalWorkingDays.
|
|
3397
|
+
* @param {string} hospitalId
|
|
3398
|
+
* @param {BatchHospitalWorkingDaysCommand} [batchHospitalWorkingDaysCommand]
|
|
3399
|
+
* @param {*} [options] Override http request option.
|
|
3400
|
+
* @throws {RequiredError}
|
|
3401
|
+
*/
|
|
3402
|
+
apiV1HospitalsHospitalIdWorkingdaysBatchPatch(hospitalId: string, batchHospitalWorkingDaysCommand?: BatchHospitalWorkingDaysCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalWorkingDaysBatchResultModel>>;
|
|
3383
3403
|
/**
|
|
3384
3404
|
*
|
|
3385
3405
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -4136,6 +4156,9 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4136
4156
|
*
|
|
4137
4157
|
* @summary Get managers
|
|
4138
4158
|
* @param {string} hospitalId
|
|
4159
|
+
* @param {number} [page]
|
|
4160
|
+
* @param {number} [limit]
|
|
4161
|
+
* @param {Date} [lastRetrieved]
|
|
4139
4162
|
* @param {string} [id]
|
|
4140
4163
|
* @param {string} [fullname]
|
|
4141
4164
|
* @param {string} [email]
|
|
@@ -4143,13 +4166,10 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4143
4166
|
* @param {Date} [dateOfBirth]
|
|
4144
4167
|
* @param {Date} [created]
|
|
4145
4168
|
* @param {boolean} [showHidden]
|
|
4146
|
-
* @param {number} [page]
|
|
4147
|
-
* @param {number} [limit]
|
|
4148
|
-
* @param {Date} [lastRetrieved]
|
|
4149
4169
|
* @param {*} [options] Override http request option.
|
|
4150
4170
|
* @throws {RequiredError}
|
|
4151
4171
|
*/
|
|
4152
|
-
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean,
|
|
4172
|
+
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options?: any): AxiosPromise<ManagersModel>;
|
|
4153
4173
|
/**
|
|
4154
4174
|
*
|
|
4155
4175
|
* @summary Delete manager
|
|
@@ -5059,6 +5079,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5059
5079
|
* @throws {RequiredError}
|
|
5060
5080
|
*/
|
|
5061
5081
|
apiV1HospitalsHospitalIdTranslatePost(hospitalId: string, translateHospitalCommand?: TranslateHospitalCommand, options?: any): AxiosPromise<boolean>;
|
|
5082
|
+
/**
|
|
5083
|
+
*
|
|
5084
|
+
* @summary Batch HospitalWorkingDays.
|
|
5085
|
+
* @param {string} hospitalId
|
|
5086
|
+
* @param {BatchHospitalWorkingDaysCommand} [batchHospitalWorkingDaysCommand]
|
|
5087
|
+
* @param {*} [options] Override http request option.
|
|
5088
|
+
* @throws {RequiredError}
|
|
5089
|
+
*/
|
|
5090
|
+
apiV1HospitalsHospitalIdWorkingdaysBatchPatch(hospitalId: string, batchHospitalWorkingDaysCommand?: BatchHospitalWorkingDaysCommand, options?: any): AxiosPromise<HospitalWorkingDaysBatchResultModel>;
|
|
5062
5091
|
/**
|
|
5063
5092
|
*
|
|
5064
5093
|
* @summary Get all HospitalWorkingDays.
|
|
@@ -6913,6 +6942,24 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
|
|
|
6913
6942
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6914
6943
|
*/
|
|
6915
6944
|
readonly hospitalId: string;
|
|
6945
|
+
/**
|
|
6946
|
+
*
|
|
6947
|
+
* @type {number}
|
|
6948
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6949
|
+
*/
|
|
6950
|
+
readonly page?: number;
|
|
6951
|
+
/**
|
|
6952
|
+
*
|
|
6953
|
+
* @type {number}
|
|
6954
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6955
|
+
*/
|
|
6956
|
+
readonly limit?: number;
|
|
6957
|
+
/**
|
|
6958
|
+
*
|
|
6959
|
+
* @type {Date}
|
|
6960
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6961
|
+
*/
|
|
6962
|
+
readonly lastRetrieved?: Date;
|
|
6916
6963
|
/**
|
|
6917
6964
|
*
|
|
6918
6965
|
* @type {string}
|
|
@@ -6955,24 +7002,6 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
|
|
|
6955
7002
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6956
7003
|
*/
|
|
6957
7004
|
readonly showHidden?: boolean;
|
|
6958
|
-
/**
|
|
6959
|
-
*
|
|
6960
|
-
* @type {number}
|
|
6961
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6962
|
-
*/
|
|
6963
|
-
readonly page?: number;
|
|
6964
|
-
/**
|
|
6965
|
-
*
|
|
6966
|
-
* @type {number}
|
|
6967
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6968
|
-
*/
|
|
6969
|
-
readonly limit?: number;
|
|
6970
|
-
/**
|
|
6971
|
-
*
|
|
6972
|
-
* @type {Date}
|
|
6973
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
6974
|
-
*/
|
|
6975
|
-
readonly lastRetrieved?: Date;
|
|
6976
7005
|
}
|
|
6977
7006
|
/**
|
|
6978
7007
|
* Request parameters for apiV1HospitalsHospitalIdManagersManagerIdDelete operation in HospitalsApi.
|
|
@@ -9523,6 +9552,25 @@ export interface HospitalsApiApiV1HospitalsHospitalIdTranslatePostRequest {
|
|
|
9523
9552
|
*/
|
|
9524
9553
|
readonly translateHospitalCommand?: TranslateHospitalCommand;
|
|
9525
9554
|
}
|
|
9555
|
+
/**
|
|
9556
|
+
* Request parameters for apiV1HospitalsHospitalIdWorkingdaysBatchPatch operation in HospitalsApi.
|
|
9557
|
+
* @export
|
|
9558
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdWorkingdaysBatchPatchRequest
|
|
9559
|
+
*/
|
|
9560
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdWorkingdaysBatchPatchRequest {
|
|
9561
|
+
/**
|
|
9562
|
+
*
|
|
9563
|
+
* @type {string}
|
|
9564
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdWorkingdaysBatchPatch
|
|
9565
|
+
*/
|
|
9566
|
+
readonly hospitalId: string;
|
|
9567
|
+
/**
|
|
9568
|
+
*
|
|
9569
|
+
* @type {BatchHospitalWorkingDaysCommand}
|
|
9570
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdWorkingdaysBatchPatch
|
|
9571
|
+
*/
|
|
9572
|
+
readonly batchHospitalWorkingDaysCommand?: BatchHospitalWorkingDaysCommand;
|
|
9573
|
+
}
|
|
9526
9574
|
/**
|
|
9527
9575
|
* Request parameters for apiV1HospitalsHospitalIdWorkingdaysGet operation in HospitalsApi.
|
|
9528
9576
|
* @export
|
|
@@ -11122,6 +11170,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11122
11170
|
* @memberof HospitalsApi
|
|
11123
11171
|
*/
|
|
11124
11172
|
apiV1HospitalsHospitalIdTranslatePost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdTranslatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11173
|
+
/**
|
|
11174
|
+
*
|
|
11175
|
+
* @summary Batch HospitalWorkingDays.
|
|
11176
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdWorkingdaysBatchPatchRequest} requestParameters Request parameters.
|
|
11177
|
+
* @param {*} [options] Override http request option.
|
|
11178
|
+
* @throws {RequiredError}
|
|
11179
|
+
* @memberof HospitalsApi
|
|
11180
|
+
*/
|
|
11181
|
+
apiV1HospitalsHospitalIdWorkingdaysBatchPatch(requestParameters: HospitalsApiApiV1HospitalsHospitalIdWorkingdaysBatchPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalWorkingDaysBatchResultModel, any>>;
|
|
11125
11182
|
/**
|
|
11126
11183
|
*
|
|
11127
11184
|
* @summary Get all HospitalWorkingDays.
|