ch-admin-api-client-typescript 5.90.65 → 5.90.68
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 +74 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +106 -0
- package/lib/models/article-type.d.ts +2 -1
- package/lib/models/article-type.d.ts.map +1 -1
- package/lib/models/article-type.js +2 -1
- package/lib/models/create-article-command.d.ts +7 -0
- package/lib/models/create-article-command.d.ts.map +1 -1
- package/lib/models/create-hospital-service-command.d.ts +6 -0
- package/lib/models/create-hospital-service-command.d.ts.map +1 -1
- package/lib/models/hospital-service-item-model.d.ts +6 -0
- package/lib/models/hospital-service-item-model.d.ts.map +1 -1
- package/lib/models/hospital-service-model.d.ts +6 -0
- package/lib/models/hospital-service-model.d.ts.map +1 -1
- 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/lib/models/patch-article-command.d.ts +7 -0
- package/lib/models/patch-article-command.d.ts.map +1 -1
- package/lib/models/patch-hospital-service-command.d.ts +143 -0
- package/lib/models/patch-hospital-service-command.d.ts.map +1 -0
- package/lib/models/patch-hospital-service-command.js +15 -0
- package/lib/models/update-article-command.d.ts +7 -0
- package/lib/models/update-article-command.d.ts.map +1 -1
- package/lib/models/update-hospital-service-command.d.ts +6 -0
- package/lib/models/update-hospital-service-command.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -95,6 +95,7 @@ import { PageItemModel } from '../models';
|
|
|
95
95
|
import { PageItemStatus } from '../models';
|
|
96
96
|
import { PageItemsModel } from '../models';
|
|
97
97
|
import { PatchHospitalCommand } from '../models';
|
|
98
|
+
import { PatchHospitalServiceCommand } from '../models';
|
|
98
99
|
import { PatchHospitalSpecialtyCommand } from '../models';
|
|
99
100
|
import { PaymentMethod } from '../models';
|
|
100
101
|
import { PoliciesModel } from '../models';
|
|
@@ -1961,6 +1962,17 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1961
1962
|
* @throws {RequiredError}
|
|
1962
1963
|
*/
|
|
1963
1964
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost: (hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
* @summary Patch HospitalService. <br>Updates only the requested fields. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
1968
|
+
* @param {string} hospitalId
|
|
1969
|
+
* @param {string} specialtyId
|
|
1970
|
+
* @param {string} serviceId
|
|
1971
|
+
* @param {PatchHospitalServiceCommand} [patchHospitalServiceCommand]
|
|
1972
|
+
* @param {*} [options] Override http request option.
|
|
1973
|
+
* @throws {RequiredError}
|
|
1974
|
+
*/
|
|
1975
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch: (hospitalId: string, specialtyId: string, serviceId: string, patchHospitalServiceCommand?: PatchHospitalServiceCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1964
1976
|
/**
|
|
1965
1977
|
*
|
|
1966
1978
|
* @summary Update HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
@@ -4001,6 +4013,17 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
4001
4013
|
* @throws {RequiredError}
|
|
4002
4014
|
*/
|
|
4003
4015
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>>;
|
|
4016
|
+
/**
|
|
4017
|
+
*
|
|
4018
|
+
* @summary Patch HospitalService. <br>Updates only the requested fields. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
4019
|
+
* @param {string} hospitalId
|
|
4020
|
+
* @param {string} specialtyId
|
|
4021
|
+
* @param {string} serviceId
|
|
4022
|
+
* @param {PatchHospitalServiceCommand} [patchHospitalServiceCommand]
|
|
4023
|
+
* @param {*} [options] Override http request option.
|
|
4024
|
+
* @throws {RequiredError}
|
|
4025
|
+
*/
|
|
4026
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch(hospitalId: string, specialtyId: string, serviceId: string, patchHospitalServiceCommand?: PatchHospitalServiceCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServiceModel>>;
|
|
4004
4027
|
/**
|
|
4005
4028
|
*
|
|
4006
4029
|
* @summary Update HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
@@ -6041,6 +6064,17 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
6041
6064
|
* @throws {RequiredError}
|
|
6042
6065
|
*/
|
|
6043
6066
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(hospitalId: string, specialtyId: string, serviceId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel>;
|
|
6067
|
+
/**
|
|
6068
|
+
*
|
|
6069
|
+
* @summary Patch HospitalService. <br>Updates only the requested fields. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
6070
|
+
* @param {string} hospitalId
|
|
6071
|
+
* @param {string} specialtyId
|
|
6072
|
+
* @param {string} serviceId
|
|
6073
|
+
* @param {PatchHospitalServiceCommand} [patchHospitalServiceCommand]
|
|
6074
|
+
* @param {*} [options] Override http request option.
|
|
6075
|
+
* @throws {RequiredError}
|
|
6076
|
+
*/
|
|
6077
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch(hospitalId: string, specialtyId: string, serviceId: string, patchHospitalServiceCommand?: PatchHospitalServiceCommand, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
6044
6078
|
/**
|
|
6045
6079
|
*
|
|
6046
6080
|
* @summary Update HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
@@ -11281,6 +11315,37 @@ export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServi
|
|
|
11281
11315
|
*/
|
|
11282
11316
|
readonly createMediaCommand?: CreateMediaCommand;
|
|
11283
11317
|
}
|
|
11318
|
+
/**
|
|
11319
|
+
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch operation in HospitalsApi.
|
|
11320
|
+
* @export
|
|
11321
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatchRequest
|
|
11322
|
+
*/
|
|
11323
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatchRequest {
|
|
11324
|
+
/**
|
|
11325
|
+
*
|
|
11326
|
+
* @type {string}
|
|
11327
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch
|
|
11328
|
+
*/
|
|
11329
|
+
readonly hospitalId: string;
|
|
11330
|
+
/**
|
|
11331
|
+
*
|
|
11332
|
+
* @type {string}
|
|
11333
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch
|
|
11334
|
+
*/
|
|
11335
|
+
readonly specialtyId: string;
|
|
11336
|
+
/**
|
|
11337
|
+
*
|
|
11338
|
+
* @type {string}
|
|
11339
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch
|
|
11340
|
+
*/
|
|
11341
|
+
readonly serviceId: string;
|
|
11342
|
+
/**
|
|
11343
|
+
*
|
|
11344
|
+
* @type {PatchHospitalServiceCommand}
|
|
11345
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch
|
|
11346
|
+
*/
|
|
11347
|
+
readonly patchHospitalServiceCommand?: PatchHospitalServiceCommand;
|
|
11348
|
+
}
|
|
11284
11349
|
/**
|
|
11285
11350
|
* Request parameters for apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPut operation in HospitalsApi.
|
|
11286
11351
|
* @export
|
|
@@ -13400,6 +13465,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
13400
13465
|
* @memberof HospitalsApi
|
|
13401
13466
|
*/
|
|
13402
13467
|
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
13468
|
+
/**
|
|
13469
|
+
*
|
|
13470
|
+
* @summary Patch HospitalService. <br>Updates only the requested fields. (Auth policies: RequireLocalManagerOrContentManagerRole)
|
|
13471
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatchRequest} requestParameters Request parameters.
|
|
13472
|
+
* @param {*} [options] Override http request option.
|
|
13473
|
+
* @throws {RequiredError}
|
|
13474
|
+
* @memberof HospitalsApi
|
|
13475
|
+
*/
|
|
13476
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatch(requestParameters: HospitalsApiApiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdPatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel, any>>;
|
|
13403
13477
|
/**
|
|
13404
13478
|
*
|
|
13405
13479
|
* @summary Update HospitalService. (Auth policies: RequireLocalManagerOrContentManagerRole)
|