ch-admin-api-client-typescript 3.4.9 → 3.5.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 +175 -31
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +148 -50
- package/package.json +1 -1
- package/src/api.ts +243 -53
package/lib/api.d.ts
CHANGED
|
@@ -4783,7 +4783,19 @@ export interface CreateServiceReviewCommand {
|
|
|
4783
4783
|
* @type {string}
|
|
4784
4784
|
* @memberof CreateServiceReviewCommand
|
|
4785
4785
|
*/
|
|
4786
|
-
'
|
|
4786
|
+
'name'?: string | null;
|
|
4787
|
+
/**
|
|
4788
|
+
*
|
|
4789
|
+
* @type {string}
|
|
4790
|
+
* @memberof CreateServiceReviewCommand
|
|
4791
|
+
*/
|
|
4792
|
+
'description'?: string | null;
|
|
4793
|
+
/**
|
|
4794
|
+
*
|
|
4795
|
+
* @type {string}
|
|
4796
|
+
* @memberof CreateServiceReviewCommand
|
|
4797
|
+
*/
|
|
4798
|
+
'content'?: string | null;
|
|
4787
4799
|
/**
|
|
4788
4800
|
*
|
|
4789
4801
|
* @type {boolean}
|
|
@@ -10202,6 +10214,24 @@ export interface ServiceReviewItemModel {
|
|
|
10202
10214
|
* @memberof ServiceReviewItemModel
|
|
10203
10215
|
*/
|
|
10204
10216
|
'languageCode'?: string | null;
|
|
10217
|
+
/**
|
|
10218
|
+
*
|
|
10219
|
+
* @type {string}
|
|
10220
|
+
* @memberof ServiceReviewItemModel
|
|
10221
|
+
*/
|
|
10222
|
+
'name'?: string | null;
|
|
10223
|
+
/**
|
|
10224
|
+
*
|
|
10225
|
+
* @type {string}
|
|
10226
|
+
* @memberof ServiceReviewItemModel
|
|
10227
|
+
*/
|
|
10228
|
+
'slug'?: string | null;
|
|
10229
|
+
/**
|
|
10230
|
+
*
|
|
10231
|
+
* @type {boolean}
|
|
10232
|
+
* @memberof ServiceReviewItemModel
|
|
10233
|
+
*/
|
|
10234
|
+
'confirmed'?: boolean;
|
|
10205
10235
|
/**
|
|
10206
10236
|
*
|
|
10207
10237
|
* @type {string}
|
|
@@ -10281,6 +10311,24 @@ export interface ServiceReviewModel {
|
|
|
10281
10311
|
* @memberof ServiceReviewModel
|
|
10282
10312
|
*/
|
|
10283
10313
|
'languageCode'?: string | null;
|
|
10314
|
+
/**
|
|
10315
|
+
*
|
|
10316
|
+
* @type {string}
|
|
10317
|
+
* @memberof ServiceReviewModel
|
|
10318
|
+
*/
|
|
10319
|
+
'name'?: string | null;
|
|
10320
|
+
/**
|
|
10321
|
+
*
|
|
10322
|
+
* @type {string}
|
|
10323
|
+
* @memberof ServiceReviewModel
|
|
10324
|
+
*/
|
|
10325
|
+
'slug'?: string | null;
|
|
10326
|
+
/**
|
|
10327
|
+
*
|
|
10328
|
+
* @type {boolean}
|
|
10329
|
+
* @memberof ServiceReviewModel
|
|
10330
|
+
*/
|
|
10331
|
+
'confirmed'?: boolean;
|
|
10284
10332
|
/**
|
|
10285
10333
|
*
|
|
10286
10334
|
* @type {string}
|
|
@@ -10346,7 +10394,19 @@ export interface ServiceReviewModel {
|
|
|
10346
10394
|
* @type {string}
|
|
10347
10395
|
* @memberof ServiceReviewModel
|
|
10348
10396
|
*/
|
|
10349
|
-
'
|
|
10397
|
+
'description'?: string | null;
|
|
10398
|
+
/**
|
|
10399
|
+
*
|
|
10400
|
+
* @type {string}
|
|
10401
|
+
* @memberof ServiceReviewModel
|
|
10402
|
+
*/
|
|
10403
|
+
'overview'?: string | null;
|
|
10404
|
+
/**
|
|
10405
|
+
*
|
|
10406
|
+
* @type {string}
|
|
10407
|
+
* @memberof ServiceReviewModel
|
|
10408
|
+
*/
|
|
10409
|
+
'content'?: string | null;
|
|
10350
10410
|
}
|
|
10351
10411
|
/**
|
|
10352
10412
|
*
|
|
@@ -12629,6 +12689,25 @@ export interface UpdateHospitalSnsHandleCommand {
|
|
|
12629
12689
|
*/
|
|
12630
12690
|
'handle'?: string | null;
|
|
12631
12691
|
}
|
|
12692
|
+
/**
|
|
12693
|
+
*
|
|
12694
|
+
* @export
|
|
12695
|
+
* @interface UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12696
|
+
*/
|
|
12697
|
+
export interface UpdateHospitalSpecialtiesSearchIndexCommand {
|
|
12698
|
+
/**
|
|
12699
|
+
*
|
|
12700
|
+
* @type {number}
|
|
12701
|
+
* @memberof UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12702
|
+
*/
|
|
12703
|
+
'batchSize'?: number | null;
|
|
12704
|
+
/**
|
|
12705
|
+
*
|
|
12706
|
+
* @type {boolean}
|
|
12707
|
+
* @memberof UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12708
|
+
*/
|
|
12709
|
+
'reCreate'?: boolean | null;
|
|
12710
|
+
}
|
|
12632
12711
|
/**
|
|
12633
12712
|
*
|
|
12634
12713
|
* @export
|
|
@@ -13131,7 +13210,31 @@ export interface UpdateServiceReviewCommand {
|
|
|
13131
13210
|
* @type {string}
|
|
13132
13211
|
* @memberof UpdateServiceReviewCommand
|
|
13133
13212
|
*/
|
|
13134
|
-
'
|
|
13213
|
+
'name'?: string | null;
|
|
13214
|
+
/**
|
|
13215
|
+
*
|
|
13216
|
+
* @type {string}
|
|
13217
|
+
* @memberof UpdateServiceReviewCommand
|
|
13218
|
+
*/
|
|
13219
|
+
'slug'?: string | null;
|
|
13220
|
+
/**
|
|
13221
|
+
*
|
|
13222
|
+
* @type {string}
|
|
13223
|
+
* @memberof UpdateServiceReviewCommand
|
|
13224
|
+
*/
|
|
13225
|
+
'description'?: string | null;
|
|
13226
|
+
/**
|
|
13227
|
+
*
|
|
13228
|
+
* @type {string}
|
|
13229
|
+
* @memberof UpdateServiceReviewCommand
|
|
13230
|
+
*/
|
|
13231
|
+
'content'?: string | null;
|
|
13232
|
+
/**
|
|
13233
|
+
*
|
|
13234
|
+
* @type {string}
|
|
13235
|
+
* @memberof UpdateServiceReviewCommand
|
|
13236
|
+
*/
|
|
13237
|
+
'languageCode'?: string | null;
|
|
13135
13238
|
/**
|
|
13136
13239
|
*
|
|
13137
13240
|
* @type {boolean}
|
|
@@ -22027,7 +22130,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22027
22130
|
apiV1HospitalsHospitalIdHandlesPost: (hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22028
22131
|
/**
|
|
22029
22132
|
*
|
|
22030
|
-
* @summary Get all
|
|
22133
|
+
* @summary Get all GetAllLanguages.
|
|
22031
22134
|
* @param {string} hospitalId
|
|
22032
22135
|
* @param {string} [name]
|
|
22033
22136
|
* @param {number} [page]
|
|
@@ -22036,16 +22139,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22036
22139
|
* @param {*} [options] Override http request option.
|
|
22037
22140
|
* @throws {RequiredError}
|
|
22038
22141
|
*/
|
|
22039
|
-
|
|
22142
|
+
apiV1HospitalsHospitalIdLanguagesGet: (hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22040
22143
|
/**
|
|
22041
22144
|
*
|
|
22042
|
-
* @summary Delete
|
|
22145
|
+
* @summary Delete GetAllLanguage.
|
|
22043
22146
|
* @param {string} hospitalId
|
|
22044
22147
|
* @param {string} languageCode
|
|
22045
22148
|
* @param {*} [options] Override http request option.
|
|
22046
22149
|
* @throws {RequiredError}
|
|
22047
22150
|
*/
|
|
22048
|
-
|
|
22151
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete: (hospitalId: string, languageCode: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22049
22152
|
/**
|
|
22050
22153
|
*
|
|
22051
22154
|
* @summary Create HospitalLanguages.
|
|
@@ -22054,7 +22157,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22054
22157
|
* @param {*} [options] Override http request option.
|
|
22055
22158
|
* @throws {RequiredError}
|
|
22056
22159
|
*/
|
|
22057
|
-
|
|
22160
|
+
apiV1HospitalsHospitalIdLanguagesPost: (hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22058
22161
|
/**
|
|
22059
22162
|
*
|
|
22060
22163
|
* @summary Get all HospitalMedias.
|
|
@@ -22791,7 +22894,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22791
22894
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
22792
22895
|
/**
|
|
22793
22896
|
*
|
|
22794
|
-
* @summary Get all
|
|
22897
|
+
* @summary Get all GetAllLanguages.
|
|
22795
22898
|
* @param {string} hospitalId
|
|
22796
22899
|
* @param {string} [name]
|
|
22797
22900
|
* @param {number} [page]
|
|
@@ -22800,16 +22903,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22800
22903
|
* @param {*} [options] Override http request option.
|
|
22801
22904
|
* @throws {RequiredError}
|
|
22802
22905
|
*/
|
|
22803
|
-
|
|
22906
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalLanguagesModel>>;
|
|
22804
22907
|
/**
|
|
22805
22908
|
*
|
|
22806
|
-
* @summary Delete
|
|
22909
|
+
* @summary Delete GetAllLanguage.
|
|
22807
22910
|
* @param {string} hospitalId
|
|
22808
22911
|
* @param {string} languageCode
|
|
22809
22912
|
* @param {*} [options] Override http request option.
|
|
22810
22913
|
* @throws {RequiredError}
|
|
22811
22914
|
*/
|
|
22812
|
-
|
|
22915
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22813
22916
|
/**
|
|
22814
22917
|
*
|
|
22815
22918
|
* @summary Create HospitalLanguages.
|
|
@@ -22818,7 +22921,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22818
22921
|
* @param {*} [options] Override http request option.
|
|
22819
22922
|
* @throws {RequiredError}
|
|
22820
22923
|
*/
|
|
22821
|
-
|
|
22924
|
+
apiV1HospitalsHospitalIdLanguagesPost(hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22822
22925
|
/**
|
|
22823
22926
|
*
|
|
22824
22927
|
* @summary Get all HospitalMedias.
|
|
@@ -23555,7 +23658,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23555
23658
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand | undefined, options?: any): AxiosPromise<SnsHandleModel>;
|
|
23556
23659
|
/**
|
|
23557
23660
|
*
|
|
23558
|
-
* @summary Get all
|
|
23661
|
+
* @summary Get all GetAllLanguages.
|
|
23559
23662
|
* @param {string} hospitalId
|
|
23560
23663
|
* @param {string} [name]
|
|
23561
23664
|
* @param {number} [page]
|
|
@@ -23564,16 +23667,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23564
23667
|
* @param {*} [options] Override http request option.
|
|
23565
23668
|
* @throws {RequiredError}
|
|
23566
23669
|
*/
|
|
23567
|
-
|
|
23670
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalLanguagesModel>;
|
|
23568
23671
|
/**
|
|
23569
23672
|
*
|
|
23570
|
-
* @summary Delete
|
|
23673
|
+
* @summary Delete GetAllLanguage.
|
|
23571
23674
|
* @param {string} hospitalId
|
|
23572
23675
|
* @param {string} languageCode
|
|
23573
23676
|
* @param {*} [options] Override http request option.
|
|
23574
23677
|
* @throws {RequiredError}
|
|
23575
23678
|
*/
|
|
23576
|
-
|
|
23679
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: any): AxiosPromise<boolean>;
|
|
23577
23680
|
/**
|
|
23578
23681
|
*
|
|
23579
23682
|
* @summary Create HospitalLanguages.
|
|
@@ -23582,7 +23685,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23582
23685
|
* @param {*} [options] Override http request option.
|
|
23583
23686
|
* @throws {RequiredError}
|
|
23584
23687
|
*/
|
|
23585
|
-
|
|
23688
|
+
apiV1HospitalsHospitalIdLanguagesPost(hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
23586
23689
|
/**
|
|
23587
23690
|
*
|
|
23588
23691
|
* @summary Get all HospitalMedias.
|
|
@@ -24348,7 +24451,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24348
24451
|
apiV1HospitalsHospitalIdHandlesPost(hospitalId: string, createHospitalSnsHandleCommand?: CreateHospitalSnsHandleCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
24349
24452
|
/**
|
|
24350
24453
|
*
|
|
24351
|
-
* @summary Get all
|
|
24454
|
+
* @summary Get all GetAllLanguages.
|
|
24352
24455
|
* @param {string} hospitalId
|
|
24353
24456
|
* @param {string} [name]
|
|
24354
24457
|
* @param {number} [page]
|
|
@@ -24358,17 +24461,17 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24358
24461
|
* @throws {RequiredError}
|
|
24359
24462
|
* @memberof HospitalsApi
|
|
24360
24463
|
*/
|
|
24361
|
-
|
|
24464
|
+
apiV1HospitalsHospitalIdLanguagesGet(hospitalId: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalLanguagesModel>>;
|
|
24362
24465
|
/**
|
|
24363
24466
|
*
|
|
24364
|
-
* @summary Delete
|
|
24467
|
+
* @summary Delete GetAllLanguage.
|
|
24365
24468
|
* @param {string} hospitalId
|
|
24366
24469
|
* @param {string} languageCode
|
|
24367
24470
|
* @param {*} [options] Override http request option.
|
|
24368
24471
|
* @throws {RequiredError}
|
|
24369
24472
|
* @memberof HospitalsApi
|
|
24370
24473
|
*/
|
|
24371
|
-
|
|
24474
|
+
apiV1HospitalsHospitalIdLanguagesLanguageCodeDelete(hospitalId: string, languageCode: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24372
24475
|
/**
|
|
24373
24476
|
*
|
|
24374
24477
|
* @summary Create HospitalLanguages.
|
|
@@ -24378,7 +24481,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24378
24481
|
* @throws {RequiredError}
|
|
24379
24482
|
* @memberof HospitalsApi
|
|
24380
24483
|
*/
|
|
24381
|
-
|
|
24484
|
+
apiV1HospitalsHospitalIdLanguagesPost(hospitalId: string, createHospitalLanguageCommand?: CreateHospitalLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24382
24485
|
/**
|
|
24383
24486
|
*
|
|
24384
24487
|
* @summary Get all HospitalMedias.
|
|
@@ -26698,6 +26801,14 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
26698
26801
|
* @throws {RequiredError}
|
|
26699
26802
|
*/
|
|
26700
26803
|
apiV1SearchHospitalsPost: (updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26804
|
+
/**
|
|
26805
|
+
*
|
|
26806
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26807
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26808
|
+
* @param {*} [options] Override http request option.
|
|
26809
|
+
* @throws {RequiredError}
|
|
26810
|
+
*/
|
|
26811
|
+
apiV1SearchHospitalspecialtiesPost: (updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26701
26812
|
/**
|
|
26702
26813
|
*
|
|
26703
26814
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26744,6 +26855,14 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
26744
26855
|
* @throws {RequiredError}
|
|
26745
26856
|
*/
|
|
26746
26857
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26858
|
+
/**
|
|
26859
|
+
*
|
|
26860
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26861
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26862
|
+
* @param {*} [options] Override http request option.
|
|
26863
|
+
* @throws {RequiredError}
|
|
26864
|
+
*/
|
|
26865
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26747
26866
|
/**
|
|
26748
26867
|
*
|
|
26749
26868
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26790,6 +26909,14 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
26790
26909
|
* @throws {RequiredError}
|
|
26791
26910
|
*/
|
|
26792
26911
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26912
|
+
/**
|
|
26913
|
+
*
|
|
26914
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26915
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26916
|
+
* @param {*} [options] Override http request option.
|
|
26917
|
+
* @throws {RequiredError}
|
|
26918
|
+
*/
|
|
26919
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26793
26920
|
/**
|
|
26794
26921
|
*
|
|
26795
26922
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26841,6 +26968,15 @@ export declare class SearchApi extends BaseAPI {
|
|
|
26841
26968
|
* @memberof SearchApi
|
|
26842
26969
|
*/
|
|
26843
26970
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26971
|
+
/**
|
|
26972
|
+
*
|
|
26973
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26974
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26975
|
+
* @param {*} [options] Override http request option.
|
|
26976
|
+
* @throws {RequiredError}
|
|
26977
|
+
* @memberof SearchApi
|
|
26978
|
+
*/
|
|
26979
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26844
26980
|
/**
|
|
26845
26981
|
*
|
|
26846
26982
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26868,6 +27004,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
26868
27004
|
/**
|
|
26869
27005
|
*
|
|
26870
27006
|
* @summary Get all ServiceReviews.
|
|
27007
|
+
* @param {string} [id]
|
|
26871
27008
|
* @param {string} [serviceId]
|
|
26872
27009
|
* @param {string} [serviceName]
|
|
26873
27010
|
* @param {string} [patientId]
|
|
@@ -26884,7 +27021,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
26884
27021
|
* @param {*} [options] Override http request option.
|
|
26885
27022
|
* @throws {RequiredError}
|
|
26886
27023
|
*/
|
|
26887
|
-
apiV1ServicereviewsGet: (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>;
|
|
27024
|
+
apiV1ServicereviewsGet: (id?: 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>;
|
|
26888
27025
|
/**
|
|
26889
27026
|
*
|
|
26890
27027
|
* @summary Create a ServiceReview.
|
|
@@ -26904,10 +27041,11 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
26904
27041
|
/**
|
|
26905
27042
|
*
|
|
26906
27043
|
* @param {string} serviceReviewId
|
|
27044
|
+
* @param {string} [languageCode]
|
|
26907
27045
|
* @param {*} [options] Override http request option.
|
|
26908
27046
|
* @throws {RequiredError}
|
|
26909
27047
|
*/
|
|
26910
|
-
apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27048
|
+
apiV1ServicereviewsServiceReviewIdGet: (serviceReviewId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26911
27049
|
/**
|
|
26912
27050
|
*
|
|
26913
27051
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -26976,6 +27114,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
26976
27114
|
/**
|
|
26977
27115
|
*
|
|
26978
27116
|
* @summary Get all ServiceReviews.
|
|
27117
|
+
* @param {string} [id]
|
|
26979
27118
|
* @param {string} [serviceId]
|
|
26980
27119
|
* @param {string} [serviceName]
|
|
26981
27120
|
* @param {string} [patientId]
|
|
@@ -26992,7 +27131,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
26992
27131
|
* @param {*} [options] Override http request option.
|
|
26993
27132
|
* @throws {RequiredError}
|
|
26994
27133
|
*/
|
|
26995
|
-
apiV1ServicereviewsGet(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 | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
27134
|
+
apiV1ServicereviewsGet(id?: 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 | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
26996
27135
|
/**
|
|
26997
27136
|
*
|
|
26998
27137
|
* @summary Create a ServiceReview.
|
|
@@ -27012,10 +27151,11 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
27012
27151
|
/**
|
|
27013
27152
|
*
|
|
27014
27153
|
* @param {string} serviceReviewId
|
|
27154
|
+
* @param {string} [languageCode]
|
|
27015
27155
|
* @param {*} [options] Override http request option.
|
|
27016
27156
|
* @throws {RequiredError}
|
|
27017
27157
|
*/
|
|
27018
|
-
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
27158
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
27019
27159
|
/**
|
|
27020
27160
|
*
|
|
27021
27161
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -27084,6 +27224,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
27084
27224
|
/**
|
|
27085
27225
|
*
|
|
27086
27226
|
* @summary Get all ServiceReviews.
|
|
27227
|
+
* @param {string} [id]
|
|
27087
27228
|
* @param {string} [serviceId]
|
|
27088
27229
|
* @param {string} [serviceName]
|
|
27089
27230
|
* @param {string} [patientId]
|
|
@@ -27100,7 +27241,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
27100
27241
|
* @param {*} [options] Override http request option.
|
|
27101
27242
|
* @throws {RequiredError}
|
|
27102
27243
|
*/
|
|
27103
|
-
apiV1ServicereviewsGet(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>;
|
|
27244
|
+
apiV1ServicereviewsGet(id?: 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>;
|
|
27104
27245
|
/**
|
|
27105
27246
|
*
|
|
27106
27247
|
* @summary Create a ServiceReview.
|
|
@@ -27120,10 +27261,11 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
27120
27261
|
/**
|
|
27121
27262
|
*
|
|
27122
27263
|
* @param {string} serviceReviewId
|
|
27264
|
+
* @param {string} [languageCode]
|
|
27123
27265
|
* @param {*} [options] Override http request option.
|
|
27124
27266
|
* @throws {RequiredError}
|
|
27125
27267
|
*/
|
|
27126
|
-
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
27268
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ServiceReviewModel>;
|
|
27127
27269
|
/**
|
|
27128
27270
|
*
|
|
27129
27271
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -27194,6 +27336,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
27194
27336
|
/**
|
|
27195
27337
|
*
|
|
27196
27338
|
* @summary Get all ServiceReviews.
|
|
27339
|
+
* @param {string} [id]
|
|
27197
27340
|
* @param {string} [serviceId]
|
|
27198
27341
|
* @param {string} [serviceName]
|
|
27199
27342
|
* @param {string} [patientId]
|
|
@@ -27211,7 +27354,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
27211
27354
|
* @throws {RequiredError}
|
|
27212
27355
|
* @memberof ServiceReviewsApi
|
|
27213
27356
|
*/
|
|
27214
|
-
apiV1ServicereviewsGet(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>>;
|
|
27357
|
+
apiV1ServicereviewsGet(id?: 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>>;
|
|
27215
27358
|
/**
|
|
27216
27359
|
*
|
|
27217
27360
|
* @summary Create a ServiceReview.
|
|
@@ -27233,11 +27376,12 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
27233
27376
|
/**
|
|
27234
27377
|
*
|
|
27235
27378
|
* @param {string} serviceReviewId
|
|
27379
|
+
* @param {string} [languageCode]
|
|
27236
27380
|
* @param {*} [options] Override http request option.
|
|
27237
27381
|
* @throws {RequiredError}
|
|
27238
27382
|
* @memberof ServiceReviewsApi
|
|
27239
27383
|
*/
|
|
27240
|
-
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
27384
|
+
apiV1ServicereviewsServiceReviewIdGet(serviceReviewId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
27241
27385
|
/**
|
|
27242
27386
|
*
|
|
27243
27387
|
* @summary Get all ServiceReviewMedias.
|