ch-admin-api-client-typescript 2.6.2 → 2.6.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.d.ts +707 -50
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1279 -178
- package/package.json +1 -1
- package/src/api.ts +1327 -170
package/lib/api.d.ts
CHANGED
|
@@ -3300,10 +3300,10 @@ export interface CreateCountryCommand {
|
|
|
3300
3300
|
'content'?: string | null;
|
|
3301
3301
|
/**
|
|
3302
3302
|
*
|
|
3303
|
-
* @type {
|
|
3303
|
+
* @type {string}
|
|
3304
3304
|
* @memberof CreateCountryCommand
|
|
3305
3305
|
*/
|
|
3306
|
-
'
|
|
3306
|
+
'logo'?: string | null;
|
|
3307
3307
|
}
|
|
3308
3308
|
/**
|
|
3309
3309
|
*
|
|
@@ -4253,6 +4253,43 @@ export interface CreateServiceCategoryCommand {
|
|
|
4253
4253
|
*/
|
|
4254
4254
|
'order'?: number;
|
|
4255
4255
|
}
|
|
4256
|
+
/**
|
|
4257
|
+
*
|
|
4258
|
+
* @export
|
|
4259
|
+
* @interface CreateServiceReviewCommand
|
|
4260
|
+
*/
|
|
4261
|
+
export interface CreateServiceReviewCommand {
|
|
4262
|
+
/**
|
|
4263
|
+
*
|
|
4264
|
+
* @type {string}
|
|
4265
|
+
* @memberof CreateServiceReviewCommand
|
|
4266
|
+
*/
|
|
4267
|
+
'serviceId'?: string;
|
|
4268
|
+
/**
|
|
4269
|
+
*
|
|
4270
|
+
* @type {string}
|
|
4271
|
+
* @memberof CreateServiceReviewCommand
|
|
4272
|
+
*/
|
|
4273
|
+
'patientId'?: string | null;
|
|
4274
|
+
/**
|
|
4275
|
+
*
|
|
4276
|
+
* @type {string}
|
|
4277
|
+
* @memberof CreateServiceReviewCommand
|
|
4278
|
+
*/
|
|
4279
|
+
'body'?: string | null;
|
|
4280
|
+
/**
|
|
4281
|
+
*
|
|
4282
|
+
* @type {boolean}
|
|
4283
|
+
* @memberof CreateServiceReviewCommand
|
|
4284
|
+
*/
|
|
4285
|
+
'recommended'?: boolean;
|
|
4286
|
+
/**
|
|
4287
|
+
*
|
|
4288
|
+
* @type {number}
|
|
4289
|
+
* @memberof CreateServiceReviewCommand
|
|
4290
|
+
*/
|
|
4291
|
+
'rate'?: number;
|
|
4292
|
+
}
|
|
4256
4293
|
/**
|
|
4257
4294
|
*
|
|
4258
4295
|
* @export
|
|
@@ -4437,12 +4474,6 @@ export interface DealItemModel {
|
|
|
4437
4474
|
* @memberof DealItemModel
|
|
4438
4475
|
*/
|
|
4439
4476
|
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
4440
|
-
/**
|
|
4441
|
-
*
|
|
4442
|
-
* @type {AuditableEntity}
|
|
4443
|
-
* @memberof DealItemModel
|
|
4444
|
-
*/
|
|
4445
|
-
'auditableEntity'?: AuditableEntity;
|
|
4446
4477
|
/**
|
|
4447
4478
|
*
|
|
4448
4479
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4455,6 +4486,12 @@ export interface DealItemModel {
|
|
|
4455
4486
|
* @memberof DealItemModel
|
|
4456
4487
|
*/
|
|
4457
4488
|
'confirmed'?: boolean;
|
|
4489
|
+
/**
|
|
4490
|
+
*
|
|
4491
|
+
* @type {AuditableEntity}
|
|
4492
|
+
* @memberof DealItemModel
|
|
4493
|
+
*/
|
|
4494
|
+
'auditableEntity'?: AuditableEntity;
|
|
4458
4495
|
}
|
|
4459
4496
|
/**
|
|
4460
4497
|
*
|
|
@@ -4540,12 +4577,6 @@ export interface DealModel {
|
|
|
4540
4577
|
* @memberof DealModel
|
|
4541
4578
|
*/
|
|
4542
4579
|
'dealServices'?: Array<DealServiceItemModel> | null;
|
|
4543
|
-
/**
|
|
4544
|
-
*
|
|
4545
|
-
* @type {AuditableEntity}
|
|
4546
|
-
* @memberof DealModel
|
|
4547
|
-
*/
|
|
4548
|
-
'auditableEntity'?: AuditableEntity;
|
|
4549
4580
|
/**
|
|
4550
4581
|
*
|
|
4551
4582
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -4558,6 +4589,12 @@ export interface DealModel {
|
|
|
4558
4589
|
* @memberof DealModel
|
|
4559
4590
|
*/
|
|
4560
4591
|
'confirmed'?: boolean;
|
|
4592
|
+
/**
|
|
4593
|
+
*
|
|
4594
|
+
* @type {AuditableEntity}
|
|
4595
|
+
* @memberof DealModel
|
|
4596
|
+
*/
|
|
4597
|
+
'auditableEntity'?: AuditableEntity;
|
|
4561
4598
|
/**
|
|
4562
4599
|
*
|
|
4563
4600
|
* @type {string}
|
|
@@ -7894,7 +7931,10 @@ export declare enum MediaType {
|
|
|
7894
7931
|
Photo = "Photo",
|
|
7895
7932
|
Video = "Video",
|
|
7896
7933
|
Youtube = "Youtube",
|
|
7897
|
-
Document = "Document"
|
|
7934
|
+
Document = "Document",
|
|
7935
|
+
Frontal = "Frontal",
|
|
7936
|
+
Diagonal = "Diagonal",
|
|
7937
|
+
Side = "Side"
|
|
7898
7938
|
}
|
|
7899
7939
|
/**
|
|
7900
7940
|
*
|
|
@@ -8941,12 +8981,6 @@ export interface ServiceCategoryItemModel {
|
|
|
8941
8981
|
* @memberof ServiceCategoryItemModel
|
|
8942
8982
|
*/
|
|
8943
8983
|
'serviceCount'?: number;
|
|
8944
|
-
/**
|
|
8945
|
-
*
|
|
8946
|
-
* @type {Array<HospitalServiceItemModel>}
|
|
8947
|
-
* @memberof ServiceCategoryItemModel
|
|
8948
|
-
*/
|
|
8949
|
-
'services'?: Array<HospitalServiceItemModel> | null;
|
|
8950
8984
|
}
|
|
8951
8985
|
/**
|
|
8952
8986
|
*
|
|
@@ -8990,12 +9024,147 @@ export interface ServiceCategoryModel {
|
|
|
8990
9024
|
* @memberof ServiceCategoryModel
|
|
8991
9025
|
*/
|
|
8992
9026
|
'serviceCount'?: number;
|
|
9027
|
+
}
|
|
9028
|
+
/**
|
|
9029
|
+
*
|
|
9030
|
+
* @export
|
|
9031
|
+
* @interface ServiceReviewItemModel
|
|
9032
|
+
*/
|
|
9033
|
+
export interface ServiceReviewItemModel {
|
|
8993
9034
|
/**
|
|
8994
9035
|
*
|
|
8995
|
-
* @type {
|
|
8996
|
-
* @memberof
|
|
9036
|
+
* @type {string}
|
|
9037
|
+
* @memberof ServiceReviewItemModel
|
|
9038
|
+
*/
|
|
9039
|
+
'id'?: string;
|
|
9040
|
+
/**
|
|
9041
|
+
*
|
|
9042
|
+
* @type {string}
|
|
9043
|
+
* @memberof ServiceReviewItemModel
|
|
9044
|
+
*/
|
|
9045
|
+
'serviceId'?: string;
|
|
9046
|
+
/**
|
|
9047
|
+
*
|
|
9048
|
+
* @type {string}
|
|
9049
|
+
* @memberof ServiceReviewItemModel
|
|
9050
|
+
*/
|
|
9051
|
+
'serviceName'?: string | null;
|
|
9052
|
+
/**
|
|
9053
|
+
*
|
|
9054
|
+
* @type {string}
|
|
9055
|
+
* @memberof ServiceReviewItemModel
|
|
9056
|
+
*/
|
|
9057
|
+
'patientId'?: string;
|
|
9058
|
+
/**
|
|
9059
|
+
*
|
|
9060
|
+
* @type {string}
|
|
9061
|
+
* @memberof ServiceReviewItemModel
|
|
9062
|
+
*/
|
|
9063
|
+
'patientName'?: string | null;
|
|
9064
|
+
/**
|
|
9065
|
+
*
|
|
9066
|
+
* @type {string}
|
|
9067
|
+
* @memberof ServiceReviewItemModel
|
|
9068
|
+
*/
|
|
9069
|
+
'body'?: string | null;
|
|
9070
|
+
/**
|
|
9071
|
+
*
|
|
9072
|
+
* @type {boolean}
|
|
9073
|
+
* @memberof ServiceReviewItemModel
|
|
9074
|
+
*/
|
|
9075
|
+
'recommended'?: boolean;
|
|
9076
|
+
/**
|
|
9077
|
+
*
|
|
9078
|
+
* @type {number}
|
|
9079
|
+
* @memberof ServiceReviewItemModel
|
|
9080
|
+
*/
|
|
9081
|
+
'rate'?: number;
|
|
9082
|
+
/**
|
|
9083
|
+
*
|
|
9084
|
+
* @type {Array<MediaModel>}
|
|
9085
|
+
* @memberof ServiceReviewItemModel
|
|
9086
|
+
*/
|
|
9087
|
+
'medias'?: Array<MediaModel> | null;
|
|
9088
|
+
}
|
|
9089
|
+
/**
|
|
9090
|
+
*
|
|
9091
|
+
* @export
|
|
9092
|
+
* @interface ServiceReviewModel
|
|
9093
|
+
*/
|
|
9094
|
+
export interface ServiceReviewModel {
|
|
9095
|
+
/**
|
|
9096
|
+
*
|
|
9097
|
+
* @type {string}
|
|
9098
|
+
* @memberof ServiceReviewModel
|
|
9099
|
+
*/
|
|
9100
|
+
'id'?: string;
|
|
9101
|
+
/**
|
|
9102
|
+
*
|
|
9103
|
+
* @type {string}
|
|
9104
|
+
* @memberof ServiceReviewModel
|
|
9105
|
+
*/
|
|
9106
|
+
'serviceId'?: string;
|
|
9107
|
+
/**
|
|
9108
|
+
*
|
|
9109
|
+
* @type {string}
|
|
9110
|
+
* @memberof ServiceReviewModel
|
|
9111
|
+
*/
|
|
9112
|
+
'serviceName'?: string | null;
|
|
9113
|
+
/**
|
|
9114
|
+
*
|
|
9115
|
+
* @type {string}
|
|
9116
|
+
* @memberof ServiceReviewModel
|
|
9117
|
+
*/
|
|
9118
|
+
'patientId'?: string;
|
|
9119
|
+
/**
|
|
9120
|
+
*
|
|
9121
|
+
* @type {string}
|
|
9122
|
+
* @memberof ServiceReviewModel
|
|
9123
|
+
*/
|
|
9124
|
+
'patientName'?: string | null;
|
|
9125
|
+
/**
|
|
9126
|
+
*
|
|
9127
|
+
* @type {string}
|
|
9128
|
+
* @memberof ServiceReviewModel
|
|
9129
|
+
*/
|
|
9130
|
+
'body'?: string | null;
|
|
9131
|
+
/**
|
|
9132
|
+
*
|
|
9133
|
+
* @type {boolean}
|
|
9134
|
+
* @memberof ServiceReviewModel
|
|
9135
|
+
*/
|
|
9136
|
+
'recommended'?: boolean;
|
|
9137
|
+
/**
|
|
9138
|
+
*
|
|
9139
|
+
* @type {number}
|
|
9140
|
+
* @memberof ServiceReviewModel
|
|
9141
|
+
*/
|
|
9142
|
+
'rate'?: number;
|
|
9143
|
+
/**
|
|
9144
|
+
*
|
|
9145
|
+
* @type {Array<MediaModel>}
|
|
9146
|
+
* @memberof ServiceReviewModel
|
|
9147
|
+
*/
|
|
9148
|
+
'medias'?: Array<MediaModel> | null;
|
|
9149
|
+
}
|
|
9150
|
+
/**
|
|
9151
|
+
*
|
|
9152
|
+
* @export
|
|
9153
|
+
* @interface ServiceReviewsModel
|
|
9154
|
+
*/
|
|
9155
|
+
export interface ServiceReviewsModel {
|
|
9156
|
+
/**
|
|
9157
|
+
*
|
|
9158
|
+
* @type {Array<ServiceReviewItemModel>}
|
|
9159
|
+
* @memberof ServiceReviewsModel
|
|
9160
|
+
*/
|
|
9161
|
+
'items'?: Array<ServiceReviewItemModel> | null;
|
|
9162
|
+
/**
|
|
9163
|
+
*
|
|
9164
|
+
* @type {PagedListMetaData}
|
|
9165
|
+
* @memberof ServiceReviewsModel
|
|
8997
9166
|
*/
|
|
8998
|
-
'
|
|
9167
|
+
'metaData'?: PagedListMetaData;
|
|
8999
9168
|
}
|
|
9000
9169
|
/**
|
|
9001
9170
|
*
|
|
@@ -10138,6 +10307,12 @@ export interface UpdateCountryCommand {
|
|
|
10138
10307
|
* @memberof UpdateCountryCommand
|
|
10139
10308
|
*/
|
|
10140
10309
|
'slug'?: string | null;
|
|
10310
|
+
/**
|
|
10311
|
+
*
|
|
10312
|
+
* @type {string}
|
|
10313
|
+
* @memberof UpdateCountryCommand
|
|
10314
|
+
*/
|
|
10315
|
+
'logo'?: string | null;
|
|
10141
10316
|
/**
|
|
10142
10317
|
*
|
|
10143
10318
|
* @type {string}
|
|
@@ -10774,19 +10949,19 @@ export interface UpdateHospitalServiceCommand {
|
|
|
10774
10949
|
* @type {number}
|
|
10775
10950
|
* @memberof UpdateHospitalServiceCommand
|
|
10776
10951
|
*/
|
|
10777
|
-
'minPrice'?: number;
|
|
10952
|
+
'minPrice'?: number | null;
|
|
10778
10953
|
/**
|
|
10779
10954
|
*
|
|
10780
10955
|
* @type {number}
|
|
10781
10956
|
* @memberof UpdateHospitalServiceCommand
|
|
10782
10957
|
*/
|
|
10783
|
-
'maxPrice'?: number;
|
|
10958
|
+
'maxPrice'?: number | null;
|
|
10784
10959
|
/**
|
|
10785
10960
|
*
|
|
10786
10961
|
* @type {boolean}
|
|
10787
10962
|
* @memberof UpdateHospitalServiceCommand
|
|
10788
10963
|
*/
|
|
10789
|
-
'priceReuqest'?: boolean;
|
|
10964
|
+
'priceReuqest'?: boolean | null;
|
|
10790
10965
|
/**
|
|
10791
10966
|
*
|
|
10792
10967
|
* @type {Procedure}
|
|
@@ -11150,6 +11325,31 @@ export interface UpdateServiceCategoryCommand {
|
|
|
11150
11325
|
*/
|
|
11151
11326
|
'order'?: number;
|
|
11152
11327
|
}
|
|
11328
|
+
/**
|
|
11329
|
+
*
|
|
11330
|
+
* @export
|
|
11331
|
+
* @interface UpdateServiceReviewCommand
|
|
11332
|
+
*/
|
|
11333
|
+
export interface UpdateServiceReviewCommand {
|
|
11334
|
+
/**
|
|
11335
|
+
*
|
|
11336
|
+
* @type {string}
|
|
11337
|
+
* @memberof UpdateServiceReviewCommand
|
|
11338
|
+
*/
|
|
11339
|
+
'body'?: string | null;
|
|
11340
|
+
/**
|
|
11341
|
+
*
|
|
11342
|
+
* @type {boolean}
|
|
11343
|
+
* @memberof UpdateServiceReviewCommand
|
|
11344
|
+
*/
|
|
11345
|
+
'recommended'?: boolean | null;
|
|
11346
|
+
/**
|
|
11347
|
+
*
|
|
11348
|
+
* @type {number}
|
|
11349
|
+
* @memberof UpdateServiceReviewCommand
|
|
11350
|
+
*/
|
|
11351
|
+
'rate'?: number | null;
|
|
11352
|
+
}
|
|
11153
11353
|
/**
|
|
11154
11354
|
*
|
|
11155
11355
|
* @export
|
|
@@ -14761,7 +14961,7 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14761
14961
|
* @param {*} [options] Override http request option.
|
|
14762
14962
|
* @throws {RequiredError}
|
|
14763
14963
|
*/
|
|
14764
|
-
|
|
14964
|
+
apiV1CountriesCountryIdReactivePut: (countryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14765
14965
|
/**
|
|
14766
14966
|
*
|
|
14767
14967
|
* @summary Get all countries.
|
|
@@ -14886,7 +15086,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14886
15086
|
* @param {*} [options] Override http request option.
|
|
14887
15087
|
* @throws {RequiredError}
|
|
14888
15088
|
*/
|
|
14889
|
-
|
|
15089
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14890
15090
|
/**
|
|
14891
15091
|
*
|
|
14892
15092
|
* @summary Get all countries.
|
|
@@ -15011,7 +15211,7 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
15011
15211
|
* @param {*} [options] Override http request option.
|
|
15012
15212
|
* @throws {RequiredError}
|
|
15013
15213
|
*/
|
|
15014
|
-
|
|
15214
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: any): AxiosPromise<boolean>;
|
|
15015
15215
|
/**
|
|
15016
15216
|
*
|
|
15017
15217
|
* @summary Get all countries.
|
|
@@ -15147,7 +15347,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15147
15347
|
* @throws {RequiredError}
|
|
15148
15348
|
* @memberof CountriesApi
|
|
15149
15349
|
*/
|
|
15150
|
-
|
|
15350
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15151
15351
|
/**
|
|
15152
15352
|
*
|
|
15153
15353
|
* @summary Get all countries.
|
|
@@ -16319,7 +16519,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16319
16519
|
* @param {*} [options] Override http request option.
|
|
16320
16520
|
* @throws {RequiredError}
|
|
16321
16521
|
*/
|
|
16322
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
16522
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
16323
16523
|
/**
|
|
16324
16524
|
*
|
|
16325
16525
|
* @summary Delete DoctorCertificate.
|
|
@@ -16684,7 +16884,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16684
16884
|
* @param {*} [options] Override http request option.
|
|
16685
16885
|
* @throws {RequiredError}
|
|
16686
16886
|
*/
|
|
16687
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<
|
|
16887
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
16688
16888
|
/**
|
|
16689
16889
|
*
|
|
16690
16890
|
* @summary Delete DoctorCertificate.
|
|
@@ -17055,7 +17255,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17055
17255
|
* @throws {RequiredError}
|
|
17056
17256
|
* @memberof DoctorsApi
|
|
17057
17257
|
*/
|
|
17058
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
17258
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
17059
17259
|
/**
|
|
17060
17260
|
*
|
|
17061
17261
|
* @summary Delete DoctorCertificate.
|
|
@@ -18596,6 +18796,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18596
18796
|
* @throws {RequiredError}
|
|
18597
18797
|
*/
|
|
18598
18798
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut: (hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18799
|
+
/**
|
|
18800
|
+
*
|
|
18801
|
+
* @summary Reactivate HospitalEquipment.
|
|
18802
|
+
* @param {string} hospitalId
|
|
18803
|
+
* @param {string} equipmentId
|
|
18804
|
+
* @param {*} [options] Override http request option.
|
|
18805
|
+
* @throws {RequiredError}
|
|
18806
|
+
*/
|
|
18807
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut: (hospitalId: string, equipmentId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18599
18808
|
/**
|
|
18600
18809
|
*
|
|
18601
18810
|
* @summary Get all HospitalEquipments.
|
|
@@ -19117,6 +19326,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19117
19326
|
* @throws {RequiredError}
|
|
19118
19327
|
*/
|
|
19119
19328
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentModel>>;
|
|
19329
|
+
/**
|
|
19330
|
+
*
|
|
19331
|
+
* @summary Reactivate HospitalEquipment.
|
|
19332
|
+
* @param {string} hospitalId
|
|
19333
|
+
* @param {string} equipmentId
|
|
19334
|
+
* @param {*} [options] Override http request option.
|
|
19335
|
+
* @throws {RequiredError}
|
|
19336
|
+
*/
|
|
19337
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19120
19338
|
/**
|
|
19121
19339
|
*
|
|
19122
19340
|
* @summary Get all HospitalEquipments.
|
|
@@ -19638,6 +19856,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19638
19856
|
* @throws {RequiredError}
|
|
19639
19857
|
*/
|
|
19640
19858
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand | undefined, options?: any): AxiosPromise<HospitalEquipmentModel>;
|
|
19859
|
+
/**
|
|
19860
|
+
*
|
|
19861
|
+
* @summary Reactivate HospitalEquipment.
|
|
19862
|
+
* @param {string} hospitalId
|
|
19863
|
+
* @param {string} equipmentId
|
|
19864
|
+
* @param {*} [options] Override http request option.
|
|
19865
|
+
* @throws {RequiredError}
|
|
19866
|
+
*/
|
|
19867
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: any): AxiosPromise<boolean>;
|
|
19641
19868
|
/**
|
|
19642
19869
|
*
|
|
19643
19870
|
* @summary Get all HospitalEquipments.
|
|
@@ -20175,6 +20402,16 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20175
20402
|
* @memberof HospitalsApi
|
|
20176
20403
|
*/
|
|
20177
20404
|
apiV1HospitalsHospitalIdEquipmentsEquipmentIdPut(hospitalId: string, equipmentId: string, updateHospitalEquipmentCommand?: UpdateHospitalEquipmentCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentModel>>;
|
|
20405
|
+
/**
|
|
20406
|
+
*
|
|
20407
|
+
* @summary Reactivate HospitalEquipment.
|
|
20408
|
+
* @param {string} hospitalId
|
|
20409
|
+
* @param {string} equipmentId
|
|
20410
|
+
* @param {*} [options] Override http request option.
|
|
20411
|
+
* @throws {RequiredError}
|
|
20412
|
+
* @memberof HospitalsApi
|
|
20413
|
+
*/
|
|
20414
|
+
apiV1HospitalsHospitalIdEquipmentsEquipmentIdReactivePut(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20178
20415
|
/**
|
|
20179
20416
|
*
|
|
20180
20417
|
* @summary Get all HospitalEquipments.
|
|
@@ -22278,6 +22515,434 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
22278
22515
|
*/
|
|
22279
22516
|
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
22280
22517
|
}
|
|
22518
|
+
/**
|
|
22519
|
+
* ServiceReviewApi - axios parameter creator
|
|
22520
|
+
* @export
|
|
22521
|
+
*/
|
|
22522
|
+
export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
22523
|
+
/**
|
|
22524
|
+
*
|
|
22525
|
+
* @summary Get all ServiceReviews.
|
|
22526
|
+
* @param {string} [serviceId]
|
|
22527
|
+
* @param {string} [serviceName]
|
|
22528
|
+
* @param {string} [patientId]
|
|
22529
|
+
* @param {string} [patientName]
|
|
22530
|
+
* @param {boolean} [recommended]
|
|
22531
|
+
* @param {number} [rate]
|
|
22532
|
+
* @param {number} [page]
|
|
22533
|
+
* @param {number} [limit]
|
|
22534
|
+
* @param {Date} [lastRetrieved]
|
|
22535
|
+
* @param {*} [options] Override http request option.
|
|
22536
|
+
* @throws {RequiredError}
|
|
22537
|
+
*/
|
|
22538
|
+
apiV1ServicereviewGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22539
|
+
/**
|
|
22540
|
+
*
|
|
22541
|
+
* @summary Create a ServiceReview.
|
|
22542
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
22543
|
+
* @param {*} [options] Override http request option.
|
|
22544
|
+
* @throws {RequiredError}
|
|
22545
|
+
*/
|
|
22546
|
+
apiV1ServicereviewPost: (createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22547
|
+
/**
|
|
22548
|
+
*
|
|
22549
|
+
* @summary Delete ServiceReview.
|
|
22550
|
+
* @param {string} serviceReviewId
|
|
22551
|
+
* @param {*} [options] Override http request option.
|
|
22552
|
+
* @throws {RequiredError}
|
|
22553
|
+
*/
|
|
22554
|
+
apiV1ServicereviewServiceReviewIdDelete: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22555
|
+
/**
|
|
22556
|
+
*
|
|
22557
|
+
* @param {string} serviceReviewId
|
|
22558
|
+
* @param {*} [options] Override http request option.
|
|
22559
|
+
* @throws {RequiredError}
|
|
22560
|
+
*/
|
|
22561
|
+
apiV1ServicereviewServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22562
|
+
/**
|
|
22563
|
+
*
|
|
22564
|
+
* @summary Get all ServiceReviewMedias.
|
|
22565
|
+
* @param {string} serviceReviewId
|
|
22566
|
+
* @param {string} [id]
|
|
22567
|
+
* @param {MediaType} [mediaType]
|
|
22568
|
+
* @param {number} [page]
|
|
22569
|
+
* @param {number} [limit]
|
|
22570
|
+
* @param {Date} [lastRetrieved]
|
|
22571
|
+
* @param {*} [options] Override http request option.
|
|
22572
|
+
* @throws {RequiredError}
|
|
22573
|
+
*/
|
|
22574
|
+
apiV1ServicereviewServiceReviewIdMediasGet: (serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22575
|
+
/**
|
|
22576
|
+
*
|
|
22577
|
+
* @summary Delete ServiceReviewMedia
|
|
22578
|
+
* @param {string} serviceReviewId
|
|
22579
|
+
* @param {string} mediaId
|
|
22580
|
+
* @param {*} [options] Override http request option.
|
|
22581
|
+
* @throws {RequiredError}
|
|
22582
|
+
*/
|
|
22583
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdDelete: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22584
|
+
/**
|
|
22585
|
+
*
|
|
22586
|
+
* @summary Get ServiceReviewMedia.
|
|
22587
|
+
* @param {string} serviceReviewId
|
|
22588
|
+
* @param {string} mediaId
|
|
22589
|
+
* @param {*} [options] Override http request option.
|
|
22590
|
+
* @throws {RequiredError}
|
|
22591
|
+
*/
|
|
22592
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdGet: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22593
|
+
/**
|
|
22594
|
+
*
|
|
22595
|
+
* @summary Update ServiceReviewMedia.
|
|
22596
|
+
* @param {string} serviceReviewId
|
|
22597
|
+
* @param {string} mediaId
|
|
22598
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
22599
|
+
* @param {*} [options] Override http request option.
|
|
22600
|
+
* @throws {RequiredError}
|
|
22601
|
+
*/
|
|
22602
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdPut: (serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22603
|
+
/**
|
|
22604
|
+
*
|
|
22605
|
+
* @summary Create ServiceReviewMedia.
|
|
22606
|
+
* @param {string} serviceReviewId
|
|
22607
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
22608
|
+
* @param {*} [options] Override http request option.
|
|
22609
|
+
* @throws {RequiredError}
|
|
22610
|
+
*/
|
|
22611
|
+
apiV1ServicereviewServiceReviewIdMediasPost: (serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22612
|
+
/**
|
|
22613
|
+
*
|
|
22614
|
+
* @summary Update ServiceReview.
|
|
22615
|
+
* @param {string} serviceReviewId
|
|
22616
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
22617
|
+
* @param {*} [options] Override http request option.
|
|
22618
|
+
* @throws {RequiredError}
|
|
22619
|
+
*/
|
|
22620
|
+
apiV1ServicereviewServiceReviewIdPut: (serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22621
|
+
};
|
|
22622
|
+
/**
|
|
22623
|
+
* ServiceReviewApi - functional programming interface
|
|
22624
|
+
* @export
|
|
22625
|
+
*/
|
|
22626
|
+
export declare const ServiceReviewApiFp: (configuration?: Configuration | undefined) => {
|
|
22627
|
+
/**
|
|
22628
|
+
*
|
|
22629
|
+
* @summary Get all ServiceReviews.
|
|
22630
|
+
* @param {string} [serviceId]
|
|
22631
|
+
* @param {string} [serviceName]
|
|
22632
|
+
* @param {string} [patientId]
|
|
22633
|
+
* @param {string} [patientName]
|
|
22634
|
+
* @param {boolean} [recommended]
|
|
22635
|
+
* @param {number} [rate]
|
|
22636
|
+
* @param {number} [page]
|
|
22637
|
+
* @param {number} [limit]
|
|
22638
|
+
* @param {Date} [lastRetrieved]
|
|
22639
|
+
* @param {*} [options] Override http request option.
|
|
22640
|
+
* @throws {RequiredError}
|
|
22641
|
+
*/
|
|
22642
|
+
apiV1ServicereviewGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
22643
|
+
/**
|
|
22644
|
+
*
|
|
22645
|
+
* @summary Create a ServiceReview.
|
|
22646
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
22647
|
+
* @param {*} [options] Override http request option.
|
|
22648
|
+
* @throws {RequiredError}
|
|
22649
|
+
*/
|
|
22650
|
+
apiV1ServicereviewPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22651
|
+
/**
|
|
22652
|
+
*
|
|
22653
|
+
* @summary Delete ServiceReview.
|
|
22654
|
+
* @param {string} serviceReviewId
|
|
22655
|
+
* @param {*} [options] Override http request option.
|
|
22656
|
+
* @throws {RequiredError}
|
|
22657
|
+
*/
|
|
22658
|
+
apiV1ServicereviewServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22659
|
+
/**
|
|
22660
|
+
*
|
|
22661
|
+
* @param {string} serviceReviewId
|
|
22662
|
+
* @param {*} [options] Override http request option.
|
|
22663
|
+
* @throws {RequiredError}
|
|
22664
|
+
*/
|
|
22665
|
+
apiV1ServicereviewServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22666
|
+
/**
|
|
22667
|
+
*
|
|
22668
|
+
* @summary Get all ServiceReviewMedias.
|
|
22669
|
+
* @param {string} serviceReviewId
|
|
22670
|
+
* @param {string} [id]
|
|
22671
|
+
* @param {MediaType} [mediaType]
|
|
22672
|
+
* @param {number} [page]
|
|
22673
|
+
* @param {number} [limit]
|
|
22674
|
+
* @param {Date} [lastRetrieved]
|
|
22675
|
+
* @param {*} [options] Override http request option.
|
|
22676
|
+
* @throws {RequiredError}
|
|
22677
|
+
*/
|
|
22678
|
+
apiV1ServicereviewServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
22679
|
+
/**
|
|
22680
|
+
*
|
|
22681
|
+
* @summary Delete ServiceReviewMedia
|
|
22682
|
+
* @param {string} serviceReviewId
|
|
22683
|
+
* @param {string} mediaId
|
|
22684
|
+
* @param {*} [options] Override http request option.
|
|
22685
|
+
* @throws {RequiredError}
|
|
22686
|
+
*/
|
|
22687
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22688
|
+
/**
|
|
22689
|
+
*
|
|
22690
|
+
* @summary Get ServiceReviewMedia.
|
|
22691
|
+
* @param {string} serviceReviewId
|
|
22692
|
+
* @param {string} mediaId
|
|
22693
|
+
* @param {*} [options] Override http request option.
|
|
22694
|
+
* @throws {RequiredError}
|
|
22695
|
+
*/
|
|
22696
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22697
|
+
/**
|
|
22698
|
+
*
|
|
22699
|
+
* @summary Update ServiceReviewMedia.
|
|
22700
|
+
* @param {string} serviceReviewId
|
|
22701
|
+
* @param {string} mediaId
|
|
22702
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
22703
|
+
* @param {*} [options] Override http request option.
|
|
22704
|
+
* @throws {RequiredError}
|
|
22705
|
+
*/
|
|
22706
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22707
|
+
/**
|
|
22708
|
+
*
|
|
22709
|
+
* @summary Create ServiceReviewMedia.
|
|
22710
|
+
* @param {string} serviceReviewId
|
|
22711
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
22712
|
+
* @param {*} [options] Override http request option.
|
|
22713
|
+
* @throws {RequiredError}
|
|
22714
|
+
*/
|
|
22715
|
+
apiV1ServicereviewServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22716
|
+
/**
|
|
22717
|
+
*
|
|
22718
|
+
* @summary Update ServiceReview.
|
|
22719
|
+
* @param {string} serviceReviewId
|
|
22720
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
22721
|
+
* @param {*} [options] Override http request option.
|
|
22722
|
+
* @throws {RequiredError}
|
|
22723
|
+
*/
|
|
22724
|
+
apiV1ServicereviewServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22725
|
+
};
|
|
22726
|
+
/**
|
|
22727
|
+
* ServiceReviewApi - factory interface
|
|
22728
|
+
* @export
|
|
22729
|
+
*/
|
|
22730
|
+
export declare const ServiceReviewApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
22731
|
+
/**
|
|
22732
|
+
*
|
|
22733
|
+
* @summary Get all ServiceReviews.
|
|
22734
|
+
* @param {string} [serviceId]
|
|
22735
|
+
* @param {string} [serviceName]
|
|
22736
|
+
* @param {string} [patientId]
|
|
22737
|
+
* @param {string} [patientName]
|
|
22738
|
+
* @param {boolean} [recommended]
|
|
22739
|
+
* @param {number} [rate]
|
|
22740
|
+
* @param {number} [page]
|
|
22741
|
+
* @param {number} [limit]
|
|
22742
|
+
* @param {Date} [lastRetrieved]
|
|
22743
|
+
* @param {*} [options] Override http request option.
|
|
22744
|
+
* @throws {RequiredError}
|
|
22745
|
+
*/
|
|
22746
|
+
apiV1ServicereviewGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
22747
|
+
/**
|
|
22748
|
+
*
|
|
22749
|
+
* @summary Create a ServiceReview.
|
|
22750
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
22751
|
+
* @param {*} [options] Override http request option.
|
|
22752
|
+
* @throws {RequiredError}
|
|
22753
|
+
*/
|
|
22754
|
+
apiV1ServicereviewPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
22755
|
+
/**
|
|
22756
|
+
*
|
|
22757
|
+
* @summary Delete ServiceReview.
|
|
22758
|
+
* @param {string} serviceReviewId
|
|
22759
|
+
* @param {*} [options] Override http request option.
|
|
22760
|
+
* @throws {RequiredError}
|
|
22761
|
+
*/
|
|
22762
|
+
apiV1ServicereviewServiceReviewIdDelete(serviceReviewId: string, options?: any): AxiosPromise<boolean>;
|
|
22763
|
+
/**
|
|
22764
|
+
*
|
|
22765
|
+
* @param {string} serviceReviewId
|
|
22766
|
+
* @param {*} [options] Override http request option.
|
|
22767
|
+
* @throws {RequiredError}
|
|
22768
|
+
*/
|
|
22769
|
+
apiV1ServicereviewServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
22770
|
+
/**
|
|
22771
|
+
*
|
|
22772
|
+
* @summary Get all ServiceReviewMedias.
|
|
22773
|
+
* @param {string} serviceReviewId
|
|
22774
|
+
* @param {string} [id]
|
|
22775
|
+
* @param {MediaType} [mediaType]
|
|
22776
|
+
* @param {number} [page]
|
|
22777
|
+
* @param {number} [limit]
|
|
22778
|
+
* @param {Date} [lastRetrieved]
|
|
22779
|
+
* @param {*} [options] Override http request option.
|
|
22780
|
+
* @throws {RequiredError}
|
|
22781
|
+
*/
|
|
22782
|
+
apiV1ServicereviewServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
22783
|
+
/**
|
|
22784
|
+
*
|
|
22785
|
+
* @summary Delete ServiceReviewMedia
|
|
22786
|
+
* @param {string} serviceReviewId
|
|
22787
|
+
* @param {string} mediaId
|
|
22788
|
+
* @param {*} [options] Override http request option.
|
|
22789
|
+
* @throws {RequiredError}
|
|
22790
|
+
*/
|
|
22791
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
22792
|
+
/**
|
|
22793
|
+
*
|
|
22794
|
+
* @summary Get ServiceReviewMedia.
|
|
22795
|
+
* @param {string} serviceReviewId
|
|
22796
|
+
* @param {string} mediaId
|
|
22797
|
+
* @param {*} [options] Override http request option.
|
|
22798
|
+
* @throws {RequiredError}
|
|
22799
|
+
*/
|
|
22800
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
22801
|
+
/**
|
|
22802
|
+
*
|
|
22803
|
+
* @summary Update ServiceReviewMedia.
|
|
22804
|
+
* @param {string} serviceReviewId
|
|
22805
|
+
* @param {string} mediaId
|
|
22806
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
22807
|
+
* @param {*} [options] Override http request option.
|
|
22808
|
+
* @throws {RequiredError}
|
|
22809
|
+
*/
|
|
22810
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
22811
|
+
/**
|
|
22812
|
+
*
|
|
22813
|
+
* @summary Create ServiceReviewMedia.
|
|
22814
|
+
* @param {string} serviceReviewId
|
|
22815
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
22816
|
+
* @param {*} [options] Override http request option.
|
|
22817
|
+
* @throws {RequiredError}
|
|
22818
|
+
*/
|
|
22819
|
+
apiV1ServicereviewServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
22820
|
+
/**
|
|
22821
|
+
*
|
|
22822
|
+
* @summary Update ServiceReview.
|
|
22823
|
+
* @param {string} serviceReviewId
|
|
22824
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
22825
|
+
* @param {*} [options] Override http request option.
|
|
22826
|
+
* @throws {RequiredError}
|
|
22827
|
+
*/
|
|
22828
|
+
apiV1ServicereviewServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
22829
|
+
};
|
|
22830
|
+
/**
|
|
22831
|
+
* ServiceReviewApi - object-oriented interface
|
|
22832
|
+
* @export
|
|
22833
|
+
* @class ServiceReviewApi
|
|
22834
|
+
* @extends {BaseAPI}
|
|
22835
|
+
*/
|
|
22836
|
+
export declare class ServiceReviewApi extends BaseAPI {
|
|
22837
|
+
/**
|
|
22838
|
+
*
|
|
22839
|
+
* @summary Get all ServiceReviews.
|
|
22840
|
+
* @param {string} [serviceId]
|
|
22841
|
+
* @param {string} [serviceName]
|
|
22842
|
+
* @param {string} [patientId]
|
|
22843
|
+
* @param {string} [patientName]
|
|
22844
|
+
* @param {boolean} [recommended]
|
|
22845
|
+
* @param {number} [rate]
|
|
22846
|
+
* @param {number} [page]
|
|
22847
|
+
* @param {number} [limit]
|
|
22848
|
+
* @param {Date} [lastRetrieved]
|
|
22849
|
+
* @param {*} [options] Override http request option.
|
|
22850
|
+
* @throws {RequiredError}
|
|
22851
|
+
* @memberof ServiceReviewApi
|
|
22852
|
+
*/
|
|
22853
|
+
apiV1ServicereviewGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
22854
|
+
/**
|
|
22855
|
+
*
|
|
22856
|
+
* @summary Create a ServiceReview.
|
|
22857
|
+
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
22858
|
+
* @param {*} [options] Override http request option.
|
|
22859
|
+
* @throws {RequiredError}
|
|
22860
|
+
* @memberof ServiceReviewApi
|
|
22861
|
+
*/
|
|
22862
|
+
apiV1ServicereviewPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
22863
|
+
/**
|
|
22864
|
+
*
|
|
22865
|
+
* @summary Delete ServiceReview.
|
|
22866
|
+
* @param {string} serviceReviewId
|
|
22867
|
+
* @param {*} [options] Override http request option.
|
|
22868
|
+
* @throws {RequiredError}
|
|
22869
|
+
* @memberof ServiceReviewApi
|
|
22870
|
+
*/
|
|
22871
|
+
apiV1ServicereviewServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
22872
|
+
/**
|
|
22873
|
+
*
|
|
22874
|
+
* @param {string} serviceReviewId
|
|
22875
|
+
* @param {*} [options] Override http request option.
|
|
22876
|
+
* @throws {RequiredError}
|
|
22877
|
+
* @memberof ServiceReviewApi
|
|
22878
|
+
*/
|
|
22879
|
+
apiV1ServicereviewServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
22880
|
+
/**
|
|
22881
|
+
*
|
|
22882
|
+
* @summary Get all ServiceReviewMedias.
|
|
22883
|
+
* @param {string} serviceReviewId
|
|
22884
|
+
* @param {string} [id]
|
|
22885
|
+
* @param {MediaType} [mediaType]
|
|
22886
|
+
* @param {number} [page]
|
|
22887
|
+
* @param {number} [limit]
|
|
22888
|
+
* @param {Date} [lastRetrieved]
|
|
22889
|
+
* @param {*} [options] Override http request option.
|
|
22890
|
+
* @throws {RequiredError}
|
|
22891
|
+
* @memberof ServiceReviewApi
|
|
22892
|
+
*/
|
|
22893
|
+
apiV1ServicereviewServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
22894
|
+
/**
|
|
22895
|
+
*
|
|
22896
|
+
* @summary Delete ServiceReviewMedia
|
|
22897
|
+
* @param {string} serviceReviewId
|
|
22898
|
+
* @param {string} mediaId
|
|
22899
|
+
* @param {*} [options] Override http request option.
|
|
22900
|
+
* @throws {RequiredError}
|
|
22901
|
+
* @memberof ServiceReviewApi
|
|
22902
|
+
*/
|
|
22903
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
22904
|
+
/**
|
|
22905
|
+
*
|
|
22906
|
+
* @summary Get ServiceReviewMedia.
|
|
22907
|
+
* @param {string} serviceReviewId
|
|
22908
|
+
* @param {string} mediaId
|
|
22909
|
+
* @param {*} [options] Override http request option.
|
|
22910
|
+
* @throws {RequiredError}
|
|
22911
|
+
* @memberof ServiceReviewApi
|
|
22912
|
+
*/
|
|
22913
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
22914
|
+
/**
|
|
22915
|
+
*
|
|
22916
|
+
* @summary Update ServiceReviewMedia.
|
|
22917
|
+
* @param {string} serviceReviewId
|
|
22918
|
+
* @param {string} mediaId
|
|
22919
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
22920
|
+
* @param {*} [options] Override http request option.
|
|
22921
|
+
* @throws {RequiredError}
|
|
22922
|
+
* @memberof ServiceReviewApi
|
|
22923
|
+
*/
|
|
22924
|
+
apiV1ServicereviewServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
22925
|
+
/**
|
|
22926
|
+
*
|
|
22927
|
+
* @summary Create ServiceReviewMedia.
|
|
22928
|
+
* @param {string} serviceReviewId
|
|
22929
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
22930
|
+
* @param {*} [options] Override http request option.
|
|
22931
|
+
* @throws {RequiredError}
|
|
22932
|
+
* @memberof ServiceReviewApi
|
|
22933
|
+
*/
|
|
22934
|
+
apiV1ServicereviewServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
22935
|
+
/**
|
|
22936
|
+
*
|
|
22937
|
+
* @summary Update ServiceReview.
|
|
22938
|
+
* @param {string} serviceReviewId
|
|
22939
|
+
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
22940
|
+
* @param {*} [options] Override http request option.
|
|
22941
|
+
* @throws {RequiredError}
|
|
22942
|
+
* @memberof ServiceReviewApi
|
|
22943
|
+
*/
|
|
22944
|
+
apiV1ServicereviewServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
22945
|
+
}
|
|
22281
22946
|
/**
|
|
22282
22947
|
* ServicesApi - axios parameter creator
|
|
22283
22948
|
* @export
|
|
@@ -22494,14 +23159,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
22494
23159
|
* @param {string} [id]
|
|
22495
23160
|
* @param {string} [name]
|
|
22496
23161
|
* @param {string} [description]
|
|
22497
|
-
* @param {string} [languageCode]
|
|
22498
23162
|
* @param {number} [page]
|
|
22499
23163
|
* @param {number} [limit]
|
|
22500
23164
|
* @param {Date} [lastRetrieved]
|
|
22501
23165
|
* @param {*} [options] Override http request option.
|
|
22502
23166
|
* @throws {RequiredError}
|
|
22503
23167
|
*/
|
|
22504
|
-
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
23168
|
+
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22505
23169
|
/**
|
|
22506
23170
|
*
|
|
22507
23171
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22521,11 +23185,10 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
22521
23185
|
*
|
|
22522
23186
|
* @summary Get ServiceCategory.
|
|
22523
23187
|
* @param {string} serviceCategoryId
|
|
22524
|
-
* @param {string} [languageCode]
|
|
22525
23188
|
* @param {*} [options] Override http request option.
|
|
22526
23189
|
* @throws {RequiredError}
|
|
22527
23190
|
*/
|
|
22528
|
-
apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string,
|
|
23191
|
+
apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22529
23192
|
/**
|
|
22530
23193
|
*
|
|
22531
23194
|
* @summary Update ServiceCategory
|
|
@@ -22547,14 +23210,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
22547
23210
|
* @param {string} [id]
|
|
22548
23211
|
* @param {string} [name]
|
|
22549
23212
|
* @param {string} [description]
|
|
22550
|
-
* @param {string} [languageCode]
|
|
22551
23213
|
* @param {number} [page]
|
|
22552
23214
|
* @param {number} [limit]
|
|
22553
23215
|
* @param {Date} [lastRetrieved]
|
|
22554
23216
|
* @param {*} [options] Override http request option.
|
|
22555
23217
|
* @throws {RequiredError}
|
|
22556
23218
|
*/
|
|
22557
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
23219
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
22558
23220
|
/**
|
|
22559
23221
|
*
|
|
22560
23222
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22574,11 +23236,10 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
22574
23236
|
*
|
|
22575
23237
|
* @summary Get ServiceCategory.
|
|
22576
23238
|
* @param {string} serviceCategoryId
|
|
22577
|
-
* @param {string} [languageCode]
|
|
22578
23239
|
* @param {*} [options] Override http request option.
|
|
22579
23240
|
* @throws {RequiredError}
|
|
22580
23241
|
*/
|
|
22581
|
-
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
23242
|
+
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
|
|
22582
23243
|
/**
|
|
22583
23244
|
*
|
|
22584
23245
|
* @summary Update ServiceCategory
|
|
@@ -22600,14 +23261,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
22600
23261
|
* @param {string} [id]
|
|
22601
23262
|
* @param {string} [name]
|
|
22602
23263
|
* @param {string} [description]
|
|
22603
|
-
* @param {string} [languageCode]
|
|
22604
23264
|
* @param {number} [page]
|
|
22605
23265
|
* @param {number} [limit]
|
|
22606
23266
|
* @param {Date} [lastRetrieved]
|
|
22607
23267
|
* @param {*} [options] Override http request option.
|
|
22608
23268
|
* @throws {RequiredError}
|
|
22609
23269
|
*/
|
|
22610
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined,
|
|
23270
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
22611
23271
|
/**
|
|
22612
23272
|
*
|
|
22613
23273
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22627,11 +23287,10 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
22627
23287
|
*
|
|
22628
23288
|
* @summary Get ServiceCategory.
|
|
22629
23289
|
* @param {string} serviceCategoryId
|
|
22630
|
-
* @param {string} [languageCode]
|
|
22631
23290
|
* @param {*} [options] Override http request option.
|
|
22632
23291
|
* @throws {RequiredError}
|
|
22633
23292
|
*/
|
|
22634
|
-
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
23293
|
+
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: any): AxiosPromise<ServiceCategoryModel>;
|
|
22635
23294
|
/**
|
|
22636
23295
|
*
|
|
22637
23296
|
* @summary Update ServiceCategory
|
|
@@ -22655,7 +23314,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22655
23314
|
* @param {string} [id]
|
|
22656
23315
|
* @param {string} [name]
|
|
22657
23316
|
* @param {string} [description]
|
|
22658
|
-
* @param {string} [languageCode]
|
|
22659
23317
|
* @param {number} [page]
|
|
22660
23318
|
* @param {number} [limit]
|
|
22661
23319
|
* @param {Date} [lastRetrieved]
|
|
@@ -22663,7 +23321,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22663
23321
|
* @throws {RequiredError}
|
|
22664
23322
|
* @memberof ServicesCategoriesApi
|
|
22665
23323
|
*/
|
|
22666
|
-
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string,
|
|
23324
|
+
apiV1ServicescategoriesGet(id?: string, name?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
22667
23325
|
/**
|
|
22668
23326
|
*
|
|
22669
23327
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22685,12 +23343,11 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22685
23343
|
*
|
|
22686
23344
|
* @summary Get ServiceCategory.
|
|
22687
23345
|
* @param {string} serviceCategoryId
|
|
22688
|
-
* @param {string} [languageCode]
|
|
22689
23346
|
* @param {*} [options] Override http request option.
|
|
22690
23347
|
* @throws {RequiredError}
|
|
22691
23348
|
* @memberof ServicesCategoriesApi
|
|
22692
23349
|
*/
|
|
22693
|
-
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
23350
|
+
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
|
|
22694
23351
|
/**
|
|
22695
23352
|
*
|
|
22696
23353
|
* @summary Update ServiceCategory
|