ch-admin-api-client-typescript 2.7.1 → 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 +67 -73
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +117 -117
- package/package.json +1 -1
- package/src/api.ts +120 -126
package/lib/api.d.ts
CHANGED
|
@@ -3846,18 +3846,6 @@ export interface CreateHospitalEquipmentCommand {
|
|
|
3846
3846
|
* @memberof CreateHospitalEquipmentCommand
|
|
3847
3847
|
*/
|
|
3848
3848
|
'description'?: string | null;
|
|
3849
|
-
/**
|
|
3850
|
-
*
|
|
3851
|
-
* @type {Array<MediaModel>}
|
|
3852
|
-
* @memberof CreateHospitalEquipmentCommand
|
|
3853
|
-
*/
|
|
3854
|
-
'medias'?: Array<MediaModel> | null;
|
|
3855
|
-
/**
|
|
3856
|
-
*
|
|
3857
|
-
* @type {AuditableEntity}
|
|
3858
|
-
* @memberof CreateHospitalEquipmentCommand
|
|
3859
|
-
*/
|
|
3860
|
-
'auditableEntity'?: AuditableEntity;
|
|
3861
3849
|
}
|
|
3862
3850
|
/**
|
|
3863
3851
|
*
|
|
@@ -4326,6 +4314,12 @@ export interface CreateServiceReviewCommand {
|
|
|
4326
4314
|
* @memberof CreateServiceReviewCommand
|
|
4327
4315
|
*/
|
|
4328
4316
|
'rate'?: number;
|
|
4317
|
+
/**
|
|
4318
|
+
*
|
|
4319
|
+
* @type {ReviewType}
|
|
4320
|
+
* @memberof CreateServiceReviewCommand
|
|
4321
|
+
*/
|
|
4322
|
+
'reviewType'?: ReviewType;
|
|
4329
4323
|
}
|
|
4330
4324
|
/**
|
|
4331
4325
|
*
|
|
@@ -9107,7 +9101,7 @@ export interface ServiceReviewItemModel {
|
|
|
9107
9101
|
* @type {string}
|
|
9108
9102
|
* @memberof ServiceReviewItemModel
|
|
9109
9103
|
*/
|
|
9110
|
-
'patientId'?: string;
|
|
9104
|
+
'patientId'?: string | null;
|
|
9111
9105
|
/**
|
|
9112
9106
|
*
|
|
9113
9107
|
* @type {string}
|
|
@@ -9174,7 +9168,7 @@ export interface ServiceReviewModel {
|
|
|
9174
9168
|
* @type {string}
|
|
9175
9169
|
* @memberof ServiceReviewModel
|
|
9176
9170
|
*/
|
|
9177
|
-
'patientId'?: string;
|
|
9171
|
+
'patientId'?: string | null;
|
|
9178
9172
|
/**
|
|
9179
9173
|
*
|
|
9180
9174
|
* @type {string}
|
|
@@ -22709,10 +22703,10 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
22709
22703
|
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
22710
22704
|
}
|
|
22711
22705
|
/**
|
|
22712
|
-
*
|
|
22706
|
+
* ServiceReviewsApi - axios parameter creator
|
|
22713
22707
|
* @export
|
|
22714
22708
|
*/
|
|
22715
|
-
export declare const
|
|
22709
|
+
export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
22716
22710
|
/**
|
|
22717
22711
|
*
|
|
22718
22712
|
* @summary Get all ServiceReviews.
|
|
@@ -22729,7 +22723,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22729
22723
|
* @param {*} [options] Override http request option.
|
|
22730
22724
|
* @throws {RequiredError}
|
|
22731
22725
|
*/
|
|
22732
|
-
|
|
22726
|
+
apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22733
22727
|
/**
|
|
22734
22728
|
*
|
|
22735
22729
|
* @summary Create a ServiceReview.
|
|
@@ -22737,7 +22731,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22737
22731
|
* @param {*} [options] Override http request option.
|
|
22738
22732
|
* @throws {RequiredError}
|
|
22739
22733
|
*/
|
|
22740
|
-
|
|
22734
|
+
apiV1ServicereviewsPost: (createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22741
22735
|
/**
|
|
22742
22736
|
*
|
|
22743
22737
|
* @summary Delete ServiceReview.
|
|
@@ -22745,14 +22739,14 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22745
22739
|
* @param {*} [options] Override http request option.
|
|
22746
22740
|
* @throws {RequiredError}
|
|
22747
22741
|
*/
|
|
22748
|
-
|
|
22742
|
+
apiV1ServicereviewsServiceReviewIdDelete: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22749
22743
|
/**
|
|
22750
22744
|
*
|
|
22751
22745
|
* @param {string} serviceReviewId
|
|
22752
22746
|
* @param {*} [options] Override http request option.
|
|
22753
22747
|
* @throws {RequiredError}
|
|
22754
22748
|
*/
|
|
22755
|
-
|
|
22749
|
+
apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22756
22750
|
/**
|
|
22757
22751
|
*
|
|
22758
22752
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -22765,7 +22759,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22765
22759
|
* @param {*} [options] Override http request option.
|
|
22766
22760
|
* @throws {RequiredError}
|
|
22767
22761
|
*/
|
|
22768
|
-
|
|
22762
|
+
apiV1ServicereviewsServiceReviewIdMediasGet: (serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22769
22763
|
/**
|
|
22770
22764
|
*
|
|
22771
22765
|
* @summary Delete ServiceReviewMedia
|
|
@@ -22774,7 +22768,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22774
22768
|
* @param {*} [options] Override http request option.
|
|
22775
22769
|
* @throws {RequiredError}
|
|
22776
22770
|
*/
|
|
22777
|
-
|
|
22771
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22778
22772
|
/**
|
|
22779
22773
|
*
|
|
22780
22774
|
* @summary Get ServiceReviewMedia.
|
|
@@ -22783,7 +22777,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22783
22777
|
* @param {*} [options] Override http request option.
|
|
22784
22778
|
* @throws {RequiredError}
|
|
22785
22779
|
*/
|
|
22786
|
-
|
|
22780
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22787
22781
|
/**
|
|
22788
22782
|
*
|
|
22789
22783
|
* @summary Update ServiceReviewMedia.
|
|
@@ -22793,7 +22787,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22793
22787
|
* @param {*} [options] Override http request option.
|
|
22794
22788
|
* @throws {RequiredError}
|
|
22795
22789
|
*/
|
|
22796
|
-
|
|
22790
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut: (serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22797
22791
|
/**
|
|
22798
22792
|
*
|
|
22799
22793
|
* @summary Create ServiceReviewMedia.
|
|
@@ -22802,7 +22796,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22802
22796
|
* @param {*} [options] Override http request option.
|
|
22803
22797
|
* @throws {RequiredError}
|
|
22804
22798
|
*/
|
|
22805
|
-
|
|
22799
|
+
apiV1ServicereviewsServiceReviewIdMediasPost: (serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22806
22800
|
/**
|
|
22807
22801
|
*
|
|
22808
22802
|
* @summary Update ServiceReview.
|
|
@@ -22811,13 +22805,13 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22811
22805
|
* @param {*} [options] Override http request option.
|
|
22812
22806
|
* @throws {RequiredError}
|
|
22813
22807
|
*/
|
|
22814
|
-
|
|
22808
|
+
apiV1ServicereviewsServiceReviewIdPut: (serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22815
22809
|
};
|
|
22816
22810
|
/**
|
|
22817
|
-
*
|
|
22811
|
+
* ServiceReviewsApi - functional programming interface
|
|
22818
22812
|
* @export
|
|
22819
22813
|
*/
|
|
22820
|
-
export declare const
|
|
22814
|
+
export declare const ServiceReviewsApiFp: (configuration?: Configuration | undefined) => {
|
|
22821
22815
|
/**
|
|
22822
22816
|
*
|
|
22823
22817
|
* @summary Get all ServiceReviews.
|
|
@@ -22834,7 +22828,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22834
22828
|
* @param {*} [options] Override http request option.
|
|
22835
22829
|
* @throws {RequiredError}
|
|
22836
22830
|
*/
|
|
22837
|
-
|
|
22831
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
22838
22832
|
/**
|
|
22839
22833
|
*
|
|
22840
22834
|
* @summary Create a ServiceReview.
|
|
@@ -22842,7 +22836,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22842
22836
|
* @param {*} [options] Override http request option.
|
|
22843
22837
|
* @throws {RequiredError}
|
|
22844
22838
|
*/
|
|
22845
|
-
|
|
22839
|
+
apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22846
22840
|
/**
|
|
22847
22841
|
*
|
|
22848
22842
|
* @summary Delete ServiceReview.
|
|
@@ -22850,14 +22844,14 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22850
22844
|
* @param {*} [options] Override http request option.
|
|
22851
22845
|
* @throws {RequiredError}
|
|
22852
22846
|
*/
|
|
22853
|
-
|
|
22847
|
+
apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22854
22848
|
/**
|
|
22855
22849
|
*
|
|
22856
22850
|
* @param {string} serviceReviewId
|
|
22857
22851
|
* @param {*} [options] Override http request option.
|
|
22858
22852
|
* @throws {RequiredError}
|
|
22859
22853
|
*/
|
|
22860
|
-
|
|
22854
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22861
22855
|
/**
|
|
22862
22856
|
*
|
|
22863
22857
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -22870,7 +22864,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22870
22864
|
* @param {*} [options] Override http request option.
|
|
22871
22865
|
* @throws {RequiredError}
|
|
22872
22866
|
*/
|
|
22873
|
-
|
|
22867
|
+
apiV1ServicereviewsServiceReviewIdMediasGet(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>>;
|
|
22874
22868
|
/**
|
|
22875
22869
|
*
|
|
22876
22870
|
* @summary Delete ServiceReviewMedia
|
|
@@ -22879,7 +22873,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22879
22873
|
* @param {*} [options] Override http request option.
|
|
22880
22874
|
* @throws {RequiredError}
|
|
22881
22875
|
*/
|
|
22882
|
-
|
|
22876
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22883
22877
|
/**
|
|
22884
22878
|
*
|
|
22885
22879
|
* @summary Get ServiceReviewMedia.
|
|
@@ -22888,7 +22882,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22888
22882
|
* @param {*} [options] Override http request option.
|
|
22889
22883
|
* @throws {RequiredError}
|
|
22890
22884
|
*/
|
|
22891
|
-
|
|
22885
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22892
22886
|
/**
|
|
22893
22887
|
*
|
|
22894
22888
|
* @summary Update ServiceReviewMedia.
|
|
@@ -22898,7 +22892,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22898
22892
|
* @param {*} [options] Override http request option.
|
|
22899
22893
|
* @throws {RequiredError}
|
|
22900
22894
|
*/
|
|
22901
|
-
|
|
22895
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22902
22896
|
/**
|
|
22903
22897
|
*
|
|
22904
22898
|
* @summary Create ServiceReviewMedia.
|
|
@@ -22907,7 +22901,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22907
22901
|
* @param {*} [options] Override http request option.
|
|
22908
22902
|
* @throws {RequiredError}
|
|
22909
22903
|
*/
|
|
22910
|
-
|
|
22904
|
+
apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22911
22905
|
/**
|
|
22912
22906
|
*
|
|
22913
22907
|
* @summary Update ServiceReview.
|
|
@@ -22916,13 +22910,13 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22916
22910
|
* @param {*} [options] Override http request option.
|
|
22917
22911
|
* @throws {RequiredError}
|
|
22918
22912
|
*/
|
|
22919
|
-
|
|
22913
|
+
apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22920
22914
|
};
|
|
22921
22915
|
/**
|
|
22922
|
-
*
|
|
22916
|
+
* ServiceReviewsApi - factory interface
|
|
22923
22917
|
* @export
|
|
22924
22918
|
*/
|
|
22925
|
-
export declare const
|
|
22919
|
+
export declare const ServiceReviewsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
22926
22920
|
/**
|
|
22927
22921
|
*
|
|
22928
22922
|
* @summary Get all ServiceReviews.
|
|
@@ -22939,7 +22933,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22939
22933
|
* @param {*} [options] Override http request option.
|
|
22940
22934
|
* @throws {RequiredError}
|
|
22941
22935
|
*/
|
|
22942
|
-
|
|
22936
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
22943
22937
|
/**
|
|
22944
22938
|
*
|
|
22945
22939
|
* @summary Create a ServiceReview.
|
|
@@ -22947,7 +22941,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22947
22941
|
* @param {*} [options] Override http request option.
|
|
22948
22942
|
* @throws {RequiredError}
|
|
22949
22943
|
*/
|
|
22950
|
-
|
|
22944
|
+
apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
22951
22945
|
/**
|
|
22952
22946
|
*
|
|
22953
22947
|
* @summary Delete ServiceReview.
|
|
@@ -22955,14 +22949,14 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22955
22949
|
* @param {*} [options] Override http request option.
|
|
22956
22950
|
* @throws {RequiredError}
|
|
22957
22951
|
*/
|
|
22958
|
-
|
|
22952
|
+
apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: any): AxiosPromise<boolean>;
|
|
22959
22953
|
/**
|
|
22960
22954
|
*
|
|
22961
22955
|
* @param {string} serviceReviewId
|
|
22962
22956
|
* @param {*} [options] Override http request option.
|
|
22963
22957
|
* @throws {RequiredError}
|
|
22964
22958
|
*/
|
|
22965
|
-
|
|
22959
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
22966
22960
|
/**
|
|
22967
22961
|
*
|
|
22968
22962
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -22975,7 +22969,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22975
22969
|
* @param {*} [options] Override http request option.
|
|
22976
22970
|
* @throws {RequiredError}
|
|
22977
22971
|
*/
|
|
22978
|
-
|
|
22972
|
+
apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
22979
22973
|
/**
|
|
22980
22974
|
*
|
|
22981
22975
|
* @summary Delete ServiceReviewMedia
|
|
@@ -22984,7 +22978,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22984
22978
|
* @param {*} [options] Override http request option.
|
|
22985
22979
|
* @throws {RequiredError}
|
|
22986
22980
|
*/
|
|
22987
|
-
|
|
22981
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
22988
22982
|
/**
|
|
22989
22983
|
*
|
|
22990
22984
|
* @summary Get ServiceReviewMedia.
|
|
@@ -22993,7 +22987,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22993
22987
|
* @param {*} [options] Override http request option.
|
|
22994
22988
|
* @throws {RequiredError}
|
|
22995
22989
|
*/
|
|
22996
|
-
|
|
22990
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
22997
22991
|
/**
|
|
22998
22992
|
*
|
|
22999
22993
|
* @summary Update ServiceReviewMedia.
|
|
@@ -23003,7 +22997,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
23003
22997
|
* @param {*} [options] Override http request option.
|
|
23004
22998
|
* @throws {RequiredError}
|
|
23005
22999
|
*/
|
|
23006
|
-
|
|
23000
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23007
23001
|
/**
|
|
23008
23002
|
*
|
|
23009
23003
|
* @summary Create ServiceReviewMedia.
|
|
@@ -23012,7 +23006,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
23012
23006
|
* @param {*} [options] Override http request option.
|
|
23013
23007
|
* @throws {RequiredError}
|
|
23014
23008
|
*/
|
|
23015
|
-
|
|
23009
|
+
apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23016
23010
|
/**
|
|
23017
23011
|
*
|
|
23018
23012
|
* @summary Update ServiceReview.
|
|
@@ -23021,15 +23015,15 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
23021
23015
|
* @param {*} [options] Override http request option.
|
|
23022
23016
|
* @throws {RequiredError}
|
|
23023
23017
|
*/
|
|
23024
|
-
|
|
23018
|
+
apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
23025
23019
|
};
|
|
23026
23020
|
/**
|
|
23027
|
-
*
|
|
23021
|
+
* ServiceReviewsApi - object-oriented interface
|
|
23028
23022
|
* @export
|
|
23029
|
-
* @class
|
|
23023
|
+
* @class ServiceReviewsApi
|
|
23030
23024
|
* @extends {BaseAPI}
|
|
23031
23025
|
*/
|
|
23032
|
-
export declare class
|
|
23026
|
+
export declare class ServiceReviewsApi extends BaseAPI {
|
|
23033
23027
|
/**
|
|
23034
23028
|
*
|
|
23035
23029
|
* @summary Get all ServiceReviews.
|
|
@@ -23045,35 +23039,35 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23045
23039
|
* @param {Date} [lastRetrieved]
|
|
23046
23040
|
* @param {*} [options] Override http request option.
|
|
23047
23041
|
* @throws {RequiredError}
|
|
23048
|
-
* @memberof
|
|
23042
|
+
* @memberof ServiceReviewsApi
|
|
23049
23043
|
*/
|
|
23050
|
-
|
|
23044
|
+
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
23051
23045
|
/**
|
|
23052
23046
|
*
|
|
23053
23047
|
* @summary Create a ServiceReview.
|
|
23054
23048
|
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
23055
23049
|
* @param {*} [options] Override http request option.
|
|
23056
23050
|
* @throws {RequiredError}
|
|
23057
|
-
* @memberof
|
|
23051
|
+
* @memberof ServiceReviewsApi
|
|
23058
23052
|
*/
|
|
23059
|
-
|
|
23053
|
+
apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
23060
23054
|
/**
|
|
23061
23055
|
*
|
|
23062
23056
|
* @summary Delete ServiceReview.
|
|
23063
23057
|
* @param {string} serviceReviewId
|
|
23064
23058
|
* @param {*} [options] Override http request option.
|
|
23065
23059
|
* @throws {RequiredError}
|
|
23066
|
-
* @memberof
|
|
23060
|
+
* @memberof ServiceReviewsApi
|
|
23067
23061
|
*/
|
|
23068
|
-
|
|
23062
|
+
apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23069
23063
|
/**
|
|
23070
23064
|
*
|
|
23071
23065
|
* @param {string} serviceReviewId
|
|
23072
23066
|
* @param {*} [options] Override http request option.
|
|
23073
23067
|
* @throws {RequiredError}
|
|
23074
|
-
* @memberof
|
|
23068
|
+
* @memberof ServiceReviewsApi
|
|
23075
23069
|
*/
|
|
23076
|
-
|
|
23070
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
23077
23071
|
/**
|
|
23078
23072
|
*
|
|
23079
23073
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -23085,9 +23079,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23085
23079
|
* @param {Date} [lastRetrieved]
|
|
23086
23080
|
* @param {*} [options] Override http request option.
|
|
23087
23081
|
* @throws {RequiredError}
|
|
23088
|
-
* @memberof
|
|
23082
|
+
* @memberof ServiceReviewsApi
|
|
23089
23083
|
*/
|
|
23090
|
-
|
|
23084
|
+
apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
23091
23085
|
/**
|
|
23092
23086
|
*
|
|
23093
23087
|
* @summary Delete ServiceReviewMedia
|
|
@@ -23095,9 +23089,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23095
23089
|
* @param {string} mediaId
|
|
23096
23090
|
* @param {*} [options] Override http request option.
|
|
23097
23091
|
* @throws {RequiredError}
|
|
23098
|
-
* @memberof
|
|
23092
|
+
* @memberof ServiceReviewsApi
|
|
23099
23093
|
*/
|
|
23100
|
-
|
|
23094
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23101
23095
|
/**
|
|
23102
23096
|
*
|
|
23103
23097
|
* @summary Get ServiceReviewMedia.
|
|
@@ -23105,9 +23099,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23105
23099
|
* @param {string} mediaId
|
|
23106
23100
|
* @param {*} [options] Override http request option.
|
|
23107
23101
|
* @throws {RequiredError}
|
|
23108
|
-
* @memberof
|
|
23102
|
+
* @memberof ServiceReviewsApi
|
|
23109
23103
|
*/
|
|
23110
|
-
|
|
23104
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
23111
23105
|
/**
|
|
23112
23106
|
*
|
|
23113
23107
|
* @summary Update ServiceReviewMedia.
|
|
@@ -23116,9 +23110,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23116
23110
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
23117
23111
|
* @param {*} [options] Override http request option.
|
|
23118
23112
|
* @throws {RequiredError}
|
|
23119
|
-
* @memberof
|
|
23113
|
+
* @memberof ServiceReviewsApi
|
|
23120
23114
|
*/
|
|
23121
|
-
|
|
23115
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
23122
23116
|
/**
|
|
23123
23117
|
*
|
|
23124
23118
|
* @summary Create ServiceReviewMedia.
|
|
@@ -23126,9 +23120,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23126
23120
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
23127
23121
|
* @param {*} [options] Override http request option.
|
|
23128
23122
|
* @throws {RequiredError}
|
|
23129
|
-
* @memberof
|
|
23123
|
+
* @memberof ServiceReviewsApi
|
|
23130
23124
|
*/
|
|
23131
|
-
|
|
23125
|
+
apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
23132
23126
|
/**
|
|
23133
23127
|
*
|
|
23134
23128
|
* @summary Update ServiceReview.
|
|
@@ -23136,9 +23130,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23136
23130
|
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
23137
23131
|
* @param {*} [options] Override http request option.
|
|
23138
23132
|
* @throws {RequiredError}
|
|
23139
|
-
* @memberof
|
|
23133
|
+
* @memberof ServiceReviewsApi
|
|
23140
23134
|
*/
|
|
23141
|
-
|
|
23135
|
+
apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
23142
23136
|
}
|
|
23143
23137
|
/**
|
|
23144
23138
|
* ServicesApi - axios parameter creator
|