ch-admin-api-client-typescript 2.6.3 → 2.6.8
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 +689 -48
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1279 -185
- package/package.json +1 -1
- package/src/api.ts +1220 -83
package/lib/api.d.ts
CHANGED
|
@@ -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,18 +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
|
|
8997
9038
|
*/
|
|
8998
|
-
'
|
|
9039
|
+
'id'?: string;
|
|
8999
9040
|
/**
|
|
9000
9041
|
*
|
|
9001
9042
|
* @type {string}
|
|
9002
|
-
* @memberof
|
|
9043
|
+
* @memberof ServiceReviewItemModel
|
|
9003
9044
|
*/
|
|
9004
|
-
'
|
|
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
|
|
9166
|
+
*/
|
|
9167
|
+
'metaData'?: PagedListMetaData;
|
|
9005
9168
|
}
|
|
9006
9169
|
/**
|
|
9007
9170
|
*
|
|
@@ -11162,6 +11325,31 @@ export interface UpdateServiceCategoryCommand {
|
|
|
11162
11325
|
*/
|
|
11163
11326
|
'order'?: number;
|
|
11164
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
|
+
}
|
|
11165
11353
|
/**
|
|
11166
11354
|
*
|
|
11167
11355
|
* @export
|
|
@@ -14773,7 +14961,7 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14773
14961
|
* @param {*} [options] Override http request option.
|
|
14774
14962
|
* @throws {RequiredError}
|
|
14775
14963
|
*/
|
|
14776
|
-
|
|
14964
|
+
apiV1CountriesCountryIdReactivePut: (countryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14777
14965
|
/**
|
|
14778
14966
|
*
|
|
14779
14967
|
* @summary Get all countries.
|
|
@@ -14898,7 +15086,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14898
15086
|
* @param {*} [options] Override http request option.
|
|
14899
15087
|
* @throws {RequiredError}
|
|
14900
15088
|
*/
|
|
14901
|
-
|
|
15089
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14902
15090
|
/**
|
|
14903
15091
|
*
|
|
14904
15092
|
* @summary Get all countries.
|
|
@@ -15023,7 +15211,7 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
15023
15211
|
* @param {*} [options] Override http request option.
|
|
15024
15212
|
* @throws {RequiredError}
|
|
15025
15213
|
*/
|
|
15026
|
-
|
|
15214
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: any): AxiosPromise<boolean>;
|
|
15027
15215
|
/**
|
|
15028
15216
|
*
|
|
15029
15217
|
* @summary Get all countries.
|
|
@@ -15159,7 +15347,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15159
15347
|
* @throws {RequiredError}
|
|
15160
15348
|
* @memberof CountriesApi
|
|
15161
15349
|
*/
|
|
15162
|
-
|
|
15350
|
+
apiV1CountriesCountryIdReactivePut(countryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15163
15351
|
/**
|
|
15164
15352
|
*
|
|
15165
15353
|
* @summary Get all countries.
|
|
@@ -18608,6 +18796,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18608
18796
|
* @throws {RequiredError}
|
|
18609
18797
|
*/
|
|
18610
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>;
|
|
18611
18808
|
/**
|
|
18612
18809
|
*
|
|
18613
18810
|
* @summary Get all HospitalEquipments.
|
|
@@ -19129,6 +19326,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19129
19326
|
* @throws {RequiredError}
|
|
19130
19327
|
*/
|
|
19131
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>>;
|
|
19132
19338
|
/**
|
|
19133
19339
|
*
|
|
19134
19340
|
* @summary Get all HospitalEquipments.
|
|
@@ -19650,6 +19856,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19650
19856
|
* @throws {RequiredError}
|
|
19651
19857
|
*/
|
|
19652
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>;
|
|
19653
19868
|
/**
|
|
19654
19869
|
*
|
|
19655
19870
|
* @summary Get all HospitalEquipments.
|
|
@@ -20187,6 +20402,16 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20187
20402
|
* @memberof HospitalsApi
|
|
20188
20403
|
*/
|
|
20189
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>>;
|
|
20190
20415
|
/**
|
|
20191
20416
|
*
|
|
20192
20417
|
* @summary Get all HospitalEquipments.
|
|
@@ -22290,6 +22515,434 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
22290
22515
|
*/
|
|
22291
22516
|
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
22292
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
|
+
}
|
|
22293
22946
|
/**
|
|
22294
22947
|
* ServicesApi - axios parameter creator
|
|
22295
22948
|
* @export
|
|
@@ -22506,15 +23159,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
22506
23159
|
* @param {string} [id]
|
|
22507
23160
|
* @param {string} [name]
|
|
22508
23161
|
* @param {string} [description]
|
|
22509
|
-
* @param {string} [languageCode]
|
|
22510
|
-
* @param {boolean} [returnDefaultValue]
|
|
22511
23162
|
* @param {number} [page]
|
|
22512
23163
|
* @param {number} [limit]
|
|
22513
23164
|
* @param {Date} [lastRetrieved]
|
|
22514
23165
|
* @param {*} [options] Override http request option.
|
|
22515
23166
|
* @throws {RequiredError}
|
|
22516
23167
|
*/
|
|
22517
|
-
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>;
|
|
22518
23169
|
/**
|
|
22519
23170
|
*
|
|
22520
23171
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22534,11 +23185,10 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
22534
23185
|
*
|
|
22535
23186
|
* @summary Get ServiceCategory.
|
|
22536
23187
|
* @param {string} serviceCategoryId
|
|
22537
|
-
* @param {string} [languageCode]
|
|
22538
23188
|
* @param {*} [options] Override http request option.
|
|
22539
23189
|
* @throws {RequiredError}
|
|
22540
23190
|
*/
|
|
22541
|
-
apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string,
|
|
23191
|
+
apiV1ServicescategoriesServiceCategoryIdGet: (serviceCategoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22542
23192
|
/**
|
|
22543
23193
|
*
|
|
22544
23194
|
* @summary Update ServiceCategory
|
|
@@ -22560,15 +23210,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
22560
23210
|
* @param {string} [id]
|
|
22561
23211
|
* @param {string} [name]
|
|
22562
23212
|
* @param {string} [description]
|
|
22563
|
-
* @param {string} [languageCode]
|
|
22564
|
-
* @param {boolean} [returnDefaultValue]
|
|
22565
23213
|
* @param {number} [page]
|
|
22566
23214
|
* @param {number} [limit]
|
|
22567
23215
|
* @param {Date} [lastRetrieved]
|
|
22568
23216
|
* @param {*} [options] Override http request option.
|
|
22569
23217
|
* @throws {RequiredError}
|
|
22570
23218
|
*/
|
|
22571
|
-
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>>;
|
|
22572
23220
|
/**
|
|
22573
23221
|
*
|
|
22574
23222
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22588,11 +23236,10 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
22588
23236
|
*
|
|
22589
23237
|
* @summary Get ServiceCategory.
|
|
22590
23238
|
* @param {string} serviceCategoryId
|
|
22591
|
-
* @param {string} [languageCode]
|
|
22592
23239
|
* @param {*} [options] Override http request option.
|
|
22593
23240
|
* @throws {RequiredError}
|
|
22594
23241
|
*/
|
|
22595
|
-
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
23242
|
+
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
|
|
22596
23243
|
/**
|
|
22597
23244
|
*
|
|
22598
23245
|
* @summary Update ServiceCategory
|
|
@@ -22614,15 +23261,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
22614
23261
|
* @param {string} [id]
|
|
22615
23262
|
* @param {string} [name]
|
|
22616
23263
|
* @param {string} [description]
|
|
22617
|
-
* @param {string} [languageCode]
|
|
22618
|
-
* @param {boolean} [returnDefaultValue]
|
|
22619
23264
|
* @param {number} [page]
|
|
22620
23265
|
* @param {number} [limit]
|
|
22621
23266
|
* @param {Date} [lastRetrieved]
|
|
22622
23267
|
* @param {*} [options] Override http request option.
|
|
22623
23268
|
* @throws {RequiredError}
|
|
22624
23269
|
*/
|
|
22625
|
-
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>;
|
|
22626
23271
|
/**
|
|
22627
23272
|
*
|
|
22628
23273
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22642,11 +23287,10 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
22642
23287
|
*
|
|
22643
23288
|
* @summary Get ServiceCategory.
|
|
22644
23289
|
* @param {string} serviceCategoryId
|
|
22645
|
-
* @param {string} [languageCode]
|
|
22646
23290
|
* @param {*} [options] Override http request option.
|
|
22647
23291
|
* @throws {RequiredError}
|
|
22648
23292
|
*/
|
|
22649
|
-
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
23293
|
+
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: any): AxiosPromise<ServiceCategoryModel>;
|
|
22650
23294
|
/**
|
|
22651
23295
|
*
|
|
22652
23296
|
* @summary Update ServiceCategory
|
|
@@ -22670,8 +23314,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22670
23314
|
* @param {string} [id]
|
|
22671
23315
|
* @param {string} [name]
|
|
22672
23316
|
* @param {string} [description]
|
|
22673
|
-
* @param {string} [languageCode]
|
|
22674
|
-
* @param {boolean} [returnDefaultValue]
|
|
22675
23317
|
* @param {number} [page]
|
|
22676
23318
|
* @param {number} [limit]
|
|
22677
23319
|
* @param {Date} [lastRetrieved]
|
|
@@ -22679,7 +23321,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22679
23321
|
* @throws {RequiredError}
|
|
22680
23322
|
* @memberof ServicesCategoriesApi
|
|
22681
23323
|
*/
|
|
22682
|
-
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>>;
|
|
22683
23325
|
/**
|
|
22684
23326
|
*
|
|
22685
23327
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -22701,12 +23343,11 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
22701
23343
|
*
|
|
22702
23344
|
* @summary Get ServiceCategory.
|
|
22703
23345
|
* @param {string} serviceCategoryId
|
|
22704
|
-
* @param {string} [languageCode]
|
|
22705
23346
|
* @param {*} [options] Override http request option.
|
|
22706
23347
|
* @throws {RequiredError}
|
|
22707
23348
|
* @memberof ServicesCategoriesApi
|
|
22708
23349
|
*/
|
|
22709
|
-
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string,
|
|
23350
|
+
apiV1ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
|
|
22710
23351
|
/**
|
|
22711
23352
|
*
|
|
22712
23353
|
* @summary Update ServiceCategory
|