ch-api-client-typescript2 4.3.5 → 4.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +346 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +306 -7
- package/package.json +1 -1
- package/src/api.ts +499 -7
package/lib/api.d.ts
CHANGED
|
@@ -6900,6 +6900,201 @@ export interface InviteSendBirdGroupChannelCommand {
|
|
|
6900
6900
|
*/
|
|
6901
6901
|
'user_ids'?: Array<string> | null;
|
|
6902
6902
|
}
|
|
6903
|
+
/**
|
|
6904
|
+
*
|
|
6905
|
+
* @export
|
|
6906
|
+
* @interface LandingItemModel
|
|
6907
|
+
*/
|
|
6908
|
+
export interface LandingItemModel {
|
|
6909
|
+
/**
|
|
6910
|
+
*
|
|
6911
|
+
* @type {string}
|
|
6912
|
+
* @memberof LandingItemModel
|
|
6913
|
+
*/
|
|
6914
|
+
'id'?: string;
|
|
6915
|
+
/**
|
|
6916
|
+
*
|
|
6917
|
+
* @type {string}
|
|
6918
|
+
* @memberof LandingItemModel
|
|
6919
|
+
*/
|
|
6920
|
+
'languageCode'?: string | null;
|
|
6921
|
+
/**
|
|
6922
|
+
*
|
|
6923
|
+
* @type {string}
|
|
6924
|
+
* @memberof LandingItemModel
|
|
6925
|
+
*/
|
|
6926
|
+
'name'?: string | null;
|
|
6927
|
+
/**
|
|
6928
|
+
*
|
|
6929
|
+
* @type {string}
|
|
6930
|
+
* @memberof LandingItemModel
|
|
6931
|
+
*/
|
|
6932
|
+
'slug'?: string | null;
|
|
6933
|
+
/**
|
|
6934
|
+
*
|
|
6935
|
+
* @type {boolean}
|
|
6936
|
+
* @memberof LandingItemModel
|
|
6937
|
+
*/
|
|
6938
|
+
'confirmed'?: boolean;
|
|
6939
|
+
/**
|
|
6940
|
+
*
|
|
6941
|
+
* @type {number}
|
|
6942
|
+
* @memberof LandingItemModel
|
|
6943
|
+
*/
|
|
6944
|
+
'order'?: number;
|
|
6945
|
+
/**
|
|
6946
|
+
*
|
|
6947
|
+
* @type {string}
|
|
6948
|
+
* @memberof LandingItemModel
|
|
6949
|
+
*/
|
|
6950
|
+
'photo'?: string | null;
|
|
6951
|
+
/**
|
|
6952
|
+
*
|
|
6953
|
+
* @type {string}
|
|
6954
|
+
* @memberof LandingItemModel
|
|
6955
|
+
*/
|
|
6956
|
+
'photoThumbnail'?: string | null;
|
|
6957
|
+
/**
|
|
6958
|
+
*
|
|
6959
|
+
* @type {AuditableEntity}
|
|
6960
|
+
* @memberof LandingItemModel
|
|
6961
|
+
*/
|
|
6962
|
+
'auditableEntity'?: AuditableEntity;
|
|
6963
|
+
}
|
|
6964
|
+
/**
|
|
6965
|
+
*
|
|
6966
|
+
* @export
|
|
6967
|
+
* @interface LandingModel
|
|
6968
|
+
*/
|
|
6969
|
+
export interface LandingModel {
|
|
6970
|
+
/**
|
|
6971
|
+
*
|
|
6972
|
+
* @type {string}
|
|
6973
|
+
* @memberof LandingModel
|
|
6974
|
+
*/
|
|
6975
|
+
'id'?: string;
|
|
6976
|
+
/**
|
|
6977
|
+
*
|
|
6978
|
+
* @type {string}
|
|
6979
|
+
* @memberof LandingModel
|
|
6980
|
+
*/
|
|
6981
|
+
'languageCode'?: string | null;
|
|
6982
|
+
/**
|
|
6983
|
+
*
|
|
6984
|
+
* @type {string}
|
|
6985
|
+
* @memberof LandingModel
|
|
6986
|
+
*/
|
|
6987
|
+
'name'?: string | null;
|
|
6988
|
+
/**
|
|
6989
|
+
*
|
|
6990
|
+
* @type {string}
|
|
6991
|
+
* @memberof LandingModel
|
|
6992
|
+
*/
|
|
6993
|
+
'slug'?: string | null;
|
|
6994
|
+
/**
|
|
6995
|
+
*
|
|
6996
|
+
* @type {boolean}
|
|
6997
|
+
* @memberof LandingModel
|
|
6998
|
+
*/
|
|
6999
|
+
'confirmed'?: boolean;
|
|
7000
|
+
/**
|
|
7001
|
+
*
|
|
7002
|
+
* @type {number}
|
|
7003
|
+
* @memberof LandingModel
|
|
7004
|
+
*/
|
|
7005
|
+
'order'?: number;
|
|
7006
|
+
/**
|
|
7007
|
+
*
|
|
7008
|
+
* @type {string}
|
|
7009
|
+
* @memberof LandingModel
|
|
7010
|
+
*/
|
|
7011
|
+
'photo'?: string | null;
|
|
7012
|
+
/**
|
|
7013
|
+
*
|
|
7014
|
+
* @type {string}
|
|
7015
|
+
* @memberof LandingModel
|
|
7016
|
+
*/
|
|
7017
|
+
'photoThumbnail'?: string | null;
|
|
7018
|
+
/**
|
|
7019
|
+
*
|
|
7020
|
+
* @type {AuditableEntity}
|
|
7021
|
+
* @memberof LandingModel
|
|
7022
|
+
*/
|
|
7023
|
+
'auditableEntity'?: AuditableEntity;
|
|
7024
|
+
/**
|
|
7025
|
+
*
|
|
7026
|
+
* @type {string}
|
|
7027
|
+
* @memberof LandingModel
|
|
7028
|
+
*/
|
|
7029
|
+
'description'?: string | null;
|
|
7030
|
+
/**
|
|
7031
|
+
*
|
|
7032
|
+
* @type {string}
|
|
7033
|
+
* @memberof LandingModel
|
|
7034
|
+
*/
|
|
7035
|
+
'overview'?: string | null;
|
|
7036
|
+
/**
|
|
7037
|
+
*
|
|
7038
|
+
* @type {string}
|
|
7039
|
+
* @memberof LandingModel
|
|
7040
|
+
*/
|
|
7041
|
+
'content'?: string | null;
|
|
7042
|
+
/**
|
|
7043
|
+
*
|
|
7044
|
+
* @type {string}
|
|
7045
|
+
* @memberof LandingModel
|
|
7046
|
+
*/
|
|
7047
|
+
'hospitalId'?: string;
|
|
7048
|
+
/**
|
|
7049
|
+
*
|
|
7050
|
+
* @type {string}
|
|
7051
|
+
* @memberof LandingModel
|
|
7052
|
+
*/
|
|
7053
|
+
'hospitalName'?: string | null;
|
|
7054
|
+
/**
|
|
7055
|
+
*
|
|
7056
|
+
* @type {string}
|
|
7057
|
+
* @memberof LandingModel
|
|
7058
|
+
*/
|
|
7059
|
+
'hospitalSlug'?: string | null;
|
|
7060
|
+
/**
|
|
7061
|
+
*
|
|
7062
|
+
* @type {string}
|
|
7063
|
+
* @memberof LandingModel
|
|
7064
|
+
*/
|
|
7065
|
+
'customStyle'?: string | null;
|
|
7066
|
+
/**
|
|
7067
|
+
*
|
|
7068
|
+
* @type {Array<LocalizedUrlModel>}
|
|
7069
|
+
* @memberof LandingModel
|
|
7070
|
+
*/
|
|
7071
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
7072
|
+
/**
|
|
7073
|
+
*
|
|
7074
|
+
* @type {Array<MediaModel>}
|
|
7075
|
+
* @memberof LandingModel
|
|
7076
|
+
*/
|
|
7077
|
+
'medias'?: Array<MediaModel> | null;
|
|
7078
|
+
}
|
|
7079
|
+
/**
|
|
7080
|
+
*
|
|
7081
|
+
* @export
|
|
7082
|
+
* @interface LandingsModel
|
|
7083
|
+
*/
|
|
7084
|
+
export interface LandingsModel {
|
|
7085
|
+
/**
|
|
7086
|
+
*
|
|
7087
|
+
* @type {Array<LandingItemModel>}
|
|
7088
|
+
* @memberof LandingsModel
|
|
7089
|
+
*/
|
|
7090
|
+
'items'?: Array<LandingItemModel> | null;
|
|
7091
|
+
/**
|
|
7092
|
+
*
|
|
7093
|
+
* @type {PagedListMetaData}
|
|
7094
|
+
* @memberof LandingsModel
|
|
7095
|
+
*/
|
|
7096
|
+
'metaData'?: PagedListMetaData;
|
|
7097
|
+
}
|
|
6903
7098
|
/**
|
|
6904
7099
|
*
|
|
6905
7100
|
* @export
|
|
@@ -8378,6 +8573,12 @@ export interface ServiceReviewItemModel {
|
|
|
8378
8573
|
* @memberof ServiceReviewItemModel
|
|
8379
8574
|
*/
|
|
8380
8575
|
'hospitalId'?: string;
|
|
8576
|
+
/**
|
|
8577
|
+
*
|
|
8578
|
+
* @type {string}
|
|
8579
|
+
* @memberof ServiceReviewItemModel
|
|
8580
|
+
*/
|
|
8581
|
+
'hospitalSpecialtyId'?: string;
|
|
8381
8582
|
/**
|
|
8382
8583
|
*
|
|
8383
8584
|
* @type {string}
|
|
@@ -8511,6 +8712,12 @@ export interface ServiceReviewModel {
|
|
|
8511
8712
|
* @memberof ServiceReviewModel
|
|
8512
8713
|
*/
|
|
8513
8714
|
'hospitalId'?: string;
|
|
8715
|
+
/**
|
|
8716
|
+
*
|
|
8717
|
+
* @type {string}
|
|
8718
|
+
* @memberof ServiceReviewModel
|
|
8719
|
+
*/
|
|
8720
|
+
'hospitalSpecialtyId'?: string;
|
|
8514
8721
|
/**
|
|
8515
8722
|
*
|
|
8516
8723
|
* @type {string}
|
|
@@ -15204,6 +15411,38 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
15204
15411
|
* @throws {RequiredError}
|
|
15205
15412
|
*/
|
|
15206
15413
|
apiV2HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15414
|
+
/**
|
|
15415
|
+
*
|
|
15416
|
+
* @param {string} hospitalId
|
|
15417
|
+
* @param {string} [name]
|
|
15418
|
+
* @param {string} [slug]
|
|
15419
|
+
* @param {string} [languageCode]
|
|
15420
|
+
* @param {boolean} [showHidden]
|
|
15421
|
+
* @param {number} [page]
|
|
15422
|
+
* @param {number} [limit]
|
|
15423
|
+
* @param {Date} [lastRetrieved]
|
|
15424
|
+
* @param {*} [options] Override http request option.
|
|
15425
|
+
* @throws {RequiredError}
|
|
15426
|
+
*/
|
|
15427
|
+
apiV2HospitalsHospitalIdLandingsGet: (hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15428
|
+
/**
|
|
15429
|
+
*
|
|
15430
|
+
* @param {string} hospitalId
|
|
15431
|
+
* @param {string} landingId
|
|
15432
|
+
* @param {string} [languageCode]
|
|
15433
|
+
* @param {*} [options] Override http request option.
|
|
15434
|
+
* @throws {RequiredError}
|
|
15435
|
+
*/
|
|
15436
|
+
apiV2HospitalsHospitalIdLandingsLandingIdGet: (hospitalId: string, landingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15437
|
+
/**
|
|
15438
|
+
*
|
|
15439
|
+
* @param {string} slug
|
|
15440
|
+
* @param {string} hospitalId
|
|
15441
|
+
* @param {string} [languageCode]
|
|
15442
|
+
* @param {*} [options] Override http request option.
|
|
15443
|
+
* @throws {RequiredError}
|
|
15444
|
+
*/
|
|
15445
|
+
apiV2HospitalsHospitalIdLandingsSlugGet: (slug: string, hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15207
15446
|
/**
|
|
15208
15447
|
*
|
|
15209
15448
|
* @summary Get all HospitalMedias.
|
|
@@ -15585,6 +15824,38 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15585
15824
|
* @throws {RequiredError}
|
|
15586
15825
|
*/
|
|
15587
15826
|
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
15827
|
+
/**
|
|
15828
|
+
*
|
|
15829
|
+
* @param {string} hospitalId
|
|
15830
|
+
* @param {string} [name]
|
|
15831
|
+
* @param {string} [slug]
|
|
15832
|
+
* @param {string} [languageCode]
|
|
15833
|
+
* @param {boolean} [showHidden]
|
|
15834
|
+
* @param {number} [page]
|
|
15835
|
+
* @param {number} [limit]
|
|
15836
|
+
* @param {Date} [lastRetrieved]
|
|
15837
|
+
* @param {*} [options] Override http request option.
|
|
15838
|
+
* @throws {RequiredError}
|
|
15839
|
+
*/
|
|
15840
|
+
apiV2HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingsModel>>;
|
|
15841
|
+
/**
|
|
15842
|
+
*
|
|
15843
|
+
* @param {string} hospitalId
|
|
15844
|
+
* @param {string} landingId
|
|
15845
|
+
* @param {string} [languageCode]
|
|
15846
|
+
* @param {*} [options] Override http request option.
|
|
15847
|
+
* @throws {RequiredError}
|
|
15848
|
+
*/
|
|
15849
|
+
apiV2HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
|
|
15850
|
+
/**
|
|
15851
|
+
*
|
|
15852
|
+
* @param {string} slug
|
|
15853
|
+
* @param {string} hospitalId
|
|
15854
|
+
* @param {string} [languageCode]
|
|
15855
|
+
* @param {*} [options] Override http request option.
|
|
15856
|
+
* @throws {RequiredError}
|
|
15857
|
+
*/
|
|
15858
|
+
apiV2HospitalsHospitalIdLandingsSlugGet(slug: string, hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LandingModel>>;
|
|
15588
15859
|
/**
|
|
15589
15860
|
*
|
|
15590
15861
|
* @summary Get all HospitalMedias.
|
|
@@ -15966,6 +16237,38 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15966
16237
|
* @throws {RequiredError}
|
|
15967
16238
|
*/
|
|
15968
16239
|
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
16240
|
+
/**
|
|
16241
|
+
*
|
|
16242
|
+
* @param {string} hospitalId
|
|
16243
|
+
* @param {string} [name]
|
|
16244
|
+
* @param {string} [slug]
|
|
16245
|
+
* @param {string} [languageCode]
|
|
16246
|
+
* @param {boolean} [showHidden]
|
|
16247
|
+
* @param {number} [page]
|
|
16248
|
+
* @param {number} [limit]
|
|
16249
|
+
* @param {Date} [lastRetrieved]
|
|
16250
|
+
* @param {*} [options] Override http request option.
|
|
16251
|
+
* @throws {RequiredError}
|
|
16252
|
+
*/
|
|
16253
|
+
apiV2HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LandingsModel>;
|
|
16254
|
+
/**
|
|
16255
|
+
*
|
|
16256
|
+
* @param {string} hospitalId
|
|
16257
|
+
* @param {string} landingId
|
|
16258
|
+
* @param {string} [languageCode]
|
|
16259
|
+
* @param {*} [options] Override http request option.
|
|
16260
|
+
* @throws {RequiredError}
|
|
16261
|
+
*/
|
|
16262
|
+
apiV2HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string | undefined, options?: any): AxiosPromise<LandingModel>;
|
|
16263
|
+
/**
|
|
16264
|
+
*
|
|
16265
|
+
* @param {string} slug
|
|
16266
|
+
* @param {string} hospitalId
|
|
16267
|
+
* @param {string} [languageCode]
|
|
16268
|
+
* @param {*} [options] Override http request option.
|
|
16269
|
+
* @throws {RequiredError}
|
|
16270
|
+
*/
|
|
16271
|
+
apiV2HospitalsHospitalIdLandingsSlugGet(slug: string, hospitalId: string, languageCode?: string | undefined, options?: any): AxiosPromise<LandingModel>;
|
|
15969
16272
|
/**
|
|
15970
16273
|
*
|
|
15971
16274
|
* @summary Get all HospitalMedias.
|
|
@@ -16361,6 +16664,41 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
16361
16664
|
* @memberof HospitalsApi
|
|
16362
16665
|
*/
|
|
16363
16666
|
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
|
|
16667
|
+
/**
|
|
16668
|
+
*
|
|
16669
|
+
* @param {string} hospitalId
|
|
16670
|
+
* @param {string} [name]
|
|
16671
|
+
* @param {string} [slug]
|
|
16672
|
+
* @param {string} [languageCode]
|
|
16673
|
+
* @param {boolean} [showHidden]
|
|
16674
|
+
* @param {number} [page]
|
|
16675
|
+
* @param {number} [limit]
|
|
16676
|
+
* @param {Date} [lastRetrieved]
|
|
16677
|
+
* @param {*} [options] Override http request option.
|
|
16678
|
+
* @throws {RequiredError}
|
|
16679
|
+
* @memberof HospitalsApi
|
|
16680
|
+
*/
|
|
16681
|
+
apiV2HospitalsHospitalIdLandingsGet(hospitalId: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingsModel, any>>;
|
|
16682
|
+
/**
|
|
16683
|
+
*
|
|
16684
|
+
* @param {string} hospitalId
|
|
16685
|
+
* @param {string} landingId
|
|
16686
|
+
* @param {string} [languageCode]
|
|
16687
|
+
* @param {*} [options] Override http request option.
|
|
16688
|
+
* @throws {RequiredError}
|
|
16689
|
+
* @memberof HospitalsApi
|
|
16690
|
+
*/
|
|
16691
|
+
apiV2HospitalsHospitalIdLandingsLandingIdGet(hospitalId: string, landingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel, any>>;
|
|
16692
|
+
/**
|
|
16693
|
+
*
|
|
16694
|
+
* @param {string} slug
|
|
16695
|
+
* @param {string} hospitalId
|
|
16696
|
+
* @param {string} [languageCode]
|
|
16697
|
+
* @param {*} [options] Override http request option.
|
|
16698
|
+
* @throws {RequiredError}
|
|
16699
|
+
* @memberof HospitalsApi
|
|
16700
|
+
*/
|
|
16701
|
+
apiV2HospitalsHospitalIdLandingsSlugGet(slug: string, hospitalId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LandingModel, any>>;
|
|
16364
16702
|
/**
|
|
16365
16703
|
*
|
|
16366
16704
|
* @summary Get all HospitalMedias.
|
|
@@ -17566,6 +17904,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
17566
17904
|
* @summary Get all ServiceReviews.
|
|
17567
17905
|
* @param {string} [id]
|
|
17568
17906
|
* @param {string} [hospitalId]
|
|
17907
|
+
* @param {string} [hospitalSpecialtyId]
|
|
17569
17908
|
* @param {string} [serviceId]
|
|
17570
17909
|
* @param {string} [serviceName]
|
|
17571
17910
|
* @param {string} [patientId]
|
|
@@ -17582,7 +17921,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
17582
17921
|
* @param {*} [options] Override http request option.
|
|
17583
17922
|
* @throws {RequiredError}
|
|
17584
17923
|
*/
|
|
17585
|
-
apiV2ServicereviewsGet: (id?: string | undefined, hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17924
|
+
apiV2ServicereviewsGet: (id?: string | undefined, hospitalId?: string | undefined, hospitalSpecialtyId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17586
17925
|
/**
|
|
17587
17926
|
*
|
|
17588
17927
|
* @summary Create a ServiceReview.
|
|
@@ -17677,6 +18016,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
17677
18016
|
* @summary Get all ServiceReviews.
|
|
17678
18017
|
* @param {string} [id]
|
|
17679
18018
|
* @param {string} [hospitalId]
|
|
18019
|
+
* @param {string} [hospitalSpecialtyId]
|
|
17680
18020
|
* @param {string} [serviceId]
|
|
17681
18021
|
* @param {string} [serviceName]
|
|
17682
18022
|
* @param {string} [patientId]
|
|
@@ -17693,7 +18033,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
17693
18033
|
* @param {*} [options] Override http request option.
|
|
17694
18034
|
* @throws {RequiredError}
|
|
17695
18035
|
*/
|
|
17696
|
-
apiV2ServicereviewsGet(id?: string | undefined, hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
18036
|
+
apiV2ServicereviewsGet(id?: string | undefined, hospitalId?: string | undefined, hospitalSpecialtyId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
17697
18037
|
/**
|
|
17698
18038
|
*
|
|
17699
18039
|
* @summary Create a ServiceReview.
|
|
@@ -17788,6 +18128,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
17788
18128
|
* @summary Get all ServiceReviews.
|
|
17789
18129
|
* @param {string} [id]
|
|
17790
18130
|
* @param {string} [hospitalId]
|
|
18131
|
+
* @param {string} [hospitalSpecialtyId]
|
|
17791
18132
|
* @param {string} [serviceId]
|
|
17792
18133
|
* @param {string} [serviceName]
|
|
17793
18134
|
* @param {string} [patientId]
|
|
@@ -17804,7 +18145,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
17804
18145
|
* @param {*} [options] Override http request option.
|
|
17805
18146
|
* @throws {RequiredError}
|
|
17806
18147
|
*/
|
|
17807
|
-
apiV2ServicereviewsGet(id?: string | undefined, hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
18148
|
+
apiV2ServicereviewsGet(id?: string | undefined, hospitalId?: string | undefined, hospitalSpecialtyId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
17808
18149
|
/**
|
|
17809
18150
|
*
|
|
17810
18151
|
* @summary Create a ServiceReview.
|
|
@@ -17901,6 +18242,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
17901
18242
|
* @summary Get all ServiceReviews.
|
|
17902
18243
|
* @param {string} [id]
|
|
17903
18244
|
* @param {string} [hospitalId]
|
|
18245
|
+
* @param {string} [hospitalSpecialtyId]
|
|
17904
18246
|
* @param {string} [serviceId]
|
|
17905
18247
|
* @param {string} [serviceName]
|
|
17906
18248
|
* @param {string} [patientId]
|
|
@@ -17918,7 +18260,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
17918
18260
|
* @throws {RequiredError}
|
|
17919
18261
|
* @memberof ServiceReviewsApi
|
|
17920
18262
|
*/
|
|
17921
|
-
apiV2ServicereviewsGet(id?: string, hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel, any>>;
|
|
18263
|
+
apiV2ServicereviewsGet(id?: string, hospitalId?: string, hospitalSpecialtyId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel, any>>;
|
|
17922
18264
|
/**
|
|
17923
18265
|
*
|
|
17924
18266
|
* @summary Create a ServiceReview.
|