ch-admin-api-client-typescript 2.6.9 → 2.7.2
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 +73 -73
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +117 -117
- package/package.json +1 -1
- package/src/api.ts +126 -126
package/src/api.ts
CHANGED
|
@@ -3865,18 +3865,6 @@ export interface CreateHospitalEquipmentCommand {
|
|
|
3865
3865
|
* @memberof CreateHospitalEquipmentCommand
|
|
3866
3866
|
*/
|
|
3867
3867
|
'description'?: string | null;
|
|
3868
|
-
/**
|
|
3869
|
-
*
|
|
3870
|
-
* @type {Array<MediaModel>}
|
|
3871
|
-
* @memberof CreateHospitalEquipmentCommand
|
|
3872
|
-
*/
|
|
3873
|
-
'medias'?: Array<MediaModel> | null;
|
|
3874
|
-
/**
|
|
3875
|
-
*
|
|
3876
|
-
* @type {AuditableEntity}
|
|
3877
|
-
* @memberof CreateHospitalEquipmentCommand
|
|
3878
|
-
*/
|
|
3879
|
-
'auditableEntity'?: AuditableEntity;
|
|
3880
3868
|
}
|
|
3881
3869
|
/**
|
|
3882
3870
|
*
|
|
@@ -4345,6 +4333,12 @@ export interface CreateServiceReviewCommand {
|
|
|
4345
4333
|
* @memberof CreateServiceReviewCommand
|
|
4346
4334
|
*/
|
|
4347
4335
|
'rate'?: number;
|
|
4336
|
+
/**
|
|
4337
|
+
*
|
|
4338
|
+
* @type {ReviewType}
|
|
4339
|
+
* @memberof CreateServiceReviewCommand
|
|
4340
|
+
*/
|
|
4341
|
+
'reviewType'?: ReviewType;
|
|
4348
4342
|
}
|
|
4349
4343
|
/**
|
|
4350
4344
|
*
|
|
@@ -8308,6 +8302,12 @@ export interface NotificationModel {
|
|
|
8308
8302
|
* @memberof NotificationModel
|
|
8309
8303
|
*/
|
|
8310
8304
|
'isChecked'?: boolean;
|
|
8305
|
+
/**
|
|
8306
|
+
*
|
|
8307
|
+
* @type {boolean}
|
|
8308
|
+
* @memberof NotificationModel
|
|
8309
|
+
*/
|
|
8310
|
+
'isDeleted'?: boolean;
|
|
8311
8311
|
}
|
|
8312
8312
|
/**
|
|
8313
8313
|
*
|
|
@@ -9139,7 +9139,7 @@ export interface ServiceReviewItemModel {
|
|
|
9139
9139
|
* @type {string}
|
|
9140
9140
|
* @memberof ServiceReviewItemModel
|
|
9141
9141
|
*/
|
|
9142
|
-
'patientId'?: string;
|
|
9142
|
+
'patientId'?: string | null;
|
|
9143
9143
|
/**
|
|
9144
9144
|
*
|
|
9145
9145
|
* @type {string}
|
|
@@ -9206,7 +9206,7 @@ export interface ServiceReviewModel {
|
|
|
9206
9206
|
* @type {string}
|
|
9207
9207
|
* @memberof ServiceReviewModel
|
|
9208
9208
|
*/
|
|
9209
|
-
'patientId'?: string;
|
|
9209
|
+
'patientId'?: string | null;
|
|
9210
9210
|
/**
|
|
9211
9211
|
*
|
|
9212
9212
|
* @type {string}
|
|
@@ -34560,10 +34560,10 @@ export class ProfilesApi extends BaseAPI {
|
|
|
34560
34560
|
|
|
34561
34561
|
|
|
34562
34562
|
/**
|
|
34563
|
-
*
|
|
34563
|
+
* ServiceReviewsApi - axios parameter creator
|
|
34564
34564
|
* @export
|
|
34565
34565
|
*/
|
|
34566
|
-
export const
|
|
34566
|
+
export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
34567
34567
|
return {
|
|
34568
34568
|
/**
|
|
34569
34569
|
*
|
|
@@ -34581,8 +34581,8 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34581
34581
|
* @param {*} [options] Override http request option.
|
|
34582
34582
|
* @throws {RequiredError}
|
|
34583
34583
|
*/
|
|
34584
|
-
|
|
34585
|
-
const localVarPath = `/api/v1/
|
|
34584
|
+
apiV1ServicereviewsGet: async (serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34585
|
+
const localVarPath = `/api/v1/servicereviews`;
|
|
34586
34586
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
34587
34587
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
34588
34588
|
let baseOptions;
|
|
@@ -34658,8 +34658,8 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34658
34658
|
* @param {*} [options] Override http request option.
|
|
34659
34659
|
* @throws {RequiredError}
|
|
34660
34660
|
*/
|
|
34661
|
-
|
|
34662
|
-
const localVarPath = `/api/v1/
|
|
34661
|
+
apiV1ServicereviewsPost: async (createServiceReviewCommand?: CreateServiceReviewCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34662
|
+
const localVarPath = `/api/v1/servicereviews`;
|
|
34663
34663
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
34664
34664
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
34665
34665
|
let baseOptions;
|
|
@@ -34696,10 +34696,10 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34696
34696
|
* @param {*} [options] Override http request option.
|
|
34697
34697
|
* @throws {RequiredError}
|
|
34698
34698
|
*/
|
|
34699
|
-
|
|
34699
|
+
apiV1ServicereviewsServiceReviewIdDelete: async (serviceReviewId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34700
34700
|
// verify required parameter 'serviceReviewId' is not null or undefined
|
|
34701
|
-
assertParamExists('
|
|
34702
|
-
const localVarPath = `/api/v1/
|
|
34701
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdDelete', 'serviceReviewId', serviceReviewId)
|
|
34702
|
+
const localVarPath = `/api/v1/servicereviews/{serviceReviewId}`
|
|
34703
34703
|
.replace(`{${"serviceReviewId"}}`, encodeURIComponent(String(serviceReviewId)));
|
|
34704
34704
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
34705
34705
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -34733,10 +34733,10 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34733
34733
|
* @param {*} [options] Override http request option.
|
|
34734
34734
|
* @throws {RequiredError}
|
|
34735
34735
|
*/
|
|
34736
|
-
|
|
34736
|
+
apiV1ServicereviewsServiceReviewIdGet: async (serviceReviewId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34737
34737
|
// verify required parameter 'serviceReviewId' is not null or undefined
|
|
34738
|
-
assertParamExists('
|
|
34739
|
-
const localVarPath = `/api/v1/
|
|
34738
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdGet', 'serviceReviewId', serviceReviewId)
|
|
34739
|
+
const localVarPath = `/api/v1/servicereviews/{serviceReviewId}`
|
|
34740
34740
|
.replace(`{${"serviceReviewId"}}`, encodeURIComponent(String(serviceReviewId)));
|
|
34741
34741
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
34742
34742
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -34776,10 +34776,10 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34776
34776
|
* @param {*} [options] Override http request option.
|
|
34777
34777
|
* @throws {RequiredError}
|
|
34778
34778
|
*/
|
|
34779
|
-
|
|
34779
|
+
apiV1ServicereviewsServiceReviewIdMediasGet: async (serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34780
34780
|
// verify required parameter 'serviceReviewId' is not null or undefined
|
|
34781
|
-
assertParamExists('
|
|
34782
|
-
const localVarPath = `/api/v1/
|
|
34781
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdMediasGet', 'serviceReviewId', serviceReviewId)
|
|
34782
|
+
const localVarPath = `/api/v1/servicereviews/{serviceReviewId}/medias`
|
|
34783
34783
|
.replace(`{${"serviceReviewId"}}`, encodeURIComponent(String(serviceReviewId)));
|
|
34784
34784
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
34785
34785
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -34837,12 +34837,12 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34837
34837
|
* @param {*} [options] Override http request option.
|
|
34838
34838
|
* @throws {RequiredError}
|
|
34839
34839
|
*/
|
|
34840
|
-
|
|
34840
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete: async (serviceReviewId: string, mediaId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34841
34841
|
// verify required parameter 'serviceReviewId' is not null or undefined
|
|
34842
|
-
assertParamExists('
|
|
34842
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete', 'serviceReviewId', serviceReviewId)
|
|
34843
34843
|
// verify required parameter 'mediaId' is not null or undefined
|
|
34844
|
-
assertParamExists('
|
|
34845
|
-
const localVarPath = `/api/v1/
|
|
34844
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete', 'mediaId', mediaId)
|
|
34845
|
+
const localVarPath = `/api/v1/servicereviews/{serviceReviewId}/medias/{mediaId}`
|
|
34846
34846
|
.replace(`{${"serviceReviewId"}}`, encodeURIComponent(String(serviceReviewId)))
|
|
34847
34847
|
.replace(`{${"mediaId"}}`, encodeURIComponent(String(mediaId)));
|
|
34848
34848
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -34879,12 +34879,12 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34879
34879
|
* @param {*} [options] Override http request option.
|
|
34880
34880
|
* @throws {RequiredError}
|
|
34881
34881
|
*/
|
|
34882
|
-
|
|
34882
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet: async (serviceReviewId: string, mediaId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34883
34883
|
// verify required parameter 'serviceReviewId' is not null or undefined
|
|
34884
|
-
assertParamExists('
|
|
34884
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdMediasMediaIdGet', 'serviceReviewId', serviceReviewId)
|
|
34885
34885
|
// verify required parameter 'mediaId' is not null or undefined
|
|
34886
|
-
assertParamExists('
|
|
34887
|
-
const localVarPath = `/api/v1/
|
|
34886
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdMediasMediaIdGet', 'mediaId', mediaId)
|
|
34887
|
+
const localVarPath = `/api/v1/servicereviews/{serviceReviewId}/medias/{mediaId}`
|
|
34888
34888
|
.replace(`{${"serviceReviewId"}}`, encodeURIComponent(String(serviceReviewId)))
|
|
34889
34889
|
.replace(`{${"mediaId"}}`, encodeURIComponent(String(mediaId)));
|
|
34890
34890
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -34922,12 +34922,12 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34922
34922
|
* @param {*} [options] Override http request option.
|
|
34923
34923
|
* @throws {RequiredError}
|
|
34924
34924
|
*/
|
|
34925
|
-
|
|
34925
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut: async (serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34926
34926
|
// verify required parameter 'serviceReviewId' is not null or undefined
|
|
34927
|
-
assertParamExists('
|
|
34927
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdMediasMediaIdPut', 'serviceReviewId', serviceReviewId)
|
|
34928
34928
|
// verify required parameter 'mediaId' is not null or undefined
|
|
34929
|
-
assertParamExists('
|
|
34930
|
-
const localVarPath = `/api/v1/
|
|
34929
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdMediasMediaIdPut', 'mediaId', mediaId)
|
|
34930
|
+
const localVarPath = `/api/v1/servicereviews/{serviceReviewId}/medias/{mediaId}`
|
|
34931
34931
|
.replace(`{${"serviceReviewId"}}`, encodeURIComponent(String(serviceReviewId)))
|
|
34932
34932
|
.replace(`{${"mediaId"}}`, encodeURIComponent(String(mediaId)));
|
|
34933
34933
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -34967,10 +34967,10 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
34967
34967
|
* @param {*} [options] Override http request option.
|
|
34968
34968
|
* @throws {RequiredError}
|
|
34969
34969
|
*/
|
|
34970
|
-
|
|
34970
|
+
apiV1ServicereviewsServiceReviewIdMediasPost: async (serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
34971
34971
|
// verify required parameter 'serviceReviewId' is not null or undefined
|
|
34972
|
-
assertParamExists('
|
|
34973
|
-
const localVarPath = `/api/v1/
|
|
34972
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdMediasPost', 'serviceReviewId', serviceReviewId)
|
|
34973
|
+
const localVarPath = `/api/v1/servicereviews/{serviceReviewId}/medias`
|
|
34974
34974
|
.replace(`{${"serviceReviewId"}}`, encodeURIComponent(String(serviceReviewId)));
|
|
34975
34975
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
34976
34976
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -35009,10 +35009,10 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
35009
35009
|
* @param {*} [options] Override http request option.
|
|
35010
35010
|
* @throws {RequiredError}
|
|
35011
35011
|
*/
|
|
35012
|
-
|
|
35012
|
+
apiV1ServicereviewsServiceReviewIdPut: async (serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
35013
35013
|
// verify required parameter 'serviceReviewId' is not null or undefined
|
|
35014
|
-
assertParamExists('
|
|
35015
|
-
const localVarPath = `/api/v1/
|
|
35014
|
+
assertParamExists('apiV1ServicereviewsServiceReviewIdPut', 'serviceReviewId', serviceReviewId)
|
|
35015
|
+
const localVarPath = `/api/v1/servicereviews/{serviceReviewId}`
|
|
35016
35016
|
.replace(`{${"serviceReviewId"}}`, encodeURIComponent(String(serviceReviewId)));
|
|
35017
35017
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
35018
35018
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -35047,11 +35047,11 @@ export const ServiceReviewApiAxiosParamCreator = function (configuration?: Confi
|
|
|
35047
35047
|
};
|
|
35048
35048
|
|
|
35049
35049
|
/**
|
|
35050
|
-
*
|
|
35050
|
+
* ServiceReviewsApi - functional programming interface
|
|
35051
35051
|
* @export
|
|
35052
35052
|
*/
|
|
35053
|
-
export const
|
|
35054
|
-
const localVarAxiosParamCreator =
|
|
35053
|
+
export const ServiceReviewsApiFp = function(configuration?: Configuration) {
|
|
35054
|
+
const localVarAxiosParamCreator = ServiceReviewsApiAxiosParamCreator(configuration)
|
|
35055
35055
|
return {
|
|
35056
35056
|
/**
|
|
35057
35057
|
*
|
|
@@ -35069,8 +35069,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35069
35069
|
* @param {*} [options] Override http request option.
|
|
35070
35070
|
* @throws {RequiredError}
|
|
35071
35071
|
*/
|
|
35072
|
-
async
|
|
35073
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35072
|
+
async apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
|
|
35073
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, recommended, rate, reviewType, page, limit, lastRetrieved, options);
|
|
35074
35074
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35075
35075
|
},
|
|
35076
35076
|
/**
|
|
@@ -35080,8 +35080,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35080
35080
|
* @param {*} [options] Override http request option.
|
|
35081
35081
|
* @throws {RequiredError}
|
|
35082
35082
|
*/
|
|
35083
|
-
async
|
|
35084
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35083
|
+
async apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewModel>> {
|
|
35084
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsPost(createServiceReviewCommand, options);
|
|
35085
35085
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35086
35086
|
},
|
|
35087
35087
|
/**
|
|
@@ -35091,8 +35091,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35091
35091
|
* @param {*} [options] Override http request option.
|
|
35092
35092
|
* @throws {RequiredError}
|
|
35093
35093
|
*/
|
|
35094
|
-
async
|
|
35095
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35094
|
+
async apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
35095
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId, options);
|
|
35096
35096
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35097
35097
|
},
|
|
35098
35098
|
/**
|
|
@@ -35101,8 +35101,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35101
35101
|
* @param {*} [options] Override http request option.
|
|
35102
35102
|
* @throws {RequiredError}
|
|
35103
35103
|
*/
|
|
35104
|
-
async
|
|
35105
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35104
|
+
async apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewModel>> {
|
|
35105
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsServiceReviewIdGet(serviceReviewId, options);
|
|
35106
35106
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35107
35107
|
},
|
|
35108
35108
|
/**
|
|
@@ -35117,8 +35117,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35117
35117
|
* @param {*} [options] Override http request option.
|
|
35118
35118
|
* @throws {RequiredError}
|
|
35119
35119
|
*/
|
|
35120
|
-
async
|
|
35121
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35120
|
+
async apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediasModel>> {
|
|
35121
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId, id, mediaType, page, limit, lastRetrieved, options);
|
|
35122
35122
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35123
35123
|
},
|
|
35124
35124
|
/**
|
|
@@ -35129,8 +35129,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35129
35129
|
* @param {*} [options] Override http request option.
|
|
35130
35130
|
* @throws {RequiredError}
|
|
35131
35131
|
*/
|
|
35132
|
-
async
|
|
35133
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35132
|
+
async apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
35133
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId, mediaId, options);
|
|
35134
35134
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35135
35135
|
},
|
|
35136
35136
|
/**
|
|
@@ -35141,8 +35141,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35141
35141
|
* @param {*} [options] Override http request option.
|
|
35142
35142
|
* @throws {RequiredError}
|
|
35143
35143
|
*/
|
|
35144
|
-
async
|
|
35145
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35144
|
+
async apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>> {
|
|
35145
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId, mediaId, options);
|
|
35146
35146
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35147
35147
|
},
|
|
35148
35148
|
/**
|
|
@@ -35154,8 +35154,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35154
35154
|
* @param {*} [options] Override http request option.
|
|
35155
35155
|
* @throws {RequiredError}
|
|
35156
35156
|
*/
|
|
35157
|
-
async
|
|
35158
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35157
|
+
async apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>> {
|
|
35158
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId, mediaId, updateMediaCommand, options);
|
|
35159
35159
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35160
35160
|
},
|
|
35161
35161
|
/**
|
|
@@ -35166,8 +35166,8 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35166
35166
|
* @param {*} [options] Override http request option.
|
|
35167
35167
|
* @throws {RequiredError}
|
|
35168
35168
|
*/
|
|
35169
|
-
async
|
|
35170
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35169
|
+
async apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MediaModel>> {
|
|
35170
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId, createMediaCommand, options);
|
|
35171
35171
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35172
35172
|
},
|
|
35173
35173
|
/**
|
|
@@ -35178,19 +35178,19 @@ export const ServiceReviewApiFp = function(configuration?: Configuration) {
|
|
|
35178
35178
|
* @param {*} [options] Override http request option.
|
|
35179
35179
|
* @throws {RequiredError}
|
|
35180
35180
|
*/
|
|
35181
|
-
async
|
|
35182
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
35181
|
+
async apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewModel>> {
|
|
35182
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsServiceReviewIdPut(serviceReviewId, updateServiceReviewCommand, options);
|
|
35183
35183
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
35184
35184
|
},
|
|
35185
35185
|
}
|
|
35186
35186
|
};
|
|
35187
35187
|
|
|
35188
35188
|
/**
|
|
35189
|
-
*
|
|
35189
|
+
* ServiceReviewsApi - factory interface
|
|
35190
35190
|
* @export
|
|
35191
35191
|
*/
|
|
35192
|
-
export const
|
|
35193
|
-
const localVarFp =
|
|
35192
|
+
export const ServiceReviewsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
35193
|
+
const localVarFp = ServiceReviewsApiFp(configuration)
|
|
35194
35194
|
return {
|
|
35195
35195
|
/**
|
|
35196
35196
|
*
|
|
@@ -35208,8 +35208,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35208
35208
|
* @param {*} [options] Override http request option.
|
|
35209
35209
|
* @throws {RequiredError}
|
|
35210
35210
|
*/
|
|
35211
|
-
|
|
35212
|
-
return localVarFp.
|
|
35211
|
+
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
|
|
35212
|
+
return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, recommended, rate, reviewType, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
35213
35213
|
},
|
|
35214
35214
|
/**
|
|
35215
35215
|
*
|
|
@@ -35218,8 +35218,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35218
35218
|
* @param {*} [options] Override http request option.
|
|
35219
35219
|
* @throws {RequiredError}
|
|
35220
35220
|
*/
|
|
35221
|
-
|
|
35222
|
-
return localVarFp.
|
|
35221
|
+
apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: any): AxiosPromise<ServiceReviewModel> {
|
|
35222
|
+
return localVarFp.apiV1ServicereviewsPost(createServiceReviewCommand, options).then((request) => request(axios, basePath));
|
|
35223
35223
|
},
|
|
35224
35224
|
/**
|
|
35225
35225
|
*
|
|
@@ -35228,8 +35228,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35228
35228
|
* @param {*} [options] Override http request option.
|
|
35229
35229
|
* @throws {RequiredError}
|
|
35230
35230
|
*/
|
|
35231
|
-
|
|
35232
|
-
return localVarFp.
|
|
35231
|
+
apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: any): AxiosPromise<boolean> {
|
|
35232
|
+
return localVarFp.apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId, options).then((request) => request(axios, basePath));
|
|
35233
35233
|
},
|
|
35234
35234
|
/**
|
|
35235
35235
|
*
|
|
@@ -35237,8 +35237,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35237
35237
|
* @param {*} [options] Override http request option.
|
|
35238
35238
|
* @throws {RequiredError}
|
|
35239
35239
|
*/
|
|
35240
|
-
|
|
35241
|
-
return localVarFp.
|
|
35240
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel> {
|
|
35241
|
+
return localVarFp.apiV1ServicereviewsServiceReviewIdGet(serviceReviewId, options).then((request) => request(axios, basePath));
|
|
35242
35242
|
},
|
|
35243
35243
|
/**
|
|
35244
35244
|
*
|
|
@@ -35252,8 +35252,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35252
35252
|
* @param {*} [options] Override http request option.
|
|
35253
35253
|
* @throws {RequiredError}
|
|
35254
35254
|
*/
|
|
35255
|
-
|
|
35256
|
-
return localVarFp.
|
|
35255
|
+
apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<MediasModel> {
|
|
35256
|
+
return localVarFp.apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId, id, mediaType, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
35257
35257
|
},
|
|
35258
35258
|
/**
|
|
35259
35259
|
*
|
|
@@ -35263,8 +35263,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35263
35263
|
* @param {*} [options] Override http request option.
|
|
35264
35264
|
* @throws {RequiredError}
|
|
35265
35265
|
*/
|
|
35266
|
-
|
|
35267
|
-
return localVarFp.
|
|
35266
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<boolean> {
|
|
35267
|
+
return localVarFp.apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId, mediaId, options).then((request) => request(axios, basePath));
|
|
35268
35268
|
},
|
|
35269
35269
|
/**
|
|
35270
35270
|
*
|
|
@@ -35274,8 +35274,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35274
35274
|
* @param {*} [options] Override http request option.
|
|
35275
35275
|
* @throws {RequiredError}
|
|
35276
35276
|
*/
|
|
35277
|
-
|
|
35278
|
-
return localVarFp.
|
|
35277
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<MediaModel> {
|
|
35278
|
+
return localVarFp.apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId, mediaId, options).then((request) => request(axios, basePath));
|
|
35279
35279
|
},
|
|
35280
35280
|
/**
|
|
35281
35281
|
*
|
|
@@ -35286,8 +35286,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35286
35286
|
* @param {*} [options] Override http request option.
|
|
35287
35287
|
* @throws {RequiredError}
|
|
35288
35288
|
*/
|
|
35289
|
-
|
|
35290
|
-
return localVarFp.
|
|
35289
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: any): AxiosPromise<MediaModel> {
|
|
35290
|
+
return localVarFp.apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId, mediaId, updateMediaCommand, options).then((request) => request(axios, basePath));
|
|
35291
35291
|
},
|
|
35292
35292
|
/**
|
|
35293
35293
|
*
|
|
@@ -35297,8 +35297,8 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35297
35297
|
* @param {*} [options] Override http request option.
|
|
35298
35298
|
* @throws {RequiredError}
|
|
35299
35299
|
*/
|
|
35300
|
-
|
|
35301
|
-
return localVarFp.
|
|
35300
|
+
apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel> {
|
|
35301
|
+
return localVarFp.apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId, createMediaCommand, options).then((request) => request(axios, basePath));
|
|
35302
35302
|
},
|
|
35303
35303
|
/**
|
|
35304
35304
|
*
|
|
@@ -35308,19 +35308,19 @@ export const ServiceReviewApiFactory = function (configuration?: Configuration,
|
|
|
35308
35308
|
* @param {*} [options] Override http request option.
|
|
35309
35309
|
* @throws {RequiredError}
|
|
35310
35310
|
*/
|
|
35311
|
-
|
|
35312
|
-
return localVarFp.
|
|
35311
|
+
apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: any): AxiosPromise<ServiceReviewModel> {
|
|
35312
|
+
return localVarFp.apiV1ServicereviewsServiceReviewIdPut(serviceReviewId, updateServiceReviewCommand, options).then((request) => request(axios, basePath));
|
|
35313
35313
|
},
|
|
35314
35314
|
};
|
|
35315
35315
|
};
|
|
35316
35316
|
|
|
35317
35317
|
/**
|
|
35318
|
-
*
|
|
35318
|
+
* ServiceReviewsApi - object-oriented interface
|
|
35319
35319
|
* @export
|
|
35320
|
-
* @class
|
|
35320
|
+
* @class ServiceReviewsApi
|
|
35321
35321
|
* @extends {BaseAPI}
|
|
35322
35322
|
*/
|
|
35323
|
-
export class
|
|
35323
|
+
export class ServiceReviewsApi extends BaseAPI {
|
|
35324
35324
|
/**
|
|
35325
35325
|
*
|
|
35326
35326
|
* @summary Get all ServiceReviews.
|
|
@@ -35336,10 +35336,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35336
35336
|
* @param {Date} [lastRetrieved]
|
|
35337
35337
|
* @param {*} [options] Override http request option.
|
|
35338
35338
|
* @throws {RequiredError}
|
|
35339
|
-
* @memberof
|
|
35339
|
+
* @memberof ServiceReviewsApi
|
|
35340
35340
|
*/
|
|
35341
|
-
public
|
|
35342
|
-
return
|
|
35341
|
+
public apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
35342
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, recommended, rate, reviewType, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
35343
35343
|
}
|
|
35344
35344
|
|
|
35345
35345
|
/**
|
|
@@ -35348,10 +35348,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35348
35348
|
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
35349
35349
|
* @param {*} [options] Override http request option.
|
|
35350
35350
|
* @throws {RequiredError}
|
|
35351
|
-
* @memberof
|
|
35351
|
+
* @memberof ServiceReviewsApi
|
|
35352
35352
|
*/
|
|
35353
|
-
public
|
|
35354
|
-
return
|
|
35353
|
+
public apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig) {
|
|
35354
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsPost(createServiceReviewCommand, options).then((request) => request(this.axios, this.basePath));
|
|
35355
35355
|
}
|
|
35356
35356
|
|
|
35357
35357
|
/**
|
|
@@ -35360,10 +35360,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35360
35360
|
* @param {string} serviceReviewId
|
|
35361
35361
|
* @param {*} [options] Override http request option.
|
|
35362
35362
|
* @throws {RequiredError}
|
|
35363
|
-
* @memberof
|
|
35363
|
+
* @memberof ServiceReviewsApi
|
|
35364
35364
|
*/
|
|
35365
|
-
public
|
|
35366
|
-
return
|
|
35365
|
+
public apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig) {
|
|
35366
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId, options).then((request) => request(this.axios, this.basePath));
|
|
35367
35367
|
}
|
|
35368
35368
|
|
|
35369
35369
|
/**
|
|
@@ -35371,10 +35371,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35371
35371
|
* @param {string} serviceReviewId
|
|
35372
35372
|
* @param {*} [options] Override http request option.
|
|
35373
35373
|
* @throws {RequiredError}
|
|
35374
|
-
* @memberof
|
|
35374
|
+
* @memberof ServiceReviewsApi
|
|
35375
35375
|
*/
|
|
35376
|
-
public
|
|
35377
|
-
return
|
|
35376
|
+
public apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig) {
|
|
35377
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsServiceReviewIdGet(serviceReviewId, options).then((request) => request(this.axios, this.basePath));
|
|
35378
35378
|
}
|
|
35379
35379
|
|
|
35380
35380
|
/**
|
|
@@ -35388,10 +35388,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35388
35388
|
* @param {Date} [lastRetrieved]
|
|
35389
35389
|
* @param {*} [options] Override http request option.
|
|
35390
35390
|
* @throws {RequiredError}
|
|
35391
|
-
* @memberof
|
|
35391
|
+
* @memberof ServiceReviewsApi
|
|
35392
35392
|
*/
|
|
35393
|
-
public
|
|
35394
|
-
return
|
|
35393
|
+
public apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
35394
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId, id, mediaType, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
35395
35395
|
}
|
|
35396
35396
|
|
|
35397
35397
|
/**
|
|
@@ -35401,10 +35401,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35401
35401
|
* @param {string} mediaId
|
|
35402
35402
|
* @param {*} [options] Override http request option.
|
|
35403
35403
|
* @throws {RequiredError}
|
|
35404
|
-
* @memberof
|
|
35404
|
+
* @memberof ServiceReviewsApi
|
|
35405
35405
|
*/
|
|
35406
|
-
public
|
|
35407
|
-
return
|
|
35406
|
+
public apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) {
|
|
35407
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId, mediaId, options).then((request) => request(this.axios, this.basePath));
|
|
35408
35408
|
}
|
|
35409
35409
|
|
|
35410
35410
|
/**
|
|
@@ -35414,10 +35414,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35414
35414
|
* @param {string} mediaId
|
|
35415
35415
|
* @param {*} [options] Override http request option.
|
|
35416
35416
|
* @throws {RequiredError}
|
|
35417
|
-
* @memberof
|
|
35417
|
+
* @memberof ServiceReviewsApi
|
|
35418
35418
|
*/
|
|
35419
|
-
public
|
|
35420
|
-
return
|
|
35419
|
+
public apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) {
|
|
35420
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId, mediaId, options).then((request) => request(this.axios, this.basePath));
|
|
35421
35421
|
}
|
|
35422
35422
|
|
|
35423
35423
|
/**
|
|
@@ -35428,10 +35428,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35428
35428
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
35429
35429
|
* @param {*} [options] Override http request option.
|
|
35430
35430
|
* @throws {RequiredError}
|
|
35431
|
-
* @memberof
|
|
35431
|
+
* @memberof ServiceReviewsApi
|
|
35432
35432
|
*/
|
|
35433
|
-
public
|
|
35434
|
-
return
|
|
35433
|
+
public apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig) {
|
|
35434
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId, mediaId, updateMediaCommand, options).then((request) => request(this.axios, this.basePath));
|
|
35435
35435
|
}
|
|
35436
35436
|
|
|
35437
35437
|
/**
|
|
@@ -35441,10 +35441,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35441
35441
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
35442
35442
|
* @param {*} [options] Override http request option.
|
|
35443
35443
|
* @throws {RequiredError}
|
|
35444
|
-
* @memberof
|
|
35444
|
+
* @memberof ServiceReviewsApi
|
|
35445
35445
|
*/
|
|
35446
|
-
public
|
|
35447
|
-
return
|
|
35446
|
+
public apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig) {
|
|
35447
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId, createMediaCommand, options).then((request) => request(this.axios, this.basePath));
|
|
35448
35448
|
}
|
|
35449
35449
|
|
|
35450
35450
|
/**
|
|
@@ -35454,10 +35454,10 @@ export class ServiceReviewApi extends BaseAPI {
|
|
|
35454
35454
|
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
35455
35455
|
* @param {*} [options] Override http request option.
|
|
35456
35456
|
* @throws {RequiredError}
|
|
35457
|
-
* @memberof
|
|
35457
|
+
* @memberof ServiceReviewsApi
|
|
35458
35458
|
*/
|
|
35459
|
-
public
|
|
35460
|
-
return
|
|
35459
|
+
public apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig) {
|
|
35460
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsServiceReviewIdPut(serviceReviewId, updateServiceReviewCommand, options).then((request) => request(this.axios, this.basePath));
|
|
35461
35461
|
}
|
|
35462
35462
|
}
|
|
35463
35463
|
|