ch-admin-api-client-typescript 5.19.71 → 5.20.7
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 +86 -30
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +116 -26
- package/lib/api/search-api.d.ts +12 -3
- package/lib/api/search-api.d.ts.map +1 -1
- package/lib/api/search-api.js +12 -6
- package/lib/models/hospital-rating-sorting-command.d.ts +26 -0
- package/lib/models/hospital-rating-sorting-command.d.ts.map +1 -0
- package/lib/models/hospital-rating-sorting-command.js +15 -0
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +1 -0
- package/src/api/hospitals-api.ts +149 -49
- package/src/api/search-api.ts +20 -6
- package/src/models/hospital-rating-sorting-command.ts +33 -0
- package/src/models/index.ts +1 -0
|
@@ -62,6 +62,7 @@ import { HospitalModel } from '../models';
|
|
|
62
62
|
import { HospitalPaymentMethodModel } from '../models';
|
|
63
63
|
import { HospitalPaymentMethodsModel } from '../models';
|
|
64
64
|
import { HospitalRatingModel } from '../models';
|
|
65
|
+
import { HospitalRatingSortingCommand } from '../models';
|
|
65
66
|
import { HospitalRatingsModel } from '../models';
|
|
66
67
|
import { HospitalServiceModel } from '../models';
|
|
67
68
|
import { HospitalServicesModel } from '../models';
|
|
@@ -789,9 +790,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
789
790
|
*
|
|
790
791
|
* @summary Get managers
|
|
791
792
|
* @param {string} hospitalId
|
|
792
|
-
* @param {number} [page]
|
|
793
|
-
* @param {number} [limit]
|
|
794
|
-
* @param {Date} [lastRetrieved]
|
|
795
793
|
* @param {string} [id]
|
|
796
794
|
* @param {string} [fullname]
|
|
797
795
|
* @param {string} [email]
|
|
@@ -799,10 +797,13 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
799
797
|
* @param {Date} [dateOfBirth]
|
|
800
798
|
* @param {Date} [created]
|
|
801
799
|
* @param {boolean} [showHidden]
|
|
800
|
+
* @param {number} [page]
|
|
801
|
+
* @param {number} [limit]
|
|
802
|
+
* @param {Date} [lastRetrieved]
|
|
802
803
|
* @param {*} [options] Override http request option.
|
|
803
804
|
* @throws {RequiredError}
|
|
804
805
|
*/
|
|
805
|
-
apiV1HospitalsHospitalIdManagersGet: (hospitalId: string,
|
|
806
|
+
apiV1HospitalsHospitalIdManagersGet: (hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
806
807
|
/**
|
|
807
808
|
*
|
|
808
809
|
* @summary Delete manager
|
|
@@ -1203,6 +1204,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1203
1204
|
* @throws {RequiredError}
|
|
1204
1205
|
*/
|
|
1205
1206
|
apiV1HospitalsHospitalIdRatingsPost: (hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1207
|
+
/**
|
|
1208
|
+
*
|
|
1209
|
+
* @summary Sort hospitalRating entities
|
|
1210
|
+
* @param {string} hospitalId
|
|
1211
|
+
* @param {HospitalRatingSortingCommand} [hospitalRatingSortingCommand]
|
|
1212
|
+
* @param {*} [options] Override http request option.
|
|
1213
|
+
* @throws {RequiredError}
|
|
1214
|
+
*/
|
|
1215
|
+
apiV1HospitalsHospitalIdRatingsSortPut: (hospitalId: string, hospitalRatingSortingCommand?: HospitalRatingSortingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1206
1216
|
/**
|
|
1207
1217
|
*
|
|
1208
1218
|
* @summary Delete HospitalSpecialty.
|
|
@@ -2593,9 +2603,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2593
2603
|
*
|
|
2594
2604
|
* @summary Get managers
|
|
2595
2605
|
* @param {string} hospitalId
|
|
2596
|
-
* @param {number} [page]
|
|
2597
|
-
* @param {number} [limit]
|
|
2598
|
-
* @param {Date} [lastRetrieved]
|
|
2599
2606
|
* @param {string} [id]
|
|
2600
2607
|
* @param {string} [fullname]
|
|
2601
2608
|
* @param {string} [email]
|
|
@@ -2603,10 +2610,13 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2603
2610
|
* @param {Date} [dateOfBirth]
|
|
2604
2611
|
* @param {Date} [created]
|
|
2605
2612
|
* @param {boolean} [showHidden]
|
|
2613
|
+
* @param {number} [page]
|
|
2614
|
+
* @param {number} [limit]
|
|
2615
|
+
* @param {Date} [lastRetrieved]
|
|
2606
2616
|
* @param {*} [options] Override http request option.
|
|
2607
2617
|
* @throws {RequiredError}
|
|
2608
2618
|
*/
|
|
2609
|
-
apiV1HospitalsHospitalIdManagersGet(hospitalId: string,
|
|
2619
|
+
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagersModel>>;
|
|
2610
2620
|
/**
|
|
2611
2621
|
*
|
|
2612
2622
|
* @summary Delete manager
|
|
@@ -3007,6 +3017,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3007
3017
|
* @throws {RequiredError}
|
|
3008
3018
|
*/
|
|
3009
3019
|
apiV1HospitalsHospitalIdRatingsPost(hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
3020
|
+
/**
|
|
3021
|
+
*
|
|
3022
|
+
* @summary Sort hospitalRating entities
|
|
3023
|
+
* @param {string} hospitalId
|
|
3024
|
+
* @param {HospitalRatingSortingCommand} [hospitalRatingSortingCommand]
|
|
3025
|
+
* @param {*} [options] Override http request option.
|
|
3026
|
+
* @throws {RequiredError}
|
|
3027
|
+
*/
|
|
3028
|
+
apiV1HospitalsHospitalIdRatingsSortPut(hospitalId: string, hospitalRatingSortingCommand?: HospitalRatingSortingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SortingResultModel>>;
|
|
3010
3029
|
/**
|
|
3011
3030
|
*
|
|
3012
3031
|
* @summary Delete HospitalSpecialty.
|
|
@@ -4397,9 +4416,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4397
4416
|
*
|
|
4398
4417
|
* @summary Get managers
|
|
4399
4418
|
* @param {string} hospitalId
|
|
4400
|
-
* @param {number} [page]
|
|
4401
|
-
* @param {number} [limit]
|
|
4402
|
-
* @param {Date} [lastRetrieved]
|
|
4403
4419
|
* @param {string} [id]
|
|
4404
4420
|
* @param {string} [fullname]
|
|
4405
4421
|
* @param {string} [email]
|
|
@@ -4407,10 +4423,13 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4407
4423
|
* @param {Date} [dateOfBirth]
|
|
4408
4424
|
* @param {Date} [created]
|
|
4409
4425
|
* @param {boolean} [showHidden]
|
|
4426
|
+
* @param {number} [page]
|
|
4427
|
+
* @param {number} [limit]
|
|
4428
|
+
* @param {Date} [lastRetrieved]
|
|
4410
4429
|
* @param {*} [options] Override http request option.
|
|
4411
4430
|
* @throws {RequiredError}
|
|
4412
4431
|
*/
|
|
4413
|
-
apiV1HospitalsHospitalIdManagersGet(hospitalId: string,
|
|
4432
|
+
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagersModel>;
|
|
4414
4433
|
/**
|
|
4415
4434
|
*
|
|
4416
4435
|
* @summary Delete manager
|
|
@@ -4811,6 +4830,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4811
4830
|
* @throws {RequiredError}
|
|
4812
4831
|
*/
|
|
4813
4832
|
apiV1HospitalsHospitalIdRatingsPost(hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
4833
|
+
/**
|
|
4834
|
+
*
|
|
4835
|
+
* @summary Sort hospitalRating entities
|
|
4836
|
+
* @param {string} hospitalId
|
|
4837
|
+
* @param {HospitalRatingSortingCommand} [hospitalRatingSortingCommand]
|
|
4838
|
+
* @param {*} [options] Override http request option.
|
|
4839
|
+
* @throws {RequiredError}
|
|
4840
|
+
*/
|
|
4841
|
+
apiV1HospitalsHospitalIdRatingsSortPut(hospitalId: string, hospitalRatingSortingCommand?: HospitalRatingSortingCommand, options?: any): AxiosPromise<SortingResultModel>;
|
|
4814
4842
|
/**
|
|
4815
4843
|
*
|
|
4816
4844
|
* @summary Delete HospitalSpecialty.
|
|
@@ -7299,24 +7327,6 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
|
|
|
7299
7327
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
7300
7328
|
*/
|
|
7301
7329
|
readonly hospitalId: string;
|
|
7302
|
-
/**
|
|
7303
|
-
*
|
|
7304
|
-
* @type {number}
|
|
7305
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
7306
|
-
*/
|
|
7307
|
-
readonly page?: number;
|
|
7308
|
-
/**
|
|
7309
|
-
*
|
|
7310
|
-
* @type {number}
|
|
7311
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
7312
|
-
*/
|
|
7313
|
-
readonly limit?: number;
|
|
7314
|
-
/**
|
|
7315
|
-
*
|
|
7316
|
-
* @type {Date}
|
|
7317
|
-
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
7318
|
-
*/
|
|
7319
|
-
readonly lastRetrieved?: Date;
|
|
7320
7330
|
/**
|
|
7321
7331
|
*
|
|
7322
7332
|
* @type {string}
|
|
@@ -7359,6 +7369,24 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
|
|
|
7359
7369
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
7360
7370
|
*/
|
|
7361
7371
|
readonly showHidden?: boolean;
|
|
7372
|
+
/**
|
|
7373
|
+
*
|
|
7374
|
+
* @type {number}
|
|
7375
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
7376
|
+
*/
|
|
7377
|
+
readonly page?: number;
|
|
7378
|
+
/**
|
|
7379
|
+
*
|
|
7380
|
+
* @type {number}
|
|
7381
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
7382
|
+
*/
|
|
7383
|
+
readonly limit?: number;
|
|
7384
|
+
/**
|
|
7385
|
+
*
|
|
7386
|
+
* @type {Date}
|
|
7387
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
7388
|
+
*/
|
|
7389
|
+
readonly lastRetrieved?: Date;
|
|
7362
7390
|
}
|
|
7363
7391
|
/**
|
|
7364
7392
|
* Request parameters for apiV1HospitalsHospitalIdManagersManagerIdDelete operation in HospitalsApi.
|
|
@@ -8395,6 +8423,25 @@ export interface HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest {
|
|
|
8395
8423
|
*/
|
|
8396
8424
|
readonly createHospitalRatingCommand?: CreateHospitalRatingCommand;
|
|
8397
8425
|
}
|
|
8426
|
+
/**
|
|
8427
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsSortPut operation in HospitalsApi.
|
|
8428
|
+
* @export
|
|
8429
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsSortPutRequest
|
|
8430
|
+
*/
|
|
8431
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsSortPutRequest {
|
|
8432
|
+
/**
|
|
8433
|
+
*
|
|
8434
|
+
* @type {string}
|
|
8435
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsSortPut
|
|
8436
|
+
*/
|
|
8437
|
+
readonly hospitalId: string;
|
|
8438
|
+
/**
|
|
8439
|
+
*
|
|
8440
|
+
* @type {HospitalRatingSortingCommand}
|
|
8441
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsSortPut
|
|
8442
|
+
*/
|
|
8443
|
+
readonly hospitalRatingSortingCommand?: HospitalRatingSortingCommand;
|
|
8444
|
+
}
|
|
8398
8445
|
/**
|
|
8399
8446
|
* Request parameters for apiV1HospitalsHospitalIdReactivatePut operation in HospitalsApi.
|
|
8400
8447
|
* @export
|
|
@@ -11442,6 +11489,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
11442
11489
|
* @memberof HospitalsApi
|
|
11443
11490
|
*/
|
|
11444
11491
|
apiV1HospitalsHospitalIdRatingsPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
11492
|
+
/**
|
|
11493
|
+
*
|
|
11494
|
+
* @summary Sort hospitalRating entities
|
|
11495
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsSortPutRequest} requestParameters Request parameters.
|
|
11496
|
+
* @param {*} [options] Override http request option.
|
|
11497
|
+
* @throws {RequiredError}
|
|
11498
|
+
* @memberof HospitalsApi
|
|
11499
|
+
*/
|
|
11500
|
+
apiV1HospitalsHospitalIdRatingsSortPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsSortPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SortingResultModel, any>>;
|
|
11445
11501
|
/**
|
|
11446
11502
|
*
|
|
11447
11503
|
* @summary Delete HospitalSpecialty.
|