ch-admin-api-client-typescript 2.7.1 → 2.7.4
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 +75 -77
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +131 -124
- package/package.json +1 -1
- package/src/api.ts +135 -133
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}
|
|
@@ -18917,13 +18911,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18917
18911
|
* @param {string} [hospitalName]
|
|
18918
18912
|
* @param {string} [description]
|
|
18919
18913
|
* @param {Date} [created]
|
|
18914
|
+
* @param {boolean} [showHidden]
|
|
18920
18915
|
* @param {number} [page]
|
|
18921
18916
|
* @param {number} [limit]
|
|
18922
18917
|
* @param {Date} [lastRetrieved]
|
|
18923
18918
|
* @param {*} [options] Override http request option.
|
|
18924
18919
|
* @throws {RequiredError}
|
|
18925
18920
|
*/
|
|
18926
|
-
apiV1HospitalsHospitalIdEquipmentsGet: (hospitalId: string, id?: string | undefined, name?: string | undefined, hospitalId2?: string | undefined, hospitalName?: string | undefined, description?: string | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18921
|
+
apiV1HospitalsHospitalIdEquipmentsGet: (hospitalId: string, id?: string | undefined, name?: string | undefined, hospitalId2?: string | undefined, hospitalName?: string | undefined, description?: string | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18927
18922
|
/**
|
|
18928
18923
|
*
|
|
18929
18924
|
* @summary Create HospitalEquipment.
|
|
@@ -19447,13 +19442,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19447
19442
|
* @param {string} [hospitalName]
|
|
19448
19443
|
* @param {string} [description]
|
|
19449
19444
|
* @param {Date} [created]
|
|
19445
|
+
* @param {boolean} [showHidden]
|
|
19450
19446
|
* @param {number} [page]
|
|
19451
19447
|
* @param {number} [limit]
|
|
19452
19448
|
* @param {Date} [lastRetrieved]
|
|
19453
19449
|
* @param {*} [options] Override http request option.
|
|
19454
19450
|
* @throws {RequiredError}
|
|
19455
19451
|
*/
|
|
19456
|
-
apiV1HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, hospitalId2?: string | undefined, hospitalName?: string | undefined, description?: string | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentsModel>>;
|
|
19452
|
+
apiV1HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, hospitalId2?: string | undefined, hospitalName?: string | undefined, description?: string | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentsModel>>;
|
|
19457
19453
|
/**
|
|
19458
19454
|
*
|
|
19459
19455
|
* @summary Create HospitalEquipment.
|
|
@@ -19977,13 +19973,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19977
19973
|
* @param {string} [hospitalName]
|
|
19978
19974
|
* @param {string} [description]
|
|
19979
19975
|
* @param {Date} [created]
|
|
19976
|
+
* @param {boolean} [showHidden]
|
|
19980
19977
|
* @param {number} [page]
|
|
19981
19978
|
* @param {number} [limit]
|
|
19982
19979
|
* @param {Date} [lastRetrieved]
|
|
19983
19980
|
* @param {*} [options] Override http request option.
|
|
19984
19981
|
* @throws {RequiredError}
|
|
19985
19982
|
*/
|
|
19986
|
-
apiV1HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, hospitalId2?: string | undefined, hospitalName?: string | undefined, description?: string | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalEquipmentsModel>;
|
|
19983
|
+
apiV1HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, hospitalId2?: string | undefined, hospitalName?: string | undefined, description?: string | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalEquipmentsModel>;
|
|
19987
19984
|
/**
|
|
19988
19985
|
*
|
|
19989
19986
|
* @summary Create HospitalEquipment.
|
|
@@ -20524,6 +20521,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20524
20521
|
* @param {string} [hospitalName]
|
|
20525
20522
|
* @param {string} [description]
|
|
20526
20523
|
* @param {Date} [created]
|
|
20524
|
+
* @param {boolean} [showHidden]
|
|
20527
20525
|
* @param {number} [page]
|
|
20528
20526
|
* @param {number} [limit]
|
|
20529
20527
|
* @param {Date} [lastRetrieved]
|
|
@@ -20531,7 +20529,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20531
20529
|
* @throws {RequiredError}
|
|
20532
20530
|
* @memberof HospitalsApi
|
|
20533
20531
|
*/
|
|
20534
|
-
apiV1HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string, name?: string, hospitalId2?: string, hospitalName?: string, description?: string, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentsModel>>;
|
|
20532
|
+
apiV1HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string, name?: string, hospitalId2?: string, hospitalName?: string, description?: string, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentsModel>>;
|
|
20535
20533
|
/**
|
|
20536
20534
|
*
|
|
20537
20535
|
* @summary Create HospitalEquipment.
|
|
@@ -22709,10 +22707,10 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
22709
22707
|
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
22710
22708
|
}
|
|
22711
22709
|
/**
|
|
22712
|
-
*
|
|
22710
|
+
* ServiceReviewsApi - axios parameter creator
|
|
22713
22711
|
* @export
|
|
22714
22712
|
*/
|
|
22715
|
-
export declare const
|
|
22713
|
+
export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
22716
22714
|
/**
|
|
22717
22715
|
*
|
|
22718
22716
|
* @summary Get all ServiceReviews.
|
|
@@ -22729,7 +22727,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22729
22727
|
* @param {*} [options] Override http request option.
|
|
22730
22728
|
* @throws {RequiredError}
|
|
22731
22729
|
*/
|
|
22732
|
-
|
|
22730
|
+
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
22731
|
/**
|
|
22734
22732
|
*
|
|
22735
22733
|
* @summary Create a ServiceReview.
|
|
@@ -22737,7 +22735,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22737
22735
|
* @param {*} [options] Override http request option.
|
|
22738
22736
|
* @throws {RequiredError}
|
|
22739
22737
|
*/
|
|
22740
|
-
|
|
22738
|
+
apiV1ServicereviewsPost: (createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22741
22739
|
/**
|
|
22742
22740
|
*
|
|
22743
22741
|
* @summary Delete ServiceReview.
|
|
@@ -22745,14 +22743,14 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22745
22743
|
* @param {*} [options] Override http request option.
|
|
22746
22744
|
* @throws {RequiredError}
|
|
22747
22745
|
*/
|
|
22748
|
-
|
|
22746
|
+
apiV1ServicereviewsServiceReviewIdDelete: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22749
22747
|
/**
|
|
22750
22748
|
*
|
|
22751
22749
|
* @param {string} serviceReviewId
|
|
22752
22750
|
* @param {*} [options] Override http request option.
|
|
22753
22751
|
* @throws {RequiredError}
|
|
22754
22752
|
*/
|
|
22755
|
-
|
|
22753
|
+
apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22756
22754
|
/**
|
|
22757
22755
|
*
|
|
22758
22756
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -22765,7 +22763,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22765
22763
|
* @param {*} [options] Override http request option.
|
|
22766
22764
|
* @throws {RequiredError}
|
|
22767
22765
|
*/
|
|
22768
|
-
|
|
22766
|
+
apiV1ServicereviewsServiceReviewIdMediasGet: (serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22769
22767
|
/**
|
|
22770
22768
|
*
|
|
22771
22769
|
* @summary Delete ServiceReviewMedia
|
|
@@ -22774,7 +22772,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22774
22772
|
* @param {*} [options] Override http request option.
|
|
22775
22773
|
* @throws {RequiredError}
|
|
22776
22774
|
*/
|
|
22777
|
-
|
|
22775
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22778
22776
|
/**
|
|
22779
22777
|
*
|
|
22780
22778
|
* @summary Get ServiceReviewMedia.
|
|
@@ -22783,7 +22781,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22783
22781
|
* @param {*} [options] Override http request option.
|
|
22784
22782
|
* @throws {RequiredError}
|
|
22785
22783
|
*/
|
|
22786
|
-
|
|
22784
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet: (serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22787
22785
|
/**
|
|
22788
22786
|
*
|
|
22789
22787
|
* @summary Update ServiceReviewMedia.
|
|
@@ -22793,7 +22791,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22793
22791
|
* @param {*} [options] Override http request option.
|
|
22794
22792
|
* @throws {RequiredError}
|
|
22795
22793
|
*/
|
|
22796
|
-
|
|
22794
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut: (serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22797
22795
|
/**
|
|
22798
22796
|
*
|
|
22799
22797
|
* @summary Create ServiceReviewMedia.
|
|
@@ -22802,7 +22800,7 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22802
22800
|
* @param {*} [options] Override http request option.
|
|
22803
22801
|
* @throws {RequiredError}
|
|
22804
22802
|
*/
|
|
22805
|
-
|
|
22803
|
+
apiV1ServicereviewsServiceReviewIdMediasPost: (serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22806
22804
|
/**
|
|
22807
22805
|
*
|
|
22808
22806
|
* @summary Update ServiceReview.
|
|
@@ -22811,13 +22809,13 @@ export declare const ServiceReviewApiAxiosParamCreator: (configuration?: Configu
|
|
|
22811
22809
|
* @param {*} [options] Override http request option.
|
|
22812
22810
|
* @throws {RequiredError}
|
|
22813
22811
|
*/
|
|
22814
|
-
|
|
22812
|
+
apiV1ServicereviewsServiceReviewIdPut: (serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22815
22813
|
};
|
|
22816
22814
|
/**
|
|
22817
|
-
*
|
|
22815
|
+
* ServiceReviewsApi - functional programming interface
|
|
22818
22816
|
* @export
|
|
22819
22817
|
*/
|
|
22820
|
-
export declare const
|
|
22818
|
+
export declare const ServiceReviewsApiFp: (configuration?: Configuration | undefined) => {
|
|
22821
22819
|
/**
|
|
22822
22820
|
*
|
|
22823
22821
|
* @summary Get all ServiceReviews.
|
|
@@ -22834,7 +22832,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22834
22832
|
* @param {*} [options] Override http request option.
|
|
22835
22833
|
* @throws {RequiredError}
|
|
22836
22834
|
*/
|
|
22837
|
-
|
|
22835
|
+
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
22836
|
/**
|
|
22839
22837
|
*
|
|
22840
22838
|
* @summary Create a ServiceReview.
|
|
@@ -22842,7 +22840,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22842
22840
|
* @param {*} [options] Override http request option.
|
|
22843
22841
|
* @throws {RequiredError}
|
|
22844
22842
|
*/
|
|
22845
|
-
|
|
22843
|
+
apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22846
22844
|
/**
|
|
22847
22845
|
*
|
|
22848
22846
|
* @summary Delete ServiceReview.
|
|
@@ -22850,14 +22848,14 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22850
22848
|
* @param {*} [options] Override http request option.
|
|
22851
22849
|
* @throws {RequiredError}
|
|
22852
22850
|
*/
|
|
22853
|
-
|
|
22851
|
+
apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22854
22852
|
/**
|
|
22855
22853
|
*
|
|
22856
22854
|
* @param {string} serviceReviewId
|
|
22857
22855
|
* @param {*} [options] Override http request option.
|
|
22858
22856
|
* @throws {RequiredError}
|
|
22859
22857
|
*/
|
|
22860
|
-
|
|
22858
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22861
22859
|
/**
|
|
22862
22860
|
*
|
|
22863
22861
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -22870,7 +22868,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22870
22868
|
* @param {*} [options] Override http request option.
|
|
22871
22869
|
* @throws {RequiredError}
|
|
22872
22870
|
*/
|
|
22873
|
-
|
|
22871
|
+
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
22872
|
/**
|
|
22875
22873
|
*
|
|
22876
22874
|
* @summary Delete ServiceReviewMedia
|
|
@@ -22879,7 +22877,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22879
22877
|
* @param {*} [options] Override http request option.
|
|
22880
22878
|
* @throws {RequiredError}
|
|
22881
22879
|
*/
|
|
22882
|
-
|
|
22880
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22883
22881
|
/**
|
|
22884
22882
|
*
|
|
22885
22883
|
* @summary Get ServiceReviewMedia.
|
|
@@ -22888,7 +22886,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22888
22886
|
* @param {*} [options] Override http request option.
|
|
22889
22887
|
* @throws {RequiredError}
|
|
22890
22888
|
*/
|
|
22891
|
-
|
|
22889
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22892
22890
|
/**
|
|
22893
22891
|
*
|
|
22894
22892
|
* @summary Update ServiceReviewMedia.
|
|
@@ -22898,7 +22896,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22898
22896
|
* @param {*} [options] Override http request option.
|
|
22899
22897
|
* @throws {RequiredError}
|
|
22900
22898
|
*/
|
|
22901
|
-
|
|
22899
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22902
22900
|
/**
|
|
22903
22901
|
*
|
|
22904
22902
|
* @summary Create ServiceReviewMedia.
|
|
@@ -22907,7 +22905,7 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22907
22905
|
* @param {*} [options] Override http request option.
|
|
22908
22906
|
* @throws {RequiredError}
|
|
22909
22907
|
*/
|
|
22910
|
-
|
|
22908
|
+
apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
22911
22909
|
/**
|
|
22912
22910
|
*
|
|
22913
22911
|
* @summary Update ServiceReview.
|
|
@@ -22916,13 +22914,13 @@ export declare const ServiceReviewApiFp: (configuration?: Configuration | undefi
|
|
|
22916
22914
|
* @param {*} [options] Override http request option.
|
|
22917
22915
|
* @throws {RequiredError}
|
|
22918
22916
|
*/
|
|
22919
|
-
|
|
22917
|
+
apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
22920
22918
|
};
|
|
22921
22919
|
/**
|
|
22922
|
-
*
|
|
22920
|
+
* ServiceReviewsApi - factory interface
|
|
22923
22921
|
* @export
|
|
22924
22922
|
*/
|
|
22925
|
-
export declare const
|
|
22923
|
+
export declare const ServiceReviewsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
22926
22924
|
/**
|
|
22927
22925
|
*
|
|
22928
22926
|
* @summary Get all ServiceReviews.
|
|
@@ -22939,7 +22937,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22939
22937
|
* @param {*} [options] Override http request option.
|
|
22940
22938
|
* @throws {RequiredError}
|
|
22941
22939
|
*/
|
|
22942
|
-
|
|
22940
|
+
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
22941
|
/**
|
|
22944
22942
|
*
|
|
22945
22943
|
* @summary Create a ServiceReview.
|
|
@@ -22947,7 +22945,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22947
22945
|
* @param {*} [options] Override http request option.
|
|
22948
22946
|
* @throws {RequiredError}
|
|
22949
22947
|
*/
|
|
22950
|
-
|
|
22948
|
+
apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
22951
22949
|
/**
|
|
22952
22950
|
*
|
|
22953
22951
|
* @summary Delete ServiceReview.
|
|
@@ -22955,14 +22953,14 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22955
22953
|
* @param {*} [options] Override http request option.
|
|
22956
22954
|
* @throws {RequiredError}
|
|
22957
22955
|
*/
|
|
22958
|
-
|
|
22956
|
+
apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: any): AxiosPromise<boolean>;
|
|
22959
22957
|
/**
|
|
22960
22958
|
*
|
|
22961
22959
|
* @param {string} serviceReviewId
|
|
22962
22960
|
* @param {*} [options] Override http request option.
|
|
22963
22961
|
* @throws {RequiredError}
|
|
22964
22962
|
*/
|
|
22965
|
-
|
|
22963
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
22966
22964
|
/**
|
|
22967
22965
|
*
|
|
22968
22966
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -22975,7 +22973,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22975
22973
|
* @param {*} [options] Override http request option.
|
|
22976
22974
|
* @throws {RequiredError}
|
|
22977
22975
|
*/
|
|
22978
|
-
|
|
22976
|
+
apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
22979
22977
|
/**
|
|
22980
22978
|
*
|
|
22981
22979
|
* @summary Delete ServiceReviewMedia
|
|
@@ -22984,7 +22982,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22984
22982
|
* @param {*} [options] Override http request option.
|
|
22985
22983
|
* @throws {RequiredError}
|
|
22986
22984
|
*/
|
|
22987
|
-
|
|
22985
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
22988
22986
|
/**
|
|
22989
22987
|
*
|
|
22990
22988
|
* @summary Get ServiceReviewMedia.
|
|
@@ -22993,7 +22991,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
22993
22991
|
* @param {*} [options] Override http request option.
|
|
22994
22992
|
* @throws {RequiredError}
|
|
22995
22993
|
*/
|
|
22996
|
-
|
|
22994
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
22997
22995
|
/**
|
|
22998
22996
|
*
|
|
22999
22997
|
* @summary Update ServiceReviewMedia.
|
|
@@ -23003,7 +23001,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
23003
23001
|
* @param {*} [options] Override http request option.
|
|
23004
23002
|
* @throws {RequiredError}
|
|
23005
23003
|
*/
|
|
23006
|
-
|
|
23004
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23007
23005
|
/**
|
|
23008
23006
|
*
|
|
23009
23007
|
* @summary Create ServiceReviewMedia.
|
|
@@ -23012,7 +23010,7 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
23012
23010
|
* @param {*} [options] Override http request option.
|
|
23013
23011
|
* @throws {RequiredError}
|
|
23014
23012
|
*/
|
|
23015
|
-
|
|
23013
|
+
apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23016
23014
|
/**
|
|
23017
23015
|
*
|
|
23018
23016
|
* @summary Update ServiceReview.
|
|
@@ -23021,15 +23019,15 @@ export declare const ServiceReviewApiFactory: (configuration?: Configuration | u
|
|
|
23021
23019
|
* @param {*} [options] Override http request option.
|
|
23022
23020
|
* @throws {RequiredError}
|
|
23023
23021
|
*/
|
|
23024
|
-
|
|
23022
|
+
apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
23025
23023
|
};
|
|
23026
23024
|
/**
|
|
23027
|
-
*
|
|
23025
|
+
* ServiceReviewsApi - object-oriented interface
|
|
23028
23026
|
* @export
|
|
23029
|
-
* @class
|
|
23027
|
+
* @class ServiceReviewsApi
|
|
23030
23028
|
* @extends {BaseAPI}
|
|
23031
23029
|
*/
|
|
23032
|
-
export declare class
|
|
23030
|
+
export declare class ServiceReviewsApi extends BaseAPI {
|
|
23033
23031
|
/**
|
|
23034
23032
|
*
|
|
23035
23033
|
* @summary Get all ServiceReviews.
|
|
@@ -23045,35 +23043,35 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23045
23043
|
* @param {Date} [lastRetrieved]
|
|
23046
23044
|
* @param {*} [options] Override http request option.
|
|
23047
23045
|
* @throws {RequiredError}
|
|
23048
|
-
* @memberof
|
|
23046
|
+
* @memberof ServiceReviewsApi
|
|
23049
23047
|
*/
|
|
23050
|
-
|
|
23048
|
+
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
23049
|
/**
|
|
23052
23050
|
*
|
|
23053
23051
|
* @summary Create a ServiceReview.
|
|
23054
23052
|
* @param {CreateServiceReviewCommand} [createServiceReviewCommand]
|
|
23055
23053
|
* @param {*} [options] Override http request option.
|
|
23056
23054
|
* @throws {RequiredError}
|
|
23057
|
-
* @memberof
|
|
23055
|
+
* @memberof ServiceReviewsApi
|
|
23058
23056
|
*/
|
|
23059
|
-
|
|
23057
|
+
apiV1ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
23060
23058
|
/**
|
|
23061
23059
|
*
|
|
23062
23060
|
* @summary Delete ServiceReview.
|
|
23063
23061
|
* @param {string} serviceReviewId
|
|
23064
23062
|
* @param {*} [options] Override http request option.
|
|
23065
23063
|
* @throws {RequiredError}
|
|
23066
|
-
* @memberof
|
|
23064
|
+
* @memberof ServiceReviewsApi
|
|
23067
23065
|
*/
|
|
23068
|
-
|
|
23066
|
+
apiV1ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23069
23067
|
/**
|
|
23070
23068
|
*
|
|
23071
23069
|
* @param {string} serviceReviewId
|
|
23072
23070
|
* @param {*} [options] Override http request option.
|
|
23073
23071
|
* @throws {RequiredError}
|
|
23074
|
-
* @memberof
|
|
23072
|
+
* @memberof ServiceReviewsApi
|
|
23075
23073
|
*/
|
|
23076
|
-
|
|
23074
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
23077
23075
|
/**
|
|
23078
23076
|
*
|
|
23079
23077
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -23085,9 +23083,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23085
23083
|
* @param {Date} [lastRetrieved]
|
|
23086
23084
|
* @param {*} [options] Override http request option.
|
|
23087
23085
|
* @throws {RequiredError}
|
|
23088
|
-
* @memberof
|
|
23086
|
+
* @memberof ServiceReviewsApi
|
|
23089
23087
|
*/
|
|
23090
|
-
|
|
23088
|
+
apiV1ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
23091
23089
|
/**
|
|
23092
23090
|
*
|
|
23093
23091
|
* @summary Delete ServiceReviewMedia
|
|
@@ -23095,9 +23093,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23095
23093
|
* @param {string} mediaId
|
|
23096
23094
|
* @param {*} [options] Override http request option.
|
|
23097
23095
|
* @throws {RequiredError}
|
|
23098
|
-
* @memberof
|
|
23096
|
+
* @memberof ServiceReviewsApi
|
|
23099
23097
|
*/
|
|
23100
|
-
|
|
23098
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
23101
23099
|
/**
|
|
23102
23100
|
*
|
|
23103
23101
|
* @summary Get ServiceReviewMedia.
|
|
@@ -23105,9 +23103,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23105
23103
|
* @param {string} mediaId
|
|
23106
23104
|
* @param {*} [options] Override http request option.
|
|
23107
23105
|
* @throws {RequiredError}
|
|
23108
|
-
* @memberof
|
|
23106
|
+
* @memberof ServiceReviewsApi
|
|
23109
23107
|
*/
|
|
23110
|
-
|
|
23108
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
23111
23109
|
/**
|
|
23112
23110
|
*
|
|
23113
23111
|
* @summary Update ServiceReviewMedia.
|
|
@@ -23116,9 +23114,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23116
23114
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
23117
23115
|
* @param {*} [options] Override http request option.
|
|
23118
23116
|
* @throws {RequiredError}
|
|
23119
|
-
* @memberof
|
|
23117
|
+
* @memberof ServiceReviewsApi
|
|
23120
23118
|
*/
|
|
23121
|
-
|
|
23119
|
+
apiV1ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
23122
23120
|
/**
|
|
23123
23121
|
*
|
|
23124
23122
|
* @summary Create ServiceReviewMedia.
|
|
@@ -23126,9 +23124,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23126
23124
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
23127
23125
|
* @param {*} [options] Override http request option.
|
|
23128
23126
|
* @throws {RequiredError}
|
|
23129
|
-
* @memberof
|
|
23127
|
+
* @memberof ServiceReviewsApi
|
|
23130
23128
|
*/
|
|
23131
|
-
|
|
23129
|
+
apiV1ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
23132
23130
|
/**
|
|
23133
23131
|
*
|
|
23134
23132
|
* @summary Update ServiceReview.
|
|
@@ -23136,9 +23134,9 @@ export declare class ServiceReviewApi extends BaseAPI {
|
|
|
23136
23134
|
* @param {UpdateServiceReviewCommand} [updateServiceReviewCommand]
|
|
23137
23135
|
* @param {*} [options] Override http request option.
|
|
23138
23136
|
* @throws {RequiredError}
|
|
23139
|
-
* @memberof
|
|
23137
|
+
* @memberof ServiceReviewsApi
|
|
23140
23138
|
*/
|
|
23141
|
-
|
|
23139
|
+
apiV1ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
23142
23140
|
}
|
|
23143
23141
|
/**
|
|
23144
23142
|
* ServicesApi - axios parameter creator
|