ch-admin-api-client-typescript 5.19.69 → 5.19.70
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 +333 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +491 -0
- package/lib/models/create-hospital-rating-command.d.ts +61 -0
- package/lib/models/create-hospital-rating-command.d.ts.map +1 -0
- package/lib/models/create-hospital-rating-command.js +15 -0
- package/lib/models/hospital-rating-item-model.d.ts +67 -0
- package/lib/models/hospital-rating-item-model.d.ts.map +1 -0
- package/lib/models/hospital-rating-item-model.js +15 -0
- package/lib/models/hospital-rating-model.d.ts +67 -0
- package/lib/models/hospital-rating-model.d.ts.map +1 -0
- package/lib/models/hospital-rating-model.js +15 -0
- package/lib/models/hospital-ratings-model.d.ts +33 -0
- package/lib/models/hospital-ratings-model.d.ts.map +1 -0
- package/lib/models/hospital-ratings-model.js +15 -0
- package/lib/models/index.d.ts +5 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +5 -0
- package/lib/models/update-hospital-rating-command.d.ts +61 -0
- package/lib/models/update-hospital-rating-command.d.ts.map +1 -0
- package/lib/models/update-hospital-rating-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +5 -0
- package/src/api/hospitals-api.ts +584 -0
- package/src/models/create-hospital-rating-command.ts +66 -0
- package/src/models/hospital-rating-item-model.ts +72 -0
- package/src/models/hospital-rating-model.ts +72 -0
- package/src/models/hospital-ratings-model.ts +42 -0
- package/src/models/index.ts +5 -0
- package/src/models/update-hospital-rating-command.ts +66 -0
|
@@ -31,6 +31,7 @@ import { CreateHospitalEquipmentCommand } from '../models';
|
|
|
31
31
|
import { CreateHospitalEvaluationCommand } from '../models';
|
|
32
32
|
import { CreateHospitalLanguageCommand } from '../models';
|
|
33
33
|
import { CreateHospitalPaymentMethodCommand } from '../models';
|
|
34
|
+
import { CreateHospitalRatingCommand } from '../models';
|
|
34
35
|
import { CreateHospitalServiceCommand } from '../models';
|
|
35
36
|
import { CreateHospitalSnsHandleCommand } from '../models';
|
|
36
37
|
import { CreateHospitalSpecialtyCommand } from '../models';
|
|
@@ -59,6 +60,8 @@ import { HospitalLanguagesModel } from '../models';
|
|
|
59
60
|
import { HospitalModel } from '../models';
|
|
60
61
|
import { HospitalPaymentMethodModel } from '../models';
|
|
61
62
|
import { HospitalPaymentMethodsModel } from '../models';
|
|
63
|
+
import { HospitalRatingModel } from '../models';
|
|
64
|
+
import { HospitalRatingsModel } from '../models';
|
|
62
65
|
import { HospitalServiceModel } from '../models';
|
|
63
66
|
import { HospitalServicesModel } from '../models';
|
|
64
67
|
import { HospitalSnsHandlesModel } from '../models';
|
|
@@ -107,6 +110,7 @@ import { UpdateHospitalContactCommand } from '../models';
|
|
|
107
110
|
import { UpdateHospitalEquipmentCommand } from '../models';
|
|
108
111
|
import { UpdateHospitalLanguageCommand } from '../models';
|
|
109
112
|
import { UpdateHospitalPaymentMethodCommand } from '../models';
|
|
113
|
+
import { UpdateHospitalRatingCommand } from '../models';
|
|
110
114
|
import { UpdateHospitalServiceCommand } from '../models';
|
|
111
115
|
import { UpdateHospitalSnsHandleCommand } from '../models';
|
|
112
116
|
import { UpdateHospitalSpecialtyCommand } from '../models';
|
|
@@ -1078,6 +1082,57 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1078
1082
|
* @throws {RequiredError}
|
|
1079
1083
|
*/
|
|
1080
1084
|
apiV1HospitalsHospitalIdPut: (hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1085
|
+
/**
|
|
1086
|
+
*
|
|
1087
|
+
* @summary Get hospitalRatings
|
|
1088
|
+
* @param {string} hospitalId
|
|
1089
|
+
* @param {string} [id]
|
|
1090
|
+
* @param {string} [vender]
|
|
1091
|
+
* @param {boolean} [isConfirmed]
|
|
1092
|
+
* @param {number} [page]
|
|
1093
|
+
* @param {number} [limit]
|
|
1094
|
+
* @param {Date} [lastRetrieved]
|
|
1095
|
+
* @param {*} [options] Override http request option.
|
|
1096
|
+
* @throws {RequiredError}
|
|
1097
|
+
*/
|
|
1098
|
+
apiV1HospitalsHospitalIdRatingsGet: (hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1099
|
+
/**
|
|
1100
|
+
*
|
|
1101
|
+
* @summary Delete hospitalRating
|
|
1102
|
+
* @param {string} hospitalId
|
|
1103
|
+
* @param {string} id
|
|
1104
|
+
* @param {*} [options] Override http request option.
|
|
1105
|
+
* @throws {RequiredError}
|
|
1106
|
+
*/
|
|
1107
|
+
apiV1HospitalsHospitalIdRatingsIdDelete: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1108
|
+
/**
|
|
1109
|
+
*
|
|
1110
|
+
* @summary Get hospitalRating
|
|
1111
|
+
* @param {string} hospitalId
|
|
1112
|
+
* @param {string} id
|
|
1113
|
+
* @param {*} [options] Override http request option.
|
|
1114
|
+
* @throws {RequiredError}
|
|
1115
|
+
*/
|
|
1116
|
+
apiV1HospitalsHospitalIdRatingsIdGet: (hospitalId: string, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1117
|
+
/**
|
|
1118
|
+
*
|
|
1119
|
+
* @summary Update hospitalRating
|
|
1120
|
+
* @param {string} hospitalId
|
|
1121
|
+
* @param {string} id
|
|
1122
|
+
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
1123
|
+
* @param {*} [options] Override http request option.
|
|
1124
|
+
* @throws {RequiredError}
|
|
1125
|
+
*/
|
|
1126
|
+
apiV1HospitalsHospitalIdRatingsIdPut: (hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1127
|
+
/**
|
|
1128
|
+
*
|
|
1129
|
+
* @summary Create hospitalRating
|
|
1130
|
+
* @param {string} hospitalId
|
|
1131
|
+
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
1132
|
+
* @param {*} [options] Override http request option.
|
|
1133
|
+
* @throws {RequiredError}
|
|
1134
|
+
*/
|
|
1135
|
+
apiV1HospitalsHospitalIdRatingsPost: (hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1081
1136
|
/**
|
|
1082
1137
|
*
|
|
1083
1138
|
* @summary Delete HospitalSpecialty.
|
|
@@ -2766,6 +2821,57 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2766
2821
|
* @throws {RequiredError}
|
|
2767
2822
|
*/
|
|
2768
2823
|
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalModel>>;
|
|
2824
|
+
/**
|
|
2825
|
+
*
|
|
2826
|
+
* @summary Get hospitalRatings
|
|
2827
|
+
* @param {string} hospitalId
|
|
2828
|
+
* @param {string} [id]
|
|
2829
|
+
* @param {string} [vender]
|
|
2830
|
+
* @param {boolean} [isConfirmed]
|
|
2831
|
+
* @param {number} [page]
|
|
2832
|
+
* @param {number} [limit]
|
|
2833
|
+
* @param {Date} [lastRetrieved]
|
|
2834
|
+
* @param {*} [options] Override http request option.
|
|
2835
|
+
* @throws {RequiredError}
|
|
2836
|
+
*/
|
|
2837
|
+
apiV1HospitalsHospitalIdRatingsGet(hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingsModel>>;
|
|
2838
|
+
/**
|
|
2839
|
+
*
|
|
2840
|
+
* @summary Delete hospitalRating
|
|
2841
|
+
* @param {string} hospitalId
|
|
2842
|
+
* @param {string} id
|
|
2843
|
+
* @param {*} [options] Override http request option.
|
|
2844
|
+
* @throws {RequiredError}
|
|
2845
|
+
*/
|
|
2846
|
+
apiV1HospitalsHospitalIdRatingsIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
2847
|
+
/**
|
|
2848
|
+
*
|
|
2849
|
+
* @summary Get hospitalRating
|
|
2850
|
+
* @param {string} hospitalId
|
|
2851
|
+
* @param {string} id
|
|
2852
|
+
* @param {*} [options] Override http request option.
|
|
2853
|
+
* @throws {RequiredError}
|
|
2854
|
+
*/
|
|
2855
|
+
apiV1HospitalsHospitalIdRatingsIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
2856
|
+
/**
|
|
2857
|
+
*
|
|
2858
|
+
* @summary Update hospitalRating
|
|
2859
|
+
* @param {string} hospitalId
|
|
2860
|
+
* @param {string} id
|
|
2861
|
+
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
2862
|
+
* @param {*} [options] Override http request option.
|
|
2863
|
+
* @throws {RequiredError}
|
|
2864
|
+
*/
|
|
2865
|
+
apiV1HospitalsHospitalIdRatingsIdPut(hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
2866
|
+
/**
|
|
2867
|
+
*
|
|
2868
|
+
* @summary Create hospitalRating
|
|
2869
|
+
* @param {string} hospitalId
|
|
2870
|
+
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
2871
|
+
* @param {*} [options] Override http request option.
|
|
2872
|
+
* @throws {RequiredError}
|
|
2873
|
+
*/
|
|
2874
|
+
apiV1HospitalsHospitalIdRatingsPost(hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalRatingModel>>;
|
|
2769
2875
|
/**
|
|
2770
2876
|
*
|
|
2771
2877
|
* @summary Delete HospitalSpecialty.
|
|
@@ -4454,6 +4560,57 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4454
4560
|
* @throws {RequiredError}
|
|
4455
4561
|
*/
|
|
4456
4562
|
apiV1HospitalsHospitalIdPut(hospitalId: string, updateHospitalCommand?: UpdateHospitalCommand, options?: any): AxiosPromise<HospitalModel>;
|
|
4563
|
+
/**
|
|
4564
|
+
*
|
|
4565
|
+
* @summary Get hospitalRatings
|
|
4566
|
+
* @param {string} hospitalId
|
|
4567
|
+
* @param {string} [id]
|
|
4568
|
+
* @param {string} [vender]
|
|
4569
|
+
* @param {boolean} [isConfirmed]
|
|
4570
|
+
* @param {number} [page]
|
|
4571
|
+
* @param {number} [limit]
|
|
4572
|
+
* @param {Date} [lastRetrieved]
|
|
4573
|
+
* @param {*} [options] Override http request option.
|
|
4574
|
+
* @throws {RequiredError}
|
|
4575
|
+
*/
|
|
4576
|
+
apiV1HospitalsHospitalIdRatingsGet(hospitalId: string, id?: string, vender?: string, isConfirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalRatingsModel>;
|
|
4577
|
+
/**
|
|
4578
|
+
*
|
|
4579
|
+
* @summary Delete hospitalRating
|
|
4580
|
+
* @param {string} hospitalId
|
|
4581
|
+
* @param {string} id
|
|
4582
|
+
* @param {*} [options] Override http request option.
|
|
4583
|
+
* @throws {RequiredError}
|
|
4584
|
+
*/
|
|
4585
|
+
apiV1HospitalsHospitalIdRatingsIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<boolean>;
|
|
4586
|
+
/**
|
|
4587
|
+
*
|
|
4588
|
+
* @summary Get hospitalRating
|
|
4589
|
+
* @param {string} hospitalId
|
|
4590
|
+
* @param {string} id
|
|
4591
|
+
* @param {*} [options] Override http request option.
|
|
4592
|
+
* @throws {RequiredError}
|
|
4593
|
+
*/
|
|
4594
|
+
apiV1HospitalsHospitalIdRatingsIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
4595
|
+
/**
|
|
4596
|
+
*
|
|
4597
|
+
* @summary Update hospitalRating
|
|
4598
|
+
* @param {string} hospitalId
|
|
4599
|
+
* @param {string} id
|
|
4600
|
+
* @param {UpdateHospitalRatingCommand} [updateHospitalRatingCommand]
|
|
4601
|
+
* @param {*} [options] Override http request option.
|
|
4602
|
+
* @throws {RequiredError}
|
|
4603
|
+
*/
|
|
4604
|
+
apiV1HospitalsHospitalIdRatingsIdPut(hospitalId: string, id: string, updateHospitalRatingCommand?: UpdateHospitalRatingCommand, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
4605
|
+
/**
|
|
4606
|
+
*
|
|
4607
|
+
* @summary Create hospitalRating
|
|
4608
|
+
* @param {string} hospitalId
|
|
4609
|
+
* @param {CreateHospitalRatingCommand} [createHospitalRatingCommand]
|
|
4610
|
+
* @param {*} [options] Override http request option.
|
|
4611
|
+
* @throws {RequiredError}
|
|
4612
|
+
*/
|
|
4613
|
+
apiV1HospitalsHospitalIdRatingsPost(hospitalId: string, createHospitalRatingCommand?: CreateHospitalRatingCommand, options?: any): AxiosPromise<HospitalRatingModel>;
|
|
4457
4614
|
/**
|
|
4458
4615
|
*
|
|
4459
4616
|
* @summary Delete HospitalSpecialty.
|
|
@@ -7727,6 +7884,137 @@ export interface HospitalsApiApiV1HospitalsHospitalIdPutRequest {
|
|
|
7727
7884
|
*/
|
|
7728
7885
|
readonly updateHospitalCommand?: UpdateHospitalCommand;
|
|
7729
7886
|
}
|
|
7887
|
+
/**
|
|
7888
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsGet operation in HospitalsApi.
|
|
7889
|
+
* @export
|
|
7890
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest
|
|
7891
|
+
*/
|
|
7892
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest {
|
|
7893
|
+
/**
|
|
7894
|
+
*
|
|
7895
|
+
* @type {string}
|
|
7896
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
7897
|
+
*/
|
|
7898
|
+
readonly hospitalId: string;
|
|
7899
|
+
/**
|
|
7900
|
+
*
|
|
7901
|
+
* @type {string}
|
|
7902
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
7903
|
+
*/
|
|
7904
|
+
readonly id?: string;
|
|
7905
|
+
/**
|
|
7906
|
+
*
|
|
7907
|
+
* @type {string}
|
|
7908
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
7909
|
+
*/
|
|
7910
|
+
readonly vender?: string;
|
|
7911
|
+
/**
|
|
7912
|
+
*
|
|
7913
|
+
* @type {boolean}
|
|
7914
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
7915
|
+
*/
|
|
7916
|
+
readonly isConfirmed?: boolean;
|
|
7917
|
+
/**
|
|
7918
|
+
*
|
|
7919
|
+
* @type {number}
|
|
7920
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
7921
|
+
*/
|
|
7922
|
+
readonly page?: number;
|
|
7923
|
+
/**
|
|
7924
|
+
*
|
|
7925
|
+
* @type {number}
|
|
7926
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
7927
|
+
*/
|
|
7928
|
+
readonly limit?: number;
|
|
7929
|
+
/**
|
|
7930
|
+
*
|
|
7931
|
+
* @type {Date}
|
|
7932
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsGet
|
|
7933
|
+
*/
|
|
7934
|
+
readonly lastRetrieved?: Date;
|
|
7935
|
+
}
|
|
7936
|
+
/**
|
|
7937
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsIdDelete operation in HospitalsApi.
|
|
7938
|
+
* @export
|
|
7939
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest
|
|
7940
|
+
*/
|
|
7941
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest {
|
|
7942
|
+
/**
|
|
7943
|
+
*
|
|
7944
|
+
* @type {string}
|
|
7945
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdDelete
|
|
7946
|
+
*/
|
|
7947
|
+
readonly hospitalId: string;
|
|
7948
|
+
/**
|
|
7949
|
+
*
|
|
7950
|
+
* @type {string}
|
|
7951
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdDelete
|
|
7952
|
+
*/
|
|
7953
|
+
readonly id: string;
|
|
7954
|
+
}
|
|
7955
|
+
/**
|
|
7956
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsIdGet operation in HospitalsApi.
|
|
7957
|
+
* @export
|
|
7958
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest
|
|
7959
|
+
*/
|
|
7960
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest {
|
|
7961
|
+
/**
|
|
7962
|
+
*
|
|
7963
|
+
* @type {string}
|
|
7964
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdGet
|
|
7965
|
+
*/
|
|
7966
|
+
readonly hospitalId: string;
|
|
7967
|
+
/**
|
|
7968
|
+
*
|
|
7969
|
+
* @type {string}
|
|
7970
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdGet
|
|
7971
|
+
*/
|
|
7972
|
+
readonly id: string;
|
|
7973
|
+
}
|
|
7974
|
+
/**
|
|
7975
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsIdPut operation in HospitalsApi.
|
|
7976
|
+
* @export
|
|
7977
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest
|
|
7978
|
+
*/
|
|
7979
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest {
|
|
7980
|
+
/**
|
|
7981
|
+
*
|
|
7982
|
+
* @type {string}
|
|
7983
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdPut
|
|
7984
|
+
*/
|
|
7985
|
+
readonly hospitalId: string;
|
|
7986
|
+
/**
|
|
7987
|
+
*
|
|
7988
|
+
* @type {string}
|
|
7989
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdPut
|
|
7990
|
+
*/
|
|
7991
|
+
readonly id: string;
|
|
7992
|
+
/**
|
|
7993
|
+
*
|
|
7994
|
+
* @type {UpdateHospitalRatingCommand}
|
|
7995
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsIdPut
|
|
7996
|
+
*/
|
|
7997
|
+
readonly updateHospitalRatingCommand?: UpdateHospitalRatingCommand;
|
|
7998
|
+
}
|
|
7999
|
+
/**
|
|
8000
|
+
* Request parameters for apiV1HospitalsHospitalIdRatingsPost operation in HospitalsApi.
|
|
8001
|
+
* @export
|
|
8002
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest
|
|
8003
|
+
*/
|
|
8004
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest {
|
|
8005
|
+
/**
|
|
8006
|
+
*
|
|
8007
|
+
* @type {string}
|
|
8008
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsPost
|
|
8009
|
+
*/
|
|
8010
|
+
readonly hospitalId: string;
|
|
8011
|
+
/**
|
|
8012
|
+
*
|
|
8013
|
+
* @type {CreateHospitalRatingCommand}
|
|
8014
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdRatingsPost
|
|
8015
|
+
*/
|
|
8016
|
+
readonly createHospitalRatingCommand?: CreateHospitalRatingCommand;
|
|
8017
|
+
}
|
|
7730
8018
|
/**
|
|
7731
8019
|
* Request parameters for apiV1HospitalsHospitalIdReactivatePut operation in HospitalsApi.
|
|
7732
8020
|
* @export
|
|
@@ -10675,6 +10963,51 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
10675
10963
|
* @memberof HospitalsApi
|
|
10676
10964
|
*/
|
|
10677
10965
|
apiV1HospitalsHospitalIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
|
|
10966
|
+
/**
|
|
10967
|
+
*
|
|
10968
|
+
* @summary Get hospitalRatings
|
|
10969
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest} requestParameters Request parameters.
|
|
10970
|
+
* @param {*} [options] Override http request option.
|
|
10971
|
+
* @throws {RequiredError}
|
|
10972
|
+
* @memberof HospitalsApi
|
|
10973
|
+
*/
|
|
10974
|
+
apiV1HospitalsHospitalIdRatingsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingsModel, any>>;
|
|
10975
|
+
/**
|
|
10976
|
+
*
|
|
10977
|
+
* @summary Delete hospitalRating
|
|
10978
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest} requestParameters Request parameters.
|
|
10979
|
+
* @param {*} [options] Override http request option.
|
|
10980
|
+
* @throws {RequiredError}
|
|
10981
|
+
* @memberof HospitalsApi
|
|
10982
|
+
*/
|
|
10983
|
+
apiV1HospitalsHospitalIdRatingsIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
10984
|
+
/**
|
|
10985
|
+
*
|
|
10986
|
+
* @summary Get hospitalRating
|
|
10987
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest} requestParameters Request parameters.
|
|
10988
|
+
* @param {*} [options] Override http request option.
|
|
10989
|
+
* @throws {RequiredError}
|
|
10990
|
+
* @memberof HospitalsApi
|
|
10991
|
+
*/
|
|
10992
|
+
apiV1HospitalsHospitalIdRatingsIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
10993
|
+
/**
|
|
10994
|
+
*
|
|
10995
|
+
* @summary Update hospitalRating
|
|
10996
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest} requestParameters Request parameters.
|
|
10997
|
+
* @param {*} [options] Override http request option.
|
|
10998
|
+
* @throws {RequiredError}
|
|
10999
|
+
* @memberof HospitalsApi
|
|
11000
|
+
*/
|
|
11001
|
+
apiV1HospitalsHospitalIdRatingsIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
11002
|
+
/**
|
|
11003
|
+
*
|
|
11004
|
+
* @summary Create hospitalRating
|
|
11005
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest} requestParameters Request parameters.
|
|
11006
|
+
* @param {*} [options] Override http request option.
|
|
11007
|
+
* @throws {RequiredError}
|
|
11008
|
+
* @memberof HospitalsApi
|
|
11009
|
+
*/
|
|
11010
|
+
apiV1HospitalsHospitalIdRatingsPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdRatingsPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalRatingModel, any>>;
|
|
10678
11011
|
/**
|
|
10679
11012
|
*
|
|
10680
11013
|
* @summary Delete HospitalSpecialty.
|